sunclock-3.57/0000755000000000000000000000000011606022247010157 5ustar sunclock-3.57/tools/0000755000000000000000000000000011046602527011322 5ustar sunclock-3.57/tools/Makefile0000644000000000000000000000013107721064701012756 0ustar all: cc -Wall concat.c -o concat -lm cleandir: clean clean: rm -f core *.o *~ concat sunclock-3.57/tools/concat.c0000644000000000000000000000702107333777473012756 0ustar #include #include #include #include #include #include #include #include #include char buf[128]; char * getdata(fd) FILE * fd; { int i, j; char c; repeat: i = fgetc(fd); if (i==EOF) return NULL; c = (char) i; if (c=='%') { while (i!=EOF && (char) i!= '\n') { i = fgetc(fd); } if (i==EOF) return NULL; goto repeat; } while(isspace(c)) goto repeat; j = 0; while(!isspace(c) && j<125) { buf[j] = c; ++j; i = fgetc(fd); if (i==EOF) break; c = (char) i; } buf[j] = '\0'; return buf; } static double **x = NULL; static double **y = NULL; static int *col, *len; int main(argc, argv) int argc; char ** argv; { FILE * fd; char *str; int start=0, num, j, l, j1, j2; void reverse(int j) { int p; double z; for (p=0; p+p+1 file2 .\n", argv[0]); exit(1); } fd = fopen(argv[1], "r"); if (!fd) { fprintf(stderr, "File %s does not exist !!\n", argv[1]); exit(1); } num = 0; while ((str=getdata(fd))) { if (*str=='#') { start = 1; ++num; j = num-1; x = (double **)realloc(x, num*sizeof(double *)); y = (double **)realloc(y, num*sizeof(double *)); col = (int *)realloc(col, num*sizeof(int)); len = (int *)realloc(len, num*sizeof(int)); x[j] = NULL; y[j] = NULL; col[j] = atoi(getdata(fd)); len[j] = l = 0; continue; } else if (*str==';') { start = 0; continue; } else { ++l; x[j] = (double *)realloc(x[j], l*sizeof(double)); y[j] = (double *)realloc(y[j], l*sizeof(double)); x[j][l-1] = atof(str); y[j][l-1] = atof(getdata(fd)); len[j] = l; } } j1=0; j2=1; while(j1 $DIR.tar.gz sunclock-3.57/README0000644000000000000000000001541610113445451011044 0ustar README for Sunclock version 3.xx -------------------------------- Sunclock is a sophisticated clock for the X Window system. It is based on an earlier version by John Mackin, itself derived from the Suntools program by John Walker. Many possibilities of the original astronomy routines are now exploited. Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". The clock window displays a small map of the Earth and therefore occupies little space on the screen, while the "map window" displays a large map and offers more advanced functions: local time of cities, Sun and Moon position, etc. A customizable list of cities is loaded by sunclock at start-up (and can be modified interactively, as well). Using the information provided for these cities, the map window can operate in five different modes: - "Legal time" mode: legal time of default time zone and GMT time are displayed. - "Coordinate" mode: by clicking on a city, users get coordinates (latitude, longitude) of that city, legal time and sunrise/sunset. - "Solar" mode: by clicking on a point of the map (either a city or another point), solar time and day length are shown. - "Hour Extension" mode: displays solar times from 00:00 to 23:00 in bottom strip, according to the Sun position. - "Distance" mode: shows distances in km and miles between two arbitrary locations. A further functionality is the "Progress" feature, which allows to accelerate the evolution of time, so as to observe the evolution of day/night periods and seasons. The sunclock package includes a vector map of the Earth (loosely derived from the xearth package by Kirk Lauritz Johnson), which is capable of building Earth maps of arbitrary sizes without losing the accuracy of details (within certain limits...) Meridians, Parallels, Equator, Tropics and Arctic circles can also be drawn. All these actions are performed through mouse clicks on the map or on the bottom strip, and/or with keyboard shortcuts. There is inline help available by typing 'h' or by clicking on the bottom strip -- so that no further explanation should be needed. Commuting between the clock and map states is obtained by typing '!' or simply . By default, the Sun and Moon are also shown on the map (rather, the positions of Earth where Sun and Moon are at zenith are shown). Coordinates of meridians, parallels, cities, the names of cities can be displayed on the map. If you are using a monochrome display, there is an option -colorlevel that will enable sunclock to run in monochrome mode (in that case, use -colorlevel 0). Under pseudocolor displays (depth <= 8), sunclock allocates private colormaps as soon as they are needed; there is also a builtin machanism which automatically quantizes true-color Earth maps which would have too many distinct colors for Pseudocolor displays. At the moment, sunclock can read .jpg, .xpm or .xpm.gz images, and also its own .vmf vector map format. Other image formats have to be converted to xpm or jpg before being loaded - e.g. with the netpbm or with the Imagemagick package. Sunclock is internationalized and currently supports the following localizations: de (German), en (English), es (Spanish), fr (French), it (Italian), nl (Dutch), no (Norwegian), pl (Polish), se (Swedish), also not all translations are up-to-date. Using iso8859-2 encoded fonts is required for Polish (other currently supported languages work with iso8859-1 or iso8859-15). Thus, for Polish, a special setting of the fonts in Sunclockrc is needed (edit the file by uncommenting the appropriate font settings). Sunclock versions 3.xx are released under the GPL. demailly@fourier.ujf-grenoble.fr ============================================================================== Starting from version 3.30 on, the recommended image format is JPEG, (although you can still use the .xpm or .xpm.gz format as before). We suggest you to download (actually very nice!) Earth maps from the xglobe/xplanet home sites http://www.radcyberzine.com/xglobe/ http://www.vterrain.org/Imagery/whole_earth.html http://apollo.spaceports.com/~jhasting/planets.html A bundled package of Earth maps is also provided on ftp://ftp.ac-grenoble.fr/ge/geosciences/sunclock_jpg_maps.tgz More information on geographic names, city coordinates, timezones can be obtained from http://gnpswww.nima.mil/geonames/GNS/ ============================================================================== Please check the WARNING file for more comments, especially on recent changes which affect sunclock's behaviour. Take also a look to CHANGES if you want to review all changes which occurred during the development. ============================================================================== Original README --------------- X11 version by John Mackin, , based on a Suntools program by John Walker, . This program is a clock that shows which portion of the Earth's surface is illuminated by the Sun. It is designed to be usually iconic, but can be opened for a larger display with the time updated every second and both the local timezone and UTC displayed. The Suntools version had a menu that allowed you to speed up time, show different dates, etc., but I have never implemented any of that in the X version; there is some support for it in the code, however. The program should have been written using Xt rather than raw Xlib, and I tried that at first. I couldn't get the icon window to work, though, so I abandoned that version. Hence, the program does _not_ accept most Xt-style command line options; valid options are given in the manual page. The program has been tested on a number of different clients (MIPS, Sun, VAX) and servers (MIPS colour console, Sun MIT mono, NCD-16/19), under X11R3 and R4. If you find bugs, please report them to me, john@cs.su.oz.AU. To build the program, decide whether you want to use imake or not. If you don't, link Makefile.dist to Makefile, and edit it, otherwise edit the Imakefile and use xmkmf. The program uses two fonts, one for the icon display and one for the large window display. The names of these fonts are compiled in. The font names comes from -DBIGFONT and -DSMALLFONT in the Makefile. If you are not using imake, you will need to supply a -DSYSV option if you are System V. You should supply -DNEW_CTIME if you are using the table-driven ctime and a "struct tm" contains a tm_zone field. If neither of the ways of getting the local timezone name works on your system, please let me know. The original Suntools program, in case you want it, was posted as Volume 1, Issue 79 of comp.sources.sun. This program is public domain and may be freely copied as long as the notices at the top of sunclock.c remain intact. sunclock-3.57/readxpm.c0000644000000000000000000000406007334227663011777 0ustar #include #include #include #include #include #include "sunclock.h" extern Display * dpy; extern Visual * visual; extern Colormap tmp_cmap; extern int scr; extern int color_depth; extern int color_pad; extern int bytes_per_pixel; extern int verbose; extern char * salloc(); int readXPM(path, Context) char * path; struct Sundata * Context; { XpmAttributes attrib; XImage *image = NULL; int b, c, i, j, k, ip, jp; attrib.colormap = tmp_cmap; attrib.valuemask = XpmColormap | XpmReturnPixels; if (verbose) fprintf(stderr, "Loading XPM image file %s\n", path); if (XpmReadFileToImage(dpy, path, &image, NULL, &attrib)) { fprintf(stderr, "Cannot read XPM file %s,\nalthough it exists !!\n", path); return 1; } if (image) bytes_per_pixel = image->bits_per_pixel/8; else return 4; Context->xim = XCreateImage(dpy, visual, DefaultDepth(dpy, scr), ZPixmap,0, NULL, Context->geom.width, Context->geom.height, color_pad,0); XFlush(dpy); if (!Context->xim) return 4; Context->xim->data = (char *) salloc(Context->xim->bytes_per_line * Context->xim->height); if (!Context->xim->data) return 4; Context->ncolors = attrib.npixels; if (color_depth<=8) for (j=0; jdaypixel[j] = (unsigned char) attrib.pixels[j]; for (j=0; jgeom.height; j++) { jp = ((j+Context->zoom.dy) * image->height)/Context->zoom.height; for (i=0; igeom.width; i++) { ip = ((i+Context->zoom.dx) * image->width)/Context->zoom.width; b = i*bytes_per_pixel + j*Context->xim->bytes_per_line; c = ip*bytes_per_pixel + jp*image->bytes_per_line; for (k=0; kxim->data[b+k] = image->data[c+k]; } } XDestroyImage(image); return 0; } sunclock-3.57/langdef.h0000644000000000000000000001111410272363445011734 0ustar #define N_MENU 28 #define N_ZOOM 14 #define N_OPTION 12 #define N_URBAN 12 #define N_FILESEL 6 #define N_HELP 49 #define STDFORMATS "%H:%M%_%a%_%d%_%b%_%y|%H:%M:%S%_%Z|%a%_%j/%t%_%U/52" enum {L_POINT=0, L_GMTTIME, L_SOLARTIME, L_LEGALTIME, L_DAYLENGTH, L_SUNRISE, L_SUNSET, L_SEC, L_MIN, L_HOUR, L_DAY, L_DAYS, L_CLICKCITY, L_CLICKLOC, L_CLICK2LOC, L_DEGREE, L_KEY, L_CONTROLS, L_ESCAPE, L_ESCMENU, L_UNKNOWN, L_SYNCHRO, L_PROGRESS, L_TIMEJUMP, L_CITYNAME, L_TIMEZONE, L_LATITUDE, L_LONGITUDE, L_CITYSIZE, L_CITYWARNING1, L_CITYWARNING2, L_OPTION, L_ACTIVATE, L_INCORRECT, L_OPTIONINTRO, L_ONCE, L_PERIODIC, L_STARRYSKY, L_BLANKSCREEN, L_LISTOPTIONS, L_CONFIG, L_NEWIMAGE, L_SHORTHELP, L_END }; #ifdef DEFVAR char * Label[L_END] = { "Point", "GMT time", "Solar time", "Legal time", "Day length", "Sunrise", "Sunset", "seconds", "minute", "hour", "day", "days", "Click on a city", "Click on a location", "Click consecutively on two locations", "Double click or strike * for ° ' \"", "Key", "Key/Mouse controls", "Escape", "Escape menu", "Unknown key binding !!", "Synchro (\")", "Progress value =", "Global time shift =", "City name", "Timezone", "Latitude", "Longitude", "Size", "Warning: %s, lat=%s lon=%s already in list of cities !!", "Overriding previous entry for %s", "Option", "Activating selected option...", "Option incorrect or not available at runtime !!", "Options: strike for blank space within an item", "(once)", "(periodically, period %d seconds)", "(with starry sky)", "(blank root window)", "with the following rather long list of options:", "Starting from **, options are runtime configurable.", "Calculating new image...", "Sunclock has a number of internal procedures which can be accessed\n" "through mouse clicks or key controls:" }; char MenuKey[2*N_MENU] = "H,F,Z,U,O;C,S,D,E,L;A,B,G,J;N,Y,M,P,T;W,K,I,R;>,<,!;X,Q;"; char ZoomKey[2*N_ZOOM] = "*,«,#,/;&,+,-,1,.;>,<,!,W,K;"; char OptionKey[2*N_OPTION] = "@,%;=,°;[,];G,J,';!,W,K;"; char UrbanKey[2*N_URBAN] = "U,°,§,%;C,S;~,(,);!,W,K;"; char CommandKey[N_HELP] = "HFZUOCSDELABGJNYMPTWKIR> #include #include #include #include #include #include #include extern char * freq_filter; void free_table(char **table, int n) { char **orig = table; for(; n > 0; n--, table++) { if (*table) free(*table); } free(orig); } void free_dirlist(char **table) { char **orig = table; while(*table) { free(*table); table++; } free(orig); } int dup_strcmp(char **a, char **b) { return strcmp(*a, *b); } char *get_file_name(struct dirent *d) { struct stat s; char *name; if (d == NULL) { fprintf(stderr, "BUG BUG BUG (got a NULL in get_file_name()).\n"); return NULL; } if (stat(d->d_name, &s) < 0) { perror(d->d_name); return NULL; } if (S_ISDIR(s.st_mode)) { name = (char *)malloc(strlen(d->d_name)+2); if (name == NULL) return NULL; sprintf(name, "%s/", d->d_name); } else { name = (char *)strdup(d->d_name); } return name; } int freq_filter_check(char *scanit) { struct stat buf; if (scanit == NULL) return 1; if (!strcmp(scanit, "./")) return 1; stat(scanit, &buf); if (S_ISDIR(buf.st_mode)) return 0; if (*freq_filter==0) return 0; if (strstr(scanit, freq_filter)) return 0; else return 1; } #define CHUNK 100 char **get_dir_list(char *dirname, int *num_entries) { int i,size=CHUNK; char **table, old_dir[MAXPATHLEN]; DIR *dir; struct dirent *dirent; getcwd(old_dir, MAXPATHLEN); if (dirname && chdir(dirname) < 0) return NULL; dir = opendir("."); if (dir == NULL) { chdir(old_dir); return NULL; } table = (char **)calloc(size, sizeof(char *)); if (table == NULL) { closedir(dir); chdir(old_dir); return NULL; } dirent = NULL; i = 0; for(dirent = readdir(dir); dirent != NULL; dirent = readdir(dir)) { table[i] = get_file_name(dirent); if (freq_filter_check(table[i])) continue; /* continue if table[i] is void or doesn't match the filter */ i++; if (i == size) { char **table2; size *= 2; table2 = (char **)realloc(table, size * sizeof(char *)); if (table2 == NULL) { free_table(table, i); closedir(dir); chdir(old_dir); return NULL; } table = table2; } } table[i] = NULL; /* make sure the table ends with a NULL */ if (num_entries) *num_entries = i; closedir(dir); chdir(old_dir); return table; } sunclock-3.57/readgif.c0000644000000000000000000003234210140524402011720 0ustar /* +-------------------------------------------------------------------+ */ /* | Copyright 1990, 1991, 1993 David Koblas. | */ /* | Copyright 1996 Torsten Martinsen. | */ /* | Permission to use, copy, modify, and distribute this software | */ /* | and its documentation for any purpose and without fee is hereby | */ /* | granted, provided that the above copyright notice appear in all | */ /* | copies and that both that copyright notice and this permission | */ /* | notice appear in supporting documentation. This software is | */ /* | provided "as is" without express or implied warranty. | */ /* +-------------------------------------------------------------------+ */ /* $Id: readGIF.c,v 1.5 1996/06/18 10:04:47 torsten Exp $ */ #include #include #include "sunclock.h" extern Display * dpy; extern Visual * visual; extern Colormap tmp_cmap; extern int scr; extern int bigendian; extern int color_depth; extern int color_pad; extern int bytes_per_pixel; extern int color_alloc_failed; extern int verbose; extern char * salloc(); extern void fill_line(char *scan, char* c, int w, int zw, int wp, int dx); #define MAXCOLORMAPSIZE 256 #define TRUE 1 #define FALSE 0 #define CM_RED 0 #define CM_GREEN 1 #define CM_BLUE 2 #define MAX_LWZ_BITS 12 #define INTERLACE 0x40 #define LOCALCOLORMAP 0x80 #define BitSet(byte, bit) (((byte) & (bit)) == (bit)) #define ReadOK(file,buffer,len) (fread(buffer, len, 1, file) != 0) #define LM_to_uint(a,b) (((b)<<8)|(a)) struct { unsigned int Width; unsigned int Height; unsigned char ColorMap[3][MAXCOLORMAPSIZE]; unsigned int BitPixel; unsigned int ColorResolution; unsigned int Background; unsigned int AspectRatio; int Grayscale; } GifScreen; static struct { int transparent; int delayTime; int inputFlag; int disposal; } Gif89 = { -1, -1, -1, 0 }; static int ReadColorMap(FILE * fd, int number, unsigned char buffer[3][MAXCOLORMAPSIZE], int *flag); static int DoExtension(FILE * fd, int label); static int GetDataBlock(FILE * fd, unsigned char *buf); static int GetCode(FILE * fd, int code_size, int flag); static int LWZReadByte(FILE * fd, int flag, int input_code_size); static int ReadImage(FILE * fd, Sundata *Context, int width, int height, int bitPixel, unsigned char cmap[3][MAXCOLORMAPSIZE], int gray, int interlace); int TestGIF(char *file) { FILE *fd = fopen(file, "r"); char buf[10]; int ret = 0; if (fd == NULL) return 0; if (ReadOK(fd, buf, 6)) { if ((strncmp(buf, "GIF", 3) == 0) && ((strcmp(buf + 3, "87a") != 0) || (strcmp(buf + 3, "89a") != 0))) ret = 1; } fclose(fd); return ret; } int readGIF(path, Context) char *path; Sundata * Context; { unsigned char buf[16]; unsigned char c; unsigned char localColorMap[3][MAXCOLORMAPSIZE]; int output = 0, size; int grayScale; int useGlobalColormap; int bitPixel; char version[4]; FILE *fd = fopen(path, "r"); if (fd == NULL) return 1; if (!ReadOK(fd, buf, 6)) { fclose(fd); return 2; } if (strncmp((char *) buf, "GIF", 3) != 0) { fclose(fd); return 3; } strncpy(version, (char *) buf + 3, 3); version[3] = '\0'; if ((strcmp(version, "87a") != 0) && (strcmp(version, "89a") != 0)) { fclose(fd); return 3; } if (!ReadOK(fd, buf, 7)) { fclose(fd); return 3; } GifScreen.Width = LM_to_uint(buf[0], buf[1]); GifScreen.Height = LM_to_uint(buf[2], buf[3]); GifScreen.BitPixel = 2 << (buf[4] & 0x07); GifScreen.ColorResolution = (((buf[4] & 0x70) >> 3) + 1); GifScreen.Background = buf[5]; GifScreen.AspectRatio = buf[6]; if (BitSet(buf[4], LOCALCOLORMAP)) { /* Global Colormap */ if (ReadColorMap(fd, GifScreen.BitPixel, GifScreen.ColorMap, &GifScreen.Grayscale)) { fclose(fd); return 2; } } repeat: if (!ReadOK(fd, &c, 1)) { fclose(fd); return 2; } if (c == '!') { /* Extension */ if (!ReadOK(fd, &c, 1)) { fclose(fd); return 2; } DoExtension(fd, c); goto repeat; } if (c != ',') { /* Not a valid start character */ goto repeat; } if (!ReadOK(fd, buf, 9)) { fclose(fd); return 2; } useGlobalColormap = !BitSet(buf[8], LOCALCOLORMAP); bitPixel = 1 << ((buf[8] & 0x07) + 1); Context->xim = XCreateImage(dpy, visual, DefaultDepth(dpy, scr), ZPixmap, 0, NULL, Context->geom.width, Context->geom.height, color_pad, 0); XFlush(dpy); if (!Context->xim) return 4; bytes_per_pixel = (Context->xim->bits_per_pixel/8); size = Context->xim->bytes_per_line * Context->geom.height; Context->xim->data = (char *) salloc(size); if (!Context->xim->data) { XDestroyImage(Context->xim); return 4; } if (!useGlobalColormap) { if (ReadColorMap(fd, bitPixel, localColorMap, &grayScale)) { XDestroyImage(Context->xim); return 2; } output = ReadImage(fd, Context, LM_to_uint(buf[4], buf[5]), LM_to_uint(buf[6], buf[7]), bitPixel, localColorMap, grayScale, BitSet(buf[8], INTERLACE)); } else { output = ReadImage(fd, Context, LM_to_uint(buf[4], buf[5]), LM_to_uint(buf[6], buf[7]), GifScreen.BitPixel, GifScreen.ColorMap, GifScreen.Grayscale, BitSet(buf[8], INTERLACE)); } if (output) XDestroyImage(Context->xim); return output; } static int ReadColorMap(FILE *fd, int number, unsigned char buffer[3][MAXCOLORMAPSIZE], int *gray) { int i; unsigned char rgb[3]; int flag; flag = TRUE; for (i = 0; i < number; ++i) { if (!ReadOK(fd, rgb, sizeof(rgb))) { return 1; } buffer[CM_RED][i] = rgb[0]; buffer[CM_GREEN][i] = rgb[1]; buffer[CM_BLUE][i] = rgb[2]; flag &= (rgb[0] == rgb[1] && rgb[1] == rgb[2]); } #if 0 if (flag) *gray = (number == 2) ? PBM_TYPE : PGM_TYPE; else *gray = PPM_TYPE; #else *gray = 0; #endif return FALSE; } static int DoExtension(FILE *fd, int label) { static char buf[256]; char *str; switch (label) { case 0x01: /* Plain Text Extension */ str = "Plain Text Extension"; break; case 0xff: /* Application Extension */ str = "Application Extension"; break; case 0xfe: /* Comment Extension */ str = "Comment Extension"; while (GetDataBlock(fd, (unsigned char *) buf) != 0); return FALSE; case 0xf9: /* Graphic Control Extension */ str = "Graphic Control Extension"; (void) GetDataBlock(fd, (unsigned char *) buf); Gif89.disposal = (buf[0] >> 2) & 0x7; Gif89.inputFlag = (buf[0] >> 1) & 0x1; Gif89.delayTime = LM_to_uint(buf[1], buf[2]); if ((buf[0] & 0x1) != 0) Gif89.transparent = buf[3]; while (GetDataBlock(fd, (unsigned char *) buf) != 0); return FALSE; default: str = buf; sprintf(buf, "UNKNOWN (0x%02x)", label); break; } while (GetDataBlock(fd, (unsigned char *) buf) != 0); return FALSE; } static int ZeroDataBlock = FALSE; static int GetDataBlock(FILE *fd, unsigned char *buf) { unsigned char count; if (!ReadOK(fd, &count, 1)) { /* pm_message("error in getting DataBlock size" ); */ return -1; } ZeroDataBlock = count == 0; if ((count != 0) && (!ReadOK(fd, buf, count))) { /* pm_message("error in reading DataBlock" ); */ return -1; } return count; } static int GetCode(FILE *fd, int code_size, int flag) { static unsigned char buf[280]; static int curbit, lastbit, done, last_byte; int i, j, ret; unsigned char count; if (flag) { curbit = 0; lastbit = 0; done = FALSE; return 0; } if ((curbit + code_size) >= lastbit) { if (done) { if (curbit >= lastbit) fprintf(stderr, "ran off the end of my bits...\n"); return -1; } buf[0] = buf[last_byte - 2]; buf[1] = buf[last_byte - 1]; if ((count = GetDataBlock(fd, &buf[2])) == 0) done = TRUE; last_byte = 2 + count; curbit = (curbit - lastbit) + 16; lastbit = (2 + count) * 8; } ret = 0; for (i = curbit, j = 0; j < code_size; ++i, ++j) ret |= ((buf[i / 8] & (1 << (i % 8))) != 0) << j; curbit += code_size; return ret; } static int LWZReadByte(FILE *fd, int flag, int input_code_size) { static int fresh = FALSE; int code, incode; static int code_size, set_code_size; static int max_code, max_code_size; static int firstcode, oldcode; static int clear_code, end_code; static int table[2][(1 << MAX_LWZ_BITS)]; static int stack[(1 << (MAX_LWZ_BITS)) * 2], *sp; register int i; if (flag) { set_code_size = input_code_size; code_size = set_code_size + 1; clear_code = 1 << set_code_size; end_code = clear_code + 1; max_code_size = 2 * clear_code; max_code = clear_code + 2; GetCode(fd, 0, TRUE); fresh = TRUE; for (i = 0; i < clear_code; ++i) { table[0][i] = 0; table[1][i] = i; } for (; i < (1 << MAX_LWZ_BITS); ++i) table[0][i] = table[1][0] = 0; sp = stack; return 0; } else if (fresh) { fresh = FALSE; do { firstcode = oldcode = GetCode(fd, code_size, FALSE); } while (firstcode == clear_code); return firstcode; } if (sp > stack) return *--sp; while ((code = GetCode(fd, code_size, FALSE)) >= 0) { if (code == clear_code) { for (i = 0; i < clear_code; ++i) { table[0][i] = 0; table[1][i] = i; } for (; i < (1 << MAX_LWZ_BITS); ++i) table[0][i] = table[1][i] = 0; code_size = set_code_size + 1; max_code_size = 2 * clear_code; max_code = clear_code + 2; sp = stack; firstcode = oldcode = GetCode(fd, code_size, FALSE); return firstcode; } else if (code == end_code) { int count; unsigned char buf[260]; if (ZeroDataBlock) return -2; while ((count = GetDataBlock(fd, buf)) > 0); if (count != 0) { /* * pm_message("missing EOD in data stream (common occurence)"); */ } return -2; } incode = code; if (code >= max_code) { *sp++ = firstcode; code = oldcode; } while (code >= clear_code) { *sp++ = table[1][code]; if (code == table[0][code]) fprintf(stderr, "circular table entry BIG ERROR...\n"); code = table[0][code]; } *sp++ = firstcode = table[1][code]; if ((code = max_code) < (1 << MAX_LWZ_BITS)) { table[0][code] = oldcode; table[1][code] = firstcode; ++max_code; if ((max_code >= max_code_size) && (max_code_size < (1 << MAX_LWZ_BITS))) { max_code_size *= 2; ++code_size; } } oldcode = incode; if (sp > stack) return *--sp; } return code; } static int ReadImage(FILE * fd, Sundata * Context, int width, int height, int cmapSize, unsigned char cmap[3][MAXCOLORMAPSIZE], int gray, int interlace) { unsigned char c; char *out; int i, i1, i2, v, ind, y; int xpos = 0, ypos = 0, pass = 0; int *ys; unsigned char *scan; /* ** Initialize the compression routines */ scan = (unsigned char *)salloc(3*width); if (!scan) return 4; ys = (int *)salloc((height+1)*sizeof(int)); if (!ys) { free(scan); return 4; } if (!ReadOK(fd, &c, 1)) { return 2; } if (LWZReadByte(fd, TRUE, c) < 0) { return 2; } while ((v = LWZReadByte(fd, FALSE, c)) >= 0) { ind = 3*xpos; scan[ind] = cmap[CM_RED][v]; scan[ind+1] = cmap[CM_GREEN][v]; scan[ind+2] = cmap[CM_BLUE][v]; ++xpos; if (xpos == width) { y = ((2*ypos+1) * Context->zoom.height) / (2*height) - Context->zoom.dy; ys[ypos] = y; if (y>=0 && ygeom.height && yposxim->data + y*Context->xim->bytes_per_line; fill_line(scan, out, Context->geom.width, Context->zoom.width, width, Context->zoom.dx); } xpos = 0; if (interlace) { switch (pass) { case 0: case 1: ypos += 8; break; case 2: ypos += 4; break; case 3: ypos += 2; break; } if (ypos >= height) { ++pass; switch (pass) { case 1: ypos = 4; break; case 2: ypos = 2; break; case 3: ypos = 1; break; default: goto fini; } } } else { ++ypos; } } if (ypos >= height) break; } fini: if (Context->zoom.height>=height) { ys[height] = Context->geom.height; for(ypos=0; ypos=0 || ys[ypos+1]geom.height) { if (ys[ypos]<0) { out = Context->xim->data + ys[ypos+1]*Context->xim->bytes_per_line; i1 = 0; i2 = ys[ypos+1]; } else { out = Context->xim->data + ys[ypos]*Context->xim->bytes_per_line; i1 = ys[ypos]+1; i2 = ys[ypos+1]; if (i2>Context->geom.height) i2=Context->geom.height; } for (i=i1; ixim->data+i*Context->xim->bytes_per_line, out, Context->xim->bytes_per_line); } } } free(scan); free(ys); return 0; } sunclock-3.57/sunclock.spec0000644000000000000000000000605210442532714012661 0ustar %define name sunclock %define version 3.55 %define release %mkrel 1 Summary: The sophisticated clock for the X Window system Name: %{name} Version: %{version} Release: %{release} License: GPL Group: Sciences/Astronomy Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}.tar.bz2 URL: http://freshmeat.net/projects/sunclock/ BuildRoot: %{_tmppath}/%{name}-buildroot Conflicts: xrmap %description Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". The clock window displays a small map of the Earth and therefore occupies little space on the screen, while the "map window" displays a large map and offers more advanced functions. %prep rm -rf $RPM_BUILD_ROOT %setup -q %build xmkmf %make CDEBUGFLAGS="$RPM_OPT_FLAGS" CXXDEBUGFLAGS="$RPM_OPT_FLAGS" # %install make install DESTDIR=$RPM_BUILD_ROOT%{_prefix} make install.man DESTDIR=$RPM_BUILD_ROOT%{_prefix} if [ -f $RPM_BUILD_ROOT%{_prefix}/X11R6/man/man1/sunclock.1x ]; then find $RPM_BUILD_ROOT%{_prefix}/X11R6/man/man1/sunclock.1x -type f -exec bzip2 -9f {} \; fi mkdir -p $RPM_BUILD_ROOT/usr/share/icons install wm_icons/sunclock2.xpm -m 644 $RPM_BUILD_ROOT/usr/share/icons/sunclock2.xpm install -d $RPM_BUILD_ROOT%{_menudir} cat < $RPM_BUILD_ROOT%{_menudir}/%{name} ?package(%{name}): \ needs="X11" \ section="Amusement/Toys" \ title="Sunclock" \ longtitle="Sophisticated clock for the X Window system" \ command="%{name}" \ icon="toys_section.png" EOF mkdir -p $RPM_BUILD_ROOT%{_prefix}/X11R6/lib/X11/doc/html/ #mv $RPM_BUILD_ROOT%{_prefix}/usr/X11R6/lib/X11/doc/html/* $RPM_BUILD_ROOT%{_prefix}/X11R6/lib/X11/doc/html/. %post %update_menus %postun %clean_menus %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0755) %doc CHANGES coordinates.txt COPYING INSTALL README TODO VMF.txt %{_datadir}/sunclock/Sunclockrc %{_datadir}/sunclock/earthmaps/vmf/* %{_datadir}/sunclock/i18n/* %{_datadir}/editkit/README %{_datadir}/editkit/emxrc %{_datadir}/editkit/rc.common %{_prefix}/X11R6/bin/emx %{_prefix}/X11R6/bin/sunclock %{_prefix}/X11R6/man/man1/sunclock.1* %{_prefix}/X11R6/man/man1/emx.1x %{_prefix}/X11R6/lib/X11/doc/html/* %{_datadir}/icons/sunclock2.xpm %_menudir/* %changelog * Thu Aug 18 2005 Nicolas Lécureuil 3.54.1-2mdk - Add Conflict * Wed Aug 17 2005 Nicolas Lécureuil 3.54.1-1mdk - New release 3.54.1 * Thu Feb 03 2005 Lenny Cartier 3.53-1mdk - 3.53 * Mon Oct 11 2004 Lenny Cartier 3.52-1mdk - 3.52 * Wed Sep 22 2004 Lenny Cartier 3.51-1mdk - new * Tue Aug 30 2001 Francois Massonneau - Add files needed for K Menu entries * Tue Aug 14 2001 Francois Massonneau - Change the spec file to match the 3.5x serie * Tue Jun 26 2001 Francois Massonneau - Add the Sunclock icon during the install * Tue Mar 06 2001 Francois Massonneau - First spec file sunclock-3.57/MESSAGE0000644000000000000000000000202610446461057011175 0ustar !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! In 3.51, support for GIF and PNG images has been ADDED Strating with 3.55/3.56, the VMF format has been SLIGHTLY IMPROVED. Three vector maps are now provided in the source package : timezones.vmf (time zone boundaries = new default map) countries.vmf (political boundaries) landwater.vmf (simple land/water boundaries, = default in zoom widget) Our companion program 'xrmap' can be used to visualize and produce more accurate vector maps of the Earth, using the CIA world data bank II and other public domain data, check ftp://ftp.ac-grenoble.fr/ge/geosciences/xrmap More information on geographic names, city coordinates, timezones can be obtained from http://gnpswww.nima.mil/geonames/GNS/ Bundled packages of Earth maps from various sources (NASA, xglobe/xplanet & VTerrain projects, ...) are provided in ftp://ftp.ac-grenoble.fr/ge/geosciences/sunclock/data_packages !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! sunclock-3.57/readvmf.c0000644000000000000000000005122311053543034011750 0ustar /* * readvmf.c * Jean-Pierre Demailly * July 2001 * * Copyright (C) 2001 by Jean-Pierre Demailly * * Permission to use, copy, modify and freely distribute these data for * non-commercial and not-for-profit purposes is hereby granted * without fee, provided that both the above copyright notice and this * permission notice appear in all copies and in supporting * documentation. * * The author makes no representations about the suitability of this * software for any purpose. It is provided "as is" without express or * implied warranty. * * THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT * OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #ifdef ZLIB #include #include #endif #include "sunclock.h" #define LINELENGTH 256 extern char *ProgName; extern char *vmfcolors; extern char *vmfrange; extern char *vmfcoordformat; extern Display * dpy; extern Colormap tmp_cmap; extern int scr; extern int bigendian; extern int color_depth; extern int color_pad; extern int bytes_per_pixel; extern int color_alloc_failed; extern int verbose; extern int reformat; extern int min_zoomwidth; extern int min_zoomheight; static struct Sundata *map; #define pixels map->vmfpixels /* Pointer to list of colors */ static int mapwidth; static int mapheight; static int fillmode; static char *buffer; /* Buffer to hold input lines */ static int *grid; /* Pointer to grid data */ static int *palette; /* Pointer to list of color codes */ static int uu, cc, vv, vv1, vv2, full; static int num_palette; static int default_color; static double txmin=1E27, txmax=-1E27, tymin=1E27, tymax=-1E27; char * salloc(nbytes) register int nbytes; { register char * p; p = malloc((unsigned)nbytes); if (p == (char *)NULL) { fprintf(stderr, "%s: %d bytes required; out of memory\n", ProgName, nbytes); exit(1); } return (p); } void plotdata(u, v, s) int u, v, s; { int v1=0, v2=0, c, w, ind; c = u; if (c<0) c+=map->zoom.width; if (c>=map->zoom.width) c-=map->zoom.width; c -= map->zoom.dx-1; v -= map->zoom.dy; if (fillmode==0) { if (c>=0 && c<=mapwidth && v>=0 && v0) grid[ind] = s * 65536; if (s<0) grid[ind] = -s * 65536; } return; } if (c>=0 && c<=mapwidth) { ind = c*mapheight; if (v>=0 && v0) grid[ind+v] |= s; if (s<0) grid[ind+v] |= -s; } s *= 65536; if (v<0) v1=0; else v1=v+1; if (v>=mapheight) v2=mapheight-1; else v2=v; if (u==uu) { if (v>vv) for (w=vv1; w<=v2; w++) grid[ind+w] += s; if (vuu) for (w=0; w<=v2; w++) grid[ind+w] += s; } if (u=0 && cc<=mapwidth) { ind = cc*mapheight; for (w=0; w<=vv2; w++) grid[ind+w] -= s; } uu = u; cc = c; vv = v; vv1 = v1; vv2 = v2; } int check(i, j, which) int i, j, which; { #define MASK -65536 int ind, indp, inds; which *= 65536; ind = i*mapheight+j; if (j>0 && (grid[ind-1]&MASK)!=which) return 1; if (j0 && (grid[indp]&MASK)!=which) return 1; inds = (i+1)*mapheight+j; if (i0) { if (i>0 && (grid[indp-1]&MASK)!=which) return 1; if (i0 && (grid[indp+1]&MASK)!=which) return 1; if (i0) && !check(i,j,t)) grid[ind] |= 32768; } for (j=0; jzoom.width > map->geom.width && map->zoom.dx == 0) { for (j=0; jbits_per_pixel/8); image->data = (char *) salloc(image->bytes_per_line * h); if (color_depth>16) for (j=0; jdata + j * image->bytes_per_line; for (i=0; i=0 && l> 16) & 255; c[k+2] = (pixels[l] >> 8) & 255; c[k+3] = pixels[l]; } else { c[k] = pixels[l]; c[k+1] = (pixels[l] >> 8) & 255; c[k+2] = (pixels[l] >> 16) & 255; } } } else if (color_depth>8) for (j=0; jdata + j * mapwidth * bytes_per_pixel; for (i=0; i=0 && ldata + j * mapwidth * bytes_per_pixel; for (i=0; i=0 && lflags.fillmode; mapwidth = Context->geom.width; if (mapwidth <=10) return 4; mapheight = Context->geom.height; if (mapheight<= 5) return 4; if (verbose) fprintf(stderr, "Loading vector map %s\n", path); #ifdef ZLIB fd = gzopen(path, "r"); #define Z_PATH_EXT ".gz" #define Z_PATH_LEN ( sizeof( Z_PATH_EXT)- 1) if ( fd == NULL && errno == ENOENT && ( ( plen= strlen( path)) < Z_PATH_LEN || strcmp( &path[ plen- Z_PATH_LEN], Z_PATH_EXT) != 0)) { /* try to open gzip'd file... (ThMO) */ #if __GNUC__ >= 2 zpath= alloca( plen+ Z_PATH_LEN+ 1); #else zpath= salloc( plen+ Z_PATH_LEN+ 1); #endif memcpy( zpath, path, plen); memcpy( zpath+ plen, Z_PATH_EXT, Z_PATH_LEN+ 1); if ( verbose) fprintf( stderr, "Try loading vector map %s\n", zpath); fd= gzopen( zpath, "r"); #if !( __GNUC__ >= 2) free( zpath); #endif } #undef Z_PATH_EXT #undef Z_PATH_LEN #else fd = fopen(path, "r"); #endif if (fd == NULL) { ret_value = 1; goto abort; } buffer = (char *) salloc(LINELENGTH+2); if (!buffer) goto abort; #ifdef ZLIB str = gzgets(fd, buffer, LINELENGTH); #else str = fgets(buffer, LINELENGTH, fd); #endif if (!str || strncmp(buffer, "%!VMF", 5)) { ret_value = 5; goto abort; } if (reformat) printf(str); k = 0; num_colors = 0; while (1) { if (map->flags.colorlevel==FULLCOLORS) { count = color_alloc_failed; if (vmfcolors) { if (vmfcolors[k]) { strcpy(buffer, vmfcolors+k); str = buffer; l = 0; while (str[l]!='|' && str[l] != '\0') ++l; if (str[l]=='|') k=k+l+1; else k=k+l; str[l] = '\0'; if (*str) { ++num_colors; pixels = (Pixel *)realloc((void *)pixels, num_colors*sizeof(Pixel)); if (!pixels) goto abort; pixels[num_colors-1] = getPixel(tmp_cmap, str); } else --count; } else --count; } str = getdata(fd); if (!strcmp(str, ";")) break; if (!vmfcolors || color_alloc_failed>count) { count = color_alloc_failed; ++num_colors; pixels = (Pixel *)realloc((void *)pixels, num_colors*sizeof(Pixel)); if (!pixels) goto abort; pixels[num_colors-1] = getPixel(tmp_cmap, str); } if (color_alloc_failed>count) { color_alloc_failed = 1; ret_value = 6; goto abort; } else color_alloc_failed &= 1; if (color_depth<=8) Context->daypixel[num_colors-1] = (unsigned char) pixels[num_colors-1]; } else { str = getdata(fd); ++num_colors; if (!strcmp(str, ";")) break; } if (reformat) printf("%s\t", str); } if (reformat) printf(";\n\n"); Context->ncolors = num_colors; str = getdata(fd); if (!str) goto abort; default_color = atoi(str); if (default_color<0 || default_color>=num_colors) goto abort; if (reformat) printf("%d\n\n", default_color); j = 0; num_palette = 0; while (1) { str = getdata(fd); if (!str) goto abort; if (*str==';') { if (reformat) printf("\n;\n\n"); break; } if (*str=='c') { v = atoi(str+1); if (v<0 || v>=num_colors) goto abort; if (reformat) { if (j) printf("\n"); printf("c%d", v); } } else { u = atoi(str); if (u<0) goto abort; if (u>=num_palette) { palette = (int *) realloc(palette, (u+1)*sizeof(int)); if (!palette) goto abort; for (k=num_palette; k= 'A') { if (!strcmp(str, "end")) { if (reformat) printf("\n%s\n", str); goto endcurves; } else if (!strcmp(str, "flag")) { str = getdata(fd); if (!str) goto abort; run_flag = atoi(str); if (reformat) printf("flag %d\n", run_flag); } else if (!strcmp(str, "opencurves")) { if (reformat) printf("%s\n", str); opencurves = 1; } else if (!strcmp(str, "closedcurves")) { if (reformat) printf("%s\n", str); opencurves = 0; } else if (!strcmp(str, "zoomwidth")) { str = getdata(fd); min_zoomwidth = atoi(str); } else if (!strcmp(str, "zoomheight")) { str = getdata(fd); min_zoomheight = atoi(str); } else if (!strcmp(str, "fillmode")) { str = getdata(fd); if (!str) goto abort; i = atoi(str); if (reformat) printf("fillmode %d\n", i); if (i>map->flags.fillmode) i = map->flags.fillmode; if (i=2 && str[k-1]=='\n' && str[k-2]=='\\' && (k==2 || (k>=3 && str[k-3]!='\\'))) { k -=2; str[k] = '\0'; } ptr = realloc(ptr, l+k+2); strcpy(ptr + l, str); l += k; } if (ptr && *ptr) { l -= 1; if (l>=0 && ptr[l]=='\n') ptr[l] = '\0'; if (Context->zoom.widthzoom.heightlabel; Context->label = (struct TextLabel *)salloc(sizeof(TextLabel)); Context->label->text = ptr; Context->label->lon = fx; Context->label->lat = fy; Context->label->color = color; Context->label->position = position; Context->label->next = (struct TextLabel *)str; } } goto iter; } else if (*str == '#') { num = 0; str = getdata(fd); if (!str) goto abort; color = atoi(str); if (reformat) printf("\n#%d %d", count, color); ++count; } else if (*str == ';') { fx = fx0; fy = fy0; if (reformat) printf("\n;\n"); if (opencurves) goto iter; } else { fy = atof(str); str = getdata(fd); if (!str) goto abort; fx = atof(str); if (verbose) { if (fxtxmax) txmax = fx; if (fytymax) tymax = fy; } if (num == 0) { fx0 = fx; fy0 = fy; } if (reformat) { if (num%4 == 0) printf("\n"); else printf(" "); printf(coordformat, fy*cy+cdy, fx*cx+cdx); } ++num; } flag = run_flag & map->flags.vmfflags; if (!flag) goto iter; if ((flag&1) && !map->wintype) goto iter; if (map->zoom.widthzoom.width; if (cc>=map->zoom.width) cc-=map->zoom.width; cc -= map->zoom.dx-1; vp = v; vv = v - map->zoom.dy; vv1 = vv + 1; if (vv1<0) vv1 = 0; vv2 = vv; if (vv2>=mapheight) vv2 = mapheight-1; u = (int) (theta * (double) map->zoom.width); v = (int) (phi * (double) map->zoom.height); if (num>=2) { diffu = abs(u-up); if (diffu>map->zoom.width/2) { if (u>up) u -= map->zoom.width; else u += map->zoom.width; diffu = abs(u-up); } diffv = abs(v-vp); addumin = (u>up)? 1:-1; addvmin = (v>vp)? 1:-1; if (diffu>diffv) { max = diffu ; min = diffv; addumax = addumin; addvmax = 0; } else { max = diffv ; min = diffu; addumax = 0; addvmax = addvmin; } sum = max/2-max; for (m=0; m=max/2) { sum -= max; up += addumin; vp += addvmin; } else { up += addumax; vp += addvmax; } plotdata(up, vp, color); } } goto iter; endcurves: filterdata(); if (map->flags.colorlevel==FULLCOLORS) Context->xim = pixmap_image(); else Context->bits = blacknwhite_image(); if ((map->flags.colorlevelbits==NULL) || (map->flags.colorlevel==FULLCOLORS && Context->xim==NULL)) ret_value = 2; if (ret_value < 0) ret_value = 0; abort: if (ret_value < 0) ret_value = 2; #ifdef ZLIB if (fd) gzclose(fd); #else if (fd) fclose(fd); #endif if (buffer) free(buffer); if (grid) free(grid); if (palette) free(palette); if (verbose) fprintf(stderr, "ymin = %9.3f ymax = %9.3f xmin = %9.3f xmax = %9.3f\n", tymin, tymax, txmin, txmax); return ret_value; } sunclock-3.57/sunclock.h0000644000000000000000000002544510514171516012164 0ustar /* * Sun clock definitions. */ #define XK_MISCELLANY #define XK_LATIN1 #include #include #include #include #include #include #include #include #include #include #include "version.h" #define EDITORCOMMAND EMXBINDIR"/emx -edit 0 -fn 9x15" /* Default text editor */ #define FAILFONT "fixed" /* num of bitmaps to accomodate 1 mark and 2 spatial objets (Sun, Moon) */ #define SPECIALBITMAPS 3 #define CITYBITMAPS 5 #define MENU_WIDTH 38 #define SEL_WIDTH 20 #define SEL_HEIGHT 10 #define MAXSHORT 32767 #define TOPTITLEBARHEIGHT 40 /* usual height of top title bar for KDE can put 0 instead if you don't use that! */ #define abs(x) ((x) < 0 ? (-(x)) : x) /* Absolute value */ #define sgn(x) (((x) < 0) ? -1 : ((x) > 0 ? 1 : 0)) /* Extract sign */ #define fixangle(a) ((a) - 360.0 * (floor((a) / 360.0))) /* Fix angle */ #define torad(d) ((d) * (PI / 180.0)) /* Deg->Rad */ #define todeg(d) ((d) * (180.0 / PI)) /* Rad->Deg */ #define dsin(x) (sin(torad((x)))) /* Sin from deg */ #define dcos(x) (cos(torad((x)))) /* Cos from deg */ #define PI 3.14159265358979323846 #define ZFACT 1.2 #define COLORLENGTH 48 /* maximum length of color names */ #define TERMINC 100 /* Circle segments for terminator */ #define PROJINT (60 * 10) /* Frequency of seasonal recalculation in seconds. */ #define EARTHRADIUS_KM 6378.160 #define EARTHRADIUS_ML 3963.202 #define SUN_APPRADIUS 0.266 /* Sun apparent radius, in degrees */ #define ATM_REFRACTION 0.100 /* Atmospheric refraction, in degrees */ #define ATM_DIFFUSION 3.0 /* Atmospheric diffusion, in degrees */ #define COORDINATES 'c' #define DISTANCES 'd' #define EXTENSION 'e' #define LEGALTIME 'l' #define SOLARTIME 's' #define TIMECOUNT 25 #define TIMESTEP 10000 enum {MONOCHROME=0, FEWCOLORS, MANYCOLORS, FULLCOLORS}; enum {RESET=0, REMAP, REATTRIB, DESTROY, ICONIFY, DEICONIFY}; enum {RANDOM=0, FIXED, CENTER, NW, NE, SW, SE}; enum {READSYSRC = 0, READUSERRC, PARSECMDLINE, RUNNING, RUNTIMEOPTION, IMAGERECYCLE, FAILEDOPTION}; enum {NULL_INPUT = 0, OPTION_INPUT, URBAN_INPUT}; enum { CLOCKBGCOLOR=0, MAPBGCOLOR, MENUBGCOLOR, CLOCKSTRIPBGCOLOR, MAPSTRIPBGCOLOR, ZOOMBGCOLOR, OPTIONBGCOLOR, BUTTONCOLOR, STARCOLOR, CLOCKFGCOLOR, MAPFGCOLOR, MENUFGCOLOR, BUTTONFGCOLOR1, BUTTONFGCOLOR2, BUTTONFGCOLOR3, BUTTONFGCOLOR4, CLOCKSTRIPFGCOLOR, MAPSTRIPFGCOLOR, ZOOMFGCOLOR, OPTIONFGCOLOR, WEAKCOLOR, ROOTCOLOR, CARETCOLOR, CHANGECOLOR, CHOICECOLOR, DIRCOLOR, IMAGECOLOR, CITYNAMECOLOR, CITYCOLOR0, CITYCOLOR1, CITYCOLOR2, MARKCOLOR1, MARKCOLOR2, SUNCOLOR, MOONCOLOR, LINECOLOR, MERIDIANCOLOR, PARALLELCOLOR, TROPICCOLOR, NUMPIXELS }; enum { CLOCKSTRIPFONT, MAPSTRIPFONT, COORDFONT, CITYFONT, LABELFONT, MENUFONT, NUMFONTS }; /* Geometry structure */ typedef struct Geometry { int mask; int x; int y; unsigned int width; unsigned int height; unsigned int w_mini; unsigned int h_mini; } Geometry; /* Behavioral flags */ typedef struct Flags { /* Status values */ short colorlevel; /* 0=mono 1=invert1 2=invert2 3=color*/ short fillmode; /* 0=coastlines 1=contour 2=landfill */ short vmfflags; /* flags for VMF format */ short dotted; /* use dotted lines ? */ short colorscale; /* number of colors in shading */ short darkness; /* level of darkness in shading */ short map_mode; /* are we in C, D, E, L, S mode? */ short clock_mode; /* clock mode */ short animate; /* start/stop animation */ short animperiod; /* animation periodicity 0,1..5 sec */ short progress; /* special progress time ?*/ short shading; /* shading mode */ short dms; /* degree, minute, second mode */ short objectmode; /* mode for showing Moon/Sun */ short objects; /* are Moon/Sun to be shown ? */ short citymode; /* cities mode */ short meridian; /* meridians mode */ short parallel; /* parallels/tropics mode */ /* Internal switches */ short mapped; /* is window mapped ? */ short update; /* update image (=-1 full update) */ short bottom; /* bottom strip to be cleaned */ short hours_shown; /* hours in extension mode shown? */ } Flags; /* Zoom settings */ typedef struct ZoomSettings { double fx; /* zoom factor along width */ double fy; /* zoom factor along height */ double fdx; /* translation factor along width */ double fdy; /* translation factor along height */ double meridspacing; /* meridian spacing (degrees) */ double paralspacing; /* parallel spacing (degrees) */ int mode; /* zoom behaviour mode=0,1,2 */ int width; /* width of full extent zoomed area */ int height; /* height of full extent zoomed area */ int dx; /* translation along width */ int dy; /* translation along height */ } ZoomSettings; /* Graphic Data */ typedef struct GraphicData { GC wingc; /* window gc */ GC pixgc; /* pixmap gc */ Pixel pixel[NUMPIXELS]; /* list of pixels used */ int precedence; /* ordinal number of creation */ int clockstrip; /* height of strip for clock */ int mapstrip; /* height of strip for map */ int menustrip; /* height of strip for map */ int charspace; /* menu char spacing */ short links; /* how many other Windows linked ? */ short usedcolors; /* number of colors used */ Colormap cmap; /* window (private?) colormap */ XFontStruct * font[NUMFONTS]; /* font structures */ } GraphicData; /* Records to hold cities */ typedef struct City { char *name; /* Name of the city */ double lat, lon; /* Latitude and longitude of city */ char *tz; /* Timezone of city */ short size; struct City *next; /* Pointer to next record */ } City; /* Records to hold marks */ typedef struct Mark { City *city; double save_lat, save_lon; int flags, pulse, full; struct tm sr, ss, dl; } Mark; /* Records to hold text labels */ typedef struct TextLabel { char *text; double lat, lon; int color; int position; struct TextLabel *next; } TextLabel ; /* Records to hold text entries */ typedef struct TextEntry { char * string; int maxlength; int caret; int oldcaret; int oldlength; char oldchar; } TextEntry; /* Sundata structure */ typedef struct Sundata { int wintype; /* is window map or clock ? */ Window win; /* window id */ Pixmap mappix; /* map pixmap */ XImage * xim; /* ximage of map */ char * ximdata; /* ximage data copy */ int *spotsizes; /* city spot sizes, by category */ int *sizelimits; /* city size limits */ GraphicData * gdata; /* associated graphical data */ Geometry geom; /* geometry */ Geometry prevgeom; /* previous geometry */ ZoomSettings zoom; /* Zoom settings of window */ ZoomSettings newzoom; /* New zoom settings */ ZoomSettings oldzoom; /* Old zoom settings */ Flags flags; /* window behavioral settings */ int hstrip; /* height of bottom strip */ char * clock_img_file; /* name of clock xpm file */ char * map_img_file; /* name of map xpm file */ char * bits; /* pointer to char * bitmap bits */ short * tr1; /* pointer to day/night transition 1 */ short * tr2; /* pointer to day/night transition 2 */ int south; /* color code (0 / -1) at South pole */ double * daywave; /* pointer to daywave values */ double * cosval; /* pointer to cosine values */ double * sinval; /* pointer to sine values */ unsigned char * daypixel; /* pointer to day pixels */ unsigned char * nightpixel; /* pointer to night pixels */ Pixel *vmfpixels; /* list of additional vmf pixels */ int ncolors; /* number of colors in day pixels */ long time; /* time - real or fake, see flags */ long projtime; /* last time projected illumination */ long roottime; /* last time written to root */ long animtime; /* last time of animation */ long jump; /* time jump (in sec) */ double sundec; /* Sun declination */ double sunlon; /* Sun longitude */ double moondec; /* Moon declination */ double moonlon; /* Moon longitude */ double shadefactor; /* shading factor */ double shadescale; /* shading rescale factor */ double fnoon; /* position of noon, double float */ int noon; /* position of noon, integer */ int local_day; /* previous local day */ int solar_day; /* previous solar day */ int count; /* number of time iterations */ struct City pos1; /* first position */ struct City pos2; /* second position */ struct City *lastmarked; /* last marked city */ struct Mark mark1; /* first mark */ struct Mark mark2; /* second mark */ struct TextLabel *label; /* label structure if any */ struct Sundata *next; /* pointer to next structure */ } Sundata; /* setupCallback structure */ typedef void (*setupCB)(int mode); typedef void (*popCB)(Sundata * Context); /* Which OS are we using ? */ #if defined(linux) || defined(__linux) || defined(__linux__) #define _OS_LINUX_ #elif defined(hpux) || defined(__hpux) || defined(__hpux__) #define _OS_HPUX_ #endif sunclock-3.57/COPYING0000644000000000000000000004312707153253424011226 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) 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 this service 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 make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. 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. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), 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 distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the 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 a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE 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. 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 convey 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) 19yy 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 2 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision 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, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This 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 Library General Public License instead of this License. sunclock-3.57/INSTALL0000644000000000000000000000316707316263426011230 0ustar INSTALLATION instructions ========================= 1. (Optional) Customize the Sunclockrc file and add locations of cities you would like to see appearing on sunclock's main map. Information on geographic coordinates of many important cities (probably with a bias towards North America) is included in the "coordinates.txt" file. This will provide system wide data. After the install, users will still have the possibility to produce their own settings in ~/.sunclockrc (same format as for Sunclockrc), which can either supplement or supersede the system wide settings. 2. (Optional) If your native language is not one of the currently supported languages, translate Sunclock_en into Sunclock_XX where XX are the initials of the desired language, as referred to by the environment parameter $LANG (already supported internationalization files are located in the subdirectory i18n). And please send Sunclock_XX to the current maintainer (demailly@fourier.ujf-grenoble.fr) so that it can be included in later releases... 3. Type 'xmkmf' and then 'make' to build the binary executable. If your system does not support the Imakefile process, customize by hand the Makefile.noimake file and type 'make -f Makefile.noimake' 4. Install the binary and app-defaults files Type 'make install' (respectively 'make -f Makefile.noimake install'). (the man page will be automatically installed as well) You should be done and have sunclock running properly! The most basic help is obtained by typing sunclock -help, and the man page is accessed by clicking 'h' twice while running the program. Jean-Pierre Demailly sunclock-3.57/astro.c0000644000000000000000000004232107305403062011454 0ustar /* * Sun clock - astronomical routines. */ #include "sunclock.h" /* JDATE -- Convert internal GMT date and time to Julian day and fraction. */ long jdate(t) struct tm *t; { long c, m, y; y = t->tm_year + 1900; m = t->tm_mon + 1; if (m > 2) m = m - 3; else { m = m + 9; y--; } c = y / 100L; /* Compute century */ y -= 100L * c; return t->tm_mday + (c * 146097L) / 4 + (y * 1461L) / 4 + (m * 153L + 2) / 5 + 1721119L; } /* JTIME -- Convert internal GMT date and time to astronomical Julian time (i.e. Julian date plus day fraction, expressed as a double). */ double jtime(t) struct tm *t; { return (jdate(t) - 0.5) + (((long) t->tm_sec) + 60L * (t->tm_min + 60L * t->tm_hour)) / 86400.0; } /* GMST -- Calculate Greenwich Mean Siderial Time for a given instant expressed as a Julian date and fraction. */ double gmst(jd) double jd; { double t, theta0; /* Time, in Julian centuries of 36525 ephemeris days, measured from the epoch 1900 January 0.5 ET. */ t = ((floor(jd + 0.5) - 0.5) - 2415020.0) / 36525.0; theta0 = 6.6460656 + 2400.051262 * t + 0.00002581 * t * t; t = (jd + 0.5) - (floor(jd + 0.5)); theta0 += (t * 24.0) * 1.002737908; theta0 = (theta0 - 24.0 * (floor(theta0 / 24.0))); return theta0; } /* KEPLER -- Solve the equation of Kepler. */ double kepler(m, ecc) double m, ecc; { double e, delta; #define EPSILON 1E-6 e = m = torad(m); do { delta = e - ecc * sin(e) - m; e -= delta / (1 - ecc * cos(e)); } while (abs(delta) > EPSILON); return e; } /* SUNPOS -- Calculate position of the Sun. JD is the Julian date of the instant for which the position is desired and APPARENT should be nonzero if the apparent position (corrected for nutation and aberration) is desired. The Sun's co-ordinates are returned in RA and DEC, both specified in degrees (divide RA by 15 to obtain hours). The radius vector to the Sun in astronomical units is returned in RV and the Sun's longitude (true or apparent, as desired) is returned as degrees in SLONG. */ /* Obliquity of the ecliptic (radians) */ double epsrad; void sunpos(jd, apparent, ra, dec, rv, slong) double jd; int apparent; double *ra, *dec, *rv, *slong; { double t, t2, t3, l, m, e, ea, v, theta, thetarad, omega, eps; /* Time, in Julian centuries of 36525 ephemeris days, measured from the epoch 1900 January 0.5 ET. */ t = (jd - 2415020.0) / 36525.0; t2 = t * t; t3 = t2 * t; /* Geometric mean longitude of the Sun, referred to the mean equinox of the date. */ l = fixangle(279.69668 + 36000.76892 * t + 0.0003025 * t2); /* Sun's mean anomaly. */ m = fixangle(358.47583 + 35999.04975*t - 0.000150*t2 - 0.0000033*t3); /* Eccentricity of the Earth's orbit. */ e = 0.01675104 - 0.0000418 * t - 0.000000126 * t2; /* Eccentric anomaly. */ ea = kepler(m, e); /* True anomaly */ v = fixangle(2 * todeg(atan(sqrt((1 + e) / (1 - e)) * tan(ea / 2)))); /* Sun's true longitude. */ theta = l + v - m; /* Obliquity of the ecliptic. */ eps = 23.452294 - 0.0130125 * t - 0.00000164 * t2 + 0.000000503 * t3; /* Corrections for Sun's apparent longitude, if desired. */ if (apparent) { omega = fixangle(259.18 - 1934.142 * t); theta = theta - 0.00569 - 0.00479 * sin(torad(omega)); eps += 0.00256 * cos(torad(omega)); } /* Return Sun's longitude and radius vector */ *slong = theta; *rv = (1.0000002 * (1 - e * e)) / (1 + e * cos(torad(v))); /* Determine solar co-ordinates. */ epsrad = torad(eps); thetarad = torad(theta); *ra = atan2((cos(epsrad) * sin(thetarad)), cos(thetarad)); *ra = fixangle(todeg(*ra)); *dec = todeg(asin(sin(epsrad)) * sin(thetarad)); } /* Astronomical constants */ #define epoch 2444238.5 /* 1980 January 0.0 */ /* Constants defining the Sun's apparent orbit */ #define elonge 278.833540 /* Ecliptic longitude of the Sun at epoch 1980.0 */ #define elongp 282.596403 /* Ecliptic longitude of the Sun at perigee */ #define eccent 0.016718 /* Eccentricity of Earth's orbit */ #define sunsmax 1.495985e8 /* Semi-major axis of Earth's orbit, km */ #define sunangsiz 0.533128 /* Sun's angular size, degrees, at semi-major axis distance */ /* Elements of the Moon's orbit, epoch 1980.0 */ #define mmlong 64.975464 /* Moon's mean longitude at the epoch */ #define mmlongp 349.383063 /* Mean longitude of the perigee at the epoch */ #define mlnode 151.950429 /* Mean longitude of the node at the epoch */ #define minc 5.145396 /* Inclination of the Moon's orbit */ #define mecc 0.054900 /* Eccentricity of the Moon's orbit */ #define mangsiz 0.5181 /* Moon's angular size at distance a from Earth */ #define msmax 384401.0 /* Semi-major axis of Moon's orbit in km */ #define mparallax 0.9507 /* Parallax at distance a from Earth */ #define synmonth 29.53058868 /* Synodic month (new Moon to new Moon) */ #define lunatbase 2423436.0 /* Base date for E. W. Brown's numbered series of lunations (1923 January 16) */ /* JYEAR -- Convert Julian date to year, month, day, which are returned via integer pointers to integers. */ void jyear(td, yy, mm, dd) double td; int *yy, *mm, *dd; { double j, d, y, m; td += 0.5; /* Astronomical to civil */ j = floor(td); j = j - 1721119.0; y = floor(((4 * j) - 1) / 146097.0); j = (j * 4.0) - (1.0 + (146097.0 * y)); d = floor(j / 4.0); j = floor(((4.0 * d) + 3.0) / 1461.0); d = ((4.0 * d) + 3.0) - (1461.0 * j); d = floor((d + 4.0) / 4.0); m = floor(((5.0 * d) - 3) / 153.0); d = (5.0 * d) - (3.0 + (153.0 * m)); d = floor((d + 5.0) / 5.0); y = (100.0 * y) + j; if (m < 10.0) m = m + 3; else { m = m - 9; y = y + 1; } *yy = y; *mm = m; *dd = d; } /* JHMS -- Convert Julian time to hour, minutes, and seconds. */ void jhms(j, h, m, s) double j; int *h, *m, *s; { long ij; j += 0.5; /* Astronomical to civil */ ij = (j - floor(j)) * 86400.0; *h = ij / 3600L; *m = (ij / 60L) % 60L; *s = ij % 60L; } /* MEANPHASE -- Calculates mean phase of the Moon for a given base date and desired phase: 0.0 New Moon 0.25 First quarter 0.5 Full moon 0.75 Last quarter Beware!!! This routine returns meaningless results for any other phase arguments. Don't attempt to generalise it without understanding that the motion of the moon is far more complicated that this calculation reveals. */ double meanphase(sdate, phase, usek) double sdate, phase; double *usek; { int yy, mm, dd; double k, t, t2, t3, nt1; jyear(sdate, &yy, &mm, &dd); k = (yy + ((mm - 1) * (1.0 / 12.0)) - 1900) * 12.3685; /* Time in Julian centuries from 1900 January 0.5 */ t = (sdate - 2415020.0) / 36525; t2 = t * t; /* Square for frequent use */ t3 = t2 * t; /* Cube for frequent use */ *usek = k = floor(k) + phase; nt1 = 2415020.75933 + synmonth * k + 0.0001178 * t2 - 0.000000155 * t3 + 0.00033 * dsin(166.56 + 132.87 * t - 0.009173 * t2); return nt1; } /* TRUEPHASE -- Given a K value used to determine the mean phase of the new moon, and a phase selector (0.0, 0.25, 0.5, 0.75), obtain the true, corrected phase time. */ double truephase(k, phase) double k, phase; { double t, t2, t3, pt, m, mprime, f; int apcor = 0; k += phase; /* Add phase to new moon time */ t = k / 1236.85; /* Time in Julian centuries from 1900 January 0.5 */ t2 = t * t; /* Square for frequent use */ t3 = t2 * t; /* Cube for frequent use */ pt = 2415020.75933 /* Mean time of phase */ + synmonth * k + 0.0001178 * t2 - 0.000000155 * t3 + 0.00033 * dsin(166.56 + 132.87 * t - 0.009173 * t2); m = 359.2242 /* Sun's mean anomaly */ + 29.10535608 * k - 0.0000333 * t2 - 0.00000347 * t3; mprime = 306.0253 /* Moon's mean anomaly */ + 385.81691806 * k + 0.0107306 * t2 + 0.00001236 * t3; f = 21.2964 /* Moon's argument of latitude */ + 390.67050646 * k - 0.0016528 * t2 - 0.00000239 * t3; if ((phase < 0.01) || (abs(phase - 0.5) < 0.01)) { /* Corrections for New and Full Moon */ pt += (0.1734 - 0.000393 * t) * dsin(m) + 0.0021 * dsin(2 * m) - 0.4068 * dsin(mprime) + 0.0161 * dsin(2 * mprime) - 0.0004 * dsin(3 * mprime) + 0.0104 * dsin(2 * f) - 0.0051 * dsin(m + mprime) - 0.0074 * dsin(m - mprime) + 0.0004 * dsin(2 * f + m) - 0.0004 * dsin(2 * f - m) - 0.0006 * dsin(2 * f + mprime) + 0.0010 * dsin(2 * f - mprime) + 0.0005 * dsin(m + 2 * mprime); apcor = !0; } else if ((abs(phase - 0.25) < 0.01 || (abs(phase - 0.75) < 0.01))) { pt += (0.1721 - 0.0004 * t) * dsin(m) + 0.0021 * dsin(2 * m) - 0.6280 * dsin(mprime) + 0.0089 * dsin(2 * mprime) - 0.0004 * dsin(3 * mprime) + 0.0079 * dsin(2 * f) - 0.0119 * dsin(m + mprime) - 0.0047 * dsin(m - mprime) + 0.0003 * dsin(2 * f + m) - 0.0004 * dsin(2 * f - m) - 0.0006 * dsin(2 * f + mprime) + 0.0021 * dsin(2 * f - mprime) + 0.0003 * dsin(m + 2 * mprime) + 0.0004 * dsin(m - 2 * mprime) - 0.0003 * dsin(2 * m + mprime); if (phase < 0.5) /* First quarter correction */ pt += 0.0028 - 0.0004 * dcos(m) + 0.0003 * dcos(mprime); else /* Last quarter correction */ pt += -0.0028 + 0.0004 * dcos(m) - 0.0003 * dcos(mprime); apcor = !0; } if (!apcor) { fprintf(stderr, "TRUEPHASE called with invalid phase selector.\n"); abort(); } return pt; } /* PHASEHUNT -- Find time of phases of the moon which surround the current date. Five phases are found, starting and ending with the new moons which bound the current lunation. */ void phasehunt(sdate, phases) double sdate; double phases[5]; { double adate, k1, k2, nt1, nt2; adate = sdate - 45; nt1 = meanphase(adate, 0.0, &k1); while (1) { adate += synmonth; nt2 = meanphase(adate, 0.0, &k2); if (nt1 <= sdate && nt2 > sdate) break; nt1 = nt2; k1 = k2; } phases[0] = truephase(k1, 0.0); phases[1] = truephase(k1, 0.25); phases[2] = truephase(k1, 0.5); phases[3] = truephase(k1, 0.75); phases[4] = truephase(k2, 0.0); } /* PHASE -- Calculate phase of moon as a fraction: The argument is the time for which the phase is requested, expressed as a Julian date and fraction. Returns the terminator phase angle as a percentage of a full circle (i.e., 0 to 1), and stores into pointer arguments the illuminated fraction of the Moon's disc, the Moon's age in days and fraction, the distance of the Moon from the centre of the Earth, and the angular diameter subtended by the Moon as seen by an observer at the centre of the Earth. */ double phase(gtime, lat, lon, pphase, mage, dist, angdia, sudist, suangdia) time_t gtime; double *lat; /* Latitude in degrees/Earth */ double *lon; /* Longitude in degrees/Earth */ double *pphase; /* Illuminated fraction */ double *mage; /* Age of moon in days */ double *dist; /* Distance in kilometres */ double *angdia; /* Angular diameter in degrees */ double *sudist; /* Distance to Sun */ double *suangdia; /* Sun's angular diameter */ { struct tm ctp; double pdate, xg, yg, zg, xe, ye, ze, ra; double Day, N, M, Msin, Ec, Lambdasun, ml, MM, MN, Ev, Ae, A3, MmP, MmPrad, mEc, A4, lP, V, lPP, lPPnode, NP, Lambdamoon, BetaM, MoonAge, MoonPhase, MoonDist, MoonDFrac, MoonAng, MoonPar, F, SunDist, SunAng; /* Calculation of the Sun's position */ ctp = *gmtime(>ime); pdate = jtime(&ctp); Day = pdate - epoch; /* Date within epoch */ N = fixangle((360 / 365.2422) * Day); /* Mean anomaly of the Sun */ M = fixangle(N + elonge - elongp); /* Convert from perigee co-ordinates to epoch 1980.0 */ Msin = sin(torad(M)); Ec = kepler(M, eccent); /* Solve equation of Kepler */ Ec = sqrt((1 + eccent) / (1 - eccent)) * tan(Ec / 2); Ec = 2 * todeg(atan(Ec)); /* True anomaly */ Lambdasun = fixangle(Ec + elongp); /* Sun's geocentric ecliptic longitude */ /* Orbital distance factor */ F = ((1 + eccent * cos(torad(Ec))) / (1 - eccent * eccent)); SunDist = sunsmax / F; /* Distance to Sun in km */ SunAng = F * sunangsiz; /* Sun's angular size in degrees */ /* Calculation of the Moon's position */ /* Moon's mean longitude */ ml = fixangle(13.1763966 * Day + mmlong); /* Moon's mean anomaly */ MM = fixangle(ml - 0.1114041 * Day - mmlongp); /* Moon's ascending node mean longitude */ MN = fixangle(mlnode - 0.0529539 * Day); /* Evection */ Ev = 1.2739 * sin(torad(2 * (ml - Lambdasun) - MM)); /* Annual equation */ Ae = 0.1858 * Msin; /* Correction term */ A3 = 0.37 * Msin; /* Corrected anomaly */ MmP = MM + Ev - Ae - A3; MmPrad = torad(MmP); /* Correction for the equation of the centre */ mEc = 6.2886 * sin(MmPrad); /* Another correction term */ A4 = 0.214 * sin(2 * MmPrad); /* Corrected longitude */ lP = ml + Ev + mEc - Ae + A4; /* Variation */ V = 0.6583 * sin(torad(2 * (lP - Lambdasun))); /* True longitude */ lPP = lP + V; /* Corrected longitude of the node */ NP = MN - 0.16 * Msin; /* Relative Longitude with respect to the node */ lPPnode = torad(lPP - NP); /* x, y, z ecliptic coordinates with respect to node */ xe = cos(lPPnode); ye = sin(lPPnode) * cos(torad(minc)); ze = sin(lPPnode) * sin(torad(minc)); /* Ecliptic latitude */ BetaM = todeg(asin(ze)); /* Ecliptic longitude */ Lambdamoon = todeg(atan2(ye, xe)); Lambdamoon += NP; /* x, y, z sidereal ecliptic coordinates */ xe = cos(torad(Lambdamoon)); ye = sin(torad(Lambdamoon)); /* Calculation of the phase of the Moon */ /* Age of the Moon in degrees */ MoonAge = lPP - Lambdasun; /* Phase of the Moon */ MoonPhase = (1 - cos(torad(MoonAge))) / 2; /* Calculate distance of moon from the centre of the Earth */ MoonDist = (msmax * (1 - mecc * mecc)) / (1 + mecc * cos(torad(MmP + mEc))); /* Calculate Moon's angular diameter */ MoonDFrac = MoonDist / msmax; MoonAng = mangsiz / MoonDFrac; /* Calculate Moon's parallax */ MoonPar = mparallax / MoonDFrac; *pphase = MoonPhase; *mage = synmonth * (fixangle(MoonAge) / 360.0); *dist = MoonDist; *angdia = MoonAng; *sudist = SunDist; *suangdia = SunAng; /* Rotate to equatorial geocentric coords taking into account obliquity of ecliptic of date */ xg = xe; yg = ye * cos(epsrad) - ze * sin(epsrad); zg = ye * sin(epsrad) + ze * cos(epsrad); ra = todeg(atan2(yg, xg)); *lat = todeg(asin(zg)); *lon = fixangle((ra + 180.0 - (gmst(pdate) * 15.0))) - 180.0; return fixangle(MoonAge) / 360.0; } sunclock-3.57/wm_icons/0000755000000000000000000000000010446037041011774 5ustar sunclock-3.57/wm_icons/mini-sunclock-16x16.xpm0000644000000000000000000000104607166624074016076 0ustar /* XPM */ static char *magick[] = { /* columns rows colors chars-per-pixel */ "16 16 9 1", " c Gray0", ". c #191919", "X c #00007f", "o c #007f00", "O c #007f7f", "+ c Blue", "@ c Green", "# c Gray100", "$ c None", /* pixels */ "$$$$$$O##XX$$$$$", "$$$$.OO##+Ooo$$$", "$$$o@O+##+O@@o$$", "$$oOo++##+@@@Oo$", "$o@++++##+OX+O@o", "###++++##+@@O###", "#O#++++##@@@@@@#", "###++++##@@@@@##", "++#O+++###@@@@@#", "###@O+++###+O###", ".+@@@@+++###O@@O", "$XO@@@X#++###@OO", "$X+@@O+#+++##@OX", "$$XO@++###++OX+$", "$$$OO++#+#+++X$$", "$$$$.++###++X$$$" };sunclock-3.57/wm_icons/sunclock2.xpm0000644000000000000000000000322407330262120014422 0ustar /* XPM */ static char * icone_xpm[] = { "32 32 32 1", " c None", ". c #1D176B", "+ c #241F6D", "@ c #1A165B", "# c #16133F", "$ c #131130", "% c #100E23", "& c #0A0911", "* c #000000", "= c #16134C", "- c #251E7F", "; c #F4F4ED", "> c #1E195B", ", c #2A1ED8", "' c #241C8E", ") c #2D23B2", "! c #2016A3", "~ c #272260", "{ c #2B1DF2", "] c #221C75", "^ c #B6BD33", "/ c #D8E31A", "( c #D8E319", "_ c #B7BE2F", ": c #B8BE3E", "< c #DDE817", "[ c #B8BE43", "} c #B7BE2C", "| c #4A7A3D", "1 c #4E9B39", "2 c #C3CC1A", "3 c #D9E517", ".+++@########$$$$$%%%%&&&&******", "..++@@#=#@@#=######$$$$$%%%%%&&*", "-..++@=##+@==;;;#####$$$$%%%%&&*", "--.>+++@@+++;@@=;#=###$$$$%%%%&*", "---,.++++.+;++@@##=####$$$$$%%%*", "'-)-,.+>+-.;+++@@@@##=###$$$$%%*", "!''---.++--.;+@@+++@@#==###$$$$&", "!!,'--...--..;;+@@@@@~##==##$$$&", ",!!',---,'---..;;+@+;@@@;=#;;;;&", ",!!{!'--.!'--..>.;++;@@@;@#;=#;%", ",,!!!')--!')--.).;>+;+@@;@@;##;%", ",,,!!!'',!;''-]]];.+;>+@;@@;##;%", ",,,!{,,,,{!;'--;;]...;>;+@@;@@;$", ",{,,,^/(_,!!;;;;]]...;;;++@;@@;$", "{{,:<<<<<<_,,],.,.+>++@@@@==###$", "{,[<<<<<<<<},,,...>>+>>+@@@#....", "{,<<<<<<<<<<<{,,,,!.....{{{{|||1", "{<<<<<<<<<<<_<{{!,,!,,{|||||1111", "<222222222<<3<<{{{{{{{1111111111", "1|;;;;111;11111;11111;;;11;111;1", "1;;111;11;1111;;;111;11111;11;11", "1;1|||111;111;111;1|;||||1;11;11", "1;1111111;111;1||;|1;11111;1;111", ";11111111;111;111;11;11111;;;111", ";11111111;||1;111;||;11111;1;111", ";1|||111|;111;111;11;11111;1;111", ";1|1111|1;111;111;11;11111;11;11", ";11111111;111;111;11;11111;11;11", "1;1111111;111;111;11;11111;111;1", "1;1111111;111;111;11;11111;111;1", "1;;111;11;111;111;11;11111;1111;", "11;;;;111;;;11;;;1111;;;11;1111;"}; sunclock-3.57/wm_icons/mini-sunclock-16x14.xpm0000644000000000000000000000075707166626002016075 0ustar /* XPM */ static char * t_xpm[] = { /* columns rows colors chars-per-pixel */ "16 14 8 1", " c None", ". c #007f7f", "X c White", "o c #00007f", "O c #191919", "+ c Blue", "@ c #007f00", "# c Green", /* pixels */ " .XXoo ", " O..XX+.@@ ", " @#.+XX+.##@ ", " @.@++XX+###.@ ", " @#++++XX+.o+.#@", "@XX++++XX+##.XXo", "o.X++++XX######o", "oXX#.+++XXX+.XXo", "o+####+++XXX.##.", "@o.###oX++XXX#..", " o+##.+X+++XX#.o", " o.#++XXX++.o+ ", " ..++X+X+++o ", " O++XXX++o "}; sunclock-3.57/wm_icons/sunclock.xpm0000644000000000000000000000305707166626407014367 0ustar /* XPM */ static char *magick[] = { /* columns rows colors chars-per-pixel */ "32 32 23 1", " c None", ". c #191919", "X c Gray20", "o c #00007f", "O c #007f00", "+ c #007f7f", "@ c #7f0000", "# c #7f007f", "$ c #7f7f00", "% c #4c4c4c", "& c #666667", "* c Gray50", "= c Blue", "- c Green", "; c Cyan", ": c Red", "> c Magenta", ", c Yellow", "< c Gray60", "1 c #b2b2b2", "2 c Gray80", "3 c Gray90", "4 c Gray100", /* pixels */ " 4o4444.. ", " .X44+++=4=o+. ", " .-+++4--+=4=++--. ", " O++++=4+4444=-O+--O ", " --+++==4=4====+++---44 ", " -----+==4=4==++=----444 ", " O-+--++==4=4444+----444+- ", " O---==44========+-++444--+O ", " .---===444=======-+=444++---. ", " O++=====444======++444===+--O ", " .+=+======444=====-444-------+o", " ++=========444===+444------+--o", "4444+========444=+444-------4444", "4o+4==========444444---------++4", "4=+4===========4444------------4", "4444-+==========44-----------444", "o==4--+===========-------------4", "o==4----===========--+++------+4", "4444----+===============+---4444", " ==------++=============+-----==", " o=---------=============-----=o", " o=+--------+============----++o", " ==+------+=============----++o", " ===------+============+---+=o ", " .==+-----+============+---==. ", " o=+---+=====4444======--+=o ", " ==---+=====4========+-+== ", " =+--======4============ ", " =++======4444======== ", " o+======4==4======o ", " .======4==4=====. ", " .ooo=4444=oo " }; sunclock-3.57/VMF.txt0000644000000000000000000001776110445070674011373 0ustar The VMF format is a convenient ASCII vector map format which has been designed to work with sunclock. It has been originally inspired by the algorithms used by xearth ((C) Kirk Lauritz Johnson) to encode Earth regions - however, many changes have been introduced later, so that not much of the original settings remain ... We now come to the precise VMF specifications ============================= INITIAL SIGNATURE OF THE FILE ============================= >>> %!VMF is the initial signature for the format ======== COMMENTS ======== Any character % indicates a comment until a newline character is found. Comments can be included anywhere (in general at the beginning of a new line.) ====== COLORS ====== The first data to be specified at the top of the VMF file should be a list of colors, either in the form explicit RGB values (#rrggbb where rr, gg, bb are 2 place hexadecimal values standing respectively for red, green, blue in the range 0..255) or conventional names of colors, in the format understood by the XAllocNamedColor() Xlib routine. Each color occupies one line, and the end of the list is indicated by a semicolon ; Then come a default color, indicated by its index in the range 0 .. num_colors. This is the color which will be used if there is no other match from the list of colors. The next data are the palette values, given in the form (color --> list of codes): >>> c0 j1 j2 j3 ... >>> c1 k1 k2 ... >>> c2 l1 l2 l3 l4 >>> c4 ... >>> (etc) >>> cN u1 u2 ... >>> ; Do not forget the final semicolon to indicate that the palette values are complete. The meaning of this is that codes j1 j2 j3 will be attributed color 0 (first listed color), codes k1 k2 will be attributed color 1 (second listed color), etc. All c* values should be in the range 0 .. num_colors-1 The next value is the "background value", that is the color code which will be affected to all pixels, before the codes are modified by drawing objects on the map (thus initially the screen is entirely filled with this color). ==================== RANGE OF COORDINATES ==================== Follows a line starting with the keyword "range" and indicating four float values: >>> range which sets the range in which the latitude phi and longitude vary, e.g. : >>> range -90.0 90.0 -180.0 180.0 ======================= OPTIONAL OPTIONS / DATA ======================= Then come a number of optional options and flags and arrays of curves / filled areas / text labels in any succession. The positions are specified by arrays of coordinate values, given as pairs (phi, theta) of latitude and longitude of points on Earth in decimal degrees, with -90 <= phi <= 90 and (ususally) -180 <= theta <= 180 (the latter is not absolutely required since longitudes are taken mod 360 degrees). They are just Such arrays are meant to represent piecewise linear curves, which can be either open or closed, filled as regions or just represented as continuous lines. The syntax is as follows >>> # >>> phi1 theta1 phi2 theta2 phi3 theta3 ... >>> ; where is an arbitrary nonnegative integer (normally the actual rank of the curve by increasing order in the file, but the VMF format does not check this), and is an arbitrary (positive or negative) integer. The end of the array of coordinates is indicated by a semicolon (usually starting a new line). In between, the coordinates are just float values separated by blank spaces or new lines (no parentheses nor commas should be used). =============== DRAWING OPTIONS =============== The drawing options (to be set before a curve or filled area is started) are >>> fillmode 2 % fill curves >>> closedcurves % close the curves before filling Other options : >>> fillmode 0 % draw line (no filling) >>> fillmode 1 % draw line (alternate algorithm) >>> opencurves % don't close the path before drawing a line >>> zoomwidth % don't draw unless zoom.width >= value >>> zoomheight % don't draw unless zoom.height >= value Normally, the curves should be non-self-intersecting and traced in a counter-clockwise orientation (in case of a filled area, reversing the orientation is equivalent to taking the opposite of the value representing the color code). If a point is contained in several overlapping domains bounded by the specified curves, the "color value" obtained at that point is (as a consequence of the filling algorithm) the sum of the 's corresponding to each curve, plus the background value. (If there are many domains overlapping randomly, it may then be advisable to use powers of 2 as color values, so that the combination produces a result that is unique to those combinations of domains.) The practical limit on the code values is 2^15-1. ===== FLAGS ===== Sunclock sets a "vmfflag" value (default value 0xFFFFFFFF = -1) whose purpose is to enable/disable sections of the VMF file according to the vmfflag value, using an AND test. The value of the flag can be set e.g. as follows : >>> flag 4 Then if vmfflag&4 is non zero, the following section will be drawn, otherwise it will be ignored. The zeroth order bit (i.e. &1) determines whether features which have their own zeroth bit set are to be drawn in clock window mode (versus map mode - if the zeroth bit is not set, the feature will always be drawn, whether the window is in map mode or not). =========== TEXT LABELS =========== Finally, here is the syntax for putting text labels >>> label 1720 14 0 -87.000 165.000 >>> +11 timezone >>> ; This is the label of index 1719 (value irrelevant), color 14, in position 0 (-1=on the left, 0=centered, 1=on the right), at coordinates phi=latitude=-87.0, theta=longitude=165.0 whose string value is "+11 timezone". Multi-line labels are allowed. In order to disable the new line character (so that no line break appears, the last character of the line should be \ Any initial blank space of each line is removed (if one insists on starting by a blank space, the line should start with two blank spaces). The label terminates when ; is met as the first character of the line. =========== END OF FILE =========== Not surprinsingl, the end of the file is marked by the keyword "end" ======================== A TYPICAL SAMPLE OF DATA ======================== %!VMF % Vector Map Format for Sunclock % % List of colors #BFEFFF % 0 LightBlue1 #FFFACD % 1 LemonChiffon #FFFF69 % 2 LightYellow #BEB208 % 3 DarkGold #86CB28 % 4 YellowGreen #D7EB00 % 5 GreenGold #8CCD8C % 6 LightGreen3 #CD7054 % 7 Salmon3 #EE8262 % 8 Salmon2 #DEB887 % 9 Burlywood #F4A460 % 10 SandyBrown #000000 % 11 Black #0000FF % 12 Blue #FF0000 % 13 Red #000000 % 14 Black ; % Default color 0 % Palette (possibly several codes for each color: ci j1 j2 j3 ... ) c0 0 c1 1 c2 2 c3 3 c4 4 c5 5 c6 6 c7 7 c8 8 c9 9 c10 10 c11 11 c12 12 c13 13 ; % Background value 1 % Coordinate range (latitude, longitude) range -90 90 -180 180 % List of closed curves of land areas & lakes % Set internal flag flag 2 % Fill mode = fill areas within closed curves fillmode 2 closedcurves #0 3 21.364 -157.706 21.568 -157.862 21.642 -158.075 21.456 -158.211 21.383 -158.017 21.252 -157.823 ; #1 3 21.159 -156.871 21.196 -157.065 21.085 -157.279 21.103 -157.065 21.048 -156.871 ; % Fill mode = fill areas within closed curves fillmode 2 closedcurves #0 3 21.364 -157.706 21.568 -157.862 21.642 -158.075 21.456 -158.211 21.383 -158.017 21.252 -157.823 ; #1 -4 21.159 -156.871 21.196 -157.065 21.085 -157.279 21.103 -157.065 21.048 -156.871 ; %% Note : putting 0 as color is equivalent to disabling the curve) % Fill mode = draw open curves fillmode 0 opencurves #1565 13 90.000 -157.512 70.964 -157.512 ; #1566 13 90.000 -142.503 79.997 -142.503 69.972 -142.503 ; % Write a few labels (with flag = 9) flag 9 label 1708 14 0 -87.000 0.000 0 ; label 1709 14 0 -87.000 15.000 +1 ; label 1710 14 0 -87.000 30.000 +2 ; label 1711 14 0 -87.000 45.000 +3 ; end sunclock-3.57/coordinates.txt0000644000000000000000000045377307316253662013267 0ustar From http://www.ecf.toronto.edu/~mao/ The List of the Cities in the World with their NACs by Xinhang Shen and Todd Westphal The cities in this list are arranged in alphabetic order. The positive latitude is Latitude North, and negative latitude is Latitude South; the positive longitude is Longitude East, and negative Longitude is Longitude West. You can use the alphabetic search to look up the city you want by selectng the first letter of the city name from the following list: A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, S, T, U, V, W, X, Y, Z. ------------------------------------------------------------------------ A City Latitude Longitude NAC "Aalborg,Denmark" +57.09700 +9.85000 HSLQ SHGJ "Abbotsford,BC" +49.03000 -122.32000 4S60 R54H "Aberdeen_Prv_Gnd,MD" +39.23500 -76.17490 8MJV PJ57 "Aberdeen,ID" +42.95000 -112.83000 5KWQ Q4QH "Aberdeen,MD" +39.51170 -76.16170 8MKV PKJQ "Aberdeen,Scotland" +57.20000 -2.20000 GSH0 SJ00 "Aberdeen,SD" +45.46700 -98.48300 6RRR QKB1 "Aberdeen,WA" +47.00000 -123.80000 4NH0 QT00 "Abilene,KS" +38.90000 -97.20000 6W00 PGH0 "Abilene,TX" +32.46500 -99.71330 6NPH ND9Q "Acapulco,Mexico" +16.75000 -99.76700 6NKG KRQH "Accra,Ghana" +5.60000 -0.16700 GZKG HX00 "Ada,MN" +47.28300 -96.53300 6XN0 QVDF "Adak,AK" +51.66700 -176.46700 08SZ RLB1 "Adams,MA" +42.58300 -73.16700 8W2G Q2WF "Addis_Ababa,Ethiopia" +9.00000 +38.73330 L6SZ JH00 "Adelaide,Australia" -34.76660 +138.53670 VJB7 9650 "Aden,Yemen_(PDR_of)" +12.80000 +45.00000 LQH0 K400 "Afton,OK" +36.70000 -94.93300 72N0 P3H0 "Afton,WY" +42.70000 -110.86700 5QSZ Q3H0 "Agana_NAS,Guam" +13.48167 +144.79330 W1ZG K7D7 "Ahwahnee,CA" +37.25000 -119.42000 51FH P67H "Aiken,SC" +33.53300 -81.71700 85P6 NKMX "Ainsworth,NE" +42.53300 -99.85000 6NC7 Q2MX "Ajo,AZ" +32.33300 -112.91700 5KP6 NCMX "Akron,OH" +41.08330 -81.51220 866K PTDG "Al_Manamah,Bahrain" +26.01670 +50.55000 M6C7 MB2H "Alameda,CA" +37.76330 -122.24300 4SCR P8SG "Alamo,NV" +37.36700 -115.16700 5D2G P6T1 "Alamogordo,NM" +32.90000 -105.95700 6536 NGH0 "Albany,GA" +31.57500 -84.15830 7ZL3 N7V7 "Albany,NY" +42.65030 -73.75030 8TLP Q37J "Albany,OR" +44.63330 -123.09800 4Q7M QF4Z "Albion,ID" +42.40000 -113.57000 5J27 Q200 "Albuquerque,NM" +35.08360 -106.65100 63C5 NTDJ "Alcoa,TN" +35.75000 -84.00000 8000 NXQH "Aldermaston,England" +51.11933 -1.15543 GW3B RHKV "Alert,NWT" +82.52000 -62.28000 9S90 XQL0 "Alexander_City,AL" +32.91700 -85.91700 7T66 NGKJ "Alexandria,Egypt" +31.19000 +29.95000 KGV7 N5XH "Alexandria,LA" +31.30170 -92.45330 78V0 N6H7 "Alexandria,VA" +38.80330 -77.05000 8KC7 PG0G "Algiers,Algeria" +36.70000 +3.21700 H818 P3H0 "Alhambra,CA" +34.14000 -118.10700 54PZ NNP0 "Alice_Springs,Austral" -23.80000 +133.90000 V4QH C100 "Allen_AAF,AK" +64.00000 -145.72000 2TP0 TN00 "Allentown,PA" +40.60300 -75.46830 8P9V PR0F "Alliance,NE" +42.10000 -102.88300 6DRR Q0H0 "Alpharetta,GA" +34.06110 -84.22220 7ZFB NN94 "Alpine,CA" +32.50370 -116.45100 58V5 NDHJ "Altenstadt,Germany" +47.83400 +10.86800 HW53 QZ53 "Altoona,PA" +40.51530 -78.40080 8FZX PQK8 "Amami_Island,Japan" +28.25000 +129.70000 TS7H MP7H "Amarillo,TX" +35.20750 -101.83400 6HDF NV13 "Ambler,AK" +67.08000 -157.85000 1TC7 V5D0 "Amchitka,AK" +51.38000 -179.26000 01TH RJW0 "American_Falls,ID" +42.75000 -112.88300 5KRR Q3QH "Ames,IA" +42.03170 -93.61670 75XQ Q04Q "Amherst,OH" +41.39750 -82.21970 84FH PVZL "Amilcar_Cabral,C._Ver" +16.75000 -22.95000 F2LQ KRQH "Amman,Jordan" +31.95000 +35.95000 KZV7 N9QH "Amsterdam,Neth." +52.35000 +4.86660 HD4Z RPQH "Anaconda,MT" +46.12830 -112.95300 5KLH QNM7 "Anaheim,CA" +33.83500 -117.91300 556H NM57 "Anchorage,AK" +61.16670 -149.98300 2H18 T5T0 "Anderson_AFB,Guam" +13.58670 +144.93670 W2B7 K7X0 "Anderson,IN" +40.16670 -85.68500 7TRL PNT0 "Anderson,SC" +34.51000 -82.65500 83BV NQJH Angaur_Island +6.90000 +134.15000 V5C7 J4H0 "Ankara,Turkey" +40.03000 +32.90000 KQ7H PN4H "Ann_Arbor,MI" +42.28310 -83.74780 80LW Q1DF "Annapolis,MD" +38.97330 -76.49500 8LQV PGTZ "Annette_Is.,AK" +55.04500 -131.56000 4130 S56Q "Anniston,AL" +33.65000 -85.78300 7TJ8 NL7H "Ansbach,Germany" +49.33000 +10.59700 HVGR R6MH Antigua +17.13330 -61.78330 9TJ7 KTMZ "Antlers,OK" +24.23300 -95.63300 70WH M14X "Antofagasta,Chile" -23.43330 -70.60000 93H0 C2T0 "Antwerp,Belgium" +51.21670 +4.40000 HC00 RJ2H "Appleton,WI" +44.26170 -88.42000 7LXH QC97 "Aqaba,Jordan" +29.60000 +35.01000 KWHQ MX00 "Arcade-Arden,CA" +38.58330 -121.48300 4V8R PDWG "Ardmore,OK" +34.16700 -97.13300 6W50 NNT1 "Arese,Italy" +45.60000 +9.15000 HQV7 QL00 "Argyle,MN" +48.35000 -96.80000 6X00 R1QH "Arica,Chile" -18.35000 -70.33330 9450 CX7H "Arkadelphia,AR" +34.10000 -93.08300 778R NNH0 "Arlington_Hts.,IL" +42.08830 -87.98000 7N1H Q0F7 "Arlington,MA" +42.41500 -71.15170 923L Q227 "Arlington,TX" +32.73670 -97.11330 6W6H NFNH "Arlington,VA" +38.90000 -77.10000 8K7H PGH0 "Armour,SD" +43.30000 -98.35000 6S3Q Q6H0 "Arvada,CO" +39.80000 -105.07800 6794 PM00 Ascension_Island -7.88000 -14.42000 FRXH FNL0 "Ash_Fork,AZ" +35.21700 -112.48300 5LRR NV2J "Asheville,NC" +35.59500 -82.55720 83L6 NWZ7 "Ashland,KS" +37.18300 -99.76700 6NKG P5WF "Ashland,KY" +38.47670 -82.63970 83D0 PDCH "Ashland,ME" +46.61700 -68.43300 98WH QR2J "Ashley,ND" +46.05000 -99.38300 6PJ8 QN7H "Asmara,Ethiopia" +15.28330 +38.90000 L77H KJDG "Aspen,CO" +39.25000 -106.91700 62P6 PJ7H "Astoria,OR" +46.18300 -123.85000 4NC7 QNWF "Asuncion,Paraguay" -25.23330 -57.51670 B667 BRT0 "Aswan,Egypt" +23.96500 +32.82000 KQ1H LZSQ "Athens,GA" +33.95670 -83.38330 81J7 NMRH "Athens,Greece" +38.00000 +23.63330 JZ2G PB00 "Athens,Greece" +38.02667 +23.73345 JZB0 PB40 "Athens,TN" +35.43300 -84.60000 7XH0 NW4X "Atkinson,NE" +42.53300 -98.96700 6QKG Q2MX "Atlanta,GA" +33.75280 -84.39360 7Z0G NLQW "Atlantic_City,NJ" +39.35890 -74.43140 8RWM PJRT "Atmore,AL" +31.01700 -87.51700 7P66 N52J "Attleboro,MA" +41.95800 -71.29190 91R3 PZRP "Auburn,AL" +32.60670 -85.48330 7V8Q NF10 "Auburn,ME" +44.09670 -70.22830 94DV QBGH "Auckland,New_Zealand" -36.88320 +174.75000 ZJV7 8TKH "Augusta,AR" +35.26700 -91.35000 7CLQ NVB1 "Augusta,GA" +33.47220 -81.96670 852G NKBS "Augusta,ME" +44.31470 -69.77470 95JV QCK6 "Aurora,CO" +39.74000 -104.86800 67SW PLP0 "Aurora,IL" +41.75500 -88.31330 7M6H PXR7 "Aurora,MN" +47.51700 -92.28300 798R QWKJ "Austin,NV" +39.50000 -117.08300 578R PKH0 "Austin,TX" +30.26920 -97.74360 6TM6 N1BC "Avalon,Australia" -38.03330 +144.46670 W150 8MT0 "Aviano,Italy" +46.03300 +12.60000 J1H0 QN4X "Avon,CT" +41.66700 -72.83300 8WWH PXB1 "Ayase,Japan" +35.45000 +139.45000 VLLQ NW7H "Aztec,NM" +36.66700 -108.00000 6000 P3B1 ------------------------------------------------------------------------ B City Latitude Longitude NAC Babelthuap_Island +7.36440 +134.55140 V6CB J6SM "Bacolod,Philippines" +10.65000 +122.93330 T79Z JR7H "Baden-Baden,Germany" +48.79000 +8.19000 HNG7 R3XH "Baghdad,Iraq" +33.23330 +44.36670 LNWH NJ4Z "Bahrain,U.A.E." +26.26700 +50.63300 M6KG MCB1 "Baie-Comeau,PQ" +49.14000 -68.18000 99JG R5P0 "Baker,MT" +46.35000 -104.20000 69H0 QPQH "Bakersfield,CA" +35.37500 -119.02200 52FB NVV7 "Balboa,Panama" +8.91670 -79.60000 8C00 JGKH "Baldwin_Park,CA" +34.07000 -117.95800 5534 NNBH Bali -8.75000 +115.16670 SKWH FJ7H "Baltimore,MD" +39.29050 -76.61250 8LG1 PJFK "Bamberg,Germany" +49.83300 +10.83300 HW2G R94X "Bandar_Abbass,Iran" +27.22600 +56.37700 MNX8 MJ3W "Bandar_Lengeh,Iran" +26.53300 +54.82500 MK1V MDMX "Bandirma,Turkey" +40.30900 +27.97300 K9WZ PPJB "Banff,AB" +51.18000 -115.55000 5C3Q RHW0 "Bangalore,India" +13.80000 +77.30000 PF7H K900 "Bangkok,Thailand" +13.83330 +100.48330 RC67 K94Z "Bangor,ME" +44.80360 -68.77170 9823 QG0J "Banjul,Gambia" +13.33600 -16.65990 FLBH K6ND "Bar_Harbor,ME" +44.36700 -68.21700 99FP QCT1 "Baraboo,WI" +43.48300 -89.73300 7HN0 Q7DF Barbados +13.06670 -59.50000 B17H K5B0 "Barcelona,Spain" +41.30200 +2.09200 H56W PVH9 "Barnesville,OH" +40.00330 -81.19170 870L PN0G "Barranquilla,Colombia" +10.90000 -74.78330 8R17 JSH0 "Barre,VT" +44.19830 -72.50170 8XQC QBZQ "Barron,WI" +45.40000 -91.85000 7BC7 QK00 "Barrow,AK" +71.33300 -156.00000 2000 VVMX "Barstow,CA" +34.88300 -117.05000 57C7 NSDF "Bartlesville,OK" +36.74500 -95.97670 701Q P3PQ "Barton,VT" +44.75000 -72.08300 8ZRR QFQH "Basrah,Iran" +30.56670 +47.77700 LZF8 N2T0 "Batesburg,SC" +33.88300 -81.56700 862G NMDF "Baton_Rouge,LA" +30.44940 -91.18330 7D17 N27D "Battle_Creek,MI" +42.31610 -85.18000 7W1G Q1KD "Bay_City,MI" +43.60110 -83.88750 808F Q804 "Bay_St._Louis,MS" +30.31700 -89.33300 7JN0 N1KJ "Bayonne,NJ" +40.66670 -74.12000 8SP0 PRB0 "Baytown,TX" +29.71830 -94.97670 72JQ MXKQ "Beach,ND" +46.91700 -104.00000 6B00 QSKJ "Beatty,NV" +36.96700 -116.80000 5800 P4T1 "Beaufort,SC" +32.41700 -80.66700 889Z ND2J "Beaumont,TX" +30.08890 -94.10250 74Q9 N0FB "Beaver,UT" +38.25000 -112.66700 5L9Z PC7H "Beaverton,OR" +45.48830 -122.80700 4QZG QKF7 "Beckley,WV" +37.77670 -81.19000 870Q P8VH "Beijing,China" +39.91660 +116.38330 SNXQ PMKG "Beirut,Lebanon" +33.88330 +35.50000 KXQH NMDG "Beja,Portugal" +38.14600 -7.92200 GB5T PBPW "Belem,Brazil" -1.38330 -48.48330 BXRQ GR2H "Belen,NM" +34.66700 -106.75000 633Q NRB1 "Belfast,N._Ireland" +54.63000 -5.87000 GH9Q S34H "Belgrade,Serbia" +44.80000 +20.53330 JP9Z QG00 Belize_City +15.53330 -88.30000 7M7H KKMZ "Belleville,IL" +38.51700 -89.98300 7H18 PDKJ "Bellevue,NE" +41.14500 -95.89170 7083 PTPQ "Bellevue,WA" +47.61670 -122.20000 4SH0 QX2H "Bellflower,CA" +33.89000 -118.14200 54MB NMFH "Bellingham,WA" +48.75050 -122.47700 4RS6 R3QK "Bellows_Falls,VT" +43.13333 -72.45000 8XV7 Q5MZ "Ben_Guerir,Morocco" +32.12772 -7.87990 GB90 NBM4 "Bend,OR" +44.06700 -121.28300 4VRR QBB1 "Bennington,VT" +42.88000 -73.19670 8W07 Q4D0 "Benton,AR" +34.56500 -92.58670 78HZ NQSQ "Bergen,Norway" +60.29000 +5.22000 HF1H T1FH "Berkeley,CA" +37.86940 -122.27100 4S9N P9BD "Berlin,Germany" +52.51670 +13.33330 J39Z RQKH "Berlin,NH" +44.41700 -71.16700 922G QD2J Bermuda +32.36700 -64.68300 9L8R NCT1 "Bern,Switzerland" +46.91670 +7.41670 HLJ7 QSKH "Bethel,AK" +60.79170 -161.75000 1HLQ T3XQ "Bethesda,MD" +39.00000 -77.16700 8K2G PH00 "Bethlehem,PA" +40.62110 -75.37610 8PJR PR34 "Bettendorf,IA" +41.61167 -90.58920 7FHS PX1Q "Bettles_Field,AK" +66.96700 -151.80000 2BGZ V4T1 "Biddeford,ME" +43.49170 -70.46330 93T7 Q7FQ "Big_Delta,AK" +64.13300 -145.80000 2TGZ TNMX "Big_Lake,AK" +61.85000 -150.10000 2GQH T97H "Billings,MT" +45.78330 -108.50100 5XQD QLWG "Biloxi,MS" +30.39670 -88.88330 7KRQ N1ZH "Binghamton,NY" +42.10080 -75.91310 8N6H Q0H3 "Birmingham,AL" +33.51690 -86.81000 7QZ7 NKKJ "Birmingham,England" +52.48330 -1.88320 GT8Q RQDG "Bismarck,ND" +46.80640 -100.78800 6L0W QS0X "Bitburg,Germany" +49.94500 +6.56900 HJDN R9PQ "Blackpool,England" +53.77300 -3.04500 GQCL RXTX "Blackwell,OK" +36.78300 -97.31700 6VP6 P3WF "Bloomfield,NJ" +40.79500 -74.20000 8SH0 PRZ7 "Bloomington,IL" +40.48170 -88.99330 7KHH PQD7 "Bloomington,IN" +39.16500 -86.53170 7RN3 PHSQ "Bloomington,MN" +44.82500 -93.27500 76SC QG3Q "Bluefield,WV" +37.26670 -81.22330 86X7 P6B0 "Bluff,UT" +37.30000 -109.56700 5V2G P6H0 "Boca_Raton,FL" +26.35000 -80.08670 89RG MCQH "Boca_Raton,FL" +26.35000 -80.08670 89RG MCQH "Bodo,Norway" +67.27000 +14.36670 J5WH V6BH "Bogalusa,LA" +30.80000 -89.86700 7H9Z N400 "Bogota,Colombia" +4.63330 -74.09990 8SQH HR4Z "Boise_City,OK" +36.70000 -102.50000 6FQH P3H0 "Boise,ID" +43.61860 -116.19900 59H2 Q82R "Boise,ID" +43.63333 -116.26700 599Z Q84Z "Bologna,Italy" +44.53800 +11.29000 HX6Q QDNP "Bombay,India" +18.96670 +72.83330 P22G L4T0 "Bonn,Germany" +50.72000 +7.08000 HKP0 RFL0 "Boone,NC" +36.19860 -81.65770 85TN P0ZR "Booneville,KY" +37.41700 -83.66700 80SZ P72J "Bordeaux,France" +44.83330 -0.61660 GXFQ QG4Z "Bordentown,NJ" +40.08300 -74.66700 8R9Z PNDF "Borinquen,PR" +18.50000 -67.13330 9D50 L2H0 "Boscobel,WI" +43.13300 -90.73300 7F50 Q5MX "Bossier_City,LA" +32.50000 -93.70000 75QH NDH0 "Bossier_City,LA" +32.51670 -93.73170 75N3 NDKH "Boston,MA" +42.35670 -71.05690 92BP Q1RH "Boulder_City,NV" +35.97830 -114.83800 5DW4 NZVQ "Boulder_Creek,CA" +37.05000 -122.15000 4SLQ P57H "Boulder,CO" +40.01330 -105.28000 66S0 PN1Z "Bountiful,UT" +40.88500 -111.88000 5N90 PSDQ "Bowie,MD" +39.00670 -76.78170 8L1C PH10 "Bowling_Green,KY" +36.98830 -86.45080 7RV5 P4X7 "Bowman,ND" +46.18300 -103.38300 6CJ8 QNWF "Bozeman,MT" +45.68170 -111.03800 5QD4 QLD7 "Bradshaw_AAF,HI" +19.76310 -155.55700 2136 L8SF "Brandon,MB" +49.85000 -99.95000 6N3Q R97H "Brandon,VT" +43.75000 -73.08300 8W8R Q8QH "Brasilia,Brazil" -15.86670 -47.91670 C067 DBMZ "Brattleboro,VT" +42.85170 -72.56330 8XKQ Q47Q "Bremen,Germany" +53.04700 +8.79000 HPZ7 RT71 "Bremerton,WA" +47.56700 -122.63300 4RDH QWT1 "Brest,France" +48.40000 -4.49990 GLQH R200 "Bridgeport,CT" +41.18030 -73.18940 8W0R PTW1 "Bridgeport,CT" +41.18750 -73.20830 8VZC PTX3 "Bridgeton,NJ" +39.45000 -75.21000 8PZ7 PK7H "Brilliant,OH" +40.16000 -80.38000 891H PNS0 "Brisbane,Australia" -27.49990 +153.16670 WQWH BDH0 "Bristol,CT" +41.67330 -72.95000 8WLQ PXBZ "Bristol,England" +51.48330 -2.64990 GRC7 RKDG "Bristol,RI" +41.68300 -71.23300 91WH PXDF "Bristol,TN" +36.59330 -82.17670 84JQ P2XZ "Bristol,VT" +44.16700 -73.00000 8WH0 QBT1 "Brize_Norton,England" +51.75000 -1.58880 GV0T RLQH "Brockton,MA" +42.08390 -71.02360 92F6 Q0DK "Broken_Arrow,OK" +36.05000 -95.79500 70HC P07H "Brookings,OR" +42.06700 -124.26700 4M9Z Q0B1 "Brookings,SD" +44.31000 -96.79330 6X0H QCJH "Brookline,MA" +42.33170 -71.12170 925V Q1MQ "Brooklyn_Park,MN" +45.10000 -93.37500 76JV QHH0 "Brookside_Park,DE" +39.67330 -75.72000 8NP0 PLBZ "Brownsville,TX" +25.90190 -97.49940 6V7J M9H8 Brunei +4.95000 +114.93670 SKB7 HSQH "Brunswick,GA" +31.13300 -81.50000 867H N5MX "Brunswick,ME" +43.90670 -69.96330 952Q Q9J0 "Brussels,Belgium" +50.85000 +4.35000 HBV7 RG7H "Bucharest,Romania" +44.38330 +26.16670 K5DH QCWG "Buckeburg,Germany" +52.27500 +9.07400 HQNJ RPC7 "Budapest,Hungary" +47.43300 +19.25000 JL3Q QW4X "Buena_Park,CA" +33.87170 -117.99700 5506 NMBQ "Buena_Park,CA" +33.87170 -117.99700 5506 NMBQ "Buenos_Aires,Argent." -34.33320 -58.49990 B3QH 98B0 "Buffalo,NY" +42.88110 -78.87250 8DSJ Q4D4 "Buffalo,WY" +44.31700 -106.70000 637H QCKJ "Burbank,CA" +34.18170 -118.31200 546L NNW7 "Burlington,CO" +39.28300 -102.43300 6FWH PJDF "Burlington,CT" +41.77000 -72.99000 8WHQ PXTH "Burlington,IA" +40.81000 -91.23330 7CWH PS1H "Burlington,NC" +36.09670 -79.43330 8CDH P0GH "Burlington,VT" +44.47860 -73.21280 8VZ1 QDCR "Burlington,WA" +48.47000 -122.45000 4RV7 R2BH "Burns,OR" +43.58300 -119.08300 528R Q7WF "Burwash,YT" +61.33000 -139.00000 3DH0 T6MH "Butte,MT" +46.01830 -112.53600 5LMS QN2Q "Butterworth,Malaysia" +5.46670 +100.40000 RC00 HWB0 ------------------------------------------------------------------------ C City Latitude Longitude NAC "Cairo,Egypt" +30.00000 +31.28330 KL67 N000 "Calais/Dunkirk,France" +50.96000 +1.95000 H4V7 RGS0 "Calcutta,India" +22.53330 +88.36670 QBWH LQMZ "Caldwell,ID" +43.66500 -116.68700 588G Q89Q "Calgary,Alberta" +51.05000 -114.08300 5GRR RH7H "Caliente,NV" +37.63300 -114.50000 5FQH P84X "Cambridge,England" +52.19000 +0.17000 H0DQ RNXH "Cambridge,MA" +42.36690 -71.10610 9271 Q1T1 "Cambridge,MD" +38.57000 -76.07830 8MS3 PDTH "Camden,NJ" +39.94470 -75.12050 8Q5X PMPP "Canberra,Australia" -35.35000 +149.16670 WDWH 937H "Cannes,France" +43.73000 +6.90000 HK7H Q8MH "Canoga_Park,CA" +34.21000 -118.57000 53K7 NP1H "Canton,China" +23.11670 +113.25000 SF3Q LTKH "Canton,OH" +40.79720 -81.37690 86JP PRZK "Cantonsville,MD" +39.29050 -76.61250 8LG1 PJFK "Cape_Canaveral,FL" +28.45000 -80.45800 88TM MQ7H "Cape_Girardeau,MO" +37.31000 -89.53330 7J50 P6JH "Cape_May,NJ" +38.91700 -74.83300 8QWH PGKJ "Cape_Town,So_Africa" -33.79990 +18.46670 JJ50 9C00 "Caracas,Venezuela" +10.50000 -66.96660 9DKH JQH0 "Carbonado,WA" +47.08300 -122.05000 4SV7 QTDF "Carbondale,IL" +37.70000 -89.20000 7K00 P8H0 "Cardiff,Wales" +51.50000 -3.29990 GPQH RKH0 "Carlton,MN" +46.66700 -92.43300 78WH QRB1 "Carmichael,CA" +38.66680 -121.32900 4VN9 PFB0 "Carrizozo,NM" +33.66700 -105.91700 6566 NLB1 "Carrollton,GA" +33.58300 -84.08300 7ZRR NKWF "Carson_City,NV" +39.16670 -119.76700 50KG PHT0 "Carson,CA" +33.80670 -118.28300 548R NM10 "Cartersville,GA" +34.15000 -84.78300 7X18 NNQH "Cary,IL" +42.21670 -88.23330 7MDH Q12H "Casa_Grande,AZ" +32.88000 -111.74800 5NLW NGD0 "Casablanca,Morocco" +33.53330 -7.68320 GBRQ NKMZ "Casper,WY" +42.84670 -106.31300 646H Q470 "Castlerock,WA" +46.28300 -122.88300 4QRR QPDF "Cave_Creek,AZ" +33.77500 -111.89600 5N7S NLV7 "Cayenne,Fr._Guiana" +4.90000 -52.50000 BLQH HSH0 "Cedar_City,UT" +37.66700 -113.16700 5K2G P8B1 "Cedar_Falls,IA" +42.52500 -92.45170 78V3 Q2LQ "Cedar_Rapids,IA" +41.96690 -91.66470 7BT4 PZT1 "Central_Islip,NY" +40.79000 -73.20000 8W00 PRXH "Centreville,MD" +39.08300 -76.08300 8MRR PHDF "Cerritos,CA" +33.83500 -118.08300 54RR NM57 "Chagrin_Falls,OH" +41.40000 -81.60000 8600 PW00 "Champaign,IL" +40.11800 -88.24670 7MCG PNKP "Chapel_Hill,NC" +35.93470 -79.06720 8D9X NZN6 "Charleston,SC" +32.77640 -79.93140 8B54 NFVF "Charleston,WV" +38.35030 -81.63110 85WN PCQJ "Charlevoix,PQ" +47.61000 -70.19000 94HQ QX1H "Charlotte,NC" +35.22890 -80.84580 87VJ NV4B "Charlottesville,VA" +38.00000 -78.41700 8FXP PB00 "Charlottetown,PEI" +46.24000 -63.13000 9Q57 QP60 "Chatham,NB" +47.05000 -65.45000 9JC7 QT7H "Chattanooga,TN" +35.04470 -85.30890 7VPS NT6P "Cheju,S._Korea" +33.50000 +126.50000 TJ7H NKH0 "Cheltenham,PA" +40.05000 -75.11000 8Q6Q PN7H "Cheraw,SC" +34.66700 -79.86700 8B9Z NRB1 "Cherbourg,France" +49.65000 -1.46700 GV9Z R87H "Cherokee,OK" +36.73300 -98.36700 6S2G P3MX "Chesapeake,VA" +36.82500 -76.28330 8M8Q P43Q "Chester,CT" +41.41000 -72.48000 8XS0 PW1H "Chester,PA" +39.85000 -75.36700 8PKG PM7H "Cheyenne,WY" +41.13580 -104.81900 67XK PTNC "Chiang_Mai,Thailand" +18.76330 +98.96670 R7DH L3SG "Chibougamau,PQ" +49.90000 -74.38000 8S1H R9H0 "Chicago,IL" +41.87440 -87.63940 7NW1 PZC4 "Chiclayo,Peru" -6.78330 -79.83330 8BDH FV2H "Chicopee,MA" +42.14000 -72.61170 8XG3 Q0P0 "Chignik,AK" +56.23300 -158.20000 1SH0 SC4X "Chillicothe,IL" +41.91700 -89.50000 7J7H PZKJ "Chillicothe,MO" +39.76700 -93.53300 7650 PLT1 "Chillicothe,OH" +39.33300 -83.00000 82H0 PJMX "Chino_Hills,CA" +34.01700 -117.70000 55QH NN2J "Chino,CA" +34.01700 -117.70000 55QH NN2J "Chinook,MT" +48.58300 -109.25000 5VV7 R2WF "Chitose,Japan" +42.80000 +141.66670 VS50 Q400 "Chittagong,Bangladesh" +22.25000 +91.83330 QMKG LP7H "Christchurch,N_Zealan" -43.48300 +172.53300 ZC9Z 7QKJ Christmas_Island +1.98330 -157.36700 1VKG H9WG "Chula_Vista,CA" +32.64330 -117.08300 578R NF6G "Churchill,MB" +58.77000 -94.09000 74R7 SRTH "Chuuk,Micronesia" +7.45972 +151.83890 WMKW J78X "Cicero,IL" +41.85000 -87.74500 7NM3 PZ7H "Cincinnati,OH" +39.10190 -84.50970 7XPR PHH8 "Circle,AK" +65.83000 -144.06000 2ZTH TZ4H "Circleville,OH" +39.58300 -83.00000 82H0 PKWF "Claremont,NH" +43.37500 -72.33670 8Z4Q Q6V7 "Clark,NJ" +40.75000 -74.00000 8T00 PRQH "Clarksburg,WV" +39.28000 -80.34830 893V PJD0 "Clarksdale,MS" +34.19830 -90.57500 7FJV NNZQ "Clarksville,TN" +36.52670 -87.34830 7PLV P2M0 "Claymont,DE" +39.80500 -75.45330 8PC0 PM0Q "Clear_Lake_City,TX" +29.53000 -95.07780 7294 MWMH "Clear,AK" +64.33000 -149.15000 2K3Q TPMH "Clearlake,CA" +38.93333 -122.60000 4RH0 PGMZ "Clearwater,FL" +27.96670 -82.79830 8303 MMT0 "Cleveland,OH" +41.49750 -81.69720 85QP PWGL "Cleveland,TN" +35.15830 -84.87670 7WS7 NTRQ "Clifton,NJ" +40.88330 -74.14670 8SLZ PSDG "Clinton,IA" +41.84330 -90.19330 7GHH PZ6G "Clovis,NM" +34.40170 -103.20500 6CZL NQ07 "Cockeysville,MD" +39.50000 -76.66700 8L9Z PKH0 Cocos_Island -12.18330 +96.83330 R22G DZ2H "Cody,WY" +44.51700 -109.03300 5WDH QDKJ "Cold_Bay,AK" +55.20000 -162.72500 1F5L S600 "Cold_Lake,AB" +54.43000 -110.23000 5SDQ S24H "College_Park,MD" +38.98670 -76.93500 8KMV PGX0 "Collegedale,TN" +35.04700 -85.05100 7WC5 NT71 "Cologne,Germany" +50.93330 +6.95000 HKC7 RGMZ "Colombo,Sri_Lanka" +6.96670 +79.86660 PMMZ J4T0 "Colon,Panama" +9.36670 -79.89990 8B7H JJT0 "Colorado_Springs,CO" +38.83530 -104.82100 67XD PG58 "Columbia_Stn.,OH" +41.31780 -81.96060 852X PVKN "Columbia,MO" +38.95080 -92.32940 7958 PGQL "Columbia,SC" +34.00050 -81.03330 87DH NN02 "Columbia,TN" +35.61500 -87.03670 7QD7 NX27 "Columbus,GA" +32.46860 -84.99000 7WHQ NDB8 "Columbus,MS" +33.49830 -88.41670 7LXQ NKGQ "Columbus,NE" +42.42500 -97.36000 6VL0 Q23Q "Columbus,OH" +39.96300 -83.00470 82GM PMSF "Columbus,OH" +39.96300 -83.00470 82GM PMSF "Columbus,OH" +39.95000 -83.08330 828Q PMQH "Comox,BC" +49.68000 -124.90000 4KQG R8D0 "Compton,CA" +33.89500 -118.22600 54F1 NMG7 "Concepcion,Chile" -36.76670 -73.05000 8WC7 8V4Z "Concord,CA" +37.97500 -122.03000 4SWQ P9V7 "Concord,NH" +43.20610 -71.54030 914G Q60W "Condon,OR" +45.23300 -120.16700 4ZKG QJ4X "Conway,AR" +35.10000 -92.45000 78V7 NTH0 "Conway,NH" +44.00000 -71.16700 922G QB00 "Copenhagen,Denmark" +55.71670 +12.45000 J13Q S8KH "Coralville,IA" +41.68400 -91.59680 7C07 PXDL "Corbin,KY" +36.91700 -84.10000 7ZQH P4KJ "Cordova,AK" +60.56700 -145.63300 2TWH T2T1 "Corinth,MS" +34.91700 -88.50000 7LQH NSKJ "Corning,IA" +40.96700 -94.66700 739Z PST1 "Corpus_Christi,TX" +27.79750 -97.39580 6VH9 MLZL "Cortez,CO" +37.35000 -108.58300 5XJ8 P6QH "Corvallis,OR" +44.56670 -123.27000 4PSQ QDT0 "Costa_Mesa,CA" +33.64000 -117.91800 5564 NL60 "Council_Bluffs,IA" +41.26170 -95.86500 70B3 PV97 "Covington,KY" +39.08670 -84.51170 7XPL PHF0 "Cranbrook,BC" +49.68000 -115.76000 5BL0 R8D0 "Cranford,NJ" +40.66200 -74.21600 8SFS PR99 "Cranston,RI" +41.78330 -71.43830 91D3 PXWG "Crawford,NE" +42.68300 -103.41700 6CFP Q3DF "Crestwood,KY" +38.14000 -85.45000 7VC7 PBP0 "Crestwood,MO" +38.34000 -90.23000 7GDQ PCP0 "Creve_Coeur,IL" +40.64360 -89.61060 7HZ6 PR6J "Cripple_Creek,CO" +38.73300 -105.20000 6700 PFMX "Crocker,MO" +35.47000 -92.08000 79S0 NWBH "Crofton,NE" +42.73300 -97.53300 6V50 Q3MX "Cubi_Point,Philippine" +14.80000 +120.16670 T0DH KG00 "Culver_City,CA" +34.01000 -118.38300 5418 NN1H "Cumberland,MD" +39.65000 -78.76330 8F2Q PL7H "Cut_Bank,MT" +48.63300 -112.31700 5M66 R34X ------------------------------------------------------------------------ D City Latitude Longitude NAC "Dacca,Bangladesh" +23.85000 +90.40000 QJ00 LZ7H "Dakar,Senegal" +14.75000 -17.50000 FJ7H KFQH "Dallas,TX" +32.78580 -96.79360 6X0G NFWV "Dalsbruk,Finland" +60.01000 +22.48000 JV60 T01H "Daly_City,CA" +37.70170 -122.46200 4RTB P8H7 "Damascus,Syria" +33.51670 +36.30000 L0QH NKKH "Danbury,CT" +41.39330 -73.45720 8VBP PVXZ "Danielson,CT" +41.79000 -71.88000 9090 PXXH "Danville,IA" +40.78333 -91.13330 7D50 PRWG "Danville,VA" +36.59170 -79.38420 8CJ5 P2XQ "Dar_es_Salaam,Tanzan." -6.79990 +39.28330 L867 FV00 "Darwin,Australia" -12.41990 +130.83670 TW2Q DWW0 "Davenport,IA" +41.52190 -90.57580 7FJS PWL8 "Dayton,OH" +39.75890 -84.19530 7ZHB PLRT "Dayton,TN" +35.50000 -85.00000 7WH0 NWH0 "Daytona_Beach,FL" +29.21220 -81.01940 87FJ MV1S "Deadhorse,AK" +70.19500 -148.46000 2LTG VNZ7 "Dearborn_Heights,MI" +42.32500 -83.29170 81R3 Q1LQ "Dearborn,MI" +42.32330 -83.17500 821V Q1LG Death_Valley_Nat'l_Mon +36.46389 -116.88100 57RW P29K "Decataur,IL" +39.84500 -88.94640 7KM0 PM6Q "Decimomannu,Italy" +39.41000 +8.96700 HQDH PK1H "Dekalb,IL" +41.92983 -88.71350 7L6G PZMG "Del_Rio,TX" +29.36690 -100.73000 6L57 MVT1 "Delavan,WI" +49.65000 -88.63330 7LDH R87H "Delhi,LA" +32.43300 -91.48300 7C8R ND4X "Delta_Jct.,AK" +64.03000 -145.72000 2TP0 TN4H "Delta,UT" +39.33300 -112.58300 5LJ8 PJMX "DeMotte,IN" +41.20000 -87.17250 7Q21 PV00 "Denali_Nat'l_Park,AK" +63.71000 -148.94000 2KMH TLJH "Denton,TX" +33.22000 -97.13670 6W4Q NJ30 "Denver,CO" +39.74940 -104.98900 67HS PLQD "Derby,CT" +41.33300 -73.08300 8W8R PVMX "Derby,England" +52.81700 -1.33300 GVN0 RS2J "Derry,NH" +42.88170 -71.32330 91NQ Q4D7 "Des_Moines,IA" +41.58720 -93.61670 75XQ PWX2 "Des_Plaines,IL" +42.04330 -87.87000 7N9Q Q06G "Desiderio_AAF,S._Kore" +36.95000 +127.03330 TKKG P4QH "Detroit,MI" +42.33000 -83.04920 82C9 Q1MH "Devils_Lake,ND" +48.11000 -98.86330 6QT7 R0JH "Dhahran,Saudi_Arabia" +26.26000 +50.15000 M5C7 MC90 "Diamond_Bar,CA" +34.03800 -117.79700 55H6 NN5P "Diamond_Springs,CA" +38.70170 -120.82400 4WX6 PFH7 "Dickinson,ND" +46.88000 -102.78800 6F0W QSD0 "Dickinson,TX" +29.46940 -95.08250 728S MWBD Diego_Garcia -7.31670 +72.40000 P100 FRDG "Dijon,France" +47.35000 +5.03330 HDKG QVQH "Dillingham,HI" +21.58330 -158.20000 1SH0 LKWG "Dillon,MT" +45.20000 -112.66700 5L9Z QJ00 "Dillon,SC" +34.40000 -79.46700 8C9Z NQ00 "Diyarbakir,Turkey" +37.90000 +40.20000 LBH0 P9H0 "Djakarta,Indonesia" -6.15000 +106.85000 RW3Q FZ7H Djibouti +11.56670 +43.00000 LKH0 JWT0 "Dodge_City,KS" +37.75470 -100.01900 6MXK P8R6 "Doha,Qatar" +25.26700 +51.56700 M8WH M6B1 "Dortmund,Germany" +51.52000 +7.60000 HM00 RKL0 "Dothan,AL" +31.21700 -85.38300 7VJ8 N62J "Douala,Cameroon" +4.01700 +9.71700 HS8R HN2J "Dover_AFB,DE" +39.13330 -75.46670 8P9Z PHMZ "Dover,DE" +39.13330 -75.55000 8P3Q PHMZ "Dover,England" +51.13330 +1.31670 H38Q RHMZ "Dover,FL" +27.96660 -82.25830 84BL MMSZ "Dover,NH" +43.19170 -70.88000 92S0 Q5XQ "Downey,CA" +33.93500 -118.12500 54NL NMN7 "Dryden,ON" +49.77000 -92.83000 77WQ R8TH "Dubai,U.A.E." +25.30000 +55.43330 MLKG M6H0 "Dublin,Ireland" +53.43300 -6.25000 GGC7 RW4X "Dubrovnik,Croatia" +42.56400 +18.25100 JHLS Q2SL "Dubuque,IA" +42.50330 -90.67500 7F9C Q2HG "Duluth,MN" +46.78220 -92.10670 79PZ QRW9 "Dundalk,MD" +39.26700 -76.51700 8LP6 PJB1 "Dunedin,New_Zealand" -45.93330 +170.20000 Z5H0 7BB0 "Dunlap,IA" +41.88300 -95.55000 713Q PZDF "Durango,CO" +37.25000 -107.91700 6066 P67H "Durham,NC" +36.00000 -78.91250 8DPJ P000 "Durham,NC" +36.00000 -78.91250 8DPJ P000 "Dusseldorf,Germany" +51.28300 +6.75000 HJV7 RJDF "Dutch_Harbor,AK" +53.91000 -166.54000 13MH RZJH ------------------------------------------------------------------------ E City Latitude Longitude NAC "E._Brunswick,NJ" +40.44000 -74.42000 8RXH PQ60 "E._Lansing,MI" +42.73500 -84.48330 7XRQ Q3N7 "E._Las_Vegas,NV" +36.09500 -115.04200 5DCT P0G7 "E._Los_Angeles,CA" +34.02000 -118.15300 54LH NN30 "E._St._Louis,IL" +38.62170 -90.15500 7GLC PF37 "E._Stroudsburg,PA" +41.08330 -75.21670 8PXQ PTDG "E._Wenatchee,WA" +47.20340 -120.05300 4ZV0 QV0H "Eagan,MN" +44.83000 -93.22000 76XH QG4H "Eagle_River,AK" +61.32170 -149.56700 2J2G T6L7 "Eagle,AK" +64.70000 -141.33300 36N0 TRH0 "East_Boston,MA" +42.34300 -71.05000 92C7 Q1PF "East_Orange,NJ" +40.76330 -74.21000 8SG7 PRSG "East_Point,GA" +33.67670 -84.44330 7XVQ NLCH "Eastampton,NJ" +39.58000 -74.40000 8S00 PKW0 "Eatonton,GA" +33.08300 -83.25000 81V7 NHDF "Eau_Claire,WI" +44.81330 -91.49500 7C7V QG1Z "Edina,MN" +44.88330 -93.35000 76LQ QGDG "Edinburgh,Scotland" +55.95000 -3.16670 GQ2G S9QH "Edmond,OK" +35.65330 -97.48170 6V8V NX7Z "Edmonds,WA" +47.48000 -122.22000 4SFH QWD0 "Edmonton,AB" +53.50000 -113.50000 5J7H RWH0 "Edmundston,NB" +47.43000 -68.41000 98Z7 QW4H "Edna,TX" +28.98500 -96.68330 6X8Q MSWQ "Edwards_AFB,CA" +34.90000 -117.86700 559Z NSH0 "Efate,Vanuatu" -17.98000 +168.70000 Z1QH D030 "Effingham,IL" +39.08300 -88.50000 7LQH PHDF "Eielson_AFB,AK" +64.67000 -147.10000 2Q7H TRBH "El_Cajon,CA" +32.79500 -116.96000 57L0 NFZ7 "El_Dorado,AR" +33.20670 -92.66670 789Z NJ10 "El_Mirage,AZ" +33.58750 -112.33600 5M4S NKX3 "El_Monte,CA" +34.06670 -118.02500 54X3 NNB0 "El_Paso,TX" +31.76000 -106.48600 63RJ N8S0 "Eldorado,IL" +37.83300 -88.50000 7LQH P94X "Eldridge,IA" +41.61200 -90.59000 7FHQ PX1S "Elgin_AFB,FL" +30.28350 -86.29050 7S86 N1DH "Elgin,IL" +42.03830 -88.29000 7M87 Q05Q "Elizabeth_City,NC" +36.25000 -76.25000 8MC7 P17H "Elizabeth,NJ" +40.66190 -74.21640 8SFR PR98 "Elizabethtown,KY" +37.69000 -85.87000 7T9Q P8FH "Elk_City,OK" +35.38300 -99.38300 6PJ8 NVWF "Elk_Point,SD" +42.68300 -96.73300 6X50 Q3DF "Elk_River,ID" +46.78300 -116.18300 59J8 QRWF "Elkhart,IN" +41.66700 -86.00000 7T00 PXB1 "Elkins,WV" +38.91700 -79.83300 8BDH PGKJ "Elko,NV" +40.83000 -115.76000 5BL0 PS4H "Ellsworth_AFB,SD" +44.15000 -103.13300 6D50 QBQH "Elmira,NY" +42.08300 -76.83300 8KWH Q0DF "Elsmere,DE" +39.74000 -75.59000 8P0Q PLP0 "Elverson,PA" +40.15330 -75.86300 8NB8 PNQZ "Elyria,OH" +41.36500 -82.11000 84PQ PVSQ "Enfield,CT" +41.91700 -72.58300 8XJ8 PZKJ "Englewood,CO" +39.65330 -104.98500 67J3 PL7Z "Enid,OK" +36.39500 -97.87500 6T9C P1Z7 "Entebbe,Uganda" +0.05000 +32.45000 KP3Q H07H "Ephrata,PA" +40.11000 -76.10000 8MQH PNJH "Erding,Germany" +48.32000 +11.93300 HZSZ R1L0 "Erfurt,Germany" +50.97500 +10.95800 HWCT RGV7 "Erie,PA" +42.12080 -80.08250 89RS Q0L3 "Escondido,CA" +33.11670 -117.08500 578L NHKH "Esfahan,Iran" +32.75000 +51.86400 M9MS NFQH "Essex_Junction,VT" +44.48830 -73.11170 8W6L QDF7 "Euclid,OH" +41.57000 -81.53670 864Q PWTH "Eudora,AR" +33.11700 -91.26700 7CSZ NHKJ "Eugene,OR" +44.06667 -123.06700 4Q9Z QBB0 "Eugene,OR" +44.05440 -123.09200 4Q83 QB84 "Eureka,CA" +40.75000 -124.16700 4MKG PRQH "Eureka,NV" +39.55000 -115.96700 5B2G PKQH "Eureka,UT" +39.91700 -112.16700 5MKG PMKJ "Evanston,IL" +42.04330 -87.67670 7NS7 Q06G "Evanston,WY" +41.02750 -111.03100 5QDN PT43 "Evansville,IN" +37.97220 -87.57250 7P21 P9TS "Everett,WA" +47.98000 -122.20000 4SH0 QZW0 "Evergreen,CO" +39.64110 -105.41600 66FS PL64 "Ewa,HI" +21.33500 -158.04300 1SVR LJN7 "Exeter,NH" +42.96600 -70.92000 92P0 Q4SW ------------------------------------------------------------------------ F City Latitude Longitude NAC "Fair_Haven,VT" +43.58300 -73.25000 8VV7 Q7WF "Fairbanks,AK" +64.80000 -147.85000 2NC7 TS00 "Fairfax,MN" +44.48300 -94.73300 7350 QDDF "Fairfax,SC" +32.48300 -81.21700 86XP NDDF "Fairfield,CA" +38.25000 -122.04200 4SVT PC7H "Fairfield,CT" +41.14170 -73.26330 8VT7 PTP7 "Fairmont,WV" +39.48330 -80.14330 89M7 PKDG "Faith,SD" +45.03300 -102.03300 6GWH QH4X "Falcon,CO" +38.94780 -104.56100 68KW PGQ5 "Fall_River,MA" +41.70170 -71.15500 923C PXH7 "Fallon,NV" +39.50000 -118.80000 5300 PKH0 "Falmouth,KY" +38.66700 -84.33300 7Z50 PFB1 "Fargo,ND" +46.87500 -96.78830 6X0V QSC7 "Farmington,NM" +36.73330 -108.20300 5ZGR P3MZ "Farnborough,England" +51.28000 -0.76300 GX2R RJD0 "Fayetteville,AR" +36.06670 -94.16000 74L0 P0B0 "Fayetteville,NC" +35.05500 -78.87670 8DS7 NT87 "Ferriday,LA" +31.63300 -91.55000 7C3Q N84X "Finningley,England" +53.46700 -1.00000 GWH0 RWB1 "Fisher,LA" +31.46700 -93.50000 767H N7B1 "Fitchburg,MA" +42.58300 -71.80000 90H0 Q2WF "Flagstaff,AZ" +35.19330 -111.65200 5NV3 NTXZ "Flint,MI" +43.02170 -83.68330 80RQ Q537 "Florala,AL" +31.01700 -86.31700 7S66 N52J "Florence,AL" +34.76700 -87.66700 7NSZ NRT1 "Florence,SC" +34.19670 -79.76830 8BKC NNZH "Florissant,MO" +38.78790 -90.32160 7G5V PFX5 "Flower_Mound,TX" +33.03000 -97.07000 6W9Q NH4H "Folsom,NM" +36.78300 -103.93300 6B50 P3WF "Fond_du_Lac,WI" +43.78300 -88.48300 7LRR Q8WF "Ford_Island,HI" +21.36806 -157.96300 1T2R LJT6 "Forrest_City,AR" +35.00000 -90.76700 7F2G NT00 "Forsyth,MT" +46.25000 -106.68300 638R QP7H "Fort_Collins,CO" +40.58000 -105.08300 678R PQW0 "Fort_Dodge,IA" +42.51700 -94.16700 74KG Q2KJ "Fort_Greely,AK" +64.00000 -145.72000 2TP0 TN00 "Fort_Lauderdale,FL" +26.12000 -80.13670 89MQ MBL0 "Fort_McMurray,AB" +56.73000 -111.27000 5PSQ SFMH "Fort_McPherson,NWT" +67.43000 -134.85000 3QV7 V74H "Fort_Myers,FL" +26.60000 -81.75000 85LQ MF00 "Fort_Nelson,BC" +58.80000 -122.63000 4RDQ SS00 "Fort_Payne,AL" +34.43300 -85.68300 7TRR NQ4X "Fort_Richardson,AK" +61.26000 -149.65000 2HV7 T690 "Fort_Riley,KS" +39.08300 -96.76700 6X2G PHDF "Fort_Salonga,NY" +40.90000 -73.30770 8VPW PSH0 "Fort_Scott,KS" +37.83300 -94.71700 7366 P94X "Fort_Simpson,NWT" +61.76000 -121.25000 4VV7 T8S0 "Fort_Smith,AR" +35.38500 -94.41830 73XL NVWQ "Fort_Yukon,AK" +66.50000 -145.00000 2WH0 V2H0 "Fountain_Valley,CA" +33.70000 -117.96000 5530 NLH0 "Framingham,MA" +42.27330 -71.41500 91FV Q1BZ "Frankfort,KY" +38.20000 -84.86170 7WTC PC00 "Frankfurt,Germany" +50.03300 +8.56700 HPDH RB4X "Franklin,NH" +43.41700 -71.66700 90SZ Q72J "Franklin,TN" +35.90000 -86.90000 7QQH NZH0 "Frederick,MD" +39.41500 -77.41670 8JFQ PK27 "Fredericksburg,VA" +38.33300 -77.50000 8J7H PCMX "Fredericktown,MO" +37.53300 -90.26700 7G9Z P7MX "Fredericton,NB" +45.85000 -66.43000 9FWQ QM7H "Freehold,NJ" +40.25000 -74.26700 8S9Z PP7H "Freeport,Bahamas" +26.55000 -78.70000 8F7H MDQH "Freiburg,Germany" +48.03000 +7.83300 HMKG R04H "Fremont,CA" +37.53500 -121.95700 4T36 P7N7 "Fremont,NE" +41.44000 -96.49500 6XQV PW60 "Fresno,CA" +36.73670 -119.77000 50K7 P3NH "Fruitland_Park,FL" +28.86170 -81.91470 856C MS97 "Ft._Myers,FL" +26.65100 -81.75300 85LH MF7M "Ft._Wayne,IN" +41.07250 -85.14050 7W4F PTBV "Ft._Worth,TX" +32.74860 -97.32890 6VN9 NFQ8 "Fukuoka,Japan" +33.58330 +130.45000 TV3Q NKWG "Fullerton,CA" +33.87500 -117.92500 555L NMC7 "Funchal,Madeira_Is." +32.69200 -16.77300 FL20 NFFS "Furth_(Mfr),Germany" +49.48300 +11.98300 HZXP R7DF ------------------------------------------------------------------------ G City Latitude Longitude NAC "Gadsden,AL" +34.01580 -86.01140 7SZ4 NN2C "Gaillac,France" +43.90000 +1.86670 H4N0 Q9H0 "Gainesville,FL" +29.70000 -82.25000 84C7 MXH0 "Gainesville,GA" +34.26700 -83.80000 80H0 NPB1 "Gaithersburg,MD" +39.14000 -77.19830 8K03 PHP0 "Galena,AK" +64.74110 -156.95100 1WLN TRP4 "Gallup,NM" +35.52500 -108.74200 5X4B NWLQ "Galveston,TX" +29.30280 -94.79530 730B MVHD "Gander,Nfld" +48.93300 -54.56700 BFKG R4MX "Garden_City,KS" +37.96700 -100.86700 6KSZ P9T1 "Garden_Grove,CA" +33.77500 -117.91300 556H NLV7 "Garland,TX" +32.90830 -96.63670 6XD7 NGJ7 "Garland,UT" +41.75000 -112.16700 5MKG PXQH "Garrison,ND" +47.63300 -101.40000 6JH0 QX4X "Gars_am_Inn,Germany" +48.14047 +12.22100 J0JK R0P2 "Gary,IN" +41.60330 -87.33860 7PML PX0G "Gaspe,PQ" +48.78000 -64.51000 9LPQ R3W0 "Gassaway,WV" +38.66700 -80.75000 883Q PFB1 "Gastonia,NC" +35.26500 -81.18170 871C NV9Q "Gdansk,Poland" +54.33330 +18.66670 JJN0 S1MZ "Geilenkirchen,Germany" +50.96100 +6.03300 HH2G RGS4 "Geneva,Switz." +46.23330 +6.06670 HH50 QP4Z "Genoa,Italy" +44.41300 +8.85000 HQ3Q QD1X "Georgetown,DE" +38.66700 -75.33300 8PN0 PFB1 "Georgetown,Guyana" +6.48330 -58.26670 B49Z J2DG "Gera,Germany" +51.06700 +13.75000 J4C7 RHB1 Gibraltar +36.15100 -5.34700 GJLZ P0QM "Gila_Bend,AZ" +32.98300 -112.68300 5L8R NGWF "Gillette,WY" +44.29330 -105.50200 667B QCFZ "Glasgow,KY" +37.00000 -85.91700 7T66 P500 "Glasgow,Scotland" +55.90000 -4.41660 GLXQ S9H0 "Glendale,AZ" +33.53830 -112.18200 5MJB NKNQ "Glendale,CA" +34.14170 -118.24700 54CG NNP7 "Glendora,CA" +34.11670 -117.85000 55C7 NNKH "Glenns_Ferry,ID" +42.96700 -115.35000 5CLQ Q4T1 "Glens_Falls,NY" +43.33300 -73.66700 8TSZ Q6MX "Glens_Falls,NY" +43.80000 -74.08330 8SRQ Q900 "Glenwood_Springs,CO" +39.58300 -107.33300 61N0 PKWF "Glenwood,MN" +45.65000 -95.38300 71J8 QL7H "Godthab,Greenland" +64.20000 -51.68000 BNS0 TP00 "Goldfield,NV" +37.70000 -117.25000 56V7 P8H0 "Goldsboro,NC" +35.38300 -77.98300 8H18 NVWF "Goldstone,CA" +35.35000 -116.88300 57RR NVQH "Goose_Bay,Nfld." +53.33000 -60.42000 9XXH RVMH "Goose_Creek,SC" +32.77640 -79.93140 8B54 NFVF "Gorham,ME" +43.66670 -70.46670 93SZ Q8B0 "Granada_Hills,CA" +34.18330 -118.50000 53QH NNWG Grand_Cayman_Island +19.30000 -81.36670 86KG L6H0 "Grand_Forks,ND" +47.92000 -97.04500 6WCL QZL0 "Grand_Island,NE" +40.92170 -98.35330 6S3H PSL7 "Grand_Junction,CO" +39.08300 -108.58300 5XJ8 PHDF "Grand_Prairie,TX" +32.74830 -96.99500 6WHC NFQ7 "Grand_Rapids,MI" +42.96750 -85.67030 7TSP Q4T3 Grand_Turk_Island +21.45000 -71.15000 923Q LK7H "Granger,WY" +41.61700 -109.96700 5T2G PX2J "Grangeville,ID" +45.93300 -116.13300 59N0 QMMX "Granite_Falls,MN" +44.76700 -95.56700 712G QFT1 "Grants_Pass,OR" +42.43300 -123.33300 4PN0 Q24X "Grass_Valley,CA" +39.15000 -121.03300 4WDH PHQH "Great_Falls,MT" +47.50170 -111.28500 5PRL QWH7 "Great_Falls,SC" +34.53300 -80.88300 87RR NQMX "Greeley,CO" +40.41830 -104.69300 6880 PQ2Q "Green_Bay,WI" +44.51330 -88.01390 7MXX QDJZ "Green_River,UT" +39.00000 -110.08300 5SRR PH00 "Green_River,WY" +41.52670 -109.46800 5V9W PWM0 "Greenbelt,MD" +39.00010 +76.85420 PD41 PH00 "Greensboro,NC" +36.07140 -79.79030 8BHP P0BP "Greenville,ME" +45.43300 -69.58300 9618 QK4X "Greenville,MS" +33.40670 -91.06000 7DBH NK10 "Greenville,SC" +34.84720 -82.40030 83ZZ NS72 "Greenville,TN" +36.13300 -82.83300 82WH P0MX "Greenwich_Obs,England" +51.46670 +0.00000 H000 RKB0 "Greenwich,CT" +41.02830 -73.62500 8TX3 PT47 "Greenwood,MS" +33.51670 -90.18170 7GJC NKKH "Greenwood,SC" +34.19330 -82.16500 84KL NNXZ "Grenoble,France" +45.36000 +5.32000 HF90 QJS0 "Gresham,OR" +45.50000 -122.43000 4RWQ QKH0 "Grissom_AFB,IN" +40.65000 -86.15000 7SLQ PR7H "Groton,SD" +45.41700 -98.06700 6SSZ QK2J "Groveton,NH" +44.58300 -71.50000 917H QDWF "Guantanamo_Bay,Cuba" +19.90000 -75.20000 8Q00 L9H0 Guatemala_City +14.58300 -90.53300 7FN0 KDWF "Guayaquil,Ecuador" -2.26660 -79.88320 8B8Q GLN0 "Guelph,ON" +43.57000 -80.18000 89JG Q7TH Guernsey +49.43000 -2.60300 GRGR R74H "Gulfport,MS" +30.36780 -89.09330 7K80 N1T5 "Gulkana,AK" +62.10000 -145.50000 2V7H TBH0 "Gutersloh,Germany" +51.92100 +8.30400 HNQS RML4 "Guthrie,OK" +35.86700 -97.43300 6VDH NZB1 ------------------------------------------------------------------------ H City Latitude Longitude NAC "Hagerstown,MD" +39.64500 -77.72000 8HP0 PL6Q "Haiku,HI" +20.98330 -156.28300 1Z8R LGWG "Hailey,ID" +43.51700 -114.31700 5G66 Q7KJ "Haines,AK" +59.25000 -135.46000 3PBG SV7H "Halifax,NS" +44.67000 -63.58000 9P1H QFBH "Hamburg,Germany" +53.56670 +10.03330 HT2G RWT0 "Hamden,CT" +41.38500 -72.90330 8WQ7 PVWQ "Hamilton,OH" +39.39970 -84.56300 7XKR PJZX "Hamilton,ON" +43.25000 -79.85000 8BC7 Q67H "Hammond,IN" +41.63000 -87.50500 7P73 PX4H "Hampton,VA" +37.02500 -76.34170 8M4C P53Q "Hana,HI" +20.71700 -155.98300 2018 LFKJ "Hancock,MI" +47.13889 -88.62080 7LFF QTNT "Hankinson,ND" +46.06700 -96.90000 6WQH QNB1 "Hannah,ND" +48.96700 -98.70000 6R7H R4T1 "Hannibal,MO" +39.70000 -91.36700 7CKG PLH0 "Hannover,Germany" +52.45000 +9.70000 HS7H RQ7H "Hao_AB,Fr._Polynesia" -17.99990 -141.00000 37H0 D000 "Harper_Woods,MI" +42.40000 -82.91700 82P6 Q200 "Harpers_Ferry,WV" +39.33300 -77.75000 8HLQ PJMX "Harrington,DE" +38.91700 -75.58300 8P18 PGKJ "Harrisburg,PA" +40.26190 -76.88300 8KRR PP98 "Harrisburg,SD" +43.41670 -96.68330 6X8Q Q72H "Harrison,AR" +36.21700 -93.10000 777H P12J "Harrisonburg,VA" +38.50000 -78.83300 8DWH PDH0 "Hartford,CT" +41.77000 -72.68030 8X8Z PXTH "Harvey,ND" +47.76700 -99.91700 6N66 QXT1 "Hastings,NE" +40.59000 -98.38670 6S0Z PQXH "Hat_Yai,Thailand" +6.93670 +100.40000 RC00 J4NH "Hattiesburg,MS" +31.32670 -89.28830 7JRC N6M0 "Hauula,HI" +21.61700 -157.75000 1TLQ LL2J "Havana,Cuba" +23.13330 -82.38320 8417 LTMZ "Havre,MT" +48.55000 -109.68500 5TRL R2QH "Hawthorne,CA" +33.91670 -118.35200 543L NMKH "Hawthorne,NV" +38.55000 -118.65000 53C7 PDQH "Hayward,CA" +37.66500 -122.07700 4SS6 P89Q "Hazard,KY" +37.21700 -83.16700 822G P62J "Helena,MT" +46.59250 -112.04000 5MW0 QQXV "Helgoland,Germany" +54.18500 +7.90500 HMQV S0WQ "Helsinki,Finland" +60.16660 +24.88330 K267 T0SZ "Henderson,KY" +37.83670 -87.58670 7P0Z P95H "Henderson,NV" +36.03670 -114.98000 5DJH P05H "Hendersonville,TN" +36.30500 -86.62000 7RFH P1HQ "Herndon,VA" +38.89750 -77.00920 8KG9 PGGL "Hialeah,FL" +25.82830 -80.28330 898Q M947 "Hickory,NC" +35.71700 -81.35000 86LQ NXKJ "High_Point,NC" +35.95170 -80.00500 89ZL NZQQ "Highland_Lakes,NJ" +41.16110 -74.45360 8RTZ PTS4 "Highmore,SD" +44.50000 -99.43300 6PDH QDH0 "Hill_City,MN" +46.96700 -93.63300 75WH QST1 "Hillsboro,ND" +47.38300 -97.08300 6W8R QVWF "Hillsboro,OR" +45.52000 -122.98700 4QHZ QKL0 "Hilo,HI" +19.72500 -155.09000 2287 L8LQ "Hinton,WV" +37.66700 -80.91700 87P6 P8B1 "Hobbs,NM" +32.70000 -103.13200 6D53 NFH0 "Holbrook,AZ" +34.91700 -110.25000 5SC7 NSKJ "Hollis_Hills,NY" +40.73200 -73.76500 8TKL PRMS "Holliston,MA" +42.35000 -71.05000 92C7 Q1QH "Holly_Springs,MS" +34.75000 -89.46700 7J9Z NRQH "Hollywood,CA" +34.12500 -118.33700 544P NNLQ "Hollywood,FL" +26.01000 -80.15000 89LQ MB1H "Holyoke,MA" +42.20810 -72.61000 8XG7 Q116 "Homer,AK" +59.65000 -151.52000 2C5Z SX7H Hong_Kong +22.25000 +114.16600 SKH0 LLQH "Honiara,Guadalcanal" -9.24990 +159.75000 X9C7 FFQH "Honington,England" +52.33300 +0.76700 H1WH RPMX "Honolulu,HI" +21.30610 -157.86000 1TBG LJHW "Hooker,OK" +36.81700 -101.21700 6JXP P42J "Hooper_Bay,AK" +61.53300 -166.03300 14WH T7MX "Hopkinsville,KY" +36.86170 -87.47170 7P9L P497 "Hot_Springs_Nat_Pk,AR" +34.50830 -93.05330 77C0 NQJ7 "Houma,LA" +29.60000 -90.71700 7F66 MX00 "Houston,TX" +29.75720 -95.36030 71KZ MXRK "Humboldt,NE" +40.16700 -95.95000 703Q PNT1 "Huntington_Beach,CA" +33.66830 -118.08300 54RR NLB7 "Huntington_Station,NY" +40.84300 -73.40100 8VGW PS6F "Huntington,WV" +38.42000 -82.44250 83VS PD30 "Huntsville,AL" +34.73170 -86.58670 7RHZ NRMQ "Hurley,WI" +46.43300 -90.18300 7GJ8 QQ4X "Huron,SD" +44.36000 -98.21830 6SFL QCS0 "Hutchinson,KS" +38.08170 -97.92830 6T5C PBD7 "Hutchinson,MN" +44.88300 -94.38300 7418 QGDF "Hyltebruk,Sweden" +57.00000 +13.10000 J2QH SH00 ------------------------------------------------------------------------ I City Latitude Longitude NAC "Idaho_Falls,ID" +43.49170 -112.03300 5MWH Q7FQ "Incirlik,Turkey" +37.00130 +35.42500 KXJV P505 "Independence,KS" +37.23300 -95.70000 70QH P64X "Independence,MO" +39.09330 -94.41670 73XQ PHFZ "Indianapolis,IN" +39.76860 -86.16280 7SKR PLT8 "Ine,Marshall_Is." +7.01667 +171.48330 Z8P7 J52H "Inglewood,CA" +33.96000 -118.35000 543Q NMS0 "Innsbruck,Austria" +47.26000 +11.34000 HXBH QV90 "Inuvik,NWT" +68.32000 -133.50000 3V7H VCL0 "Invercargill,New_Zeal" -46.41670 +168.31670 Z0RQ 77WG "Iowa_City,IA" +41.66030 -91.53140 7C54 PX91 "Ipswich,Australia" -27.63330 +152.71670 WPRQ BCT0 "Iqaluit,NWT" +63.76000 -68.55000 98LQ TLS0 "Iron_River,MI" +46.15000 -88.65000 7LC7 QNQH "Irvine,CA" +33.67500 -117.76000 55L0 NLC7 "Irving,TX" +32.81330 -96.93670 6WMQ NG1Z "Irvington,NJ" +40.72670 -74.22500 8SF3 PRM0 "Islamabad,Pakistan" +33.61670 +73.10000 P2QH NL2H Isle_of_Man +54.08000 -4.62800 GLDW S0D0 "Istanbul,Turkey" +41.03330 +29.00000 KDH0 PT4Z "Istrana,Italy" +45.73700 +12.13400 J0B1 QLNJ ------------------------------------------------------------------------ J City Latitude Longitude NAC "Jackson,MI" +42.24530 -84.40610 7XZJ Q16R "Jackson,MS" +32.29890 -90.18500 7GJ3 NCGT "Jackson,TN" +35.61670 -88.81330 7KZ0 NX2H "Jacksonville,AR" +34.86500 -92.11170 79PL NS9Q "Jacksonville,FL" +30.32890 -81.66170 85TC N1MB "Jakarta,Indonesia" -6.15000 +106.85000 RW3Q FZ7H "Jaluit,Marshall_Is." +5.90667 +169.64170 Z433 HZJ0 "Jamestown,ND" +46.90500 -98.70500 6R73 QSHQ "Janesville,WI" +42.68170 -89.02000 7KFH Q3D7 "Janesville,WI" +42.68170 -89.02000 7KFH Q3D7 "Jasper,AB" +53.00000 -118.05000 54V7 RT00 "Jatiluhur,Indonesia" -6.52130 +107.00000 RWH0 FWCS "Jeddah,Saudia_Arabia" +21.50000 +39.20000 L800 LKH0 "Jefferson_City,MO" +38.51670 -92.21670 79FQ PDKH "Jensen_Beach,FL" +27.25000 -80.25000 89C7 MJ7H "Jersey_City,NJ" +40.73050 -74.06560 8ST2 PRMK "Jerusalem,Israel" +31.76670 +35.23330 KX2G N8T0 "Johannesburg,S_Africa" -26.13330 +27.90000 K9QH BMB0 "Johnson_City,TN" +36.31830 -82.35330 843H P1KQ Johnston_Atoll +16.73330 -169.53300 0V50 KRMZ "Johnstown,PA" +40.32640 -78.91750 8DP5 PPLX "Joliet,IL" +41.52670 -88.08000 7MS0 PWM0 "Jonesboro,AR" +35.83670 -90.70670 7F6Z NZ5H "Joplin,MO" +37.09330 -94.51170 73PL P5FZ "Julian,CA" +33.00000 -116.58000 58JH NH00 "Juneau,AK" +58.30330 -134.40800 3RZD SPHG ------------------------------------------------------------------------ K City Latitude Longitude NAC "Kabul,Afghanistan" +34.56700 +69.21700 NR18 NQT1 "Kaena_Point,HI" +21.50000 -158.20000 1SH0 LKH0 "Kahului,HI" +20.88300 -156.46700 1XSZ LGDF "Kailua_Kona,HI" +19.81700 -155.98300 2018 L92J "Kalamazoo,MI" +42.29140 -85.58720 7V0X Q1FP "Kalapana,HI" +19.41700 -155.00000 22H0 L72J "Kalaupapa,HI" +21.21361 -156.97800 1WJM LJ21 "Kalispell,MT" +48.19500 -114.31300 5G6H R0Z7 "Kamloops,BC" +50.70000 -120.45000 4XV7 RFH0 "Kamuela,HI" +20.01700 -155.66700 20SZ LB2J "Kanab,UT" +37.00000 -112.50000 5LQH P500 "Kaneohe_Bay,HI" +21.45500 -157.75600 1TL9 LK87 "Kankakee,IL" +41.11700 -87.88300 7N8R PTKJ "Kannapolis,NC" +35.50000 -80.63300 88DH NWH0 "Kano,Nigeria" +12.05000 +8.52500 HP9C K07H "Kansas_City,KS" +39.11780 -94.64000 73D0 PHKN "Kansas_City,MO" +39.08220 -94.58890 73HS PHD9 "Kapaa,HI" +22.10000 -159.33300 1PN0 LNH0 "Kapalua,HI" +20.96610 -156.67700 1X96 LGSW "Kapuskasing,ON" +49.42000 -82.50000 83QH R730 "Karachi,Pakistan" +24.90000 +67.15000 NKV7 M4H0 "Kassel,Germany" +51.32400 +9.37200 HRDW RJLL "Kathmandu,Nepal" +27.81670 +85.35000 Q3C7 MM2H "Kaunakakai,HI" +21.10000 -156.98300 1WJ8 LHH0 "Keahole,HI" +19.73560 -156.04900 1ZV9 L8NB "Kearney,NE" +40.69830 -99.08330 6Q8Q PRGQ "Keene,NH" +42.93330 -71.28000 91S0 Q4MZ "Keflavik,Iceland" +64.00000 -22.61700 F3FP TN00 "Kekaha,HI" +21.95000 -159.70000 1NQH LMQH "Kelso,WA" +46.14861 -122.88100 4QRW QNQ8 "Kenai,AK" +60.55000 -151.26700 2CSZ T2QH "Kennebunk,ME" +43.40000 -70.55000 93LQ Q700 "Kenner,LA" +29.98330 -90.24170 7GCV MZWG "Kenora,ON" +49.80000 -94.35000 743Q R900 "Kenosha,WI" +42.59530 -87.83640 7ND8 Q2Z8 "Ketchikan,AK" +55.34170 -131.64700 40VG S6P7 "Kettering,OH" +39.68670 -84.17000 7ZK7 PLF0 "Khania,Greece" +35.53670 +24.15000 K0C7 NWNH "Khartoum,Sudan" +15.56670 +32.60000 KPH0 KKT0 "Kiel,Germany" +54.31670 +10.13330 HT9Z S1KH "Kili,Marshall_Is." +5.65000 +169.11670 Z2RQ HX7H "Kimball,NE" +41.23300 -103.68300 6BRR PV4X "King_George,VA" +38.20000 -77.02000 8KFH PC00 "King_Salmon,AK" +58.68000 -156.65000 1XC7 SRD0 "Kingman,AZ" +35.16700 -114.08300 5GRR NTT1 "Kings_Beach,Australia" -26.80000 +153.10000 WQQH BJ00 "Kingsport,TN" +36.54500 -82.54330 83M7 P2PQ "Kingston,Jamaica" +18.00000 -76.74990 8L3Q L000 "Kingston,ON" +44.22000 -76.60000 8LH0 QC30 "Kinshasa,Zaire" -4.38300 +15.45000 J8LQ G82J "Kissimmee,FL" +28.28300 -81.41700 86FP MPDF "Kit_Carson,CO" +38.76700 -102.80000 6F00 PFT1 "Kitchener,ON" +43.25000 -80.33000 8957 Q67H "Klamath_Falls,OR" +42.21700 -121.81700 4TFP Q12J "Knightdale,NC" +35.79670 -78.43920 8FW1 NXZH "Knoxville,TN" +35.96080 -83.91860 8063 NZS3 "Kodiak,AK" +57.78830 -152.40300 28ZR SLX7 "Kohala,HI" +20.00440 -155.67100 20SN LB0M "Koko_Head,HI" +21.26830 -157.70600 1TQ1 LJB7 "Kokomo,IN" +40.50000 -86.33300 7S50 PQH0 "Koln/Bonn_AB,Germany" +50.83670 +7.15000 HKV7 RG5H "Koloa,HI" +21.89167 -159.45000 1PC7 LMFQ "Kona,HI" +19.65750 -156.02800 1ZWW L88L "Korat,Thailand" +14.93670 +102.08330 RH67 KGNH "Kosrae,Micronesia" +5.36750 +162.97640 XKF6 HVT3 "Kota_Kinabalu,Malaysi" +5.93670 +116.05000 SN3Q HZNH "Kotzebue,AK" +66.90000 -162.60000 1FH0 V4H0 "Kuala_Lumpur,Malaysia" +3.13330 +101.70000 RG7H HHMZ "Kuching,Malaysia" +1.48670 +110.33330 S5SZ H7F0 Kure_Island +28.38330 -178.30000 047G MPWG Kuwait_City +29.06670 +47.98330 LZXQ MTB0 Kwajalein_Atoll +9.00000 +167.60000 XZ00 JH00 "Kyoto,Japan" +35.00000 +135.76670 V9DH NT00 ------------------------------------------------------------------------ L City Latitude Longitude NAC L._Taghkanic_St._Pk. +42.05000 -73.75000 8TLQ Q07H "La_Crosse,WI" +43.80000 -91.24500 7CVL Q900 "La_Grande,OR" +45.33300 -118.10000 54QH QJMX "La_Grange,GA" +33.01700 -85.00000 7WH0 NH2J "La_Mesa,CA" +32.76830 -117.04200 57CT NFT7 "La_Paz,Bolivia" -16.51700 -68.18300 99J8 D7DF "La_Rochelle,France" +46.16670 -1.14990 GW3Q QNT0 "La_Verne,CA" +34.08300 -117.78300 55J8 NNDF "Laconia,NH" +43.52670 -71.47000 919Q Q7M0 "Lafayette,IN" +40.41970 -86.89420 7QQX PQ2X "Lafayette,LA" +30.22500 -92.02000 79XH N13Q "Lagos,Nigeria" +6.58300 +3.03300 H7KG J2WF "Lahore,Pakistan" +32.00000 +74.30000 P5QH NB00 "Lahr,Germany" +48.37000 +7.82600 HMJX R1TH "Lajes,Azores" +38.77000 -27.10000 DQ7H PFTH "Lake_Charles,LA" +30.22830 -93.21670 76XQ N147 "Lake_City,FL" +30.15000 -82.66700 839Z N0QH "Lake_Oswego,OR" +45.41700 -122.66700 4R9Z QK2J "Lake_Villa,IL" +42.33000 -88.07780 7MS4 Q1MH "Lake_Village,AR" +33.33300 -91.28300 7CRR NJMX "Lakeland,FL" +28.00070 -81.56040 862Z MN03 "Lakewood,CA" +33.95000 -118.13700 54MP NMQH "Lakewood,CO" +39.74000 -105.07800 6794 PLP0 "Lakewood,CO" +39.74000 -105.07800 6794 PLP0 "Lakewood,OH" +41.48670 -81.80330 85GQ PWF0 "Lakota,ND" +48.06700 -98.35000 6S3Q R0B1 "Lamar,CO" +38.06700 -102.73300 6F50 PBB1 "Lanai_City,HI" +20.83300 -156.93300 1WN0 LG4X "Lancaster,NH" +44.41700 -71.50000 917H QD2J "Lancaster,PA" +40.04030 -76.30800 8M6V PN61 "Lander,WY" +42.83500 -108.73300 5X50 Q457 "Lansing,MI" +42.73360 -84.55420 7XLF Q3N1 "LaPeer,MI" +43.05970 -83.28530 81RL Q58X "Laramie,WY" +41.31170 -105.58500 6613 PVJQ "Laredo,TX" +27.50610 -99.50830 6P6V MKHW "Largo,FL" +27.91830 -82.79000 830Q MMKQ "Las_Cruces,NM" +32.31170 -106.77800 631M NCJQ "Las_Palmas,Canary_Is." +27.93300 -15.38290 FPJ8 MMMX "Las_Vegas,NV" +36.17220 -115.14400 5D46 P0TS "Latham,Australia" -35.35000 +149.17000 WDWQ 937H "Laurel,DE" +38.50000 -75.66700 8NSZ PDH0 "Laurel,MD" +39.10000 -76.85000 8KV7 PHH0 "Laurel,MS" +31.68830 -89.13330 7K50 N8F7 "Laval,PQ" +45.49900 -73.60400 8TZP QKGT "Lawrence,KS" +38.96330 -95.23830 71W3 PGSG "Lawrence,MA" +42.70440 -71.16890 9229 Q3HM "Lawton,OK" +34.61170 -98.41170 6RZ3 NR1Q "Layton,UT" +41.06170 -111.96300 5N2R PT97 "Le_Havre,France" +49.51670 +0.11670 H08Q R7KH "Learmonth,Australia" -22.23670 +114.08330 SH67 C8SG "Leavenworth,KS" +39.31170 -94.91330 72PH PJJQ "Leavenworth,WA" +47.58300 -120.65000 4XC7 QWWF "Lebanon,KY" +37.53300 -85.25000 7VV7 P7MX "Lebanon,MO" +37.66700 -92.71700 7866 P8B1 "Lebanon,NH" +43.66700 -72.25000 8ZC7 Q8B1 "Lechfeld_AFB,BY,Germ" +48.18300 +10.84000 HW30 R0WF "Leck,Germany" +54.78900 +8.94200 HQBM S3XB "Leeds,England" +53.80000 -1.54990 GV3Q RZ00 "Leipzig,Germany" +51.40900 +12.22400 J0JS RK1B "Lemmon,SD" +45.91700 -102.16700 6GKG QMKJ "Leningrad,Russia" +59.95000 +30.33330 KHSZ SZQH "Lethbridge,AB" +49.62000 -112.78000 5L1H R830 "Lewes,DE" +38.75000 -75.16700 8Q2G PFQH "Lewisburg,WV" +37.83300 -80.33300 8950 P94X "Lewiston,ID" +46.41170 -117.02000 57FH QQ1Q "Lewiston,ME" +44.09670 -70.21830 94FL QBGH "Lewiston,NY" +43.16917 -79.00170 8DGV Q5TC "Lewistown,MT" +47.08300 -109.41700 5VFP QTDF "Lexington,KY" +38.04720 -84.49610 7XQR PB72 "Lhasa,Tibet" +29.68330 +91.20000 QL00 MXDG "Libreville,Gabon" +0.60000 +9.30000 HR7H H300 "Lihue,HI" +21.98000 -159.37500 1PJV LMW0 "Lima,OH" +40.74300 -84.10550 7ZQ2 PRPF "Lima,Peru" -12.09990 -76.91660 8KP7 DZH0 "Lincoln_Muni,NE" +40.85080 -96.75890 6X32 PS7L "Lincoln,KS" +39.03300 -98.13300 6SN0 PH4X "Lincoln,ME" +45.38300 -68.51700 98P6 QJWF "Lincoln,NE" +40.81640 -96.70420 6X75 PS2F "Lindenhurst,NY" +40.69720 -73.35690 8VL6 PRGK "Linz,Austria" +48.23330 +14.19000 J5G7 R14Z "Lisbon,ND" +46.35000 -97.71700 6TP6 QPQH "Lisbon,Portugal" +38.70000 -9.08340 G78Q PFH0 "Little_Rock,AR" +34.74500 -92.27690 7996 NRPQ "Littleton,NH" +44.25000 -71.75000 90LQ QC7H "Liverpool,England" +53.41670 -2.86660 GQT0 RW2H "Livingston,AL" +32.58300 -88.15000 7MLQ NDWF "Livingston,MT" +45.66330 -110.56300 5RKR QL9G "Livonia,MI" +42.38330 -83.37500 81JV Q1WG "Lockwood_Valley,CA" +34.44590 -119.05300 52C0 NQ6V "Logan,UT" +41.74000 -111.82800 5NDW PXP0 "Lolo,MT" +46.75000 -114.08300 5GRR QRQH "Lompoc,CA" +34.68000 -120.45000 4XV7 NRD0 "London,England" +51.50000 -0.11670 GZP7 RKH0 "London,ON" +43.00000 -81.25000 86V7 Q500 "Long_Beach,CA" +33.77060 -118.18800 54HW NLTK "Longview,TX" +32.49170 -94.73330 7350 NDFQ "Longview,WA" +46.10550 -123.00600 4QGJ QNHS "Lorain,OH" +41.46800 -82.18030 84JG PWB6 "Lordsburg,NM" +32.33300 -108.75000 5X3Q NCMX "Los_Alamos,NM" +35.88300 -106.33300 6450 NZDF "Los_Altos_Hills,CA" +37.34398 -122.12500 4SNL P6PK "Los_Angeles,CA" +34.05420 -118.24100 54CW NN83 "Louisville,GA" +32.98640 -82.38580 8411 NGWX "Louisville,KY" +38.24640 -85.76360 7TKP PC6X "Louisville,KY" +38.24639 -85.76360 7TKP PC6X "Louisville,KY" +38.25000 -85.76670 7TKG PC7H "Loveland,CO" +40.21000 -105.06000 67BH PP1H "Lovelock,NV" +40.16700 -118.61700 53FP PNT1 "Lowell,MA" +42.64030 -71.32050 91NX Q361 "Lubbock,TX" +33.58470 -101.84300 6HCR NKWP "Ludwigshafen,Germany" +49.48500 +8.38300 HNXP R7DQ "Lusaka,Zambia" -15.33300 +28.45000 KC3Q DFB1 Luxembourg_City +49.61700 +6.20000 HHH0 R82J "Lynchburg,VA" +37.41500 -79.14330 8D47 P727 "Lynden,WA" +48.93300 -122.45000 4RV7 R4MX "Lynn_Haven,FL" +30.24750 -85.67190 7TSL N173 "Lynn,MA" +42.46330 -70.94830 92LV Q29G "Lyon,France" +45.73330 +4.86670 HD50 QLMZ ------------------------------------------------------------------------ M City Latitude Longitude NAC Macao +22.00000 +113.00000 SDH0 LN00 "Mackay,ID" +43.91700 -113.63300 5HWH Q9KJ "Macon,GA" +32.83670 -83.62670 80WZ NG5H "Madelia,MN" +44.05000 -94.38300 7418 QB7H "Madison,AL" +34.69180 -86.76140 7R2V NRFR "Madison,SD" +44.00670 -97.11330 6W6H QB10 "Madison,WI" +43.06667 -89.36670 7JKG Q5B0 "Madison,WI" +43.07300 -89.38190 7JJB Q5BX "Madras,India" +13.00000 +80.18300 PNFP K500 "Madrid,Spain" +40.43330 -3.70000 GNQH PQ4Z "Magdalena,NM" +34.16700 -107.75000 60LQ NNT1 "Magnolia,AR" +33.26250 -93.23470 76WC NJ9C "Maiquetia,Venezuela" +10.60000 -66.98330 9DJ7 JR00 "Majuro,Marshall_Is." +7.06333 +171.26970 Z856 J59G "Malden,MA" +42.42330 -71.06670 929Z Q23G "Male,Maldive_Is." +4.00000 +73.00000 P2H0 HN00 "Maloelap,Marshall_Is." +8.70830 +171.23330 Z82G JFJ7 "Malone,NY" +44.83300 -74.33300 8S50 QG4X Malta +35.86700 +14.48300 J666 NZB1 "Managua,Nicaragua" +12.16670 -86.26660 7SB0 K0T0 "Manaus,Brazil" -3.03330 -60.05000 9ZV7 GGT0 "Manchester,CT" +41.78330 -72.52330 8XNQ PXWG "Manchester,England" +53.46670 -2.23320 GSDH RWB0 "Manchester,NH" +42.99110 -71.46140 91BC Q4XM "Mandalay,Myanmar" +22.00000 +96.13330 R09Z LN00 "Mandan,ND" +46.82670 -100.89500 6KQV QS40 "Mangum,OK" +34.90000 -99.51700 6P66 NSH0 "Manhattan_Beach,CA" +33.89742 -118.39600 5409 NMGL "Manhattan_Beach,CA" +33.87200 -118.39800 5404 NMBS "Manhattan,KS" +39.18330 -96.57500 6XJV PHWG "Manila,Philippines" +14.61670 +121.00000 T2H0 KF2H "Manitowoc,WI" +44.08300 -87.70000 7NQH QBDF "Mannheim,Germany" +49.47100 +8.50000 HP7H R7BM "Mansfield,OH" +40.75670 -82.51670 83P7 PRRH "Manton,CA" +40.45500 -121.77300 4TK0 PQ87 "Mantorville,MN" +44.05000 -92.45000 78V7 QB7H "Marietta,GA" +33.95000 -84.54670 7XLZ NMQH "Marion,VA" +36.80000 -81.55000 863Q P400 "Marlton,NJ" +39.88300 -74.91700 8QP6 PMDF "Marquette,MI" +46.53300 -87.41700 7PFP QQMX "Marseille,France" +43.30000 +5.41670 HFJ7 Q6H0 "Marseille,France" +43.30000 +5.41670 HFJ7 Q6H0 "Marshall,TX" +32.55000 -94.38330 7417 NDQH "Martinsburg,WV" +39.50000 -78.00000 8H00 PKH0 "Martinsville,VA" +36.66700 -79.88300 8B8R P3B1 "Mashpee,MA" +42.50220 -70.51280 93PJ Q2H9 "Mason_City,IA" +43.13300 -93.23300 76WH Q5MX "Mauldin,SC" +34.79800 -82.29900 847K NRZP "Mayaguez,PR" +18.25000 -67.15000 9D3Q L17H "Maysville,KY" +38.58300 -83.75000 80LQ PDWF "Mc_Alester,OK" +34.91700 -95.75000 70LQ NSKJ "Mc_Cook,NE" +40.21700 -100.61700 6LFP PP2J "Mc_Gill,NV" +39.41700 -114.78300 5F18 PK2J "Mc_Nary,LA" +30.96700 -92.53300 78N0 N4T1 "McAllen,TX" +26.20330 -98.23000 6SDQ MC0G "McAllen,TX" +26.20330 -98.23000 6SDQ MC0G "McGrath,AK" +62.90000 -155.60000 2100 TGH0 "McKeesport,PA" +40.35000 -79.85000 8BC7 PPQH "McNary,AZ" +34.16700 -109.91700 5T66 NNT1 "Medford,MA" +42.41830 -71.10670 926Z Q22Q "Medford,OR" +42.32330 -122.86700 4QSZ Q1LG "Medicine_Hat,AB" +50.03000 -110.73000 5R57 RB4H "Melbourne,Australia" -37.86660 +145.13330 W2SZ 8NN0 "Melbourne,FL" +28.08300 -80.61700 88FP MNDF "Melksham,England" +51.22000 +2.08000 H560 RJ30 "Melrose_Park,IL" +41.88000 -87.64000 7NW0 PZD0 "Memphis,TN" +35.14610 -90.05360 7GTZ NTPW "Mena,AR" +34.58300 -94.15000 74LQ NQWF "Meredith,NH" +43.58300 -71.58300 9118 Q7WF "Meriden,CT" +41.53500 -72.79170 8X0L PWN7 "Meridian,MS" +32.36670 -88.70000 7L7H NCT0 "Meridianville,AL" +34.76670 -86.55000 7RLQ NRT0 "Merrimack,NH" +42.81830 -70.81170 92Z3 Q42Q "Merritt_Island,FL" +28.38000 -80.70000 887H MPW0 "Mesa,AZ" +33.41500 -111.82800 5NDW NK27 "Mesquite,TX" +32.76500 -96.59670 6XH7 NFSQ "Metairie,LA" +30.00000 -90.18300 7GJ8 N000 "Mexico_City,Mexico" +19.46670 -99.14990 6Q3Q L7B0 "Mexico,MO" +39.16670 -91.83330 7BDH PHT0 "Miami_Beach,FL" +25.78830 -80.13000 89N7 M8X7 "Miami,FL" +25.77690 -80.19220 89HK M8VJ "Midas,NV" +41.25000 -116.83300 57WH PV7H "Middlebury,VT" +44.00000 -73.16700 8W2G QB00 "Middletown,DE" +39.50000 -75.66700 8NSZ PKH0 "Midland,TX" +31.99500 -102.07800 6GS4 N9Z7 Midway_Island +28.20000 -177.38300 06J8 MP00 "Midwest_City,OK" +35.45000 -97.39170 6VHL NW7H "Milan,Italy" +45.48330 +9.20000 HR00 QKDG "Milbank,SD" +45.21700 -96.63300 6XDH QJ2J "Milford,CT" +41.22500 -73.06000 8WBH PV3Q "Milford,DE" +38.91700 -75.41700 8PFP PGKJ "Milford,NH" +42.81820 -71.72090 90NW Q42P "Milford,UT" +38.33300 -113.08300 5K8R PCMX "Mili,Marshall_Is." +6.08330 +171.73330 Z99Z J0DG "Milledgeville,GA" +33.08300 -83.25000 81V7 NHDF "Miller,SD" +44.51700 -99.00000 6QH0 QDKJ "Millinocket,ME" +45.66700 -68.73300 9850 QLB1 "Millville,NJ" +39.36830 -75.07490 8Q9C PJT7 "Milpitas,CA" +37.37670 -122.03300 4SWH P6VH "Milwaukee,WI" +43.03860 -87.90420 7N75 Q55R "Mine_Hill,NJ" +40.87500 -74.61300 8RG0 PSC7 "Minneapolis,MN" +44.98250 -93.26190 76TB QGWC "Minnetonka,MN" +44.94000 -93.44330 76CQ QGP0 "Minot,ND" +48.23830 -101.29700 6JQP R15Q Miquelon_Is. +47.10000 -56.40000 B900 QTH0 "Miramar_NAS,CA" +32.86670 -117.15000 573Q NGB0 "Miramar,FL" +26.01000 -80.15000 89LQ MB1H "Mishawaka,IN" +41.71280 -86.18460 7SJ4 PXJW "Mississauga,ON" +43.59000 -79.46000 8CBH Q7XH "Missoula,MT" +46.86170 -114.00800 5GZD QS97 "Mitchell,SD" +43.54330 -98.02500 6SX3 Q7PG "Mobile,AL" +30.69330 -88.04250 7MVS N3FZ "Mobridge,SD" +45.53300 -100.43300 6LWH QKMX "Modesto,CA" +37.64330 -121.00200 4WGT P86G "Moenkopi,AZ" +36.11700 -111.21700 5PXP P0KJ "Moline,IL" +41.50860 -90.51360 7FPG PWJ8 "Molokai,HI" +21.15611 -157.09900 1W7K LHRD Monaco +43.71670 +7.78330 HMFQ Q8KH "Moncton,NB" +46.11000 -64.67000 9L9Q QNJH "Monroe,LA" +32.50000 -92.11670 79P7 NDH0 "Monrovia,Liberia" +6.25000 -10.35000 G43Q J17H "Mont-Joli,PQ" +48.60000 -68.22000 99FH R300 "Montebello,CA" +34.00000 -118.10000 54QH NN00 "Montego_Bay,Jamaica" +18.50000 -77.91670 8H67 L2H0 "Monterey_Park,CA" +34.06170 -118.12700 54NG NN97 "Monterey,CA" +36.60000 -121.88300 4T8R P300 "Montevideo,Uruguay" -34.83320 -56.16660 B9KH 95T0 "Montgomery,AL" +32.37580 -86.30860 7S6T NCVC "Monticello,IN" +40.08300 -88.58300 7LJ8 PNDF "Monticello,ME" +46.31700 -67.88300 9B8R QPKJ "Monticello,UT" +37.91700 -109.41700 5VFP P9KJ "Montour_Falls,NY" +42.34000 -76.79000 8L0Q Q1P0 "Montpelier,IN" +40.58300 -85.33300 7VN0 PQWF "Montpelier,VT" +44.26000 -72.57800 8XJM QC90 "Montpellier,France" +43.63330 +3.88330 H9P7 Q84Z "Montreal,PQ" +45.50000 -73.58000 8V1H QKH0 "Moore,OK" +35.33670 -97.48830 6V8C NVNH "Moose_Jaw,Sask." +50.37000 -105.53000 6657 RCTH "Morehead,KY" +38.16700 -83.41700 81FP PBT1 "Morgan_City,LA" +29.69830 -91.20670 7CZG MXGQ "Morgantown,WV" +39.63170 -79.95330 8B3H PL4Q "Moron_AB,Spain" +37.18330 -5.61330 GHZ0 P5WG "Morristown,NJ" +40.80000 -74.48300 8RRR PS00 "Morristown,TN" +36.16700 -83.30000 81QH P0T1 "Morrow,GA" +33.59000 -84.32800 7Z5D NKXH "Moscow,ID" +46.73330 -117.00000 57H0 QRMZ "Moscow,Russia" +55.75000 +37.61670 L417 S8QH "Moses_Lake,WA" +47.13300 -119.25000 51V7 QTMX "Mount_Erebus,Antarcti" -77.45700 +167.08000 XWP0 22PF "Mount_Hopkins,AZ" +31.68880 -110.88400 5QRP N8F9 "Mount_Vernon,NY" +40.91000 -73.82500 8TF3 PSJH "Mountain_Brook,AL" +33.49830 -86.75330 7R3H NKGQ "Mountain_Home_AFB,ID" +43.05000 -115.86700 5B9Z Q57H "Mountain_View,CA" +37.38830 -122.08000 4SS0 P6X7 "Mountain_View,MO" +36.98300 -91.76700 7BKG P4WF "Muncie,IN" +40.19110 -85.38780 7VHW PNXM "Muncy,PA" +41.24220 -75.88800 8N8D PV69 "Munich,Germany" +48.13330 +11.58330 HXXQ R0MZ "Murfreesboro,TN" +35.84830 -86.39170 7S0L NZ77 "Murray,UT" +40.66000 -111.88700 5N8G PR90 "Muskegon,MI" +43.25000 -86.33300 7S50 Q67H "Muskogee,OK" +35.74500 -95.36670 71KG NXPQ "Myrtle_Beach,SC" +33.70000 -78.88300 8DRR NLH0 ------------------------------------------------------------------------ N City Latitude Longitude NAC "N'djamina,Chad" +12.14000 +15.04000 J7L0 K0P0 "N._Bellmore,NY" +40.69240 -73.54870 8V3T PRFT "N._Cape_May,NJ" +39.00000 -74.56000 8RL0 PH00 "N._Charleston,SC" +32.88500 -80.00000 8B00 NGDQ "N._Hollywood,CA" +34.13330 -118.41700 53XP NNMZ "N._Las_Vegas,NV" +36.20330 -115.11200 5D6L P10G "N._Little_Rock,AR" +34.75500 -92.26670 799Z NRR7 "Naalehu,HI" +19.00000 -155.58300 2118 L500 "Nagasaki,Japan" +32.91670 +129.91670 TSRQ NGKH "Nagoya,Japan" +35.25000 +136.91670 VD8Q NV7H "Nagpur,India" +21.08330 +79.05000 PKLQ LHDG "Nairobi,Kenya" -1.28320 +36.81670 L217 GRKH "Namorik,Marshall_Is." +5.63167 +168.12500 Z09C HX4Q "Nampa,ID" +43.57330 -116.56200 58KT Q7TZ "Nandi,Fiji" -17.75000 +177.45000 ZRLQ D17H "Napa,CA" +38.30000 -122.29000 4S87 PCH0 "Naperville,IL" +41.75000 -88.16670 7MKG PXQH "Naples,FL" +26.11700 -81.76700 85KG MBKJ "Naples,Italy" +40.61670 +14.20000 J5H0 PR2H "Nashua,NH" +42.78300 -71.38300 91J8 Q3WF "Nashville,TN" +36.15920 -86.78190 7R1B P0RV "Nassau,Bahamas" +25.05000 -77.46700 8J9Z M57H "Natal,Brazil" -5.30000 -35.80000 D0H0 G3H0 "Natchez,MS" +31.56330 -91.39170 7CHL N7SG "Needles,CA" +34.85000 -114.65000 5FC7 NS7H "Nellis_AFB,NV" +36.28800 -115.11900 5D62 P1F6 "Nenana,AK" +64.57000 -149.07000 2K9Q TQTH "Neponsit,NY" +43.56700 -73.86700 8T9Z Q7T1 "Nevada,MO" +37.81700 -94.35000 743Q P92J "New_Albany,IN" +38.28300 -85.81700 7TFP PCDF "New_Bedford,MA" +41.63690 -70.92810 92NC PX5J "New_Britian,CT" +41.66890 -72.78310 8X18 PXBB "New_Brunswick,NJ" +40.48300 -74.45000 8RV7 PQDF "New_Carrollton,MD" +38.92000 -77.06750 8K9X PGL0 "New_Castle,Australia" -32.80000 +151.83330 WMKG 9J00 "New_Castle,DE" +39.66330 -75.56170 8P2V PL9G "New_Castle,IN" +39.91700 -85.41700 7VFP PMKJ "New_Castle,PA" +41.00000 -80.41700 88XP PT00 "New_Delhi,India" +28.90000 +77.21670 PF17 MSH0 "New_Hampton,IA" +43.05000 -92.33300 7950 Q57H "New_Hartford,CT" +41.87500 -73.04170 8WCV PZC7 "New_Haven,CT" +41.30690 -72.92500 8WNL PVJ1 "New_Iberia,LA" +30.01170 -91.82330 7BF7 N01Q "New_London,CT" +41.33300 -72.08300 8ZRR PVMX "New_Meadows,ID" +44.96700 -116.33300 5950 QGT1 "New_Orleans,LA" +29.94800 -90.06940 7GSR MZQ6 "New_Rochelle,NY" +40.90830 -73.78170 8TJC PSJ7 "New_Rockford,ND" +47.66700 -99.13300 6Q50 QXB1 "New_Washoe_City,CA" +39.31360 -119.78600 50J1 PJK1 "New_York,NY" +40.75170 -73.99420 8T0F PRQQ "Newark,DE" +39.68330 -75.75830 8NL3 PLDG "Newark,NJ" +40.73720 -74.17190 8SK3 PRNK "Newcastle,England" +53.01670 -2.23320 GSDH RT2H "Newell,SD" +44.71700 -103.43300 6CDH QFKJ "Newport_Beach,CA" +33.62000 -117.92700 555G NL30 "Newport_News,VA" +36.97670 -76.41830 8LXL P4VH "Newport,KY" +39.08830 -84.49500 7XQV PHF7 "Newport,NH" +43.33300 -72.16700 8ZKG Q6MX "Newport,OR" +44.65000 -124.03300 4MWH QF7H "Newport,RI" +41.48170 -71.31670 91P7 PWD7 "Newport,VT" +44.91700 -72.25000 8ZC7 QGKJ "Newton,MA" +42.34830 -71.19000 920Q Q1Q7 "Newton,NJ" +41.05000 -74.75000 8R3Q PT7H "Niagara_Falls,NY" +43.09280 -79.05720 8DBP Q5FW "Nice,France" +43.70000 +7.35000 HLC7 Q8H0 "Nicosia,Cyprus" +35.15000 +33.28300 KR66 NTQH "Nitro,WV" +38.41700 -81.83300 85DH PD2J "Nogales,AZ" +31.33300 -110.91700 5QP6 N6MX "Nome,AK" +64.50000 -165.41700 16FP TQH0 "Norco,CA" +33.91833 -117.52800 565D NMKQ "Norfolk,NE" +42.02830 -97.41670 6VFQ Q047 "Norfolk,VA" +36.85280 -76.28920 8M89 P47W "Norman,OK" +35.21670 -97.44000 6VD0 NV2H "North_Bay,ON" +46.32000 -79.46000 8CBH QPL0 "North_Olmstead,OH" +41.35000 -81.96670 852G PVQH "North_Platte,NE" +41.13830 -100.76200 6L2T PTNQ "Northfield,MN" +44.46700 -93.18300 7718 QDB1 "Northport,WA" +48.88300 -117.78300 55J8 R4DF "Northrop_Strip,NM" +32.70000 -106.33000 6457 NFH0 "Northway,AK" +62.97000 -141.93000 3557 TGTH "Norton,KS" +39.66700 -99.90000 6N7H PLB1 "Norton,VA" +36.90000 -82.60000 83H0 P4H0 "Norwalk,CA" +33.90170 -118.08000 54S0 NMH7 "Norwalk,CT" +41.12330 -73.36500 8VKL PTLG "Norway,ME" +44.18300 -70.58300 93J8 QBWF "Nottingham,England" +52.96670 -1.14990 GW3Q RST0 "Nouan,France" +47.50430 +2.00280 H506 QWHM "Noumea,New_Caledonia" -22.30000 +166.80000 XW00 C8H0 "Novi,MI" +42.47500 -83.52500 815L Q2C7 "Nurnberg,BY,Germany" +49.45000 +11.09900 HWQD R77H ------------------------------------------------------------------------ O City Latitude Longitude NAC "Oak_Park,IL" +41.90000 -87.78320 7NJ7 PZH0 "Oak_Ridge,TN" +36.01170 -84.26670 7Z9Z P01Q "Oakfield,ME" +46.13300 -68.16700 99KG QNMX "Oakland,CA" +37.80080 -122.26500 4SB3 P903 "Oakley,KS" +39.13300 -100.81700 6KXP PHMX "Oberlin,OH" +41.26420 -82.25670 84BQ PV9L "Oberpfaffenhofen,Germ" +48.07500 +11.28300 HX66 R0C7 "Ocala,FL" +29.18300 -82.15000 84LQ MTWF "Ocean_City,MD" +38.33300 -75.16700 8Q2G PCMX "Ocean_Grove,NJ" +40.16700 -74.00000 8T00 PNT1 "Oceanside,CA" +33.19830 -117.37700 56JP NHZQ "Odessa,TX" +31.85830 -102.37500 6G1V N98Q "Ogallala,NE" +41.13300 -101.73300 6HN0 PTMX "Ogden,UT" +41.22530 -111.97300 5N20 PV3R "Ohakea,New_Zealand" -40.20000 +175.38330 ZLFQ 8900 "Okinawa,Japan" +26.35000 +127.76670 TMDH MCQH "Oklahoma_City,OK" +35.47390 -97.51780 6V64 NWC2 "Olathe,KS" +38.88500 -94.82170 72XC PGDQ "Oldendorf,Germany" +52.29420 +8.54360 HPBR RPG3 "Olean,NY" +42.08300 -78.41700 8FXP Q0DF "Olympia,WA" +47.03330 -122.96700 4QKG QT4Z "Omaha,NE" +41.26170 -95.93720 704P PV97 "Ontario,CA" +34.06170 -117.65000 55V7 NN97 "Oostende,Belgium" +51.13000 +2.55000 H6C7 RHMH "Opelika,AL" +32.64830 -85.38500 7VJ3 NF77 "Opheim,MT" +48.85000 -106.31700 6466 R47H "Oran,Algeria" +35.76670 -0.74990 GX3Q NXT0 "Orange_Park,FL" +30.11000 -81.44000 86D0 N0JH "Orange_Park,FL" +30.15860 -81.73300 85N0 N0RR "Orange,CA" +33.78670 -117.85000 55C7 NLX0 "Orange,CT" +41.25000 -73.00000 8WH0 PV7H "Orangeburg,SC" +33.50000 -80.83300 87WH NKH0 "Orem,UT" +40.31170 -111.70000 5NQH PPJQ "Orlando,FL" +28.54500 -81.37720 86JP MQPQ "Orleans,France" +47.91670 +1.93330 H4SZ QZKH "Osaka,Japan" +34.78300 +135.45000 V8LQ NRWF "Osborne,KS" +39.41700 -98.70000 6R7H PK2J "Oshkosh,WI" +44.02170 -88.54500 7LM3 QB37 "Oslo,Norway" +59.93330 +10.68330 HVP7 SZMZ "Ottawa,ON" +45.42000 -75.67000 8NSQ QK30 "Ottumwa,IA" +41.00000 -92.43300 78WH PT00 "Overland_Park,KS" +38.97000 -94.66670 739Z PGTH "Owensboro,KY" +37.76830 -87.11330 7Q6H P8T7 "Oxford,MS" +34.36700 -89.50000 7J7H NPT1 "Oxford,NC" +36.28300 -78.58300 8FJ8 P1DF "Oxnard,CA" +34.20500 -119.17500 521V NP0Q "Ozark,AR" +35.48300 -93.81700 75FP NWDF ------------------------------------------------------------------------ P City Latitude Longitude NAC "Paauilo,HI" +20.05000 -155.41700 21FP LB7H "Pacific_Beach,CA" +32.73330 -117.16700 572G NFMZ "Pacific,MO" +38.47000 -90.76500 7F2L PDBH "Paducah,KY" +37.08690 -88.59890 7LH2 P5F1 Pagan_Island +18.12444 +145.76860 W4DM L0LM "Pago_Pago,Samoa" -14.33300 -170.71700 0R66 DLB1 "Palembang,Indonesia" -2.90000 +104.70000 RPQH GHH0 "Palm_City,FL" +27.11000 -80.11000 89PQ MHJH "Palmdale,CA" +34.99590 -118.11700 54P6 NSZC "Palmer,AK" +61.60000 -149.10000 2K7H T800 "Palo_Alto,CA" +37.44170 -122.16300 4SKR P767 "Panama_City,FL" +30.13300 -85.65000 7TV7 N0MX "Panama_City,Panama" +9.06700 -79.38300 8CJ8 JHB1 "Papeete,Tahiti" -17.56700 -149.61700 2HXP D24X "Paradise,NV" +36.10000 -115.11700 5D66 P0H0 "Paris,France" +48.85000 +2.33330 H5SZ R47H "Paris,IL" +39.58300 -87.66700 7NSZ PKWF "Park_Rapids,MN" +46.88300 -95.08300 728R QSDF "Park_View,NM" +36.75000 -106.50000 63QH P3QH "Parkersburg,WV" +39.26670 -81.55830 8633 PJB0 "Parma,OH" +41.38500 -81.71170 85PL PVWQ "Parsons,WV" +39.08300 -79.66700 8BSZ PHDF "Pasadena,CA" +34.14560 -118.14500 54M3 NNPT "Pasadena,TX" +29.71330 -95.21170 71Z3 MXJZ "Pascagoula,MS" +30.35330 -88.54670 7LLZ N1QZ "Paterson,NJ" +40.91690 -74.17250 8SK1 PSKJ "Pawtucket,RI" +41.87830 -71.38330 91J7 PZCQ "Peace_River,AB" +56.23000 -117.40000 56H0 SC4H "Pearce,Australia" -31.66670 +116.01670 SN17 9PMZ "Pembina,ND" +48.96700 -97.25000 6VV7 R4T1 "Penang,Malaysia" +5.30000 +100.28330 RBP7 HVH0 "Pendleton,OR" +45.68300 -118.78300 5318 QLDF "Pensacola,FL" +30.41420 -87.21550 7PXT N223 "Peoria,IL" +40.69500 -89.59250 7J0J PRG7 "Perth_Amboy,NJ" +40.51700 -74.26700 8S9Z PQKJ "Perth,Australia" -31.83320 +116.16670 SNDH 9NT0 "Peru,IL" +41.33300 -89.16700 7K2G PVMX "Peshawar,Pakistan" +34.00000 +71.51330 NXRG NN00 "Petersburg,AK" +56.81000 -132.95000 3WLQ SG1H "Petersburg,VA" +37.20000 -77.50000 8J7H P600 "Phenix_City,AL" +32.46330 -85.00330 7WGQ ND9G "Philadelphia,PA" +39.94940 -75.15580 8Q39 PMQD "Philip,SD" +44.05000 -101.58300 6J18 QB7H "Phoenix,AZ" +33.45330 -112.07400 5MSF NK7Z "Phuket,Thailand" +8.11670 +98.31670 R5RQ JBKH "Picayune,MS" +30.52500 -89.67830 7HS3 N2LQ "Pico_Rivera,CA" +34.00000 -118.08300 54RR NN00 "Pierce,NE" +42.18300 -97.55000 6V3Q Q0WF "Pierre,SD" +44.37170 -100.34800 6M3W QCTQ "Pilot_Hill,CA" +38.82783 -120.97800 4WJM PG45 "Pine_Bluff,AR" +34.22330 -92.01670 79XQ NP3G "Pine_City,MN" +45.83300 -93.01700 77FP QM4X Pitcairn_Island -25.06660 -130.08300 44RR BSN0 "Pittsburgh,PA" +40.43860 -80.00000 8B00 PQ5R "Pittsfield,MA" +42.44800 -73.25390 8VTX Q276 "Placerville,CA" +38.70970 -120.68300 4X8R PFJF "Plainfield,NJ" +40.63300 -74.41700 8RXP PR4X "Plaisance,Mauritius" -20.43330 +57.70000 MS7H CKT0 "Plano,TX" +33.02000 -96.70000 6X7H NH30 "Plattsburgh_AFB,NY" +44.65000 -73.46670 8V9Z QF7H "Plattsburgh,NY" +44.66700 -73.50000 8V7H QFB1 "Plymouth,MA" +42.00000 -70.75000 933Q Q000 "Plymouth,MN" +44.98250 -93.26190 76TB QGWC "Plymouth,NH" +43.83300 -71.66700 90SZ Q94X "Pocatello,ID" +42.87330 -112.45000 5LV7 Q4BZ "Pocomoke_City,MD" +38.08300 -75.58300 8P18 PBDF "Pohnpei,Micronesia" +6.98472 +158.21530 X5J4 J4WP "Point_Hope,AK" +68.30000 -166.63300 13DH VCH0 "Polson,MT" +47.66700 -114.16700 5GKG QXB1 "Pomona,CA" +34.06170 -117.75000 55LQ NN97 "Pompano_Beach,FL" +26.23330 -80.12500 89NL MC4Z "Ponca_City,OK" +36.70700 -97.00920 6WG9 P3J1 "Ponca_City,OK" +36.70700 -97.00920 6WG9 P3J1 "Ponce,PR" +18.01670 -66.56670 9FKG L02H "Pontiac,MI" +42.63670 -83.29170 81R3 Q35H "Poplar_Bluff,MO" +36.71700 -90.36700 7G2G P3KJ "Poplar,MT" +48.13300 -105.16700 672G R0MX "Port_Allen,HI" +21.90000 -159.60600 1NZJ LMH0 "Port_Arthur,TX" +29.87500 -93.93750 754N MZC7 "Port_Huron,MI" +43.00000 -82.50000 83QH Q500 "Port_Moresby,Papua" -9.45000 +147.21670 W817 FDQH "Port_of_Spain,Trinida" +10.60000 -61.35000 9VLQ JR00 "Port_Salerno,FL" +27.20000 -80.20000 89H0 MJ00 "Port_Sulphur,LA" +29.46700 -89.68300 7HRR MWB1 "Port-au-Prince,Haiti" +18.58330 -72.33320 8Z50 L2WG "Portland,ME" +43.65920 -70.25530 94BT Q88V "Portland,OR" +45.51830 -122.67600 4R99 QKKQ "Portsmouth,England" +50.75000 -1.04990 GWC7 RFQH "Portsmouth,NH" +43.07500 -70.75670 9337 Q5C7 "Portsmouth,OH" +38.75000 -83.00000 82H0 PFQH "Portsmouth,VA" +36.83530 -76.30390 8M76 P458 "Potomac,MD" +39.03888 -77.17500 8K1V PH5S "Pottstown,PA" +40.25000 -75.66700 8NSZ PP7H "Poughkeepsie,NY" +41.75000 -73.91700 8T66 PXQH "Prague,Czech_Rep." +50.08330 +14.43330 J62G RBDG "Pratt,KS" +37.38550 -98.43560 6RW9 P6WS "Prescott,AZ" +34.54670 -112.47200 5LSL NQQ0 "Preston,ID" +42.08300 -111.90000 5N7H Q0DF "Pretoria,S._Africa" -25.85000 +28.00000 KB00 BNQH "Primghar,IA" +43.05000 -95.35000 71LQ Q57H "Prince_Albert,SK" +55.39670 -111.12500 5Q5L S6ZH "Prince_George,BC" +53.92000 -122.69000 4R87 RZL0 "Prince_Rupert,BC" +54.31000 -130.38000 441H S1JH "Princeton,MO" +40.38300 -93.56700 762G PPWF "Princeton,NJ" +40.35000 -74.66700 8R9Z PPQH "Princeton,WV" +37.35000 -81.08300 878R P6QH "Proctor,VT" +43.66700 -73.00000 8WH0 Q8B1 "Prosser,WA" +46.12000 -119.46000 51BH QNL0 "Providence,RI" +41.82550 -71.41140 91G4 PZ3S "Provo,UT" +40.23500 -111.65700 5NTP PP57 "Prudhoe_Bay,AK" +70.27000 -148.34000 2M4G VPBH "Pueblo,CO" +38.27140 -104.60900 68G9 PCBP "Puerto_Montt,Chile" -41.43330 -73.10000 8W7H 82T0 "Puerto_Real,PR" +18.34170 -65.62140 9HXC L1P7 "Putnam,CT" +41.91700 -71.91700 9066 PZKJ "Puyallup,WA" +47.12607 -122.25900 4SBK QTLW "Puyallup,WA" +47.27750 -122.51100 4RPN QVCL ------------------------------------------------------------------------ Q City Latitude Longitude NAC "Quakertown,PA" +40.46530 -75.37220 8PK2 PQ9R "Quebec,PQ" +46.75000 -71.17000 9227 QRQH "Quincy,MA" +42.25170 -71.00170 92GV Q17Q "Quito,Ecuador" -0.13300 -78.48300 8FRR GZB1 ------------------------------------------------------------------------ R City Latitude Longitude NAC "Raanana,Israel" +32.18330 +34.87500 KW5L NBWG "Rabat,Morocco" +34.05000 -6.75000 GF3Q NN7H "Racine,WI" +42.73030 -87.78670 7NHZ Q3MJ "Raleigh,NC" +35.77720 -78.63920 8FD1 NXVK "Ramstein_AB,Germany" +49.43300 +7.60000 HM00 R74X Rancho_Palos_Verdes_CA +33.76750 -118.40300 53ZR NLT3 "Randolph,VT" +43.91700 -72.66700 8X9Z Q9KJ "Rangeley,ME" +45.00000 -70.41700 93XP QH00 "Rangoon,Myanmar" +16.76670 +96.15000 R0C7 KRT0 "Rapid_City,SD" +44.08000 -103.22800 6CWW QBD0 "Rawalpindi,Pakistan" +33.61700 +73.10000 P2QH NL2J "Rawlins,WY" +41.79000 -107.23800 61W4 PXXH "Reading,PA" +40.33580 -75.92780 8N5D PPNC "Recife,Brazil" -8.13300 -34.93300 D2N0 FMB1 "Redding,CA" +40.60000 -122.41700 4RXP PR00 "Redondo_Beach,CA" +33.82670 -118.38700 540Z NM40 "Redwood_City,CA" +37.46670 -122.25000 4SC7 P7B0 "Regensburg,Germany" +49.01900 +12.10000 M2K0 R5L0 "Regina,SK" +50.50000 -104.50000 68QH RDH0 "Reims,France" +49.26670 +4.00000 HB00 R6B0 "Rennes,France" +48.11670 -1.03320 GWDH R0KH "Reno,NV" +39.52420 -119.81100 50G5 PKLL "Reseda,CA" +34.20000 -118.53300 53N0 NP00 "Rexburg,ID" +43.82330 -111.78500 5NJ3 Q93G "Reykjavik,Iceland" +64.15000 -21.90000 F57H TNQH "Rhinelander,WI" +45.65000 -89.41700 7JFP QL7H "Richardson,TX" +32.95330 -96.72500 6X5L NGQZ "Richland,WA" +46.28300 -119.31700 51P6 QPDF "Richmond,Australia" -33.60000 +150.78330 WJXQ 9D00 "Richmond,CA" +37.93670 -122.34700 4S3Z P9NH "Richmond,KY" +37.75000 -84.33300 7Z50 P8QH "Richmond,UT" +41.91700 -111.83300 5NDH PZKJ "Richmond,VA" +37.53750 -77.43580 8JD9 P7NL "Rifle,CO" +39.58300 -107.83300 60DH PKWF "Rio_de_Janeiro,Brazil" -22.45000 -42.71700 CF66 C7QH "Riverside,CA" +33.98000 -117.36500 56KL NMW0 "Riverton,WY" +43.02500 -108.38500 5Z13 Q53Q "Riyadh,Saudi_Arabia" +24.51670 +46.78330 LVXQ M2KH "Roanoke,VA" +37.27030 -79.94550 8B42 P6BJ "Robinson,IL" +39.83300 -87.80000 7NH0 PM4X "Rochdale,Lanc,England" +53.60000 +2.10000 H57H RX00 "Rochester_Hills,MI" +42.68330 -83.13330 8250 Q3DG "Rochester,MN" +44.02250 -92.46750 78SX QB3C "Rochester,NH" +43.30330 -70.97500 92JV Q6HG "Rochester,NY" +43.16140 -77.60580 8HZJ Q5S6 "Rock_Hill,SC" +34.92830 -81.02330 87F7 NSM7 "Rock_Springs,WY" +41.58500 -109.22500 5VX3 PWWQ "Rockford,IL" +42.26860 -89.09670 7K7Q Q1B8 "Rockland,ME" +44.09170 -69.10420 9775 QBFQ "Rockport,MO" +40.41700 -95.50000 717H PQ2J "Rockville,MD" +39.08000 -77.10000 8K7H PHD0 "Rockville,MD" +39.08330 -77.14330 8K47 PHDG "Rockwood,ME" +45.65000 -69.75000 95LQ QL7H "Rocky_Mount,NC" +35.91700 -77.78300 8HJ8 NZKJ "Rogers,AR" +36.28000 -94.28000 7490 P1D0 "Rome,Italy" +41.86670 +12.61670 J1J7 PZB0 "Roosevelt_Roads,PR" +18.25000 -65.63330 9HWH L17H "Rosemead,CA" +34.07000 -118.09000 54R7 NNBH "Roseville,CA" +38.58250 -121.49500 4V7V PDWC "Roseville,MI" +42.50330 -82.93670 82MQ Q2HG "Rostock,Germany" +54.08300 +12.13300 J09Z S0DF "Roswell,GA" +34.03300 -84.35000 7Z3Q NN4X "Roswell,NM" +33.39500 -104.52700 68NG NJZ7 Rota_Island +14.17333 +145.23890 W32W KBTZ "Rotterdam,Netherlands" +51.91670 +4.45000 HC3Q RMKH "Rouen,France" +49.41670 +1.08330 H2P7 R72H "Roundup,MT" +46.41700 -108.58300 5XJ8 QQ2J "Rowland_Heights,CA" +34.00000 -117.87500 559C NN00 "Royal_Oak,MI" +42.50670 -83.14670 823Z Q2J0 "Ruby,AK" +64.63300 -155.36700 21KG TR4X "Rugby,ND" +48.36700 -100.00000 6N00 R1T1 "Rumford,RI" +41.82000 -71.41000 91G7 PZ30 "Russell,KS" +38.85000 -98.85000 6QV7 PG7H "Ruston,LA" +32.52500 -92.63830 78D3 NDLQ "Rutland,VT" +43.60830 -72.97170 8WK3 Q817 ------------------------------------------------------------------------ S City Latitude Longitude NAC "S._Portland,ME" +43.63500 -70.25000 94C7 Q857 "Saco,ME" +43.50000 -70.44330 93VQ Q7H0 "Sacramento,CA" +38.66000 -121.32000 4VP0 PF90 "Sacramento,CA" +38.58250 -121.49500 4V7V PDWC "Saginaw,MI" +43.43110 -83.93470 804V Q74M "Saginaw,TX" +32.51300 -97.22000 6VXH NDJX Saipan_Island +15.12030 +145.73030 W49R KHL1 "Sale,Australia" -38.10000 +147.15000 W7V7 8MH0 "Salem,MA" +42.51700 -70.90000 92QH Q2KJ "Salem,NH" +42.70000 -71.25000 91V7 Q3H0 "Salem,OR" +44.94000 -123.03300 4QDH QGP0 "Salem,WV" +39.25000 -80.58300 88J8 PJ7H "Salina,KS" +38.83500 -97.60830 6TZC PG57 "Salina,UT" +39.00000 -111.91700 5N66 PH00 "Salinas,CA" +36.67000 -121.65200 4TV3 P3BH "Salisbury,MD" +38.33300 -75.66700 8NSZ PCMX "Sallisaw,OK" +35.45000 -94.80000 7300 NW7H "Salmon,ID" +45.50000 -115.75000 5BLQ QKH0 "Salt_Lake_City,UT" +40.75640 -111.89100 5N85 PRRF "Salton_City,CA" +33.24000 -115.95000 5B3Q NJ60 "Salzburg,Austria" +47.78000 +13.00000 J2H0 QXW0 "Samarrah,Iraq" +34.20000 +43.90500 LMQV NP00 "San_Angelo,TX" +31.46080 -100.43400 6LWF N793 "San_Antonio,TX" +29.42690 -98.48500 6RRL MW41 "San_Antonio,TX" +29.42690 -98.48500 6RRL MW41 "San_Bernardino,CA" +34.10830 -117.29100 56R5 NNJ7 "San_Diego,CA" +32.71470 -117.15600 5739 NFK6 "San_Francisco,CA" +37.77750 -122.41100 4RZ5 P8VL "San_Jose,CA" +37.33780 -121.89000 4T87 P6NN "San_Jose,Costa_Rica" +9.95000 -84.08320 7ZRQ JMQH "San_Juan,PR" +18.45000 -66.00000 9H00 L27H "San_Leandro,CA" +37.72500 -122.15500 4SLC P8LQ "San_Mateo,CA" +37.56330 -122.32300 4S5R P7SG "San_Pedro,CA" +33.73330 -118.28300 548R NLMZ "San_Salvador,El_Salv." +13.70000 -89.11700 7K66 K8H0 "Sanders,AZ" +35.21700 -109.33300 5VN0 NV2J "Sandersville,GA" +33.00000 -82.46000 83TH NH00 "Sandhurst,Surry,ENG" +51.34667 -0.80500 GWZL RJQ0 "Sandpoint,ID" +48.28300 -116.56700 58KG R1DF "Sanford,ME" +43.44170 -70.77670 931Q Q767 "Santa_Ana,CA" +33.76330 -117.86500 55B3 NLSG "Santa_Barbara,CA" +34.42170 -119.69900 50QK NQ37 "Santa_Clara,CA" +37.34500 -121.94700 4T3Z P6PQ "Santa_Cruz,Bolivia" -17.65000 -63.13330 9Q50 D1QH "Santa_Fe,NM" +35.68640 -105.93600 654R NXDX "Santa_Maria,CA" +34.89890 -120.45600 4XTS NSGT "Santa_Monica,CA" +34.01330 -118.48500 53RL NN1Z "Santa_Rosa,CA" +38.44000 -122.71500 4R6C PD60 "Santa_Rosa,NM" +34.91700 -104.68300 688R NSKJ "Santiago,Chile" -33.43320 -70.66660 93B0 9DT0 "Santo_Domingo,Dom._Re" +18.43670 -69.66690 95SZ L25H "Sao_Paulo,Brazil" -23.56660 -46.63320 C3DH C250 "Sapporo,Japan" +43.11700 +141.38300 VRFP Q5KJ "Sarajevo,Bosnia" +43.83200 +18.33500 JHT3 Q94S "Sarasota,FL" +27.33670 -82.53170 83N3 MJNH "Sargent,NE" +41.66700 -99.63300 6NWH PXB1 "Saskatoon,Sask." +52.15000 -106.60000 63H0 RNQH "Sault_Ste._Marie,MI" +46.48300 -84.35000 7Z3Q QQDF "Savannah,GA" +32.07830 -81.09360 877Z NBCQ "Scarborough,ON" +43.67000 -79.37000 8CK7 Q8BH "Schaumburg,IL" +42.04000 -88.08000 7MS0 Q060 "Schenectady,NY" +42.81170 -73.92830 8T5C Q41Q "Schuyler,NE" +41.46700 -97.08300 6W8R PWB1 "Scottsdale,AZ" +33.48830 -111.92700 5N5G NKF7 "Scranton,PA" +41.40890 -75.66280 8NT8 PW1B "Seabrook,TX" +29.56370 -95.02560 72F2 MWSJ "Seaford,DE" +38.64170 -75.61170 8NZ3 PF67 "Seal_Beach,CA" +33.77500 -117.99300 550H NLV7 "Seattle,WA" +47.60890 -122.33700 4S4P QX1B "Sebastian,FL" +27.84000 -80.49710 88QP MM60 "Selma,AL" +32.41670 -87.02330 7QF7 ND2H "Selter,Germany" +50.36920 +8.26640 HNMZ RCTC "Seoul,S._Korea" +37.58330 +127.05000 TKLQ P7WG "Sept-Iles,PQ" +50.22000 -66.31000 9G6Q RC30 "Seville,Spain" +37.41700 -5.90000 GH7H P72J "Seward,AK" +60.10000 -149.45000 2JC7 T0H0 Seychelles_Is. -5.00000 +55.00000 MKH0 G500 "Seymour,TN" +35.88330 -83.71660 80P7 NZDG "Shanghai,China" +31.23300 +121.45000 T3LQ N64X "Shannon,Ireland" +52.70000 -8.91700 G7P6 RRH0 "Shawnee,KS" +39.01330 -94.71500 736C PH1Z "Sheboygan,WI" +43.76000 -87.74830 7NLV Q8S0 "Sheffield,England" +53.38330 -1.46660 GVB0 RVWG "Shelby,OH" +40.88170 -82.66170 83BC PSD7 "Shelbyville,TN" +35.50000 -86.46700 7RSZ NWH0 "Sheldon,IA" +43.16700 -95.83300 70DH Q5T1 "Shell_Beach,CA" +35.15522 -120.67200 4X9L NTR8 "Shemya,AK" +52.71000 +174.12000 ZH90 RRJH "Sherbrooke,PQ" +45.40000 -71.77000 90K7 QK00 "Sheridan,WY" +44.79670 -106.96200 62KT QFZH "Shiraz,Iran" +29.54000 +52.59000 MCG7 MWP0 "Shoshone,ID" +42.93300 -114.40000 5G00 Q4MX "Shreveport,LA" +32.51280 -93.74940 75LR NDJW "Shungnak,AK" +66.91700 -157.33300 1VN0 V4KJ "Sibu,Malaysia" +2.35000 +111.83330 S9KG HCQH "Sigonella,Sicily" +37.40000 +14.92500 J79C P700 "Silver_Spring,MD" +39.00000 -77.00000 8KH0 PH00 "Simi_Valley,CA" +34.26830 -118.77800 531M NPB7 Singapore +1.36670 +103.75000 RMC7 H6T0 "Sioux_City,IA" +42.49610 -96.40830 6XZC Q2GD "Sioux_Falls,SD" +43.54300 -96.72640 6X5H Q7PF "Sioux_Lookout,ON" +50.07000 -91.92000 7B60 RBBH "Sioux_Narrows,ON" +49.40000 -94.00000 7500 R700 "Sitka,AK" +57.05000 -135.36000 3PKZ SH7H "Sittwe,Myanmar" +20.13330 +92.88330 QQ67 LBMZ "Skokie,IL" +42.04330 -87.74670 7NLZ Q06G "Slidell,LA" +30.27500 -89.80170 7HGV N1C7 "Smyrna,DE" +39.30280 -75.60670 8NZG PJHD "Soda_Springs,ID" +42.65000 -111.61700 5NXP Q37H "Soeborg,Denmark" +55.42000 +12.35000 J0V7 S730 "Sofia,Bulgaria" +42.71670 +23.33330 JX9Z Q3KH "Somerset,KY" +37.04000 -84.36000 7Z30 P560 "Somerset,NJ" +40.51000 -74.56000 8RL0 PQJH "Somerville,MA" +42.35670 -71.05690 92BP Q1RH "Somerville,MA" +42.38750 -71.10190 927B Q1X3 "Somerville,NJ" +40.56700 -74.61700 8RFP PQT1 "Sondrestrom,Gnld." +67.02000 -50.72000 BR60 V530 "Sonoma,CA" +38.29830 -122.51300 4RPH PCGQ "South_Bend,IN" +41.67580 -86.25030 7SC6 PXCC "South_Gate,CA" +33.95500 -118.20500 54GL NMR7 "South_Kauai_VORTAC,HI" +21.90361 -159.53200 1P52 LMHJ "Southampton,England" +50.90000 -1.49990 GV7H RGH0 "Southampton,NY" +40.88300 -72.40000 8Z00 PSDF "Southfield,MI" +42.47500 -83.27670 81S7 Q2C7 "Southington,CT" +41.63030 -72.87070 8WSN PX4J "Sparks,NV" +39.53830 -119.75300 50LH PKNQ "Spartanburg,SC" +34.95080 -81.93500 854V NSQL "Spenard,AK" +61.18830 -149.91700 2H66 T5X7 "Spencer,IA" +43.15000 -95.13300 7250 Q5QH "Spokane,WA" +47.65890 -117.42600 56F1 QX8T "Springdale,AR" +36.16700 -94.11700 74P6 P0T1 "Springfield,IL" +39.79940 -89.64750 7HVF PLZW "Springfield,MA" +42.10580 -72.59220 8XHK Q0HV "Springfield,MO" +37.21750 -93.29220 76R2 P62L "Springfield,OH" +39.92720 -83.80800 80GC PMM2 "Springfield,OR" +44.05000 -123.02000 4QFH QB7H "Springfield,VT" +43.29670 -72.48170 8XRV Q6GH "St-Hubert,Quebec" +45.50000 -73.58000 8V1H QKH0 "St._Albans,VT" +44.83300 -73.08300 8W8R QG4X "St._Catherines,ON" +43.10000 -79.12000 8D60 Q5H0 "St._Charles,MO" +38.78670 -90.48000 7FS0 PFX0 "St._Clair_Shores,MI" +42.49670 -82.88670 82RG Q2GH "St._Cloud,MN" +45.56670 -94.17330 74K0 QKT0 "St._Croix,VI" +17.70000 -64.80000 9L00 KXH0 "St._George,UT" +37.08300 -113.66700 5HSZ P5DF "St._John's,Nfld." +47.08000 -52.71000 BL6Q QTD0 "St._John,NB" +45.34000 -65.96000 9H30 QJP0 "St._Joseph,MO" +39.76580 -94.85060 72V6 PLSV "St._Louis_Park,MN" +44.94330 -93.35000 76LQ QGPG "St._Louis,MO" +38.62920 -90.20610 7GGJ PF4C St._Lucia +13.73330 -60.95000 9WLQ K8MZ "St._Michales,MD" +38.80000 -76.20000 8MH0 PG00 "St._Nazaire,France" +47.30000 -2.21660 GSFQ QVH0 "St._Paul,MN" +44.95530 -93.10190 777B QGR8 "St._Petersburg,FL" +27.77170 -82.63860 83D3 MLTQ "St._Petersburg,Russia" +59.95000 +30.33330 KHSZ SZQH "St._Thomas,VI" +18.33330 -64.96670 9KKG L1MZ "Stamford,CT" +41.05250 -73.54000 8V4H PT7V "Stanley,Falkland_Is." -51.76660 -57.98320 B517 6C50 "Staten_Island,NY" +40.58330 -74.15000 8SLQ PQWG "Statesville,NC" +34.75000 -80.90000 87QH NRQH "Steamboat_Springs,CO" +40.50000 -106.80000 6300 PQH0 "Sterling_Heights,MI" +42.58330 -83.01670 82FQ Q2WG "Sterling,IL" +41.78300 -89.65000 7HV7 PXWF "Sterling,VA" +38.94470 -77.45580 8JBS PGPP "Steubenville,OH" +40.36170 -80.61470 88FV PPS7 "Stockholm,ME" +47.08300 -68.13300 99N0 QTDF "Stockholm,Sweden" +59.38330 +18.00000 JH00 SVWG "Stockton,CA" +37.95830 -121.28800 4VRD P9RQ "Stony_Brook,NY" +40.92000 -73.13000 8W57 PSL0 "Strasbourg,France" +48.54000 +7.62600 HM1X R2P0 "Stratford,CT" +41.20000 -73.13330 8W50 PV00 "Sturtevant,WI" +42.70000 -87.90000 7N7H Q3H0 "Stuttgart,Germany" +48.80000 +9.25000 HR3Q R400 "Sudbury,ON" +46.54000 -80.86000 87TH QQP0 "Suffolk,VA" +36.72830 -76.58000 8LJH P3M7 "Sumter,SC" +33.91830 -80.34670 893Z NMKQ "Sun_Valley,CA" +34.25000 -118.37300 5420 NP7H "Sunnyvale,CA" +37.37670 -122.03300 4SWH P6VH "Sunrise,FL" +26.14750 -80.25400 89BX MBQ3 "Superior,WI" +46.72060 -92.10190 79QB QRL2 "Swannanoa,NC" +35.59500 -82.55720 83L6 NWZ7 "Swift_Current,Sask." +50.28000 -107.75000 60LQ RCD0 "Sydney,Australia" -33.91660 +151.28330 WL67 9BDH "Sydney,NS" +46.14000 -60.08000 9ZS0 QNP0 "Syracuse,NY" +43.05110 -76.15390 8MLF Q57M ------------------------------------------------------------------------ T City Latitude Longitude NAC "Tabriz,Iran" +38.13330 +46.23600 LTKP PBMZ "Tacoma,WA" +47.24970 -122.43800 4RW4 QV7F Tahiti -17.55000 -149.60000 2J00 D27H "Tai_Tam,Hong_Kong" +22.25000 +114.20000 SHH0 LP7H "Taipei,Taiwan" +25.03330 +121.63330 T42G M54Z "Talara,Peru" -4.56670 -81.25000 86V7 G74Z "Tallahassee,FL" +30.44500 -84.28170 7Z8V N26Q "Tampa,FL" +27.94940 -82.45690 83TP MMQD "Tangier,Morocco" +35.86670 -5.91660 GH67 NZB0 Taora_Island +8.70830 +171.23330 Z82G JFJ7 "Taylor,MI" +42.22500 -83.26830 81SV Q13Q "Tegucigalpa,Honduras" +14.06670 -87.21670 7PXQ KBB0 "Tehran,Iran" +35.75000 +51.50000 M8QH NXQH "Teignmouth,England" +50.55000 +3.51000 H8R7 RDQH "Tel_Aviv,Israel" +32.01700 +34.88300 KW66 NB2J "Tempe,AZ" +33.41500 -111.92800 5N5D NK27 "Tengah,Singapore" +1.38330 +103.71670 RM8Q H6WG "Tenino,WA" +46.87472 -122.83500 4QWC QSC6 "Tern_Island,HI" +23.86720 -166.28800 148C LZB2 "Terre_Haute,IN" +39.46750 -87.40720 7PGF PKB3 "Texarkana,AR" +33.43000 -94.04170 74VV NK4H "Texarkana,TX" +33.43000 -94.04170 74VV NK4H "The_Pas,MB" +53.88000 -101.17000 6K27 RZD0 "Thibodaux,LA" +29.79500 -90.80670 7DZG MXZ7 "Thomasville,AL" +31.91700 -87.71700 7NP6 N9KJ "Thornton,CO" +39.86330 -104.96500 67KL PM9G "Thousand_Oaks,CA" +34.17170 -118.84000 52W0 NNTQ "Thule,Greenland" +76.54000 -68.70000 987H WQP0 "Thunder_Bay,ON" +48.45000 -89.20000 7K00 R27H "Tifton,GA" +31.41700 -83.56700 812G N72J "Tillson,NY" +41.83860 -74.07000 8SSQ PZ5R "Timmins,ON" +48.48000 -81.33000 86N7 R2D0 "Tinak,Marshall_Is." +7.13333 +171.91670 Z9RQ J5MZ Tinian_Island +14.99560 +145.61560 W415 KGZB "Tokyo,Japan" +35.68330 +139.73330 VM9Z NXDG "Toledo,OH" +41.65390 -83.54420 8145 PX82 "Tombstone,AZ" +31.66700 -110.00000 5T00 N8B1 "Topeka,KS" +39.05440 -95.67300 70SH PH84 "Toronto,ON" +43.67000 -79.37000 8CK7 Q8BH "Torrance,CA" +33.82500 -118.30800 546V NM3Q "Torrington,CT" +41.83300 -73.16700 8W2G PZ4X "Toulouse,France" +43.61670 +1.45000 H3LQ Q82H "Tours,France" +47.38330 +0.65000 H1LQ QVWG "Townsville,Australia" -19.25000 +146.76670 W6WH CRQH "Trapani,Sicily" +37.90000 +12.48300 J166 P9H0 "Traverse_City,MI" +44.75000 -85.66700 7TSZ QFQH "Trenton,NJ" +40.22060 -74.77030 8R26 PP32 "Trinidad,CO" +37.18300 -104.51700 68P6 P5WF "Tripoli,Libya" +32.83330 +13.21670 J317 NG4Z "Trois-Rivieres,PQ" +46.36000 -72.68000 8X8Z QPS0 "Troy,MI" +42.61000 -83.15000 823Q Q31H "Troy,MT" +48.46700 -115.93300 5B50 R2B1 "Troy,NY" +42.72920 -73.68280 8TRR Q3MC "Truk_Atoll,Micronesia" +7.45528 +151.83720 WMKR J788 Truth_or_Consequences +33.16700 -107.33300 61N0 NHT1 "Tucker,GA" +33.52000 -84.12000 7ZP0 NKL0 "Tucson,AZ" +32.22080 -110.96900 5QK9 NC33 "Tucumcari,NM" +35.18300 -103.71700 6BP6 NTWF "Tulsa,OK" +36.15330 -95.99280 700J P0QZ "Tunis,Tunisia" +36.85000 +10.21700 HTJ8 P47H "Tupelo,MS" +34.23300 -88.71700 7L66 NP4X "Tuscaloosa,AL" +33.20500 -87.56670 7P2G NJ0Q "Twin_Falls,ID" +42.56170 -114.47000 5FSQ Q2S7 "Tyler,TX" +32.34500 -95.30170 71QC NCPQ ------------------------------------------------------------------------ U City Latitude Longitude NAC "Ubon,Thailand" +15.25000 +104.86670 RQ50 KJ7H "Udon-Thani,Thailand" +17.38330 +102.80000 RK00 KVWG "Uelzen,Germany" +52.97000 +10.52000 HV90 RSTH "Ujung_Pandang,Indones" -5.06670 +119.55000 SXV7 G4MZ "Unalaska,AK" +53.91000 -166.54000 13MH RZJH "Union_City,NJ" +40.75330 -74.03830 8SW3 PRQZ "Union_City,TN" +36.41700 -89.06700 7K9Z P22J "University_City,MO" +38.66000 -90.33330 7G50 PF90 "Upolu_Point,HI" +20.20360 -155.84600 20CJ LC0J "Upolu,HI" +20.26833 -155.86300 20B8 LCB7 "Urbana,IL" +40.11170 -88.20170 7MGV PNJQ "Utica,NY" +43.10330 -75.22580 8PX1 Q5HG "Utirik,Marshall_Is." +11.23330 +169.85000 Z4LQ JV4Z ------------------------------------------------------------------------ V City Latitude Longitude NAC "Vacaville,CA" +38.27000 -121.50000 4V7H PCBH "Val-d'or,PQ" +48.08000 -77.78000 8HJH R0D0 "Valdez,AK" +61.13000 -146.28000 2S90 T5MH "Valdosta,GA" +30.83170 -83.27830 81S3 N44Q "Vale,OR" +43.98300 -117.23300 56WH Q9WF "Valentine,NE" +42.86700 -100.56700 6LKG Q4B1 "Valhalla,NY" +41.81300 -73.77250 8TK1 PZ1X "Vallejo,CA" +38.11000 -122.25000 4SC7 PBJH "Valletta,Malta" +35.83330 +14.48330 J667 NZ4Z "Valparaiso,Chile" -33.03320 -71.53320 9150 9GT0 "Van_Buren,ME" +47.15000 -67.96700 9B2G QTQH "Van_Nuys,CA" +34.18330 -118.36700 542G NNWG "Vancouver,BC" +49.25000 -123.08000 4Q90 R67H "Vancouver,WA" +45.62500 -122.67000 4R9Q QL3Q "Vandans,Austria" +47.09920 +9.86340 HSMQ QTGV "Vandenberg_AFB,CA" +34.73330 -120.58300 4XJ8 NRMZ "Vaughn,NM" +34.61700 -105.21700 66XP NR2J "Venice,CA" +33.90000 -118.44200 53VT NMH0 "Venice,Italy" +45.41670 +12.30000 J0QH QK2H "Ventura,CA" +34.28330 -119.30000 51QH NPDG "Vermillion,SD" +42.78000 -96.92830 6WNC Q3W0 "Vernal,UT" +40.48300 -109.66700 5TSZ PQDF "Vicksburg,MS" +32.34830 -90.87830 7DS3 NCQ7 "Victoria,BC" +48.63000 -123.40000 4PGZ R34H "Victoria,TX" +28.80500 -97.00500 6WGL MS0Q "Vienna,Austria" +48.21670 +16.36670 JBWH R12H "Vineland,NJ" +39.48670 -75.02670 8QDZ PKF0 "Virginia_Beach,VA" +36.84670 -75.97500 8N1V P470 "Virginia_Beach,VA" +36.84611 -76.13920 8MMJ P46W "Visalia,CA" +36.33500 -119.29700 51QP P1N7 "Vladivostok,Russia" +43.10000 +131.78330 TZFQ Q5H0 "Vols,Austria" +47.15210 +11.19480 HWZL QTQS ------------------------------------------------------------------------ W City Latitude Longitude NAC "W._Fargo,ND" +46.87170 -96.90330 6WQ7 QSBQ "W._Hartford,CT" +41.75000 -72.74000 8X4H PXQH "W._Springfield,MA" +42.10143 -72.63000 8XDQ Q0H6 "W._Warwick,RI" +41.70830 -71.52500 915L PXJ7 "Wabash,IN" +40.75000 -85.83300 7TDH PRQH "Waco,TX" +31.55330 -97.13330 6W50 N7QZ "Wahiawa,HI" +21.50000 -158.03300 1SWH LKH0 "Waialua,HI" +21.55000 -158.13300 1SN0 LKQH "Waikola,HI" +19.86700 -155.75000 20LQ L9B1 "Wailuku,HI" +20.91700 -156.50000 1XQH LGKJ "Waimea,HI" +21.93300 -159.63300 1NWH LMMX "Waipahu,HI" +21.33300 -158.03300 1SWH LJMX Wake_Island +19.28167 +166.63640 XVKP L6D7 "Wakefield,MA" +42.50000 -71.06670 929Z Q2H0 "Waldoboro,ME" +44.10000 -69.36700 96KG QBH0 "Walker,LA" +30.44940 -91.18330 7D17 N27D "Walla_Walla,WA" +46.06890 -118.34000 544H QNBB "Wallace,ID" +47.45000 -115.91700 5B66 QW7H "Wallowa,OR" +45.56700 -117.53300 5650 QKT1 "Walnut_Creek,CA" +37.90170 -122.05800 4STM P9H7 "Waltham,MA" +42.37330 -71.23670 91W7 Q1TZ "Warner_Robins,GA" +32.61670 -83.60170 80ZV NF2H "Warren,MI" +42.50830 -83.02670 82DZ Q2J7 "Warren,OH" +41.23670 -80.80830 87ZC PV5H "Warren,PA" +41.83300 -79.16700 8D2G PZ4X "Warsaw,Poland" +52.58340 +21.08330 JQP7 RQWH "Warwick,RI" +41.70170 -71.45830 91BL PXH7 "Wasco,OR" +45.60000 -120.70000 4X7H QL00 "Waseca,MN" +44.07420 -93.49250 7681 QBC3 "Washington_(USNO),DC" +38.92056 -77.06580 8KB1 PGL2 "Washington,DC" +38.89750 -77.00920 8KG9 PGGL "Washington,IL" +40.69300 -89.40000 7JH0 PRFX "Waterbury,CT" +41.55360 -73.04190 8WCT PWR1 "Waterloo,IA" +42.49440 -92.33890 794K Q2G4 "Waterloo,ON" +43.46000 -80.49000 88R7 Q790 "Watertown,NY" +44.00000 -75.91700 8N66 QB00 "Watertown,SD" +44.90170 -97.11330 6W6H QGH7 "Waterville,WA" +47.63300 -120.06700 4ZSZ QX4X "Waukegan,IL" +42.35830 -87.83330 7NDH Q1RQ "Waukesha,WI" +43.00220 -88.23670 7MD7 Q509 "Wausau,WI" +44.96700 -89.66700 7HSZ QGT1 "Wauwatosa,WI" +43.05170 -88.00670 7MZG Q57Q "Waycross,GA" +31.18300 -82.40000 8400 N5WF "Wayne,NE" +42.21700 -97.05000 6WC7 Q12J "Waynesboro,VA" +38.06250 -78.87500 8DSC PB9C "Waynesburg,PA" +39.93330 -80.23330 89DH PMMZ "Weirs,NH" +43.70000 -71.25000 91V7 Q8H0 "Weirton,WV" +40.40500 -80.58830 88HV PQ0Q "Wellington,N_Zealand" -41.24990 +174.75000 ZJV7 83QH "Wells,NV" +41.11700 -115.06700 5D9Z PTKJ "Wendover,UT" +40.78300 -114.01700 5GXP PRWF "West_Allis,WI" +43.00830 -88.00670 7MZG Q517 "West_Covina,CA" +34.07170 -117.90900 556S NNBQ "West_Haven,CT" +41.28330 -72.95330 8WLH PVDG "West_Hills,CA" +34.18720 -118.63800 53D4 NNX2 "West_Memphis,AR" +35.14670 -90.17670 7GJQ NTQ0 "West_Palm_Beach,FL" +26.71670 -80.05330 89V0 MFKH "Westbrook,ME" +43.67670 -70.36330 942Q Q8CH "Westerly,RI" +41.41700 -71.83300 90DH PW2J "Westland,MI" +42.29670 -83.38670 81HZ Q1GH "Westminster,CA" +33.77500 -117.99300 550H NLV7 "Westminster,CO" +39.83000 -105.03300 67DH PM4H "Westminster,MD" +38.56110 -76.99440 8KHD PDS4 "Westover_AFB,MA" +42.20000 -72.53330 8XN0 Q100 "Weymouth,MA" +42.22170 -70.96500 92KL Q137 "Wheaton,MD" +39.08300 -77.08300 8K8R PHDF "Wheeler_AFB,HI" +21.48472 -158.04000 1SW0 LKDP "Wheeling,WV" +40.06750 -80.72220 885T PNB3 "Whenuapai,New_Zealand" -36.78330 +174.63330 ZJKG 8V2H "Whidbey_Is.,WA" +48.30000 -122.65000 4RC7 R1H0 "White_Plains,NY" +41.03330 -73.76330 8TKQ PT4Z "Whitehorse,Yukon" +60.71700 -135.06700 3Q9Z T3KJ "Whittier,CA" +33.96670 -118.04200 54VT NMT0 "Wichita_Falls,TX" +33.90940 -98.49110 6RR5 NMJD "Wichita,KS" +37.69170 -97.33780 6VMM P8FQ "Wickenburg,AZ" +33.96700 -112.73300 5L50 NMT1 "Wilder,ID" +43.61050 -116.94200 57MB Q81K "Wilkes-Barre,PA" +41.24220 -75.88800 8N8D PV69 "Willcox,AZ" +32.25000 -109.83300 5TDH NC7H "Williston,ND" +48.14830 -103.62200 6BXB R0Q7 "Wilmington,DE" +39.74610 -75.54750 8P3X PLPW "Wilmington,NC" +34.23670 -77.92330 8H5Q NP5H "Winchester,ID" +46.23300 -116.65000 58C7 QP4X "Winchester,KY" +38.00000 -84.25000 7ZC7 PB00 "Winchester,NH" +42.75000 -72.41700 8XXP Q3QH "Winchester,VA" +39.16700 -78.16700 8GKG PHT1 "Windam,CT" +41.75000 -72.08300 8ZRR PXQH "Windsor,ON" +42.28300 -82.96700 82KG Q1DF "Winnemucca,NV" +40.10000 -119.11700 5266 PNH0 "Winner,SD" +43.36700 -99.83300 6NDH Q6T1 "Winnett,MT" +47.01700 -108.33300 5Z50 QT2J "Winnfield,LA" +31.93300 -92.65000 78C7 N9MX "Winnipeg,MB" +49.90000 -97.13000 6W57 R9H0 "Winona,MN" +44.05000 -91.66700 7BSZ QB7H "Winona,MS" +33.48300 -89.71700 7HP6 NKDF "Winooski,VT" +44.50000 -73.16700 8W2G QDH0 "Winsted,CT" +41.91700 -73.08300 8W8R PZKJ "Winston-Salem,NC" +36.09780 -80.24500 89CL P0GN "Wolphaartsdijk,Neth." +51.53330 +3.89860 H9QC RKMZ "Woodland_Hills,CA" +34.15030 -118.59000 53HQ NNQJ "Woodsville,NH" +44.16700 -72.00000 9000 QBT1 "Woodward,OK" +36.41700 -99.40000 6PH0 P22J "Woonsocket,RI" +42.00000 -71.50000 917H Q000 "Woonsocket,SD" +44.05000 -98.28300 6S8R QB7H "Worcester,MA" +42.26030 -71.80470 90GM Q191 "Wotje,Marshall_Is." +9.46670 +170.23330 Z5KG JKB0 Wright-Patterson_AFB +39.83330 -84.05000 7ZV7 PM4Z "Wurzburg,Germany" +49.82000 +9.89100 HSPS R930 "Wynnewood,PA" +40.01000 -75.17990 8Q1H PN1H "Wyoming,MI" +42.89670 -85.70670 7TPZ Q4GH "Wytheville,VA" +36.91700 -81.10000 877H P4KJ ------------------------------------------------------------------------ Y City Latitude Longitude NAC "Yakima,WA" +46.59500 -120.51300 4XPH QQZ7 "Yakutat,AK" +59.53300 -139.58300 3C18 SWMX "Yalta,Ukraine" +44.48330 +34.20000 KTH0 QDDG "Yankton,SD" +42.87500 -97.39000 6VHQ Q4C7 "Yap_Island,Micronesia" +9.49750 +138.08940 VH6P JKGL "Yardley,PA" +40.21100 -74.77600 8R1S PP1M "Yellowknife,NWT" +62.48000 -114.42000 5FXH TDD0 "Yonkers,NY" +40.93190 -73.89830 8T7L PSMR "York,PA" +39.95970 -76.72670 8L5G PMRX "Yorktown_Heights,NY" +41.33330 -73.76670 8TKG PVMZ "Youngstown,OH" +41.09920 -80.65050 88C6 PTGV "Yuba_City,CA" +39.13300 -121.63300 4TWH PHMX "Yuma,AZ" +32.71500 -114.62300 5FF8 NFK7 "Yuma,CO" +40.13300 -102.83300 6DWH PNMX ------------------------------------------------------------------------ Z City Latitude Longitude NAC "Zanesville,OH" +39.93830 -82.00830 84ZC PMNQ "Zaragoza,Spain" +41.66670 -1.05000 GWC7 PXB0 "Zurich,Switzerland" +47.36670 +8.53330 HP9Z QVT0 "Zwickau,Germany" +50.70000 +12.50000 J17H RFH0 sunclock-3.57/debian/0000755000000000000000000000000011053561270011401 5ustar sunclock-3.57/debian/changelog0000644000000000000000000003121611053561065013260 0ustar sunclock (3.57-1) unstable; urgency=low * New upstream version 3.57. -- Jean-Pierre Demailly Fri, 22 Aug 2008 16:27:42 +0200 sunclock (3.56-5) unstable; urgency=low * Build-Depends on xutils-dev instead of xutils, because imake was moved (Closes: #485218) * Upgrade to Standards-Version 3.8.0: - Fix Homepage header in control file. * 08_manpage_hyphen.dpatch: Fix hyphen used as minus sign in man page. -- Roland Rosenfeld Sat, 14 Jun 2008 11:46:24 +0200 sunclock (3.56-4) unstable; urgency=low * Migrate all patches to dpatch mechanism. * 06_CET-1CDT: Fix timezones for Budapest, Warsaw, Bratislava and the Torun Radiotelescope from CET-2CDT to CET-1CDT (Closes: #438761). * 07_zlib_largefile_workaround: Workaround for zlib.h bug, which requires _LARGEFILE64_SOURCE if _FILE_OFFSET_BITS is set to 64 (see #439980) (Closes: #438924). -- Roland Rosenfeld Sun, 09 Sep 2007 15:41:54 +0200 sunclock (3.56-3) unstable; urgency=low * Do not strip emx in Imakefile install (Closes: #438076). * Check existence of Makefile instead of avoiding output of make clean. * menu: move from Apps/Tools to Applications/Science/Geoscience. -- Roland Rosenfeld Sat, 18 Aug 2007 14:21:56 +0200 sunclock (3.56-2) unstable; urgency=low * Update debian/watch file. * Update debian/copyright. * Remove $(XLIB) from LOCAL_LIBRARIES in Imakefiles. This removes unnecessary libXext from binaries. -- Roland Rosenfeld Sat, 30 Sep 2006 10:50:42 +0200 sunclock (3.56-1) unstable; urgency=low * New upstream version 3.56. * Avoid compressing MANUAL.emx, because this has to be opened by emx. * Upgrade to debhelper v5. * Upgrade to Standards-Version 3.7.2 (no changes). * Install emx to /usr/share/sunclock/bin and fix all references to this. -- Roland Rosenfeld Sun, 2 Jul 2006 14:20:54 +0200 sunclock (3.54.1-1) unstable; urgency=low * New upstream version 3.54.1. * Again install the emx shared libraries to /usr/share/sunclock/emx instead of /usr/share/editkit. * Ged rid of circular dependency between sunclock and sunclock-maps. sunclock-maps now conflicts with the old version of sunclock, which it was split off, to avoid problems with files moving from one package to the other (Closes: #339927). * Replace Latin1 chars in man page by groff ASCII char names. -- Roland Rosenfeld Sun, 11 Dec 2005 17:52:17 +0100 sunclock (3.54-2) unstable; urgency=low * Add debian/watch with current FTP server. * Correct URL in copyright file. * Stop build-depending on libselinux1-dev but compile with SELINUX_LIBS="" to work around the bug that xutils enables HasSELinux by default, while this program doesn't use it (Closes: #320606). -- Roland Rosenfeld Sun, 31 Jul 2005 13:33:12 +0200 sunclock (3.54-1) unstable; urgency=low * New upstream version 3.54. - Corrects a segmentation fault (Closes: #315462). * No longer depends on xterm because interal emx editor is now used. * Upgrade to Standards-Version 3.6.2: - Install emx (external editor for manual viewing) into /usr/lib/sunclock (instead of /usr/bin). * Add build depenency on libselinux1-dev until xutils is fixed to build packages without HasSELinux again :-( -- Roland Rosenfeld Sat, 30 Jul 2005 13:40:02 +0200 sunclock (3.53-1) unstable; urgency=low * New upstream version 3.53. -- Roland Rosenfeld Thu, 3 Feb 2005 16:54:28 +0100 sunclock (3.52-2) unstable; urgency=low * sunclock-maps now Replaces sunclock (<< 3.50pre1-3), because older versions of sunclock contained files, which are now in sunclock-maps. (Closes: #278169) -- Roland Rosenfeld Mon, 25 Oct 2004 20:06:09 +0200 sunclock (3.52-1) unstable; urgency=low * New upstream version 3.52. -- Roland Rosenfeld Mon, 11 Oct 2004 13:54:23 +0200 sunclock (3.51-1) unstable; urgency=low * New upstream version 3.51. * Add build-dependency on libpng12-dev. * Replace hyphens (-) by minus signs (\-) in man page. -- Roland Rosenfeld Fri, 27 Aug 2004 19:28:57 +0200 sunclock (3.50pre1-3) unstable; urgency=low * Add Homepage URL to package description. * Rename Swedish i18n file from Sunclock.se to Sunclock.sv (Closes: #240743). * Upgrade to Standards-Version 3.6.1 (no changes). * Build-Depend on libx11-dev, libxpm-dev, libxext-dev instead of xlibs-dev. * Quote section title in menu entry. * Use full color icons for the menu entry and add icon16x16 and icon32x32 entries. * Split earthmaps into architecture independent package sunclock-maps. -- Roland Rosenfeld Sat, 10 Apr 2004 21:28:22 +0200 sunclock (3.50pre1-2) unstable; urgency=low * Disable #ifdef HParchitecture in Imakefile, which causes trouble on HPPA. -- Roland Rosenfeld Wed, 26 Feb 2003 21:37:43 +0100 sunclock (3.50pre1-1) unstable; urgency=low * New upstream version 3.50pre1. * The new upstream package doesn't talk about Mercator (Closes: #102869). * Remove empty dir /usr/share/lintian/overrides. * Upgrade to Standards-Version 3.5.8: - remove support for DEB_BUILD_OPTION "debug" - add support for DEB_BUILD_OPTION "noopt" * Upgrade to debhelper >=4 and use debian/compat instead of DH_COMPAT. - removed debian/conffiles. - updated debian/rules according to debhelper example. * Install new icon sunclock2.xpm (and create a cmap.xpm color version for menu). * Move XPMs from /usr/X11R6/include/X11/pixmaps to /usr/share/pixmaps. -- Roland Rosenfeld Sun, 23 Feb 2003 17:04:15 +0100 sunclock (3.46-1) unstable; urgency=low * New upstream version 3.46. * Remove dh_testversion from debian/rules (use build-deps instead). * Comment out special rules for HPArchitecture from Imakefile, because they cause problems on hppa (Closes: #105070). -- Roland Rosenfeld Sun, 15 Jul 2001 13:18:45 +0200 sunclock (3.40.010514-1) unstable; urgency=low * New upstream version 3.40 (2nd release, don't ask me why upstream didn't use a new version number). * This upstream release should solve the problem with enlightenment (Closes: #96214). * Remove dh_testversion from debian/rules (use build-depends instead) -- Roland Rosenfeld Mon, 14 May 2001 18:37:23 +0200 sunclock (3.40-1) unstable; urgency=low * New upstream version 3.40. * Remove debian/sunclock_help* (no longer used upstream). * Change HELPCOMMAND from xterm to x-terminal-emulator. -- Roland Rosenfeld Sun, 13 May 2001 21:12:45 +0200 sunclock (3.38-2) unstable; urgency=low * Comment out caida.jpg mapimage from Sunclockrc, because this isn't included in the Debian package. -- Roland Rosenfeld Sun, 6 May 2001 18:57:49 +0200 sunclock (3.38-1) unstable; urgency=low * New upstream version 3.38. * Modify sunclock_help to use x-terminal-emulator instead of xterm. * Add a man page for sunclock_help. * Use dh_installman instead of dh_installmanpages in debian/rules. * Remove test for nostrip in DEB_BUILD_OPTIONS, since this is handled by debhelper >=2.1.6 internally. * Remove dh_suidregister from debian/rules and upgrade Standards-Version to 3.5.2. -- Roland Rosenfeld Tue, 17 Apr 2001 19:53:55 +0200 sunclock (3.37-1) unstable; urgency=low * New upstream version 3.37. -- Roland Rosenfeld Sat, 14 Apr 2001 15:44:30 +0200 sunclock (3.34-1) unstable; urgency=low * New upstream version 3.34. -- Roland Rosenfeld Sat, 31 Mar 2001 11:31:49 +0200 sunclock (3.33-1) unstable; urgency=low * New upstream version 3.33. -- Roland Rosenfeld Wed, 21 Mar 2001 19:15:44 +0100 sunclock (3.32-1) unstable; urgency=low * New upstream version 3.32. * override.Lintian removed because the signature of VMF files is changes to %!VMF -- Roland Rosenfeld Tue, 20 Mar 2001 18:56:28 +0100 sunclock (3.31-1) unstable; urgency=low * New upstream version 3.31. * s/MANPATH/MANDIR/ in debian/rules. -- Roland Rosenfeld Mon, 5 Mar 2001 20:00:14 +0100 sunclock (3.30-2) unstable; urgency=low * Add missing build-dependency to libjpeg62-dev (Closes: #88094). -- Roland Rosenfeld Thu, 1 Mar 2001 19:16:24 +0100 sunclock (3.30-1) unstable; urgency=low * New upstream version 3.30. * Move Sunclockrc from /usr/share/sunclock to /etc. * Create override.Lintian to avoid lintian errors, which thinks that the new VMF file format is some kind of shell interpreter. -- Roland Rosenfeld Tue, 27 Feb 2001 18:42:58 +0100 sunclock (3.28-1) unstable; urgency=low * New upstream version 3.28. -- Roland Rosenfeld Wed, 17 Jan 2001 18:46:58 +0100 sunclock (3.27-1) unstable; urgency=low * New upstream version 3.27. -- Roland Rosenfeld Sat, 30 Dec 2000 11:09:38 +0100 sunclock (3.26-1) unstable; urgency=low * New upstream version 3.26. * Add xutils to Build-Depends, because xmkmf and mkdirhier are used. * Add "Suggests: imagemagick", because convert(1) can be used to load various formats of earth maps. -- Roland Rosenfeld Thu, 21 Dec 2000 18:30:43 +0100 sunclock (3.21-2) unstable; urgency=low * Applied patch from upstream author to avoid maxint as the distance from one position to the same position. * Remove symlink removal hack, which isn't needed with xlibs-dev (>=4.0.1-11). Changed Build-Depends accordingly. -- Roland Rosenfeld Sat, 16 Dec 2000 14:09:58 +0100 sunclock (3.21-1) unstable; urgency=low * New upstream version 3.21. * New XFree86 4.0 policy: - Recompile with app-defaults installed in /etc/X11 (needs some workarounds in debian/rules). - Change Build-Depends from xlib6g-dev to xlibs. - Make /etc/X11/app-defaults/Sunclock a conffile. - Remove symlink /usr/X11R6/lib/X11/app-defaults -> ../../../.././etc/X11/app-defaults which is created by imake, but is completely useless. -- Roland Rosenfeld Tue, 5 Dec 2000 17:47:26 +0100 sunclock (3.13-1) unstable; urgency=low * New upstream version. -- Roland Rosenfeld Fri, 27 Oct 2000 11:15:30 +0200 sunclock (3.12-1) unstable; urgency=low * New upstream version. -- Roland Rosenfeld Tue, 10 Oct 2000 13:00:43 +0200 sunclock (3.11-1) unstable; urgency=low * New upstream version. -- Roland Rosenfeld Mon, 9 Oct 2000 12:35:59 +0200 sunclock (3.10-1) unstable; urgency=low * New upstream version. * Fix problem with setting TZ environment variable (unsetting is correct upstream). -- Roland Rosenfeld Wed, 4 Oct 2000 11:50:06 +0200 sunclock (3.04-1) unstable; urgency=low * New upstream version. * Fix problem with setting TZ environment variable. -- Roland Rosenfeld Sun, 10 Sep 2000 23:04:54 +0200 sunclock (3.02-1) unstable; urgency=low * New upstream version (by new upstream maintainer). * Upgrade to Standards-Version 3.2.1: - Evaluate DEB_BUILD_OPTIONS for -g and strip. - Move binary and manpage from /usr/X11R6/* to /usr/*. * Upgrade to new debhepler: - Change to DH_COMPAT=2. - Add some dh_* calls to debian/rules. -- Roland Rosenfeld Mon, 4 Sep 2000 20:39:19 +0200 sunclock (1.5-3) unstable; urgency=low * Added hints to menu file (Closes: #52007). * Added icon and mini-icon (to menu file). * Upgrade to Standards version 3.1.0: Add Build-Depends. -- Roland Rosenfeld Mon, 6 Dec 1999 10:38:55 +0100 sunclock (1.5-2) unstable; urgency=low * Upgrade to Debian Standards version 3.0.1. * Recompiled with libc6 2.1 and xfree86 3.3.5. -- Roland Rosenfeld Wed, 6 Oct 1999 09:37:12 +0200 sunclock (1.5-1) unstable; urgency=low * New upstream version. -- Roland Rosenfeld Wed, 7 Apr 1999 22:10:57 +0200 sunclock (1.4-2) unstable; urgency=low * Fix string function declarations for glibc2.1 (fixes #30406). Thanks to Christian Meder who provided the patch. * Upgraded Standards-Version to 2.5.0.0 (no changes). * Removed the -Wall warnings (no real problems). -- Roland Rosenfeld Sun, 6 Dec 1998 18:21:50 +0100 sunclock (1.4-1) unstable; urgency=low * Initial Release. -- Roland Rosenfeld Fri, 23 Oct 1998 17:14:14 +0200 sunclock-3.57/debian/copyright0000644000000000000000000001115511053557324013344 0ustar This package was debianized by Roland Rosenfeld on Fri, 23 Oct 1998 17:14:14 +0200. It was downloaded from ftp://ftp.x.org/contrib/applications/sunclock-1.4.tar.gz ftp://ftp.dent.med.uni-muenchen.de/pub/wmglo/sunclock-1.5.tar.gz ftp://ftp.ac-grenoble.fr/ge/geosciences/sunclock/sunclock-3.57.tar.bz2 Upstream Author: John Mackin Upstream maintainer: Jean-Pierre Demailly Copyright: /***************************************************************************** * * Sun clock version 3.xx by Jean-Pierre Demailly * * Is derived from the previous versions whose notices appear below. * See CHANGES for more explanation on the (quite numerous changes and * improvements). Version 3.xx is now published under the GPL. */ /***************************************************************************** * * Sun clock. X11 version by John Mackin. * * This program was derived from, and is still in part identical with, the * Suntools Sun clock program whose author's comment appears immediately * below. Please preserve both notices. * * The X11R3/4 version of this program was written by John Mackin, at the * Basser Department of Computer Science, University of Sydney, Sydney, * New South Wales, Australia; . This program, like * the one it was derived from, is in the public domain: `Love is the * law, love under will.' */ /***************************************************************************** Sun clock Designed and implemented by John Walker in November of 1988. Version for the Sun Workstation. The algorithm used to calculate the position of the Sun is given in Chapter 18 of: "Astronomical Formulae for Calculators" by Jean Meeus, Third Edition, Richmond: Willmann-Bell, 1985. This book can be obtained from: Willmann-Bell P.O. Box 35025 Richmond, VA 23235 USA Phone: (804) 320-7016 This program was written by: John Walker Autodesk, Inc. 2320 Marinship Way Sausalito, CA 94965 USA Fax: (415) 389-9418 Voice: (415) 332-2344 Ext. 2829 Usenet: {sun,well,uunet}!acad!kelvin or: kelvin@acad.uu.net modified for interactive maps by Stephen Martin Fujitsu Systems Business of Canada smartin@fujitsu.ca This program is in the public domain: "Do what thou wilt shall be the whole of the law". I'd appreciate receiving any bug fixes and/or enhancements, which I'll incorporate in future versions of the program. Please leave the original attribution information intact so that credit and blame may be properly apportioned. */ readgif.c: /* +-------------------------------------------------------------------+ */ /* | Copyright 1990, 1991, 1993 David Koblas. | */ /* | Copyright 1996 Torsten Martinsen. | */ /* | Permission to use, copy, modify, and distribute this software | */ /* | and its documentation for any purpose and without fee is hereby | */ /* | granted, provided that the above copyright notice appear in all | */ /* | copies and that both that copyright notice and this permission | */ /* | notice appear in supporting documentation. This software is | */ /* | provided "as is" without express or implied warranty. | */ /* +-------------------------------------------------------------------+ */ readpng.c: /* +-------------------------------------------------------------------+ */ /* | This file is derived from | */ /* | Xpaint's readPNG routines, copyrighted | */ /* | by Greg Roelofs (newt@pobox.com) | */ /* | | */ /* | Permission to use, copy, modify, and to distribute this software | */ /* | and its documentation for any purpose is hereby granted without | */ /* | fee, provided that the above copyright notice appear in all | */ /* | copies and that both that copyright notice and this permission | */ /* | notice appear in supporting documentation. There is no | */ /* | representations about the suitability of this software for | */ /* | any purpose. this software is provided "as is" without express | */ /* | or implied warranty. | */ /* | | */ /* +-------------------------------------------------------------------+ */ The complete GPL can be found in /usr/share/common-licenses/GPL. sunclock-3.57/debian/dirs0000644000000000000000000000010410501252435012255 0ustar etc usr/share/pixmaps usr/share/sunclock/bin usr/share/doc/sunclock sunclock-3.57/debian/compat0000644000000000000000000000000210501244214012570 0ustar 5 sunclock-3.57/debian/sunclock-menu.xpm0000644000000000000000000000276307721065353014732 0ustar /* XPM */ static char *sunclock[] = { /* columns rows colors chars-per-pixel */ "32 32 18 1", " c black", ". c #191919", "X c gray20", "o c #00007f", "O c #007f00", "+ c #007f7f", "@ c #7f007f", "# c #7f7f00", "$ c #4c4c4c", "% c #666667", "& c gray50", "* c blue", "= c green", "- c yellow", "; c gray60", ": c #b2b2b2", "> c gray90", ", c white", /* pixels */ "o$@oXXo..o..o...o..o..... ", "ooo$oX.oXooXo.X.....o.......... ", "$$ooooXooXoXX,,,o.o.X..oo.. .. ", "ooo$$XoXXo$o,oXo,.oX.o.....o... ", "o@@*o$oooo%,ooXo..XXo...o..o... ", "oo+o*$@X$oo,$$oXooo..oo.....o . ", "*%@+ooo$o$@o,oXo$o$XooXX.o..o.o ", "*o*o%$ooo$oXo,,ooXooXX.ooXo.....", "&@*+*%o@*@ooooo,,oo$,oXo,XX,,,,.", "*o@*oo%oo+*%%o$oo,$o,XoX,o.,o.,.", "*@o**$o@$*o%%oo@X,Xo,XXo,oX,.o,.", "***%%*o+*o,ooo$oo,oX,ooX,Xo,X.,.", "&*@o*****@@,o$o,,oo$X,o,o@o,oo,.", "&****--#-**o,,,,o$Xoo,,,XoX,oX,.", "*&*---;---#+*+*X*Xo@$ooXoXXX.o..", "**:------:-;*@*$$ooXoo$oXooXo$oo", "**-------#---**&*&*X%$oX***&%%O&", "*-;-;#-----:--**o**o***%&#$%%O&=", "---#-#-;;----;-*;****+#%#=&==##%", "O$,,,,=#+,=#+#O,+#;#%,,,+#,%%%,=", "&,,%%=,+#,#%&#,,,%%%,#%=+#,=%,%#", "=,+#%%%#+,%=O,+##,=%,+%%#%,#=,#+", "#,#=#=&=#,#=#,%&+,%#,%==+#,%,==&", ",+#&%=%#+,%&+,#=#,=%,#%#&=,,,#+#", ",%+#=#=&=,$+#,+#O,#+,&+#&=,#,#=&", ",=#%%%=%$,%#%,#&&,&#,=#%%#,%,++#", ",%O%=%%%#,%&=,#==,=%,#%=%#,=#,#&", ",#&=%%=#%,==%,+##,%#,+&==%,%+,%=", "%,#+#=&&#,%##,&=%,%#,#%#=%,+##,+", "#,=#+##=+,=%+,%#=,#+,+=%&#,#=&,#", "=,>%=#,%#,=%=,O&#,=%,#=##=,%%=O,", "#%,,,,&O%,,,#%,,,%=%%,,,%%,=%#%," }; sunclock-3.57/debian/watch0000644000000000000000000000023610514171537012437 0ustar # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 ftp://ftp.ac-grenoble.fr/ge/geosciences/sunclock/sunclock-([0-9.]*).tar.bz2 sunclock-3.57/debian/sunclock-maps.dirs0000644000000000000000000000002310201644052015030 0ustar usr/share/sunclock sunclock-3.57/debian/docs0000644000000000000000000000010210273430111012235 0ustar README README_pl TODO coordinates.txt MESSAGE MESSAGE.old VMF.txt sunclock-3.57/debian/patches/0000755000000000000000000000000011053555555013041 5ustar sunclock-3.57/debian/patches/00list0000644000000000000000000000030311053555555014073 0ustar 01_emx_directory.dpatch 02_docdir.dpatch 03_remove_libXext.dpatch 04_dont_strip_emx.dpatch 05_rename_manual.dpatch 06_CET-1CDT.dpatch 07_zlib_largefile_workaround.dpatch 08_manpage_hyphen.dpatch sunclock-3.57/debian/patches/04_dont_strip_emx.dpatch0000755000000000000000000000137111053555555017574 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 04_dont_strip_emx.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Do not strip emx in Imakefile install (Closes: #438076). @DPATCH@ diff -urNad sunclock~/Imakefile sunclock/Imakefile --- sunclock~/Imakefile +++ sunclock/Imakefile @@ -83,7 +83,7 @@ $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/earthmaps/vmf cd vmf ; rm -f *~ ; cp -f * $(DESTDIR)$(SHAREDIR)/earthmaps/vmf $(MKDIRHIER) $(DESTDIR)$(LIBDIR) - install -c -s editkit/emx $(DESTDIR)$(LIBDIR)/ + install -c editkit/emx $(DESTDIR)$(LIBDIR)/ $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/editkit cd editkit ; install -c -m 444 rc.example README MANUAL.emacs \ $(DESTDIR)$(SHAREDIR)/editkit sunclock-3.57/debian/patches/03_remove_libXext.dpatch0000755000000000000000000000226411053555555017533 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 03_remove_libXext.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: remove $(XLIB) from LOCAL_LIBRARIES in Imakefiles. This removes ## DP: unnecessary libXext from binaries. @DPATCH@ diff -urNad sunclock~/Imakefile sunclock/Imakefile --- sunclock~/Imakefile +++ sunclock/Imakefile @@ -58,7 +58,7 @@ readvmf.c readxpm.c readgif.c readjpeg.c readpng.c OBJS=sunclock.o astro.o widgets.o tildepath.o dirlist.o \ readvmf.o readxpm.o readgif.o readjpeg.o readpng.o -LOCAL_LIBRARIES=$(XLIB) $(XPMLIBDIR) -lXpm $(ZLIBDIR) -lz \ +LOCAL_LIBRARIES=$(XPMLIBDIR) -lXpm $(ZLIBDIR) -lz \ $(JLIBDIR) -ljpeg -lpng -lm DEPLIBS= # I don't know what I'm doing, and I hate imake! diff -urNad sunclock~/editkit/Imakefile sunclock/editkit/Imakefile --- sunclock~/editkit/Imakefile +++ sunclock/editkit/Imakefile @@ -35,7 +35,7 @@ CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" -DDOCDIR="\"$(DOCDIR)\"" -LOCAL_LIBRARIES=$(XLIB) +LOCAL_LIBRARIES=-lX11 DEPLIBS= # I don't know what I'm doing, and I hate imake! SRCS=x11.c sunclock-3.57/debian/patches/01_emx_directory.dpatch0000755000000000000000000000500011053555555017401 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 01_emx_directory.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Place emx in LIBDIR instead of SHAREDIR @DPATCH@ diff -urNad sunclock~/Imakefile sunclock/Imakefile --- sunclock~/Imakefile +++ sunclock/Imakefile @@ -10,6 +10,9 @@ XCOMM Name of share subdirectory of DESTDIR: SHAREDIR=/share/sunclock +XCOMM Name of library subdirectory of DESTDIR: +LIBDIR=/lib/sunclock + XCOMM Name of DOCDIR's subdirectories of DESTDIR: DOCDIR=/X11R6/lib/X11/doc DOCHTMLDIR=/X11R6/lib/X11/doc/html @@ -48,7 +51,7 @@ #ZLIBDIR=-L/usr/lib #JINC=-I/usr/include -CCOPTIONS=-O -DZLIB -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" +CCOPTIONS=-O -DZLIB -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" -DLIBDIR=\"$(DESTDIR)$(LIBDIR)\" #endif SRCS=sunclock.c astro.c widgets.c tildepath.c dirlist.c \ @@ -64,7 +67,7 @@ all:: cd editkit ; xmkmf ; make emx \ DESTDIR=$(DESTDIR) \ - BINDIR=$(SHAREDIR)/bin \ + BINDIR=$(LIBDIR)/bin \ MANDIR=$(SHAREDIR)/editkit \ SHAREDIR=$(DESTDIR)$(SHAREDIR)/editkit @@ -78,8 +81,8 @@ cd i18n ; rm -f *~ ; cp -f Sunclock.* $(DESTDIR)$(SHAREDIR)/i18n $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/earthmaps/vmf cd vmf ; rm -f *~ ; cp -f * $(DESTDIR)$(SHAREDIR)/earthmaps/vmf - $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/bin - install -c -s editkit/emx $(DESTDIR)$(SHAREDIR)/bin + $(MKDIRHIER) $(DESTDIR)$(LIBDIR) + install -c -s editkit/emx $(DESTDIR)$(LIBDIR)/ $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/editkit cd editkit ; install -c -m 444 rc.example README MANUAL.emacs \ $(DESTDIR)$(SHAREDIR)/editkit diff -urNad sunclock~/sunclock.h sunclock/sunclock.h --- sunclock~/sunclock.h +++ sunclock/sunclock.h @@ -18,7 +18,7 @@ #include #include "version.h" -#define EDITORCOMMAND SHAREDIR"/bin/emx -edit 0 -fn 9x15" /* Default text editor */ +#define EDITORCOMMAND LIBDIR"/emx -edit 0 -fn 9x15" /* Default text editor */ #define FAILFONT "fixed" /* num of bitmaps to accomodate 1 mark and 2 spatial objets (Sun, Moon) */ diff -urNad sunclock~/sunclock.man sunclock/sunclock.man --- sunclock~/sunclock.man +++ sunclock/sunclock.man @@ -511,7 +511,7 @@ .BI "\-editorcommand " string Specify an external file editor program that will be called through keyboard shortcut double 'h' (call help). Default is -"/usr/share/sunclock/bin/emx \-edit 0 \-fn 9x15" +"/usr/lib/sunclock/emx \-edit 0 \-fn 9x15" (included emx editor, in no-edit mode...) .TP .BI "\-jump " "number[unit] (where unit=s,m,h,d,M,Y)" sunclock-3.57/debian/patches/08_manpage_hyphen.dpatch0000755000000000000000000000252711053555555017531 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 08_manpage_hyphen.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Fix hyphen used as minus sign in man page. @DPATCH@ diff -urNad sunclock~/sunclock.man sunclock/sunclock.man --- sunclock~/sunclock.man +++ sunclock/sunclock.man @@ -625,7 +625,7 @@ .BI "\-citycategories " value Specifies the maximal number of city categories: categories range from 1 (highest catgory, i.e. major city) to some maximum number. The option --citycategories specifies that maximum number. It can only be used +\-citycategories specifies that maximum number. It can only be used at start-up, not at runtime. The default value is 5. .TP .BI "\-spotsizes " "s1|s2|s3|... (0<=si<=5, 1<=i<=citycategories)" @@ -635,7 +635,7 @@ the corresponding category of cities (rank i) will not be displayed. If there are less data than the number of city categories (5 by default), the last given data is repeated as many times as needed, e.g. --spotsizes 2 is equivalent to \-spotsizes 2|2|2|2|2. +\-spotsizes 2 is equivalent to \-spotsizes 2|2|2|2|2. Example: specifying \-spotsizes 0|2|0|3|0 will let appear only city categories 2 and 4, but those of category 4 will appear with the symbol normally allocated to cities of category 3. This is useful in combination sunclock-3.57/debian/patches/07_zlib_largefile_workaround.dpatch0000755000000000000000000000114011053555555021760 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 07_zlib_largefile_workaround.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Workaround for zlib.h bug, which requires _LARGEFILE64_SOURCE if ## DP: _FILE_OFFSET_BITS is set to 64 (see #439980) (Closes: #438924) @DPATCH@ diff -urNad sunclock~/readvmf.c sunclock/readvmf.c --- sunclock~/readvmf.c +++ sunclock/readvmf.c @@ -28,6 +28,9 @@ #include #include #ifdef ZLIB +# if _FILE_OFFSET_BITS == 64 +# undef _FILE_OFFSET_BITS +# endif #include #endif sunclock-3.57/debian/patches/06_CET-1CDT.dpatch0000755000000000000000000000447011053555555015647 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 06_CET-1CDT.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Fix timezones for Budapest, Warsaw, Bratislava and the Torun ## DP: Radiotelescope from CET-2CDT to CET-1CDT (Closes: #438761). @DPATCH@ diff -urNad sunclock~/Sunclockrc sunclock/Sunclockrc --- sunclock~/Sunclockrc +++ sunclock/Sunclockrc @@ -66,14 +66,14 @@ addcity 2|Rome|41.867|12.617|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Madrid|40.417|-3.700|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Athens|37.967|23.733|EET-2EETDST,M3.5.0,M10.5.0 -addcity 2|Budapest|47.433|19.250|CET-2CDT,M3.5.0,M10.5.0 +addcity 2|Budapest|47.433|19.250|CET-1CDT,M3.5.0,M10.5.0 addcity 2|Sofia|42.667|23.300|EET-3EDT,M3.5.0,M10.5.0 addcity 2|Reykjavik|64.130|-21.937|GMT0 addcity 2|Oslo|59.917|10.750|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Stockholm|59.583|18.100|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Helsinki|60.167|24.883|EET-2EETDST,M3.5.0,M10.5.0 addcity 2|Geneva|46.233|6.067|MET-1METDST,M3.5.0,M10.5.0 -addcity 2|Warsaw|52.583|21.083|CET-2CDT,M3.5.0,M10.5.0 +addcity 2|Warsaw|52.583|21.083|CET-1CDT,M3.5.0,M10.5.0 addcity 2|SaintPetersburg|59.950|30.333|MSK-3MSD,M3.5.0/2:00,M10.5.0/3:00 addcity 2|Tashkent|41.333|69.300|UZT-5 addcity 2|Alma-Ata|43.230|76.880|ALMT-6ALMST,M3.5.0/0:00,M10.5.0/0:00 @@ -175,7 +175,7 @@ addcity 3|Bordeaux|44.833|-0.583|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Boston|42.357|-71.057|EST5EDT addcity 3|BowlingGreen|36.995|-86.442|CST6CDT -addcity 3|Bratislava|48.167|17.117|CET-2CDT,M3.5.0,M10.5.0 +addcity 3|Bratislava|48.167|17.117|CET-1CDT,M3.5.0,M10.5.0 addcity 3|Brattleboro|42.852|-72.563|EST5EDT addcity 3|Brest|48.383|-4.483|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Bridgeport|41.180|-73.189|EST5EDT @@ -546,7 +546,7 @@ addcity 4|SpaceTelescopeScienceInst.|39.300|-76.617|EST5EDT addcity 4|SpecialAstrophysicalObs.|43.650|41.433|MSK-3MSD,M3.5.0,M10.5.0 addcity 4|TelescopioNazionaleGalileo|28.767|-17.883|AST1ADT,M3.5.0,M10.5.0 -addcity 4|TorunRadiotelescope|52.911|18.564|CET-2CDT,M3.5.0,M10.5.0 +addcity 4|TorunRadiotelescope|52.911|18.564|CET-1CDT,M3.5.0,M10.5.0 addcity 4|TorusObservatory|47.183|-122.132|PST8PDT addcity 4|U.S.NavalObservatory|38.917|-77.067|MST7 addcity 4|UnitedKingdomInfraredTel.(UKIRT)|19.833|-155.467|HST10 sunclock-3.57/debian/patches/02_docdir.dpatch0000755000000000000000000000411011053555555015772 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 02_docdir.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Place MANUAL.emacs in DOCDIR instead of SHAREDIR @DPATCH@ diff -urNad sunclock~/Imakefile sunclock/Imakefile --- sunclock~/Imakefile +++ sunclock/Imakefile @@ -69,7 +69,8 @@ DESTDIR=$(DESTDIR) \ BINDIR=$(LIBDIR)/bin \ MANDIR=$(SHAREDIR)/editkit \ - SHAREDIR=$(DESTDIR)$(SHAREDIR)/editkit + SHAREDIR=$(DESTDIR)$(SHAREDIR)/editkit \ + DOCDIR=$(DOCDIR) install.man:: if [ -r $(DESTDIR)$(MANDIR)/sunclock.1x.gz ] ; \ diff -urNad sunclock~/editkit/Imakefile sunclock/editkit/Imakefile --- sunclock~/editkit/Imakefile +++ sunclock/editkit/Imakefile @@ -33,7 +33,7 @@ XCOMM Compile options: XCOMM -CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" +CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" -DDOCDIR="\"$(DOCDIR)\"" LOCAL_LIBRARIES=$(XLIB) DEPLIBS= # I don't know what I'm doing, and I hate imake! diff -urNad sunclock~/editkit/edit.c sunclock/editkit/edit.c --- sunclock~/editkit/edit.c +++ sunclock/editkit/edit.c @@ -802,9 +802,9 @@ #ifdef EXTHELP char name[NLEN]; #ifdef EMACS - sprintf(name, "%s/%s", SHAREDIR, "MANUAL.emacs"); + sprintf(name, "%s/%s", DOCDIR, "MANUAL.emacs"); #else - sprintf(name, "%s/%s", SHAREDIR, "MANUAL.wordstar"); + sprintf(name, "%s/%s", DOCDIR, "MANUAL.wordstar"); #endif new_edit(name); #else diff -urNad sunclock~/editkit/x11_bind_em.c sunclock/editkit/x11_bind_em.c --- sunclock~/editkit/x11_bind_em.c +++ sunclock/editkit/x11_bind_em.c @@ -81,7 +81,7 @@ switch(key) { case XK_Tab : word_mark(); break; /* ^Tab mark cursor word */ #ifndef MINIMAL - case XK_F1 : new_edit(SHAREDIR"/MANUAL.emacs"); break; /* ^F1 open emx Manual */ + case XK_F1 : new_edit(DOCDIR"/MANUAL.emacs"); break; /* ^F1 open emx Manual */ #endif case XK_F9 : new_edit(""); break; /* ^F3 open new emx */ case XK_Home : top(); break; /* ^Home bof */ sunclock-3.57/debian/patches/05_rename_manual.dpatch0000755000000000000000000000216411053555555017344 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 05_rename_manual.dpatch by Roland Rosenfeld ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: rename MANUAL.emacs to MANUAL.emx @DPATCH@ diff -urNad sunclock~/editkit/edit.c sunclock/editkit/edit.c --- sunclock~/editkit/edit.c +++ sunclock/editkit/edit.c @@ -802,7 +802,7 @@ #ifdef EXTHELP char name[NLEN]; #ifdef EMACS - sprintf(name, "%s/%s", DOCDIR, "MANUAL.emacs"); + sprintf(name, "%s/%s", DOCDIR, "MANUAL.emx"); #else sprintf(name, "%s/%s", DOCDIR, "MANUAL.wordstar"); #endif diff -urNad sunclock~/editkit/x11_bind_em.c sunclock/editkit/x11_bind_em.c --- sunclock~/editkit/x11_bind_em.c +++ sunclock/editkit/x11_bind_em.c @@ -81,7 +81,7 @@ switch(key) { case XK_Tab : word_mark(); break; /* ^Tab mark cursor word */ #ifndef MINIMAL - case XK_F1 : new_edit(DOCDIR"/MANUAL.emacs"); break; /* ^F1 open emx Manual */ + case XK_F1 : new_edit(DOCDIR"/MANUAL.emx"); break; /* ^F1 open emx Manual */ #endif case XK_F9 : new_edit(""); break; /* ^F3 open new emx */ case XK_Home : top(); break; /* ^Home bof */ sunclock-3.57/debian/control0000644000000000000000000000316311053556547013022 0ustar Source: sunclock Section: x11 Priority: optional Maintainer: Roland Rosenfeld Standards-Version: 3.8.0 Build-Depends: debhelper (>= 5), libx11-dev, libxpm-dev, xutils-dev, libjpeg62-dev, zlib1g-dev, libpng12-dev, dpatch Homepage: http://www.arvernes.com/wiki/index.php/Sunclock Package: sunclock Architecture: any Depends: ${shlibs:Depends}, sunclock-maps Suggests: imagemagick Description: fancy clock showing time and geographical data sunclock is an X11 application that displays a map of the Earth and indicates the illuminated portion of the globe by drawing sunlit areas dark on light, night areas as light on dark. In addition to providing local time for the default timezone, it also displays GMT time, legal and solar time of major cities, their latitude and longitude, and the mutual distances of arbitrary locations on Earth. Sunclock can display meridians, parallels, tropics and arctic circles. It has builtin functions that accelerate the speed of time and show the evolution of seasons. Package: sunclock-maps Architecture: all Conflicts: sunclock (<< 3.50pre1-3) Replaces: sunclock (<< 3.50pre1-3) Description: sunclock vector graphic maps sunclock is an X11 application that displays a map of the Earth and indicates the illuminated portion of the globe by drawing sunlit areas dark on light, night areas as light on dark. In addition to providing local time for the default timezone, it also displays GMT time, legal and solar time of major cities, their latitude and longitude, and the mutual distances of arbitrary locations on Earth. . This package contains the vector graphic earthmaps. sunclock-3.57/debian/rules0000755000000000000000000000645111053561253012470 0ustar #!/usr/bin/make -f # # (C) 2002-2008 Roland Rosenfeld , based on # Sample debian/rules that uses debhelper. # This file is public domain software, originally written by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # Include dpatch stuff. include /usr/share/dpatch/dpatch.make INSTDIR=`pwd`/debian/sunclock INSTMAPDIR=`pwd`/debian/sunclock-maps OPTIMIZE= ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) OPTIMIZE=-O0 else OPTIMIZE=-O2 endif build: build-stamp build-stamp: dh_testdir xmkmf $(MAKE) CDEBUGFLAGS="$(OPTIMIZE) -Wall -g" \ XAPPLOADDIR=/etc/X11/app-defaults SELINUX_LIBS= \ DOCDIR=/usr/share/doc/sunclock touch build-stamp clean: clean1 unpatch clean1: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) clean rm -f Makefile Makefile.bak dh_clean install: build-stamp dh_testdir dh_testroot dh_clean -k dh_installdirs $(MAKE) install install.man DESTDIR=$(INSTDIR)/usr \ BINDIR=/bin MANDIR=/share/man/man1 MANSUFFIX=1 \ DOCDIR=/usr/share/doc/sunclock # install emx documentation mv $(INSTDIR)/usr/share/sunclock/editkit/README \ $(INSTDIR)/usr/share/doc/sunclock/README.emx mv $(INSTDIR)/usr/share/sunclock/editkit/MANUAL.emacs \ $(INSTDIR)/usr/share/doc/sunclock/MANUAL.emx install -m644 editkit/CHANGELOG \ $(INSTDIR)/usr/share/doc/sunclock/changelog.emx rm -f $(INSTDIR)/usr/share/man/man1/emx.1 # little hack to have Sunclockrc in /etc: # Oddly, Debian seems to prefer having Sunclockrc in /etc ... # mv $(INSTDIR)/usr/share/sunclock/Sunclockrc $(INSTDIR)/etc # (cd $(INSTDIR)/usr/share/sunclock; ln -s /etc/Sunclockrc) # fix name of swedish i18n file: # mv $(INSTDIR)/usr/share/sunclock/i18n/Sunclock.se \ # $(INSTDIR)/usr/share/sunclock/i18n/Sunclock.sv for x in wm_icons/*.xpm; do \ install -m644 $$x $(INSTDIR)/usr/share/pixmaps/; \ done # move maps into sunclock-maps package mv $(INSTDIR)/usr/share/sunclock/earthmaps \ $(INSTMAPDIR)/usr/share/sunclock # dh_install # Build architecture-independent files here. binary-indep: build-stamp install dh_testdir -i dh_testroot -i dh_installchangelogs -i CHANGES dh_installdocs -i dh_installexamples -i # dh_installmenu -i # dh_installdebconf -i # dh_installlogrotate -i # dh_installemacsen -i # dh_installcatalogs -i # dh_installpam -i # dh_installmime -i # dh_installinit -i # dh_installcron -i # dh_installinfo -i # dh_undocumented -i dh_installman -i dh_link -i dh_compress -i dh_fixperms -i # dh_perl -i # dh_python -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i # Build architecture-dependent files here. binary-arch: build-stamp install dh_testdir -a dh_testroot -a dh_installchangelogs -a CHANGES dh_installdocs -a dh_installexamples -a dh_installmenu -a # dh_installdebconf -a # dh_installlogrotate -a # dh_installemacsen -a # dh_installcatalogs -a # dh_installpam -a # dh_installmime -a # dh_installinit -a # dh_installcron -a # dh_installinfo -a # dh_undocumented -a dh_installman -a dh_strip -a dh_link -a dh_compress -a -XMANUAL.emx dh_fixperms -a # dh_perl -a # dh_python -a # dh_makeshlibs -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install patch unpatch \ clean1 sunclock-3.57/debian/menu0000644000000000000000000000055611053555546012307 0ustar ?package(sunclock): \ needs="X11" \ section="Applications/Science/Geoscience" \ title="SunClock" \ longtitle="Sun Clock: Show illuminated portion of Earth" \ command="/usr/bin/sunclock" \ icon32x32="/usr/share/pixmaps/sunclock.xpm" \ icon16x16="/usr/share/pixmaps/mini-sunclock-16x16.xpm" \ icon="/usr/share/pixmaps/sunclock.xpm" \ hints="Clocks,Small,Geo" sunclock-3.57/readjpeg.c0000644000000000000000000001376210140524472012114 0ustar /* +-------------------------------------------------------------------+ */ /* | This file is derived from | */ /* | Xpaint's readJPEG routines, copyrighted | */ /* | by David Koblas (koblas@netcom.com) | */ /* | | */ /* | Permission to use, copy, modify, and to distribute this software | */ /* | and its documentation for any purpose is hereby granted without | */ /* | fee, provided that the above copyright notice appear in all | */ /* | copies and that both that copyright notice and this permission | */ /* | notice appear in supporting documentation. There is no | */ /* | representations about the suitability of this software for | */ /* | any purpose. this software is provided "as is" without express | */ /* | or implied warranty. | */ /* | | */ /* +-------------------------------------------------------------------+ */ #include #include #include #include #include #include #include "sunclock.h" extern Display * dpy; extern Visual * visual; extern Colormap tmp_cmap; extern int scr; extern int bigendian; extern int color_depth; extern int color_pad; extern int bytes_per_pixel; extern int color_alloc_failed; extern int verbose; #define RANGE 252 extern long lr[RANGE], lg[RANGE], lb[RANGE], lnum[RANGE]; extern char * salloc(); extern void fill_line(char *scan, char* c, int w, int zw, int wp, int dx); struct error_mgr { struct jpeg_error_mgr pub; /* "public" fields */ jmp_buf setjmp_buffer; /* for return to caller */ }; typedef struct error_mgr * error_ptr; void error_exit (j_common_ptr cinfo) { /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */ error_ptr err = (error_ptr) cinfo->err; /* Always display the message. */ /* We could postpone this until after returning, if we chose. */ (*cinfo->err->output_message) (cinfo); /* Return control to the setjmp point */ longjmp(err->setjmp_buffer, 1); } int readJPEG(path, Context) char *path; Sundata * Context; { struct jpeg_decompress_struct cinfo; struct error_mgr jerr; FILE *input_file; double ratio; int i, k, l, m, prev, next, size; JSAMPROW scanline[1]; char *scan, *c; char pix[RANGE]; XColor xc; if ((input_file = fopen(path, "r")) == NULL) return 1; cinfo.err = jpeg_std_error(&jerr.pub); jerr.pub.error_exit = error_exit; if (setjmp(jerr.setjmp_buffer)) { /* If we get here, the JPEG code has signaled an error. * We need to clean up the JPEG object, close the input file, * and return. */ jpeg_destroy_decompress(&cinfo); fclose(input_file); Context->xim = 0; return 2; } jpeg_create_decompress(&cinfo); jpeg_stdio_src(&cinfo, input_file); jpeg_read_header(&cinfo, TRUE); if (cinfo.jpeg_color_space == JCS_GRAYSCALE) return 3; ratio = ((double) cinfo.image_width/(double) Context->zoom.width + (double) cinfo.image_height/(double) Context->zoom.height )/1.8; if (ratio>=8.0) cinfo.scale_denom = 8; else if (ratio>=4.0) cinfo.scale_denom = 4; else if (ratio>=2.0) cinfo.scale_denom = 2; else cinfo.scale_denom = 1; jpeg_start_decompress(&cinfo); Context->xim = XCreateImage(dpy, visual, DefaultDepth(dpy, scr), ZPixmap, 0, NULL, Context->geom.width, Context->geom.height, color_pad, 0); XFlush(dpy); if (!Context->xim) return 4; bytes_per_pixel = (Context->xim->bits_per_pixel/8); size = Context->xim->bytes_per_line * Context->geom.height; Context->xim->data = (char *) salloc(size); scan = (char *) salloc(3 * cinfo.output_width * sizeof(char)); if (verbose) fprintf(stderr, "Loading %s\n" "Rescaling JPEG data by 1/%d, " "%d %d --> %d %d, %d bytes per pixel\n", path, cinfo.scale_denom, cinfo.image_width, cinfo.image_height, Context->geom.width, Context->geom.height, bytes_per_pixel); prev = -1; scanline[0] = (JSAMPROW) scan; if (color_depth<=8) for (l=0; lzoom.height)/ (2*(int)cinfo.output_height) - Context->zoom.dy; if (next>=0) { if (next>=Context->geom.height) { next = Context->geom.height - 1; /* get loop to stop at next iteration ! */ cinfo.output_scanline = cinfo.output_height; } for (l = prev+1; l<= next; l++) { c = Context->xim->data + l * Context->xim->bytes_per_line; fill_line(scan, c, Context->geom.width, Context->zoom.width, cinfo.output_width, Context->zoom.dx); } prev = next; } } free(scan); jpeg_destroy_decompress(&cinfo); fclose(input_file); if (jerr.pub.num_warnings > 0) { longjmp(jerr.setjmp_buffer, 1); } if (color_depth<=8) { xc.flags = DoRed | DoGreen | DoBlue; k = 0; for (m=0; mdaypixel[k] = (unsigned char) xc.pixel; ++k; } Context->ncolors = k; for (i=0; ixim->data[i] = pix[(unsigned char)Context->xim->data[i]]; } return 0; } int testJPEG(char *file) { unsigned char buf[2]; FILE *fd = fopen(file, "r"); int ret = 0; if (fd == NULL) return 0; if (2 == fread(buf, sizeof(char), 2, fd)) { if (buf[0] == 0xff && buf[1] == 0xd8) ret = 1; } fclose(fd); return ret; } sunclock-3.57/Imakefile0000644000000000000000000000602311046603137011772 0ustar XCOMM Should install to /usr or /usr/local ?? DESTDIR=/usr XCOMM Name of man subdirectory of DESTDIR: MANDIR=/X11R6/man/man1 XCOMM Name of bin subdirectory of DESTDIR: /X11R6/bin or maybe just /bin BINDIR=/X11R6/bin XCOMM Name of share subdirectory of DESTDIR: SHAREDIR=/share/sunclock XCOMM Name of library subdirectory of DESTDIR: EMXBINDIR=/share/sunclock/bin XCOMM Name of library subdirectory of DESTDIR: LIBDIR=/lib/sunclock XCOMM Name of DOCDIR's subdirectories of DESTDIR: DOCDIR=/X11R6/lib/X11/doc DOCHTMLDIR=/X11R6/lib/X11/doc/html XCOMM XCOMM Compile options: XCOMM XCOMM Set -DNEW_CTIME if using the table-driven version of ctime (i.e., if XCOMM your struct tm contains a tm_zone field), i.e. SunOS 4.1.x. Don't XCOMM define for system V or Solaris XCOMM Pick -O or -g XCOMM #ifdef HPArchitectureAndHPUX XPMLIBDIR=-L/opt/xpm/lib/X11 XPMINC=-I/opt/xpm/include JLIBDIR=-L/opt/jpeg-6/lib ZLIBDIR= JINC=-I/opt/jpeg-6/include CCOPTIONS = -Ae $(XPMINC) $(JINC) -DZLIB -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" #else # SunOS #XPMLIBDIR=-L/usr/X11R6/lib #XPMINC=-I/usr/X11R6/include/X11 #JLIBDIR=-L/usr/lib #ZLIBDIR=-L/usr/lib #JINC=-I/usr/include #CCOPTIONS=-O -DZLIB -DNEW_CTIME -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" # Solaris, Linux #XPMLIBDIR=-L/usr/X11R6/lib #XPMINC=-I/usr/X11R6/include/X11 #JLIBDIR=-L/usr/lib #ZLIBDIR=-L/usr/lib #JINC=-I/usr/include CCOPTIONS=-O -DZLIB -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" -DEMXBINDIR=\"$(DESTDIR)$(EMXBINDIR)\" #endif SRCS=sunclock.c astro.c widgets.c tildepath.c dirlist.c \ readvmf.c readxpm.c readgif.c readjpeg.c readpng.c OBJS=sunclock.o astro.o widgets.o tildepath.o dirlist.o \ readvmf.o readxpm.o readgif.o readjpeg.o readpng.o LOCAL_LIBRARIES=-lX11 $(XPMLIBDIR) -lXpm $(ZLIBDIR) -lz \ $(JLIBDIR) -ljpeg -lpng -lm DEPLIBS= # I don't know what I'm doing, and I hate imake! ComplexProgramTarget(sunclock) all:: cd editkit ; xmkmf ; make emx \ DESTDIR=$(DESTDIR) \ BINDIR=$(EMXBINDIR) \ MANDIR=$(DESTDIR)$(SHAREDIR)/editkit \ SHAREDIR=$(DESTDIR)$(SHAREDIR)/editkit \ DOCDIR=$(DOCDIR) install.man:: if [ -r $(DESTDIR)$(MANDIR)/sunclock.1x.gz ] ; \ then gzip -f $(DESTDIR)$(MANDIR)/sunclock.1x ; fi install:: all install.man $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/i18n cp -f Sunclockrc $(DESTDIR)$(SHAREDIR) cd i18n ; rm -f *~ ; cp -f Sunclock.* $(DESTDIR)$(SHAREDIR)/i18n $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/earthmaps/vmf cd vmf ; rm -f *~ ; cp -f * $(DESTDIR)$(SHAREDIR)/earthmaps/vmf cd $(DESTDIR)$(SHAREDIR)/earthmaps/vmf ; gzip -f *.vmf $(MKDIRHIER) $(DESTDIR)$(EMXBINDIR) install -c -s editkit/emx $(DESTDIR)$(EMXBINDIR)/ $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/editkit cd editkit ; install -c -m 444 rc.example README MANUAL.emacs \ $(DESTDIR)$(SHAREDIR)/editkit cd $(DESTDIR)$(SHAREDIR)/editkit ; mv -f rc.example emxrc cat MESSAGE clean:: cd tools ; make clean DESTDIR=$(DESTDIR) cd editkit ; xmkmf ; make clean DESTDIR=$(DESTDIR) realclean:: clean rm -f Makefile build-stamp cd editkit ; xmkmf ; make realclean DESTDIR=$(DESTDIR) distclean:: realclean sunclock-3.57/MESSAGE.old0000644000000000000000000000317210273424106011745 0ustar Starting from version 3.30 on, the recommended image format is JPEG, (although you can still use the .xpm or .xpm.gz format as before). We suggest you to download (actually very nice!) Earth maps from the xglobe/xplanet home sites http://www.radcyberzine.com/xglobe/ http://www.vterrain.org/Imagery/whole_earth.html http://apollo.spaceports.com/~jhasting/planets.html This version has A POWERFUL ZOOM IMPLEMENTATION !! If you want to get the full power of it, you can use the huge 11Mb jpeg Earth map from http://apollo.spaceports.com/~jhasting/earth.html ftp://ftp.ac-grenoble.fr/ge/geosciences/sunclock_huge_earthmap.jpg ******************** *** CAUTION !!! *** ******************** Starting from version 3.42 on, the format of the RC config files has been slightly changed. The -addcity option replaces the former [Cities] more rigid syntax. Older tags [Options] and [Cities] SHOULD NO LONGER be used. BOTH the system wide Sunclockrc and the user's private ~/.sunclockrc are now read by sunclock at start-up, so cities defined in Sunclockrc SHOULD NOT BE REDEFINED in ~/.sunclockrc In 3.43, the -spotsize option has been changed to -spotsizes, and its behaviour HAS BEEN CHANGED In 3.44, the syntax of ALL COLOR OPTIONS HAS CHANGED. A unique option -setcolor field|color is to be used instead. Similarly, options -monochrome, -invertcolors and -fullcolors have been replaced by a single option -colorlevel (0, 1, 2, 3) 3.44/3.45 have introduced the ability to DISPLAY MAPS ON THE ROOT WINDOW 3.46 can be used as a SCREENSAVER (-screensaver option) sunclock-3.57/bitmaps.h0000644000000000000000000000342007316264262011776 0ustar unsigned short mark_bits[] = { 5, 5, 0x1B, 0x1F, 0x0E, 0x1F, 0x1B }; unsigned short sun_bits[] = { 13, 13, 0x0040, 0x0040, 0x0444, 0x0248, 0x01F0, 0x01F0, 0x1FFF, 0x01F0, 0x01F0, 0x0248, 0x0444, 0x0040, 0x0040 }; unsigned short moon_bits[] = { 7, 11, 0x78, 0x24, 0x12, 0x09, 0x09, 0x09, 0x09, 0x09, 0x12, 0x24, 0x78 }; unsigned short spot1_bits[] = { 11, 11, 0x0F8, 0x104, 0x222, 0x4F9, 0x4F9, 0x5FD, 0x4F9, 0x4F9, 0x222, 0x104, 0x0F8 }; unsigned short spot2_bits[] = { 5, 5, 0x0E, 0x1F, 0x1F, 0x1F, 0x0E }; unsigned short spot3_bits[] = { 5, 5, 0x0E, 0x11, 0x15, 0x11, 0x0E }; unsigned short spot4_bits[] = { 5, 5, 0x0E, 0x11, 0x11, 0x11, 0x0E }; unsigned short spot5_bits[] = { 3, 3, 0x02, 0x07, 0x02 }; unsigned short * symbol_bits[] = { mark_bits, sun_bits, moon_bits, spot1_bits, spot2_bits, spot3_bits, spot4_bits, spot5_bits }; /* * alternatives which have been tried... unsigned short spot3_bits[] = { 5, 5, 0x0E, 0x1F, 0x1F, 0x1F, 0x0E }; unsigned short spot4_bits[] = { 7, 7, 0x08, 0x3E, 0x3E, 0x7F, 0x3E, 0x3E, 0x08 }; unsigned short spot5_bits[] = { 11, 11, 0x0F8, 0x104, 0x202, 0x471, 0x4F9, 0x4F9, 0x4F9, 0x471, 0x202, 0x104, 0x0F8 }; unsigned short moon_bits[] = { 13, 13, 0x01F8, 0x004C, 0x0022, 0x0012, 0x0011, 0x0011, 0x0011, 0x0011, 0x0011, 0x0012, 0x0022, 0x004C, 0x01F8 }; unsigned short moon_bits[] = { 7, 11, 0x78, 0x3C, 0x1E, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x1E, 0x3C, 0x78 }; unsigned short mark_bits[] = { 7, 7, 0x1C, 0x2A, 0x49, 0x7F, 0x49, 0x2A, 0x1C }; unsigned short mark_bits[] = { 7, 7, 0x1C, 0x22, 0x55, 0x49, 0x55, 0x22, 0x1C }; unsigned short mark_bits[] = { 7, 7, 0x1C, 0x22, 0x5D, 0x55, 0x5D, 0x22, 0x1C } unsigned short mark_bits[] = { 5, 5, 0x0E, 0x1F, 0x1B, 0x1F, 0x0E }; */ sunclock-3.57/README_pl0000644000000000000000000000133210113460237011526 0ustar README_pl dla Sunclock w wersji 3.xx ------------------------------------ Poczynaj±c od wersji 3.51 program Sunclock posiada polsk± wersjê jêzykow±. Aby móc w pe³ni z niej ko¿ystaæ nale¿y po instalacji programu, zgodnie z instrukcjami znajduj±cymi siê w pliku INSTALL (j. agnielski), zmieniæ plik Sunclockrc (znajduj±cy siê najprawdopodobniej w /usr/share/sunclock/) usuwaj±c znaki '#' przed piêcioma liniami zaczynaj±cymi siê od 'setfont'. W przeciwnym wypadku bêdzie zastosowana domy¶lna czcionka oparta o stronê kodow± ISO 8859-1 (czyli bez polskich znaków). Ze swojej strony zapraszam do odwiedzenia witryny : http://frmas.free.fr/li_1.htm#_Sunclock_ sk±d mo¿na pobraæ nowe, bardzo ³adne, mapy ¶wiata do programu sunclock. sunclock-3.57/i18n/0000755000000000000000000000000011046574647010754 5ustar sunclock-3.57/i18n/Sunclock.de0000644000000000000000000000534111046566371013045 0ustar # German # Day names So Mo Di Mi Do Fr Sa # Months Jan Feb Mär Apr Mai Jun Jul Aug Sep Okt Nov Dez # Additional labels Position GMT Zeit Sonnenzeit Gesetzliche Zeit Länge des Tages Sonnenaufgang Sonnenuntergang # Sekunden Minute Stunde Tag Tage # Klicke auf eine Stadt Klicke auf eine Position Klicke nacheinander auf zwei Positionen Doppelklicke oder betätige ° für ° ' " # Taste Tastatur/Maussteuerung Abbruch Menü beenden Unbekannte Tastenzuordnung !! Synchro Schrittweite = Zeitverschiebung = # Städtename Zeitzone Latitude Longitude Größe Warnung: %s, lat = %s lon = %s%sist bereits in der Städteliste !! Überschreibe vorhergehenden Eintrag für %s # Option Ausgewählte Option aktivieren... Ungültige Option bzw. nicht zur Laufzeit wählbar !! Optionen: für ein Leerzeichen eines Eintrags drücken (einmalig) (periodisch, alle %d Sekunden) (mit starrem Himmel) (ohne Fensterinhalt) mit der folgenden, länglichen Optionsliste: Beginnend mit ** sind die Optionen zur Laufzeit konfigurierbar Berechne neues Bild... Sunclock hat eine Reihe interner Funktionen, auf die per Mausklick/Tastatur zugegriffen werden kann: # General help Zeige die Hilfe sowie Optionen an (H oder Mausknopf 1) Eingabe Erdekartendatei (F oder Mausknopf 2) Zoom (Z oder Mausknopf 3) Städteparameter Optionskommandofenster Verwende Koordinaten-Modus Verwende Sonnenzeit-Modus Verwende Abstands-Modus Verwende Stunden-Erweiterungs-Modus Verwende Modus für gesetzliche Zeit Verschiebe Zeit vorwärts Verschiebe Zeit rückwärts Ändere Zeitverschiebung Setze Zeitverschiebung auf Null zurück Zeichne/Lösche Nacht Zeichne/Lösche Sonne und Mond Zeichne/Lösche Meridiane Zeichne/Lösche Parallelen Zeichne/Lösche Tropische/Äquator/Polarkreise Öffnen ein neues Karte Fenster Fenster schließen Fenster ikonifizieren Kartenfenster auffrischen Fenstergröße auf Bildschirmgröße aufziehen Vorhergehende Fenster restaurieren Wechseln zwischen Uhr und Kartenfenster Aktiviere Kommando (-command Option) Programm beenden # Zoom window help Neue Vergrößerung aktivieren Alte Vergrößerung restaurieren Änderung der Vergrößerung verwerfen Seitenverhältnis durch Fenstergrößenänderung setzen Zwischen Vergrößerungen 0, 1 und 2 wechseln Vergrößerung mit Faktor 1.2 Verkleinerung mit Faktor 1/1.2 = 0.833 Ursprüngliche Vergrößerung mit Faktor = 1 (gesamtes Bild) Vergrößerung an ausgewählter Stadt/ausgewähltem Platz zentrieren Vergörßerungsoperation synchronisieren # Option window help Option aktivieren Kommandozeile löschen Fenstersynchronisation an oder aus Aktuelles Bild als Bildschirmhintergrund Bildschirmhintergrund löschen Animation starten/stoppen # Urban window help Benutze Grade/Minuten/Sekunden oder Dezimalgrade Stadt suchen/auswählen Städteparameter ändern Neuen Städteeintrag anlegen Stadt löschen # End sunclock-3.57/i18n/thommy.diff0000600000000000000000000001443010454265142013102 0ustar --- sunclock-3.56/i18n/Sunclock.de.orig 2004-10-31 22:28:19.000000000 +0100 +++ sunclock-3.56/i18n/Sunclock.de 2006-07-09 13:04:28.000000000 +0200 @@ -1,12 +1,12 @@ # German # Day names -Son -Mon -Die -Mit -Don -Fre -Sam +So +Mo +Di +Mi +Do +Fr +Sa # Months Jan Feb @@ -23,7 +23,7 @@ # Additional labels Position GMT Zeit -Sonnen Zeit +Sonnenzeit Gesetzliche Zeit Länge des Tages Sonnenaufgang @@ -38,47 +38,47 @@ Klicke auf eine Stadt Klicke auf eine Position Klicke nacheinander auf zwei Positionen -Doppel Klicke oder Betätige ° für ° ' " +Doppelklicke oder betätige ° für ° ' " # Taste -Tastatur/Maus Steuerung +Tastatur/Maussteuerung Abbruch -Abbruch Menü -Unknown key binding !! +Menü beenden +Unbekannte Tastenzuordnung !! Synchro Schrittweite = Zeitverschiebung = # -City name -Timezone +Städtename +Zeitzone Latitude Longitude -Size -Warning: %s, lat = %s lon = %s%salready in list of cities !! -Overriding previous entry for %s +Größe +Warnung: %s, lat = %s lon = %s%sist bereits in der Städteliste !! +Überschreibe vorhergehenden Eintrag für %s # Option -Activating selected option... -Option incorrect or not available at runtime !! -Options: strike for blank space within an item -(once) -(periodically, period %d seconds) -(with starry sky) -(blank root window) -with the following rather long list of options: -Starting from **, options are runtime configurable -Calculating new image... -Sunclock hat eine Reihe interner Prozeduren, auf die per Mausklick oder Tastatur zugegriffen werden kann: +Ausgewählte Option aktivieren... +Ungültige Option bzw. nicht zur Laufzeit wählbar !! +Optionen: für ein Leerzeichen eines Eintrags drücken +(einmalig) +(periodisch, alle %d Sekunden) +(mit starrem Himmel) +(ohne Fensterinhalt) +mit der folgenden, länglichen Optionsliste: +Beginnend mit ** sind die Optionen zur Laufzeit konfigurierbar +Berechne neues Bild... +Sunclock hat eine Reihe interner Funktionen, auf die per Mausklick/Tastatur zugegriffen werden kann: # General help -Zeige die Hilfe und Optionen an (H oder Mausknopf 1) -Eingabe Erde kartendatei (F oder Mausknopf 2) +Zeige die Hilfe sowie Optionen an (H oder Mausknopf 1) +Eingabe Erdekartendatei (F oder Mausknopf 2) Zoom (Z oder Mausknopf 3) -Parameteren der Städte -Option command window +Städteparameter +Optionskommandofenster Verwende Koordinaten-Modus Verwende Sonnenzeit-Modus Verwende Abstands-Modus -Verwende Stunde-Erweiterung-Modus +Verwende Stunden-Erweiterungs-Modus Verwende Modus für gesetzliche Zeit Verschiebe Zeit vorwärts Verschiebe Zeit rückwärts @@ -88,38 +88,38 @@ Zeichne/Lösche Sonne und Mond Zeichne/Lösche Meridiane Zeichne/Lösche Parallelen -Zeichne/Lösche Tropische/Äquator/Polarkreise -Öffnen ein neues Karte Fenster -Schließen das Fenster -Iconifiziere das Fenster +Zeichne/Lösche Tropenlinien/Äquator/Polarkreise +Neues Kartenfenster öffnen +Fenster schließen +Fenster ikonifizieren Kartenfenster auffrischen -Adjust window width to screen size -Vorhergehende Fenster Grösse zurück -Wechsle zwischen Uhr und Kartenfenster +Fenstergröße auf Bildschirmgröße aufziehen +Vorhergende Fenstergröße restaurieren +Wechseln zwischen Uhr und Kartenfenster Aktiviere Kommando (-command Option) -Beende Programm +Programm beenden # Zoom window help -Activate new zoom settings -Return to previous zoom settings -Cancel change in zoom settings -Set aspect by resizing main window -Cycle through zoom modes 0,1,2 -Zoom in by factor 1.2 -Zoom out by factor 1/1.2 = 0.833 -Return to zoom factor = 1 (full map) -Center zoom area on selected city or location -Synchronize zoom operation +Neue Vergrößerung aktivieren +Alte Vergrößerung restaurieren +Änderung der Vergrößerung verwerfen +Seitenverhältnis durch Fenstergrößenänderung setzen +Zwischen Vergrößerungen 0, 1 und 2 wechseln +Vergrößerung mit Faktor 1.2 +Verkleinerung mit Faktor 1/1.2 = 0.833 +Ursprüngliche Vergrößerung mit Faktor = 1 (gesamtes Bild) +Vergrößerung an ausgewählter Stadt/ausgewähltem Platz zentrieren +Vergörßerungsoperation synchronisieren # Option window help -Activate the option -Erase the option command line -Synchronisieren die Fenster oder nicht -Copy map to root window -Erase map from root window -Start/stop animation +Option aktivieren +Kommandozeile löschen +Fenstersynchronisation an oder aus +Aktuelles Bild als Bildschirmhintergrund +Bildschirmhintergrund löschen +Animation starten/stoppen # Urban window help -Use degrees, minutes, seconds, or decimal degrees -Search/select city -Modify city parameters -Create new city location -Delete city +Benutze Grade/Minuten/Sekunden oder Dezimalgrade +Stadt suchen/auswählen +Städteparameter ändern +Neuen Städteeintrag anlegen +Stadt löschen # End --- sunclock-3.56/sunclock.c.orig 2006-06-22 08:21:40.000000000 +0200 +++ sunclock-3.56/sunclock.c 2006-07-09 10:38:14.000000000 +0200 @@ -3142,8 +3142,8 @@ { int ilon, ilat, width, dw = 0; struct TextLabel * label; - if(!Context->wintype) return; char *text, *text0, *ptr; + if(!Context->wintype) return; label = Context->label; while (label) if (label->text && *label->text) { --- sunclock-3.56/readvmf.c.orig 2006-06-22 11:06:30.000000000 +0200 +++ sunclock-3.56/readvmf.c 2006-07-09 12:16:37.000000000 +0200 @@ -29,6 +29,7 @@ #include #ifdef ZLIB #include +#include /* (ThMO) */ #endif #include "sunclock.h" @@ -433,6 +434,8 @@ char *str, *ptr; #ifdef ZLIB gzFile * fd; + int plen; + char *zpath; #else FILE *fd; #endif @@ -460,6 +463,28 @@ fprintf(stderr, "Loading vector map %s\n", path); #ifdef ZLIB fd = gzopen(path, "r"); + #define Z_PATH_EXT ".gz" + #define Z_PATH_LEN ( sizeof( Z_PATH_EXT)- 1) + if ( fd == NULL && errno == ENOENT + && ( ( plen= strlen( path)) < Z_PATH_LEN + || strcmp( &path[ plen- Z_PATH_LEN], Z_PATH_EXT) != 0)) + { /* try to open gzip'd file... (ThMO) */ + #if __GNUC__ >= 2 + zpath= alloca( plen+ Z_PATH_LEN+ 1); + #else + zpath= salloc( plen+ Z_PATH_LEN+ 1); + #endif + memcpy( zpath, path, plen); + memcpy( zpath+ plen, Z_PATH_EXT, Z_PATH_LEN+ 1); + if ( verbose) + fprintf( stderr, "Try loading vector map %s\n", zpath); + fd= gzopen( zpath, "r"); + #if !( __GNUC__ >= 2) + free( zpath); + #endif + } + #undef Z_PATH_EXT + #undef Z_PATH_LEN #else fd = fopen(path, "r"); #endif sunclock-3.57/i18n/Sunclock.pl0000644000000000000000000000532310141126137013053 0ustar # Polish # Day names Nie Pon Wto ¦ro Czw Pi± Sob # Month names Sty Lut Mar Kwi Maj Cze Lip Sie Wrz Pa¼ Lis Gru # Additional labels Pozycja Czas GMT Czas s³oneczny Czas lokalny D³ugo¶æ dnia Wschód s³oñca Zachód s³oñca # sekund minuta godzina dzieñ dni # Kliknij na miasto Kliknij na lokacjê Kliknij kolejno na dwie lokacje (przeci±gnij) Kliknij dwukrotnie lub naci¶nij przycisk ° dla ° ' " # Klawisz Opcje klawiatury/myszy Wyjd¼ Wyjd¼ z menu Nieznane skojarzenie klawisza !! Synchro Warto¶æ = Globalna zmiana czasu = # Nazwa miasta Strefa czasowa Szeroko¶æ g. D³ugo¶æ geog. Wielko¶æ Ostrze¿enie: %s, sze = %s d³u = %s%sju¿ jest na li¶cie miast !! Zastêpowanie poprzedniego wpisu dla %s # Opcja Aktywowanie wybranej opcji... Opcja jest niepoprawna lub nie jest dostêpna podczas uruchamiania !! Opcje: wci¶nij aby uzyskaæ woln± przestrzeñ wewn±trz elementu (raz) (okresowo, okres %d sekund) (z gwie¼dzistym niebem) (puste g³owne okno) z nastêpuj±c±, raczej d³ug±, list± opcji: Opcje znajduj±ce siê za ** mo¿na skonfigurowaæ przy uruchamianiu Obliczanie nowego obrazu... Sunclock posiada wiele w³asnych procedur wywo³ywanych przez klikniêcia myszy lub klawisze: # General help Poka¿ pomoc i opcje (H lub klikniêcie na pasku) Wczytaj mapê Ziemii (F lub 2 przycisk myszy) Powiêkszenie (Z lub 3 przycisk myszy) Parametry miast Okno komend opcji U¿yj trybu wspó³rzêdnych U¿yj trybu czasu s³onecznego U¿yj trybu odleg³o¶ci U¿yj trybu godzinnego U¿yj trybu czasu lokalnego Zmieñ ustawienie czasu (w przód) Zmieñ ustawienie czasu (wstecz) Dopasuj postêp czasu Wyzeruj globaln± zmianê czasu Zaznacz/usuñ obszar nocy Zaznacz/usuñ s³oñce i ksiê¿yc Zaznacz/usuñ po³udniki Zaznacz/usuñ równole¿niki Zaznacz/usuñ tropiki/równik/ko³a podbiegunowe Otwórz nowe okno mapy Zamknij okno Minimalizuj okno do ikony Od¶wie¿ okno mapy Dopasuj szeroko¶æ okna do rozmiaru ekranu Cofnij do poprzedniego rozmiaru okna Zamieñ okna zegara i mapy Aktywuj komendê (opcja -command) Wyjd¼ z programu # Zoom window help Aktywuj nowe ustawienia powiêkszenia Powróæ do poprzednich ustawieñ powiêkszenia Anuluj zmiany w ustawieniach powiêkszenia Ustal po³o¿enie zmieniaj±c rozmiar g³ównego okna Przewijaj pomiêdzy trybami powiêkszenia 0,1,2 Powiêksz o wspó³czynnik 1.2 Oddal o wspó³czynnik 1/1.2 = 0.833 Powróæ do wspó³czynnika powiêkszenia = 1 (pe³na mapa) Wy¶rodkuj obszar powiêkszenia na wybranym mie¶cie lub lokacji Synchronizuj operacje powiêkszania # Option window help Aktywuj opcjê Usuñ wiersz(e) komendy/parametru Synchronizuj okna lub nie Skopiuj mapê do g³ównego okna Usuñ mapê z g³ównego okna Rozpocznij/wstrzymaj animacjê # Urban window help U¿yj stopni, minut i sekund lub stopni dziesiêtnych Szukaj/wybierz miasto Zmieñ parametry miasta Stwórz now± lokacjê miasta Usuñ miasto # End sunclock-3.57/i18n/Sunclock.es0000644000000000000000000000501010141254473013045 0ustar # Spanish # Day names Dom Lun Mar Mie Jue Vie Sab # Month names Ene Feb Mar Abr May Jun Jul Ago Sep Oct Nov Dic # Additional labels Punto Hora GMT Hora Solar Hora Legal Duración Día Salida de sol Puesta de sol # segundos minuto hora día días # Marca una ciudad Marca un lugar Marca dos lugares consecutivos Repetir clic o presionar ° para ° ' " # Tecla Control Teclado/Ratón Escape Escapar del menú Unknown key binding !! Synchro Progreso = Diferencia de tiempo = # City name Timezone Latitude Longitude Size Warning: %s, lat = %s lon = %s%salready in list of cities !! Overriding previous entry for %s # Option Activating selected option... Option incorrect or not available at runtime !! Options: strike for blank space within an item (once) (periodically, period %d seconds) (with starry sky) (blank root window) with the following rather long list of options: Starting from **, options are runtime configurable. Calculating new image... Sunclock tiene varios procedimientos internos a los que se puede acceder usando el ratón o el teclado: # General help Mostrar ayuda y opciones (H o ratón, botone 1) Encargar carta de la Tierra (F o ratón, botone 2) Zoom (Z o ratón, botone 3) Parameters of Urban locations Option command window Usar modo coordenadas Usar modo hora solar Usar modo distancia Usar modo extensión horaria Usar modo hora legal Modificar hora Adelante Modificar hora Atrás Ajustar valor de progreso de tiempo Poner a cero la diferencia de tiempo Dibujar/Borrar noche Dibujar/Borrar sol y luna Dibujar/Borrar meridianos Dibujar/Borrar paralelos Dibujar/Borrar círculos Trópicos/Polares/Ecuador Abrir una nueva ventana de mapa Cerrar la ventana Minimizar ventanas Refrescar ventana de mapa Adjust window width to screen size Retornar a dimensiónes anteriores de la carta Cambiar entre ventana mapa y ventana reloj Activar comando (opción -command) Salir del programa # Zoom window help Activate new zoom settings Return to previous zoom settings Cancel change in zoom settings Set aspect by resizing main window Cycle through zoom modes 0,1,2 Zoom in by factor 1.2 Zoom out by factor 1/1.2 = 0.833 Return to zoom factor = 1 (full map) Center zoom area on selected city or location Synchronize zoom operation # Option window help Activate the option Erase the option command line Sincronizar las ventanas o no Copy map to root window Erase map from root window Start/stop animation # Urban window help Use degrees, minutes, seconds, or decimal degrees Search/select city Modify city parameters Create new city location Delete city # End sunclock-3.57/i18n/Sunclock.en0000644000000000000000000000457610141254331013051 0ustar # English # Day names Sun Mon Tue Wed Thu Fri Sat # Month names Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec # Additional labels Point GMT time Solar time Legal time Day length Sunrise Sunset # seconds minute hour day days # Click on a city Click on a location Click consecutively on two locations Double click or strike ° for ° ' " # Key Key/Mouse controls Escape Escape menu Unknown key binding !! Synchro Progress value = Global time shift = # City name Timezone Latitude Longitude Size Warning: %s, lat = %s lon = %s%salready in list of cities !! Overriding previous entry for %s # Option Activating selected option... Option incorrect or not available at runtime !! Options: strike for blank space within an item (once) (periodically, period %d seconds) (with starry sky) (blank root window) with the following rather long list of options: Starting from **, options are runtime configurable Calculating new image... Sunclock has a number of internal procedures which can be accessed through mouse clicks or key controls: # General help Show help and options (H or click on strip) Load Earth map file (F or mouse button 2) Zoom (Z or mouse button 3) Parameters of Urban locations Option command window Use coordinate mode Use solar time mode Use distance mode Use hour extension mode Use legal time mode Modify time forward Modify time backward Adjust time progress Reset global time shift to zero Draw/Erase Night area Draw/Erase Sun and Moon Draw/Erase meridians Draw/Erase parallels Draw/Erase Tropics/Equator/Arctic circles Open new map window Close window Iconify window Refresh map window Adjust window width to screen size Back to previous window size Switch clock and map windows Activate command (-command option) Quit program # Zoom window help Activate new zoom settings Return to previous zoom settings Cancel change in zoom settings Set aspect by resizing main window Cycle through zoom modes 0,1,2 Zoom in by factor 1.2 Zoom out by factor 1/1.2 = 0.833 Return to zoom factor = 1 (full map) Center zoom area on selected city or location Synchronize zoom operation # Option window help Activate the option Erase the command/parameter line(s) Synchronize windows or not Copy map to root window Erase map from root window Start/stop animation # Urban window help Use degrees, minutes, seconds, or decimal degrees Search/select city Modify city parameters Create new city location Delete city # End sunclock-3.57/i18n/Sunclock.no0000644000000000000000000000460110141254440013051 0ustar # Norwegian # Day names Søn Man Tir Ons Tor Fre Lør # Months Jan Feb Mar Apr Mai Jun Jul Aug Sep Okt Nov Des # Additional labels Posisjon GMT tid Soloppgang Nasjonal tid Dagens lengde Soloppgang Solnedgang # sekund minutt time dag dager # Klikk på en by Klikk på et sted Klikk på to steder i kartet Klikk to ganger eller trykk ° for ° ' " # Tastatur Tastatur/Muskontroll Lukk vindu Lukk meny Unknown key binding !! Synchro Tidsvariabel = Global tidsvariabel = # City name Timezone Latitude Longitude Size Warning: %s, lat = %s lon = %s%salready in list of cities !! Overriding previous entry for %s # Option Activating selected option... Option incorrect or not available at runtime !! Options: strike for blank space within an item (once) (periodically, period %d seconds) (with starry sky) (blank root window) with the following rather long list of options: Starting from **, options are runtime configurable Calculating new image... Sunclock har endel funksjoner som man kan komme til ved bruk av musklikk eller tastaturet: # General help Vis hjelp og alternativ (H eller musklikk knapp 1) Henter kart (F eller musklikk knapp 2) Zoom (Z eller musklikk knapp 3) Parameters of Urban locations Option command window Bruk koordinatmodus Bruk soloppgangmodus Bruk distansemodus Bruk tidstilleggsmodus Bruk nasjonal tidssonemodus Endre tiden framover Endre tiden bakover Juster tidsvariabel Tilbakestill Global tid Tegn/Fjern natt Tegn/Fjern sol og måne Tegn/Fjern meridianer Tegn/Fjern breddegrader Tegn/Fjern tropisk/ekvator/arktisk sirkel Åpner nytt kartvindu Lukker vindu Ikonifiserer vindu Forny kartvindu Adjust window width to screen size Tilbake til forrige kartvindu Veksle tidssone og kartvindu Aktivér kommando (-command option) Avslutt program # Zoom window help Activate new zoom settings Return to previous zoom settings Cancel change in zoom settings Set aspect by resizing main window Cycle through zoom modes 0,1,2 Zoom in by factor 1.2 Zoom out by factor 1/1.2 = 0.833 Return to zoom factor = 1 (full map) Center zoom area on selected city or location Synchronize zoom operation # Option window help Activate the option Erase the option command line Synchronize windows or not Copy map to root window Erase map from root window Start/stop animation # Urban window help Use degrees, minutes, seconds, or decimal degrees Search/select city Modify city parameters Create new city location Delete city # End sunclock-3.57/i18n/Sunclock.nl0000644000000000000000000000463110141254426013055 0ustar # Dutch # Dagen Zo Ma Di Wo Do Vr Za # Maanden Jan Feb Mar Apr Mei Jun Jul Aug Sep Oct Nov Dec # Additional labels Punt GMT tijd Zonnetijd Lokale tijd Daglengte Zonsopkomst Zonsondergang # seconden minuut uur dag dagen # Klik op een plaats Klik op een locatie Klik achtereenvolgens op 2 locaties Dubbelklik of gebruik ° voor ° ' " # Toets Toets/muis controls Escape Beeindig menu Unknown key binding !! Synchro Stapgrootte = Tijdverschuiving = # City name Timezone Latitude Longitude Size Warning: %s, lat = %s lon = %s%salready in list of cities !! Overriding previous entry for %s # Option Activating selected option... Option incorrect or not available at runtime !! Options: strike for blank space within an item (once) (periodically, period %d seconds) (with starry sky) (blank root window) with the following rather long list of options: Starting from **, options are runtime configurable Calculating new image... Sunclock heeft een aantal interne procedures welke met de muis of toetsen geactiveerd kunnen worden: # General help Toon help en opties (H of muisknop 1) Laad aardkaart (F of muisknop 2) Zoom (Z of muisknop 3) Parameters of Urban locations Option command window Gebruik coordinaat modus Gebruik zonnetijd modus Gebruik afstands modus Gebruik uur extensie modus Gebruik locale tijd modus Verander tijd voorwaarts Verander tijd achterwaarts Verander tijdverschuiving Reset tijd verschuiving naar nul Teken/Wis nacht Teken/Wis zon en maan Teken/Wis meridianen Teken/Wis parallelen Teken/Wis Tropische/Evenaar/Pool circels Open een nieuw kaart scherm Sluit scherm Iconiseer scherm Ververs kaart scherm Pas venster aan aan schermgrootte Terug naar vorige schermgrootte Schakel tussen klok en kaart scherm Activeer commando (-command optie) Verlaat programma # Zoom window help Activate new zoom settings Return to previous zoom settings Cancel change in zoom settings Set aspect by resizing main window Cycle through zoom modes 0,1,2 Zoom in by factor 1.2 Zoom out by factor 1/1.2 = 0.833 Return to zoom factor = 1 (full map) Center zoom area on selected city or location Synchronize zoom operation # Option window help Activate the option Erase the option command line Synchroniseer schermen of niet Copy map to root window Erase map from root window Start/stop animation # Urban window help Use degrees, minutes, seconds, or decimal degrees Search/select city Modify city parameters Create new city location Delete city # End sunclock-3.57/i18n/Sunclock.fr0000644000000000000000000000571710141254350013055 0ustar # French # Week days Dim Lun Mar Mer Jeu Ven Sam # Months Janv Févr Mars Avr Mai Juin Juil Août Sept Oct Nov Déc # Additional labels Point Heure GMT Heure solaire Heure légale Durée du jour Lever Coucher # secondes minute heure jour jours # Cliquer sur une ville Cliquer sur un point Cliquer sur deux points Cliquer 2 fois ou taper ° pour ° ' " # Touche Contrôles Clavier/Souris Echap Sortir du menu Touche non liée à une fonction !! Synchro (") Progression = Décalage temporel = # Nom localité Zone horaire Latitude Longitude Taille Attention: %s, lat = %s lon = %s%sdéjà dans la liste des villes !! Modification des données pour la localité %s # Option Activation de l'option sélectionnée... Option incorrecte ou non disponible en exécution !! Options: taper pour un blanc situé dans une chaîne (une fois) (périodiquement, période %d secondes) (avec fond de ciel étoilé) (avec fond d'écran vide) avec la liste d'options assez longue suivante : A partir de **, les options sont configurables pendant l'exécution. Calcul de la nouvelle image... Sunclock dispose d'un certain nombre de fonctions accessibles au moyen de la souris ou des touches du clavier : # General help Afficher l'aide et les options (H ou clic sur la bande du bas) Charger une carte de la Terre (F ou souris, bouton 2) Zoom (Z ou souris, bouton 3) Paramètres des localités Urbaines Fenêtre de commande des Options Utiliser le mode Coordonnées Utiliser le mode heure Solaire Utiliser le mode Distances Utiliser le mode Extension horaire Utiliser le mode heure Légale Avancer dans le temps Reculer dans le temps Ajuster la progression temporelle Remettre à zéro le décalage temporel Montrer/ne pas montrer la zone Nocturne Montrer/ne pas montrer le Soleil et la Lune Montrer/ne pas montrer les Méridiens Montrer/ne pas montrer les Parallèles Montrer/ne pas montrer les Tropiques/Equateur/Cercles arctiques Ouvrir une nouvelle carte/fenêtre Fermer la fenêtre Iconifier la fenêtre Rafraîchir la fenêtre Ajuster la largeur de fenêtre à la taille de l'écran Retour à la taille de fenêtre précédente Commuter les fenêtres carte/horloge Activer la commande spécifiée par l'option -command Quitter le programme # Zoom window help Activer les nouvelles valeurs de zoom Revenir aux anciennes valeurs de zoom Annuler le changement de valeur de zoom Rectifier l'aspect en modifiant la taille de fenêtre Permuter les modes de zoom 0,1,2 Zoomer d'un facteur 1.2 Rétrécir d'un factor 1/1.2 = 0.833 Revenir à un facteur de zoom = 1 (carte entière) Centrer le rectangle de zoom sur la localité choisie Synchroniser l'action du zoom # Option window help Activer l'option Effacer les commandes et paramètres Synchroniser les fenêtres entre elles ou non Reproduire la carte en fond d'écran Effacer la carte du fond d'écran Démarrer/arrêter l'animation # Urban window help Utiliser degrés, minutes, secondes, ou degrés décimaux Chercher/sélectionner une localité Modifier les paramètres de la localité Créer une nouvelle localité Supprimer la localité # End sunclock-3.57/i18n/Sunclock.it0000644000000000000000000000555110141254375013065 0ustar # Italian # Week days Dom Lun Mar Mer Gio Ven Sab # Months Gen Feb Mar Apr Mag Giu Lug Ago Set Ott Nov Dic # Additional labels Posizione Ora GMT Ora solare Ora legale Durata del giorno Alba Tramonto # secondi minuto ora giorno giorni # Cliccare su una città Cliccare su un punto Cliccare su due punti Cliccare ancora o premere ° per ° ' " # Tasto Tasto/Mouse Escape Uscire dal menu Tasto sconosciuto!!! Sincronizza Progressione = Scarto temporale = # Nome città Fuso orario Latitudine Longitudine Dimensione Attenzione: %s, lat = %s lon = %s%sè già nella lista delle città! Sostituisco i dati precedenti di %s # Opzione Attivo l'opzione selezionata... Opzione scorretta o non disponibile durante l'esecuzione! Opzioni: premi per uno spazio in un elemento (una volta) (ciclicamente, ogni %d secondi) (con cielo stellato) (finestra di sfondo vuota) con la seguente lista di opzioni abbastanza lunga: A partire da **, le opzioni sono configurabili durante l'esecuzione. Calcolo la nuova immagine... Sunclock dispone di un certo numero di funzioni accessibili per mezzo del mouse o della tastiera: # General help Mostrare aiuto ed opzioni (H o mouse, bottone 1) Caricare carta della Terra (F o mouse, bottone 2) Zoom (Z o mouse, bottone 3) Parametri dei centri urbani Opzione finestra comandi Utilizza la modalità coordinate Utilizza la modalità ora solare Utilizza la modalità distanze Utilizza la modalità estensione oraria Utilizza la modalità ora legale Modificare il tempo in avanti Modificare il tempo all'indietro Aggiustare la progressione temporale Rimettere a zero lo scarto temporale Mostrare/non mostrare la notte Mostrare/non mostrare il sole e la luna Mostrare/non mostrare i meridiani Mostrare/non mostrare i paralleli Mostrare/non mostrare i tropici/circoli polari/l'equatore Aprire una nuova finestra Chiudere la finestra Ridurre la finestra Rinfrescare la finestra Allargare la finestra alla dimensione dello schermo Ritornare a dimensione anteriore della carta Invertire le finestre mappa/orologio Attivare il comando specifico per l'opzione -command Abbandonare il programma # Zoom window help Attiva le nuove impostazioni di zoom Ritorna alle impostazioni di zoom precedenti Cancel change in zoom settings Imposta la proporzione ridimensionando la finestra Cicla attraverso le modalità zoom 0,1,2 Ingrandisci di un fattore 1.2 Rimpicciolisci di un fattore 1/1.2 = 0.833 Ritorna al fattore di zoom = 1 (mappa completa) Centra l'area ingrandita sulla città o luogo prescelto Sincronizza l'operazione di zoom # Option window help Attiva l'opzione Cancella la linea comandi dell'opzione Finestre sincronizzati o no Copia la mappa alla finestra di sfondo Cancella la mappa dalla finestra di sfondo Inizia/Ferma l'animazione # Urban window help Usa gradi, minuti, secondi, oppure gradi decimali Cerca/scegli città Modifica i parametri delle città Aggiungi una nuova città Cancella città # End sunclock-3.57/i18n/Sunclock.sv0000644000000000000000000000463010141254451013071 0ustar # Swedish # Day names Sön Mån Tis Ons Tor Fre Lör # Months Jan Feb Mar Apr Maj Jun Jul Aug Sep Okt Nov Dec # Additional labels Läge GMT tid Solstånd Nationell tid Dagens längd Soluppgång Solnedgång # sekunden minut timme dag dagar # Klicka på en stad Klicka på en plats Klicka på två platser Klick två gånger eller slå ° för ° ' " # Tastatur Tastatur/Mus kontroll Escape Escape meny Unknown key binding !! Synchro Tids-variabel = Global tid variabel = # City name Timezone Latitude Longitude Size Warning: %s, lat = %s lon = %s%salready in list of cities !! Overriding previous entry for %s # Option Activating selected option... Option incorrect or not available at runtime !! Options: strike for blank space within an item (once) (periodically, period %d seconds) (with starry sky) (blank root window) with the following rather long list of options: Starting from **, options are runtime configurable. Calculating new image... Sunclock har ett antal funktioner som kan åtkommas genom mus-klick eller tastaturet: # General help Visa hjälp och alternativ (H eller mus-klick knapp 1) Laddar karta Jord (F eller mus-klick knapp 2) Zoom (Z eller mus-klick knapp 3) Parameters of Urban locations Option command window Använd koordinat mode Använd solstånd mode Använd distans mode Använd timme extension mode Använd nationell tidszon mode Ändra tiden Framåt Ändra tiden Bakåt Justera tidsvariabel Återställ Global tid Rita/Radera Natt Rita/Radera Sön och Måne Rita/Radera meridianer Rita/Radera breddgrader Rita/Radera Tropik/Ekvator/Arktik cirklar Öppnar ny kartfönster Slutar fönster Ikonifiera fönster Förnya kartfönster Adjust window width to screen size Back till föregående kartfönster mått Växla tidszon och kartfönster Aktivera kommando (-command option) Avsluta program # Zoom window help Activate new zoom settings Return to previous zoom settings Cancel change in zoom settings Set aspect by resizing main window Cycle through zoom modes 0,1,2 Zoom in by factor 1.2 Zoom out by factor 1/1.2 = 0.833 Return to zoom factor = 1 (full map) Center zoom area on selected city or location Synchronize zoom operation # Option window help Activate the option Erase the option command line Synchronize windows or not Copy map to root window Erase map from root window Start/stop animation # Urban window help Use degrees, minutes, seconds, or decimal degrees Search/select city Modify city parameters Create new city location Delete city # End sunclock-3.57/specs/0000755000000000000000000000000010446037041011273 5ustar sunclock-3.57/specs/sunclock_huge_map.spec0000444000000000000000000000310510110741603015624 0ustar %define name sunclock_huge_earthmap %define version 1.0 %define release 1 %define prefix /usr Summary: The 11 Mb JPG map for Sunclock, the sophisticated clock. Summary(fr): La carte de 11 Mb pour le programme Sunclock. Name: %{name} Version: %{version} Release: %{release} Serial: 0 Copyright: GPL Group: Sciences/Astronomy # Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}%{release}.tgz Source: http://frmas.free.fr/files/%{name}-%{version}.tgz URL: http://frmas.free.fr/li_1.htm BuildRoot: %{_tmppath}/%{name}-buildroot Prefix: %{_prefix} # Requires: sunclock %description Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". This file provides a huge jpg earth map (11mb). %description -l fr Sunclock affiche une carte de la Terre, et présente quelle portion est illuminée par le soleil. Il peut passer d'un aspect horloge carte miniature à une carte complete de la terre. Ce fichier fournit une superbe carte de plus de 11mb. %prep rm -rf $RPM_BUILD_ROOT %setup -q %build # %install mkdir -p $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large install sunclock_huge_earthmap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/sunclock_huge_earthmap.jpg chmod 0644 $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/sunclock_huge_earthmap.jpg %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0644) %{prefix}/share/sunclock/earthmaps/large/sunclock_huge_earthmap.jpg %changelog * Tue Jun 12 2001 Francois Massonneau - First release sunclock-3.57/specs/sunclock.spec0000444000000000000000000000716210272367014013777 0ustar %define name sunclock %define version 3.54 %define release 1 %define prefix /usr Summary: The sophisticated clock for the X Window system. Summary(fr): Une représentation de l'illumination terrestre. Name: %{name} Version: %{version} Release: %{release} Serial: 0 Copyright: GPL Group: Sciences/Astronomy # Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}%{release}.tgz Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}.tgz URL: http://freshmeat.net/projects/sunclock/ BuildRoot: %{_tmppath}/%{name}-buildroot Prefix: %{_prefix} Requires: libc.so.6(GLIBC_2.0) %description Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". The clock window displays a small map of the Earth and therefore occupies little space on the screen, while the "map window" displays a large map and offers more advanced functions. %description -l fr Sunclock affiche une carte de la Terre, et présente quelle portion est illuminée par le soleil. Il peut passer d'un aspect horloge carte miniature à une carte complete de la terre. Plusieurs fonctionnalités sont implémentées, notamment la possibilité de changer de cartes à volonté, un affichage ou non de la zone éclairée, du soleil, etc... %prep rm -rf $RPM_BUILD_ROOT %setup -q %build xmkmf make CDEBUGFLAGS="$RPM_OPT_FLAGS" CXXDEBUGFLAGS="$RPM_OPT_FLAGS" # %install make install DESTDIR=$RPM_BUILD_ROOT%{prefix} make install.man DESTDIR=$RPM_BUILD_ROOT%{prefix} if [ -f $RPM_BUILD_ROOT%{prefix}/X11R6/man/man1/sunclock.1x ]; then find $RPM_BUILD_ROOT%{prefix}/X11R6/man/man1/sunclock.1x -type f -exec bzip2 -9f {} \; fi # ajouté les trois lignes suivantes le 26/06/2001 mkdir -p $RPM_BUILD_ROOT/usr/share/icons # install wm_icons/sunclock.xpm -m 644 $RPM_BUILD_ROOT/usr/share/icons/sunclock.xpm install wm_icons/sunclock2.xpm -m 644 $RPM_BUILD_ROOT/usr/share/icons/sunclock2.xpm # ajouté les six lignes suivantes le 30/08/2001 mkdir -p $RPM_BUILD_ROOT/usr/share/applnk-mdk/Favorites/Sciences install /home/fm/RPM/SPECS/Sunclock.kdelnk.file -m 644 $RPM_BUILD_ROOT/usr/share/applnk-mdk/Favorites/Sciences/Sunclock.desktop install /home/fm/RPM/SPECS/.directory.sunclock.file -m 644 $RPM_BUILD_ROOT/usr/share/applnk-mdk/Favorites/.directory mkdir -p $RPM_BUILD_ROOT/usr/share/applnk/Favorites/Sciences install /home/fm/RPM/SPECS/Sunclock.kdelnk.file -m 644 $RPM_BUILD_ROOT/usr/share/applnk/Favorites/Sciences/Sunclock.kdelnk install /home/fm/RPM/SPECS/.directory.sunclock.file -m 644 $RPM_BUILD_ROOT/usr/share/applnk/Favorites/.directory %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0755) %doc CHANGES coordinates.txt COPYING INSTALL README TODO VMF.txt WARNING %{prefix}/share/sunclock/Sunclockrc %{prefix}/share/sunclock/earthmaps/vmf/* %{prefix}/share/sunclock/i18n/* %{prefix}/X11R6/bin/sunclock %{prefix}/X11R6/man/man1/sunclock.1* # ajouté les deux lignes suivantes le 26/06/2001 # %{prefix}/share/icons/sunclock.xpm %{prefix}/share/icons/sunclock2.xpm # ajouté les quatre lignes suivantes le 30/08/2001 %{prefix}/share/applnk-mdk/Favorites/Sciences/Sunclock.desktop %{prefix}/share/applnk/Favorites/Sciences/Sunclock.kdelnk %{prefix}/share/applnk-mdk/Favorites/.directory %{prefix}/share/applnk/Favorites/.directory %changelog * Tue Aug 30 2001 Francois Massonneau - Add files needed for K Menu entries * Tue Aug 14 2001 Francois Massonneau - Change the spec file to match the 3.5x serie * Tue Jun 26 2001 Francois Massonneau - Add the Sunclock icon during the install * Tue Mar 06 2001 Francois Massonneau - First spec file sunclock-3.57/specs/sunclock_maps_package.spec0000444000000000000000000000671610110741607016471 0ustar %define name sunclock_maps_package %define version 1.0 %define release 1 %define prefix /usr Summary: Earth maps package for Sunclock, the sophisticated clock. Summary(fr): Ensemble de cartes pour le programme Sunclock. Name: %{name} Version: %{version} Release: %{release} Serial: 0 Copyright: GPL Group: Sciences/Astronomy # Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}%{release}.tgz Source: http://frmas.free.fr/files/%{name}-%{version}.tgz URL: http://frmas.free.fr/li_1.htm BuildRoot: %{_tmppath}/%{name}-buildroot Prefix: %{_prefix} # Requires: sunclock %description Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". This file provides a lot of earth maps with different definition for Sunclock. %description -l fr Sunclock affiche une carte de la Terre, et présente quelle portion est illuminée par le soleil. Il peut passer d'un aspect horloge carte miniature à une carte complete de la terre. Ce fichier fournit un ensemble de cartes de la terre pour Sunclock. %prep rm -rf $RPM_BUILD_ROOT %setup -q %build # %install mkdir -p $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large mkdir -p $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg install altitude.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/altitude.jpg install biomap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/biomap.jpg install caida.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/caida.jpg install crustalplates.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/crustalplates.jpg install depthmap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/depthmap.jpg install elevation.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/elevation.jpg install photo1.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/photo1.jpg install photo2.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/photo2.jpg install rainmap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/rainmap.jpg install temperature.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/temperature.jpg install biomap_big.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/biomap_big.jpg install earthlights.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/earthlights.jpg install photo_big.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/photo_big.jpg install photo_medium.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/photo_medium.jpg chmod 0644 $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/* chmod 0644 $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/large/* %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0644) %{prefix}/share/sunclock/earthmaps/jpeg/altitude.jpg %{prefix}/share/sunclock/earthmaps/jpeg/biomap.jpg %{prefix}/share/sunclock/earthmaps/jpeg/caida.jpg %{prefix}/share/sunclock/earthmaps/jpeg/crustalplates.jpg %{prefix}/share/sunclock/earthmaps/jpeg/depthmap.jpg %{prefix}/share/sunclock/earthmaps/jpeg/elevation.jpg %{prefix}/share/sunclock/earthmaps/jpeg/photo1.jpg %{prefix}/share/sunclock/earthmaps/jpeg/photo2.jpg %{prefix}/share/sunclock/earthmaps/jpeg/rainmap.jpg %{prefix}/share/sunclock/earthmaps/jpeg/temperature.jpg %{prefix}/share/sunclock/earthmaps/large/biomap_big.jpg %{prefix}/share/sunclock/earthmaps/large/earthlights.jpg %{prefix}/share/sunclock/earthmaps/large/photo_big.jpg %{prefix}/share/sunclock/earthmaps/large/photo_medium.jpg %changelog * Tue Jun 12 2001 Francois Massonneau - First release sunclock-3.57/specs/sunclock_jpeg_big_maps.spec0000444000000000000000000000503310110741606016632 0ustar %define name sunclock_jpeg_big_maps %define version 1.0 %define release 1 %define prefix /usr Summary: Big resolution maps package for Sunclock. Summary(fr): Ensemble de cartes résolution moyenne pour Sunclock. Name: %{name} Version: %{version} Release: %{release} Serial: 0 Copyright: GPL Group: Sciences/Astronomy # Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}%{release}.tgz Source: http://frmas.free.fr/files/%{name}-%{version}.tgz URL: http://frmas.free.fr/li_1.htm BuildRoot: %{_tmppath}/%{name}-buildroot Prefix: %{_prefix} # Requires: sunclock %description Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". This file provides a lot of earth maps with different definition for Sunclock. %description -l fr Sunclock affiche une carte de la Terre, et présente quelle portion est illuminée par le soleil. Il peut passer d'un aspect horloge carte miniature à une carte complete de la terre. Ce fichier fournit un ensemble de cartes de la terre pour Sunclock. %prep rm -rf $RPM_BUILD_ROOT %setup -q %build # %install mkdir -p $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big install jpeg/big/biomap_big.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/biomap_big.jpg install jpeg/big/earthlights.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/earthlights.jpg install jpeg/big/elevation_big.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/elevation_big.jpg install jpeg/big/photo_big1.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/photo_big1.jpg install jpeg/big/photo_big2.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/photo_big2.jpg install jpeg/big/population.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/population.jpg install jpeg/big/topography.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/topography.jpg chmod 0644 $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/big/* %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0644) %{prefix}/share/sunclock/earthmaps/jpeg/big/biomap_big.jpg %{prefix}/share/sunclock/earthmaps/jpeg/big/earthlights.jpg %{prefix}/share/sunclock/earthmaps/jpeg/big/elevation_big.jpg %{prefix}/share/sunclock/earthmaps/jpeg/big/photo_big1.jpg %{prefix}/share/sunclock/earthmaps/jpeg/big/photo_big2.jpg %{prefix}/share/sunclock/earthmaps/jpeg/big/population.jpg %{prefix}/share/sunclock/earthmaps/jpeg/big/topography.jpg %changelog * Tue Oct 12 2001 Francois Massonneau 1.0-1 - First release sunclock-3.57/specs/sunclock_jpeg_medium_maps.spec0000444000000000000000000000554510110741605017360 0ustar %define name sunclock_jpeg_medium_maps %define version 1.0 %define release 1 %define prefix /usr Summary: Medium resolution maps package for Sunclock. Summary(fr): Ensemble de cartes résolution moyenne pour Sunclock. Name: %{name} Version: %{version} Release: %{release} Serial: 0 Copyright: GPL Group: Sciences/Astronomy # Source: ftp://ftp.ac-grenoble.fr/ge/geosciences/%{name}-%{version}%{release}.tgz Source: http://frmas.free.fr/files/%{name}-%{version}.tgz URL: http://frmas.free.fr/li_1.htm BuildRoot: %{_tmppath}/%{name}-buildroot Prefix: %{_prefix} # Requires: sunclock %description Sunclock displays a map of the Earth and shows which portion is illuminated by the sun. It can commute between two states, the "clock window" and the "map window". This file provides a lot of earth maps with different definition for Sunclock. %description -l fr Sunclock affiche une carte de la Terre, et présente quelle portion est illuminée par le soleil. Il peut passer d'un aspect horloge carte miniature à une carte complete de la terre. Ce fichier fournit un ensemble de cartes de la terre pour Sunclock. %prep rm -rf $RPM_BUILD_ROOT %setup -q %build # %install mkdir -p $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium install jpeg/medium/altitude.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/altitude.jpg install jpeg/medium/biomap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/biomap.jpg install jpeg/medium/caida.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/caida.jpg install jpeg/medium/depthmap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/depthmap.jpg install jpeg/medium/elevation.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/elevation.jpg install jpeg/medium/photo1.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/photo1.jpg install jpeg/medium/photo2.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/photo2.jpg install jpeg/medium/rainmap.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/rainmap.jpg install jpeg/medium/temperature.jpg $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/temperature.jpg chmod 0644 $RPM_BUILD_ROOT/usr/share/sunclock/earthmaps/jpeg/medium/* %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0644) %{prefix}/share/sunclock/earthmaps/jpeg/medium/altitude.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/biomap.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/caida.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/depthmap.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/elevation.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/photo1.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/photo2.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/rainmap.jpg %{prefix}/share/sunclock/earthmaps/jpeg/medium/temperature.jpg %changelog * Tue Oct 12 2001 Francois Massonneau 1.0-1 - First release sunclock-3.57/sunclock.c0000644000000000000000000060015511046566470012164 0ustar /***************************************************************************** * * Sunclock version 3.xx by Jean-Pierre Demailly * * Is derived from the previous versions whose notices appear below. * See CHANGES for more explanation on the (quite numerous changes and * improvements). Version 3.xx is now published under the GPL. */ /***************************************************************************** * * Sun clock. X11 version by John Mackin. * * This program was derived from, and is still in part identical with, the * Suntools Sun clock program whose author's comment appears immediately * below. Please preserve both notices. * * The X11R3/4 version of this program was written by John Mackin, at the * Basser Department of Computer Science, University of Sydney, Sydney, * New South Wales, Australia; . This program, like * the one it was derived from, is in the public domain: `Love is the * law, love under will.' */ /***************************************************************************** Sun clock Designed and implemented by John Walker in November of 1988. Version for the Sun Workstation. The algorithm used to calculate the position of the Sun is given in Chapter 18 of: "Astronomical Formulae for Calculators" by Jean Meeus, Third Edition, Richmond: Willmann-Bell, 1985. This book can be obtained from: Willmann-Bell P.O. Box 35025 Richmond, VA 23235 USA Phone: (804) 320-7016 This program was written by: John Walker Autodesk, Inc. 2320 Marinship Way Sausalito, CA 94965 USA Fax: (415) 389-9418 Voice: (415) 332-2344 Ext. 2829 Usenet: {sun,well,uunet}!acad!kelvin or: kelvin@acad.uu.net modified for interactive maps by Stephen Martin Fujitsu Systems Business of Canada smartin@fujitsu.ca This program is in the public domain: "Do what thou wilt shall be the whole of the law". I'd appreciate receiving any bug fixes and/or enhancements, which I'll incorporate in future versions of the program. Please leave the original attribution information intact so that credit and blame may be properly apportioned. Revision history: 1.0 12/21/89 Initial version. 8/24/89 Finally got around to submitting. 1.1 8/31/94 Version with interactive map. 1.2 10/12/94 Fixes for HP and Solaris, new icon bitmap 1.3 11/01/94 Timezone now shown in icon next minor revisions by Jean-Pierre Demailly (demailly@ujf-grenoble.fr) 1.4 04/03/99 Change in city management 1.5 15/03/99 Color support 1.6 28/03/99 Iconic stuff fixed 1.7 17/08/99 Calculation of city distances 1.8 20/08/99 Fixed small bug in mono mode 1.9 21/01/00 Iconic stuff fixed again (didn't work for all WMHints!) 2.0 21/04/00 Added XFlush in doTimeout to force update 2.1 06/06/00 Updated latlong.txt with a better source major rewrite of GUI (Jean-Pierre Demailly, demailly@ujf-grenoble.fr) 3.00 08/26/00 Many bug corrections, GUI improvements (keyboard and mouse controls), new functions, resulting in a much more powerful program. 3.04 09/07/00 Final bug fix release of 3.0x 3.10 10/03/00 Menu window and a lot of new improvements as well. 3.13 10/26/00 Final bug fix release of 3.1x 3.20 11/20/00 Drastic GUI and features improvements (color maps, loadable xpm maps,...), hopefully sunclock now looks nice! 3.21 12/04/00 Final bug fix release of 3.2x x<5 3.25 12/21/00 Dockable, multi-window version 3.28 01/15/01 Final bug fix release of 3.2x x>=5 3.30 02/20/01 Sunclock now loads JPG images, and images are resizable 3.32 03/19/01 Implementation of the zoom widget 3.34 03/28/01 Vast improvements in the zoom widget 3.35 04/11/01 Correctly handles bigendian machines + option widget 3.38 04/17/01 Substantial improvements in option handling still buggy though (depending on WM) 3.41 05/19/01 The Moon is shown on the map 3.43 06/14/01 Cities can be managed at runtime and changed with zoom 3.44 06/22/01 Sunclock can write the map to the root window */ #include #include #include #include #include #include #include #include #define DEFVAR #include "sunclock.h" #include "langdef.h" #include "bitmaps.h" /* * external routines */ extern long time(); #ifdef NEW_CTIME extern char * timezone(); #endif extern double jtime(); extern double gmst(); extern long jdate(); extern void sunpos(); extern double phase(); extern char * salloc(); extern int readVMF(); extern int readGIF(); extern int readJPEG(); extern int readXPM(); extern int readPNG(); extern void free_dirlist(); extern char *tildepath(); /* Returns path to ~/ */ extern int getPlacement(); extern int getState(); extern int getNumCmd(); extern Window newWindow(); extern void showManual(); extern void checkGeom(); extern void adjustGeom(); extern void setSizeHints(); extern void setClassHints(); extern void shutDown(); extern void setProtocols(); extern void destroyGCs(); extern void setupMenu(); extern void PopMenu(); extern void showMenuHint(); extern void processMenuAction(); extern void setupFilesel(); extern void PopFilesel(); extern void processFileselAction(); extern void checkZoomSettings(); extern void setZoomDimension(); extern void setZoomAspect(); extern void showZoomHint(); extern void setupZoom(); extern void PopZoom(); extern void activateZoom(); extern void processZoomAction(); extern void showOptionHint(); extern void resetStringLength(); extern void setupOption(); extern void PopOption(); extern void activateOption(); extern void processOptionAction(); extern void showUrbanHint(); extern void updateUrbanEntries(); extern void setupUrban(); extern void PopUrban(); extern void activateUrban(); extern void processUrbanAction(); extern void setAuxilWins(); extern void RaiseAndFocus(); void doTimeout(); char share_i18n[] = SHAREDIR"/i18n/Sunclock.**"; char app_default[] = SHAREDIR"/Sunclockrc"; char * ProgName; char * Title = NULL; char * widget_type[7] = { "clock", "map", "menu", "file selector", "zoom", "option", "urban selector" }; char * ClassName = NULL; char * ClockClassName = NULL; char * MapClassName = NULL; char * AuxilClassName = NULL; char * Default_img_file = NULL; char * Clock_img_file = NULL; char * Map_img_file = NULL; char * Zoom_img_file = NULL; char * share_maps_dir = NULL; char * image_dir = NULL; char * rc_file = NULL; char * vmfcolors = NULL; char * vmfrange = NULL; char * vmfcoordformat = NULL; char * ExternAction = NULL; char * EditorCommand = NULL; char **DateFormat = NULL; char * ListFormats = NULL; char **dirtable = NULL; char * freq_filter = ""; char oldlanguage[4] = "en"; char language[4] = ""; Pixmap textpix = 0, zoompix = 0, rootpix = 0; ; struct Sundata *Seed = NULL, *MenuCaller = NULL, *FileselCaller = NULL, *ZoomCaller = NULL, *OptionCaller = NULL, *UrbanCaller = NULL, *RootCaller = NULL; char *Color[NUMPIXELS]; char *DefaultColor[NUMPIXELS] = { "White", "White", "Grey92", "Grey92", "Grey92", "White", "White", "Grey84", "White", "Black", "Black", "Black", "Black", "Grey50", "Grey95", "White", "Black", "Black", "Black", "Black", "Red", "Black", "SkyBlue2", "Brown", "SkyBlue2", "Blue", "Magenta", "Red", "Orange", "Red", "Red3", "Pink1", "Pink2", "Yellow", "Khaki", "Black", "Black", "Black", "Black"}; #define FALLBACKTOWHITE 9 char *colorfield[NUMPIXELS] = { "clockbg", "mapbg", "menubg", "clockstripbg", "mapstripbg", "zoombg", "optionbg", "buttonbg", "star", "clockfg", "mapfg", "menufg", "buttonfg1", "buttonfg2", "buttonfg3", "buttonfg4", "clockstripfg", "mapstripfg", "zoomfg", "optionfg", "weak", "root", "caret", "change", "choice", "directory", "image", "cityname", "city0", "city1", "city2", "mark1", "mark2", "sun", "moon", "line", "meridian", "parallel", "tropic"}; char * SunFont[NUMFONTS]; char * DefaultFont[NUMFONTS]= { "6x10", "6x13", "6x13", "6x10", "6x10", "6x13"}; char * fontfield[NUMFONTS] = { "clockstrip", "mapstrip", "coord", "city", "label", "menu"}; char * Display_name = NULL; char * CityInit = NULL; char * SpotSizes = NULL; char * SizeLimits = NULL; Display * dpy; Visual * visual; Colormap cmap0, tmp_cmap; Flags gflags; ZoomSettings gzoom; int scr; int bigendian; int color_depth; int color_pad; int bytes_per_pixel; int total_colors; int text_input = NULL_INPUT; int textheight = 0; int textwidth = 40; int coordvalheight; int coordvalwidth; int extra_width = 10; int focus_in = 0; int button_pressed = 0; int control_key = 0; int precedence = 0; int option_changes = 1; int auxil_changed = 0; int erase_obj = 0; int root_period = 30; int screen_saver = 0; int random_rootpos = 0; int zoom_mode = 0; int zoom_active = 1; KeySym menu_newhint = ' '; char zoom_newhint = ' '; char option_newhint = ' '; char urban_newhint = ' '; char menu_lasthint = '\0'; char zoom_lasthint = '\0'; char option_lasthint = '\0'; char urban_lasthint = '\0'; TextEntry option_entry; TextEntry urban_entry[5]; Pixel black, white; Atom wm_delete_window, wm_protocols; Window Root, Menu = 0, Filesel = 0, Zoom = 0, Option = 0, Urban = 0; struct Geometry MapGeom = { 0, 30, 30, 792, 396, 320, 160 }; struct Geometry ClockGeom = { 0, 30, 30, 128, 64, 48, 24 }; struct Geometry MenuGeom = { 0, 0, 30, 792, 40, 792, 40 }; struct Geometry FileselGeom= { 0, 0, 30, 450, 180, 400, 80 }; struct Geometry ZoomGeom = { 0, 0, 30, 500, 320, 360, 250 }; struct Geometry OptionGeom = { 0, 0, 30, 630, 80, 630, 80 }; struct Geometry UrbanGeom = { 0, 0, 30, 640, 120, 360, 120 }; int city_cat = 5; int *city_spotsizes; int *city_sizelimits; int urban_t[5], urban_x[5], urban_y[5], urban_w[5]; int win_type = 0; int placement = -1; int place_shiftx = 0; int place_shifty = 0; int color_alloc_failed = 0; int num_formats; int runlevel; int verbose = 1; int reformat = 0; int min_zoomwidth = 0; int min_zoomheight = 0; int citycheck = 0; int num_lines; int num_table_entries; int label_shift = 0; int filesel_shift = 0; int zoom_shift = 0; int horiz_drift = 0; int vert_drift = 0; int do_menu = 0; int do_filesel = 0; int do_zoom = 0; int do_option = 0; int do_urban = 0; int do_root = 0; int do_hint = 0; int do_dock = 0; int do_sync = 0; int do_zoomsync = 0; int time_jump = 0; long last_time = 0; long progress_value[6] = { 60, 3600, 86400, 604800, 2592000, 0 }; double darkness = 0.5; double rootdx = 0.5; double rootdy = 0.5; double atm_refraction = ATM_REFRACTION; double atm_diffusion = ATM_DIFFUSION; /* Root and last records for cities */ City position, *cityroot = NULL, *citylast = NULL, *cityinit = NULL; /* * String copy and reallocation/deallocation routine */ void StringReAlloc(t, s) char **t, *s; { if (*t) free(*t); if (s) { *t = (char *) salloc((strlen(s)+1)*sizeof(char)); strcpy(*t, s); } else *t = NULL; } /* * Read language i18n file */ void readLanguage() { FILE *rc; /* File pointer for rc file */ char buf[1028]; /* Buffer to hold input lines */ int i, j, k, l, m, p, tot; i = strlen(share_i18n); for (j=0; j<=1; j++) share_i18n[i+j-2] = tolower(language[j]); j = k = l = m = 0; tot = 2; if ((rc = fopen(share_i18n, "r")) != NULL) { while (fgets(buf, 1024, rc)) { if (buf[0] != '#') { p = strlen(buf) - 1; if (p>=0 && buf[p]=='\n') buf[p] = '\0'; if (j<7) { strcpy(Day_name[j], buf); j++; } else if (k<12) { strcpy(Month_name[k], buf); k++; } else if (l] [-dateformat string1|string2|...]\n" SP"[-image file] [-clockimage file] [-mapimage file] [-zoomimage file]\n" SP"[-clockgeom ] [-mapgeom ]\n" SP"[-auxilgeom ] [-menugeom ] [-selgeom ]\n" SP"[-zoomgeom ] [-optiongeom ] [-urbangeom ]\n" SP"[-title name] [-mapclassname name] [-clockclassname name]\n" SP"[-auxilclassname name] [-classname name]\n" SP"[-setfont |{|}]\twhere\n" SP"\t = clockstrip, mapstrip, coord, city, label, menu\n" SP"\t = comma separated list (optional)\n" SP"[-verbose] [-silent] [-synchro] [-nosynchro] [-zoomsync] [-nozoomsync]\n" SP"[-colorlevel level] [-aspect mode]\n" SP"[-placement (random, fixed, center, NW, NE, SW, SE)]\n" SP"[-placementshift x, y] [-extrawidth value]\n" SP"[-decimal] [-dms] [-city name] [-position latitude|longitude]\n" SP"[-addcity size|name|lat|lon|tz] [-removecity name (name|lat|lon)]\n" SP"[-rootdx value] [-rootdy value] [-fixedrootpos] [-randomrootpos]\n" SP"[-screensaver] [-noscreensaver] [-rootperiod value (in seconds)]\n" SP"[-animation] [-noanimation] [-animateperiod value (in seconds)]\n" SP"[-progress number[s,m,h,d,M,Y]] [-jump number[s,m,h,d,M,Y]]\n" SP"[-shading mode=0,1,2,3,4,5] [-diffusion value] [-refraction value]\n" SP"[-night] [-terminator] [-twilight] [-luminosity] [-lightgradient]\n" SP"[-nonight] [-darkness value<=1.0] [-colorscale number>=1]\n" SP"[-coastlines] [-contour] [-landfill] [-fillmode number=0,1,2]\n" SP"[-mag value] [-magx value] [-magy value] [-dx value ] [-dy value]\n" SP"[-spotsizes s1|s2|s3|... (0<=si<=5, 1<=i<=citycategories)]\n" SP"[-sizelimits w1|w2|w3|... (wi = zoom width values)]\n" SP"[-citymode mode=0,1,2,3] [-objectmode mode=0,1,2]\n" SP"[-sun] [-nosun] [-moon] [-nomoon] [-tropics] [-notropics]\n" SP"[-meridianmode mode=0,1,2,3] [-parallelmode mode=0,1,2,3]\n" SP"[-meridianspacing value] [-parallelspacing value]\n" SP"[-dottedlines] [-plainlines] [-bottomline] [-nobottomline]\n" SP"[-reformat] [-vmfcolors color1|color2|color3...]\n" SP"[-vmfrange a|b|c|d] [-vmfcoordformat format] [-vmfflags integer]\n" SP"[-setcolor field|color]\n\n" SP"field = clockbg, clockfg, mapbg, mapfg, menubg, menufg,\n" SP"buttonbg, buttonfg1, buttonfg2, buttonfg3, buttonfg4,\n" SP"clockstripbg, clockstripfg, mapstripbg, mapstripfg,\n" SP"cityname, zoombg, zoomfg, optionbg, optionfg, caret, change, choice,\n" SP"directory, image, city0, city1, city2, mark1, mark2, line,\n" SP"meridian, parallel, tropic, sun, moon,\n\n" SP"color = red, yellow, ... (rgb.txt) / hexadecimal #ijklmn\n\n%s\n\n", ProgName, VERSION, COPYRIGHT, ProgName, Label[L_LISTOPTIONS], Label[L_CONFIG]); } void ListMenu() { int i; fprintf(stderr, "%s\n", Label[L_SHORTHELP]); for (i=0; i16) { if (bigendian) k = bytes_per_pixel - 3; for (i = 0; i < w; i++) { j = 3 * (((i+dx) * wp)/zw); if (bigendian) { c[k] = scan[j]; c[k+1] = scan[j+1]; c[k+2] = scan[j+2]; } else { c[k] = scan[j+2]; c[k+1] = scan[j+1]; c[k+2] = scan[j]; } k += bytes_per_pixel; } } else if (color_depth==16) for (i = 0; i < w; i++) { j = 3 * (((i+dx) * wp)/zw); r = scan[j]; g = scan[j+1]; b = scan[j+2]; /* blue c[k] = 31; c[k+1] = 0; green c[k] = 224 (low weight) c[k+1] = 7 (high weight) red c[k] = 0; c[k+1] = 248; */ if (bigendian) { c[k+1] = (((b&248)>>3) | ((g&28)<<3)); c[k] = (((g&224)>>5) | (r&248)); } else { c[k] = (((b&248)>>3) | ((g&28)<<3)); c[k+1] = (((g&224)>>5) | (r&248)); } k += 2; } else if (color_depth==15) for (i = 0; i < w; i++) { j = 3 * (((i+dx) * wp)/zw); r = scan[j]; g = scan[j+1]; b = scan[j+2]; /* blue c[k] = 31; c[k+1] = 0; green c[k] = 224 (low weight) c[k+1] = 7 (high weight) red c[k] = 0; c[k+1] = 248; */ if (bigendian) { c[k+1] = (b&248)>>3 | (g&56)<<2; c[k] = (g&192)>>6 | (r&248)>>1; } else { c[k] = (b&248)>>3 | (g&56)<<2; c[k+1] = (g&192)>>6 | (r&248)>>1; } k += 2; } else { for (i = 0; i < w; i++) { j = 3 * (((i+dx) * wp)/zw); r = scan[j]; g = scan[j+1]; b = scan[j+2]; c[k] = (unsigned char) (((7*g)/256)*36)+(((6*r)/256)*6)+((6*b)/256); m = (unsigned char)c[k]; lr[m] += r; lg[m] += g; lb[m] += b; lnum[m] += 1; k += 1; } } } void str2numval(s, val, max) char *s; int *val; int max; { int i, j, l; char *ptr; l = strlen(s); j = 0; ptr = s; for (i=0; i<=l; i++) { if (s[i] == '|' || i == l) { s[i] = '\0'; if (j>=city_cat) break; val[j] = atoi(ptr); if (max>0 && val[j]>max) val[j] = max; ++j; ptr = s+i+1; if (i256) gflags.colorscale = 256; if ((gflags.colorlevel=2)) gflags.shading = 1; if (color_depth<=16) gflags.darkness = (unsigned short) ((1.0-darkness) * 255.25); else gflags.darkness = (unsigned short) ((1.0-darkness) * 32767.25); if (do_dock) win_type = 0; str2numval(SpotSizes, city_spotsizes, CITYBITMAPS); str2numval(SizeLimits, city_sizelimits, -1); } int needMore(argc, argv) int * argc; char ** argv; { -- *argc; if (*argc == 0) { if (runlevel == PARSECMDLINE) { Usage(); exit(1); } else if (runlevel == RUNTIMEOPTION) { fprintf(stderr, "Invalid option specification\n"); runlevel = FAILEDOPTION; } else fprintf(stderr, "Error in config file : \n"); fprintf(stderr, "%s: option `%s' (with no argument) incorrect\n", ProgName, *argv); if (runlevel == PARSECMDLINE) exit(1); return 1; } return 0; } void getGeom(s, g) register char * s; register struct Geometry * g; { register int mask; mask = XParseGeometry(s, &g->x, &g->y, &g->width, &g->height); if (mask == 0) { fprintf(stderr, "%s: `%s' is a bad geometry specification\n", ProgName, s); return; } if (g->widthw_mini) g->width = g->w_mini; if (g->heighth_mini) g->height = g->h_mini; g->mask = mask; if ( placement<=RANDOM && (mask & ( XValue | YValue)) ) placement = FIXED; } void parseFormats(char * format) { int i, j, l; l = strlen(format); j = 1; while (j>0) { j = 0; if (format[0]=='|') { ++format; --l; j = 1;} if (l>=2 && format[l-1]=='|' && format[l-2]!= '%') { format[l-1]='\0'; --l; j = 1; } } num_formats = 1; for (i=1; inewzoom.mode <= 1) f = 1.0; else f = sin(M_PI*Context->newzoom.fdy); change = 0; i = Context->geom.width; j = (unsigned int) (0.5 + Context->newzoom.fx * (double)Context->geom.width / ( 2.0 * Context->newzoom.fy * f) ); b = DisplayHeight(dpy,scr) - Context->hstrip - vert_drift - 5; if (j<=0) j=1; if (j>b) { i = (Context->geom.width * b) / j; j = b; } Geom = (Context->wintype)? &MapGeom : &ClockGeom; if (jh_mini) { i = (i * Geom->h_mini)/j; j = Geom->h_mini; } if (Context->geom.width != i) { change = 1; Context->geom.width = Geom->width = i; } if (Context->geom.height != j) { change = 1; Context->geom.height = Geom->height = j; } if (change && verbose) fprintf(stderr, "Resizing window to width = %d , height = %d\n", i, j); return change; } void checkRCfile(argc, argv) register int argc; register char ** argv; { int i; for (i=1; ilat = -100.0; return; } city->lat = dms2decim(lat); if (fabs(city->lat)>90.0) city->lat = -100.0; city->lon = dms2decim(lon); city->lon = fixangle(city->lon + 180.0) - 180.0; } City * searchCityLocation(params) char *params; { City *c; char name[80], lat[80], lon[80]; double dlat=0.0, dlon=0.0; int i, l, complete = 0; if (!params || !*params) return NULL; if (index(params, '|')) { l =strlen(params); for (i=0; i0 && name[l-1]=='\037') { --l; name[l] = '\0'; } for (i=0; iname, name)) && (!complete || (fabs(c->lon-dlon)<0.5 && fabs(c->lat-dlat)<0.5))) return c; c = c->next; } return NULL; } void freecity(c) City * c; { if (cityinit==c) cityinit = NULL; free(c->name); free(c); } void removeCity(c) City *c; { City *cp, *cn; if (!c) return; cn = c->next; freecity(c); if (c == cityroot) { cityroot = cn; return; } cp = cityroot; while (cp) { if (cp->next == c) { cp->next = cn; if (c == citylast) citylast = cp; return; } cp = cp->next; } } City * addCity(longparams) char *longparams; { City *city; char name[80], lat[80], lon[80], tz[80]; char params[256]; int i, size; i = 0; if (longparams) { while (longparams[i] != '\0') { if (longparams[i]==' ') longparams[i] = '\037'; if (longparams[i]=='|') longparams[i] = ' '; ++i; } if (sscanf(longparams,"%d %s %s %s %s", &size, name, lat, lon, tz)<5) { fprintf(stderr, "Incorrect number of parameters in -addcity\n"); return NULL; } i = 0; while (name[i] != '\0') { if (name[i]=='\037') name[i] = ' '; ++i; } } else { if (do_urban) { if (!*urban_entry[0].string) { strcpy(urban_entry[0].string, "???"); return NULL; } strcpy(name, urban_entry[0].string); if (!*urban_entry[1].string) { strcpy(urban_entry[1].string, "???"); return NULL; } strcpy(tz, urban_entry[1].string); if (!*urban_entry[2].string) return NULL; strcpy(lat, urban_entry[2].string); if (!*urban_entry[3].string) return NULL; strcpy(lon, urban_entry[3].string); if (!*urban_entry[4].string) return NULL; if (!sscanf(urban_entry[4].string, "%d", &size)) { strcpy(urban_entry[4].string, "?"); return NULL; } } else return NULL; } if (citycheck || runlevel>READSYSRC) { sprintf(params, "%s\037|%s\037|%s\037", name, lat, lon); if ((city=searchCityLocation(params))) { sprintf(params, Label[L_CITYWARNING1], name, lat, lon, "\n "); if (verbose || runlevel != READUSERRC) fprintf(stderr, "%s\n", params); if (do_urban) { urban_newhint = '?'; showUrbanHint(params); return NULL; } if (verbose || runlevel != READUSERRC) { sprintf(params, Label[L_CITYWARNING2], name); fprintf(stderr, "%s\n", params); } removeCity(city); } } /* Create the record for the city */ if ((city = (City *) calloc(1, sizeof(City))) == NULL) return NULL; /* Set up the record */ city->name = strdup(name); city->lat = dms2decim(lat); city->lon = dms2decim(lon); city->size = size; city->tz = strdup(tz); /* Link it into the list */ if (!cityroot) cityroot = citylast = city; else { citylast->next = city; citylast = city; } city ->next = NULL; return city; } void deleteMarkedCity() { City *c, *cp = NULL; if (!do_urban || !UrbanCaller) return; c = cityroot; while (c) { if (c == UrbanCaller->mark1.city) { UrbanCaller->mark1.city = NULL; if (cp) { cp->next = c->next; } else cityroot = c->next; if (c == citylast) citylast = cp; if (c == UrbanCaller->lastmarked) UrbanCaller->lastmarked = NULL; freecity(c); return; } cp = c; c = c->next; } } int readRC(); int parseColor(s) char * s; { int i, l, done = 0; char *ptr = NULL; l = strlen(s); for (i=0; i 0) { ++argv; if (!strcasecmp(*argv, "-verbose")) verbose = 1; else if (!strcasecmp(*argv, "-reformat")) reformat = 1; else if (!strcasecmp(*argv, "-silent")) verbose = 0; else if (!strcasecmp(*argv, "-synchro")) do_sync = 1; else if (!strcasecmp(*argv, "-nosynchro")) do_sync = 0; else if (!strcasecmp(*argv, "-zoomsync")) do_zoomsync = 1; else if (!strcasecmp(*argv, "-nozoomsync")) do_zoomsync = 0; else if (!strcasecmp(*argv, "-animation")) gflags.animate = 1; else if (!strcasecmp(*argv, "-noanimation")) gflags.animate = 0; else if (!strcasecmp(*argv, "-coastlines")) gflags.fillmode = 0; else if (!strcasecmp(*argv, "-contour")) gflags.fillmode = 1; else if (!strcasecmp(*argv, "-landfill")) gflags.fillmode = 2; else if (!strcasecmp(*argv, "-dottedlines")) gflags.dotted = 0; else if (!strcasecmp(*argv, "-plainlines")) gflags.dotted = 1; else if (!strcasecmp(*argv, "-bottomline")) gflags.bottom = 1; else if (!strcasecmp(*argv, "-nobottomline")) gflags.bottom = 0; else if (!strcasecmp(*argv, "-decimal")) gflags.dms = 0; else if (!strcasecmp(*argv, "-dms")) gflags.dms = gflags.dms = 1; else if (!strcasecmp(*argv, "-nonight")) gflags.shading = 0; else if (!strcasecmp(*argv, "-night")) gflags.shading = 1; else if (!strcasecmp(*argv, "-terminator")) gflags.shading = 2; else if (!strcasecmp(*argv, "-twilight")) gflags.shading = 3; else if (!strcasecmp(*argv, "-luminosity")) gflags.shading = 4; else if (!strcasecmp(*argv, "-lightgradient")) gflags.shading = 5; else if (!strcasecmp(*argv, "-tropics")) gflags.parallel |= 8; else if (!strcasecmp(*argv, "-notropics")) gflags.parallel &= 3; else if (!strcasecmp(*argv, "-sun")) gflags.objects |= 1; else if (!strcasecmp(*argv, "-nosun")) gflags.objects &= ~1; else if (!strcasecmp(*argv, "-moon")) gflags.objects |= 2; else if (!strcasecmp(*argv, "-nomoon")) gflags.objects &= ~2; else if (!strcasecmp(*argv, "-dock")) do_dock = 1; else if (!strcasecmp(*argv, "-undock")) do_dock = 0; else if (runlevel == RUNTIMEOPTION) { if (needMore(&argc, argv)) return(1); goto options_with_parameter; } else if (!strcasecmp(*argv, "-citycheck")) citycheck = 1; else if (!strcasecmp(*argv, "-clock")) win_type = 0; else if (!strcasecmp(*argv, "-map")) win_type = 1; else if (!strcasecmp(*argv, "-screensaver") && runlevel <= PARSECMDLINE) { screen_saver = 1; random_rootpos = 1; win_type = 1; } else if (!strcasecmp(*argv, "-noscreensaver") && runlevel <= PARSECMDLINE) { screen_saver = 0; random_rootpos = 0; } else if (!strcasecmp(*argv, "-fixedrootpos")) random_rootpos = 0; else if (!strcasecmp(*argv, "-randomrootpos")) random_rootpos = 1; else if (!strcasecmp(*argv, "-menu")) do_menu = 1; else if (!strcasecmp(*argv, "-nomenu")) do_menu = 0; else if (!strcasecmp(*argv, "-filesel")) do_filesel = 1; else if (!strcasecmp(*argv, "-nofilesel")) do_filesel = 0; else if (!strcasecmp(*argv, "-zoom")) do_zoom = 1; else if (!strcasecmp(*argv, "-nozoom")) do_zoom = 0; else if (!strcasecmp(*argv, "-option")) do_option = 1; else if (!strcasecmp(*argv, "-nooption")) do_option = 0; else if (!strcasecmp(*argv, "-urban")) do_urban = 1; else if (!strcasecmp(*argv, "-nourban")) do_urban = 0; else if (!strcasecmp(*argv, "-help")) { if (runlevel == PARSECMDLINE) { Usage(); exit(0); } } else if (!strcasecmp(*argv, "-listmenu")) { if (runlevel == PARSECMDLINE) { ListMenu(); exit(0); } } else if (!strcasecmp(*argv, "-version")) { fprintf(stderr, "%s: version %s, %s\n", ProgName, VERSION, COPYRIGHT); if (runlevel == PARSECMDLINE) exit(0); else return(0); } else { if (needMore(&argc, argv)) return(1); if (!strcasecmp(*argv, "-display")) StringReAlloc(&Display_name, *++argv); else if (!strcasecmp(*argv, "-sharedir")) { StringReAlloc(&share_maps_dir, *++argv); strncpy(image_dir, *argv, 1020); } else if (!strcasecmp(*argv, "-citycategories")) { city_cat = atoi(*++argv); if (city_cat <= 0) city_cat = 1; if (city_cat > 100) city_cat = 100; } else options_with_parameter : if (!strcasecmp(*argv, "-rcfile")) { if (runlevel == RUNTIMEOPTION) { runlevel = READUSERRC; if (readRC(*++argv)) runlevel = FAILEDOPTION; if (runlevel != FAILEDOPTION) runlevel = RUNTIMEOPTION; } } else if (!strcasecmp(*argv, "-language")) { strncpy(language, *++argv, 2); language[2] = '\0'; if (strcmp(language, oldlanguage)) readLanguage(); } else if (!strcasecmp(*argv, "-title")) StringReAlloc(&Title, *++argv); else if (!strcasecmp(*argv, "-clockclassname")) StringReAlloc(&ClockClassName, *++argv); else if (!strcasecmp(*argv, "-mapclassname")) StringReAlloc(&MapClassName, *++argv); else if (!strcasecmp(*argv, "-auxilclassname")) StringReAlloc(&AuxilClassName, *++argv); else if (!strcasecmp(*argv, "-classname")) StringReAlloc(&ClassName, *++argv); else if (!strcasecmp(*argv, "-colorlevel")) { gflags.colorlevel = atoi(*++argv); if (gflags.colorlevel < 0) gflags.colorlevel = 0; if (gflags.colorlevel >= FULLCOLORS) { gflags.colorlevel = FULLCOLORS; gflags.fillmode = 2; } else gflags.fillmode = 1; } else if (!strcasecmp(*argv, "-vmfflags")) { gflags.vmfflags = atoi(*++argv); option_changes |= 4; } else if (!strcasecmp(*argv, "-vmfrange")) { StringReAlloc(&vmfrange, *++argv); } else if (!strcasecmp(*argv, "-vmfcoordformat")) { StringReAlloc(&vmfcoordformat, *++argv); } else if (!strcasecmp(*argv, "-vmfcolors")) { StringReAlloc(&vmfcolors, *++argv); if (!strcmp(vmfcolors, "|")) { free(vmfcolors); vmfcolors = NULL; } option_changes |= 4; } else if (!strcasecmp(*argv, "-clockgeom")) { getGeom(*++argv, &ClockGeom); option_changes |= 8; } else if (!strcasecmp(*argv, "-mapgeom")) { getGeom(*++argv, &MapGeom); option_changes |= 16; } else if (!strcasecmp(*argv, "-image")) { StringReAlloc(&Clock_img_file, *++argv); StringReAlloc(&Map_img_file, *argv); option_changes |= 32|64; } else if (!strcasecmp(*argv, "-clockimage")) { StringReAlloc(&Clock_img_file, *++argv); option_changes |= 32; } else if (!strcasecmp(*argv, "-mapimage")) { StringReAlloc(&Map_img_file, *++argv); option_changes |= 64; } else if (!strcasecmp(*argv, "-zoomimage")) { StringReAlloc(&Zoom_img_file, *++argv); option_changes |= 2; } else if (!strcasecmp(*argv, "-auxilgeom")) { getGeom(*++argv, &MenuGeom); option_changes |= 2; ZoomGeom.x = FileselGeom.x = OptionGeom.x = UrbanGeom.x = MenuGeom.x; ZoomGeom.y = FileselGeom.y = OptionGeom.y = UrbanGeom.y = MenuGeom.y; } else if (!strcasecmp(*argv, "-menugeom")) { getGeom(*++argv, &MenuGeom); option_changes |= 2; } else if (!strcasecmp(*argv, "-selgeom")) { getGeom(*++argv, &FileselGeom); option_changes |= 2; } else if (!strcasecmp(*argv, "-zoomgeom")) { getGeom(*++argv, &ZoomGeom); option_changes |= 2; } else if (!strcasecmp(*argv, "-optiongeom")) { getGeom(*++argv, &OptionGeom); option_changes |= 2; } else if (!strcasecmp(*argv, "-urbangeom")) { getGeom(*++argv, &UrbanGeom); option_changes |= 2; } else if (!strcasecmp(*argv, "-mag")) { gzoom.fx = atof(*++argv); if (gzoom.fx < 1) gzoom.fx = 1.0; if (gzoom.fx > 100.0) gzoom.fx = 100.0; gzoom.fy = gzoom.fx; option_changes |= 4; } else if (!strcasecmp(*argv, "-magx")) { gzoom.fx = atof(*++argv); if (gzoom.fx < 1) gzoom.fx = 1.0; option_changes |= 4; } else if (!strcasecmp(*argv, "-magy")) { gzoom.fy = atof(*++argv); if (gzoom.fy < 1) gzoom.fy = 1.0; option_changes |= 4; } else if (!strcasecmp(*argv, "-dx")) { gzoom.fdx = atof(*++argv)/360.0+0.5; checkZoomSettings(&gzoom); option_changes |= 4; } else if (!strcasecmp(*argv, "-dy")) { gzoom.fdy = 0.5-atof(*++argv)/180.0; checkZoomSettings(&gzoom); option_changes |= 4; } else if (!strcasecmp(*argv, "-rootdx")) rootdx = atof(*++argv); else if (!strcasecmp(*argv, "-rootdy")) rootdy = atof(*++argv); else if (!strcasecmp(*argv, "-setfont")) parseFont(*++argv); else if (!strcasecmp(*argv, "-mapmode")) { if (!strcasecmp(*++argv, "c")) gflags.map_mode = COORDINATES; if (!strcasecmp(*argv, "d")) gflags.map_mode = DISTANCES; if (!strcasecmp(*argv, "e")) gflags.map_mode = EXTENSION; if (!strcasecmp(*argv, "l")) { StringReAlloc(&CityInit, NULL); gflags.map_mode = LEGALTIME; } if (!strcasecmp(*argv, "s")) gflags.map_mode = SOLARTIME; } else if (!strcasecmp(*argv, "-parallelmode")) { opt = atoi(*++argv); if (opt<0) opt = 0; if (opt>3) opt = 3; gflags.parallel = opt + (gflags.parallel & 8); } else if (!strcasecmp(*argv, "-parallelspacing")) { gzoom.paralspacing = atof(*++argv); if (gzoom.paralspacing<0) gzoom.paralspacing = 0; if (gzoom.paralspacing>30.0) gzoom.paralspacing = 30.0; if (gzoom.paralspacing<0.1) gzoom.paralspacing = 0.1; } else if (!strcasecmp(*argv, "-meridianmode")) { gflags.meridian = atoi(*++argv); if (gflags.meridian<0) gflags.meridian = 0; if (gflags.meridian>3) gflags.meridian = 3; } else if (!strcasecmp(*argv, "-meridianspacing")) { gzoom.meridspacing = atof(*++argv); if (gzoom.meridspacing<0) gzoom.meridspacing = 0; if (gzoom.meridspacing>30.0) gzoom.meridspacing = 30.0; if (gzoom.meridspacing<0.1) gzoom.meridspacing = 0.1; } else if (!strcasecmp(*argv, "-citymode")) { gflags.citymode = atoi(*++argv); if (gflags.citymode<0) gflags.citymode = 0; if (gflags.citymode>3) gflags.citymode = 3; } else if (!strcasecmp(*argv, "-objectmode")) { gflags.objectmode = atoi(*++argv); if (gflags.objectmode<0) gflags.objectmode = 0; if (gflags.objectmode>=2) gflags.objectmode = 2; } else if (!strcasecmp(*argv, "-spotsizes")) StringReAlloc(&SpotSizes, *++argv); else if (!strcasecmp(*argv, "-sizelimits")) StringReAlloc(&SizeLimits, *++argv); else if (!strcasecmp(*argv, "-fillmode")) { gflags.fillmode = atoi(*++argv); if (gflags.fillmode<0) gflags.fillmode = 0; if (gflags.fillmode>3) gflags.fillmode = 3; } else if (!strcasecmp(*argv, "-darkness")) { darkness = atof(*++argv); if (darkness<0.0) darkness = 0.0; if (darkness>1.0) darkness = 1.0; } else if (!strcasecmp(*argv, "-diffusion")) { atm_diffusion = atof(*++argv); if (atm_diffusion<0.0) atm_diffusion = 0.0; } else if (!strcasecmp(*argv, "-refraction")) { atm_refraction = atof(*++argv); if (atm_refraction<0.0) atm_refraction = 0.0; } else if (!strcasecmp(*argv, "-colorscale")) { opt = atoi(*++argv); if (opt<=0) opt = 1; if (opt>32767) opt = 32767; gflags.colorscale = opt; } else if (!strcasecmp(*argv, "-setcolor")) { if (parseColor(*++argv)) return(1); } else if (!strcasecmp(*argv, "-addcity")) (void) addCity(*++argv); else if (!strcasecmp(*argv, "-removecity")) { City * c = searchCityLocation(*++argv); removeCity(c); } else if (!strcasecmp(*argv, "-position")) { StringReAlloc(&CityInit, NULL); scanPosition(*++argv, &position); if (position.lat < -90.0) { fprintf(stderr, "Error in -position parameters\n"); return(1); } } else if (!strcasecmp(*argv, "-city")) { StringReAlloc(&CityInit, *++argv); position.lat = 100.0; gflags.map_mode = COORDINATES; } else if (!strcasecmp(*argv, "-placement")) { option_changes |= 2; if (strcasecmp(*++argv, "random")==0) placement = RANDOM; if (strcasecmp(*argv, "fixed")==0) { placement = FIXED; MapGeom.mask = XValue | YValue | WidthValue | HeightValue; } if (!strcasecmp(*argv, "center")) placement = CENTER; if (!strcasecmp(*argv, "nw")) placement = NW; if (!strcasecmp(*argv, "ne")) placement = NE; if (!strcasecmp(*argv, "sw")) placement = SW; if (!strcasecmp(*argv, "se")) placement = SE; } else if (!strcasecmp(*argv, "-extrawidth")) extra_width = atol(*++argv); else if (!strcasecmp(*argv, "-placementshift")) { option_changes |= 2; if (sscanf(*++argv, "%d %d", &place_shiftx, &place_shifty) < 2) { fprintf(stderr, "Error in -placementshift parameters\n"); return(1); } } else if (!strcasecmp(*argv, "-command")) StringReAlloc(&ExternAction, *++argv); else if (!strcasecmp(*argv, "-editorcommand")) StringReAlloc(&EditorCommand, *++argv); else if (!strcasecmp(*argv, "-dateformat")) StringReAlloc(&ListFormats, *++argv); else if (!strcasecmp(*argv, "-shading")) { gflags.shading = atoi(*++argv); if (gflags.shading < 0) gflags.shading = 0; if (gflags.shading > 5) gflags.shading = 5; } else if (!strcasecmp(*argv, "-progress") || !strcasecmp(*argv, "-jump")) { char *str, *invalid, c; long value; opt = ((*argv)[5]!='\0'); str=*++argv; value = strtol(str, &invalid, 10); if (invalid) c = *invalid; else c = 's'; if (c>='0' && c<='9') c='s'; switch(c) { case 's': break; case 'm': value *= 60 ; break; case 'h': value *= 3600 ; break; case 'd': value *= 86400 ; break; case 'M': value *= 2592000 ; break; case 'y': case 'Y': value *= 31536000 ; break; default : c = ' '; break; } if (c == ' ') Usage(); if (opt) { progress_value[5] = abs(value); if (value) gflags.progress = 5; else gflags.progress = 0; } else time_jump = value; } else if (!strcasecmp(*argv, "-rootperiod")) { root_period = atoi(*++argv); if (root_period<=0) root_period = 1; if (root_period>120) root_period = 120; } else if (!strcasecmp(*argv, "-animateperiod")) { gflags.animperiod = atoi(*++argv); if (gflags.animperiod<0) gflags.animperiod = 0; if (gflags.animperiod>5) gflags.animperiod = 5; } else if (!strcasecmp(*argv, "-aspect")) { gzoom.mode = atoi(*++argv); if (gzoom.mode<0) gzoom.mode = 0; if (gzoom.mode>2) gzoom.mode = 2; } else { fprintf(stderr, "%s: unknown option !!\n\n", *argv); if (runlevel == PARSECMDLINE) { Usage(); exit(1); } else if (runlevel == RUNTIMEOPTION) { fprintf(stderr, "Option %s : incorrect or not " "available at runtime !!\n", *argv); runlevel = FAILEDOPTION; } else { fprintf(stderr, "Trying to recover.\n"); return(1); } } } } return(0); } int parseCmdLine(buf) char * buf; { int i, j, l; char *dup, *str; char ** argv; int argc; l = strlen(buf); dup = (char *) salloc((l+2)*sizeof(char)); if (dup) { if (*buf == '-') strcpy(dup, buf); else { strcpy(dup+1, buf); *dup = '-'; } } else return 1; j = 0; for (i=0 ; dup[i] ; ++i) if (isspace(dup[i])) ++j; argv = (char **) salloc((j+2)*sizeof(char *)); i = argc = 0; rescan: while(dup[i] && isspace(dup[i])) { dup[i] = '\0'; ++i; } if (dup[i]) { str = argv[argc] = dup+i; while(dup[i] && !isspace(dup[i])) ++i; if (str[0]==':' && (!str[1] || isspace(str[1]))) { str[0] = '\0'; goto rescan; } ++argc; goto rescan; } else argv[argc] = NULL; for (i=0; iwin != win) Context = Context->next; return Context; } XFontStruct * getFont(num) int num; { XFontStruct * font; font = XLoadQueryFont(dpy, SunFont[num]); if (font == (XFontStruct *)NULL) fprintf(stderr, "%s: can't open font `%s', using `%s'\n", ProgName, SunFont[num], FAILFONT); else return font; font = XLoadQueryFont(dpy, FAILFONT); if (font == (XFontStruct *)NULL) { fprintf(stderr, "%s: can't open font `%s', giving up\n", ProgName, FAILFONT); return NULL; } return font; } void getFonts(Context) Sundata * Context; { int i, h, hp; for (i=0; igdata->font[i] = getFont(i))) exit(1); Context->gdata->clockstrip = Context->gdata->font[CLOCKSTRIPFONT]->max_bounds.ascent + Context->gdata->font[CLOCKSTRIPFONT]->max_bounds.descent + 4; Context->gdata->mapstrip = Context->gdata->font[MAPSTRIPFONT]->max_bounds.ascent + Context->gdata->font[MAPSTRIPFONT]->max_bounds.descent + 8; Context->gdata->menustrip = Context->gdata->font[MENUFONT]->max_bounds.ascent + Context->gdata->font[MENUFONT]->max_bounds.descent + 8; Context->gdata->charspace = Context->gdata->menustrip+4; if (option_changes & 1) { FileselGeom.width = SEL_WIDTH * Context->gdata->menustrip; FileselGeom.height = (11+4*SEL_HEIGHT)*Context->gdata->menustrip/5; } if (Context->flags.colorlevel < FULLCOLORS) return; h = Context->gdata->font[CITYFONT]->max_bounds.ascent + Context->gdata->font[CITYFONT]->max_bounds.descent; hp = Context->gdata->font[COORDFONT]->max_bounds.ascent + Context->gdata->font[COORDFONT]->max_bounds.descent; if (hp>h) h = hp; if (h>textheight) { textheight = h; if (textpix) { XFreePixmap(dpy, textpix); textpix = 0; } } if (!textpix) textpix = XCreatePixmap(dpy, Root, textwidth, textheight, 1); } unsigned long getColor(Context, num) Sundata * Context; int num; { XColor c; XColor e; register Status s; ++total_colors; if (Context->flags.colorlevel == MONOCHROME) goto monochrome; s = XAllocNamedColor(dpy, Context->gdata->cmap, Color[num], &c, &e); if (s != (Status)1) { fprintf(stderr, "%s: warning: can't allocate color `%s'\n", ProgName, Color[num]); color_alloc_failed = 1; monochrome: s = XAllocNamedColor(dpy, Context->gdata->cmap, (numnext) { if (OtherContext != Context && OtherContext->flags.colorlevel == gflags.colorlevel && OtherContext->gdata->cmap == cmap0 && OtherContext->gdata->precedence > prec) { graphdata = OtherContext->gdata; prec = OtherContext->gdata->precedence; } } if (graphdata) { Context->gdata = graphdata; ++Context->gdata->links; return; } } newcmap: /* Otherwise, define new adhoc graphical data */ Context->gdata = (GraphicData *)salloc(sizeof(GraphicData)); Context->gdata->wingc = 0; Context->gdata->pixgc = 0; Context->gdata->links = 0; Context->gdata->precedence = precedence; ++precedence; if (color_depth>8 || Context->flags.colorlevel==MONOCHROME || (Context->flags.colorlevel>MONOCHROME && !private)) Context->gdata->cmap = cmap0; else Context->gdata->cmap = XCreateColormap(dpy, Root, visual, AllocNone); color_alloc_failed = 0; total_colors = 0; for (i=0; igdata->pixel[i] = getColor(Context, i); if (color_depth<=8 && color_alloc_failed && Context->gdata->cmap==cmap0) { private = 1; fprintf(stderr, "Color allocation failed with default colormap.\n" "Trying instead private colormap...\n"); goto newcmap; } if (color_alloc_failed) fprintf(stderr, "Color allocation failed !!!\n"); else if (verbose) fprintf(stderr, "Color allocation successful:\n"); Context->gdata->usedcolors = total_colors; for (i=0; igdata->pixel[i]==Context->gdata->pixel[j]) { --Context->gdata->usedcolors; break; } } if (verbose && !color_alloc_failed) fprintf(stderr, " %d basic colors allocated in %s colormap.\n", Context->gdata->usedcolors, (Context->gdata->cmap==cmap0)? "default":"private"); } void createGCs(Context) struct Sundata * Context; { XGCValues gcv; int mask; if (!Context->mappix && (Context->flags.colorlevelmappix = XCreatePixmap(dpy, Root, Context->geom.width, Context->geom.height, 1); if (Context->gdata->links==0) { if (verbose) fprintf(stderr, "Creating new GCs, mode = %d\n", Context->flags.colorlevel); getFonts(Context); } else { if (verbose) fprintf(stderr, "Using previous GC settings (%d links)\n", Context->gdata->links); return; } mask = GCForeground | GCBackground | GCFont; gcv.background = white; gcv.foreground = black; if (!Context->gdata->wingc) { gcv.font = Context->gdata->font[MENUFONT]->fid; Context->gdata->wingc = XCreateGC(dpy, Root, mask, &gcv); } gcv.font = Context->gdata->font[COORDFONT]->fid; if (Context->flags.colorlevel == FULLCOLORS) { gcv.background = black; gcv.foreground = white; Context->gdata->pixgc = XCreateGC(dpy, textpix, mask, &gcv); } else { mask |= GCFunction; gcv.function = GXinvert; Context->gdata->pixgc = XCreateGC(dpy, Context->mappix, mask, &gcv); } } void clearStrip(Context) struct Sundata * Context; { XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[CLOCKSTRIPBGCOLOR+Context->wintype]); XFillRectangle(dpy, Context->win, Context->gdata->wingc, 0, Context->geom.height+(Context->flags.bottom&1)-1, Context->geom.width, Context->hstrip-(Context->flags.bottom&1)+1); } /* * Set the timezone of selected location. * This is definitely the most tricky point in the whole sunclock stuff * because of the incompatible Unix implementations ! */ void setTZ(cptr) City *cptr; { #ifndef _OS_LINUX_ char buf[80]; #endif if (cptr && cptr->tz) { #ifdef _OS_LINUX_ setenv("TZ", cptr->tz, 1); #else sprintf(buf, "TZ=%s", cptr->tz); #ifdef _OS_HPUX_ putenv(strdup(buf)); #else putenv(buf); #endif #endif } else #ifdef _OS_LINUX_ unsetenv("TZ"); #else { /* This is supposed to reset timezone to default localzone */ strcpy(buf, "TZ"); /* Another option would be to set LOCALZONE adequately and put: strcpy(buf, "TZ="LOCALZONE); */ #ifdef _OS_HPUX_ putenv(strdup(buf)); #else putenv(buf); #endif } #endif tzset(); } /* * Sets sun position (longitude, declination) and returns * solartime at given city * CAUTION: sunlong is in fact given as longitude+180 in interval 0..360 */ time_t sunParams(gtime, sunlong, sundec, city) time_t gtime; double *sunlong; double *sundec; City *city; { struct tm ctp, stp; time_t stime; double jt, gt; double sunra, sunrv, junk; long diff; ctp = *gmtime(>ime); jt = jtime(&ctp); sunpos(jt, False, &sunra, sundec, &sunrv, &junk); gt = gmst(jt); *sunlong = fixangle(180.0 + (sunra - (gt * 15))); if (city) { stime = (long) ((city->lon - *sunlong) * 240.0); stp = *gmtime(&stime); diff = stp.tm_sec-ctp.tm_sec +60*(stp.tm_min-ctp.tm_min)+3600*(stp.tm_hour-ctp.tm_hour); if (city->lon>0.0) while(diff<-40000) diff += 86400; if (city->lon<0.0) while(diff>40000) diff -= 86400; stime = gtime+diff; } else stime = 0; return(stime); } /* get "daylength" at a location of latitude lat, when it is noon at GMT time gt at that location */ double dayLength(gtime, lat) time_t gtime; double lat; { double duration; double sundec, junk; double sinsun, sinpos, sinapp, num; sinpos = sin(torad(lat)); /* Get Sun declination */ (void) sunParams(gtime, &junk, &sundec, NULL); sinsun = sin(torad(sundec)); /* Correct for the sun apparent diameter and atmospheric diffusion */ sinapp = sin(torad(SUN_APPRADIUS + atm_refraction)); num = 1 - sinsun*sinsun - sinpos*sinpos - sinapp*sinapp - 2*sinsun*sinpos*sinapp; if (num<=0) { if (sinsun*sinpos>0) duration = 24.0; else duration = 0.0; } else duration = 12.0 + 24.0*atan((sinsun*sinpos+sinapp)/sqrt(num))/PI; return duration*3600; } void setDayParams(Context) struct Sundata * Context; { struct tm gtm, ltm; double duration, junk; time_t gtime, stime, sr, ss, dl; menu_lasthint = ' '; if (!Context->mark1.city) return; time(&Context->time); gtime = Context->time + Context->jump; /* Get local time at given location */ setTZ(Context->mark1.city); ltm = *localtime(>ime); /* Get solar time at given location */ stime = sunParams(gtime, &junk, &junk, Context->mark1.city); /* Go to time when it is noon in solartime at Context->mark1.city */ gtime += 43200 - (stime % 86400); gtm = *gmtime(>ime); if (gtm.tm_mday < ltm.tm_mday) gtime +=86400; if (gtm.tm_mday > ltm.tm_mday) gtime -=86400; /* Iterate, just in case of a day shift */ stime = sunParams(gtime, &junk, &junk, Context->mark1.city); gtime += 43200 - (stime % 86400); /* get day length at that time and location*/ duration = dayLength(gtime, Context->mark1.city->lat); /* compute sunrise and sunset in legal time */ sr = gtime - (time_t)(0.5*duration); ss = gtime + (time_t)(0.5*duration); dl = ss-sr; Context->mark1.full = 1; if (dl<=0) {dl = 0; Context->mark1.full = 0;} if (dl>86380) {dl=86400; Context->mark1.full = 0;} Context->mark1.dl = *gmtime(&dl); Context->mark1.dl.tm_hour += (Context->mark1.dl.tm_mday-1) * 24; setTZ(Context->mark1.city); Context->mark1.sr = *localtime(&sr); Context->mark1.ss = *localtime(&ss); } char * num2str(value, string, dms) double value; char *string; short dms; { int eps, d, m, s; if (dms) { if (value<0) { value = -value; eps = -1; } else eps = 1; value = value+1/7200.0; d = (int) value; value = 60 * (value - d); m = (int) value; value = 60 * (value - m); s = (int) value; sprintf(string, "%s%d°%02d'%02d\"", (eps==1)?"":"-", d, m, s); } else sprintf(string, "%.3f", value); return string; } /* * Produce bottom strip of hours */ void showHours(Context) struct Sundata * Context; { int i, x; char s[128]; if (Context->flags.hours_shown) return; clearStrip(Context); for (i=0; i<24; i++) { sprintf(s, "%d", i); x = ((i*Context->zoom.width)/24 + 2*Context->zoom.width - (Context->gdata->mapstrip+5)*strlen(s)/8 + (int)(Context->sunlon*Context->zoom.width/360.0))% Context->zoom.width + 1 - Context->zoom.dx; if (x>=0 && xgeom.width) { XSetBackground(dpy, Context->gdata->wingc, Context->gdata->pixel[MAPSTRIPBGCOLOR]); XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[MAPSTRIPFGCOLOR]); XSetFont(dpy, Context->gdata->wingc, Context->gdata->font[MAPSTRIPFONT]->fid); XDrawImageString(dpy, Context->win, Context->gdata->wingc, x, Context->gdata->font[MENUFONT]->max_bounds.ascent + Context->geom.height + 4, s, strlen(s)); } } Context->flags.hours_shown = 1; } void drawTextStrip(Context, s, l) struct Sundata * Context; char *s; int l; { XSetBackground(dpy, Context->gdata->wingc, Context->gdata->pixel[CLOCKSTRIPBGCOLOR+Context->wintype]); XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[CLOCKSTRIPFGCOLOR+Context->wintype]); XSetFont(dpy, Context->gdata->wingc, (Context->wintype)? Context->gdata->font[MAPSTRIPFONT]->fid : Context->gdata->font[CLOCKSTRIPFONT]->fid); XDrawImageString(dpy, Context->win, Context->gdata->wingc, 2+2*Context->wintype, Context->geom.height + ((Context->wintype)? Context->gdata->font[MAPSTRIPFONT]->max_bounds.ascent + 4 : Context->gdata->font[CLOCKSTRIPFONT]->max_bounds.ascent + 3), s+label_shift, l-label_shift); } void writeStrip(Context) struct Sundata * Context; { register struct tm ltp; register struct tm gtp; register struct tm stp; time_t gtime; time_t stime; int i, l; char s[128]; char slat[20], slon[20], slatp[20], slonp[20]; double dist; #ifdef NEW_CTIME struct timeb tp; if (ftime(&tp) == -1) { fprintf(stderr, "%s: ftime failed: ", ProgName); perror(""); exit(1); } #endif if (!Context->flags.mapped) return; time(&Context->time); gtime = Context->time + Context->jump; if (!Context->wintype) { char num[80]; int hour; char ampm; setTZ(NULL); ltp = *localtime(>ime); gtp = *gmtime(>ime); hour = ltp.tm_hour; if (hour<12) ampm = 'A'; else ampm = 'P'; if (hour > 12) hour -= 12; l = strlen(DateFormat[Context->flags.clock_mode]); *s = '\0'; for (i=0; iflags.clock_mode][i]; if (c != '%') { num[0] = c; num[1] = '\0'; } if (c == '%' && iflags.clock_mode][i]; switch(c) { case 'G': sprintf(num, "%02d", gtp.tm_hour); break; case 'H': sprintf(num, "%02d", ltp.tm_hour); break; case 'M': sprintf(num, "%02d", ltp.tm_min); break; case 'N': sprintf(num, "%02d", gtp.tm_min); break; case 'P': num[0]=ampm; num[1]='\0'; break; case 'S': sprintf(num, "%02d", ltp.tm_sec); break; #ifdef NEW_CTIME case 'Z': strcpy(num, ltp.tm_zone); break; #else case 'Z': strcpy(num, tzname[ltp.tm_isdst]); break; #endif case 'a': strcpy(num, Day_name[ltp.tm_wday]); break; case 'd': sprintf(num, "%02d", ltp.tm_mday); break; case 'h': sprintf(num, "%02d", hour); break; case 'j': sprintf(num, "%02d", 1+ltp.tm_yday); break; case 'b': strcpy(num, Month_name[ltp.tm_mon]); break; case 'm': sprintf(num, "%02d", 1+ltp.tm_mon); break; case 't': { int w = ltp.tm_year+1900; if (w % 4==0 && (w % 100!=0 || w % 400 == 0)) w = 366; else w = 365; sprintf(num, "%d", w); break; } case 'y': sprintf(num, "%02d", ltp.tm_year%100); break; case 'Y': sprintf(num, "%d", ltp.tm_year+1900); break; case 'U': { struct tm ftm; time_t ftime; int w; /* * define weeknumber * week #1 = week with the first thursday */ /* set reference date to 1st of january, 12:00:00 */ (void) memset(&ftm, 0, sizeof(struct tm)); ftm.tm_isdst = -1; ftm.tm_mon = 0; ftm.tm_mday = 1; ftm.tm_year = ltp.tm_year; ftm.tm_hour = 12; ftm.tm_min = 0; ftm.tm_sec = 0; ftime = mktime(&ftm); ftm = *localtime(&ftime); /* get first sunday (start of week) */ if (ftm.tm_wday < 5) w = 1 - ftm.tm_wday; else w = 8 - ftm.tm_wday; /* get weeknumber */ sprintf(num, "%02d", ((ltp.tm_yday+1-ltp.tm_wday-w)/7)+1); break; } case '_': c = ' '; default: num[0] = c; num[1] = '\0'; break; } } strcat(s, num); } l = strlen(s); if (l<72) { for (i=l; i<72; i++) s[i] = ' '; s[72] = '\0'; l = 72; } drawTextStrip(Context, s, l); return; } switch(Context->flags.map_mode) { case LEGALTIME: gtp = *gmtime(>ime); setTZ(Context->mark1.city); ltp = *localtime(>ime); sprintf(s, " %s %02d:%02d:%02d %s %s %02d %s %04d %s %02d:%02d:%02d UTC %s %02d %s %04d", Label[L_LEGALTIME], ltp.tm_hour, ltp.tm_min, ltp.tm_sec, #ifdef NEW_CTIME ltp.tm_zone, #else tzname[ltp.tm_isdst], #endif Day_name[ltp.tm_wday], ltp.tm_mday, Month_name[ltp.tm_mon], 1900 + ltp.tm_year , Label[L_GMTTIME], gtp.tm_hour, gtp.tm_min, gtp.tm_sec, Day_name[gtp.tm_wday], gtp.tm_mday, Month_name[gtp.tm_mon], 1900 + gtp.tm_year); break; case COORDINATES: setTZ(Context->mark1.city); ltp = *localtime(>ime); if (ltp.tm_mday != Context->local_day) setDayParams(Context); Context->local_day = ltp.tm_mday; if ((Context->mark1.city) && Context->mark1.full) sprintf(s, " %s (%s,%s) %02d:%02d:%02d %s %s %02d %s %04d %s %02d:%02d:%02d %s %02d:%02d:%02d", Context->mark1.city->name, num2str(Context->mark1.city->lat, slat, Context->flags.dms), num2str(Context->mark1.city->lon, slon, Context->flags.dms), ltp.tm_hour, ltp.tm_min, ltp.tm_sec, #ifdef NEW_CTIME ltp.tm_zone, #else tzname[ltp.tm_isdst], #endif Day_name[ltp.tm_wday], ltp.tm_mday, Month_name[ltp.tm_mon], 1900 + ltp.tm_year , Label[L_SUNRISE], Context->mark1.sr.tm_hour, Context->mark1.sr.tm_min, Context->mark1.sr.tm_sec, Label[L_SUNSET], Context->mark1.ss.tm_hour, Context->mark1.ss.tm_min, Context->mark1.ss.tm_sec); else if ((Context->mark1.city) && !Context->mark1.full) sprintf(s, " %s (%s,%s) %02d:%02d:%02d %s %s %02d %s %04d %s %02d:%02d:%02d", Context->mark1.city->name, num2str(Context->mark1.city->lat, slat, Context->flags.dms), num2str(Context->mark1.city->lon, slon, Context->flags.dms), ltp.tm_hour, ltp.tm_min, ltp.tm_sec, #ifdef NEW_CTIME ltp.tm_zone, #else tzname[ltp.tm_isdst], #endif Day_name[ltp.tm_wday], ltp.tm_mday, Month_name[ltp.tm_mon], 1900 + ltp.tm_year , Label[L_DAYLENGTH], Context->mark1.dl.tm_hour, Context->mark1.dl.tm_min, Context->mark1.dl.tm_sec); else sprintf(s," %s", Label[L_CLICKCITY]); break; case SOLARTIME: if (Context->mark1.city) { double junk; stime = sunParams(gtime, &junk, &junk, Context->mark1.city); stp = *gmtime(&stime); if (stp.tm_mday != Context->solar_day) setDayParams(Context); Context->solar_day = stp.tm_mday; sprintf(s, " %s (%s,%s) %s %02d:%02d:%02d %s %02d %s %04d %s %02d:%02d:%02d", Context->mark1.city->name, num2str(Context->mark1.city->lat,slat, Context->flags.dms), num2str(Context->mark1.city->lon,slon, Context->flags.dms), Label[L_SOLARTIME], stp.tm_hour, stp.tm_min, stp.tm_sec, Day_name[stp.tm_wday], stp.tm_mday, Month_name[stp.tm_mon], 1900 + stp.tm_year, Label[L_DAYLENGTH], Context->mark1.dl.tm_hour, Context->mark1.dl.tm_min, Context->mark1.dl.tm_sec); } else sprintf(s," %s", Label[L_CLICKLOC]); break; case DISTANCES: if(Context->mark1.city && Context->mark2.city) { dist = sin(torad(Context->mark1.city->lat)) * sin(torad(Context->mark2.city->lat)) + cos(torad(Context->mark1.city->lat)) * cos(torad(Context->mark2.city->lat)) * cos(torad(Context->mark1.city->lon-Context->mark2.city->lon)); if (dist >= 1.0) dist = 0.0; else if (dist <= -1.0) dist = M_PI; else dist = acos(dist); sprintf(s, " %s (%s,%s) --> %s (%s,%s) " "%d km = %d miles", Context->mark2.city->name, num2str(Context->mark2.city->lat,slatp, Context->flags.dms), num2str(Context->mark2.city->lon, slonp, Context->flags.dms), Context->mark1.city->name, num2str(Context->mark1.city->lat, slat, Context->flags.dms), num2str(Context->mark1.city->lon, slon, Context->flags.dms), (int)(EARTHRADIUS_KM*dist), (int)(EARTHRADIUS_ML*dist)); } else sprintf(s, " %s", Label[L_CLICK2LOC]); break; case EXTENSION: showHours(Context); return; default: break; } l = strlen(s); if (l<125) { for (i=l; i<125; i++) s[i] = ' '; s[125] = '\0'; l = 125; } drawTextStrip(Context, s, l); } void initShading(Context) struct Sundata * Context; { int i; if (Context->flags.shading <2) Context->shadefactor = 1.0; else { if (Context->flags.shading == 2) Context->shadefactor = 180.0/(M_PI*(SUN_APPRADIUS+atm_refraction)); else Context->shadefactor = 180.0/(M_PI*(SUN_APPRADIUS+atm_diffusion)); } Context->shadescale = 0.5 * ((double)Context->flags.colorscale + 0.5); if (Context->flags.shading == 0 || Context->flags.shading >= 4) { if (Context->tr1) { free(Context->tr1); Context->tr1 = NULL; } } if (Context->flags.shading <= 1 && Context->flags.shading >= 4) { if (Context->tr2) { free(Context->tr2); Context->tr2 = NULL; } } if (Context->flags.shading >= 1 && Context->flags.shading <= 3) { if (!Context->tr1) Context->tr1 = (short *) salloc(Context->geom.width*sizeof(short)); for (i=0; i< (int)Context->geom.width; i++) Context->tr1[i] = 0; } if (Context->flags.shading >= 2 && Context->flags.shading <= 3) { if (!Context->tr2) Context->tr2 = (short *) salloc(Context->geom.width*sizeof(short)); for (i=0; i< (int)Context->geom.width; i++) Context->tr2[i] = -1; } Context->south = -1; } void makeContext(Context, build) struct Sundata * Context; int build; { if (build) { Context->win = 0; Context->xim = NULL; Context->ximdata = NULL; Context->label = NULL; Context->vmfpixels = NULL; Context->mappix = 0; if (Context->wintype) Context->geom = MapGeom; else Context->geom = ClockGeom; Context->spotsizes = (int *) salloc(city_cat * sizeof(int)); Context->sizelimits = (int *) salloc(city_cat * sizeof(int)); memcpy(Context->spotsizes, city_spotsizes, city_cat*sizeof(int)); memcpy(Context->sizelimits, city_sizelimits, city_cat*sizeof(int)); Context->zoom = gzoom; Context->oldzoom = gzoom; Context->flags = gflags; Context->jump = time_jump; Context->clock_img_file = strdup(Clock_img_file); Context->map_img_file = strdup(Map_img_file); Context->mark1.city = NULL; Context->mark1.flags = 0; Context->pos1.tz = NULL; Context->mark2.city = NULL; Context->mark2.flags = 0; Context->lastmarked = NULL; Context->pos2.tz = NULL; Context->tr1 = Context->tr2 = NULL; if (position.lat<=90.0) { Context->pos1 = position; Context->mark1.city = &Context->pos1; } } Context->newzoom = Context->zoom; setZoomDimension(Context); Context->zoom = Context->newzoom; Context->local_day = -1; Context->solar_day = -1; Context->sundec = 100.0; Context->sunlon = 0.0; Context->moondec = 100.0; Context->moonlon = 0.0; if (runlevel!= IMAGERECYCLE) { if (color_depth<=8) { Context->daypixel = (unsigned char *) salloc(256*sizeof(char)); Context->nightpixel = (unsigned char *) salloc(256*sizeof(char)); } else { Context->daypixel = NULL; Context->nightpixel = NULL; } } Context->bits = 0; Context->flags.update = 4; Context->time = 0L; Context->projtime = -1L; Context->roottime = -1L; Context->animtime = -1L; Context->daywave = (double *) salloc( (2*Context->geom.height+Context->geom.width)*sizeof(double)); Context->cosval = Context->daywave + Context->geom.width; Context->sinval = Context->cosval + Context->geom.height; initShading(Context); } void DarkenPixel(Context, x, y, t) struct Sundata * Context; int x; int y; int t; { register int i; unsigned int factor; unsigned char u, v, w, r, g, b; if (Context->flags.colorlevelmappix,Context->gdata->pixgc, x,y); return; } i = bytes_per_pixel * x + Context->xim->bytes_per_line * y; if (color_depth>16) { if (bigendian) i += bytes_per_pixel - 3; u = Context->ximdata[i]; v = Context->ximdata[i+1]; w = Context->ximdata[i+2]; if (t>=0) { factor = Context->flags.darkness + (t * (MAXSHORT- Context->flags.darkness))/Context->flags.colorscale; u = (u * factor)/MAXSHORT; v = (v * factor)/MAXSHORT; w = (w * factor)/MAXSHORT; } Context->xim->data[i] = u; Context->xim->data[i+1] = v; Context->xim->data[i+2] = w; } else if (color_depth==16) { if (bigendian) { u = Context->ximdata[i+1]; v = Context->ximdata[i]; } else { u = Context->ximdata[i]; v = Context->ximdata[i+1]; } if (t>=0) { factor = Context->flags.darkness + (t * (255 - Context->flags.darkness))/Context->flags.colorscale; r = v>>3; g = ((v&7)<<3) | (u>>5); b = u&31; r = (r * factor)/31; g = (g * factor)/63; b = (b * factor)/31; u = (b&248)>>3 | (g&28)<<3; v = (g&224)>>5 | (r&248); } if (bigendian) { Context->xim->data[i+1] = u; Context->xim->data[i] = v; } else { Context->xim->data[i] = u; Context->xim->data[i+1] = v; } } else if (color_depth==15) { if (bigendian) { u = Context->ximdata[i+1]; v = Context->ximdata[i]; } else { u = Context->ximdata[i]; v = Context->ximdata[i+1]; } if (t>=0) { factor = Context->flags.darkness + (t * (255 - Context->flags.darkness))/Context->flags.colorscale; r = v>>2; g = (v&3)<<3 | (u>>5); b = u&31; r = (r * factor)/31; g = (g * factor)/31; b = (b * factor)/31; u = (b&248)>>3 | (g&56)<<2; v = (g&192)>>6 | (r&248)>>1; } if (bigendian) { Context->xim->data[i+1] = u; Context->xim->data[i] = v; } else { Context->xim->data[i] = u; Context->xim->data[i+1] = v; } } else { if (t>=0) { if ((277*x+359*y) % Context->flags.colorscale < Context->flags.colorscale-t) Context->xim->data[i] = Context->nightpixel[(unsigned char)Context->ximdata[i]]; else Context->xim->data[i] = Context->ximdata[i]; } else Context->xim->data[i] = Context->ximdata[i]; } } int howDark(Context, i, j) struct Sundata * Context; int i, j; { double light; int k; if (Context->flags.shading == 0) { return -1; } light = Context->daywave[i] * Context->cosval[j] + Context->sinval[j]; if (Context->flags.shading == 1) { if (light >= 0) k = -1; else k = 0; } else { if (Context->flags.shading<=3 || (Context->flags.shading==4 && light<0)) light *= Context->shadefactor; k = (int) ((1.0+light)*Context->shadescale); if (k < 0) k = 0; if (k >= Context->flags.colorscale) k = - 1; } return k; } void SetPixelLight(Context, i, j, pixel) struct Sundata * Context; int i, j; Pixel pixel; { if (i<0 || i>= Context->geom.width) return; if (j<0 || j>= Context->geom.height) return; if (erase_obj) DarkenPixel(Context, i, j, howDark(Context, i, j)); else XPutPixel(Context->xim, i, j, pixel); } void XPutStringImage(Context, x, y, s, l, mode) Sundata *Context; int x, y; char *s; int l, mode; { XImage *xim; XFontStruct *font = NULL; Pixel pixel = 0; int i, j, w, h, dy; char u = 0, test; if (!s || !strlen(s)) return; if (mode <= 1) { font = Context->gdata->font[COORDFONT]; pixel = Context->gdata->pixel[PARALLELCOLOR-mode]; } else if (mode == 2) { font = Context->gdata->font[CITYFONT]; pixel = Context->gdata->pixel[CITYNAMECOLOR]; } else if (mode >= 3) { font = Context->gdata->font[LABELFONT]; if (Context->flags.colorlevel <= MANYCOLORS) pixel = Context->gdata->pixel[CITYNAMECOLOR]; else pixel = Context->vmfpixels[mode-3]; } if (!font) return; h = font->max_bounds.ascent + font->max_bounds.descent; dy = font->max_bounds.ascent; w = XTextWidth(font, s, l); if (w>textwidth || h>textheight) { textwidth = w; textheight = h; if (textpix) { XFreePixmap(dpy, textpix); textpix = 0; } } if (!textpix) { textpix = XCreatePixmap(dpy, Context->win, textwidth, textheight, 1); } XSetForeground(dpy, Context->gdata->pixgc, black); XFillRectangle(dpy, textpix, Context->gdata->pixgc, 0, 0, w, h); XSetForeground(dpy, Context->gdata->pixgc, white); XSetFont(dpy, Context->gdata->pixgc, font->fid); if (Context->flags.colorlevel <= MANYCOLORS) { XDrawString(dpy, Context->mappix, Context->gdata->pixgc, x+1, y-dy, s, l); return; } XDrawString(dpy, textpix, Context->gdata->pixgc, 0, dy, s, l); xim = XGetImage(dpy, textpix, 0, 0, w, h, 1, XYPixmap); if (!xim) return; test = (bigendian)? 128 : 1; for (j=0; j= (int)Context->geom.height) break; for (i=0; idata[j*xim->bytes_per_line+i/8]; if (u&test) SetPixelLight(Context, x+i+1, y-dy+j, pixel); u = (bigendian)? u<<1 : u>>1; } } XDestroyImage(xim); } int int_latitude(Context, lat) Sundata * Context; double lat; { return (int) (Context->zoom.height - (lat+90.0) * (Context->zoom.height/180.0)) - Context->zoom.dy; } int int_longitude(Context, lon) Sundata * Context; double lon; { return (int) ((180.0+lon) * (Context->zoom.width/360.0)) - Context->zoom.dx; } /* * drawObject() - Draw an object (city, mark, sun, moon) on the map. */ void drawObject(Context, lon, lat, mode, color, name) struct Sundata * Context; double lon, lat; /* Latitude and longtitude of the city */ int mode; int color; char *name; { /* * Local Variables */ Pixel pixel; int ilon, ilat; /* Screen coordinates of the city */ int i, j, dx, dy, u, which, bool=0; unsigned short * bits; char slat[20], slon[20]; if (mode == 0) return; if ((!Context->wintype && mode > 0) || mode < -SPECIALBITMAPS) return; if (mode > city_cat) mode = city_cat; if (mode > 0) { which = SPECIALBITMAPS + Context->spotsizes[mode-1] - 1; if (which < SPECIALBITMAPS) return; if (Context->flags.colorlevel>0 && !Context->flags.citymode) return; if (Context->zoom.width < Context->sizelimits[mode-1] && color==0) return; if (color<0) color = 0; } else which = -mode - 1; ilon = int_longitude(Context, lon); if (ilon<0 || ilon>Context->geom.width) return; ilat = int_latitude(Context, lat); if (ilat<0 || ilat>Context->geom.height) return; bits = symbol_bits[which]; dx = bits[0]/2; dy = bits[1]/2; pixel = Context->gdata->pixel[CITYCOLOR0+color]; if (Context->flags.colorlevel == FULLCOLORS) { for (j=0; j= (int) Context->geom.height) break; u = bits[j+2]; for (i=0; i>1; } } } else if (Context->flags.colorlevel >= FEWCOLORS) { XSetForeground(dpy, Context->gdata->wingc, pixel); for (j=0; j= (int) Context->geom.height) break; u = bits[j+2]; for (i=0; iwin, Context->gdata->wingc, ilon-dx+i, ilat-dy+j); u = u>>1; } } } else { XSetForeground(dpy, Context->gdata->pixgc, pixel); for (j=0; j= (int) Context->geom.height) break; u = bits[j+2]; for (i=0; imappix, Context->gdata->pixgc, ilon-dx+i, ilat-dy+j); u = u>>1; } } } if (mode<0) ++dx; if (Context->flags.citymode==2 && name) { if (Context->flags.colorlevel == FULLCOLORS) XPutStringImage(Context, ilon+dx, ilat-1, name, strlen(name), 2); else if (Context->flags.colorlevel >= FEWCOLORS) { XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[CITYNAMECOLOR]); XDrawString(dpy, Context->win, Context->gdata->wingc, ilon+dx, ilat-1, name, strlen(name)); } else XDrawString(dpy, Context->mappix, Context->gdata->pixgc, ilon+dx, ilat-1, name, strlen(name)); } if (!Context->wintype) return; if ((Context->flags.citymode==3 && mode>0) || (bool=(Context->flags.objectmode==2 && mode<-1))) { dy = Context->gdata->mapstrip/2; (void) num2str(lat, slat, Context->flags.dms); (void) num2str(lon, slon, Context->flags.dms); if (Context->flags.colorlevel == FULLCOLORS) { XSetFont(dpy, Context->gdata->pixgc, Context->gdata->font[CITYFONT]->fid); XPutStringImage(Context, ilon+dx, ilat-1, slat, strlen(slat), 2); XPutStringImage(Context, ilon+dx, ilat-1+dy, slon, strlen(slon), 2); } else if (Context->flags.colorlevel >= FEWCOLORS ) { XSetBackground(dpy, Context->gdata->wingc, Context->gdata->pixel[MAPBGCOLOR]); XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[CITYNAMECOLOR]); XSetFont(dpy, Context->gdata->wingc, Context->gdata->font[CITYFONT]->fid); XDrawString(dpy, Context->win, Context->gdata->wingc, ilon+dx, ilat-1, slat, strlen(slat)); XDrawString(dpy, Context->win, Context->gdata->wingc, ilon+dx, ilat-1+dy, slon, strlen(slon)); } else { XSetFont(dpy, Context->gdata->pixgc, Context->gdata->font[CITYFONT]->fid); XDrawString(dpy, Context->mappix, Context->gdata->pixgc, ilon+dx, ilat-1, slat, strlen(slat)); XDrawString(dpy, Context->mappix, Context->gdata->pixgc, ilon+dx, ilat-1+dy, slon, strlen(slon)); } } } void drawCities(Context) struct Sundata * Context; { City *c; if (!Context->wintype || !Context->flags.citymode) return; if (Context->flags.colorlevel==MONOCHROME || Context->flags.colorlevel==FULLCOLORS) XSetFont(dpy, Context->gdata->pixgc, Context->gdata->font[CITYFONT]->fid); else XSetFont(dpy, Context->gdata->wingc, Context->gdata->font[CITYFONT]->fid); if (Context->lastmarked && Context->mark1.city != Context->lastmarked && Context->flags.colorlevel>MONOCHROME) { erase_obj = 1; c = Context->lastmarked; drawObject(Context, c->lon, c->lat, c->size, 1, c->name); erase_obj = 0; } for (c = cityroot; c; c = c->next) { if (c!=Context->mark1.city && c!=Context->mark2.city) drawObject(Context, c->lon, c->lat, c->size, -(c==cityinit), c->name); } c = Context->mark2.city; if (c && c!=&Context->pos2) drawObject(Context, c->lon, c->lat, c->size, 2, c->name); c = Context->mark1.city; if (c && c!=&Context->pos1) { drawObject(Context, c->lon, c->lat, c->size, 1, c->name); Context->lastmarked = c; } } void drawMarks(Context) struct Sundata * Context; { if (Context->flags.colorlevel==MONOCHROME || !Context->wintype) return; /* code for color mode */ if (erase_obj==0 || (erase_obj&1)) if (Context->mark1.city == &Context->pos1) drawObject(Context, Context->mark1.city->lon, Context->mark1.city->lat, -1, 3, NULL); if (erase_obj==0 || (erase_obj&2)) if (Context->mark2.city == &Context->pos2) drawObject(Context, Context->mark2.city->lon, Context->mark2.city->lat, -1, 4, NULL); } void drawLabels(Context) struct Sundata * Context; { int ilon, ilat, width, dw = 0; struct TextLabel * label; char *text, *text0, *ptr; if(!Context->wintype) return; label = Context->label; while (label) if (label->text && *label->text) { ilon = int_longitude(Context, label->lon); ilat = int_latitude(Context, label->lat); text = text0 = strdup(label->text); while(text) { ptr = index(text,'\n'); if (ptr) *ptr = '\0'; width = XTextWidth(Context->gdata->font[LABELFONT], text, strlen(text)); if (label->position==0) dw = width/2; else if (label->position==-1) dw = width; XPutStringImage(Context, ilon-dw, ilat, text, strlen(text), label->color+3); ilat += Context->gdata->font[LABELFONT]->ascent+ Context->gdata->font[LABELFONT]->descent+2; if (ptr) text = ptr+1; else text = NULL; } free(text0); label = label->next; } } double getSpacing(Context, mode) Sundata * Context; int mode; /* 0=parallel 1=meridian spacing */ { double val[12] = { 0.1, 0.2, 0.5, 1.0, 2.0, 5.0, 10.0, 15.0, 20.0, 30.0, 45.0, 90.0 }; double quot = 0.0; int i = 0; i = 11; if (mode == 0) quot = 4200.0/(double)Context->zoom.height; if (mode == 1) quot = 10800.0/(double)Context->zoom.width; if (quot<0.5 && mode) quot = quot*1.2; while (i>0 && val[i-1] > quot) --i; if (mode==1 && i==8) ++i; return val[i]; } /* * drawParallel() - Draw a parallel line */ void drawParallel(Context, pixel, lat, step, thickness, text, numdigits) struct Sundata * Context; Pixel pixel; double lat; int step; int thickness; int text; int numdigits; { int ilat, i0, i1, i, j, jp, k, min, max, doit; char s[10], format[10]; if (!Context->wintype) return; ilat = int_latitude(Context, lat); i = Context->flags.meridian & 3 ; min = 0; max = Context->geom.height; if (i==2) max = max-coordvalheight; if (i==3) min = coordvalheight; if (ilat=max) return; doit = 1; if (text<0) { text = -text; if (lat != 0.0) doit = 0; } if (text>=2) { sprintf(format, "%%.%df°", numdigits); sprintf(s, format, lat); min = XTextWidth(Context->gdata->font[COORDFONT], s, strlen(s))+4; max = (int) Context->geom.width; if (text==2) i0 = 2; else { max = max-min-2; i0 = max+4; min = 0; } i1 = (coordvalheight-6)/3; if (doit) { if (Context->flags.colorlevel == FULLCOLORS) XPutStringImage(Context, i0, ilat+1, s, strlen(s), 0); else if (Context->flags.colorlevel >= MANYCOLORS) XDrawString(dpy, Context->win, Context->gdata->wingc, i0, ilat+i1, s, strlen(s)); else XDrawString(dpy, Context->mappix, Context->gdata->pixgc, i0, ilat+i1, s, strlen(s)); } } else { min = 0; max = (int) Context->geom.width - 1; } i0 = Context->geom.width/2; i1 = 1+i0/step; for (i=-i1; imax) jp = max; if (jpmax) continue; if (Context->flags.colorlevel == FULLCOLORS) { for (k=j; k<=jp; k++) SetPixelLight(Context, k, ilat, pixel); } else if (Context->flags.colorlevel >= MANYCOLORS) XDrawLine(dpy, Context->win, Context->gdata->wingc, j, ilat, jp,ilat); else XDrawLine(dpy, Context->mappix, Context->gdata->pixgc, j, ilat, jp,ilat); } } void drawParallels(Context) struct Sundata * Context; { Pixel pixel; static double val[5] = { -66.55, -23.45, 0.0, 23.45, 66.55 }; double f1, f2, spacing; int i, b1, b2, parmode, numdigits; if (!Context->wintype || !Context->flags.parallel) return; parmode = Context->flags.parallel & 3; if (Context->zoom.paralspacing) spacing = Context->zoom.paralspacing; else spacing = getSpacing(Context, 0); /* b = (int) (89.9/spacing); */ f1 = (double)(Context->zoom.dy+Context->geom.height)/ ((double)Context->zoom.height); f2 = (double)Context->zoom.dy/((double)Context->zoom.height); b1 = rint(0.7 + (90.0 - f1*180.0)/spacing); b2 = rint(-0.7 + (90.0 - f2*180.0)/spacing); pixel = Context->gdata->pixel[PARALLELCOLOR]; if (Context->flags.colorlevel==FULLCOLORS || Context->flags.colorlevel==MONOCHROME) { XSetFont(dpy, Context->gdata->pixgc, Context->gdata->font[COORDFONT]->fid); } else { XSetFont(dpy, Context->gdata->wingc, Context->gdata->font[COORDFONT]->fid); XSetForeground(dpy, Context->gdata->wingc, pixel); } numdigits = (spacing<1.0); if (parmode) for (i=b1; i<=b2; i++) if (i!=0 || Context->flags.parallel <=3) drawParallel(Context, pixel, i*spacing, 3, Context->flags.dotted, parmode, numdigits); pixel = Context->gdata->pixel[TROPICCOLOR]; if (Context->flags.colorlevel==MANYCOLORS) XSetForeground(dpy, Context->gdata->wingc, pixel); if (Context->flags.parallel & 8) { for (i=0; i<5; i++) drawParallel(Context, pixel, val[i], 3, 1, -parmode, numdigits); } } /* * drawMeridian() - Draw a meridian line */ void drawMeridian(Context, lon, step, thickness, numdigits) struct Sundata * Context; double lon; int step; int thickness; int numdigits; { int ilon, i0, i1, i, j, jp, k, min, max; char s[10], format[10]; ilon = int_longitude(Context, lon); i = Context->flags.parallel & 3 ; min = 0; max = Context->geom.width; if (i==2) min = coordvalwidth; if (i==3) max = max-coordvalwidth; if (ilon=max) return; i0 = Context->geom.height/2; i1 = 1+i0/step; if (Context->flags.meridian>=2) { sprintf(format, "%%.%df°", numdigits); sprintf(s, format, lon); i = 2*XTextWidth(Context->gdata->font[COORDFONT], s, strlen(s))/5; min = Context->gdata->font[COORDFONT]->max_bounds.ascent + Context->gdata->font[COORDFONT]->max_bounds.descent + 3; max = (int) Context->geom.height; if (Context->flags.meridian==2) { j = Context->geom.height-3; max = max-min-1; min = 0; } else j = min-4; if (Context->flags.colorlevel==FULLCOLORS) XPutStringImage(Context, ilon-i, j, s, strlen(s), 1); else if (Context->flags.colorlevel>=MANYCOLORS) XDrawString(dpy, Context->win, Context->gdata->wingc, ilon-i, j, s, strlen(s)); else XDrawString(dpy, Context->mappix, Context->gdata->pixgc, ilon-i, j, s, strlen(s)); } else { min = 0; max = (int) Context->geom.height - 1 ; } for (i=-i1; imax) jp = max; if (jpmax) continue; if (Context->flags.colorlevel==FULLCOLORS) { for (k=j; k<=jp; k++) SetPixelLight(Context, ilon, k, Context->gdata->pixel[MERIDIANCOLOR]); } else if (Context->flags.colorlevel >= MANYCOLORS) XDrawLine(dpy, Context->win, Context->gdata->wingc, ilon, j, ilon, jp); else XDrawLine(dpy, Context->mappix, Context->gdata->pixgc, ilon, j, ilon, jp); } } void drawMeridians(Context) struct Sundata * Context; { int i, b1, b2, numdigits; double spacing, f1, f2; if (!Context->wintype || !Context->flags.meridian) return; if (Context->zoom.meridspacing) spacing = Context->zoom.meridspacing; else spacing = getSpacing(Context, 1); /* b = (int) (179.9/spacing); */ f1 = (double)Context->zoom.dx/((double)Context->zoom.width); f2 = (double)(Context->zoom.dx+Context->geom.width)/ ((double)Context->zoom.width); b1 = rint(0.7 + (f1*360.0 - 180.0)/spacing); b2 = rint(-0.7 + (f2*360.0 - 180.0)/spacing); if (Context->flags.colorlevel==FULLCOLORS || Context->flags.colorlevel==MONOCHROME) { XSetFont(dpy, Context->gdata->pixgc, Context->gdata->font[COORDFONT]->fid); } else { XSetFont(dpy, Context->gdata->wingc, Context->gdata->font[COORDFONT]->fid); XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[MERIDIANCOLOR]); } numdigits = (spacing<1.0); for (i=b1; i<=b2; i++) drawMeridian(Context, i*spacing, 3, Context->flags.dotted, numdigits); } void drawLines(Context) Sundata * Context; { coordvalwidth = XTextWidth(Context->gdata->font[COORDFONT], "-45°", 4) + 6; coordvalheight = Context->gdata->font[COORDFONT]->max_bounds.ascent + Context->gdata->font[COORDFONT]->max_bounds.descent + 6; drawMeridians(Context); drawParallels(Context); } /* * drawSunAndMoon() - Draw Sun and Moon at position where they stand at zenith */ void drawSunAndMoon(Context) struct Sundata * Context; { if (Context->flags.objectmode) { if (Context->flags.colorlevel>=FEWCOLORS && Context->flags.colorlevel<=MANYCOLORS) { if (Context->flags.objects & 4) return; } if (Context->flags.objects & 1) drawObject(Context, Context->sunlon, Context->sundec, -2, 5, NULL); if (Context->flags.objects & 2) drawObject(Context, Context->moonlon, Context->moondec, -3, 6, NULL); Context->flags.objects |= 4; } } void drawBottomline(Context) struct Sundata * Context; { if (Context->flags.bottom & 2) return; if (Context->flags.bottom & 1) { XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[CLOCKSTRIPFGCOLOR+Context->wintype]); XDrawLine(dpy, Context->win, Context->gdata->wingc, 0, Context->geom.height, Context->geom.width-1, Context->geom.height); } Context->flags.bottom |= 2; } void drawAll(Context) struct Sundata * Context; { if (Context->flags.colorlevel == FULLCOLORS) { if (!Context->xim) return; } else { if (!Context->mappix) return; } if (Context->flags.colorlevel != FEWCOLORS) drawLines(Context); drawBottomline(Context); drawCities(Context); drawMarks(Context); drawLabels(Context); } void showMapImage(Context) struct Sundata * Context; { if (button_pressed) return; if (!Context->flags.mapped) { Context->flags.update = 0; return; } if (Context->flags.update>=2) { if (Context->flags.colorlevel == FULLCOLORS) { drawAll(Context); XPutImage(dpy, Context->win, Context->gdata->wingc, Context->xim, 0, 0, 0, 0, Context->geom.width, Context->geom.height); } else { XSetBackground(dpy, Context->gdata->wingc, Context->gdata->pixel[CLOCKBGCOLOR+Context->wintype]); XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[CLOCKFGCOLOR+Context->wintype]); XCopyPlane(dpy, Context->mappix, Context->win, Context->gdata->wingc, 0, 0, Context->geom.width, Context->geom.height, 0, 0, 1); Context->flags.objects &= 3; } } if (Context->flags.update) { Context->flags.update = 0; if (Context->flags.colorlevel >= FEWCOLORS && Context->flags.colorlevel <= MANYCOLORS) drawAll(Context); } } void pulseMarks(Context) struct Sundata * Context; { int done = 0; if (!Context->wintype) return; if (Context->flags.colorlevel == FULLCOLORS) { if (!Context->xim) return; } else { if (!Context->mappix) return; } if (Context->mark1.city && Context->mark1.flags<0) { if (Context->mark1.pulse) { drawObject(Context, Context->mark1.save_lon, Context->mark1.save_lat, -1, 0, NULL); done = 1; } Context->mark1.save_lat = Context->mark1.city->lat; Context->mark1.save_lon = Context->mark1.city->lon; if (Context->mark1.city == &Context->pos1) { done = 1; drawObject(Context, Context->mark1.save_lon, Context->mark1.save_lat, -1, 0, NULL); Context->mark1.pulse = 1; } else Context->mark1.pulse = 0; Context->mark1.flags = 1; } else if (Context->mark1.flags>0) { if (Context->mark1.city|| Context->mark1.pulse) { drawObject(Context, Context->mark1.save_lon, Context->mark1.save_lat, -1, 0, NULL); Context->mark1.pulse = 1-Context->mark1.pulse; done = 1; } if (Context->mark1.city == NULL) Context->mark1.flags = 0; } if (Context->mark2.city && Context->mark2.flags<0) { if (Context->mark2.pulse) { drawObject(Context, Context->mark2.save_lon, Context->mark2.save_lat, -1, 0, NULL); done = 1; } Context->mark2.save_lat = Context->mark2.city->lat; Context->mark2.save_lon = Context->mark2.city->lon; if (Context->mark2.city == &Context->pos2) { drawObject(Context, Context->mark2.save_lon, Context->mark2.save_lat, -1, 0, NULL); done = 1; Context->mark2.pulse = 1; } else Context->mark2.pulse = 0; Context->mark2.flags = 1; } else if (Context->mark2.flags>0) { if (Context->mark2.city || Context->mark2.pulse) { drawObject(Context, Context->mark2.save_lon, Context->mark2.save_lat, -1, 0, NULL); Context->mark2.pulse = 1 - Context->mark2.pulse; done = 1; } if (Context->mark2.city == NULL) Context->mark2.flags = 0; } if (done) { Context->flags.update = 2; showMapImage(Context); } } /* To be used in case of mono mode only, to clear night area */ void clearNightArea(Context) struct Sundata * Context; { int i, j; /* if (Context->flags.colorlevel < FULLCOLORS) return; */ for (i = 0; i < (int)Context->geom.width; i++) { if (Context->south==0) for (j = Context->tr1[i]; j< (int)Context->geom.height; j++) DarkenPixel(Context, i, j, -1); else for (j = 0; j tr1[i]; j++) DarkenPixel(Context, i, j, -1); } } /* moveNightArea -- Update illuminated portion of the globe. */ void moveNightArea(Context) struct Sundata * Context; { int i, j, k, l, jmin, jmax, j0; int midcolor, south, north; short tr1, tr2; double shift, shiftp, quot, cd, sd; double f1, f2, f3; Context->flags.hours_shown = 0; if (!Context->flags.shading) return; f1 = M_PI/((double) Context->zoom.height); f2 = ((double) Context->zoom.height)/M_PI; f3 = 1E-8 * f2; shift = f1 * (double)Context->zoom.dy; shiftp = 0.5*(Context->zoom.height+1) - (double) Context->zoom.dy; quot = torad(Context->sundec); cd = cos(quot); sd = sin(quot); if (quot>0) south = 0; else south = -1; north = -1-south; quot = 2.0*M_PI/(double)Context->zoom.width; for (i = 0; i < (int)Context->geom.width; i++) Context->daywave[i] = cos(quot *(((double)i)-Context->fnoon)); for (j = 0; j < (int)Context->geom.height; j++) { quot = shift + f1 * (double)j; Context->cosval[j] = sin(quot)*cd; Context->sinval[j] = cos(quot)*sd; } /* Shading = 1 uses tr1 as j-integer value of transition day/night */ /* Context->south means color value near South pole */ /* which is updated as south, with north = -1-south = opposite color */ if (Context->flags.shading == 1) { for (i = 0; i < (int)Context->geom.width; i++) { if (fabs(sd)>f3) tr1 = (int) (shiftp+f2*atan(Context->daywave[i]*cd/sd)); else tr1 = 0; if (tr1<0) tr1 = 0; if (tr1>(int)Context->geom.height) tr1 = (int)Context->geom.height; if (south==Context->south) { for (j = tr1; j<(int)Context->tr1[i]; j++) DarkenPixel(Context, i, j, south); for (j = (int)Context->tr1[i]; jtr1[i]) { for (j = 0; jtr1[i]; j<(int)Context->geom.height; j++) DarkenPixel(Context, i, j, south); } else { for (j = 0; j<(int)Context->tr1[i]; j++) DarkenPixel(Context, i, j, north); for (j = tr1; j<(int)Context->geom.height; j++) DarkenPixel(Context, i, j, south); } } Context->tr1[i] = tr1; } Context->south = south; return; } /* Shading = 4,5 are quite straightforward... compute everything! */ if (Context->flags.shading >= 4) { for (i = 0; i < (int)Context->geom.width; i++) for (j = 0; j< (int)Context->geom.height; j++) { DarkenPixel(Context, i, j, howDark(Context, i, j)); } return; } /* Shading = 2,3 uses both tr1 and tr2 and is very tricky... */ /* If both tr1,tr2 >=0 then normal transition day -> shadow -> night (or night -> shadow -> day) Otherwise we have an "exceptional transition" shadow near North pole -> (day or night) -> shadow near South pole Day or night is encoded midcolor, determined as follow: if tr1<0 then midcolor = Context->south if tr2<0 then midcolor = -1-Context->south (opposite color) Renormalize integres by tr1=-2-tr1 if <0 tr2=-2-tr2 if <0. Then tr1>tr2 are the limits for the interval where color=midcolor */ for (i = 0; i < (int)Context->geom.width; i++) { if (fabs(sd)>f3) j0 = (int) (shiftp+f2*atan(Context->daywave[i]*cd/sd)); else j0 = 0; if (j0<0) j0 = 0; if (j0>(int)Context->geom.height) j0 = (int)Context->geom.height; tr1 = 0; tr2 = (short)(Context->geom.height-1); midcolor = -2; if (Context->tr1[i] < 0) { Context->tr1[i] = -Context->tr1[i]-2; midcolor = Context->south; } if (Context->tr2[i] < 0 && midcolor==-2) { Context->tr2[i] = -Context->tr2[i]-2; midcolor = -1-Context->south; } for (j=j0; j<(int)Context->geom.height; j++) { k = howDark(Context, i, j); if (k!=south) DarkenPixel(Context, i, j, k); else { tr2 = (short)(j-1); jmax = (int)Context->geom.height-1; if (jtr2 ; l--) { k = howDark(Context, i, l); if (k!=south) DarkenPixel(Context, i, l, k); else { jmax = l; break; } } tr1 = (short)(-jmax-1); } if (Context->tr1[i]<=Context->tr2[i]) { if (Context->south == south) { if ((int)Context->tr2[i]tr2[i]; } else { if ((int)Context->tr1[i]>j) j=(int)Context->tr1[i]; } } else { if (midcolor == south) { for (l=j; l<=jmax && l<= (int)Context->tr2[i]; l++) DarkenPixel(Context, i, l, south); for (l=jmax; l>=j && l>= (int)Context->tr1[i]; l--) DarkenPixel(Context, i, l, south); break; } } for (l=j; l<=jmax; l++) DarkenPixel(Context, i, l, south); break; } } for (j=j0-1; j>=0; j--) { k = howDark(Context, i, j); if (k!=north) DarkenPixel(Context, i, j, k); else { tr1 = (short) j+1; jmin = 0; if (j>0 && howDark(Context, i, 0) != north) { for (l=0; ltr1[i]<=Context->tr2[i]) { if (Context->south == south) { if ((int)Context->tr1[i]>jmin) jmin=(int)Context->tr1[i]; } else { if ((int)Context->tr2[i]tr2[i]; } } else { if (midcolor == north) { for (l=jmin; l<=j && l<= (int)Context->tr2[i]; l++) DarkenPixel(Context, i, l, north); for (l=j; l>=jmin && l>= (int)Context->tr1[i]; l--) DarkenPixel(Context, i, l, north); break; } } for (l=jmin; l<=j; l++) DarkenPixel(Context, i, l, north); break; } } Context->tr1[i] = tr1; Context->tr2[i] = tr2; } Context->south = south; } void drawShadedArea (Context) Sundata * Context; { int size; if ((Context->flags.colorlevelflags.colorscale == 1)) { if (Context->flags.shading) { initShading(Context); moveNightArea(Context); } else { clearNightArea(Context); if (Context->tr1) { free(Context->tr1); Context->tr1 = NULL; } } } else { size = Context->xim->bytes_per_line*Context->xim->height; memcpy(Context->xim->data, Context->ximdata, size); initShading(Context); } } City * markLocation(Context, name) struct Sundata * Context; char * name; { City *c; c = searchCityLocation(name); if (c) { Context->mark1.city = c; if (Context->flags.colorlevel==MONOCHROME) Context->mark1.flags = -1; } return c; } void checkLocation(Context, name) struct Sundata * Context; char * name; { (void) markLocation(Context, name); if (Context->mark1.city == &Context->pos1) { Context->flags.map_mode = SOLARTIME; Context->mark1.city = NULL; setTZ(NULL); Context->mark1.city = &Context->pos1; if (Context->flags.colorlevel==MONOCHROME) pulseMarks(Context); Context->pos1.name = Label[L_POINT]; } else cityinit = Context->mark1.city; } /* --- */ /* UPDIMAGE -- Update current displayed image. */ void updateImage(Context) struct Sundata * Context; { int noon; double fnoon; double junk; /* If this is a full repaint of the window, force complete recalculation. */ if (button_pressed) return; time(&Context->time); erase_obj = 1; if (Context->flags.colorlevel == MONOCHROME || Context->flags.colorlevel == FULLCOLORS) drawSunAndMoon(Context); erase_obj = 0; (void) sunParams(Context->time + Context->jump, &Context->sunlon, &Context->sundec, NULL); (void) phase(Context->time + Context->jump, &Context->moondec, &Context->moonlon, &junk, &junk, &junk, &junk, &junk, &junk ); Context->moonlon = fixangle(Context->moonlon+180.0) - 180.0; fnoon = Context->sunlon * (Context->zoom.width / 360.0) - (double) Context->zoom.dx; noon = (int) fnoon; Context->sunlon -= 180.0; /* Projecting the illumination curve for the current seasonal instant is costly. If we're running in real time, only do it every PROJINT seconds. If the subsolar point has moved at least one pixel, also update the illuminated area on the screen. */ if (Context->projtime < 0 || (Context->time - Context->projtime) > PROJINT || Context->noon != noon || Context->flags.update>=4) { Context->flags.update = 2; Context->projtime = Context->time; Context->noon = noon; Context->fnoon = fnoon; moveNightArea(Context); if (Context->flags.colorlevel==FULLCOLORS) { drawAll(Context); drawCities(Context); } } drawSunAndMoon(Context); } void setPosition1(Context, x, y) Sundata *Context; int x, y; { Context->pos1.name = Label[L_POINT]; Context->pos1.lat = 90.0-((double)(y+Context->zoom.dy)/ (double)Context->zoom.height)*180.0 ; Context->pos1.lon = ((double)(x+Context->zoom.dx)/ (double)Context->zoom.width)*360.0-180.0 ; Context->mark1.city = &Context->pos1; } void updateUrban(Context, city) Sundata *Context; City *city; { if (!do_urban) { if (city!=NULL && city == Context->mark1.city) PopUrban(Context); } else { XMapWindow(dpy, Urban); XMapRaised(dpy, Urban); } if (do_urban) { updateUrbanEntries(Context, city); setupUrban(0); } } /* * processPoint() - This is kind of a cheesy way to do it but it works. What happens * is that when a different city is picked, the TZ environment * variable is set to the timezone of the city and then tzset(). * is called to reset the system. */ void processPoint(Context, x, y) struct Sundata * Context; int x, y; /* Screen co-ordinates of mouse */ { /* * Local Variables */ City *city; /* Used to search for a city */ int cx, cy; /* Screen coordinates of the city */ /* Loop through the cities until on close to the pointer is found */ for (city = cityroot; city; city = city->next) { /* Convert the latitude and longitude of the cities to integer */ if (city->size == 0) continue; if (Context->zoom.width < Context->sizelimits[city->size-1] && city!=cityinit) continue; cx = int_longitude(Context, city->lon)-x; cy = int_latitude(Context, city->lat)-y; /* Check to see if we are close enough */ if (cx*cx+cy*cy <= 13) break; } if (Context->flags.map_mode == LEGALTIME) { if (city) Context->flags.map_mode = COORDINATES; else Context->flags.map_mode = SOLARTIME; } updateUrban(Context, city); switch(Context->flags.map_mode) { case COORDINATES: case EXTENSION: if (city) Context->mark1.city = city; Context->flags.update = 1; break; case DISTANCES: if (Context->mark2.city) { if (Context->flags.colorlevel==FULLCOLORS) { erase_obj = 2; drawMarks(Context); erase_obj = 0; } } if (Context->mark1.city == &Context->pos1) { Context->pos2 = Context->pos1; Context->mark2.city = &Context->pos2; } else Context->mark2.city = Context->mark1.city; if (city) Context->mark1.city = city; else setPosition1(Context, x, y); Context->flags.update = 2; break; case SOLARTIME: if (Context->mark1.city) { if (Context->flags.colorlevel==FULLCOLORS) { erase_obj = 1; drawMarks(Context); erase_obj = 0; } } if (city) Context->mark1.city = city; else setPosition1(Context, x, y); Context->flags.update = 2; break; default: break; } setDayParams(Context); if (Context->flags.colorlevel==MONOCHROME) { if (Context->mark1.city) Context->mark1.flags = -1; if (Context->mark2.city) Context->mark2.flags = -1; } else { drawAll(Context); showMapImage(Context); Context->flags.update = 2; } if (do_urban && !city) updateUrban(Context, Context->mark1.city); } void report_failure(path, code) char *path; int code; { switch(code) { case -1: fprintf(stderr, "%s:\nUnknown image format !!\n", path); break; case 0: break; case 1: fprintf(stderr, "Cannot read file %s !!\n", path); break; case 2: fprintf(stderr, "File %s has corrupted data!!\n", path); break; case 3: fprintf(stderr, "Cannot decode format specification of %s !!\n", path); break; case 4: fprintf(stderr, "Image creation failed (memory alloc. problem?) !!\n"); break; case 5: fprintf(stderr, "Header of file %s corrupted !!\n", path); break; case 6: fprintf(stderr, "Color allocation failed !!\n"); break; case 7: fprintf(stderr, "Trying instead default %s\n", path); break; default: fprintf(stderr, "Unknown error in %s !!\n", path); break; } } #define COMPARE 260 void quantize(Context) Sundata * Context; { int i, j, k, l, compare, quantum, change; unsigned short r[256], g[256], b[256]; int count[256], done[256]; char substit[256], value[256], inverse[256], compose[256]; int d[COMPARE], v1[COMPARE], v2[COMPARE]; int size, dist; XColor xc; if (verbose) fprintf(stderr, "Number of distinct colors in the map: %d colors\n", Context->ncolors); xc.flags = DoRed | DoGreen | DoBlue; for (i=0; i<256; i++) inverse[i] = '\0'; for (i=0; incolors; i++) { count[i] = 0; xc.pixel = Context->daypixel[i]; XQueryColor(dpy, tmp_cmap, &xc); r[i] = xc.red; g[i] = xc.green; b[i] = xc.blue; inverse[(unsigned char)xc.pixel] = i; } if (tmp_cmap != cmap0) XFreeColormap(dpy, tmp_cmap); size = Context->xim->bytes_per_line * Context->xim->height; for (i=0; incolors; i++) { substit[i] = (char)i; value[i] = (char)i; } createGData(Context, 0); quantum = (256-Context->gdata->usedcolors)/2; if (Context->ncolors<=quantum) goto finish; if (verbose) fprintf(stderr, "That's too much, quantizing to %d colors...\n", quantum); for (i=0; ixim->data[i]]; compare = COMPARE; for (i=0; incolors; i++) for(j=i+1; jncolors; j++) { dist = abs((int)(r[i]-r[j]))+abs((int)(g[i]-g[j]))+ +abs((int)(b[i]-b[j])); k=compare-1; while (k>=0 && distk; l--) { d[l] = d[l-1]; v1[l] = v1[l-1]; v2[l] = v2[l-1]; } d[k] = dist; if (count[i]>count[j] || (count[i]==count[j] && i=Context->ncolors-quantum) break; } if (verbose) fprintf(stderr, "%d substitutions from %d pairs of similar colors\n", l, i); change = 1; while (change) { change = 0; l = 0; for (i=0; incolors; i++) { j = (unsigned char) substit[i]; if (substit[i]==(char)i) l++; if (substit[j] != (char)j) { substit[i] = substit[j]; change = 1; } } } finish: if (verbose) { if (Context->gdata->cmap==cmap0) fprintf(stderr, "Allocating map colors in default colormap:\n"); else fprintf(stderr, "Allocating map colors in private colormap:\n"); } for (i=0; incolors; i++) done[i] = 0; for (i=0; i<256; i++) Context->nightpixel[i] = (unsigned char)i; k=0; for (i=0; incolors; i++) { j = (unsigned char)substit[i]; if (!done[j]) { xc.red = r[j]; xc.green = g[j]; xc.blue = b[j]; if (!XAllocColor(dpy, Context->gdata->cmap, &xc)) { color_alloc_failed = 1; value[j] = 0; } else value[j] = (char)xc.pixel; xc.red = (unsigned int) (xc.red * Context->flags.darkness) / 255; xc.green = (unsigned int) (xc.green * Context->flags.darkness) / 255; xc.blue = (unsigned int) (xc.blue * Context->flags.darkness) / 255; if (!XAllocColor(dpy, Context->gdata->cmap, &xc)) color_alloc_failed = 1; if (value[j]) { Context->daypixel[k] = value[j]; Context->nightpixel[(unsigned char)value[j]] = (char)xc.pixel; } done[j] = 1; k++; } } if (Context->gdata->cmap==cmap0 && color_alloc_failed) { if (verbose) fprintf(stderr, "Failed !!\n"); if (Context->gdata->links==0) free(Context->gdata); createGData(Context, 1); goto finish; } Context->ncolors = k; if (verbose) fprintf(stderr, " 2*%d+%d=%d colors allocated in colormap\n", k, Context->gdata->usedcolors, 2*k+Context->gdata->usedcolors); for (i=0; i<256; i++) compose[i] = value[(unsigned char)substit[(unsigned char)inverse[(unsigned char)i]]]; for (i=0; ixim->data[i] = compose[(unsigned char)Context->xim->data[i]]; } int createImage(Context) struct Sundata * Context; { FILE *fd; char *file, path[1024]=""; int code; if (runlevel == IMAGERECYCLE) { if (verbose) fprintf(stderr, "Recycling image (XID %ld) and changing requested parameters...\n", (gflags.colorlevel==FULLCOLORS)? (long) Context->xim : (long) Context->mappix); code = 0; if (gflags.colorlevel) goto run_direct2; else goto run_direct1; } if (color_depth<=8 && Context->flags.colorlevel>0) tmp_cmap = XCreateColormap(dpy, Root, visual, AllocNone); else tmp_cmap = cmap0; file = (Context->wintype)? Context->map_img_file : Context->clock_img_file; do_path: Context->xim = NULL; code = -1; if (file) { strcpy(path, file); if (*file != '/' && *file != '.' ) { if ((fd=fopen(file, "r"))) { fclose(fd); } else { if (verbose) fprintf(stderr, "%s not in current directory ...\n" "Trying to load %s from share directory instead\n", file, file); sprintf(path, "%s%s", share_maps_dir, file); } } } if (*path && strcmp(path, Default_img_file)) { if ((fd = fopen(path, "r"))) fclose(fd); else { file = Default_img_file; fprintf(stderr, "File %s doesn't seem to exist !!\n" "Trying default %s\n", path, file); goto do_path; } } if (Context->wintype) { if (Context->map_img_file && file!=Context->map_img_file) StringReAlloc(&Context->map_img_file, file); } else { if (Context->clock_img_file && file!=Context->clock_img_file) { StringReAlloc(&Context->clock_img_file, file); } } if (gflags.colorlevel < FULLCOLORS) { retry: code = readVMF(path, Context); if (code==0 && Context->bits) { Context->mappix = XCreatePixmapFromBitmapData(dpy, Root, Context->bits, Context->geom.width, Context->geom.height, 0, 1, 1); run_direct1: createGData(Context, 0); if (color_alloc_failed) report_failure(path, 6); if (Context->bits) free(Context->bits); createGCs(Context); return 0; } else { if (strcmp(path, Default_img_file)) { report_failure(path, 1); strcpy(path, Default_img_file); report_failure(path, 7); goto retry; } report_failure(path, 1); return 1; } } if (strstr(path, ".gif")) code = readGIF(path, Context); else if (strstr(path, ".jpg")) code = readJPEG(path, Context); else if (strstr(path, ".png")) code = readPNG(path, Context); else if (strstr(path, ".vmf")) code = readVMF(path, Context); else if (strstr(path, ".xpm")) code = readXPM(path, Context); if (code) { report_failure(path, code); if (strcmp(path, Default_img_file)) { file = Default_img_file; report_failure(file, 7); goto do_path; } } run_direct2: if (color_depth<=8) quantize(Context); if (color_alloc_failed) { code = 6; if (Context->xim) { XDestroyImage(Context->xim); Context->xim = 0; } return code; } createGData(Context, 0); createGCs(Context); return code; } void createWorkImage(Context) struct Sundata * Context; { int size; if (Context->xim) { size = Context->xim->bytes_per_line*Context->xim->height; if (verbose) fprintf(stderr, "Creating work image data of size " "%d x %d x %d bpp = %d bytes\n", Context->xim->width, Context->xim->height, Context->xim->bytes_per_line/Context->xim->width,size); if (!Context->ximdata) Context->ximdata = (char *)salloc(size); memcpy(Context->ximdata, Context->xim->data, size); } } Window GetVRoot(dpy) Display *dpy; { int i; Window rootReturn, parentReturn, *children; unsigned int numChildren; Atom __SWM_VROOT = None; Window rslt = Root; __SWM_VROOT = XInternAtom(dpy, "__SWM_VROOT", False); XQueryTree(dpy, Root, &rootReturn, &parentReturn, &children, &numChildren); for (i=0; i0) { if (do_root < 1) do_root = 1; else do_root = 2; } if (mode<0) { if (do_root > 0) do_root = 0; else do_root = -1; } ww = Context->geom.width; hw = Context->geom.height; if (do_root == 2) hw += Context->hstrip; if (abs(Context->time - Context->roottime) >= root_period) Context->roottime = Context->time; else if (do_root == 2 && mode==0 && rootpix) update = 0; if (!rootpix) rootpix = XCreatePixmap(dpy, Root, wr, hr, DefaultDepth(dpy, scr)); if (update) { XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[ROOTCOLOR]); XFillRectangle(dpy, rootpix, Context->gdata->wingc, 0, 0, wr, hr); srandom(Context->time); if (random_rootpos) { rootdx = (double)(random() % 10001)/10000.0; rootdy = (double)(random() % 10001)/10000.0; } } if (ww>=wr-5) a = 0; else a = (wr-ww-5)*rootdx; if (hw>=hr-5) b = 0; else b = (hr-hw-5)*rootdy; if (do_root >= 0 && update) { XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[STARCOLOR]); c = random() % 191; for (i=0; igdata->wingc, i+dx[k], j+dy[k]); } } if (do_root > 0) for (i=0; i<=5; i++) drawDottedRectangle(dpy, rootpix, Context->gdata->wingc, a-i-1, b-i-1, ww+2*i+1, hw+2*i+1, Context->gdata->pixel[MAPBGCOLOR], Context->gdata->pixel[MAPFGCOLOR]); } if (do_root>=1) { win = Context->win; Context->win = XCreatePixmap(dpy, Root, ww, hw, DefaultDepth(dpy,scr)); mapped = Context->flags.mapped; if (update) { Context->flags.mapped = 1; Context->flags.update = 2; updateImage(Context); showMapImage(Context); } if (do_root == 2) { RootCaller = Context; XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[MAPSTRIPBGCOLOR]); XFillRectangle(dpy, Context->win, Context->gdata->wingc, 0, Context->geom.height, Context->geom.width, Context->hstrip); Context->flags.bottom &= 1; drawBottomline(Context); if (screen_saver) Context->flags.mapped = 1; Context->flags.hours_shown = 0; writeStrip(Context); } if (update) XCopyArea(dpy, Context->win, rootpix, Context->gdata->wingc, 0, 0, ww, hw, a, b); else XCopyArea(dpy, Context->win, Root, Context->gdata->wingc, 0, Context->geom.height, ww, Context->hstrip, a, b+Context->geom.height); XFlush(dpy); XFreePixmap(dpy, Context->win); Context->win = win; Context->flags.mapped = mapped; } if (update) { XSetWindowBackgroundPixmap(dpy, Vroot, rootpix); XClearWindow(dpy, Vroot); } XFlush(dpy); if (mode<0) { XFreePixmap(dpy, rootpix); rootpix = 0; } } void warningNew(Context) struct Sundata * Context; { XFlush(dpy); clearStrip(Context); XFlush(dpy); usleep(TIMESTEP); drawTextStrip(Context, Label[L_NEWIMAGE], strlen(Label[L_NEWIMAGE])); XFlush(dpy); } void buildMap(Context, wintype, build) struct Sundata * Context; int wintype, build; { Window win; int old_w, old_h, old_s, resize; if (build < 2) resize = 0; else { resize = 1; build = 0; } if (build) { struct Sundata * NewContext; NewContext = (struct Sundata *)salloc(sizeof(struct Sundata)); NewContext->next = NULL; if (Context) { if (Context->next) { NewContext->next = Context->next; Context->next = NewContext; } else Context->next = NewContext; } else Seed = NewContext; Context = NewContext; Context->wintype = wintype; if (do_menu<0) { do_menu = 1; MenuCaller = Context; } if (do_filesel<0) { do_filesel = 1; FileselCaller = Context; } if (do_zoom<0) { do_zoom = 1; ZoomCaller = Context; } if (do_option<0) { do_option = 1; OptionCaller = Context; } } makeContext(Context, build); win = Context->win; if (win) XSelectInput(dpy, Context->win, 0); if (createImage(Context)) { if (Seed->next) { shutDown(Context, 0); Context = Seed; return; } else shutDown(Context, -1); } checkGeom(Context, 0); if (win) { old_s = Context->hstrip; Context->hstrip = (wintype)? Context->gdata->mapstrip : Context->gdata->clockstrip; setClassHints(Context->win, wintype); setSizeHints(Context, wintype); getPlacement(Context->win, &Context->geom.x, &Context->geom.y, &old_w, &old_h); old_h -= Context->hstrip; if (resize || Context->hstrip != old_s || Context->geom.width!=old_w || Context->geom.height!=old_h) { XMapRaised(dpy, Context->win); Context->flags.mapped = 1; XFlush(dpy); usleep(TIMESTEP); setAuxilWins(Context, REMAP); } else setAuxilWins(Context, RESET); if (runlevel!=IMAGERECYCLE || color_depth<=8) createWorkImage(Context); setProtocols(Context, Context->wintype); } else { createWorkImage(Context); if (screen_saver) { Context->flags.mapped = 0; do_root = 2; Context->hstrip = Context->gdata->mapstrip; checkLocation(Context, CityInit); drawImageToRootWindow(Context, 0); return; } Context->win = newWindow(Context, &Context->geom, wintype); setSizeHints(Context, wintype); XMapWindow(dpy, Context->win); Context->flags.mapped = 1; XFlush(dpy); usleep(TIMESTEP); setAuxilWins(Context, REATTRIB); setProtocols(Context, wintype); Context->prevgeom.width = 0; } checkLocation(Context, CityInit); if (Context->flags.colorlevel == MONOCHROME) drawAll(Context); clearStrip(Context); if (Context->gdata->cmap!=cmap0) XSetWindowColormap(dpy, Context->win, Context->gdata->cmap); runlevel = RUNNING; option_changes = 0; Context->flags.update = 4; updateImage(Context); showMapImage(Context); do_sync |= 2; } void processStringEntry(keysym, entry) KeySym keysym; TextEntry *entry; { int i, j; i = strlen(entry->string); switch(keysym) { case XK_Left: if (entry->caret>0) --entry->caret; break; case XK_Right: if (entry->caretcaret; break; case XK_Home: entry->caret = 0; break; case XK_End: entry->caret = strlen(entry->string); break; case XK_BackSpace: case XK_Delete: if (entry->caret>0) { --entry->caret; for (j=entry->caret; jstring[j] = entry->string[j+1]; } break; default: if (control_key) { if (keysym==XK_space) { keysym = 31; goto specialspace; } if (keysym==XK_a) entry->caret = 0; if (keysym==XK_b && entry->caret>0) --entry->caret; if (keysym==XK_e) entry->caret = i; if (keysym==XK_f && entry->caretcaret; if (keysym==XK_d) { for (j=entry->caret; jstring[j] = entry->string[j+1]; } if (keysym==XK_k) { entry->oldcaret = entry->caret; entry->oldlength = i; entry->oldchar = entry->string[entry->caret]; entry->string[entry->caret] = '\0'; } if (keysym==XK_y && entry->caret==entry->oldcaret) { entry->string[entry->oldcaret] = entry->oldchar; entry->string[entry->oldlength] = '\0'; entry->oldcaret = -1; } break; } specialspace: if (keysym<31) break; if (keysym>=XK_KP_Multiply && keysym<=XK_KP_9) keysym = keysym - XK_KP_0 + '0'; if (keysym>255) break; if (imaxlength) { for (j=i; j>entry->caret; j--) entry->string[j] = entry->string[j-1]; entry->string[entry->caret] = (char) keysym; entry->string[i+1] = '\0'; ++entry->caret; } break; } } /* * Process key events in eventLoop */ void processKey(win, keysym) Window win; KeySym keysym; { double v; int i, j, old_mode; KeySym key; struct Sundata * Context = NULL; Context = getContext(win); if (!Context) return; if (Context->flags.colorlevel == FULLCOLORS) { if (!Context->xim) return; } else { if (!Context->mappix) return; } key = keysym; Context->flags.update = 1; if (key>=XK_A && key<=XK_Z) key += 32; old_mode = Context->flags.map_mode; if (win==Filesel) { switch(key) { case XK_Escape: if (do_filesel) PopFilesel(Context); return; case XK_Page_Up: if (filesel_shift == 0) return; filesel_shift -= num_lines/2; if (filesel_shift <0) filesel_shift = 0; break; case XK_Page_Down: if (num_table_entries-filesel_shiftflags.objectmode == 2) drawSunAndMoon(Context); if (Context->flags.colorlevel != MANYCOLORS) drawCities(Context); Context->flags.dms = 1 -Context->flags.dms; erase_obj = 0; if (Context->flags.objectmode == 2) drawSunAndMoon(Context); if (Context->flags.colorlevel == MONOCHROME) drawCities(Context); if (do_urban) { if (Context->mark1.city) updateUrban(Context, Context->mark1.city); else { for (i=2; i<=3; i++) (void) num2str(dms2decim(urban_entry[i].string), urban_entry[i].string, Context->flags.dms); setupUrban(0); } } Context->flags.update = 2; return; case XK_section: if (do_urban) { char params[256]; sprintf(params, "%s\037|%s\037|%s\037", urban_entry[0].string, urban_entry[2].string, urban_entry[3].string); if (!markLocation(Context, params)) (void) markLocation(Context, urban_entry[0].string); updateUrban(Context, Context->mark1.city); Context->flags.update = 2; } break; case XK_asciitilde: case XK_parenright: if (win == Urban && Context->mark1.city && Context->mark1.city != &Context->pos1) { City *c = Context->mark1.city; if (c) { erase_obj = 1; drawObject(Context, c->lon, c->lat, c->size, 1, c->name); erase_obj = 0; } else return; deleteMarkedCity(); Context->flags.update = 2; } if (keysym==XK_parenright) break; case XK_parenleft: if (win == Urban) { City * c = addCity(NULL); if (c) { if (Context->mark1.city) { if (Context->mark1.city == &Context->pos1) { erase_obj = 1; drawMarks(Context); erase_obj = 0; } } Context->mark1.city = c; if (Context->flags.colorlevel==MONOCHROME) { drawObject(Context, c->lon, c->lat, c->size, 1, c->name); Context->mark1.flags = -1; } Context->flags.update = 2; } else setupUrban(0); } break; case XK_less: if (Context->prevgeom.width && (Context->prevgeom.width != Context->geom.width || Context->prevgeom.height != Context->geom.height)) { Context->geom = Context->prevgeom; Context->prevgeom.width = 0; adjustGeom(Context, 0); XResizeWindow(dpy, Context->win, Context->geom.width, Context->geom.height+Context->gdata->menustrip); warningNew(Context); shutDown(Context, 0); buildMap(Context, Context->wintype, 0); } break; case XK_Home: label_shift = 0; return; case XK_End: label_shift = 50; clearStrip(Context); return; case XK_Page_Up: if (label_shift>0) --label_shift; return; case XK_Page_Down: if (label_shift<50) ++label_shift; return; case XK_equal: if (do_sync & 1) do_sync = do_sync & 2; else do_sync |= 1; menu_lasthint = '\0'; option_lasthint = '\0'; option_newhint = keysym; showOptionHint(getNumCmd(key)); break; case XK_Delete: case XK_BackSpace: case XK_guillemotleft: if (!memcmp(&Context->newzoom, &Context->oldzoom, sizeof(ZoomSettings))) return; Context->newzoom = Context->oldzoom; setZoomDimension(Context); zoom_mode |= 15; activateZoom(Context, zoom_active); return; case XK_Left: v = 0.5/Context->newzoom.fx; Context->newzoom.fdx -= v; if (Context->newzoom.fdxnewzoom.fdx = v; zoom_mode |= 14; activateZoom(Context, zoom_active); return; case XK_Right: v = 0.5/Context->newzoom.fx; Context->newzoom.fdx += v; if (Context->newzoom.fdx>1.0-v) Context->newzoom.fdx = 1.0-v; zoom_mode |= 14; activateZoom(Context, zoom_active); return; case XK_Up: v = 0.5/Context->newzoom.fy; Context->newzoom.fdy -= v; if (Context->newzoom.fdynewzoom.fdy = v; zoom_mode |= 14; activateZoom(Context, zoom_active); return; case XK_Down: v = 0.5/Context->newzoom.fy; Context->newzoom.fdy += v; if (Context->newzoom.fdy>1.0-v) Context->newzoom.fdy = 1.0-v; zoom_mode |= 14; activateZoom(Context, zoom_active); return; case XK_greater: if (do_dock && Context==Seed) break; Context->prevgeom = Context->geom; i = DisplayWidth(dpy, scr); Context->geom.width = i - extra_width; if (Context->geom.widthgeom.width = i/2; if (Context->geom.width>i) Context->geom.width = i; case XK_KP_Divide: if (key == XK_KP_Divide) key = XK_slash; case XK_colon: if (key == XK_colon) key = XK_slash; case XK_slash: if (do_dock && Context==Seed) break; if (key == XK_slash) { Context->prevgeom = Context->geom; Context->zoom.mode = 2; Context->newzoom.mode = Context->zoom.mode; } if (!do_zoom) Context->newzoom = Context->zoom; if (setWindowAspect(Context, &Context->zoom)) { if (key == XK_greater || key == XK_slash) { adjustGeom(Context, 0); XResizeWindow(dpy, Context->win, Context->geom.width, Context->geom.height+Context->gdata->menustrip); Context->geom.x = extra_width/2; XMoveWindow(dpy, Context->win, Context->geom.x, Context->geom.y); } warningNew(Context); shutDown(Context, 0); buildMap(Context, Context->wintype, 0); MapGeom = Context->geom; } break; case XK_apostrophe: menu_lasthint = ' '; option_lasthint = ' '; Context->flags.animate = 1 - Context->flags.animate; if (Context->flags.animate == 0) Context->jump -= progress_value[Context->flags.progress]; Context->flags.update = 4; break; case XK_quotedbl: if (do_zoom) zoom_active = 1 - zoom_active; zoom_mode = 30; activateZoom(Context, zoom_active); break; case XK_KP_Multiply: case XK_asterisk: key = XK_asterisk; if (!memcmp(&Context->newzoom, &Context->zoom, sizeof(ZoomSettings))) break; activateZoom(Context, 1); break; case XK_period: if (Context->mark1.city) { Context->newzoom.fdx = 0.5+Context->mark1.city->lon/360.0; Context->newzoom.fdy = 0.5-Context->mark1.city->lat/180.0; zoom_mode |= 14; zoom_lasthint = ' '; activateZoom(Context, zoom_active); } break; case XK_at: activateOption(); return; case XK_space: case XK_exclam: key = XK_exclam; menu_newhint = XK_exclam; if (Context==Seed && do_dock) return; Context->wintype = 1 - Context->wintype; if (Context->wintype) { Context->geom.width = MapGeom.width; Context->geom.height = MapGeom.height; } else { Context->geom.width = ClockGeom.width; Context->geom.height = ClockGeom.height; } adjustGeom(Context, 1); XSelectInput(dpy, Context->win, 0); setSizeHints(Context, Context->wintype); setClassHints(Context->win, Context->wintype); XMoveResizeWindow(dpy, Context->win, Context->geom.x, Context->geom.y, Context->geom.width, Context->geom.height+((Context->wintype)? Context->gdata->mapstrip:Context->gdata->clockstrip)); warningNew(Context); shutDown(Context, 0); buildMap(Context, Context->wintype, 0); return; case XK_1: case XK_KP_1: key = XK_1; if (memcmp(&Context->newzoom, &gzoom, sizeof(ZoomSettings))) { Context->newzoom = gzoom; zoom_mode |= 15; activateZoom(Context, zoom_active); } break; case XK_numbersign: if (memcmp(&Context->newzoom, &Context->zoom, sizeof(ZoomSettings))) { Context->newzoom = Context->zoom; zoom_mode |= 15; activateZoom(Context, zoom_active); } break; case XK_plus: case XK_KP_Add: key = XK_plus; Context->newzoom.fx *= ZFACT; Context->newzoom.fy *= ZFACT; setZoomDimension(Context); zoom_mode |= 14; activateZoom(Context, zoom_active); break; case XK_minus: case XK_KP_Subtract: key = XK_minus; Context->newzoom.fx /= ZFACT; Context->newzoom.fy /= ZFACT; setZoomDimension(Context); zoom_mode |= 14; activateZoom(Context, zoom_active); break; case XK_bracketright: menu_lasthint = ' '; option_lasthint = ' '; drawImageToRootWindow(Context, -1); break; case XK_bracketleft: menu_lasthint = ' '; option_lasthint = ' '; drawImageToRootWindow(Context, 1); break; case XK_ampersand: Context->newzoom.mode = (Context->newzoom.mode+1) %3; setZoomDimension(Context); zoom_mode |= 13; activateZoom(Context, zoom_active); break; case XK_a: Context->jump += progress_value[Context->flags.progress]; Context->flags.update = 4; menu_lasthint = ' '; break; case XK_b: Context->jump -= progress_value[Context->flags.progress]; Context->flags.update = 4; menu_lasthint = ' '; break; case XK_c: if (!Context->wintype) break; if (Context->flags.map_mode != COORDINATES) Context->flags.dms = gflags.dms; else Context->flags.dms = 1 - Context->flags.dms; Context->flags.map_mode = COORDINATES; if (Context->mark1.city == &Context->pos1) { if (Context->flags.colorlevel==FULLCOLORS) { erase_obj = 1; drawMarks(Context); erase_obj = 0; } Context->mark1.city = NULL; } if (Context->mark1.city) setDayParams(Context); if (Context->mark2.city) { if (Context->flags.colorlevel==FULLCOLORS) { erase_obj = 2; drawMarks(Context); erase_obj = 0; } } Context->mark2.city = NULL; Context->flags.update = 2; break; case XK_d: if (!Context->wintype) break; if (Context->flags.map_mode != DISTANCES) Context->flags.dms = gflags.dms; else Context->flags.dms = 1 - Context->flags.dms; Context->flags.map_mode = DISTANCES; break; case XK_e: if (!Context->wintype) break; Context->flags.map_mode = EXTENSION; old_mode = EXTENSION; Context->flags.hours_shown = 0; showHours(Context); break; case XK_f: if (!do_filesel) PopFilesel(Context); else { if (Filesel) { XMapWindow(dpy, Filesel); XMapRaised(dpy, Filesel); } if (FileselCaller != Context) { PopFilesel(Context); PopFilesel(Context); } } break; case XK_g: if (!do_menu && win != Option) PopMenu(Context); else { menu_lasthint = ' '; option_lasthint = ' '; if (keysym==XK_g) { Context->flags.progress = (Context->flags.progress+1) % 6; if (!progress_value[Context->flags.progress]) Context->flags.progress = 0; } if (keysym==XK_G) { Context->flags.progress = (Context->flags.progress+5) % 6; if (!progress_value[Context->flags.progress]) Context->flags.progress = 4; } } break; case XK_h: if (!do_menu) { menu_newhint = XK_space; PopMenu(Context); return; } else { if (MenuCaller != Context) { PopMenu(Context); PopMenu(Context); } else { if (getState(Menu) == IsViewable) { XMapRaised(dpy, Menu); showManual(); } else XMapWindow(dpy, Menu); } } break; case XK_i: setAuxilWins(Context, ICONIFY); XIconifyWindow(dpy, Context->win, scr); Context->flags.mapped = 0; break; case XK_j: Context->jump = 0; Context->flags.update = 4; menu_lasthint = ' '; option_lasthint = ' '; break; case XK_k: if (Context==Seed && do_dock) return; if (do_menu) PopMenu(Context); if (do_filesel) PopFilesel(Context); if (Context==Seed && Seed->next==NULL) shutDown(Context, -1); else shutDown(Context, 1); return; case XK_l: if (!Context->wintype) { clearStrip(Context); if (!Context->wintype) Context->flags.clock_mode = (Context->flags.clock_mode+1) % num_formats; Context->flags.update = 1; break; } Context->flags.map_mode = LEGALTIME; erasemarks: if (Context->flags.colorlevel==FULLCOLORS) { erase_obj = 3; drawMarks(Context); erase_obj = 0; } Context->mark1.city = NULL; Context->mark2.city = NULL; Context->flags.update = 2; break; case XK_m: if (!Context->wintype) break; if (Context->flags.colorlevel!=MANYCOLORS) { erase_obj = 1; drawLines(Context); erase_obj = 0; } if (keysym == XK_M) Context->flags.meridian = (Context->flags.meridian + 3) % 4; else Context->flags.meridian = (Context->flags.meridian + 1) % 4; if (Context->flags.colorlevel<=FEWCOLORS) drawLines(Context); Context->flags.update = 2; break; case XK_n: if ((Context->flags.colorlevelflags.colorscale == 1)) Context->flags.shading = 1 - Context->flags.shading; else { if (keysym==XK_n) Context->flags.shading = (Context->flags.shading + 1) % 6; if (keysym==XK_N) Context->flags.shading = (Context->flags.shading + 5) % 6; } drawShadedArea(Context); Context->flags.update = 4; break; case XK_o: if (!do_option) PopOption(Context); else { XMapWindow(dpy, Option); XMapRaised(dpy, Option); if (OptionCaller != Context) { PopOption(Context); PopOption(Context); } } break; case XK_p: if (!Context->wintype) break; if (Context->flags.colorlevel!=MANYCOLORS) { erase_obj = 1; drawLines(Context); erase_obj = 0; } i = Context->flags.parallel; if (keysym == XK_P) Context->flags.parallel = ((i+3)&3) + (i&8); else Context->flags.parallel = ((i+1)&3) + (i&8); if (Context->flags.colorlevel<=FEWCOLORS) drawLines(Context); Context->flags.update = 2; break; case XK_q: if (!do_dock) shutDown(Context, -1); break; case XK_s: if (Context->flags.map_mode != SOLARTIME) Context->flags.dms = gflags.dms; else Context->flags.dms = 1 - Context->flags.dms; Context->flags.map_mode = SOLARTIME; if (Context->mark2.city) { if (Context->flags.colorlevel==FULLCOLORS) { erase_obj = 2; drawMarks(Context); erase_obj = 0; } } Context->mark2.city = NULL; if (Context->mark1.city) setDayParams(Context); Context->flags.update = 2; break; case XK_t: if (!Context->wintype) break; if (Context->flags.colorlevel!=MANYCOLORS) { erase_obj = 1; drawLines(Context); erase_obj = 0; } Context->flags.parallel = (Context->flags.parallel + 8) & 15; if (Context->flags.colorlevel<=FEWCOLORS) drawLines(Context); Context->flags.update = 2; break; case XK_u: if (!Context->wintype) break; if (!do_urban) { PopUrban(Context); updateUrban(Context, Context->mark1.city); break; } else { if (getState(Urban)!=IsViewable) { XMapWindow(dpy, Urban); XMapRaised(dpy, Urban); updateUrban(Context, Context->mark1.city); break; } else XMapRaised(dpy, Urban); } if (Context->flags.colorlevel!=MANYCOLORS) { erase_obj = 1; drawCities(Context); erase_obj = 0; } if (keysym == XK_U) Context->flags.citymode = (Context->flags.citymode + 3) % 4; else Context->flags.citymode = (Context->flags.citymode + 1) % 4; if (Context->flags.colorlevel==MONOCHROME) drawCities(Context); Context->flags.update = 2; break; case XK_w: if (Context->time<=last_time+2) return; if (do_menu) do_menu = -1; if (do_filesel) do_filesel = -1; if (do_zoom) do_zoom = -1; if (do_option) do_option = -1; buildMap(Context, 1, 1); keysym = ' '; break; case XK_r: clearStrip(Context); Context->flags.update = 4; break; case XK_x: if (ExternAction) system(ExternAction); break; case XK_y: erase_obj = 1; drawSunAndMoon(Context); erase_obj = 0; if (keysym==XK_y) Context->flags.objectmode = (Context->flags.objectmode+1) % 3; if (keysym==XK_Y) Context->flags.objectmode = (Context->flags.objectmode+2) % 3; drawSunAndMoon(Context); Context->flags.update = 2; break; case XK_z: if (!do_zoom) PopZoom(Context); else { XMapWindow(dpy, Zoom); XMapRaised(dpy, Zoom); if (ZoomCaller != Context) { PopZoom(Context); PopZoom(Context); } } break; default: if (!Context->wintype) { Context->flags.clock_mode = (1+Context->flags.clock_mode) % num_formats; Context->flags.update = 1; } break ; } if (old_mode == EXTENSION && Context->flags.map_mode != old_mode) clearStrip(Context); if (do_menu) { if (getNumCmd(toupper(key))>=0) menu_newhint = toupper(key); j = -1; for (i=0; i=0) zoom_newhint = toupper(key); j = -1; for (i=0; i=0) option_newhint = toupper(key); j = -1; for (i=0; iflags.colorlevel==FULLCOLORS) { if (!Context->xim) return; } else { if (!Context->mappix) return; } if (evtype!=MotionNotify) RaiseAndFocus(win); if (evtype == ButtonPress) { if (win == Context->win && !Context->wintype) return; } if (win == Menu) { processMenuAction(MenuCaller, x, y, button, evtype); return; } if (win == Filesel) { processFileselAction(FileselCaller, x, y, evtype); return; } if (win == Zoom) { processZoomAction(ZoomCaller, x, y, button, evtype); return; } if (win == Option) { processOptionAction(OptionCaller, x, y, button, evtype); return; } if (win == Urban) { processUrbanAction(UrbanCaller, x, y, button, evtype); return; } /* Click on bottom strip of window */ if (y >= Context->geom.height) { if (button==1) { if (evtype==ButtonPress) return; if (do_menu && getState(Menu)==IsViewable) processKey(win, XK_o); else processKey(win, XK_h); return; } if (button==2) { processKey(win, XK_l); return; } if (button==3) { /* Open new window */ if (evtype==ButtonPress || !focus_in) return; if (pressed3) { y = Context->geom.height-1; goto rect; } processKey(win, XK_w); return; } } /* Click on the map with button 2*/ if (button==2) { processKey(win, XK_f); return; } if (!Context->wintype) pressed3 = 0; if (evtype == MotionNotify && pressed3 && !do_zoom && x0!=-1 && y0!= -1) { if (w>0 && h>0) { if (savepix) { XCopyArea(dpy, savepix, Context->win, Context->gdata->wingc, 0, 0, w+1, h+1, u, v); XFreePixmap(dpy, savepix); savepix = 0; } } if (x00 && h>0) savepix = XCreatePixmap(dpy, Root, w+1, h+1, DefaultDepth(dpy,scr)); if (savepix) XCopyArea(dpy, Context->win, savepix, Context->gdata->wingc, u, v, w+1, h+1, 0, 0); XDrawRectangle(dpy, Context->win, Context->gdata->wingc, u, v, w, h); Context->flags.update = 4; return; } /* Click on the map with button 3*/ if (button==3) { if (!Context->wintype) { if (evtype == ButtonRelease) processKey(win, XK_z); return; } if (do_zoom && win==ZoomCaller->win) { Context->newzoom.fdx = ((double)(x+Context->zoom.dx)) /((double)Context->zoom.width); Context->newzoom.fdy = ((double)(y+Context->zoom.dy)) /((double)Context->zoom.height); setZoomAspect(Context, 3); setZoomDimension(Context); zoom_mode = 14; zoom_lasthint = ' '; activateZoom(Context, zoom_active); } else { if (evtype == ButtonPress) { pressed3 = 1; x0 = x; y0 = y; return; } if (x0newzoom.fdx += (((double)(u+w/2)/(double)Context->geom.width)-0.5)/ Context->newzoom.fx; Context->newzoom.fdy += (((double)(v+h/2)/(double)Context->geom.height)-0.5)/ Context->newzoom.fy; fact = sqrt( ((double)Context->geom.width)/((double)w) * ((double)Context->geom.height)/((double)h) ); Context->newzoom.fx *= fact; Context->newzoom.fy *= fact; setZoomDimension(Context); zoom_mode |= 14; activateZoom(Context, zoom_active); x0 = -1; y0 = -1; return; } } return; } if (evtype == MotionNotify) return; /* Click with button 1 on the map */ /* It's a clock, just execute predefined command */ if (!Context->wintype) { if (ExternAction) system(ExternAction); else if (!do_menu) { menu_lasthint = '\0'; menu_newhint = ' '; PopMenu(Context); } return; } /* Otherwise, user wants to get info on a city or a location */ Context->flags.update = 1; /* Set the timezone, marks, etc, on a button press */ if (evtype==ButtonPress) return; processPoint(Context, x, y); } void processResize(win) Window win; { int i, x, y, w, h, num = 0; struct Sundata * Context = NULL; struct Geometry * Geom = NULL; if (win == Menu) return; if (win == Filesel) { if (!do_filesel) return; Geom = &FileselGeom; num = 3; } if (win == Zoom) { if (!do_zoom) return; Geom = &ZoomGeom; num = 4; } if (win == Option) { if (!do_option) return; Geom = &OptionGeom; num = 5; } if (win == Urban) { if (!do_urban) return; Geom = &UrbanGeom; num = 6; } if (num) { if (getPlacement(win, &x, &y, &w, &h)) return; if (w==Geom->width && h==Geom->height) return; if (ww_mini) w = Geom->w_mini; if (hh_mini) h = Geom->h_mini; Geom->width = w; Geom->height = h; if (verbose) fprintf(stderr, "Resizing %s to %d %d\n", widget_type[num], w, h); XSelectInput(dpy, win, 0); setSizeHints(NULL, num); setProtocols(NULL, num); if (num==3) setupFilesel(-1); if (num==4) { if (zoompix) { XFreePixmap(dpy, zoompix); zoompix = 0; } setupZoom(-1); } if (num==5) { w = ((OptionGeom.width-86) / XTextWidth(OptionCaller->gdata->font[MENUFONT], "_", 1))-2; resetStringLength(w, &option_entry); setupOption(-1); } if (num==6) { text_input = NULL_INPUT; setupUrban(-2); for (i=0; i<=4; i++) { w = (urban_w[i]/ XTextWidth(UrbanCaller->gdata->font[MENUFONT],"_",1))-2; resetStringLength(w, &urban_entry[i]); urban_entry[i].string[urban_entry[i].maxlength] = '\0'; } setupUrban(-1); } return; } Context = getContext(win); if(!Context) return; if (Context==Seed && !Context->wintype && do_dock) return; if (getPlacement(win, &x, &y, &w, &h)) return; h -= Context->hstrip; if (w==Context->geom.width && h==Context->geom.height) return; Context->prevgeom = Context->geom; if (wgeom.w_mini) w = Context->geom.w_mini; if (hgeom.h_mini) h = Context->geom.h_mini; Context->flags.update=2; showMapImage(Context); clearStrip(Context); writeStrip(Context); XFlush(dpy); Context->geom.width = w; Context->geom.height = h; if (Context->wintype) { MapGeom.width = w; MapGeom.height = h; } else { ClockGeom.width = w; ClockGeom.height = h; } adjustGeom(Context, 0); warningNew(Context); shutDown(Context, 0); setZoomAspect(Context, 3); buildMap(Context, Context->wintype, 2); XFlush(dpy); usleep(2*TIMESTEP); } /* * Got an expose event for window w. Do the right thing if it's not * currently the one we're displaying. */ void doTimeout(Context) struct Sundata * Context; { if (!Context) return; if (QLength(dpy) && Context->flags.update <= 2) return; /* ensure events processed first */ if (Context->flags.update) Context->count = 0; else Context->count = (Context->count+1) % TIMECOUNT; if (Context->count==0) { updateImage(Context); showMapImage(Context); writeStrip(Context); if (Context->flags.colorlevel==MONOCHROME) pulseMarks(Context); if (do_root == 2 && Context == RootCaller) drawImageToRootWindow(Context, 0); XFlush(dpy); if (Context->flags.animate) { if (abs(Context->time-Context->animtime) >= Context->flags.animperiod) { Context->animtime = Context->time; Context->jump += progress_value[Context->flags.progress]; Context->flags.update = 4; } } } } void doExpose(w) Window w; { struct Sundata * Context; Context = getContext(w); if (!Context) return; if (w == Menu) { setupMenu(-1); return; } if (w == Filesel) { setupFilesel(-1); return; } if (w == Zoom) { setupZoom(-1); return; } if (w == Option) { setupOption(-1); return; } if (w == Urban) { setupUrban(-1); return; } Context->flags.update = 2; showMapImage(Context); Context->flags.bottom &= 1; drawBottomline(Context); clearStrip(Context); Context->flags.hours_shown = 0; writeStrip(Context); } /* * Someone is sure to wonder why the event loop is coded this way, without * using select(). The answer is that this was developed on a System V * kernel, which has select() but the call has bugs; so, I was inspired * to make it portable to systems without select(). The slight delay in * expose event processing that results from using sleep(1) rather than * alarm() is a fine payoff for not having to worry about interrupted * system calls. * * I've got to use XCheckIfEvent with a degenerate predicate rather than * XCheckMaskEvent with a mask of -1L because the latter won't collect all * types of events, notably ClientMessage and Selection events. Sigh. */ Bool evpred(d, e, a) Display * d; XEvent * e; XPointer a; { return (True); } void eventLoop() { XEvent ev; Sundata * Context; Sundata * Which; char buffer[1]; KeySym keysym; for (;;) { if (XCheckIfEvent(dpy, &ev, evpred, (XPointer)0)) { /* fprintf(stderr, "Event %d, Window %d \n" " (Main %d, Menu %d, Sel %d, Zoom %d, Option %d)\n", ev.type, ev.xexpose.window, Seed->win, Menu, Filesel, Zoom, Option); */ switch(ev.type) { case EnterNotify: focus_in = 1; break; case LeaveNotify: focus_in = 0; break; case FocusOut: if (do_option && text_input == OPTION_INPUT && ev.xexpose.window == Option) { text_input = NULL_INPUT; setupOption(0); } if (do_urban && text_input >= URBAN_INPUT && ev.xexpose.window == Urban) { text_input = NULL_INPUT; setupUrban(0); } break; case VisibilityNotify: doExpose(ev.xexpose.window); break; case MapNotify: Context = getContext(ev.xexpose.window); if (!Context) break; if (Context->win!=ev.xexpose.window) break; setAuxilWins(Context, DEICONIFY); Context->flags.mapped = 1; updateImage(Context); Context->flags.update = 2; showMapImage(Context); writeStrip(Context); break; case UnmapNotify: Context = getContext(ev.xexpose.window); if (!Context) break; if (Context->win!=ev.xexpose.window) break; setAuxilWins(Context, ICONIFY); Context->flags.mapped = 0; break; case Expose: if (ev.xexpose.count == 0) doExpose(ev.xexpose.window); break; case ClientMessage: if (ev.xclient.message_type == wm_protocols && ev.xclient.format == 32 && ev.xclient.data.l[0] == wm_delete_window) { if (ev.xexpose.window == Menu) PopMenu(MenuCaller); else if (ev.xexpose.window == Filesel) PopFilesel(FileselCaller); else if (ev.xexpose.window == Zoom) PopZoom(ZoomCaller); else if (ev.xexpose.window == Option) PopOption(OptionCaller); else if (ev.xexpose.window == Urban) PopUrban(UrbanCaller); else { Context = getContext(ev.xexpose.window); if (!Context) break; if (Context!=Seed || !do_dock) shutDown(Context, 1); } } break; case KeyPress: case KeyRelease: XLookupString((XKeyEvent *) &ev, buffer, 1, &keysym, NULL); if (keysym==XK_Control_L || keysym==XK_Control_R) { if (ev.type == KeyPress) control_key = 1; if (ev.type == KeyRelease) control_key = 0; } else if (ev.type == KeyPress && keysym != XK_Mode_switch) processKey(ev.xexpose.window, keysym); break; case ButtonPress: case ButtonRelease: case MotionNotify: if (ev.type==ButtonPress) button_pressed = ev.xbutton.button; if (ev.type==ButtonRelease) button_pressed = 0; processMouseEvent(ev.xexpose.window, ev.xbutton.x, ev.xbutton.y, ev.xbutton.button, ev.type); break; /* case ResizeRequest: */ case PropertyNotify: case ConfigureNotify: processResize(ev.xexpose.window); break; default: break; } } else { Which = getContext(ev.xexpose.window); usleep(TIMESTEP); if (Which == NULL) Which = Seed; if (Which->win==ev.xexpose.window) processResize(Which->win); for (Context = Seed; Context; Context = Context->next) if (do_sync || Context == Which || Context == RootCaller || (do_dock && Context == Seed)) { if (do_sync & 2) Context->flags.update = 2; doTimeout(Context); } do_sync &= 1; } } } int main(argc, argv) int argc; char ** argv; { char * p; int i; ProgName = *argv; if ((p = strrchr(ProgName, '/'))) ProgName = ++p; /* Set default values */ initValues(); /* Set Language */ if (getenv("LANG")) { strncpy(language, getenv("LANG"), 2); language[2] = '\0'; } if (!*language) strcpy (language,"en"); /* Check if options define some new language */ for (i=1; igreen_mask==992) color_depth = 15; if (color_depth > 16) color_pad = 32; else if (color_depth > 8) color_pad = 16; else color_pad = 8; wm_protocols = XInternAtom(dpy, "WM_PROTOCOLS", False); wm_delete_window = XInternAtom(dpy, "WM_DELETE_WINDOW", False); if (verbose) { fprintf(stderr, "%s: version %s, %s\nDepth %d Bits/RGB %d Bigendian : %s\n" "Red mask %ld Green mask %ld Blue mask %ld\n", ProgName, VERSION, COPYRIGHT, color_depth, visual->bits_per_rgb, (bigendian)? "yes":"no", visual->red_mask, visual->green_mask, visual->blue_mask); } /* Correct some option parameters */ if (placement<0) placement = NW; city_spotsizes = (int *) salloc(city_cat * sizeof(int)); city_sizelimits = (int *) salloc(city_cat * sizeof(int)); correctValues(); parseFormats(ListFormats); buildMap(NULL, win_type, 1); eventLoop(); exit(0); } sunclock-3.57/Sunclockrc0000644000000000000000000006517610442457706012240 0ustar # The format of this file is: # # # # where each option is of the form # option: parameters # or # -option1 parameters -option2 parameters ... # # If one of the parameters requires a blank space, but is considered # to be a single parameter, use the  character as a replacement of # the blank space (combination of keys Q _ under emacs) # # (The same apply in the option widget, with instead) # # The format for cities is # addcity: importance:cityname:latitude:longitude:timezone # # The importance is a positive integer value, with # 1 = major capital city # 2 = important city # 3 = less important city, etc... # 0 is meant to hide a city, even though its coordinates are memorized # # The latitude and longitude should be signed floating point numbers, # with -90 < lat <= 90 and -180 < lon <= 180 # A negative latitude should be used for places south of the equator # and a negative longitude should be used for places west of the prime # meridian. #mapmode: L #language: en #city: Washington #map #mapimage: /usr/share/sunclock/earthmaps/jpeg/caida.jpg #tropics #twilight #-tropics -tropiccolor lavender # Polish charset for ISO 8859-2 encoding. # proceed similarly for other languages # use a comma separated list of languages, e.g. pl,cz,hu setfont: menu|-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-2|pl setfont: clockstrip|-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-2|pl setfont: mapstrip|-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-2|pl setfont: city|-misc-fixed-medium-r-normal--10-100-75-75-c-60-iso8859-2|pl setfont: coord|-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-2|pl addcity 1|London|51.508|-0.183|GMT0BST,M3.5.0,M10.5.0 addcity 1|Moscow|55.750|37.700|MSK-3MSD,M3.5.0,M10.5.0 addcity 1|NewDelhi|28.900|77.217|IST-5:30 addcity 1|NewYork|40.752|-73.994|EST5EDT addcity 1|LosAngeles|34.054|-118.241|PST8PDT addcity 1|MexicoCity|19.467|-99.150|CST6CDT,M5.1.0/2:00,M9.5.0/2:00 addcity 1|SaoPaulo|-23.567|-46.633|BRT3BRST,M10.2.0/0:00,M2.3.0/0:00 addcity 1|Cairo|31.250|31.050|EST-2EDT1,121,274 addcity 1|Bombay|18.967|72.833|IST-5:30 addcity 1|Calcutta|22.533|88.367|IST-5:30 addcity 1|Tokyo|35.683|139.733|JST-9 addcity 1|Beijing|39.917|116.383|CST-8 addcity 1|Sydney|-33.917|151.283|EST-10EST,M10.5.0/2:00,M3.5.0/3:00 addcity 2|Paris|48.837|2.337|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Berlin|52.533|13.417|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Rome|41.867|12.617|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Madrid|40.417|-3.700|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Athens|37.967|23.733|EET-2EETDST,M3.5.0,M10.5.0 addcity 2|Budapest|47.433|19.250|CET-2CDT,M3.5.0,M10.5.0 addcity 2|Sofia|42.667|23.300|EET-3EDT,M3.5.0,M10.5.0 addcity 2|Reykjavik|64.130|-21.937|GMT0 addcity 2|Oslo|59.917|10.750|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Stockholm|59.583|18.100|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Helsinki|60.167|24.883|EET-2EETDST,M3.5.0,M10.5.0 addcity 2|Geneva|46.233|6.067|MET-1METDST,M3.5.0,M10.5.0 addcity 2|Warsaw|52.583|21.083|CET-2CDT,M3.5.0,M10.5.0 addcity 2|SaintPetersburg|59.950|30.333|MSK-3MSD,M3.5.0/2:00,M10.5.0/3:00 addcity 2|Tashkent|41.333|69.300|UZT-5 addcity 2|Alma-Ata|43.230|76.880|ALMT-6ALMST,M3.5.0/0:00,M10.5.0/0:00 addcity 2|Irkutsk|52.200|104.300|IRKT-8IRKST,M3.5.0/2:00,M10.5.0/3:00 addcity 2|Vladivostok|43.100|+131.783|VLAT-10VLAST,M3.5.0/2:00,M10.5.0/3:00 addcity 2|Baghdad|33.233|44.367|AST-3ASST,J91/3:00,J274/4:00 addcity 2|Tehran|35.750|51.500|IRT-3:30IRST,J80/0:00,J266/0:00 addcity 2|Riyadh|24.517|46.783|AST-3 addcity 2|Madras|13.000|80.183|IST-5:30 addcity 2|Bangkok|13.833|100.483|TST-7 addcity 2|Kathmandu|27.817|85.350|NPT-5:45 addcity 2|Manila|14.617|+121.000|PHT-8 addcity 2|KualaLumpur|3.133|101.700|PST-8 addcity 2|Brunei|4.950|114.937|BNT-8 addcity 2|Jakarta|-6.183|106.833|PST-7 addcity 2|HongKong|22.250|114.166|CST-8 addcity 2|Casablanca|33.533|-7.683|GMT0 addcity 2|Alger|36.700|3.217|CET-1 addcity 2|Tunis|36.850|10.217|CET-1 addcity 2|N'Djamena|12.140|15.040|WAT-1 addcity 2|Beirut|33.900|35.467|CET-2CDT,M3.5.0,M10.5.0 addcity 2|Monrovia|6.250|-10.350|GMT0 addcity 2|Timbuktu|16.800|-3.000|GMT0 addcity 2|Bamako|12.650|-8.000|GMT0 addcity 2|Nairobi|-1.283|36.817|EAT-3 addcity 2|Brazzaville|-4.200|15.300|WAT-1 addcity 2|Djibouti|11.567|43.000|EAT-3 addcity 2|CapeTown|-33.933|18.371|SAT-2 addcity 2|Antananarivo|-18.520|48.300|EAT-3 addcity 2|Adelaide|-34.767|138.537|CST-9:30CST,M10.5.0,M3.5.0 addcity 2|Darwin|-12.420|130.837|CST-9:30 addcity 2|Perth|-31.941|115.965|WST-8 addcity 2|Auckland|-36.883|174.750|NZST-12NZDT,M10.1.0/2:00,M3.3.0/3:00 addcity 2|Tahiti|-17.550|-149.600|TAHT10 addcity 2|Toronto|43.670|-79.370|EST5EDT,M4.1.0/2:00,M10.5.0/2:00 addcity 2|Calgary|51.050|-114.083|MST7MDT addcity 2|Anchorage|61.167|-149.983|YST9YDT addcity 2|Washington|38.898|-77.009|EST5EDT addcity 2|Denver|39.749|-104.989|MST7MDT addcity 2|SaltLakeCity|40.756|-111.891|MST7MDT addcity 2|Chicago|41.874|-87.639|CST6CDT addcity 2|SanFrancisco|37.778|-122.411|PST8PDT addcity 2|Honolulu|21.306|-157.860|HST10 addcity 2|Thule|76.540|-68.700|ADT4 addcity 2|Godthab|64.200|-51.680|WGT3WGST,M3.5.6/22:00,M10.5.6/23:00 addcity 2|Cayenne|4.900|-52.500|GFT3 addcity 2|Bogota|4.633|-74.083|WBT5 addcity 2|Santiago|-33.433|-70.667|CLT4CLST,M10.2.0/0:00,M3.2.0/0:00 addcity 2|Brasilia|-15.867|-47.917|BRT3BRST,M10.2.0/0:00,M2.3.0/0:00 addcity 2|RiodeJaneiro|-22.450|-42.717|BRT3BRST,M10.2.0/0:00,M2.3.0/0:00 addcity 2|BuenosAires|-34.333|-58.500|ART3 addcity 2|Lima|-12.100|-76.917|PET5 addcity 2|Erebus|-77.457|+167.080|NZST-12NZDT,M10.1.0/2:00,M3.3.0/3:00 addcity 3|Aachen|50.784|6.053|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Aberdeen|57.207|-2.209|GMT0BST,M3.5.0,M10.5.0 addcity 3|Abilene|32.451|-99.731|CST6CDT addcity 3|Akron|41.083|-81.512|EST5EDT addcity 3|Albany|42.650|-73.750|EST5EDT addcity 3|Albuquerque|35.084|-106.651|MST7MDT addcity 3|AliceSprings|-23.808|133.901|CST-9:30 addcity 3|Allentown|40.603|-75.468|EST5EDT addcity 3|Altoona|40.515|-78.401|EST5EDT addcity 3|Amarillo|35.208|-101.834|CST6CDT addcity 3|Amsterdam|52.367|4.900|MET-1METDST,M3.5.0,M10.5.0 addcity 3|AnnArbor|42.283|-83.748|EST5EDT addcity 3|Antwerp|51.171|4.406|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Archenhold-Sternwarte|52.483|13.483|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Arlington|38.867|-77.117|EST5EDT addcity 3|Asheville|35.595|-82.557|EST5EDT addcity 3|Ashland|38.477|-82.640|EST5EDT addcity 3|Atlanta|33.753|-84.394|EST5EDT addcity 3|AtlanticCity|39.359|-74.431|EST5EDT addcity 3|Augusta|33.472|-81.967|EST5EDT addcity 3|Augusta|44.315|-69.775|EST5EDT addcity 3|Austin|30.269|-97.744|CST6CDT addcity 3|Bakersfield|35.375|-119.022|PST8PDT addcity 3|Baltimore|39.293|-76.612|EST5EDT addcity 3|Bangor|44.804|-68.772|EST5EDT addcity 3|Barcelona|41.383|2.150|MET-1METDST,M3.5.0,M10.5.0 addcity 3|BatonRouge|30.449|-91.183|CST6CDT addcity 3|BattleCreek|42.316|-85.180|EST5EDT addcity 3|Batumi|43.667|40.000|EST-5EDT addcity 3|BayCity|43.601|-83.888|EST5EDT addcity 3|Beaumont|30.089|-94.103|CST6CDT addcity 3|Belfast|54.583|-5.833|GMT0BST,M3.5.0,M10.5.0 addcity 3|Bellingham|48.759|-122.477|PST8PDT addcity 3|BentleyWA|-31.979|115.815|WST-8 addcity 3|Berkeley|37.869|-122.271|PST8PDT addcity 3|Bethlehem|40.621|-75.376|EST5EDT addcity 3|Billings|45.783|-108.501|MST7MDT addcity 3|Biloxi|30.397|-88.883|CST6CDT addcity 3|Binghamton|42.101|-75.913|EST5EDT addcity 3|Birmingham|33.517|-86.810|CST6CDT addcity 3|Bismarck|46.806|-100.788|CST6CDT addcity 3|Bloomington|40.483|-88.993|CST6CDT addcity 3|Boise|43.619|-116.199|MST7MDT addcity 3|Bonn|50.667|7.100|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Bordeaux|44.833|-0.583|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Boston|42.357|-71.057|EST5EDT addcity 3|BowlingGreen|36.995|-86.442|CST6CDT addcity 3|Bratislava|48.167|17.117|CET-2CDT,M3.5.0,M10.5.0 addcity 3|Brattleboro|42.852|-72.563|EST5EDT addcity 3|Brest|48.383|-4.483|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Bridgeport|41.180|-73.189|EST5EDT addcity 3|BrisbaneQld|-27.500|153.000|EST-10 addcity 3|Brockton|42.084|-71.024|EST5EDT addcity 3|Brownsville|25.902|-97.499|CST6CDT addcity 3|Brussels|50.839|4.637|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Buffalo|42.881|-78.873|EST5EDT addcity 3|Burlington|44.476|-73.213|EST5EDT addcity 3|Butte|46.018|-112.536|MST7MDT addcity 3|Buxton|35.263|-75.561|EST5EDT addcity 3|Cambridge|52.167|0.100|GMT0BST,M3.5.0,M10.5.0 addcity 3|Cambridge|42.367|-71.106|EST5EDT addcity 3|Camden|39.945|-75.121|EST5EDT addcity 3|CanberraACT|-35.240|149.120|EST-10EST,M10.5.0,M3.5.0 addcity 3|Canton|40.797|-81.377|EST5EDT addcity 3|CarsonCity|39.167|-119.767|PST8PDT addcity 3|CedarRapids|41.967|-91.665|CST6CDT addcity 3|CentralIslip|40.790|-73.200|EST5EDT addcity 3|Champaign|40.118|-88.247|CST6CDT addcity 3|Charleston|32.776|-79.931|EST5EDT addcity 3|Charleston|38.350|-81.631|EST5EDT addcity 3|Charlotte|35.229|-80.846|EST5EDT addcity 3|Chattanooga|35.045|-85.309|EST5EDT addcity 3|Cheyenne|41.136|-104.819|MST7MDT addcity 3|Cincinnatti|39.102|-84.510|EST5EDT addcity 3|Cleveland|41.498|-81.697|EST5EDT addcity 3|Cologne|50.883|6.967|MET-1METDST,M3.5.0,M10.5.0 addcity 3|ColoradoSprings|38.835|-104.821|MST7MDT addcity 3|Columbia|38.951|-92.329|CST6CDT addcity 3|Columbia|34.001|-81.033|EST5EDT addcity 3|Columbus|32.469|-84.990|EST5EDT addcity 3|Columbus|39.963|-83.005|EST5EDT addcity 3|Concord|43.206|-71.540|EST5EDT addcity 3|CorpusChristi|27.797|-97.396|CST6CDT addcity 3|Crete|35.333|25.150|EET-2EETDST,M3.5.0,M10.5.0 addcity 3|Dallas|32.786|-96.794|CST6CDT addcity 3|Davenport|41.522|-90.576|CST6CDT addcity 3|Dayton|39.759|-84.195|EST5EDT addcity 3|DaytonaBeach|29.212|-81.019|EST5EDT addcity 3|Decatur|39.845|-88.946|CST6CDT addcity 3|DesMoines|41.587|-93.617|CST6CDT addcity 3|Detroit|42.330|-83.049|EST5EDT addcity 3|DodgeCity|37.755|-100.019|CST6CDT addcity 3|Dublin|53.316|-6.239|GMT0BST,M3.5.0,M10.5.0 addcity 3|Dubuque|42.499|-90.669|CST6CDT addcity 3|Duluth|46.782|-92.107|CST6CDT addcity 3|Durham|36.000|-78.912|EST5EDT addcity 3|EauClaire|44.809|-91.497|CST6CDT addcity 3|Edinburgh|55.917|-3.167|GMT0BST,M3.5.0,M10.5.0 addcity 3|Edmonton|53.563|-113.613|MST7MDT addcity 3|ElPaso|31.760|-106.486|MST7MDT addcity 3|Elizabeth|40.662|-74.216|EST5EDT addcity 3|Enid|36.394|-97.876|CST6CDT addcity 3|Erie|42.121|-80.082|EST5EDT addcity 3|Eugene|44.054|-123.092|PST8PDT addcity 3|Eureka|40.802|-124.163|PST8PDT addcity 3|Evansville|37.972|-87.573|CST6CDT addcity 3|FallRiver|41.702|-71.155|EST5EDT addcity 3|Fargo|46.875|-96.788|CST6CDT addcity 3|Flagstaff|35.193|-111.652|MST7 addcity 3|Flint|43.014|-83.692|EST5EDT addcity 3|FortSmith|35.386|-94.427|CST6CDT addcity 3|FortWayne|41.072|-85.141|EST5 addcity 3|FortWorth|32.749|-97.329|CST6CDT addcity 3|Frankfurt|50.050|8.400|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Fresno|36.737|-119.786|PST8PDT addcity 3|Gadsden|34.016|-86.011|CST6CDT addcity 3|Gainesville|29.649|-82.322|EST5EDT addcity 3|Gallup|35.525|-108.742|MST7MDT addcity 3|Galveston|29.303|-94.795|CST6CDT addcity 3|Gary|41.603|-87.339|CST6CDT addcity 3|GillamManitoba|56.380|-94.640|CST6CDT addcity 3|GrandJunction|39.068|-108.565|MST7MDT addcity 3|GrandRapids|42.968|-85.670|EST5EDT addcity 3|GreatFalls|47.492|-111.306|MST7MDT addcity 3|GreenBay|44.513|-88.014|CST6CDT addcity 3|Greensboro|36.071|-79.790|EST5EDT addcity 3|Greenville|34.847|-82.400|EST5EDT addcity 3|Greenwich|51.500|-0.000|GMT0BST,M3.5.0,M10.5.0 addcity 3|Grenoble|45.183|5.733|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Groton|42.591|-72.556|EST5EDT addcity 3|GuatemalaCity|14.633|-90.367|CST6CDT addcity 3|Gulfport|30.368|-89.093|CST6CDT addcity 3|Halifax|44.649|-63.574|AST5ADT addcity 3|Hamburg|53.600|9.933|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Hamilton|39.400|-84.563|EST5EDT addcity 3|Hannover|52.380|9.711|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Harare|-17.833|31.050|SAT-2 addcity 3|Harrisburg|40.262|-76.883|EST5EDT addcity 3|Hartford|41.770|-72.680|EST5EDT addcity 3|Helena|46.593|-112.040|MST7MDT addcity 3|Hobart|-42.833|147.333|EST-10EST,M10.1.0,M3.5.0 addcity 3|Holyoke|42.208|-72.610|EST5EDT addcity 3|Houston|29.757|-95.360|CST6CDT addcity 3|Huntington|38.420|-82.442|EST5EDT addcity 3|Huntsville|34.738|-86.589|CST6CDT addcity 3|Indianapolis|39.769|-86.163|EST5 addcity 3|IowaCity|41.660|-91.531|CST6CDT addcity 3|Jackson|42.245|-84.406|EST5EDT addcity 3|Jackson|32.299|-90.185|CST6CDT addcity 3|Jacksonville|30.329|-81.662|EST5EDT addcity 3|JerseyCity|40.731|-74.066|EST5EDT addcity 3|Jerusalem|31.783|35.217|IST-2IDT,M3.5.0,M9.1.0 addcity 3|Johannesburg|-26.167|28.033|SAT-2 addcity 3|Johnstown|40.326|-78.918|EST5EDT addcity 3|Joplin|37.091|-94.500|CST6CDT addcity 3|Juneau|58.303|-134.408|YST9YDT addcity 3|Kalamazoo|42.291|-85.587|EST5EDT addcity 3|KansasCity|39.118|-94.640|CST6CDT addcity 3|Kenosha|42.595|-87.836|CST6CDT addcity 3|KensingtonNSW|-33.867|151.217|EST-10EST,M10.5.0,M3.5.0 addcity 3|KeyWest|24.558|-81.803|EST5EDT addcity 3|Knoxville|35.961|-83.919|EST5EDT addcity 3|Lafayette|40.420|-86.894|EST5 addcity 3|Lancaster|40.040|-76.308|EST5EDT addcity 3|Lansing|42.734|-84.554|EST5EDT addcity 3|Laredo|27.506|-99.508|CST6CDT addcity 3|LasVegas|36.172|-115.144|PST8PDT addcity 3|Lawrence|42.704|-71.169|EST5EDT addcity 3|Lexington|38.047|-84.496|EST5EDT addcity 3|Lille|50.633|3.067|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Lima|40.743|-84.106|EST5EDT addcity 3|Lincoln|40.816|-96.704|CST6CDT addcity 3|Lisbon|38.717|-9.133|WET0WETDST,M3.5.0,M10.5.0 addcity 3|LittleRock|34.745|-92.277|CST6CDT addcity 3|LongBeach|33.771|-118.188|PST8PDT addcity 3|Longyearbyen|78.203|15.829|MET-1MET(DST),M3.5.0,M10.5.0 addcity 3|Lorain|41.468|-82.180|EST5EDT addcity 3|Louisville|38.246|-85.764|EST5EDT addcity 3|Lowell|42.640|-71.321|EST5EDT addcity 3|Lubbock|33.585|-101.843|CST6CDT addcity 3|Lund|56.150|13.300|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Luxembourg|49.617|6.150|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Macon|32.837|-83.627|EST5EDT addcity 3|MacquarieIsland|-54.500|158.950|NZT-12NZS,M10.1.0,M3.2.0 addcity 3|Madison|43.073|-89.382|CST6CDT addcity 3|Managua|13.167|-86.267|CST6 addcity 3|Manchester|42.991|-71.461|EST5EDT addcity 3|Marseille|43.283|5.367|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Marshall|32.550|-94.383|CST6CDT addcity 3|Melbourne|-37.800|144.967|EST-10EST,M10.5.0,M3.5.0 addcity 3|Memphis|35.146|-90.054|CST6CDT addcity 3|Meriden|41.535|-72.792|EST5EDT addcity 3|Miami|25.777|-80.192|EST5EDT addcity 3|Milano|45.443|9.186|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Milwaukee|43.039|-87.904|CST6CDT addcity 3|Minneapolis|44.983|-93.262|CST6CDT addcity 3|Minot|48.236|-101.294|CST6CDT addcity 3|Mobile|30.693|-88.043|CST6CDT addcity 3|Moline|41.509|-90.514|CST6CDT addcity 3|Montgomery|32.376|-86.309|CST6CDT addcity 3|Montpelier|44.260|-72.578|EST5EDT addcity 3|Montreal|45.507|-73.567|EST5EDT addcity 3|Moratuwa|6.750|79.917|IST-5:30 addcity 3|Muncie|40.191|-85.388|CST6 addcity 3|Munich|48.233|11.950|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Nashville|36.159|-86.782|CST6CDT addcity 3|Natchez|31.563|-91.392|CST6CDT addcity 3|NewBedford|41.637|-70.928|EST5EDT addcity 3|NewBritain|41.669|-72.783|EST5EDT addcity 3|NewHaven|41.307|-72.925|EST5EDT addcity 3|NewOrleans|29.948|-90.069|CST6CDT addcity 3|Newark|40.737|-74.172|EST5EDT addcity 3|Newcastle|-32.867|151.817|EST-10EST,M10.5.0,M3.5.0 addcity 3|NiagaraFalls|43.093|-79.057|EST5EDT addcity 3|Nicosia|35.150|33.283|EET-2EEST,M3.5.0/3:00,M10.5.0/4:00 addcity 3|Norfolk|36.853|-76.289|EST5EDT addcity 3|Oakland|37.801|-122.265|PST8PDT addcity 3|Ogden|41.225|-111.972|MST7MDT addcity 3|OklahomaCity|35.474|-97.518|CST6CDT addcity 3|Omaha|41.262|-95.937|CST6CDT addcity 3|Orlando|28.545|-81.377|EST5EDT addcity 3|Ottawa|45.400|-75.650|EST5EDT addcity 3|Paducah|37.087|-88.432|CST6CDT addcity 3|Pasadena|34.146|-118.145|PST8PDT addcity 3|Paterson|40.917|-74.172|EST5EDT addcity 3|Pensacola|30.414|-87.216|CST6CDT addcity 3|Peoria|40.695|-89.593|CST6CDT addcity 3|Philadelphia|39.949|-75.156|EST5EDT addcity 3|Phoenix|33.453|-112.074|MST7 addcity 3|Pierre|44.372|-100.348|CST6CDT addcity 3|Pittsburgh|40.489|-80.000|EST5EDT addcity 3|Pittsfield|42.448|-73.254|EST5EDT addcity 3|Pocatello|42.861|-112.450|MST7MDT addcity 3|PortArthur|29.875|-93.938|CST6CDT addcity 3|Portland|43.659|-70.255|EST5EDT addcity 3|Portland|45.518|-122.676|PST8PDT addcity 3|Portsmouth|43.075|-70.757|EST5EDT addcity 3|Portsmouth|36.835|-76.304|EST5EDT addcity 3|Prague|50.083|14.400|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Pretoria|-26.167|28.033|SAT-2 addcity 3|Providence|41.826|-71.411|EST5EDT addcity 3|Provo|40.235|-111.657|MST7MDT addcity 3|Pueblo|38.271|-104.609|MST7MDT addcity 3|Racine|42.730|-87.787|CST6CDT addcity 3|Raleigh|35.777|-78.639|EST5EDT addcity 3|RankinInletNunavut|62.820|-92.110|CST6CDT addcity 3|RapidCity|44.081|-103.220|MST7MDT addcity 3|Reading|40.336|-75.928|EST5EDT addcity 3|Reno|39.524|-119.811|PST8PDT addcity 3|Richmond|37.538|-77.436|EST5EDT addcity 3|Roanoke|37.270|-79.946|EST5EDT addcity 3|Rochester|44.023|-92.468|CST6CDT addcity 3|Rochester|43.161|-77.606|EST5EDT addcity 3|Rockford|42.269|-89.097|CST6CDT addcity 3|RoquedelosMuchachos|28.758|-17.880|AST1ADT,M3.5.0,M10.5.0 addcity 3|Sacramento|38.583|-121.495|PST8PDT addcity 3|Saginaw|43.431|-83.935|EST5EDT addcity 3|SaintCloud|45.567|-94.173|CST6CDT addcity 3|SaintJoseph|39.766|-94.851|CST6CDT addcity 3|SaintLouis|38.629|-90.206|CST6CDT addcity 3|SaintLuciaQld|-27.501|153.011|EST-10 addcity 3|SaintPaul|44.955|-93.102|CST6CDT addcity 3|SaintPetersburg|27.772|-82.639|EST5EDT addcity 3|Salem|44.940|-123.033|PST8PDT addcity 3|Salina|38.843|-97.613|CST6CDT addcity 3|Salzburg|48.050|16.617|MET-1METDST,M3.5.0,M10.5.0 addcity 3|SanAngelo|31.461|-100.434|CST6CDT addcity 3|SanAntonio|29.427|-98.485|CST6CDT addcity 3|SanBernardino|34.108|-117.291|PST8PDT addcity 3|SanDiego|32.715|-117.156|PST8PDT addcity 3|SanJose|37.338|-121.890|PST8PDT addcity 3|SanJuan|18.467|-66.117|AST4 addcity 3|SantaBarbara|34.422|-119.699|PST8PDT addcity 3|SantaCruz|36.972|-122.022|PST8PDT addcity 3|SantaFe|35.686|-105.936|MST7MDT addcity 3|Santiago|-33.450|-70.550|WST4WDT,M9.5.0,M3.2.0 addcity 3|SantoDomingo|18.500|-69.950|DRT4 addcity 3|Sapporo|43.067|141.333|JST-9 addcity 3|Sarasota|27.335|-82.542|EST5EDT addcity 3|Savannah|32.078|-81.094|EST5EDT addcity 3|Schenectady|42.812|-73.928|EST5EDT addcity 3|Scranton|41.409|-75.663|EST5EDT addcity 3|Seattle|47.609|-122.337|PST8PDT addcity 3|Sheboygan|43.751|-87.714|CST6CDT addcity 3|Sheridan|44.799|-106.953|MST7MDT addcity 3|Shreveport|32.513|-93.749|CST6CDT addcity 3|Singapore|1.417|103.833|SST-8 addcity 3|SiouxCity|42.496|-96.408|CST6CDT addcity 3|SiouxFalls|43.543|-96.726|CST6CDT addcity 3|Somerville|42.388|-71.102|EST5EDT addcity 3|SouthBend|41.676|-86.250|EST5 addcity 3|Spartanburg|34.951|-81.935|EST5EDT addcity 3|Spokane|47.659|-117.426|PST8PDT addcity 3|Springfield|39.799|-89.647|CST6CDT addcity 3|Springfield|42.106|-72.592|EST5EDT addcity 3|Springfield|37.218|-93.292|CST6CDT addcity 3|Springfield|39.927|-83.808|EST5EDT addcity 3|SaintPetersburg|59.917|30.250|MSK-3MSD,M3.5.0,M10.5.0 addcity 3|Stamford|41.053|-73.540|EST5EDT addcity 3|Steubenville|40.362|-80.615|EST5EDT addcity 3|Stockton|37.958|-121.288|PST8PDT addcity 3|Strasbourg|48.583|7.750|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Stuttgart|48.767|9.183|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Superior|46.721|-92.102|CST6CDT addcity 3|SydneyNSW|-33.867|151.200|EST-10EST,M10.5.0,M3.5.0 addcity 3|Syracuse|43.051|-76.154|EST5EDT addcity 3|Tacoma|47.250|-122.438|PST8PDT addcity 3|Taipei|25.033|121.517|TST-8 addcity 3|Tallahassee|30.442|-84.282|EST5EDT addcity 3|Tallinn|59.450|24.750|EET-2EETDST,M3.5.0,M10.5.0 addcity 3|Tampa|27.949|-82.457|EST5EDT addcity 3|Tangier|35.867|-5.917|GMT0 addcity 3|TerreHaute|39.468|-87.407|EST5 addcity 3|Texarkana|33.430|-94.042|CST6CDT addcity 3|Toledo|41.654|-83.544|EST5EDT addcity 3|Topeka|39.054|-95.673|CST6CDT addcity 3|Toronto|43.653|-79.383|EST5EDT addcity 3|Trenton|40.221|-74.770|EST5EDT addcity 3|Tromso|69.683|19.583|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Troy|42.729|-73.683|EST5EDT addcity 3|Tucson|32.221|-110.969|MST7 addcity 3|Tulsa|36.153|-95.993|CST6CDT addcity 3|Urbana|40.112|-88.202|CST6CDT addcity 3|Utica|43.103|-75.226|EST5EDT addcity 3|Vancouver|49.276|-123.142|PST8PDT addcity 3|Varna|43.200|27.950|CET-2CDT,M3.5.0,M10.5.0 addcity 3|Victoria|48.500|-123.417|PST8PDT addcity 3|Vienna|48.200|16.367|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Waco|31.553|-97.133|CST6CDT addcity 3|WallaWalla|46.069|-118.340|PST8PDT addcity 3|Waterbury|41.554|-73.042|EST5EDT addcity 3|Waterloo|42.494|-92.339|CST6CDT addcity 3|Wellington|-41.290|174.769|NZT-12NZD,M10.1.0,M3.2.0 addcity 3|WestPalmBeach|26.710|-80.052|EST5EDT addcity 3|Wheeling|40.068|-80.722|EST5EDT addcity 3|WhitePlains|41.033|-73.763|EST5EDT addcity 3|WichitaFalls|33.909|-98.491|CST6CDT addcity 3|Wichita|37.692|-97.338|CST6CDT addcity 3|Wilkes-Barre|41.242|-75.888|EST5EDT addcity 3|Wilmington|39.746|-75.547|EST5EDT addcity 3|Wilmington|34.237|-77.949|EST5EDT addcity 3|Winnipeg|49.833|-97.117|CST6CDT addcity 3|Winston-Salem|36.098|-80.245|EST5EDT addcity 3|Wollongong|-34.400|150.900|EST-10EST,M10.5.0,M3.5.0 addcity 3|Worcester|42.260|-71.805|EST5EDT addcity 3|Yakima|46.602|-120.511|PST8PDT addcity 3|Yonkers|40.932|-73.898|EST5EDT addcity 3|York|39.960|-76.727|EST5EDT addcity 3|Youngstown|41.099|-80.651|EST5EDT addcity 3|Yuma|32.715|-114.623|MST7 addcity 3|Zagreb|45.812|15.981|MET-1METDST,M3.5.0,M10.5.0 addcity 3|Zanesville|39.938|-82.008|EST5EDT addcity 3|Zurich|47.378|8.551|MET-1METDST,M3.5.0,M10.5.0 addcity 4|ATCANarrabri|-30.314|149.567|EST-10EST,M10.5.0,M3.5.0 addcity 4|AlleghenyObservatory|40.483|-80.017|EST5EDT addcity 4|Anglo-AustralianObservatory|-31.277|149.066|EST-10EST,M10.5.0,M3.5.0 addcity 4|AreciboRadiotelescope|18.354|-66.755|AST4 addcity 4|Astrophys.ResearchConsortium(ARC)|32.783|-105.817|CST6CDT addcity 4|AstronomischesInst.Univ.Obs.|48.233|16.333|MET-1METDST,M3.5.0,M10.5.0 addcity 4|BIMA|40.817|-121.467|PST8PDT addcity 4|BiseiSpaceguardCenter|34.672|133.544|JST-9 addcity 4|ByurakanObservatory|40.333|44.300|MSK-3MSD,M3.5.0,M10.5.0 addcity 4|CalarAltoObservatory|37.217|-2.533|MET-1METDST,M3.5.0,M10.5.0 addcity 4|Canada-France-HawaiiTel.(CFHT)|19.827|-155.472|HST10 addcity 4|CaseyObservatory|-66.200|110.350|WST-8 addcity 4|CatalinaObservatory|32.417|-110.732|PST8PDT addcity 4|CerroTololoInter-AmericanObs.|-30.165|-70.815|WST4WDT,M9.5.0,M3.2.0 addcity 4|ColumbusProject|32.700|-109.850|PST8PDT addcity 4|CrimeanAstrophysicalObs.|44.733|34.000|CET-2CDT,M3.5.0,M10.5.0 addcity 4|DavisObservatory|-68.583|77.967|AAT-6 addcity 4|DominionAstrophysicalObservatory|48.522|-123.417|PST8PDT addcity 4|DominionRadioAstro.Observatory|49.333|-119.600|PST8PDT addcity 4|Effelsberg100mRadiotelescope|50.527|6.855|MET-1METDST,M3.5.0,M10.5.0 addcity 4|ESO1-meterSchmidtTelescope|-29.250|-70.733|WST4WDT,M9.5.0,M3.2.0 addcity 4|EuropeanSouthernObservatory(NTT)|-29.257|-70.730|WST4WDT,M9.5.0,M3.2.0 addcity 4|EuropeanSouthernObservatory(VLT)|-24.850|-70.450|WST4WDT,M9.5.0,M3.2.0 addcity 4|GeminiTelescope(north)|19.817|-155.467|HST10 addcity 4|GeminiTelescope(south)|-30.350|-70.817|WST4WDT,M9.5.0,M3.2.0 addcity 4|IsaacNewtonTelescope(98-inch)|28.767|-17.883|AST1ADT,M3.5.0,M10.5.0 addcity 4|KHBI|15.122|145.694|PST-9 addcity 4|KarlSchwarzschildObservatorium|50.983|11.717|MET-1METDST,M3.5.0,M10.5.0 addcity 4|KisoObservatory|35.800|137.633|JST-9 addcity 4|KittPeakNationalObs.|31.980|-111.600|MST7 addcity 4|LargeEarth-basedSolarTel.(LEST)|28.767|-17.883|AST1ADT,M3.5.0,M10.5.0 addcity 4|LasCampanasObservatory|-29.003|-70.702|WST4WDT,M9.5.0,M3.2.0 addcity 4|LeanderMcCormickObservatory|38.033|-78.517|EST5EDT addcity 4|LearmonthSolarObservatory|-22.233|114.083|WST-8 addcity 4|LickObservatory|37.350|-121.633|PST8PDT addcity 4|MMT|31.683|-110.883|MST7 addcity 4|MaunaKeaObservatory(NASAIRTF)|19.833|-155.467|HST10 addcity 4|MawsonObservatory|-67.600|62.883|AAT-6 addcity 4|McDonaldObservatory|30.672|-104.022|CST6CDT addcity 4|Michigan-Dartmouth-MITObs.|31.950|-111.617|MST7 addcity 4|MountWilsonObservatory|34.217|-118.050|PST8PDT addcity 4|Mt.StromloObservatory|-35.321|149.024|EST-10EST,M10.5.0,M3.5.0 addcity 4|NancayRadiotelescope|47.380|2.197|MET-1METDST,M3.5.0,M10.5.0 addcity 4|NationalAstronomyObs.(Japan)|19.817|-155.467|HST10 addcity 4|NordicOpticalTelescope|28.750|-17.883|AST1ADT,M3.5.0,M10.5.0 addcity 4|NorthLibertyRadioObservatory|41.771|-91.574|CST6CDT addcity 4|Obs.Astro.Nacional|31.029|-115.487|PST8PDT addcity 4|Obs.Astro.Nacional|19.033|-98.314|CST6CDT addcity 4|ObservatoireRoyaldeBelgique|50.800|4.350|MET-1METDST,M3.5.0,M10.5.0 addcity 4|ObservatoiredeBesancon|47.247|5.990|MET-1METDST,M3.5.0,M10.5.0 addcity 4|ObservatoiredeCalern|43.755|6.938|MET-1METDST,M3.5.0,M10.5.0 addcity 4|ObservatoiredeNice|43.717|7.300|MET-1METDST,M3.5.0,M10.5.0 addcity 4|ObservatoiredeParis|48.800|2.233|MET-1METDST,M3.5.0,M10.5.0 addcity 4|OldRoyalObservatory|51.483|-0.000|GMT0BST,M3.5.0,M10.5.0 addcity 4|Oschin48-inchTelescope|33.350|-116.850|PST8PDT addcity 4|PalomarObservatory(200inch)|33.350|-116.867|PST8PDT addcity 4|ParkesRadiotelescope|-33.000|148.262|EST-10EST,M10.5.0,M3.5.0 addcity 4|RadioastrophysicalObservatory|56.783|24.400|MET-1METDST,M3.5.0,M10.5.0 addcity 4|RoyalGreenwichObservatory|50.867|0.333|GMT0BST,M3.5.0,M10.5.0 addcity 4|SidingSpringObservatory|-31.273|149.061|EST-10EST,M10.5.0,M3.5.0 addcity 4|SpaceTelescopeScienceInst.|39.300|-76.617|EST5EDT addcity 4|SpecialAstrophysicalObs.|43.650|41.433|MSK-3MSD,M3.5.0,M10.5.0 addcity 4|TelescopioNazionaleGalileo|28.767|-17.883|AST1ADT,M3.5.0,M10.5.0 addcity 4|TorunRadiotelescope|52.911|18.564|CET-2CDT,M3.5.0,M10.5.0 addcity 4|TorusObservatory|47.183|-122.132|PST8PDT addcity 4|U.S.NavalObservatory|38.917|-77.067|MST7 addcity 4|UnitedKingdomInfraredTel.(UKIRT)|19.833|-155.467|HST10 addcity 4|UnitedKingdomSchmidtTel.Unit|-31.267|149.067|EST-10EST,M10.5.0,M3.5.0 addcity 4|Univ.ofBCandLavalUniv.|49.117|-122.583|PST8PDT addcity 4|UppsalaUniversityObservatory|59.500|17.600|MET-1METDST,M3.5.0,M10.5.0 addcity 4|VainuBappuObservatory|12.583|78.833|IST-5:30 addcity 4|Venezuela1-meterSchmidt|8.783|-70.867|AST4 addcity 4|VLA|34.067|-107.617|MST7MDT addcity 4|VLBA|48.131|-119.682|PST8PDT addcity 4|VLBA|30.635|-103.944|CST6CDT addcity 4|VLBA|42.933|-71.986|EST5EDT addcity 4|VLBA|31.956|-111.612|MST7 addcity 4|VLBA|35.775|-106.245|MST7MDT addcity 4|VLBA|19.804|-155.458|HST10 addcity 4|VLBA|41.771|-91.574|CST6CDT addcity 4|VLBA|37.232|-118.276|PST8PDT addcity 4|VLBA|34.301|-108.119|MST7MDT addcity 4|VLBA|17.758|-64.584|AST4 addcity 4|W.M.KeckObservatory|19.817|-155.467|HST10 addcity 4|WIYNObservatory|31.950|-111.600|MST7 addcity 4|WSHB|32.684|-81.131|EST5EDT addcity 4|WilliamHerschelTelescope|28.767|-17.883|AST1ADT,M3.5.0,M10.5.0 addcity 4|WinerMobileObservatory|31.666|-110.602|MST7 addcity 4|WyomingInfraredObservatory|41.098|-105.977|MST7MDT addcity 4|YerkesObservatory|42.567|-88.550|CST6CDT addcity 4|ZentralinstitutfurAstrophysik|52.383|13.067|MET-1METDST,M3.5.0,M10.5.0 sunclock-3.57/CHANGES0000644000000000000000000005507111053554736011173 0ustar ============================================================================== All revisions from version 1.4 to version 3.xx are by Jean-Pierre Demailly, demailly@fourier.ujf-grenoble.fr ============================================================================== Planned versions ... (features to appear in some order) - Implement a (Sunclocksaver , ~/.sunclocksaver) pair of config files for fancier screensaver functionality (almost done - planned for 3.5x...) - Spherical representation of Earth - Moon phases Version 3.57 August 22, 2008 - Included patch from Thomas M.Ott : improvement of German localization and management of gzip-compressed *.vmf files. - Corrected minor defects in timezones.vmf - Fixed somewhat -reformat option. - Imakefile change : VMF files now installed compressed by default. Version 3.56 June 22, 2006 - Minor bug fixes (segfault bug in -mostly obsolete?- colorlevel 0) - added -zoomimage (zoom image file) as new command line option so as to change the vmf file used in the zoom widget. Version 3.55 June 18, 2006 - The default clock/map image file is now 'timezones.vmf' - Added the new vector map file 'countries.vmf' (political boundaries) - Added some code in readvmf.c for more verbose information - Added 'zoomwidth' and 'zoomheight' as new options in VMF format - Completely reworked the explanations on the VMF format file in VMF.txt - Change default zoom mode to 0 (=no attempt to correct aspect ratio as default behaviour) - Corrected minor bug in the mouse tracking procedure for area selection. - Installing now 'emx' in sunclock's SHAREDIR/bin subdirectory, in order to avoid possible conflicts with 'emx' from the xrmap package. Version 3.54 July 29, 2005 - Corrected segfault bug #315462 from Debian bug tracking system - Improved look of 3D buttons - xterm or terminal-emulator no longer needed since sunclock now includes its own utility (emx, a very small emacs clone...) Version 3.53 November 22, 2004 - All menus now use buttons with a 3D look - Key shortcut hints have been substantially improved - New option -image - VMF format has been slightly enhanced (allows text labels) - Corrected further GUI bugs - Command line options -jump and -progress should now work. Version 3.52 October 9, 2004 - Corrected many small GUI bugs or annoyances. Thanks to Jamie Zawinski for pointing out some of them and for useful advice. Version 3.51 August 27, 2004 - New release, jumped version number to 3.51 because of substantial improvements made - Added support for reading GIF and PNG images : readgif.c & readpng.c, snarfed from xpaint's rw/ routines. Sunclock now requires libpng (GIF is read by ad hoc routines) - Added a .spec file to enable building rpm packages, thanks to François Massonneau - Added Polish localization, thanks to Cezary Morga - improved -setfont option, to take into account language specific font settings Version 3.50pre3 August 4, 2004 - Added AM/PM indicator, 12/24 hour in date/time format (patch by James Turner , ** Senior Editor of LinuxWorld Magazine **) Version 3.50pre2 June 30, 2004 - Improvement of internal file explorer - Zooming can now be achieved by selecting an area with right mouse button and/or by static click which still pops up the zoom window as before - Various updates to Sunclockrc and .vmf files Version 3.50 was never declared to be released in final form... so that should have been 3.50pre1, which is quite stable. Version 3.50pre1, August 13, 2001 - Created "xrmap", derived from Reza Naima's vector map software "rmap". This allows (or will allow) to build very accurate .vmf maps. (A much better integration with sunclock should come at some point...) - Introduced the /tools directory - Sunclock can now read compressed .vmf.gz files (and uses the zlib library for that purpose) - Created the timezones.vmf vector map, showing time zones (and/or nation boundaries in near future :-) - Changes in the VMF format to accomodate numerous new possibilities. - Corrected a long standing bug in readvmf.c - New -reformat option, useful to reformat .vmf files according to syntax and standard line width. Version 3.46, July 5, 2001 - New -screensaver option (that turns sunclock into a screensaver, when used e.g. with Jamie Zawinski's xscreensaver...) - New options -randomrootpos -fixedrootpos -rootdx -rootdy which determine the behaviour of the screensaver functionality - New option -vmfcolors from which one can change interactively the list of predefined colors in a .vmf file - Fixes in the behaviour of auxiliary windows under opening or closing the main maps (iconification/deiconification and so on...) Version 3.45v2, June 28, 2001 - Severe bug corrected: sunclock-3.45 was segfaulting after any click on a random point of the map (in solar time mode) Thanks to David Ronis for tracking down that bug. - Another less severe bug fixed: the root window refresh procedure now works even when the main window is iconified (it is actually recommended to iconify any window which is to be mapped on the root window...) - The background color of the root window on which stars are drawn can now be chosen at will. For instance -setcolor "star|yellow" -setcolor "root|grey20" sets yellow stars on a grey20 sky. This thing also corrects possible garbage that would otherwise have been drawn in the Pixmap texture. - Any city which is preselected via the -city option still appears even if its category is a priori to small to let it being displayed for the given -sizelimits (suggestion by François Massonneau). - The -addcity option now tolerates the modification of a city (any city already listed with the same name and coordinates up to 0.5 degree is replaced from the list - a warning is issued, however - that warning disappears if the city is first removed with -removecity). Change suggested by Ted Rolle Version 3.45, June 27, 2001 - Sunclock can write periodically onto the root window with a specified frequency (related new option -rootperiod ) - A new animation mode has been introduced to modify the speed of time evolution (this is handled by a new option -animateperiod ). - The keys G J [ ] ' are used to handle these new features from the Option window. - Hong Kong coordinates have been fixed to their correct values, thanks to Stefan Recksiegel - Urban and Option windows no longer have erratic sizes when switching the map/clock modes, and the Menu window should be correctly refreshed. - A 5th city category has been introduced (suggestion by F.Massonneau, ). By default, spotsizes now range from 1 (largest cities) to 5 (towns or villages), instead of from 4 to 1 (the illogical ordering has been reversed - users who haven't tweaked their city parameters shouldn't see the change). - When a small city is selected (beyond the category of cities normally displayed on the map), it is now shown, whatever the size is. - Some XEvent fixes (e.g. in clear bottom strip routine, and when iconifying/deiconifying windows). Version 3.44, June 22, 2001 - Sunclock is now able to write the map to the root window, and presents a starry sky beyond the limits of the map. - The syntax of color options has changed. A unique option "-setcolor field|color" can be used instead. This single change reduced the size of the binary code by 1.5 kB !! Similarly, options -monochrome, -invertcolors and -fullcolors have been replaced by a single option -colorlevel (0, 1, 2, 3) [thus there is a new color level as well, see man page] - Italian dialogs have been updated, thanks to Alessio F. Bragadini - The code has been cleaned-up a little bit and should consume slightly less memory, perhaps at the expense of slightly more CPU power. - Search of city works with respect to city names as well as with coordinates (when name entry is left empty). - A lot of minor bug fixes Version 3.43, June 14, 2001 - Larger data base of cities/coordinates, with level of size New related options -spotsizes -sizelimits -citycategories -citycheck (The upshot is that the size of the spot representing a city can change according to the importance of the city, and that not all cities are shown if the zoom factor is too small.) - Bug fixes: segfault occurring when playing around with the urban selector (only when the clock geometry was set too small...); marked cities still appeared when opening other windows: this was actually fixed by suppressing an unneeded flag, thus reducing the memory usage... - The city search now really works ! - A warning is issued when the user tries to create an already existing city. - The "Urban widget" is now stretchable. Version 3.42, June 11, 2001 - New "Urban widget", which allows to easily search, introduce, erase or modify city locations at runtime - Change of format for the Sunclockrc and ~/.sunclockrc config files. They now make use of the new -addcity option to enter (or remove) cities. *Both* are read (with ~/.sunclockrc being read later, so that it overrides the system wide Sunclockrc) - The -position option now allows degrees, minutes, seconds format - Fixes in option handling (hopefully fixing infamous segfault crashes when options were activated from the Option widget) Version 3.41, May 31, 2001 - New fixes for X BadAccess bug with enlightenment (again!) - New options -bottomline, -nobottomline. By default, no bottom line appears in the newer version (looks nicer to me!) - Improvement of the -dock mode; new -undock option. Fixes for the enlarge '>' command; new related -extrawidth option. - Synchronization fixes in multi-window context - Minor bugs corrected: parallel/tropic color setting now works, readvmf should no longer produce artefacts on the left border when the magnification factor is larger than 1; speed slightly improved as well. - The Moon is now shown on the map (although not astronomically very accurate, probably a few minutes of arc of error...) Related new options -moon, -nomoon, -objectmode x. - Sun and Moon coordinates can be shown on the map by typing 'y' once more Version 3.40, May 14, 2001 - City names and coordinate values can now be shown on the map by typing 'u' once more - Bitmaps of city/mark spots are now obtained from explicit data in bitmaps.h rater than calls to X routines (slower and more rigid) - Menu options which can take more than 2 values (e.g. 'N') can get their values rotated in both directions by using lower/upper cases or clicking with the left/right mouse button. - Removed the sunclock_help script, replaced by an internal call - Much improved refresh mechanism for -fullcolors mode. Flickering should not occur any longer in that mode (still somewhat unavoidable with obsolete mode -invertcolors) - Corrected a X BadAccess bug showing up under some window managers (e.g. enlightenment) Version 3.38, April 17, 2001 - Added new color and font options - The man page is installed automatically and is accessible from the GUI (type key 'h' twice) - The option handling mechanism has been improved: the ~/.sunclockrc config file as well as the option widget now accept several options simultaneously on the same line. Version 3.37, April 13, 2001 - Added new option -lightgradient - Corrected and improved somewhat the shading algorithm (while slightly improving speed as well). Version 3.36, April 13, 2001 - Code clean-ups and bug fixes. Language and fonts are now runtime configurable as promised (and without segfaulting !). - When changing parameters, the XImage is recycled whenever possible. Version 3.35, April 11, 2001 - A new "Option" widget appears; many command line options can be set interactively at runtime from the option window. - The bigendian property is checked at runtime on the X display, not just at compile time (the older way made sense only if the X display and X server were both of the same endian nature!) - Zoom colors are now configurable - Code clean-ups - Bug fixes Version 3.34, March 30, 2001 - Huge improvements in the zoom widget: a black and white map is now used as a texture for guiding the moves; there is also a switch for synchronizing or desynchronizing the zoom events. - Several other new zoom functions (*, &, #, +, -, arrow keys...) - A lot of minor bug fixes Version 3.33, March 21, 2001 - New improvements in the zoom widget, following suggestions by François Massonneau and Ted Rolle : there is now a special mode allowing to keep control on the aspect when changing the zoom area location. - Update of Dutch localization by Henry Verdonschot and of Italian localization by Alessio F. Bragadini - Bug fixes. Version 3.32, March 19, 2001 - Fully functional zoom widget; all images are now zoomable in the range 1 ... 100.00 (this does not always make sense, as most JPEG images have insufficient resolution for magnifications exceeding 5) - More efficient moveNightArea algorithm, resulting in a substantial speed improvement when using keys A, B - Various clean-ups; new flag flag.update allowing a more elegant updating process - Some other minor GUI improvements in menus or events (X Keys now handled properly...) - Bug fixes Version 3.31, March 3, 2001 - Minor GUI improvements: the clock window now also has a menu toolbar, and the file selector has been slightly improved. - One or two minor bugs have been fixed (obscure mistake in management of pointers, when the initial window was closed before the later ones...) - A new (unfinished) widget appears: the zoom window - please wait for the next release 3.32 for complete zooming capabilities! Version 3.30, February 26, 2001 - Extensive support for PseudoColor displays, with private colormaps being allocated automatically and quantization of colors being performed when needed - .jpg and .xpm formats are fully supported, and all images are resizable Version 3.29, February 12, 2001 (not widely announced) - Sunclock now reads .jpg image formats in true-color modes - .jpg images are resizeable - The internal vector map has been turned into an externally loadable map (a ".vmf" format) Version 3.28, January 15, 2001 - Patch in setTZ routine for HP-UX systems (should use putenv(strdup(buf)) instead of putenv(buf)). Suggested by Henry Verdonschot - The text output in the bottom strip of the clock is now customizable via a format string; idea based on a suggestion by Henry Verdonschot - Dutch localization (Henry Verdonschot again) - Norwegian localization; made by Johnny Ljunggren - Synchronize (don't synchronize) switch via "!" at runtime. Version 3.27, December 29, 2000 - New options -dock (initial clock window cannot be resized or closed), and -updateall (all windows are updated, which, of course, requires more CPU) - Fixes multiple window bug found by François Massonneau Version 3.26, December 22, 2000 - Fixes segfault bug mentioned by François Massonneau Version 3.25, December 21, 2000 - Simultaneous windows (in arbitrary number...) All this required a lot of changes in the Sundata structures, which now carry all information about the status of various maps. This should make everything much more flexible... - As a corollary, sunclock should now be dockable Version 3.22, December 12, 2000 (not released...) - Fixed incorrect (zero!) distance calculations, minor bug noticed by Marc Colling (mcol@village.uunet.lu) Version 3.21, December 4, 2000 - Bug fixes in the window placement routines (as suggested by Roland Rosenfeld) - Various improvements in the shading algorithm Version 3.20, November 24, 2000 - Sunclock includes vector map routines which generate Earth maps on the fly. - These maps are resizeable, they can generate contours or filled areas (3 fill/contour options...) - Sunclock can optionally handle (non resizeable) external pixmaps as well - Resizing routines for map and clock windows. - Shading algorithm showing twilight / luminosity Version 3.13, October 26, 2000. - The sunclock package now includes a vector map of the Earth (loosely derived from the xearth package by Kirk Lauritz Johnson). The clock and map data files are built from there by the `mapgen` utility. This allows users to select the respective size of the clock and map windows at compile time (not yet at run time :-( but should come soon...) - New "night/no night" options - Coordinates can now appear in decimal degrees or degrees, minutes, seconds - Various small GUI fixes (window placement again...) Version 3.12, October 9, 2000. - Fix for a bug affecting the configuration of language and color settings through the config file. Version 3.11, October 8, 2000. - Italian localization by Alessio Bragadini Spanish localization by Pedro Gimeno - Improved window placement, as suggested by Pascal Jermini - Merged patch by Pedro Gimeno, implementing the wm_delete_window protocol. - Corrected calculation of solartime, sunrise and sunset, which was sometimes inaccurate by 10-15 minutes or more. Notified by Orn E. Hansen - Fix in setTZ routine, related to the putenv/setenv duality Thanks to Roland Rosenfeld for this. Hopefully this fixes the persistent problems with timezones... - Merged window-manager icons from the Debian sources. - New command line options added (-rcfile -language -jump -progress -menu among others). Time progress and configuration file can now be set arbitrarily. - The command line options can now also be set through the configuration file, and the version number appears in the tips of 'H' option Suggestions by François Massonneau Version 3.10, October 3, 2000. - Interface has been improved and should be substantially easier to use, following some suggestions by François Massonneau - Added Sun position functionality - Added "hour extension" mode - Swedish localization by - Fixes in monochrome mode - Other small changes, including bug fixes ( timezone problem, notified by Dimitri Papadopoulos-Orfanos ) Version 3.04, September 7, 2000. - Fixed tzset() problems on some systems (Linux-Mandrake...) by always calling tzset() before each localtime() call. Notified by Andy Barlak and ) Version 3.03, September 5, 2000. - Corrected local timezone bug (wasn't correctly initialized nor reset) Problem notified by Philippe Le Hegaret - Added "1 minute" as one of possible values of progression time - The value of the sun apparent diameter was wrong (too large) and thus produced slightly inaccurate day length values! - Fix for SunPro compiler by Dimitri Papadopoulos-Orfanos Version 3.02, September 4, 2000. - Corrected segmentation fault problem, occurring when environment variable LANG was not set (patch from Joerg Plate ) - Fixed behaviour of window placement, which was somewhat unsatisfactory - Slight code change for the sake of Solaris compatibility - Improved sunclock.man, Imakefile and Makefile.noimake - Added horizontal scroll for bottom text line - Merged German app-default file provided by several German users (including the Debian maintainer Roland Rosenfeld ) Version 3.01, August 31, 2000. - Added command line options -map and -clock - A lot of compilation fixes, notified by Andy Barlak - Makefile.noimake improved Version 3.00, August 26, 2000. Complete rewrite of the GUI, many bug corrections, improvements and new functions, resulting in a much more powerful program. - Added keyboard and mouse controls - Added command line and inline help - Added switches: coordinates, distances, legal time, solar time - Added marks, equator, tropic & arctic circles - Time can be quickly modified forward and backward, so that the evolution of sun illumination and seasons can be observed - Improved time management routines - Improved and debugged monochrome mode Version 2.1, June 6, 2000. - Updated coordinates.txt with a better source (http://www.ecf.toronto.edu/~mao/) Version 2.0, April 21, 2000. - Added XFlush in doTimeout to force update (for LinuxPPC...) Version 1.9, January 21, 2000. - Iconic stuff fixed again (didn't work for all WM) Version 1.8, August 20, 1999. - Fixed small bug in mono mode Version 1.7, August 17, 1999. - Added Calculation of city distances Version 1.6, March 28, 1999. - Fixed iconic stuff, which did not seem to work properly (at least on my system...) Version 1.5, March 15, 1999. - Added color support (cities can be shown in various colors, and the selected city is shown with a different color) - Added further options to support these extensions Version 1.4, March 4, 1999. - Changed syntax in ~/.sunclockrc, so as to allow spaces in city names (syntax is now name: latitude longtitude timezone) - City name and coordinates now displayed in bottom line - Enabled exit, when clicking on the bottom line ============================================================================== Version 1.3, November 16, 1994. - Timezone now displayed in icon. Suggested by Rich Gonzalez (gonzo@u.washington.edu) - Should now work under Linux/XFree86 - Wolfram Gloger (wmglo@Dent.MED.Uni-Muenchen.DE) Version 1.2, October 13, 1994. - Used new icon suppied by Anthony Thyssen (anthony@cit.gu.edu.au). I can't see a difference can you see a difference. - Fixed stuff for HP using NEW_CTIME ifdef as suggested by Richard Lloyd (R.K.Lloyd@csc.liv.ac.uk). Untested by me on HP. - Support for Solaris thanks to Dave Yearke (yearke@calspan.com) who also pointed out some other bugs and fixes. ============================================================================== Version 1.1, August 31, 1994. This is version 1.1 of sunclock. New in this version is support for an interactive map. This allows you to define places on the map in your ~/.sunclockrc file. These places will show up labelled in the large map, (not the icon). Clicking on a place will change the clock readout to the timezone of the that place. See the man page for details. Stephen Martin, smartin@fujitsu.ca - August 31, 1994. ============================================================================== Original X11 version, November 1988 Written by John Mackin, , based on a Suntools program by John Walker, . sunclock-3.57/vmf/0000755000000000000000000000000011053546106010750 5ustar sunclock-3.57/vmf/landwater.vmf0000644000000000000000000115713310141224240013443 0ustar %!VMF % Vector Map Format for Sunclock % % List of colors RoyalBlue % color 0 Chartreuse2 % color 1 LemonChiffon % color 2 ; % Default color 1 % Palette (possibly several codes for each color: ci j1 j2 j3 ... ) c0 0 c1 1 c2 2 ; % Background value 2 % Coordinate range (latitude, longitude) range -90 90 -180 180 % List of closed curves % Set internal flag flag 2 % Fill mode = fill areas within closed curves closedcurves #0 1 31.159 32.154 31.324 31.857 31.390 32.060 31.434 31.978 31.486 31.753 31.492 31.429 31.544 31.088 31.423 30.797 31.459 30.692 31.533 30.808 31.451 30.396 31.266 30.181 31.170 29.841 30.992 29.571 30.863 29.275 30.863 28.951 31.003 28.659 31.069 28.335 31.118 27.984 31.201 27.703 31.288 27.390 31.401 27.088 31.462 26.764 31.514 26.429 31.585 26.099 31.593 25.769 31.519 25.445 31.615 25.165 31.896 25.011 32.008 24.709 31.997 24.368 32.049 24.033 32.165 23.731 32.195 23.368 32.376 23.132 32.635 23.027 32.753 22.687 32.852 22.368 32.915 22.049 32.915 21.676 32.791 21.363 32.747 21.022 32.613 20.714 32.462 20.423 32.264 20.176 32.025 19.984 31.739 19.929 31.453 20.000 31.192 20.137 30.909 20.082 30.668 19.901 30.459 19.665 30.316 19.374 30.275 19.044 30.385 18.742 30.555 18.473 30.742 18.214 30.874 17.912 30.986 17.604 31.088 17.297 31.170 16.967 31.223 16.643 31.231 16.302 31.299 15.973 31.445 15.681 31.681 15.489 31.951 15.374 32.234 15.313 32.412 15.066 32.464 14.725 32.566 14.407 32.714 14.115 32.786 13.780 32.852 13.451 32.885 13.126 32.805 12.791 32.819 12.445 32.923 12.132 33.085 11.797 33.170 11.516 33.269 11.242 33.558 10.978 33.615 10.659 33.714 10.330 33.929 10.093 34.212 10.055 34.409 10.308 34.580 10.588 34.791 10.824 35.049 10.989 35.302 11.071 35.604 10.989 35.794 10.720 36.030 10.500 36.319 10.516 36.505 10.791 36.753 10.989 36.995 10.978 36.843 10.604 36.819 10.297 37.129 10.198 37.234 9.890 37.308 9.599 37.220 9.247 37.069 8.951 36.945 8.637 36.923 8.280 36.893 7.879 37.005 7.577 37.019 7.247 36.918 6.896 37.019 6.566 36.989 6.275 36.841 5.973 36.769 5.632 36.657 5.302 36.794 5.011 36.887 4.665 36.898 4.302 36.896 3.934 36.816 3.604 36.772 3.236 36.758 2.901 36.607 2.560 36.602 2.214 36.560 1.857 36.536 1.500 36.497 1.148 36.374 0.830 36.253 0.505 36.096 0.214 35.857 -0.005 35.849 -0.368 35.745 -0.703 35.659 -1.033 35.445 -1.253 35.269 -1.516 35.118 -1.819 35.091 -2.165 35.115 -2.511 35.181 -2.841 35.330 -3.060 35.209 -3.445 35.242 -3.797 35.206 -4.143 35.173 -4.484 35.272 -4.819 35.459 -5.093 35.684 -5.297 35.874 -5.451 35.766 -5.863 35.514 -6.022 35.242 -6.143 34.970 -6.258 34.701 -6.396 34.445 -6.549 34.192 -6.720 33.962 -6.918 33.797 -7.203 33.657 -7.511 33.533 -7.819 33.423 -8.137 33.283 -8.440 33.085 -8.670 32.868 -8.901 32.665 -9.143 32.420 -9.269 32.137 -9.313 31.898 -9.500 31.659 -9.692 31.390 -9.808 31.099 -9.830 30.808 -9.835 30.574 -9.769 30.319 -9.626 30.030 -9.703 29.786 -9.874 29.552 -10.066 29.313 -10.247 29.091 -10.462 28.915 -10.720 28.769 -11.011 28.571 -11.247 28.352 -11.467 28.217 -11.758 28.102 -12.060 28.030 -12.379 27.984 -12.703 27.863 -12.978 27.629 -13.176 27.354 -13.297 27.093 -13.423 26.816 -13.527 26.610 -13.747 26.462 -14.027 26.316 -14.291 26.104 -14.478 25.832 -14.582 25.563 -14.709 25.297 -14.824 25.008 -14.841 24.725 -14.907 24.514 -15.110 24.310 -15.335 24.096 -15.555 23.918 -15.802 23.742 -15.879 23.396 -16.022 23.121 -16.165 22.871 -16.269 22.602 -16.374 22.341 -16.538 22.173 -16.775 21.915 -16.918 21.637 -16.967 21.346 -17.022 21.060 -17.066 20.931 -17.027 21.033 -16.852 20.772 -16.703 20.637 -16.489 20.374 -16.308 20.110 -16.225 19.843 -16.269 19.560 -16.396 19.409 -16.401 19.055 -16.247 18.777 -16.159 18.497 -16.082 18.209 -16.044 17.920 -16.033 17.632 -16.060 17.352 -16.143 17.082 -16.258 16.824 -16.385 16.549 -16.473 16.266 -16.527 15.975 -16.533 15.698 -16.588 15.445 -16.747 15.203 -16.907 14.978 -17.099 14.821 -17.341 14.712 -17.407 14.558 -17.121 14.330 -16.940 14.069 -16.808 13.997 -16.703 14.069 -16.544 13.813 -16.577 13.555 -16.544 13.363 -16.357 13.442 -16.071 13.473 -15.764 13.495 -15.484 13.470 -15.434 13.442 -15.769 13.412 -16.071 13.275 -16.319 13.404 -16.604 13.324 -16.797 13.041 -16.764 12.747 -16.769 12.673 -16.621 12.615 -16.396 12.651 -16.055 12.596 -15.764 12.701 -15.555 12.734 -15.489 12.563 -15.747 12.604 -16.038 12.577 -16.335 12.577 -16.621 12.385 -16.736 12.220 -16.456 12.217 -16.242 11.918 -16.159 11.986 -15.879 11.948 -15.830 11.805 -15.830 11.890 -15.538 11.934 -15.264 11.868 -15.088 11.734 -15.484 11.651 -15.341 11.615 -15.187 11.404 -15.401 11.143 -15.269 11.096 -15.132 11.041 -15.055 10.907 -14.945 10.915 -14.758 10.742 -14.665 10.755 -14.566 10.489 -14.593 10.239 -14.407 10.115 -14.110 9.915 -13.901 9.794 -13.665 9.514 -13.577 9.308 -13.357 9.093 -13.242 8.846 -13.132 8.604 -13.115 8.514 -13.016 8.379 -13.231 8.192 -13.033 7.945 -12.890 7.755 -12.747 7.665 -12.489 7.467 -12.357 7.242 -12.104 7.137 -11.835 6.984 -11.588 6.786 -11.385 6.621 -11.165 6.489 -10.901 6.297 -10.742 6.157 -10.418 6.003 -10.187 5.808 -9.984 5.607 -9.764 5.418 -9.549 5.203 -9.341 5.036 -9.104 4.904 -8.852 4.772 -8.599 4.632 -8.341 4.536 -8.066 4.415 -7.802 4.352 -7.522 4.467 -7.258 4.585 -6.995 4.695 -6.736 4.794 -6.467 4.896 -6.192 5.005 -5.923 5.074 -5.626 5.102 -5.346 5.168 -5.192 5.146 -4.769 5.187 -4.478 5.209 -4.187 5.258 -4.126 5.220 -4.484 5.250 -4.621 5.297 -4.203 5.299 -3.923 5.247 -3.791 5.176 -3.330 5.255 -3.159 5.102 -3.016 4.975 -2.604 4.896 -2.319 4.769 -2.049 4.885 -1.775 5.030 -1.527 5.110 -1.236 5.201 -0.967 5.288 -0.692 5.426 -0.445 5.544 -0.176 5.668 0.082 5.766 0.346 5.871 0.593 6.033 0.429 5.769 0.769 5.898 1.011 6.099 1.209 6.184 1.484 6.247 1.769 6.291 2.055 6.327 2.346 6.354 2.637 6.382 2.929 6.387 3.225 6.514 3.451 6.489 3.637 6.415 4.011 6.376 4.297 6.266 4.560 6.088 4.791 5.852 5.011 5.736 5.209 5.525 5.390 5.426 5.527 5.203 5.407 4.981 5.451 4.690 5.571 4.464 5.786 4.352 6.027 4.371 6.264 4.398 6.599 4.505 6.753 4.709 6.786 4.544 6.973 4.580 7.132 4.646 7.159 4.569 7.379 4.574 7.588 4.527 7.863 4.555 8.198 4.734 8.308 4.849 8.330 4.637 8.555 4.569 8.797 4.184 8.973 4.003 9.220 3.997 9.467 3.920 9.665 3.596 9.698 3.346 9.846 3.093 9.940 2.813 9.874 2.527 9.824 2.247 9.786 1.953 9.786 1.640 9.670 1.440 9.516 1.165 9.440 1.019 9.692 0.624 9.626 0.599 9.516 0.511 9.368 0.283 9.571 0.192 9.852 0.121 9.846 0.140 9.555 0.187 9.352 -0.231 9.319 -0.486 9.203 -0.714 9.066 -0.755 8.901 -0.731 8.769 -1.047 8.929 -1.294 9.077 -1.445 9.330 -1.607 9.379 -1.396 9.104 -1.365 9.055 -1.659 9.231 -1.860 9.379 -1.986 9.440 -2.371 9.654 -2.475 9.890 -2.547 9.984 -2.549 9.802 -2.766 10.027 -2.945 10.253 -3.140 10.467 -3.371 10.643 -3.574 10.846 -3.799 11.022 -4.000 11.231 -4.212 11.418 -4.409 11.637 -4.662 11.791 -4.896 11.907 -5.080 12.071 -5.418 12.176 -5.690 12.159 -5.942 12.363 -5.997 12.571 -5.857 12.819 -5.907 13.000 -6.036 12.610 -6.143 12.324 -6.481 12.462 -6.720 12.621 -6.953 12.786 -7.242 12.846 -7.514 12.956 -7.783 13.066 -8.044 13.203 -8.297 13.341 -8.569 13.379 -8.794 13.253 -8.989 13.055 -9.283 13.104 -9.560 13.198 -9.821 13.280 -10.077 13.385 -10.349 13.522 -10.588 13.692 -10.841 13.786 -11.129 13.835 -11.412 13.791 -11.703 13.786 -11.989 13.736 -12.272 13.604 -12.492 13.445 -12.621 13.209 -12.824 12.973 -13.080 12.863 -13.286 12.659 -13.527 12.522 -13.838 12.473 -14.099 12.346 -14.382 12.330 -14.670 12.275 -14.937 12.181 -15.203 12.093 -15.503 12.022 -15.739 11.846 -15.964 11.775 -16.250 11.797 -16.536 11.813 -16.824 11.797 -17.121 11.758 -17.398 11.731 -17.687 11.725 -17.975 11.775 -18.228 11.918 -18.484 12.049 -18.692 12.269 -18.929 12.445 -19.176 12.599 -19.440 12.725 -19.692 12.863 -19.948 13.005 -20.190 13.165 -20.467 13.264 -20.739 13.374 -20.997 13.500 -21.245 13.665 -21.484 13.835 -21.747 13.967 -21.975 14.154 -22.209 14.335 -22.467 14.467 -22.747 14.533 -22.986 14.451 -23.330 14.473 -23.604 14.484 -23.898 14.484 -24.181 14.489 -24.462 14.593 -24.717 14.720 -24.989 14.824 -25.277 14.819 -25.563 14.857 -25.843 14.890 -26.126 14.962 -26.385 15.044 -26.651 15.126 -26.926 15.192 -27.203 15.275 -27.464 15.401 -27.720 15.555 -27.973 15.720 -28.187 15.945 -28.393 16.170 -28.593 16.429 -28.821 16.604 -29.066 16.775 -29.330 16.907 -29.604 17.022 -29.882 17.110 -30.159 17.214 -30.426 17.335 -30.684 17.484 -30.945 17.632 -31.195 17.797 -31.437 17.978 -31.679 18.170 -31.953 18.280 -32.245 18.330 -32.533 18.313 -32.739 18.088 -32.849 17.879 -33.066 18.005 -33.236 18.093 -33.585 18.357 -33.868 18.434 -34.126 18.346 -34.212 18.478 -34.159 18.791 -34.354 19.005 -34.508 19.308 -34.703 19.549 -34.780 19.879 -34.698 20.154 -34.516 20.440 -34.429 20.791 -34.385 21.099 -34.387 21.440 -34.354 21.808 -34.170 22.082 -34.055 22.385 -34.014 22.736 -34.074 23.044 -34.063 23.390 -34.003 23.731 -34.052 24.071 -34.129 24.407 -34.168 24.769 -33.992 25.027 -34.014 25.385 -33.948 25.643 -33.731 25.863 -33.742 26.209 -33.734 26.555 -33.613 26.868 -33.478 27.170 -33.305 27.451 -33.135 27.725 -32.959 28.000 -32.753 28.247 -32.574 28.516 -32.368 28.758 -32.159 28.989 -31.937 29.203 -31.714 29.418 -31.527 29.676 -31.349 29.940 -31.124 30.159 -30.887 30.352 -30.640 30.527 -30.390 30.692 -30.129 30.846 -29.885 31.027 -29.618 31.159 -29.374 31.346 -29.159 31.560 -28.959 31.797 -28.805 32.060 -28.602 32.313 -28.352 32.451 -28.077 32.566 -27.791 32.610 -27.511 32.681 -27.236 32.786 -26.956 32.874 -26.670 32.901 -26.382 32.923 -26.187 32.835 -25.970 32.582 -25.728 32.769 -25.475 32.984 -25.302 33.264 -25.190 33.538 -25.074 33.830 -24.978 34.132 -24.874 34.429 -24.772 34.731 -24.646 35.016 -24.445 35.236 -24.206 35.423 -23.918 35.511 -23.783 35.396 -23.368 35.456 -23.091 35.522 -22.863 35.538 -22.541 35.505 -22.250 35.527 -22.220 35.423 -22.341 35.346 -21.959 35.313 -21.670 35.258 -21.398 35.137 -21.165 35.082 -20.852 35.033 -20.637 34.846 -20.415 34.692 -20.115 34.736 -19.832 34.714 -19.712 34.692 -19.783 35.000 -19.607 35.236 -19.401 35.456 -19.181 35.637 -18.973 35.885 -18.854 36.165 -18.717 36.368 -18.481 36.582 -18.236 36.813 -17.970 36.929 -17.791 37.176 -17.635 37.412 -17.486 37.676 -17.354 37.945 -17.236 38.170 -17.126 38.516 -17.052 38.769 -16.937 39.088 -16.761 39.308 -16.615 39.566 -16.420 39.786 -16.214 39.956 -15.986 40.121 -15.753 40.324 -15.525 40.522 -15.239 40.615 -15.044 40.676 -14.854 40.742 -14.511 40.742 -14.346 40.681 -14.148 40.615 -13.791 40.582 -13.519 40.560 -13.253 40.560 -12.940 40.516 -12.665 40.582 -12.354 40.500 -12.080 40.516 -11.805 40.478 -11.505 40.451 -11.261 40.434 -10.970 40.544 -10.698 40.566 -10.404 40.445 -10.250 40.209 -10.126 39.973 -9.929 39.758 -9.626 39.709 -9.368 39.621 -9.080 39.533 -8.849 39.456 -8.533 39.330 -8.258 39.330 -7.975 39.434 -7.755 39.319 -7.448 39.313 -7.214 39.440 -6.986 39.522 -6.802 39.308 -6.574 39.137 -6.407 38.934 -6.099 38.813 -5.813 38.846 -5.538 38.956 -5.264 39.055 -4.973 39.137 -4.706 39.242 -4.530 39.456 -4.264 39.593 -4.000 39.670 -3.709 39.835 -3.522 39.885 -3.288 40.055 -2.997 40.170 -2.720 40.203 -2.555 40.451 -2.478 40.714 -2.261 40.890 -2.005 40.967 -1.934 41.286 -1.728 41.505 -1.500 41.687 -1.234 41.846 -0.984 41.973 -0.794 42.154 -0.563 42.357 -0.360 42.538 -0.143 42.753 0.066 42.951 0.277 43.143 0.486 43.341 0.695 43.544 0.887 43.758 1.063 43.989 1.255 44.198 1.445 44.418 1.621 44.648 1.783 44.885 1.923 45.137 2.055 45.390 2.203 45.643 2.349 45.890 2.530 46.115 2.739 46.319 2.934 46.527 3.135 46.736 3.349 46.934 3.563 47.126 3.772 47.330 3.984 47.527 4.203 47.714 4.418 47.912 4.657 48.071 4.909 48.209 5.146 48.379 5.374 48.560 5.615 48.720 5.863 48.874 6.115 49.016 6.393 49.088 6.665 49.181 6.923 49.313 7.162 49.473 7.398 49.637 7.662 49.769 7.931 49.846 8.151 50.055 8.396 50.214 8.646 50.346 8.912 50.473 9.140 50.643 9.396 50.797 9.690 50.824 9.975 50.879 10.269 50.918 10.409 51.159 10.462 51.247 10.538 51.099 10.821 51.126 11.118 51.121 11.396 51.104 11.665 51.214 11.860 51.159 11.953 50.857 11.887 50.588 11.668 50.390 11.538 50.126 11.475 49.846 11.423 49.555 11.319 49.286 11.255 48.995 11.305 48.709 11.280 48.412 11.162 48.143 11.124 47.852 11.154 47.566 11.126 47.286 10.970 47.038 10.827 46.786 10.714 46.516 10.758 46.236 10.816 45.934 10.813 45.681 10.673 45.418 10.547 45.159 10.440 44.907 10.431 44.599 10.453 44.302 10.621 44.055 10.808 43.835 11.027 43.643 11.291 43.495 11.475 43.291 11.599 43.049 11.552 42.725 11.591 42.621 11.780 42.890 11.909 43.148 12.069 43.385 12.374 43.357 12.602 43.203 12.821 43.000 12.942 42.758 13.170 42.549 13.335 42.357 13.604 42.203 13.797 41.989 13.940 41.736 14.159 41.533 14.390 41.363 14.604 41.165 14.698 40.868 14.874 40.665 14.973 40.423 15.036 40.148 15.302 40.038 15.360 39.830 15.176 39.736 15.495 39.560 15.698 39.440 15.973 39.286 16.255 39.209 16.544 39.165 16.813 39.115 17.099 39.027 17.371 38.929 17.635 38.802 17.896 38.654 18.113 38.505 18.242 38.258 18.426 38.049 18.640 37.797 18.755 37.544 19.016 37.418 19.299 37.341 19.596 37.258 19.863 37.253 20.140 37.198 20.445 37.198 20.723 37.154 21.014 37.099 21.170 37.165 21.569 36.956 21.846 36.874 22.115 36.813 22.286 36.555 22.484 36.335 22.665 36.110 22.816 35.813 23.027 35.687 23.286 35.533 23.566 35.495 23.885 35.544 24.003 35.692 24.220 35.429 24.478 35.198 24.731 35.066 24.992 34.940 25.253 34.791 25.511 34.654 25.769 34.505 26.016 34.341 26.277 34.192 26.541 34.044 26.810 33.962 27.077 33.879 27.321 33.736 27.610 33.560 27.838 33.533 28.082 33.330 28.308 33.121 28.541 32.929 28.791 32.769 29.049 32.643 29.327 32.582 29.574 32.390 29.871 32.484 29.874 32.610 29.541 32.714 29.308 32.857 29.080 33.077 28.824 33.192 28.552 33.264 28.335 33.489 28.115 33.692 27.915 33.923 27.805 34.231 28.038 34.429 28.332 34.434 28.596 34.555 28.879 34.643 29.154 34.703 29.415 34.830 29.412 34.962 29.110 34.885 28.824 34.824 28.538 34.786 28.239 34.670 28.091 34.725 28.069 35.093 27.863 35.319 27.613 35.484 27.363 35.648 27.115 35.808 26.885 35.995 26.640 36.170 26.396 36.330 26.143 36.500 25.923 36.643 25.720 36.802 25.464 36.984 25.217 37.148 24.918 37.198 24.692 37.253 24.437 37.440 24.266 37.648 24.157 37.934 23.984 38.198 23.783 38.423 23.530 38.582 23.261 38.725 23.008 38.841 22.802 38.951 22.453 39.093 22.184 39.044 21.893 39.000 21.640 39.099 21.354 39.137 21.080 39.209 20.835 39.396 20.615 39.549 20.385 39.736 20.272 39.989 20.126 40.275 19.942 40.516 19.745 40.720 19.511 40.874 19.236 41.027 18.973 41.159 18.684 41.247 18.451 41.418 18.192 41.538 17.940 41.709 17.750 41.940 17.563 42.165 17.327 42.319 17.085 42.407 16.830 42.610 16.582 42.742 16.302 42.808 16.008 42.841 15.734 42.736 15.456 42.769 15.225 42.742 14.876 42.918 14.613 42.995 14.396 43.022 14.033 43.110 13.783 43.253 13.500 43.264 13.217 43.264 12.951 43.407 12.728 43.560 12.646 43.885 12.632 44.170 12.714 44.445 12.780 44.714 12.797 44.973 12.995 45.198 13.135 45.456 13.327 45.676 13.396 45.962 13.415 46.264 13.423 46.560 13.495 46.846 13.582 47.126 13.673 47.407 13.854 47.643 13.995 47.907 14.005 48.192 14.016 48.473 14.104 48.764 14.321 48.967 14.536 49.165 14.665 49.434 14.766 49.709 14.830 50.000 14.901 50.286 15.036 50.549 15.099 50.841 15.165 51.137 15.258 51.418 15.379 51.681 15.514 51.940 15.679 52.198 15.978 52.187 16.253 52.297 16.437 52.533 16.544 52.813 16.646 53.093 16.734 53.379 16.799 53.670 16.926 53.951 17.019 54.225 17.033 54.527 16.975 54.819 17.060 55.110 17.327 55.264 17.604 55.286 17.830 55.484 17.898 55.780 17.934 56.082 17.995 56.374 18.217 56.566 18.505 56.643 18.736 56.813 18.865 57.082 18.934 57.379 18.953 57.692 19.140 57.797 19.423 57.747 19.709 57.714 19.986 57.808 20.269 57.890 20.505 58.066 20.462 58.253 20.442 58.500 20.739 58.670 20.964 58.802 21.198 58.984 21.382 59.231 21.593 59.429 21.846 59.571 22.096 59.720 22.365 59.830 22.541 59.670 22.692 59.401 22.926 59.220 23.148 59.022 23.390 58.852 23.582 58.654 23.637 58.346 23.717 58.027 23.772 57.725 23.860 57.418 23.970 57.132 24.168 56.896 24.398 56.709 24.632 56.533 24.901 56.407 25.181 56.368 25.467 56.363 25.742 56.319 26.038 56.401 26.236 56.346 25.857 55.989 25.668 55.764 25.497 55.527 25.264 55.313 25.052 55.088 24.860 54.824 24.665 54.643 24.470 54.500 24.231 54.280 24.104 53.995 24.058 53.681 24.102 53.368 24.140 53.082 24.154 52.742 24.102 52.489 23.978 52.198 24.008 51.885 24.250 51.698 24.302 51.495 24.423 51.341 24.621 51.368 24.962 51.571 25.247 51.571 25.538 51.505 25.772 51.560 26.030 51.368 26.080 51.121 25.835 50.951 25.569 50.857 25.297 50.758 25.011 50.808 24.849 50.747 25.157 50.544 25.453 50.407 25.676 50.209 25.956 50.077 26.135 50.104 26.393 50.154 26.668 50.049 26.863 49.885 27.047 49.632 27.190 49.412 27.448 49.220 27.618 48.918 27.821 48.819 28.099 48.654 28.382 48.516 28.646 48.385 28.893 48.247 29.151 48.115 29.357 47.934 29.475 47.802 29.673 48.066 30.022 48.044 29.945 48.478 30.027 48.758 30.225 48.907 30.462 49.005 30.363 49.121 30.157 49.363 30.060 49.648 30.173 50.000 29.934 50.181 29.690 50.385 29.473 50.604 29.187 50.703 28.962 50.868 28.720 51.038 28.434 51.132 28.173 51.280 27.951 51.478 27.841 51.753 27.786 52.071 27.651 52.363 27.448 52.604 27.258 52.791 27.104 53.060 26.989 53.374 26.786 53.593 26.717 53.885 26.706 54.209 26.582 54.489 26.514 54.786 26.659 55.060 26.766 55.357 26.915 55.610 27.036 55.912 27.165 56.203 27.165 56.522 27.071 56.835 26.882 56.995 26.580 57.082 26.297 57.137 26.027 57.209 25.780 57.390 25.703 57.731 25.626 58.011 25.577 58.313 25.574 58.632 25.484 58.929 25.420 59.214 25.437 59.527 25.387 59.846 25.357 60.176 25.354 60.484 25.245 60.786 25.181 61.104 25.126 61.429 25.154 61.692 25.107 61.978 25.168 62.258 25.206 62.462 25.245 62.813 25.236 63.132 25.247 63.462 25.374 63.731 25.385 64.060 25.272 64.368 25.242 64.665 25.313 64.989 25.360 65.297 25.363 65.610 25.415 65.923 25.456 66.242 25.492 66.390 25.146 66.709 24.865 66.747 24.791 67.088 24.607 67.203 24.343 67.291 24.058 67.434 23.865 67.610 23.852 67.956 23.725 68.165 23.659 68.385 23.816 68.654 23.802 68.692 23.569 68.451 23.335 68.544 23.113 68.725 22.962 69.000 22.835 69.280 22.766 69.593 22.852 69.868 22.951 70.176 22.942 70.401 22.569 70.121 22.459 69.808 22.382 69.533 22.343 69.214 22.332 69.005 22.005 69.176 21.816 69.401 21.607 69.626 21.398 69.841 21.173 70.044 20.975 70.269 20.819 70.527 20.714 70.819 20.761 71.110 20.876 71.407 20.997 71.659 21.129 71.956 21.321 72.137 21.610 72.258 21.890 72.104 22.223 72.258 22.283 72.456 22.203 72.725 21.918 72.610 21.681 72.659 21.659 72.918 21.382 72.643 21.096 72.742 20.841 72.885 20.549 72.879 20.280 72.769 19.997 72.692 19.728 72.698 19.478 72.780 19.236 72.879 18.984 72.923 18.714 72.918 18.412 72.956 18.154 73.000 17.835 73.071 17.560 73.154 17.286 73.214 16.995 73.269 16.679 73.319 16.464 73.346 16.146 73.451 15.901 73.571 15.640 73.742 15.418 73.863 15.104 73.956 14.852 74.132 14.610 74.297 14.412 74.401 14.143 74.478 13.841 74.604 13.596 74.687 13.321 74.714 12.992 74.786 12.777 74.879 12.451 75.000 12.198 75.132 11.964 75.308 11.736 75.484 11.486 75.632 11.247 75.764 10.962 75.868 10.695 75.956 10.423 76.082 10.179 76.192 9.986 76.286 9.723 76.341 9.346 76.357 9.135 76.462 8.920 76.604 8.610 76.802 8.385 76.989 8.195 77.214 8.099 77.495 8.198 77.764 8.357 78.016 8.610 78.137 8.854 78.203 9.088 78.418 9.179 78.698 9.258 78.978 9.239 79.269 9.250 79.330 9.352 79.005 9.599 78.956 9.843 79.115 10.093 79.247 10.302 79.423 10.297 79.681 10.418 79.857 10.709 79.846 10.995 79.852 11.316 79.780 11.538 79.775 11.852 79.819 12.154 79.940 12.363 80.088 12.624 80.203 12.907 80.264 13.192 80.319 13.431 80.275 13.607 80.192 13.901 80.203 14.198 80.115 14.486 80.176 14.739 80.121 15.027 80.060 15.316 80.110 15.580 80.231 15.799 80.418 15.860 80.709 15.846 80.863 15.915 81.005 16.220 81.225 16.360 81.451 16.335 81.742 16.434 82.033 16.599 82.280 16.879 82.330 17.118 82.390 17.294 82.626 17.420 82.901 17.574 83.176 17.753 83.346 17.981 83.555 18.157 83.819 18.297 84.082 18.514 84.291 18.723 84.489 18.951 84.676 19.157 84.808 19.385 85.077 19.560 85.319 19.618 85.357 19.599 85.165 19.852 85.407 19.736 85.577 19.827 86.000 20.005 86.264 20.113 86.478 20.349 86.736 20.574 86.868 20.755 86.962 21.069 86.857 21.332 86.929 21.519 87.159 21.602 87.462 21.692 87.758 21.887 87.989 22.148 88.082 22.286 88.016 21.986 88.176 21.695 88.203 21.668 88.346 21.750 88.544 22.025 88.687 21.651 88.808 21.723 89.038 21.945 89.055 21.788 89.341 22.036 89.500 22.148 89.549 21.813 89.654 22.033 89.852 22.330 89.879 22.338 89.923 22.027 90.005 21.860 90.154 22.102 90.423 22.338 90.599 22.624 90.522 22.887 90.505 23.168 90.511 23.382 90.396 23.484 90.143 23.668 89.868 23.791 89.577 23.890 89.478 23.885 89.764 23.662 89.984 23.500 90.247 23.475 90.555 23.126 90.604 22.907 90.786 22.819 91.082 22.827 91.407 22.585 91.632 22.302 91.780 22.052 91.863 21.761 91.940 21.486 91.989 21.203 92.055 20.951 92.203 20.896 92.280 21.016 92.264 20.712 92.407 20.478 92.593 20.418 92.714 20.541 92.742 20.266 92.846 20.234 92.956 20.308 93.049 19.964 93.055 19.948 93.176 20.000 93.440 19.808 93.670 19.599 93.824 19.324 93.912 19.242 93.615 18.989 93.918 19.184 94.033 18.824 94.126 18.637 94.231 18.313 94.368 18.052 94.462 17.766 94.522 17.514 94.577 17.220 94.516 16.929 94.429 16.632 94.346 16.390 94.253 16.096 94.220 16.038 94.368 16.272 94.582 16.354 94.692 16.008 94.720 16.110 94.907 15.865 94.962 16.033 95.137 15.896 95.247 15.973 95.330 15.753 95.434 15.959 95.654 16.190 95.830 16.327 96.082 16.503 96.275 16.668 96.269 16.560 96.604 16.799 96.808 17.047 96.879 17.302 96.951 17.000 97.198 16.690 97.297 16.522 97.478 16.451 97.659 16.093 97.604 15.835 97.703 15.544 97.758 15.264 97.769 14.975 97.802 14.712 97.923 14.420 97.978 14.137 98.077 13.832 98.093 13.695 98.170 13.890 98.231 13.577 98.357 13.321 98.484 13.038 98.588 12.747 98.654 12.473 98.648 12.198 98.637 11.887 98.648 11.750 98.753 11.610 98.775 11.327 98.731 11.022 98.692 10.769 98.549 10.508 98.489 10.223 98.511 10.107 98.610 10.206 98.698 9.879 98.566 9.629 98.500 9.332 98.390 9.058 98.346 8.777 98.253 8.514 98.225 8.245 98.401 8.297 98.665 8.038 98.841 7.838 99.033 7.654 99.214 7.363 99.418 7.228 99.604 6.989 99.698 6.769 99.835 6.555 100.033 6.310 100.176 6.058 100.319 5.758 100.368 5.486 100.374 5.195 100.412 4.929 100.467 4.709 100.604 4.429 100.604 4.162 100.670 3.929 100.780 3.676 100.962 3.442 101.137 3.212 101.302 2.912 101.335 2.692 101.516 2.547 101.775 2.368 101.978 2.201 102.225 2.074 102.495 1.887 102.709 1.750 102.962 1.613 103.214 1.429 103.423 1.363 103.588 1.456 103.901 1.495 104.071 1.500 104.275 1.794 104.176 2.052 104.060 2.310 103.940 2.574 103.786 2.745 103.560 3.005 103.440 3.299 103.440 3.569 103.423 3.863 103.379 4.137 103.429 4.418 103.473 4.709 103.445 4.973 103.346 5.228 103.209 5.462 103.038 5.626 102.797 5.819 102.582 6.049 102.418 6.214 102.192 6.349 101.951 6.547 101.742 6.791 101.577 6.904 101.319 6.874 101.027 7.003 100.769 7.157 100.538 7.324 100.335 7.580 100.176 7.659 100.286 7.420 100.418 7.324 100.489 7.703 100.390 7.984 100.330 8.266 100.275 8.467 100.137 8.706 99.951 8.997 99.918 9.272 99.802 9.234 99.505 9.321 99.275 9.610 99.198 9.893 99.159 10.184 99.187 10.423 99.236 10.695 99.363 10.945 99.489 11.236 99.555 11.516 99.654 11.777 99.797 12.036 99.918 12.299 100.000 12.591 99.973 12.871 100.022 13.140 100.049 13.379 100.044 13.486 100.324 13.530 100.615 13.415 100.929 13.096 100.918 12.810 100.879 12.648 100.973 12.635 101.302 12.651 101.582 12.610 101.885 12.500 102.071 12.327 102.286 12.137 102.566 11.967 102.769 11.703 102.901 11.602 103.022 11.225 103.104 10.926 103.176 10.992 103.429 11.091 103.599 10.802 103.665 10.558 103.632 10.602 103.907 10.533 104.236 10.382 104.484 10.198 104.687 10.085 104.967 9.890 105.038 9.643 104.852 9.357 104.830 9.063 104.813 8.750 104.868 8.591 104.868 8.701 105.198 8.915 105.379 9.126 105.560 9.239 105.830 9.360 106.121 9.593 106.154 9.832 105.989 9.909 105.951 9.659 106.220 9.632 106.505 9.918 106.407 10.074 106.286 9.926 106.582 10.113 106.445 10.135 106.703 10.313 106.632 10.536 106.780 10.555 107.038 10.431 107.324 10.577 107.621 10.698 107.890 10.874 108.104 10.989 108.363 11.168 108.621 11.305 108.863 11.500 109.027 11.681 109.159 11.970 109.209 12.277 109.203 12.492 109.247 12.720 109.396 13.019 109.379 13.291 109.286 13.536 109.269 13.832 109.264 14.146 109.209 14.412 109.132 14.676 109.066 14.945 108.951 15.223 108.896 15.431 108.725 15.668 108.511 15.904 108.357 16.115 108.220 16.302 107.967 16.481 107.709 16.640 107.516 16.876 107.225 17.093 107.071 17.283 106.835 17.495 106.626 17.706 106.418 17.797 106.434 18.071 106.401 18.239 106.181 18.420 105.962 18.684 105.786 18.904 105.659 19.184 105.742 19.462 105.802 19.725 105.879 19.967 106.060 20.110 106.302 20.332 106.544 20.599 106.615 20.819 106.742 20.964 106.813 20.989 107.099 21.118 107.363 21.313 107.522 21.473 107.813 21.522 108.060 21.610 108.363 21.709 108.511 21.832 108.582 21.706 108.824 21.505 109.121 21.462 109.396 21.593 109.637 21.382 109.857 21.091 109.703 20.805 109.736 20.560 109.852 20.327 109.984 20.302 110.357 20.555 110.440 20.780 110.313 21.027 110.209 21.280 110.379 21.308 110.445 21.341 110.676 21.462 111.000 21.495 111.253 21.552 111.544 21.709 111.802 21.813 112.049 21.827 112.374 21.929 112.429 21.854 112.676 21.962 112.940 22.124 113.176 22.286 113.313 22.420 113.247 22.283 113.538 22.615 113.522 22.860 113.385 23.093 113.549 23.025 113.626 22.810 113.659 22.538 113.885 22.374 114.049 22.426 114.275 22.538 114.445 22.632 114.560 22.692 114.764 22.687 114.929 22.819 115.236 22.799 115.495 22.838 115.769 22.874 116.077 22.970 116.368 23.209 116.621 23.316 116.659 23.379 116.670 23.585 116.912 23.654 117.198 23.835 117.505 23.986 117.736 24.159 117.956 24.349 118.022 24.497 117.945 24.602 118.209 24.613 118.544 24.846 118.703 24.995 118.940 25.195 119.049 25.297 119.236 25.511 119.242 25.481 119.440 25.467 119.571 25.766 119.566 25.981 119.549 26.052 119.291 26.239 119.676 26.420 119.753 26.725 119.725 26.681 119.967 26.588 119.984 26.813 120.099 27.052 120.275 27.255 120.368 27.511 120.632 27.775 120.731 27.995 120.709 28.041 120.687 28.088 120.995 28.269 121.231 28.379 121.555 28.681 121.374 28.758 121.297 28.882 121.610 29.102 121.533 29.264 121.709 29.291 121.923 29.541 121.830 29.516 121.571 29.808 121.967 29.901 121.967 30.016 121.648 30.228 121.418 30.266 121.110 30.115 120.758 30.231 120.511 30.294 120.319 30.371 120.797 30.549 121.022 30.712 121.313 30.843 121.604 30.970 121.846 31.266 121.703 31.434 121.429 31.637 121.181 31.764 120.874 31.929 120.687 31.948 120.341 31.962 119.989 32.184 119.725 32.269 119.791 31.989 120.044 32.008 120.346 32.074 120.654 31.898 120.940 31.849 121.264 31.755 121.577 31.794 121.841 32.066 121.615 32.242 121.407 32.470 121.220 32.637 120.901 32.912 120.879 33.190 120.764 33.451 120.621 33.712 120.489 33.981 120.379 34.258 120.258 34.423 119.978 34.544 119.659 34.728 119.363 34.865 119.187 35.115 119.319 35.363 119.511 35.599 119.758 35.764 119.984 35.992 120.187 36.168 120.269 36.146 120.610 36.393 120.775 36.585 120.918 36.734 121.363 36.810 121.615 36.948 122.016 36.890 122.297 37.060 122.495 37.357 122.560 37.484 122.148 37.453 121.852 37.514 121.484 37.651 121.132 37.808 120.824 37.731 120.456 37.585 120.231 37.349 119.923 37.151 119.692 37.137 119.330 37.280 119.011 37.563 118.984 37.824 119.038 38.088 118.857 38.113 118.527 38.146 118.143 38.269 117.835 38.495 117.610 38.769 117.582 39.036 117.731 39.201 118.005 39.093 118.363 39.176 118.764 39.223 119.022 39.530 119.253 39.769 119.429 39.940 119.714 40.071 120.049 40.206 120.401 40.423 120.610 40.679 120.901 40.871 121.126 40.882 121.489 40.868 121.846 40.640 122.165 40.396 122.214 40.157 122.000 39.951 121.769 39.720 121.500 39.495 121.385 39.305 121.731 39.030 121.456 38.835 121.269 38.978 121.764 39.132 122.088 39.354 122.330 39.503 122.648 39.643 122.989 39.758 123.319 39.835 123.665 39.841 124.071 39.951 124.401 39.690 124.720 39.599 125.093 39.451 125.385 39.151 125.330 38.882 125.187 38.734 125.357 38.665 125.467 38.566 125.071 38.269 124.907 38.110 124.868 37.951 125.165 37.810 125.467 37.931 125.780 37.816 126.154 37.813 126.566 37.651 126.637 37.297 126.742 37.088 126.808 36.909 126.830 36.937 126.456 36.736 126.308 36.398 126.538 36.118 126.593 35.898 126.742 35.588 126.571 35.316 126.396 35.049 126.357 34.794 126.500 34.593 126.429 34.398 126.637 34.519 126.907 34.624 127.231 34.574 127.418 34.755 127.522 34.887 127.714 34.973 128.060 34.956 128.412 35.115 128.670 35.104 129.044 35.327 129.319 35.555 129.440 35.865 129.538 36.077 129.456 36.385 129.418 36.673 129.451 36.964 129.423 37.242 129.330 37.497 129.159 37.747 128.978 37.981 128.764 38.234 128.588 38.497 128.440 38.736 128.247 38.923 127.945 39.115 127.676 39.327 127.467 39.613 127.533 39.832 127.698 39.995 128.005 40.071 128.363 40.250 128.670 40.426 128.973 40.643 129.231 40.802 129.544 40.992 129.731 41.299 129.758 41.571 129.692 41.830 129.879 42.060 130.104 42.258 130.385 42.360 130.725 42.621 130.912 42.725 131.291 42.948 131.478 43.195 131.714 43.220 131.934 43.157 132.093 43.179 132.319 42.890 132.423 42.821 132.830 42.728 133.159 42.827 133.610 42.926 133.962 43.102 134.286 43.255 134.632 43.431 134.945 43.651 135.220 43.863 135.473 44.102 135.637 44.341 135.857 44.533 136.159 44.772 136.390 45.000 136.643 45.231 136.890 45.431 137.192 45.654 137.456 45.874 137.731 46.107 137.973 46.360 138.154 46.613 138.346 46.893 138.489 47.137 138.698 47.360 138.978 47.624 139.159 47.876 139.374 48.093 139.670 48.305 139.967 48.547 140.176 48.835 140.275 49.066 140.319 49.360 140.429 49.670 140.527 49.945 140.500 50.165 140.571 50.489 140.489 50.769 140.511 51.038 140.670 51.343 140.780 51.588 140.951 51.819 141.236 52.074 141.407 52.264 141.357 52.500 141.203 52.788 141.220 53.000 140.918 53.066 140.923 53.102 141.313 53.335 141.236 53.505 140.918 53.720 140.484 53.973 140.253 54.187 139.901 54.242 139.549 54.220 139.071 54.179 138.725 53.863 138.703 53.585 138.516 53.610 138.330 53.846 138.412 53.585 137.868 53.632 137.429 53.953 137.637 54.137 137.467 54.283 137.495 54.069 137.181 53.841 137.033 53.901 136.698 54.209 136.786 54.481 136.808 54.626 136.615 54.593 136.082 54.640 135.626 54.819 135.236 55.085 135.511 55.239 135.940 55.442 136.280 55.640 136.643 55.813 137.038 55.997 137.418 56.214 137.775 56.459 138.110 56.706 138.330 56.948 138.654 57.129 139.011 57.335 139.429 57.536 139.813 57.739 140.209 57.937 140.533 58.214 140.703 58.434 141.060 58.602 141.516 58.832 141.852 59.066 142.165 59.239 142.626 59.346 143.165 59.379 143.709 59.387 144.302 59.379 144.791 59.409 145.418 59.316 145.857 59.223 146.231 59.415 146.577 59.335 147.165 59.297 147.692 59.374 148.247 59.272 148.764 59.475 148.934 59.728 149.313 59.728 149.852 59.610 150.385 59.519 150.775 59.522 151.473 59.302 151.885 59.181 152.044 59.140 151.412 58.959 151.242 58.871 151.764 58.989 152.302 58.967 152.863 59.165 153.341 59.159 153.808 59.151 154.374 59.190 154.962 59.426 154.995 59.489 154.440 59.591 154.214 59.868 154.352 60.115 154.615 60.354 154.962 60.544 155.412 60.747 155.830 61.008 156.099 61.223 156.544 61.495 156.747 61.698 157.214 61.783 157.753 61.797 158.330 61.868 158.896 61.810 159.423 61.736 159.775 61.805 160.269 61.451 160.055 61.228 159.896 60.967 160.137 60.703 160.363 60.871 160.907 61.093 161.308 61.302 161.709 61.489 162.104 61.654 162.703 61.676 163.115 62.011 163.088 62.308 163.203 62.541 163.374 62.643 163.995 62.648 164.588 62.516 165.154 62.423 165.280 62.423 164.549 62.212 164.115 61.918 164.066 61.646 163.923 61.393 163.901 61.143 163.698 60.904 163.555 60.761 163.093 60.593 162.500 60.412 161.989 60.162 161.769 59.959 161.368 59.728 161.022 59.547 160.577 59.316 160.225 59.099 159.835 58.830 159.643 58.569 159.275 58.382 158.940 58.190 158.522 58.003 158.176 57.931 157.604 57.797 157.132 57.690 156.874 57.390 156.934 57.113 156.670 56.909 156.341 56.736 156.049 56.412 155.857 56.129 155.736 55.849 155.648 55.560 155.593 55.275 155.555 54.984 155.593 54.701 155.659 54.407 155.736 54.126 155.841 53.841 155.923 53.552 155.984 53.264 156.044 52.978 156.093 52.692 156.181 52.464 156.357 52.143 156.440 51.854 156.495 51.560 156.489 51.283 156.593 51.027 156.824 51.294 157.330 51.508 157.621 51.709 157.973 51.953 158.247 52.223 158.434 52.478 158.495 52.739 158.549 52.973 158.632 53.143 159.242 53.228 159.709 53.245 159.973 53.569 159.885 53.860 159.868 54.132 160.033 54.338 160.374 54.522 160.753 54.541 161.225 54.544 161.714 54.775 162.071 55.044 161.929 55.305 161.742 55.596 161.753 55.863 161.940 56.118 162.170 56.338 162.495 56.404 162.824 56.077 162.912 56.250 163.308 56.549 163.247 56.745 162.984 56.981 162.808 57.286 162.769 57.519 163.049 57.780 163.170 57.893 162.626 57.786 162.291 58.063 161.973 58.349 162.088 58.610 162.335 58.841 162.709 59.071 163.033 59.332 163.242 59.624 163.302 59.882 163.555 59.975 163.989 60.008 164.555 59.890 165.027 60.137 165.231 60.316 165.819 60.390 166.181 60.000 166.143 59.890 166.335 60.137 166.731 60.363 167.115 60.475 167.604 60.571 168.187 60.563 168.758 60.552 169.308 60.291 169.797 60.055 170.005 60.019 170.379 60.363 170.588 60.525 170.945 60.728 171.467 60.879 171.945 61.077 172.275 61.255 172.670 61.418 172.984 61.651 173.516 61.764 174.044 61.896 174.626 62.069 175.225 62.187 175.659 62.321 176.225 62.500 176.703 62.648 177.055 62.755 177.247 62.574 177.588 62.500 178.220 62.379 178.802 62.420 179.176 62.665 179.522 62.956 179.363 63.214 179.220 63.393 178.879 63.577 178.626 63.992 178.538 64.264 178.363 64.302 178.055 64.481 177.434 64.703 177.181 64.626 176.434 64.676 176.269 64.838 175.973 64.742 175.291 64.717 174.923 64.868 175.934 64.846 176.549 64.923 176.978 65.052 176.637 64.904 177.357 64.717 177.780 64.648 178.516 64.753 179.066 64.904 179.615 65.115 -179.885 65.357 -179.544 65.629 -179.429 65.896 -179.780 66.148 -179.544 66.286 -179.071 66.258 -178.560 65.956 -178.835 65.662 -178.533 65.484 -178.181 65.511 -177.489 65.582 -176.841 65.470 -176.170 65.231 -175.857 64.951 -175.709 64.805 -175.148 64.670 -174.462 64.467 -174.033 64.440 -173.489 64.475 -173.346 64.368 -173.049 64.563 -172.742 64.860 -172.835 65.140 -172.297 65.286 -172.390 65.511 -172.374 65.635 -172.473 65.511 -171.808 65.621 -171.225 65.747 -171.258 65.723 -170.615 65.981 -170.209 66.146 -169.989 66.310 -170.511 66.544 -171.011 66.755 -171.495 66.956 -171.984 66.984 -172.753 67.000 -173.357 67.096 -174.236 67.025 -174.363 66.731 -174.044 66.511 -174.011 66.357 -174.093 66.448 -174.484 66.703 -174.824 67.000 -174.868 67.313 -174.879 67.478 -175.220 67.775 -175.681 67.942 -176.308 68.121 -176.984 68.264 -177.538 68.415 -178.066 68.629 -178.687 68.838 -179.280 68.934 -179.714 69.058 175.637 69.272 175.000 69.396 174.549 69.549 173.588 69.657 172.819 69.824 172.121 69.874 171.280 70.025 171.725 70.096 170.896 70.014 170.522 69.728 170.352 69.544 170.544 69.266 170.890 69.003 170.918 68.821 170.484 68.849 169.560 69.110 169.154 69.261 168.396 69.549 168.143 69.701 167.665 69.522 166.819 69.544 165.989 69.585 165.170 69.651 164.379 69.712 163.687 69.679 162.852 69.602 162.121 69.374 161.527 69.099 161.495 68.813 161.407 68.659 161.115 69.077 161.148 69.357 160.973 69.629 160.709 69.769 159.940 70.058 159.813 70.299 160.055 70.580 159.813 70.805 159.280 70.956 158.527 71.055 157.698 71.085 156.797 71.066 155.857 71.025 155.181 70.951 154.242 70.863 153.412 70.846 152.522 71.008 151.923 71.299 151.527 71.341 150.681 71.398 150.275 71.629 149.780 71.780 149.220 71.970 149.951 72.190 149.341 72.294 148.445 72.319 147.462 72.146 146.786 71.890 146.302 71.714 145.549 71.830 145.115 72.044 145.725 72.126 145.989 71.964 146.214 72.269 146.538 72.269 145.368 72.302 144.747 72.346 146.242 72.409 146.462 72.536 145.484 72.618 144.549 72.676 143.610 72.701 142.632 72.766 141.687 72.772 140.890 72.516 140.654 72.473 139.676 72.214 139.396 72.126 139.923 71.865 139.615 71.514 139.753 71.514 139.060 71.574 138.368 71.310 138.033 71.234 137.659 71.478 136.786 71.610 136.066 71.544 135.236 71.363 134.571 71.467 133.566 71.684 132.962 71.799 132.489 71.429 132.055 71.173 131.901 70.874 131.500 70.852 130.841 71.008 130.170 71.192 129.654 71.508 129.225 71.725 129.187 71.865 128.956 72.082 128.269 72.302 127.676 72.302 126.907 71.964 127.159 71.690 127.225 71.563 127.209 71.953 126.934 72.250 126.473 72.357 125.676 72.560 124.962 72.695 124.115 72.758 123.198 72.882 122.242 72.953 121.401 72.981 120.423 72.967 119.890 73.203 118.577 73.497 118.533 73.591 117.368 73.665 116.368 73.679 115.330 73.582 114.352 73.401 113.720 73.124 113.549 72.720 113.511 72.835 113.297 73.124 113.489 73.401 113.308 73.679 113.335 73.843 112.841 73.761 111.775 73.973 111.143 73.953 109.978 73.720 109.907 73.659 110.544 73.470 109.440 73.335 108.709 73.217 107.984 73.162 106.824 73.033 106.181 72.810 105.593 72.857 105.429 73.118 105.934 73.321 106.516 73.558 107.165 73.665 108.055 73.885 108.681 74.099 109.473 74.324 109.940 74.530 110.742 74.703 111.709 74.912 112.456 75.126 113.203 75.412 113.604 75.635 112.967 75.742 112.940 75.665 113.692 75.953 113.577 76.176 112.940 76.434 112.126 76.681 111.308 76.723 110.165 76.731 108.857 76.615 107.874 76.607 106.780 76.964 107.055 77.049 105.758 77.170 104.907 77.475 105.786 77.679 104.330 77.580 103.022 77.360 102.099 77.102 101.324 76.846 100.995 76.549 101.231 76.451 101.511 76.475 100.005 76.385 99.181 76.063 99.835 75.788 99.527 75.376 99.758 75.536 99.445 75.783 99.407 76.071 99.549 76.176 98.571 76.008 97.451 75.937 96.385 76.000 95.907 76.135 95.236 76.096 94.143 75.953 93.352 75.750 92.297 75.651 91.242 75.566 90.110 75.429 89.132 75.225 88.368 75.047 87.396 74.745 86.978 74.703 86.495 74.665 86.104 74.423 86.912 74.365 86.703 74.308 86.220 74.058 87.060 73.802 87.412 73.582 86.747 73.415 85.978 73.162 86.571 73.118 86.560 73.390 85.896 73.637 86.407 73.849 86.615 73.747 85.313 73.720 84.308 73.665 83.291 73.659 82.247 73.604 81.214 73.462 80.516 73.184 80.451 72.920 80.791 72.632 80.720 72.390 81.170 72.264 82.082 71.995 82.484 71.824 83.264 71.555 83.538 71.275 83.264 71.019 83.324 70.717 83.615 70.431 83.654 70.266 82.967 70.712 83.093 70.885 82.742 70.560 82.297 70.407 82.220 70.832 82.319 71.126 82.291 71.363 82.714 71.629 83.143 71.745 82.516 71.739 81.577 71.995 80.863 72.157 80.352 72.327 79.555 72.382 78.610 72.264 77.786 72.088 77.747 71.879 77.824 72.008 76.907 71.890 76.148 71.599 76.346 71.412 77.027 71.310 77.813 71.096 78.390 70.967 78.549 71.151 77.143 71.209 76.379 71.305 75.560 71.533 75.412 71.835 75.286 72.107 75.516 72.376 75.648 72.662 75.511 72.753 74.989 72.390 75.099 72.113 74.896 71.940 74.165 71.750 73.527 71.453 73.198 71.192 73.593 70.915 73.901 70.648 74.275 70.374 74.093 70.113 73.742 69.819 73.604 69.549 73.758 69.266 73.819 69.115 74.198 69.126 75.033 69.234 75.786 69.132 76.571 68.973 77.231 68.775 77.709 68.497 77.868 68.247 77.934 67.992 77.511 67.745 77.725 67.648 78.456 67.582 78.676 67.588 77.758 67.810 77.220 68.099 77.264 68.374 77.253 68.618 77.055 68.882 76.615 68.951 75.956 68.854 75.203 68.690 74.533 68.393 74.429 68.121 74.720 67.830 74.791 67.577 74.478 67.349 74.011 67.058 73.868 66.838 73.440 66.670 72.852 66.481 72.385 66.264 72.005 66.352 71.286 66.343 70.549 66.434 69.874 66.582 69.242 66.805 69.346 66.766 70.093 66.632 70.676 66.717 71.429 66.956 71.621 67.206 72.115 67.459 72.467 67.690 72.940 67.948 73.159 68.234 73.192 68.497 73.533 68.745 73.027 68.975 72.577 69.266 72.555 69.544 72.582 69.841 72.637 70.135 72.538 70.401 72.648 70.681 72.758 70.973 72.714 71.214 72.335 71.484 71.934 71.750 72.308 72.019 72.599 72.302 72.813 72.613 72.775 72.810 72.126 72.901 71.297 72.896 70.291 72.887 69.451 72.580 68.934 72.283 68.775 71.995 68.593 71.720 68.319 71.484 67.791 71.299 67.077 71.044 66.758 70.805 66.940 70.580 67.258 70.294 67.165 70.041 67.104 69.747 66.791 69.618 67.066 69.489 67.967 69.206 68.165 68.962 68.687 68.860 69.055 68.538 68.802 68.316 68.313 68.566 67.643 68.802 67.077 68.956 66.396 69.110 65.742 69.245 64.945 69.473 64.429 69.613 63.703 69.712 62.918 69.753 62.088 69.824 61.264 69.734 60.621 69.527 60.247 69.250 60.560 69.019 60.846 68.723 60.374 68.585 59.879 68.374 59.571 68.544 59.093 68.832 59.192 68.975 58.841 68.808 58.176 68.637 57.440 68.596 56.692 68.613 55.956 68.503 55.220 68.258 54.709 68.247 54.005 68.352 53.582 68.643 53.808 68.896 53.918 68.986 54.170 68.882 53.308 68.717 52.659 68.538 52.544 68.462 52.165 68.423 51.429 68.310 50.703 68.091 50.022 67.942 49.478 67.769 48.846 67.643 48.187 67.453 47.868 67.165 47.742 66.918 47.484 66.824 46.742 66.832 46.291 67.049 45.692 67.255 45.247 67.489 45.027 67.720 45.495 67.810 46.275 67.942 46.637 68.192 46.352 68.445 45.896 68.571 45.165 68.549 44.374 68.533 43.692 68.104 44.242 67.879 44.148 67.604 44.000 67.261 43.835 67.058 44.335 66.761 44.462 66.500 44.313 66.220 44.110 66.041 43.978 66.154 43.478 66.415 42.989 66.448 42.308 66.212 41.687 66.030 41.143 65.876 40.566 65.673 40.071 65.442 39.736 65.176 39.995 64.926 40.346 64.635 40.330 64.604 39.643 64.739 38.890 64.775 38.253 65.008 37.725 65.154 37.066 64.909 36.593 64.668 36.769 64.418 37.209 64.343 37.846 64.008 37.984 63.857 37.401 63.937 36.742 64.102 36.247 64.308 35.797 64.396 35.176 64.681 34.868 64.953 34.819 65.212 34.610 65.451 34.538 65.755 34.808 66.003 34.643 66.214 34.093 66.382 33.555 66.588 33.165 66.819 32.681 67.063 32.286 67.146 32.209 67.038 32.841 66.786 33.456 66.709 34.033 66.596 34.588 66.448 35.308 66.343 35.978 66.286 36.692 66.195 37.363 66.088 38.005 66.074 38.714 66.154 39.407 66.291 40.038 66.478 40.577 66.717 41.000 66.981 41.308 67.245 41.225 67.533 41.044 67.758 40.676 67.937 40.214 68.104 39.681 68.280 38.945 68.382 38.445 68.665 37.764 68.843 37.148 69.025 36.505 69.184 35.846 69.228 35.093 69.305 34.280 69.245 33.621 69.170 33.280 69.412 33.016 69.522 32.319 69.662 32.291 69.723 32.868 69.846 31.973 69.695 31.385 69.780 30.500 69.747 30.016 69.835 29.588 70.025 29.225 70.124 28.945 70.102 30.126 70.294 30.852 70.492 30.604 70.637 29.978 70.786 29.154 70.632 28.505 70.396 28.319 70.236 28.176 70.574 28.038 70.821 28.154 71.025 28.159 70.951 27.429 70.659 27.159 70.533 26.676 70.827 26.429 70.516 25.797 70.261 25.434 70.203 25.088 70.527 25.236 70.846 25.648 70.898 24.995 70.728 24.473 70.486 24.038 70.242 23.418 70.036 23.126 70.187 22.434 70.242 21.659 70.124 21.544 69.973 21.978 69.841 21.841 69.885 21.093 69.695 20.599 69.484 20.500 69.407 20.143 69.753 20.368 69.852 20.099 69.566 19.835 69.533 19.643 69.742 19.374 69.484 19.126 69.330 19.220 69.396 18.709 69.319 18.313 69.052 17.648 68.786 17.533 68.624 16.797 68.456 16.868 68.387 17.478 68.299 17.110 68.275 16.445 68.110 16.445 67.956 16.291 68.129 15.731 67.956 15.544 67.764 15.055 67.637 15.516 67.448 15.275 67.409 14.747 67.255 14.703 67.181 15.148 67.052 14.308 66.854 13.742 66.615 13.462 66.335 13.280 66.214 13.714 66.049 12.940 65.854 12.786 65.569 12.566 65.272 12.566 65.049 12.159 64.937 11.577 64.838 11.478 64.854 11.824 64.563 11.549 64.467 11.115 64.382 10.599 64.148 10.181 63.915 9.962 63.712 9.802 63.538 10.192 63.701 10.780 63.896 10.907 63.962 11.297 63.736 11.187 63.525 10.780 63.368 10.176 63.456 9.868 63.560 9.451 63.407 9.115 63.176 8.544 62.995 8.440 62.912 8.429 62.984 8.055 62.832 8.181 62.964 7.423 62.819 7.099 62.739 7.676 62.714 7.857 62.585 7.374 62.607 6.670 62.486 6.484 62.341 7.022 62.220 7.071 62.341 6.527 62.253 6.401 62.179 6.060 62.096 6.000 62.115 5.516 62.055 5.209 61.918 5.390 61.882 5.934 61.827 6.280 61.852 5.456 61.635 5.187 61.387 5.308 61.148 5.220 61.159 5.879 61.195 6.445 61.231 6.780 61.250 7.264 61.291 7.462 61.008 7.137 61.069 6.698 61.093 6.049 61.052 5.500 60.898 5.192 60.684 5.330 60.481 5.511 60.286 5.247 60.253 5.538 60.228 5.654 60.113 5.857 60.396 6.264 60.451 6.791 60.228 6.357 59.942 5.857 59.808 5.918 59.772 6.044 59.624 5.533 59.393 5.324 59.376 5.687 59.467 6.038 59.527 6.308 59.272 6.159 59.000 6.082 58.948 6.264 58.929 5.654 58.635 5.566 58.429 5.951 58.280 6.522 58.121 6.835 58.025 7.253 58.066 7.764 58.181 8.209 58.387 8.670 58.659 9.077 58.843 9.390 59.022 9.764 59.107 10.275 59.404 10.423 59.629 10.418 59.777 10.637 59.393 10.676 59.168 10.984 59.011 11.258 58.676 11.231 58.376 11.423 58.234 11.753 57.865 11.742 57.621 11.852 57.352 12.049 57.088 12.253 56.835 12.522 56.549 12.808 56.275 12.643 56.011 12.709 55.745 12.956 55.437 12.962 55.360 13.462 55.409 13.956 55.536 14.297 55.819 14.247 56.044 14.621 56.159 14.995 56.168 15.495 56.192 15.929 56.516 16.170 56.761 16.396 57.060 16.495 57.349 16.566 57.621 16.610 57.890 16.604 58.146 16.725 58.429 16.709 58.615 16.478 58.646 16.423 58.687 17.049 58.849 17.484 59.008 17.797 59.192 18.330 59.354 18.401 59.264 17.698 59.332 17.203 59.445 16.698 59.508 16.390 59.552 17.071 59.552 17.538 59.670 17.610 59.393 18.044 59.500 18.429 59.739 18.863 59.978 18.879 60.223 18.473 60.440 18.115 60.580 17.665 60.742 17.280 61.036 17.181 61.330 17.176 61.629 17.225 61.827 17.385 62.154 17.516 62.437 17.511 62.626 17.962 62.865 18.077 63.036 18.495 63.236 18.945 63.464 19.489 63.621 20.022 63.753 20.467 64.019 20.896 64.280 21.225 64.519 21.456 64.764 21.187 65.044 21.473 65.330 21.560 65.538 21.984 65.626 22.055 65.676 22.319 65.821 22.676 65.783 23.330 65.791 24.060 65.761 24.648 65.500 25.236 65.212 25.291 64.918 25.264 64.788 24.626 64.525 24.280 64.286 23.901 64.049 23.516 63.832 23.093 63.654 22.676 63.418 22.319 63.212 21.912 63.082 21.533 62.810 21.231 62.536 21.132 62.291 21.297 61.981 21.324 61.698 21.538 61.467 21.538 61.124 21.445 60.860 21.379 60.588 21.582 60.462 22.022 60.297 22.577 60.190 22.989 59.942 23.170 59.843 23.148 59.989 23.588 60.025 24.269 60.132 24.725 60.212 25.220 60.332 25.852 60.431 26.313 60.486 26.753 60.508 27.396 60.536 27.929 60.582 28.571 60.288 28.874 60.176 29.379 60.102 29.890 59.929 29.995 59.962 29.192 59.819 28.731 59.723 28.209 59.470 27.923 59.440 27.346 59.500 26.780 59.580 26.236 59.602 25.681 59.511 25.159 59.478 24.648 59.354 24.115 59.201 23.604 58.956 23.511 58.703 23.626 58.382 23.780 58.291 24.346 57.997 24.396 57.714 24.330 57.426 24.390 57.165 24.264 56.997 23.808 57.099 23.330 57.354 23.082 57.571 22.709 57.701 22.379 57.569 21.813 57.341 21.495 57.060 21.379 56.810 21.104 56.486 21.027 56.236 20.995 55.951 21.055 55.670 21.137 55.376 21.242 55.115 21.214 54.915 21.005 55.041 20.698 55.332 21.022 55.508 21.066 55.107 20.720 54.959 20.319 54.838 19.951 54.555 19.769 54.385 19.379 54.360 18.879 54.547 18.549 54.736 18.533 54.805 17.808 54.736 17.324 54.604 16.879 54.478 16.445 54.294 16.159 54.190 15.615 54.110 15.143 54.005 14.681 53.956 14.225 53.986 13.940 53.797 14.511 53.698 14.357 53.830 13.934 54.093 13.681 54.217 13.275 54.385 12.863 54.371 12.544 54.162 12.022 54.038 11.560 53.967 11.242 54.085 10.912 54.352 10.945 54.393 10.291 54.574 9.989 54.799 9.742 54.931 9.604 55.228 9.593 55.536 9.670 55.750 9.868 55.956 10.214 56.187 10.484 56.363 10.874 56.519 10.582 56.632 10.253 57.011 10.192 57.264 10.511 57.560 10.478 57.662 10.401 57.505 9.879 57.253 9.571 57.137 9.115 57.063 8.604 56.788 8.291 56.703 8.522 57.000 8.912 57.030 9.269 56.997 9.582 56.670 9.253 56.613 9.176 56.714 8.874 56.566 8.456 56.437 8.165 56.250 8.170 55.942 8.214 55.610 8.159 55.478 8.418 55.146 8.588 54.868 8.665 54.618 8.863 54.407 8.791 54.250 8.819 53.992 8.973 53.805 9.379 53.662 9.538 53.849 8.896 53.764 8.538 53.497 8.401 53.571 8.082 53.698 7.687 53.610 7.198 53.354 7.165 53.319 7.011 53.442 6.621 53.404 6.143 53.316 5.676 53.115 5.352 52.942 4.929 52.788 4.676 52.500 4.588 52.236 4.418 51.992 4.115 51.791 3.885 51.654 3.923 51.541 4.055 51.478 3.692 51.363 4.077 51.374 3.368 51.247 2.951 51.099 2.549 51.016 2.110 50.893 1.681 50.613 1.577 50.319 1.588 50.140 1.473 49.948 1.104 49.863 0.676 49.723 0.275 49.459 0.236 49.305 -0.209 49.349 -0.643 49.393 -1.099 49.640 -1.357 49.621 -1.835 49.286 -1.670 49.019 -1.571 48.690 -1.533 48.615 -1.995 48.629 -2.379 48.599 -2.780 48.813 -3.115 48.761 -3.549 48.687 -3.940 48.640 -4.401 48.429 -4.593 48.247 -4.412 48.000 -4.544 47.857 -4.137 47.802 -3.747 47.712 -3.275 47.585 -2.984 47.530 -2.643 47.319 -2.379 47.214 -2.000 46.887 -2.071 46.624 -1.874 46.445 -1.632 46.275 -1.225 45.989 -1.099 45.731 -1.115 45.489 -0.830 45.220 -0.687 45.063 -0.621 45.451 -0.940 45.442 -1.132 45.146 -1.187 44.857 -1.231 44.646 -1.187 44.283 -1.291 43.997 -1.357 43.717 -1.434 43.456 -1.621 43.346 -1.984 43.346 -2.368 43.431 -2.747 43.390 -3.121 43.481 -3.522 43.473 -3.890 43.415 -4.335 43.437 -4.720 43.500 -5.110 43.560 -5.478 43.621 -5.879 43.588 -6.297 43.577 -6.687 43.563 -7.077 43.695 -7.467 43.736 -7.813 43.624 -8.170 43.418 -8.308 43.299 -8.852 43.151 -9.154 42.923 -9.203 42.690 -8.967 42.492 -8.802 42.253 -8.769 41.929 -8.841 41.668 -8.813 41.374 -8.764 41.099 -8.676 40.808 -8.703 40.673 -8.703 40.206 -8.857 39.962 -8.940 39.692 -9.071 39.440 -9.242 39.234 -9.379 38.940 -9.445 38.712 -9.368 38.841 -9.071 38.937 -8.934 38.615 -9.198 38.462 -9.060 38.437 -8.786 38.069 -8.835 37.775 -8.802 37.500 -8.819 37.220 -8.901 37.058 -8.841 37.093 -8.434 37.036 -8.060 37.049 -7.736 37.179 -7.407 37.209 -7.033 37.165 -6.824 36.959 -6.516 36.799 -6.335 36.478 -6.236 36.206 -6.027 36.055 -5.714 36.135 -5.412 36.374 -5.209 36.492 -4.885 36.585 -4.560 36.717 -4.275 36.745 -3.918 36.725 -3.555 36.750 -3.203 36.720 -2.841 36.805 -2.522 36.797 -2.143 37.022 -1.896 37.291 -1.736 37.478 -1.467 37.563 -1.126 37.651 -0.808 37.931 -0.714 38.220 -0.577 38.434 -0.363 38.591 -0.044 38.802 0.110 39.052 -0.192 39.327 -0.297 39.602 -0.269 39.854 -0.088 40.085 0.132 40.313 0.363 40.563 0.566 40.714 0.764 41.022 0.989 41.126 1.330 41.212 1.709 41.291 2.077 41.486 2.363 41.629 2.703 41.780 3.027 42.011 3.225 42.297 3.242 42.588 3.110 42.879 3.066 43.118 3.165 43.308 3.495 43.492 3.819 43.549 4.093 43.423 4.527 43.442 4.835 43.429 5.137 43.236 5.456 43.115 5.846 43.099 6.214 43.242 6.610 43.451 6.852 43.632 7.170 43.764 7.505 43.846 7.907 44.030 8.198 44.253 8.445 44.407 8.791 44.338 9.187 44.203 9.527 44.069 9.868 43.909 10.192 43.632 10.286 43.371 10.429 43.093 10.527 42.898 10.676 42.703 10.962 42.445 11.187 42.332 11.538 42.102 11.802 41.923 12.099 41.698 12.330 41.486 12.621 41.338 12.945 41.266 13.247 41.228 13.626 41.052 13.918 40.830 14.143 40.651 14.445 40.591 14.835 40.299 14.962 40.099 15.209 40.033 15.544 39.838 15.775 39.563 15.885 39.302 16.038 39.022 16.126 38.766 16.132 38.577 15.890 38.299 15.769 38.058 15.648 37.923 15.907 38.080 16.154 38.308 16.379 38.527 16.566 38.802 16.626 38.920 16.984 39.080 17.148 39.379 17.093 39.574 16.813 39.750 16.533 40.041 16.626 40.299 16.791 40.489 17.066 40.407 17.319 40.294 17.720 40.115 17.973 39.885 18.137 39.915 18.401 40.209 18.456 40.442 18.225 40.640 17.956 40.783 17.615 40.948 17.308 41.096 16.978 41.203 16.626 41.327 16.286 41.530 15.962 41.849 16.082 41.918 15.637 41.920 15.253 42.025 14.901 42.203 14.615 42.401 14.324 42.621 14.066 42.882 13.912 43.162 13.808 43.434 13.665 43.629 13.434 43.802 13.099 43.970 12.775 44.151 12.473 44.412 12.308 44.703 12.264 44.948 12.412 45.264 12.236 45.497 12.456 45.580 12.830 45.720 13.170 45.712 13.571 45.525 13.632 45.242 13.593 44.997 13.731 44.898 13.995 45.135 14.209 45.294 14.478 45.093 14.808 44.827 14.896 44.566 15.027 44.360 15.313 44.225 15.280 43.901 15.516 43.709 15.835 43.516 16.077 43.505 16.484 43.376 16.874 43.190 17.170 42.995 17.489 42.912 17.549 42.967 17.231 42.797 17.764 42.654 18.099 42.464 18.434 42.374 18.692 42.140 19.022 41.918 19.258 41.720 19.571 41.475 19.467 41.190 19.473 40.912 19.445 40.577 19.390 40.349 19.407 40.104 19.709 39.904 19.951 39.646 20.088 39.429 20.258 39.195 20.527 39.033 20.830 38.934 20.984 38.742 20.863 38.473 21.082 38.379 21.286 38.335 21.599 38.376 22.033 38.371 22.401 38.299 22.720 38.093 22.967 38.151 22.385 38.272 22.060 38.253 21.747 38.135 21.396 37.868 21.203 37.621 21.418 37.374 21.659 37.069 21.615 36.854 21.863 36.934 22.176 36.673 22.357 36.558 22.484 36.739 22.769 36.519 23.011 36.549 23.115 36.830 23.055 37.118 22.940 37.382 22.786 37.522 22.896 37.371 23.198 37.544 23.379 37.758 23.132 37.934 23.137 37.986 23.533 37.816 23.813 37.794 24.038 38.148 24.027 38.335 23.775 38.495 23.467 38.648 23.198 38.783 22.841 38.885 22.714 39.091 22.951 39.299 23.000 39.206 23.192 39.582 22.973 39.838 22.786 40.088 22.588 40.401 22.626 40.525 22.857 40.291 23.137 40.060 23.357 40.019 23.544 40.245 23.527 40.047 23.824 40.074 23.945 40.313 23.852 40.297 24.154 40.588 23.802 40.753 23.896 40.810 24.264 40.909 24.566 40.923 24.918 40.956 25.225 40.865 25.610 40.794 25.995 40.602 26.236 40.629 26.643 40.527 26.676 40.357 26.319 40.176 26.341 40.456 26.725 40.599 27.066 40.775 27.357 40.984 27.604 41.016 27.989 41.047 28.368 41.000 28.670 41.157 29.016 41.338 28.687 41.470 28.341 41.670 28.082 41.940 28.000 42.212 27.824 42.434 27.588 42.629 27.665 42.827 27.890 43.140 27.934 43.374 28.170 43.484 28.527 43.805 28.599 44.099 28.654 44.365 28.703 44.621 28.852 44.846 29.044 44.860 29.544 45.151 29.670 45.434 29.698 45.692 29.731 45.761 29.995 46.036 30.423 46.283 30.659 46.527 30.852 46.618 31.269 46.706 31.571 46.775 31.907 47.027 31.879 47.099 31.857 46.786 31.973 46.588 32.198 46.544 32.396 46.533 31.797 46.495 31.698 46.313 31.951 46.129 32.341 46.115 32.764 46.143 33.192 46.052 33.571 45.871 33.604 45.747 33.198 45.596 32.835 45.382 32.659 45.228 33.143 45.107 33.500 44.832 33.571 44.552 33.505 44.396 33.879 44.514 34.242 44.725 34.516 44.813 34.907 44.923 35.247 45.074 35.566 45.014 36.000 45.099 36.374 45.393 36.451 45.412 35.934 45.321 35.560 45.473 35.231 45.717 35.011 45.986 34.863 46.234 34.945 46.288 35.225 46.536 35.681 46.648 36.082 46.703 36.412 46.739 36.813 46.909 37.247 47.055 37.588 47.074 38.044 47.159 38.423 47.198 38.720 47.173 39.253 46.997 39.082 46.876 38.692 46.717 38.412 46.640 37.945 46.533 37.808 46.357 38.071 46.168 38.423 46.077 38.374 45.962 38.110 45.909 37.956 45.538 37.648 45.332 37.593 45.302 37.159 45.324 36.802 45.121 36.742 44.975 37.176 44.745 37.407 44.659 37.797 44.489 38.099 44.349 38.445 44.231 38.802 44.041 39.104 43.838 39.390 43.621 39.659 43.426 39.951 43.236 40.269 43.104 40.593 42.992 40.956 42.797 41.231 42.607 41.500 42.324 41.599 42.047 41.714 41.755 41.731 41.516 41.516 41.327 41.247 41.195 40.901 41.058 40.560 40.951 40.187 40.986 39.808 41.069 39.434 41.049 39.055 40.964 38.676 40.929 38.313 41.003 37.923 41.082 37.610 41.137 37.225 41.297 36.929 41.308 36.560 41.371 36.242 41.662 36.005 41.651 35.659 41.731 35.297 41.989 35.115 42.003 34.846 41.951 34.467 41.970 34.077 41.986 33.687 41.992 33.297 41.893 32.929 41.802 32.555 41.670 32.231 41.511 31.901 41.368 31.566 41.168 31.324 41.080 30.945 41.135 30.577 41.168 30.209 41.154 29.819 41.201 29.445 41.148 29.104 40.896 29.176 40.777 29.462 40.723 29.687 40.651 29.137 40.459 28.940 40.385 28.544 40.390 28.176 40.426 27.835 40.360 27.407 40.426 27.099 40.363 26.731 40.170 26.440 39.945 26.203 39.659 26.137 39.478 26.236 39.544 26.637 39.456 26.841 39.223 26.725 38.909 26.929 38.635 26.819 38.426 26.830 38.519 26.434 38.236 26.434 38.102 26.868 37.948 27.198 37.659 27.148 37.396 27.286 37.187 27.462 37.000 27.379 37.003 27.758 37.030 28.115 36.948 28.154 36.805 27.918 36.725 27.648 36.703 28.132 36.794 28.533 36.670 28.896 36.538 29.088 36.288 29.280 36.179 29.615 36.203 29.923 36.266 30.291 36.396 30.500 36.679 30.571 36.854 30.764 36.832 31.132 36.745 31.467 36.607 31.791 36.467 32.099 36.236 32.319 36.071 32.604 36.074 32.962 36.135 33.297 36.168 33.643 36.291 33.962 36.519 34.214 36.712 34.489 36.775 34.819 36.643 35.137 36.585 35.484 36.723 35.681 36.841 36.093 36.569 36.115 36.343 35.852 36.052 35.934 35.783 35.835 35.519 35.808 35.234 35.929 34.953 35.890 34.668 35.962 34.440 35.835 34.212 35.654 33.929 35.549 33.668 35.412 33.407 35.269 33.148 35.148 32.863 35.027 32.604 34.912 32.321 34.841 32.044 34.747 31.780 34.615 31.536 34.440 31.324 34.209 31.181 33.918 31.124 33.588 31.107 33.236 31.099 32.973 31.082 32.731 31.132 32.341 30.758 32.330 30.514 32.330 ; #1 1 52.745 -128.143 52.415 -128.269 52.492 -128.066 52.396 -127.923 52.335 -127.621 52.681 -127.077 52.489 -127.170 52.223 -126.824 52.245 -126.995 52.132 -127.462 51.986 -127.709 51.618 -127.698 51.714 -127.049 51.651 -127.286 51.426 -127.637 51.330 -127.335 51.220 -127.571 50.926 -127.247 50.915 -126.923 50.920 -126.434 50.750 -126.115 50.904 -125.626 50.766 -125.665 50.602 -126.110 50.492 -125.912 50.549 -125.511 50.500 -125.110 50.799 -124.901 50.766 -124.852 50.418 -124.973 50.431 -124.549 50.360 -124.588 50.058 -124.714 49.835 -124.533 49.827 -124.082 50.080 -123.923 50.022 -123.857 49.712 -123.758 49.632 -123.857 49.495 -123.874 49.544 -123.352 49.368 -123.044 49.201 -123.126 49.008 -122.907 48.777 -122.637 48.503 -122.560 48.201 -122.434 47.986 -122.280 47.670 -122.368 47.368 -122.401 47.146 -122.868 47.310 -122.747 47.530 -122.582 47.794 -122.549 47.775 -122.681 47.451 -122.995 47.566 -123.005 47.794 -122.780 48.066 -122.813 48.140 -123.187 48.159 -123.626 48.214 -124.055 48.338 -124.555 48.099 -124.676 47.838 -124.505 47.571 -124.341 47.302 -124.236 46.973 -124.038 46.610 -123.940 46.390 -124.033 46.236 -123.495 46.192 -123.797 46.011 -123.934 45.723 -123.923 45.456 -123.918 45.151 -123.967 44.868 -124.027 44.558 -124.038 44.294 -124.093 44.003 -124.121 43.720 -124.148 43.407 -124.253 43.159 -124.401 42.868 -124.500 42.591 -124.407 42.302 -124.396 42.033 -124.247 41.755 -124.170 41.475 -124.060 41.179 -124.110 40.860 -124.137 40.668 -124.269 40.352 -124.335 40.113 -124.115 39.890 -123.885 39.613 -123.764 39.319 -123.769 39.030 -123.687 38.791 -123.527 38.566 -123.286 38.253 -122.951 38.066 -122.918 37.893 -122.615 38.030 -122.418 38.096 -122.027 38.077 -121.637 38.055 -121.676 38.055 -122.060 37.929 -122.319 37.602 -122.126 37.668 -122.368 37.423 -122.412 37.148 -122.313 36.975 -122.022 36.799 -121.786 36.549 -121.896 36.261 -121.786 36.041 -121.538 35.799 -121.346 35.596 -121.115 35.365 -120.868 35.137 -120.687 34.854 -120.621 34.563 -120.549 34.473 -120.231 34.434 -119.885 34.393 -119.544 34.206 -119.231 34.069 -118.967 34.038 -118.626 33.830 -118.396 33.739 -118.148 33.566 -117.830 33.385 -117.566 33.157 -117.357 32.879 -117.264 32.646 -117.176 32.341 -117.038 32.085 -116.863 31.819 -116.670 31.555 -116.626 31.319 -116.423 31.041 -116.302 30.816 -116.104 30.481 -116.000 30.305 -115.841 30.000 -115.775 29.742 -115.632 29.563 -115.379 29.418 -115.093 29.250 -114.819 29.027 -114.599 28.830 -114.379 28.624 -114.159 28.341 -114.126 28.044 -114.159 27.777 -114.143 27.769 -114.269 27.791 -114.533 27.827 -114.918 27.681 -114.901 27.497 -114.648 27.264 -114.451 27.126 -114.181 26.978 -113.901 26.799 -113.604 26.827 -113.242 26.618 -113.049 26.429 -112.786 26.297 -112.505 26.096 -112.308 25.709 -112.115 25.560 -112.071 25.280 -112.082 24.973 -112.126 24.791 -112.005 24.563 -111.747 24.360 -111.473 24.217 -111.242 24.055 -110.984 23.857 -110.758 23.673 -110.516 23.492 -110.286 23.236 -110.143 22.948 -110.033 22.962 -109.764 23.151 -109.516 23.420 -109.429 23.646 -109.615 23.898 -109.775 24.091 -109.940 24.228 -110.275 24.255 -110.538 24.478 -110.709 24.764 -110.692 25.025 -110.780 25.266 -110.940 25.527 -111.082 25.766 -111.275 26.038 -111.341 26.321 -111.418 26.577 -111.522 26.728 -111.764 26.849 -111.934 27.104 -112.055 27.321 -112.258 27.577 -112.434 27.761 -112.676 28.033 -112.764 28.321 -112.857 28.503 -113.066 28.780 -113.242 28.956 -113.473 29.220 -113.637 29.445 -113.841 29.640 -114.088 29.821 -114.341 30.047 -114.555 30.316 -114.643 30.604 -114.665 30.896 -114.731 31.146 -114.863 31.440 -114.857 31.821 -114.901 31.794 -114.714 31.648 -114.423 31.555 -114.055 31.563 -113.791 31.354 -113.571 31.245 -113.225 31.069 -113.071 30.788 -113.093 30.527 -112.956 30.275 -112.813 29.984 -112.725 29.731 -112.577 29.478 -112.407 29.266 -112.253 28.981 -112.121 28.758 -111.901 28.514 -111.709 28.332 -111.451 28.093 -111.258 27.923 -110.951 27.874 -110.659 27.651 -110.593 27.346 -110.495 27.159 -110.258 27.016 -109.945 26.750 -109.786 26.698 -109.489 26.431 -109.236 26.253 -109.214 25.967 -109.412 25.676 -109.313 25.676 -108.973 25.588 -108.984 25.500 -108.885 25.363 -108.659 25.115 -108.236 24.929 -108.104 24.780 -108.011 24.495 -107.698 24.379 -107.610 24.206 -107.357 24.025 -107.110 23.816 -106.896 23.580 -106.720 23.357 -106.511 23.135 -106.335 22.907 -106.088 22.720 -105.885 22.489 -105.720 22.206 -105.643 21.926 -105.599 21.668 -105.445 21.451 -105.236 21.137 -105.242 20.874 -105.440 20.662 -105.324 20.478 -105.544 20.277 -105.610 20.008 -105.500 19.764 -105.324 19.547 -105.121 19.319 -104.912 19.184 -104.670 19.074 -104.374 18.934 -104.115 18.783 -103.863 18.574 -103.654 18.343 -103.462 18.225 -103.181 18.129 -102.896 18.044 -102.610 17.970 -102.319 17.962 -102.022 17.832 -101.758 17.626 -101.544 17.467 -101.297 17.302 -101.049 17.176 -100.780 17.082 -100.495 16.975 -100.214 16.857 -99.918 16.714 -99.676 16.659 -99.374 16.602 -99.082 16.522 -98.791 16.335 -98.549 16.220 -98.198 16.102 -97.967 15.967 -97.725 15.934 -97.423 15.882 -97.132 15.750 -96.857 15.670 -96.560 15.687 -96.264 15.791 -95.989 15.898 -95.709 16.000 -95.423 16.159 -95.170 16.269 -94.907 16.283 -94.698 16.176 -94.451 16.058 -94.104 16.181 -94.286 16.173 -94.115 16.011 -93.879 15.821 -93.637 15.640 -93.407 15.453 -93.181 15.201 -92.863 15.058 -92.753 14.849 -92.549 14.643 -92.346 14.453 -92.121 14.272 -91.890 14.113 -91.643 13.986 -91.379 13.920 -91.093 13.926 -90.791 13.898 -90.500 13.794 -90.225 13.670 -89.956 13.530 -89.714 13.492 -89.407 13.404 -89.126 13.236 -88.659 13.242 -88.516 13.179 -88.313 13.176 -87.967 13.371 -87.764 13.346 -87.489 13.022 -87.346 12.995 -87.560 12.808 -87.533 12.632 -87.346 12.453 -87.137 12.272 -86.890 12.060 -86.703 11.824 -86.538 11.624 -86.330 11.442 -86.104 11.253 -85.885 10.962 -85.786 10.714 -85.692 10.497 -85.764 10.245 -85.835 9.975 -85.698 9.852 -85.451 9.665 -85.176 9.802 -84.951 10.107 -85.187 10.113 -85.033 9.953 -84.786 9.698 -84.648 9.525 -84.478 9.429 -84.192 9.291 -83.934 9.113 -83.709 8.841 -83.610 8.580 -83.670 8.415 -83.385 8.624 -83.385 8.615 -83.203 8.387 -83.104 8.137 -82.929 8.184 -82.852 8.302 -82.632 8.313 -82.363 8.225 -82.126 8.143 -81.791 7.942 -81.632 7.717 -81.484 7.769 -81.143 7.538 -80.962 7.264 -80.857 7.239 -80.555 7.382 -80.308 7.525 -80.055 7.794 -80.198 8.008 -80.401 8.255 -80.390 8.357 -80.110 8.552 -79.841 8.791 -79.720 8.945 -79.511 9.063 -79.115 8.948 -78.984 8.775 -78.714 8.503 -78.462 8.464 -78.214 8.242 -77.907 8.286 -78.165 8.036 -78.368 7.750 -78.291 7.516 -78.148 7.297 -77.956 7.091 -77.736 6.857 -77.637 6.643 -77.434 6.335 -77.401 6.088 -77.412 5.838 -77.280 5.577 -77.434 5.354 -77.385 5.058 -77.368 4.747 -77.308 4.478 -77.335 4.121 -77.346 3.934 -77.198 3.734 -77.148 3.475 -77.308 3.261 -77.462 2.973 -77.654 2.761 -77.747 2.582 -77.918 2.516 -78.187 2.442 -78.484 2.223 -78.648 1.898 -78.626 1.706 -78.951 1.401 -78.846 1.187 -78.995 1.088 -79.264 0.962 -79.593 0.912 -79.813 0.736 -80.055 0.409 -80.027 0.135 -80.060 -0.104 -80.220 -0.313 -80.429 -0.602 -80.401 -0.865 -80.593 -1.019 -80.857 -1.313 -80.791 -1.602 -80.824 -1.896 -80.753 -2.162 -80.890 -2.335 -80.846 -2.481 -80.599 -2.662 -80.324 -2.475 -80.027 -2.437 -79.879 -2.124 -79.857 -2.148 -79.835 -2.448 -79.791 -2.706 -79.786 -2.981 -79.879 -3.231 -80.022 -3.363 -80.280 -3.533 -80.511 -3.709 -80.747 -3.923 -80.934 -4.137 -81.126 -4.371 -81.291 -4.662 -81.319 -4.953 -81.154 -5.220 -81.159 -5.451 -80.962 -5.725 -80.885 -5.890 -81.110 -6.137 -81.038 -6.297 -80.791 -6.431 -80.533 -6.566 -80.275 -6.728 -80.033 -6.956 -79.857 -7.187 -79.687 -7.453 -79.571 -7.712 -79.440 -7.951 -79.280 -8.146 -79.071 -8.398 -78.923 -8.646 -78.775 -8.926 -78.687 -9.184 -78.566 -9.429 -78.429 -9.703 -78.313 -9.973 -78.220 -10.236 -78.115 -10.484 -77.967 -10.728 -77.808 -10.984 -77.676 -11.264 -77.610 -11.462 -77.379 -11.698 -77.209 -11.997 -77.143 -12.220 -76.989 -12.448 -76.797 -12.698 -76.654 -12.945 -76.511 -13.190 -76.363 -13.434 -76.209 -13.753 -76.258 -13.942 -76.324 -14.209 -76.203 -14.445 -76.033 -14.684 -75.874 -14.852 -75.626 -15.058 -75.423 -15.277 -75.220 -15.464 -75.022 -15.599 -74.758 -15.739 -74.495 -15.882 -74.242 -16.030 -73.995 -16.192 -73.742 -16.286 -73.456 -16.418 -73.198 -16.549 -72.918 -16.659 -72.643 -16.777 -72.368 -16.970 -72.148 -17.126 -71.896 -17.253 -71.615 -17.437 -71.407 -17.703 -71.302 -17.879 -71.044 -18.058 -70.808 -18.231 -70.566 -18.440 -70.346 -18.736 -70.341 -19.025 -70.302 -19.310 -70.264 -19.591 -70.192 -19.874 -70.143 -20.165 -70.143 -20.445 -70.181 -20.745 -70.192 -21.027 -70.143 -21.310 -70.077 -21.585 -70.110 -21.874 -70.165 -22.157 -70.214 -22.448 -70.253 -22.731 -70.291 -23.014 -70.407 -23.176 -70.571 -23.464 -70.538 -23.695 -70.440 -23.970 -70.505 -24.264 -70.527 -24.549 -70.566 -24.835 -70.538 -25.113 -70.467 -25.396 -70.500 -25.629 -70.659 -25.920 -70.676 -26.212 -70.659 -26.484 -70.692 -26.769 -70.775 -27.058 -70.857 -27.308 -70.940 -27.602 -70.951 -27.852 -71.099 -28.129 -71.154 -28.415 -71.209 -28.676 -71.330 -28.945 -71.489 -29.228 -71.434 -29.500 -71.319 -29.786 -71.313 -30.058 -71.385 -30.277 -71.582 -30.538 -71.698 -30.830 -71.687 -31.118 -71.654 -31.407 -71.604 -31.698 -71.544 -31.975 -71.516 -32.266 -71.489 -32.536 -71.445 -32.810 -71.522 -33.080 -71.676 -33.365 -71.687 -33.651 -71.670 -33.898 -71.857 -34.168 -71.989 -34.448 -72.033 -34.736 -72.099 -35.011 -72.203 -35.253 -72.385 -35.505 -72.560 -35.783 -72.626 -36.041 -72.791 -36.330 -72.852 -36.621 -73.022 -36.816 -73.154 -37.126 -73.214 -37.225 -73.555 -37.489 -73.637 -37.769 -73.615 -38.038 -73.478 -38.330 -73.516 -38.662 -73.467 -38.887 -73.368 -39.179 -73.247 -39.451 -73.253 -39.725 -73.374 -39.918 -73.549 -40.192 -73.714 -40.484 -73.775 -40.764 -73.890 -41.036 -73.967 -41.330 -73.879 -41.563 -73.692 -41.681 -73.632 -41.780 -73.308 -41.602 -73.060 -41.563 -72.780 -41.544 -72.396 -41.679 -72.434 -41.865 -72.791 -42.044 -72.549 -42.313 -72.451 -42.283 -72.637 -42.453 -72.676 -42.569 -72.758 -42.860 -72.808 -43.091 -72.852 -43.368 -73.066 -43.692 -72.934 -43.874 -73.044 -44.165 -73.170 -44.409 -72.769 -44.505 -72.643 -44.761 -72.797 -44.929 -73.137 -45.107 -73.374 -45.363 -73.093 -45.379 -73.330 -45.665 -73.429 -45.876 -73.571 -46.184 -73.654 -46.126 -73.495 -46.201 -73.500 -46.486 -73.802 -46.272 -73.918 -46.236 -74.302 -46.135 -74.148 -45.915 -74.143 -45.887 -74.500 -46.082 -74.764 -46.261 -75.033 -46.420 -75.324 -46.764 -75.538 -46.681 -75.484 -46.552 -75.088 -46.624 -75.016 -46.821 -74.637 -46.816 -74.286 -47.157 -74.066 -47.324 -74.385 -47.615 -74.231 -47.635 -74.505 -47.764 -74.505 -47.802 -74.110 -47.665 -73.758 -47.736 -73.665 -47.942 -73.429 -47.959 -73.478 -48.124 -73.445 -48.093 -73.758 -48.088 -74.181 -48.036 -74.440 -48.115 -74.484 -48.357 -74.115 -48.604 -74.192 -48.799 -74.341 -49.082 -74.418 -49.415 -74.335 -49.157 -74.038 -49.338 -74.016 -49.640 -73.830 -49.604 -73.962 -49.701 -74.225 -49.909 -74.077 -50.115 -74.104 -50.126 -74.467 -50.283 -74.473 -50.473 -74.132 -50.739 -74.093 -50.580 -73.687 -50.742 -73.720 -50.951 -74.060 -51.187 -73.868 -51.464 -73.731 -51.690 -73.687 -51.970 -73.484 -51.808 -73.335 -51.953 -73.258 -51.788 -73.110 -51.766 -72.786 -51.538 -73.022 -51.580 -72.786 -51.857 -72.533 -52.099 -72.582 -52.398 -72.654 -52.316 -72.654 -52.041 -72.692 -52.110 -72.857 -52.168 -73.060 -52.132 -73.555 -52.253 -73.621 -52.585 -73.593 -52.549 -73.192 -52.602 -73.137 -52.863 -73.352 -53.063 -73.203 -52.901 -72.962 -52.632 -72.830 -52.560 -72.445 -52.585 -71.764 -52.668 -72.066 -52.799 -72.571 -52.901 -72.907 -53.195 -72.912 -53.431 -72.632 -53.184 -72.407 -53.077 -72.198 -52.962 -71.797 -52.802 -71.368 -52.973 -71.220 -53.170 -71.560 -53.456 -71.841 -53.385 -71.830 -53.327 -72.093 -53.415 -72.390 -53.668 -72.077 -53.794 -71.681 -53.843 -71.187 -53.607 -70.956 -53.319 -70.967 -53.025 -70.852 -52.739 -70.709 -52.640 -70.297 -52.519 -69.857 -52.374 -69.516 -52.234 -69.170 -52.302 -68.566 -52.038 -68.665 -51.777 -68.874 -51.621 -69.313 -51.577 -69.165 -51.407 -69.016 -51.077 -69.209 -50.942 -69.231 -50.662 -69.121 -50.401 -68.940 -50.195 -68.527 -50.003 -68.764 -49.887 -68.698 -49.865 -68.588 -50.085 -68.297 -49.970 -67.885 -49.706 -67.731 -49.365 -67.698 -49.146 -67.632 -48.904 -67.396 -48.687 -67.115 -48.516 -66.769 -48.343 -66.407 -48.140 -66.066 -47.887 -66.049 -47.747 -65.951 -47.500 -65.758 -47.212 -65.797 -47.082 -66.126 -47.052 -66.549 -46.909 -66.901 -46.703 -67.187 -46.492 -67.473 -46.217 -67.599 -45.945 -67.527 -45.695 -67.335 -45.445 -67.121 -45.236 -66.852 -45.124 -66.500 -44.989 -66.104 -44.995 -65.698 -44.761 -65.654 -44.508 -65.379 -44.242 -65.275 -43.964 -65.253 -43.676 -65.302 -43.423 -65.099 -43.201 -64.857 -43.049 -64.445 -42.937 -64.555 -42.734 -64.896 -42.527 -64.571 -42.648 -64.258 -42.857 -64.049 -42.761 -63.670 -42.478 -63.588 -42.192 -63.681 -42.212 -64.110 -42.412 -64.187 -42.343 -64.538 -42.184 -64.846 -41.953 -65.049 -41.668 -65.011 -41.390 -65.071 -41.107 -65.159 -40.805 -65.033 -40.791 -64.813 -40.909 -64.451 -41.025 -64.093 -41.151 -63.758 -41.157 -63.368 -41.124 -62.995 -41.003 -62.648 -40.758 -62.297 -40.547 -62.335 -40.247 -62.418 -39.959 -62.330 -39.772 -62.148 -39.398 -62.132 -39.223 -62.286 -38.893 -62.302 -38.940 -61.989 -38.997 -61.610 -38.992 -61.236 -38.973 -60.874 -38.929 -60.500 -38.876 -60.137 -38.824 -59.769 -38.750 -59.412 -38.684 -59.049 -38.588 -58.703 -38.495 -58.352 -38.371 -58.022 -38.223 -57.714 -37.992 -57.527 -37.731 -57.385 -37.514 -57.143 -37.264 -56.956 -37.019 -56.764 -36.750 -56.670 -36.420 -56.720 -36.327 -56.989 -36.129 -57.269 -35.854 -57.374 -35.591 -57.231 -35.338 -57.187 -35.113 -57.412 -34.942 -57.692 -34.802 -58.000 -34.657 -58.308 -34.423 -58.495 -34.203 -58.434 -33.923 -58.456 -33.643 -58.538 -33.354 -58.467 -33.107 -58.324 -32.904 -58.159 -32.591 -58.209 -32.624 -58.154 -32.907 -58.082 -33.126 -58.258 -33.376 -58.385 -33.657 -58.434 -33.937 -58.368 -34.162 -58.148 -34.382 -57.912 -34.462 -57.643 -34.448 -57.297 -34.566 -57.000 -34.720 -56.714 -34.835 -56.390 -34.890 -56.077 -34.791 -55.720 -34.838 -55.363 -34.923 -55.022 -34.868 -54.698 -34.668 -54.324 -34.596 -54.093 -34.390 -53.824 -34.146 -53.637 -33.893 -53.489 -33.673 -53.275 -33.478 -53.022 -33.275 -52.775 -33.036 -52.588 -32.766 -52.462 -32.492 -52.363 -32.187 -52.165 -31.986 -52.187 -31.654 -52.093 -31.420 -51.967 -31.245 -51.714 -31.033 -51.495 -30.747 -51.330 -30.473 -51.225 -30.203 -51.242 -30.239 -51.121 -30.343 -50.725 -30.549 -50.687 -30.813 -50.786 -31.041 -51.005 -31.247 -51.165 -31.492 -51.330 -31.654 -51.538 -31.945 -51.967 -31.887 -51.780 -31.734 -51.495 -31.544 -51.236 -31.338 -51.000 -31.118 -50.786 -30.876 -50.599 -30.632 -50.429 -30.376 -50.269 -30.104 -50.165 -29.832 -50.038 -29.574 -49.890 -29.332 -49.714 -29.099 -49.516 -28.893 -49.291 -28.714 -49.038 -28.467 -48.813 -28.250 -48.665 -27.959 -48.599 -27.676 -48.610 -27.390 -48.599 -27.135 -48.555 -26.808 -48.626 -26.525 -48.648 -26.212 -48.720 -25.890 -48.626 -25.668 -48.451 -25.492 -48.615 -25.382 -48.489 -25.332 -48.253 -25.148 -47.978 -24.986 -47.923 -24.775 -47.648 -24.643 -47.374 -24.467 -47.099 -24.264 -46.901 -24.110 -46.626 -23.951 -46.297 -23.835 -46.071 -23.777 -45.764 -23.755 -45.451 -23.549 -45.209 -23.412 -44.967 -23.343 -44.643 -23.217 -44.643 -23.014 -44.522 -22.997 -44.264 -23.003 -43.863 -23.049 -43.615 -22.997 -43.280 -22.783 -43.187 -22.865 -43.066 -22.970 -42.808 -22.942 -42.500 -22.951 -42.121 -22.766 -41.951 -22.492 -41.901 -22.294 -41.670 -22.184 -41.379 -22.069 -41.093 -21.843 -40.995 -21.552 -41.033 -21.272 -40.956 -21.008 -40.824 -20.802 -40.637 -20.596 -40.423 -20.305 -40.302 -20.055 -40.159 -19.808 -40.033 -19.607 -39.813 -19.335 -39.703 -19.047 -39.725 -18.755 -39.742 -18.473 -39.709 -18.195 -39.615 -17.959 -39.434 -17.761 -39.203 -17.481 -39.192 -17.190 -39.198 -16.909 -39.143 -16.624 -39.088 -16.341 -39.016 -16.066 -38.934 -15.780 -38.896 -15.495 -38.962 -15.206 -39.000 -14.901 -39.022 -14.632 -39.049 -14.341 -39.000 -14.041 -38.989 -13.786 -39.044 -13.533 -39.055 -13.261 -38.929 -12.852 -38.835 -12.690 -38.692 -12.907 -38.489 -12.868 -38.258 -12.648 -38.066 -12.409 -37.907 -12.173 -37.736 -11.920 -37.593 -11.580 -37.445 -11.332 -37.363 -11.115 -37.192 -10.934 -37.016 -10.720 -36.824 -10.563 -36.571 -10.404 -36.341 -10.176 -36.165 -9.964 -35.973 -9.687 -35.830 -9.522 -35.588 -9.305 -35.401 -9.066 -35.231 -8.805 -35.115 -8.536 -35.011 -8.261 -34.929 -7.989 -34.857 -7.668 -34.863 -7.453 -34.824 -7.096 -34.852 -6.868 -34.901 -6.582 -34.962 -6.266 -35.066 -6.030 -35.115 -5.750 -35.187 -5.475 -35.280 -5.225 -35.429 -5.102 -35.687 -5.066 -35.978 -5.099 -36.269 -5.096 -36.560 -5.011 -36.824 -4.920 -37.099 -4.734 -37.313 -4.613 -37.571 -4.423 -37.791 -4.242 -38.016 -4.025 -38.214 -3.797 -38.423 -3.665 -38.654 -3.495 -38.890 -3.335 -39.126 -3.192 -39.379 -3.052 -39.648 -2.912 -39.890 -2.832 -40.154 -2.808 -40.451 -2.852 -40.742 -2.885 -41.033 -2.937 -41.302 -2.885 -41.599 -2.772 -41.896 -2.808 -42.170 -2.728 -42.451 -2.596 -42.698 -2.478 -42.956 -2.390 -43.242 -2.481 -43.505 -2.547 -43.775 -2.755 -44.165 -2.514 -44.077 -2.505 -44.264 -2.690 -44.374 -2.973 -44.467 -3.206 -44.698 -3.137 -44.703 -2.868 -44.665 -2.582 -44.588 -2.316 -44.451 -2.319 -44.676 -2.209 -44.659 -1.948 -44.549 -1.731 -44.747 -1.538 -44.956 -1.602 -45.275 -1.404 -45.445 -1.269 -45.692 -1.203 -45.907 -1.085 -46.154 -1.044 -46.379 -0.923 -46.670 -0.802 -46.923 -0.692 -47.192 -0.687 -47.451 -0.695 -47.758 -0.750 -48.055 -1.038 -48.225 -1.247 -48.346 -1.514 -48.440 -1.519 -48.643 -1.703 -48.879 -1.871 -49.099 -2.077 -49.286 -2.343 -49.401 -2.615 -49.560 -2.530 -49.577 -2.250 -49.484 -1.904 -49.500 -1.967 -49.824 -1.857 -50.071 -1.984 -50.374 -1.841 -50.615 -1.607 -50.714 -1.343 -50.819 -1.080 -50.868 -0.964 -50.973 -1.157 -51.203 -1.299 -51.429 -1.440 -51.709 -1.585 -51.962 -1.615 -52.242 -1.577 -52.582 -1.500 -52.527 -1.382 -52.258 -1.332 -51.978 -1.093 -51.802 -0.838 -51.709 -0.577 -51.560 -0.371 -51.396 -0.107 -51.258 0.060 -51.016 0.214 -50.775 0.429 -50.577 0.673 -50.418 0.885 -50.220 1.071 -50.005 1.310 -49.896 1.593 -49.934 1.766 -50.154 1.838 -50.440 2.096 -50.687 2.343 -50.725 2.593 -50.824 2.876 -50.923 3.157 -51.022 3.442 -51.066 3.769 -51.126 4.011 -51.187 4.283 -51.445 4.063 -51.478 4.102 -51.571 4.294 -51.687 4.492 -51.901 4.703 -52.055 4.854 -52.302 5.055 -52.511 5.247 -52.736 5.440 -52.956 5.516 -53.236 5.596 -53.516 5.731 -53.786 5.514 -54.055 5.657 -54.033 5.854 -54.148 5.915 -54.434 5.967 -54.720 5.986 -55.033 5.885 -55.000 5.857 -55.038 5.929 -55.286 5.973 -55.577 5.830 -55.874 5.832 -56.088 5.915 -56.368 5.956 -56.654 5.973 -56.956 5.643 -57.165 5.780 -57.165 6.060 -57.170 6.286 -57.396 6.404 -57.588 6.604 -57.797 6.791 -58.033 6.865 -58.319 6.549 -58.582 6.725 -58.604 7.000 -58.511 7.288 -58.478 7.555 -58.648 7.745 -58.830 7.945 -59.038 8.118 -59.264 8.266 -59.588 8.354 -59.797 8.541 -60.022 8.618 -60.313 8.558 -60.582 8.571 -60.890 8.462 -61.110 8.533 -61.500 8.599 -61.324 8.775 -61.154 9.085 -61.038 9.277 -60.857 9.500 -60.940 9.593 -61.203 9.808 -61.516 9.736 -61.769 9.865 -62.121 9.854 -62.297 10.107 -62.484 10.074 -62.824 10.157 -62.687 10.401 -62.907 10.552 -62.769 10.544 -62.473 10.668 -62.044 10.701 -62.247 10.734 -62.544 10.723 -62.835 10.709 -63.137 10.665 -63.418 10.659 -63.736 10.610 -64.143 10.522 -63.868 10.456 -64.038 10.363 -64.352 10.236 -64.571 10.126 -64.791 10.071 -65.110 10.137 -65.390 10.242 -65.742 10.319 -65.923 10.547 -66.110 10.626 -66.368 10.624 -66.670 10.604 -66.962 10.552 -67.253 10.522 -67.544 10.478 -67.846 10.514 -68.137 10.758 -68.297 10.967 -68.319 11.223 -68.484 11.382 -68.747 11.459 -69.033 11.508 -69.319 11.511 -69.621 11.750 -69.786 12.033 -69.852 12.154 -70.071 11.951 -70.258 11.690 -70.192 11.593 -69.841 11.492 -70.049 11.365 -70.247 11.264 -70.522 11.206 -70.819 11.082 -71.082 10.948 -71.396 10.725 -71.522 10.437 -71.467 10.190 -71.313 9.942 -71.148 9.679 -71.060 9.374 -71.093 9.148 -71.280 9.055 -71.555 9.220 -71.753 9.431 -71.874 9.582 -71.995 9.879 -72.071 10.135 -71.918 10.365 -71.736 10.607 -71.604 10.931 -71.692 11.115 -71.764 11.354 -71.923 11.607 -71.885 11.698 -71.582 11.830 -71.341 12.069 -71.154 12.332 -71.291 12.426 -71.643 12.280 -71.885 12.192 -72.115 11.920 -72.253 11.777 -72.505 11.668 -72.780 11.500 -73.022 11.330 -73.258 11.272 -73.544 11.288 -73.841 11.316 -74.126 11.060 -74.247 10.802 -74.478 10.934 -74.451 10.995 -74.467 11.085 -74.764 10.978 -74.995 10.775 -75.231 10.555 -75.473 10.277 -75.588 10.058 -75.582 9.750 -75.648 9.456 -75.709 9.396 -75.956 9.212 -76.159 8.964 -76.324 8.786 -76.555 8.585 -76.841 8.313 -76.769 8.008 -76.764 8.080 -76.890 8.294 -77.038 8.508 -77.253 8.698 -77.467 8.876 -77.681 9.093 -77.879 9.253 -78.126 9.357 -78.401 9.426 -78.676 9.475 -78.989 9.544 -79.236 9.580 -79.549 9.407 -79.797 9.288 -80.011 9.157 -80.291 9.069 -80.571 8.915 -80.819 8.808 -81.088 8.786 -81.379 9.036 -81.780 8.945 -81.929 9.066 -82.203 9.258 -82.313 9.500 -82.478 9.662 -82.731 9.852 -82.934 10.052 -83.121 10.280 -83.319 10.522 -83.478 10.780 -83.599 11.000 -83.747 11.283 -83.857 11.536 -83.736 11.799 -83.731 12.060 -83.731 12.305 -83.676 12.651 -83.643 12.508 -83.604 12.492 -83.516 12.813 -83.516 13.096 -83.544 13.385 -83.555 13.668 -83.500 13.945 -83.423 14.187 -83.258 14.453 -83.214 14.747 -83.335 14.879 -83.275 15.074 -83.258 15.269 -83.560 15.299 -83.852 15.451 -84.005 15.640 -84.055 15.830 -84.407 15.827 -84.588 15.959 -84.879 15.923 -85.165 15.901 -85.462 15.975 -85.736 15.956 -85.989 15.810 -86.302 15.794 -86.593 15.772 -86.890 15.810 -87.192 15.849 -87.522 15.887 -87.813 15.745 -88.060 15.786 -88.319 15.832 -88.582 15.956 -88.857 16.234 -88.659 16.500 -88.401 16.643 -88.319 16.918 -88.247 17.198 -88.286 17.500 -88.242 17.772 -88.220 18.044 -88.121 18.321 -88.170 18.420 -88.319 18.734 -88.148 18.593 -88.038 18.321 -87.896 18.368 -87.791 18.648 -87.714 18.934 -87.621 19.255 -87.577 19.541 -87.555 19.824 -87.516 19.981 -87.456 20.258 -87.396 20.495 -87.220 20.701 -87.000 20.948 -86.841 21.209 -86.797 21.467 -86.907 21.541 -87.236 21.473 -87.451 21.527 -87.742 21.591 -88.110 21.563 -88.363 21.486 -88.659 21.396 -88.945 21.346 -89.253 21.310 -89.560 21.253 -89.863 21.132 -90.143 20.901 -90.374 20.668 -90.456 20.379 -90.484 20.085 -90.484 19.843 -90.588 19.591 -90.709 19.313 -90.786 19.115 -91.016 18.904 -91.346 18.698 -91.297 18.489 -91.484 18.486 -91.835 18.621 -91.973 18.684 -92.286 18.566 -92.632 18.492 -92.846 18.409 -93.137 18.385 -93.626 18.302 -93.758 18.247 -94.022 18.170 -94.313 18.225 -94.588 18.464 -94.780 18.602 -95.044 18.706 -95.313 18.725 -95.643 18.810 -95.857 19.091 -96.044 19.305 -96.242 19.563 -96.357 19.849 -96.456 20.085 -96.632 20.305 -96.830 20.522 -97.033 20.764 -97.192 21.027 -97.319 21.294 -97.440 21.536 -97.577 21.920 -97.725 21.830 -97.626 21.464 -97.418 21.635 -97.401 21.852 -97.615 22.110 -97.753 22.396 -97.819 22.668 -97.846 22.937 -97.753 23.258 -97.764 23.624 -97.742 23.821 -97.747 24.126 -97.709 24.418 -97.670 24.701 -97.604 24.981 -97.527 25.250 -97.407 25.508 -97.258 25.786 -97.165 26.044 -97.214 26.316 -97.363 26.563 -97.445 26.865 -97.527 27.121 -97.473 27.319 -97.676 27.338 -97.544 27.495 -97.346 27.777 -97.385 27.857 -97.297 28.055 -97.110 28.187 -96.929 28.404 -96.659 28.635 -96.500 28.613 -96.176 28.643 -95.901 28.739 -95.720 28.865 -95.423 29.091 -95.176 29.332 -94.934 29.582 -94.995 29.723 -94.863 29.580 -94.665 29.464 -94.665 29.442 -94.643 29.571 -94.341 29.673 -94.000 29.871 -93.901 29.805 -93.791 29.775 -93.418 29.750 -93.093 29.640 -92.786 29.563 -92.467 29.657 -92.137 29.783 -91.901 29.662 -91.621 29.541 -91.346 29.363 -91.214 29.223 -91.132 29.148 -90.830 29.261 -90.538 29.190 -90.236 29.423 -90.093 29.407 -89.824 29.264 -89.560 29.063 -89.308 29.168 -89.082 29.363 -89.324 29.508 -89.621 29.703 -89.560 29.918 -89.390 29.995 -89.516 30.055 -89.736 30.082 -89.967 30.102 -90.335 30.338 -90.236 30.275 -89.923 30.181 -89.610 30.310 -89.319 30.398 -88.962 30.368 -88.676 30.365 -88.341 30.555 -88.038 30.324 -87.879 30.236 -87.797 30.349 -87.467 30.448 -87.209 30.464 -87.038 30.418 -86.714 30.434 -86.324 30.302 -86.088 30.176 -85.648 30.005 -85.527 29.766 -85.346 29.742 -84.967 29.819 -84.692 29.967 -84.396 30.088 -84.132 29.984 -83.808 29.783 -83.571 29.558 -83.379 29.332 -83.159 29.159 -82.896 28.948 -82.703 28.703 -82.648 28.382 -82.698 28.115 -82.780 27.827 -82.802 27.852 -82.676 27.854 -82.478 27.533 -82.626 27.321 -82.560 27.038 -82.429 26.909 -82.165 26.646 -81.956 26.462 -81.912 26.162 -81.802 25.937 -81.654 25.780 -81.357 25.533 -81.203 25.261 -81.066 25.148 -80.874 25.203 -80.527 25.346 -80.363 25.626 -80.286 25.863 -80.137 26.162 -80.099 26.464 -80.055 26.745 -80.038 27.014 -80.104 27.247 -80.247 27.560 -80.352 27.830 -80.467 28.091 -80.599 28.360 -80.725 28.654 -80.813 28.654 -80.725 28.431 -80.604 28.154 -80.577 28.033 -80.538 28.445 -80.571 28.709 -80.670 28.967 -80.846 29.217 -80.995 29.484 -81.121 29.758 -81.236 30.030 -81.319 30.316 -81.390 30.593 -81.462 30.945 -81.489 31.148 -81.401 31.415 -81.313 31.665 -81.192 31.887 -81.016 32.137 -80.797 32.393 -80.797 32.382 -80.692 32.429 -80.533 32.541 -80.280 32.728 -79.945 32.863 -79.676 33.044 -79.429 33.272 -79.231 33.505 -79.055 33.725 -78.824 33.882 -78.516 33.907 -78.181 34.044 -77.929 34.275 -77.764 34.500 -77.478 34.657 -77.319 34.714 -76.989 34.876 -76.505 35.014 -76.868 35.033 -76.698 35.242 -76.577 35.442 -76.918 35.462 -76.879 35.442 -76.511 35.382 -76.159 35.569 -75.874 35.824 -75.769 35.788 -75.989 35.863 -76.060 35.959 -76.297 36.052 -76.571 36.107 -76.687 36.173 -76.253 36.201 -75.934 36.327 -75.901 36.549 -75.973 36.547 -75.879 36.269 -75.791 35.942 -75.637 36.011 -75.643 36.277 -75.775 36.558 -75.863 36.846 -75.989 36.904 -76.363 37.085 -76.637 37.275 -77.060 37.264 -76.890 37.093 -76.440 37.363 -76.615 37.341 -76.423 37.495 -76.302 37.679 -76.549 38.033 -76.934 37.907 -76.764 37.692 -76.451 37.860 -76.297 38.077 -76.566 38.231 -76.918 38.387 -77.225 38.725 -77.115 38.500 -77.143 38.321 -76.857 38.148 -76.451 38.434 -76.538 38.602 -76.505 38.931 -76.505 39.140 -76.489 39.330 -76.357 39.508 -75.984 39.387 -75.978 39.126 -76.176 38.860 -76.247 38.679 -76.132 38.514 -76.214 38.316 -76.005 38.181 -75.857 37.951 -75.758 37.695 -75.830 37.310 -75.940 37.459 -75.758 37.651 -75.571 37.920 -75.429 38.181 -75.247 38.437 -75.082 38.679 -75.121 38.975 -75.313 39.253 -75.423 39.530 -75.566 39.761 -75.418 39.876 -75.236 39.503 -75.505 39.272 -75.242 39.063 -74.890 39.272 -74.588 39.470 -74.390 39.854 -74.121 39.953 -74.044 40.234 -73.984 40.448 -74.104 40.679 -74.121 41.096 -73.929 40.854 -73.940 40.868 -73.802 41.044 -73.516 41.170 -73.154 41.266 -72.819 41.297 -72.396 41.324 -72.033 41.357 -71.632 41.659 -71.379 41.604 -71.110 41.640 -70.703 41.621 -70.335 41.799 -70.082 41.907 -70.049 41.772 -70.412 42.027 -70.637 42.313 -70.923 42.585 -70.742 42.799 -70.802 43.099 -70.681 43.371 -70.456 43.604 -70.258 43.810 -69.951 43.901 -69.813 43.920 -69.654 44.000 -69.297 44.173 -69.049 44.462 -68.879 44.382 -68.698 44.451 -68.418 44.459 -68.049 44.563 -67.731 44.662 -67.374 44.863 -67.082 45.115 -67.126 45.140 -66.989 45.096 -66.621 45.269 -66.165 45.247 -65.912 45.352 -65.527 45.503 -65.176 45.646 -64.802 45.940 -64.665 45.843 -64.500 45.764 -64.357 45.431 -64.780 45.390 -64.489 45.393 -64.077 45.368 -63.582 45.308 -63.692 45.121 -64.110 45.223 -64.363 45.184 -64.703 45.041 -65.060 44.786 -65.533 44.665 -65.692 44.505 -66.022 44.250 -66.143 43.978 -66.170 43.766 -65.989 43.563 -65.681 43.648 -65.335 43.777 -65.005 43.975 -64.731 44.214 -64.456 44.382 -64.291 44.574 -64.082 44.508 -63.802 44.615 -63.511 44.720 -63.110 44.786 -62.692 44.898 -62.368 45.025 -61.956 45.129 -61.626 45.247 -61.148 45.404 -61.308 45.635 -61.538 45.753 -61.879 45.783 -62.110 45.657 -62.484 45.717 -62.764 45.788 -63.291 45.863 -63.659 46.058 -63.929 46.198 -64.198 46.327 -64.588 46.632 -64.753 46.879 -64.863 47.102 -65.110 47.407 -64.923 47.701 -64.786 47.813 -65.038 47.695 -65.495 47.810 -65.736 47.953 -66.088 48.022 -66.588 48.077 -66.500 48.137 -66.088 48.102 -65.714 48.027 -65.302 48.170 -64.901 48.357 -64.588 48.549 -64.247 48.824 -64.352 49.063 -64.505 49.195 -64.901 49.247 -65.335 49.236 -65.775 49.198 -66.214 49.110 -66.626 48.986 -67.027 48.876 -67.440 48.750 -67.830 48.618 -68.220 48.453 -68.577 48.294 -68.934 48.085 -69.247 47.876 -69.538 47.640 -69.786 47.420 -70.055 47.190 -70.308 46.986 -70.610 46.830 -71.104 46.956 -71.038 47.137 -70.714 47.396 -70.473 47.591 -70.170 47.824 -69.907 48.104 -69.819 48.269 -70.181 48.393 -70.797 48.385 -70.577 48.297 -70.159 48.192 -69.736 48.371 -69.385 48.618 -69.159 48.841 -68.896 49.063 -68.500 49.184 -68.198 49.297 -67.797 49.376 -67.368 49.646 -67.203 49.887 -67.022 50.121 -66.621 50.220 -66.319 50.258 -65.907 50.297 -65.418 50.283 -64.967 50.294 -64.516 50.288 -64.066 50.269 -63.615 50.266 -63.181 50.288 -62.742 50.261 -62.319 50.165 -61.769 50.157 -61.473 50.217 -60.989 50.231 -60.571 50.253 -60.154 50.390 -59.797 50.607 -59.451 50.802 -59.093 51.030 -58.879 51.245 -58.549 51.319 -58.115 51.442 -57.648 51.453 -57.209 51.516 -56.824 51.714 -56.462 51.865 -56.082 52.121 -55.769 52.385 -55.863 52.552 -56.258 52.615 -56.005 52.854 -55.978 53.069 -55.951 53.308 -55.874 53.552 -56.159 53.706 -56.599 53.585 -57.258 53.810 -57.170 54.060 -57.324 54.190 -57.676 54.206 -58.209 54.104 -58.055 54.069 -58.165 53.981 -58.643 53.791 -59.005 53.640 -59.335 53.495 -59.808 53.305 -60.170 53.382 -60.231 53.695 -60.626 53.651 -60.176 53.813 -59.797 53.885 -59.319 54.085 -58.703 54.049 -59.242 54.121 -58.962 54.209 -58.500 54.338 -58.110 54.497 -57.527 54.695 -57.835 54.769 -58.319 54.860 -58.797 55.099 -59.159 54.904 -59.692 55.066 -59.560 55.198 -59.791 55.162 -60.335 55.440 -60.363 55.698 -60.538 55.830 -60.956 56.041 -61.357 56.264 -61.764 56.519 -61.951 56.780 -62.313 56.714 -62.203 56.720 -61.791 57.005 -61.434 57.228 -61.791 57.451 -62.253 57.596 -62.038 57.890 -62.192 58.036 -62.473 58.077 -62.984 58.168 -62.846 58.365 -62.742 58.401 -63.275 58.473 -63.368 58.745 -62.984 58.970 -63.236 59.030 -63.670 59.170 -63.648 59.385 -63.841 59.599 -63.984 59.912 -64.220 60.005 -64.478 60.082 -64.571 60.269 -64.610 60.107 -65.011 59.843 -65.203 59.511 -65.291 59.332 -65.516 59.115 -65.582 59.011 -65.632 58.860 -65.945 58.500 -65.967 58.599 -66.016 58.750 -66.423 58.489 -66.802 58.335 -67.247 58.071 -67.648 58.242 -67.835 58.459 -67.951 58.382 -68.192 58.107 -68.363 57.887 -69.060 57.981 -68.824 58.135 -68.385 58.445 -68.236 58.701 -68.357 58.885 -68.764 58.860 -69.302 58.712 -69.896 58.901 -69.797 59.019 -69.462 59.280 -69.462 59.558 -69.643 59.838 -69.648 59.962 -70.077 60.016 -70.742 60.016 -70.632 60.008 -70.082 60.121 -69.687 60.434 -69.753 60.703 -69.593 60.962 -69.445 60.898 -69.846 61.041 -70.330 61.088 -70.907 61.192 -71.489 61.442 -71.736 61.635 -71.984 61.841 -72.374 61.981 -72.687 62.195 -73.038 62.398 -73.522 62.374 -74.049 62.195 -74.643 62.277 -75.187 62.255 -75.769 62.420 -76.385 62.525 -76.967 62.533 -77.549 62.332 -78.055 62.047 -78.126 61.755 -77.956 61.519 -77.643 61.220 -77.747 60.967 -77.995 60.777 -77.813 60.505 -77.626 60.192 -77.544 59.981 -77.341 59.673 -77.527 59.445 -77.797 59.228 -77.995 58.986 -78.352 58.742 -78.522 58.555 -78.330 58.357 -77.896 58.173 -77.451 57.956 -77.093 57.701 -76.852 57.426 -76.681 57.143 -76.560 56.852 -76.522 56.563 -76.522 56.277 -76.566 56.005 -76.742 55.745 -77.077 55.536 -77.335 55.330 -77.709 55.151 -78.104 54.995 -78.522 54.865 -78.973 54.706 -79.566 54.511 -79.538 54.220 -79.286 54.014 -79.099 53.734 -79.027 53.478 -79.005 53.148 -78.934 52.879 -78.802 52.599 -78.703 52.316 -78.505 52.063 -78.654 51.830 -78.923 51.398 -78.868 51.527 -79.159 51.560 -79.467 51.313 -79.692 50.907 -79.484 51.038 -79.648 51.234 -79.984 51.297 -80.429 51.091 -80.852 51.146 -80.835 51.376 -80.505 51.659 -80.588 51.890 -80.857 52.063 -81.198 52.217 -81.681 52.357 -81.615 52.646 -81.846 52.882 -82.132 53.140 -82.253 53.404 -82.154 53.687 -82.176 53.973 -82.203 54.223 -82.401 54.522 -82.352 54.813 -82.236 55.099 -82.363 55.170 -82.874 55.225 -83.473 55.250 -83.736 55.283 -84.242 55.261 -84.747 55.137 -85.286 55.275 -85.236 55.508 -85.522 55.673 -85.929 55.777 -86.407 55.898 -86.885 55.997 -87.423 56.179 -87.703 56.423 -88.005 56.599 -88.429 56.799 -88.835 56.898 -89.313 56.981 -89.824 57.129 -90.297 57.239 -90.775 57.212 -91.291 57.102 -91.780 56.992 -92.478 57.245 -92.456 57.522 -92.516 57.797 -92.714 58.077 -92.835 58.346 -93.011 58.668 -93.203 58.764 -93.698 58.670 -94.170 58.354 -94.280 58.371 -94.319 58.665 -94.253 58.805 -94.489 59.036 -94.813 59.316 -94.736 59.599 -94.786 59.901 -94.791 60.176 -94.703 60.486 -94.648 60.742 -94.412 61.022 -94.137 61.291 -93.984 61.549 -93.813 61.799 -93.440 61.989 -93.253 62.220 -92.989 62.247 -92.725 62.456 -92.632 62.569 -92.203 62.706 -92.253 62.835 -92.121 62.819 -91.445 62.962 -90.863 63.192 -90.692 63.415 -90.923 63.563 -91.484 63.629 -92.209 63.797 -92.615 63.879 -93.319 64.036 -93.665 64.049 -93.456 63.896 -92.868 63.783 -92.165 63.720 -91.593 63.602 -91.033 63.640 -90.451 63.896 -90.055 64.110 -89.918 64.044 -89.423 64.005 -88.874 64.104 -88.297 64.316 -87.940 64.582 -87.626 64.805 -87.319 65.099 -87.016 65.272 -87.440 65.275 -88.093 65.316 -88.797 65.486 -89.313 65.709 -89.747 65.849 -90.357 65.885 -91.137 65.937 -91.027 65.885 -90.143 65.901 -89.615 65.690 -88.824 65.555 -88.516 65.363 -88.000 65.371 -87.275 65.580 -86.819 65.824 -86.429 66.077 -86.033 66.423 -86.527 66.530 -85.802 66.387 -85.291 66.272 -84.626 66.239 -84.044 66.310 -83.808 66.602 -84.148 66.912 -84.747 66.819 -84.231 66.684 -83.934 66.423 -83.588 66.492 -83.044 66.654 -82.445 66.874 -82.060 67.052 -81.533 67.360 -81.308 67.618 -81.489 67.846 -81.951 68.135 -82.143 68.382 -82.484 68.481 -82.165 68.580 -81.489 68.865 -81.626 69.104 -81.462 69.305 -82.132 69.500 -82.879 69.571 -82.610 69.673 -82.698 69.701 -83.522 69.824 -84.297 69.813 -85.247 69.607 -85.478 69.352 -85.429 69.071 -84.934 68.819 -85.093 68.654 -85.659 68.352 -85.769 68.058 -85.978 67.819 -86.346 67.464 -86.549 67.236 -87.203 67.423 -87.626 67.662 -88.077 67.937 -88.335 68.247 -88.181 68.429 -87.841 68.723 -87.973 68.967 -88.374 69.195 -89.055 69.036 -89.632 68.717 -89.758 68.387 -90.137 68.544 -90.527 68.832 -90.511 69.234 -91.011 69.412 -90.599 69.555 -91.137 69.571 -91.698 69.668 -92.511 69.852 -92.390 70.176 -92.044 70.407 -92.099 70.648 -92.440 70.890 -92.912 71.214 -92.912 71.467 -93.280 71.714 -94.011 71.849 -94.500 71.879 -94.984 71.604 -95.626 71.371 -95.720 71.192 -96.423 70.937 -96.527 70.632 -96.110 70.390 -96.440 70.113 -96.478 69.841 -95.995 69.679 -95.352 69.591 -94.648 69.473 -93.802 69.310 -93.571 69.305 -93.753 69.363 -93.945 69.137 -94.214 68.860 -94.527 68.901 -93.901 68.643 -93.604 68.434 -94.011 68.198 -94.440 68.058 -95.143 67.871 -95.549 67.613 -95.478 67.330 -95.297 67.027 -95.297 66.920 -95.725 66.723 -95.802 66.945 -96.115 67.052 -95.473 67.275 -95.824 67.519 -96.286 67.769 -96.192 68.151 -96.038 68.091 -96.516 68.223 -96.698 68.451 -97.560 68.357 -98.165 68.239 -98.505 67.942 -98.209 67.942 -97.544 67.690 -97.253 67.720 -97.929 67.992 -98.451 67.846 -98.593 67.745 -99.203 67.819 -99.934 67.805 -100.769 67.723 -101.456 67.750 -102.192 67.879 -102.918 68.069 -103.516 68.063 -104.385 68.275 -104.907 68.467 -105.412 68.750 -105.582 68.896 -106.198 68.780 -106.929 68.665 -107.665 68.549 -108.374 68.234 -108.495 68.234 -107.802 68.332 -107.099 68.481 -106.198 68.305 -106.324 68.162 -106.775 68.027 -107.692 67.764 -107.923 67.464 -107.665 67.170 -107.407 66.926 -107.484 66.544 -107.478 66.654 -107.758 66.984 -108.302 67.137 -107.984 67.459 -108.533 67.484 -108.945 67.720 -109.407 67.896 -109.973 67.896 -110.571 67.775 -111.291 67.723 -112.033 67.673 -112.791 67.698 -113.538 67.745 -114.313 67.871 -115.187 68.162 -115.027 68.247 -114.368 68.415 -114.038 68.659 -114.451 68.854 -115.038 68.929 -115.951 68.871 -116.527 68.929 -117.231 69.036 -118.049 69.206 -118.703 69.310 -119.467 69.407 -120.236 69.602 -120.830 69.764 -121.522 69.808 -122.346 69.742 -123.027 69.451 -123.379 69.412 -124.165 69.723 -124.291 70.025 -124.445 70.030 -124.808 69.753 -125.082 69.462 -125.363 69.467 -126.071 69.701 -126.571 69.973 -126.841 70.242 -127.159 70.497 -127.819 70.294 -127.923 70.030 -128.341 69.824 -128.962 69.791 -129.714 69.629 -130.390 69.305 -130.857 69.434 -131.176 69.335 -131.901 69.165 -132.423 68.901 -132.659 68.802 -133.137 69.047 -133.000 69.255 -132.500 69.484 -131.956 69.591 -131.220 69.723 -130.610 70.074 -129.764 70.113 -130.500 69.934 -131.165 69.758 -132.077 69.673 -132.571 69.462 -133.159 69.313 -133.868 69.093 -134.445 68.802 -134.385 68.827 -134.654 68.797 -135.368 68.854 -136.016 68.907 -136.797 69.019 -137.533 69.223 -138.313 69.368 -138.841 69.560 -139.522 69.607 -140.247 69.651 -141.110 69.775 -141.791 69.940 -142.456 70.085 -143.225 70.058 -144.016 69.989 -144.830 70.085 -145.577 70.181 -146.390 70.187 -147.214 70.299 -148.016 70.407 -148.769 70.497 -149.588 70.464 -150.462 70.431 -151.275 70.544 -152.137 70.810 -152.538 70.904 -153.291 70.827 -154.198 71.033 -154.962 70.863 -155.742 71.055 -155.852 71.305 -156.423 71.157 -157.082 70.931 -157.621 70.816 -158.412 70.799 -159.258 70.602 -159.775 70.374 -159.758 70.464 -160.066 70.379 -160.791 70.231 -161.775 70.146 -162.236 69.912 -162.659 69.657 -163.027 69.368 -163.203 69.132 -163.621 68.951 -164.247 68.887 -165.038 68.871 -165.857 68.717 -166.214 68.404 -166.511 68.286 -166.319 68.104 -165.714 67.937 -165.082 67.758 -164.571 67.522 -164.011 67.245 -163.786 67.069 -163.352 67.052 -162.538 66.964 -161.797 66.640 -161.703 66.613 -161.132 66.549 -160.374 66.409 -160.830 66.492 -161.473 66.794 -162.280 66.632 -162.093 66.297 -161.451 66.069 -161.830 66.055 -162.555 66.082 -163.231 66.192 -163.929 66.538 -163.841 66.563 -164.533 66.429 -165.148 66.239 -165.692 66.140 -166.088 66.027 -166.764 65.854 -167.313 65.703 -167.890 65.547 -167.868 65.382 -167.044 65.313 -166.390 65.190 -166.742 64.981 -166.615 64.769 -166.429 64.569 -166.011 64.492 -165.357 64.492 -164.791 64.574 -164.159 64.538 -163.280 64.462 -162.868 64.519 -162.511 64.728 -161.945 64.854 -161.302 64.753 -160.868 64.475 -161.253 64.236 -161.016 63.956 -160.852 63.684 -160.890 63.486 -161.352 63.475 -162.077 63.341 -162.505 63.129 -162.934 63.080 -163.588 63.239 -164.038 63.074 -164.484 62.764 -164.764 62.503 -164.714 62.453 -165.209 62.206 -165.566 61.901 -165.747 61.687 -166.038 61.475 -165.934 61.179 -165.571 61.286 -165.286 61.525 -164.918 61.495 -164.918 61.239 -165.192 61.025 -164.984 60.885 -164.495 60.920 -163.813 60.755 -163.648 60.681 -164.148 60.860 -164.709 60.621 -165.170 60.412 -165.005 60.223 -164.577 59.967 -164.187 59.808 -163.797 59.843 -163.231 59.970 -162.703 60.220 -162.549 60.571 -162.214 60.404 -162.335 60.181 -162.264 59.887 -162.071 59.618 -161.835 59.346 -161.940 59.126 -161.852 58.997 -161.753 58.681 -161.863 58.637 -161.489 58.819 -161.110 58.981 -160.500 58.865 -159.995 58.852 -159.560 58.514 -158.995 58.832 -158.813 59.014 -158.313 58.951 -158.429 58.681 -158.302 58.701 -157.813 58.830 -157.313 59.025 -156.923 59.003 -156.896 58.739 -157.066 58.503 -157.429 58.212 -157.401 57.940 -157.632 57.596 -157.588 57.511 -157.621 57.387 -158.104 57.187 -158.489 56.857 -158.808 56.736 -159.187 56.610 -159.588 56.440 -160.038 56.225 -160.385 55.898 -160.407 55.819 -160.758 55.970 -161.154 55.915 -161.626 55.764 -162.055 55.511 -162.467 55.316 -162.703 55.181 -163.082 54.945 -163.313 55.008 -163.132 55.099 -162.615 55.091 -162.170 55.266 -161.890 55.547 -161.626 55.473 -161.330 55.492 -160.819 55.582 -160.451 55.758 -160.011 55.690 -159.681 55.755 -159.527 55.890 -159.192 56.058 -158.632 56.212 -158.379 56.429 -158.346 56.566 -157.945 56.734 -157.478 56.876 -157.027 57.030 -156.626 57.275 -156.423 57.495 -156.077 57.643 -155.703 57.816 -155.291 58.016 -154.857 58.129 -154.412 58.324 -154.181 58.569 -153.863 58.794 -153.396 58.997 -153.538 59.124 -154.115 59.409 -153.934 59.654 -153.527 59.772 -153.143 59.948 -152.742 60.228 -152.879 60.266 -152.665 60.486 -152.258 60.734 -151.868 60.967 -151.566 61.132 -151.071 61.283 -150.544 61.407 -149.681 61.242 -149.907 60.953 -149.401 60.942 -149.819 60.981 -150.401 60.849 -150.940 60.657 -151.330 60.354 -151.352 60.096 -151.599 59.821 -151.824 59.692 -151.308 59.519 -151.390 59.352 -151.874 59.203 -151.577 59.269 -151.060 59.538 -150.456 59.607 -150.121 59.799 -149.742 59.995 -149.275 59.967 -148.637 60.181 -148.280 60.440 -148.099 60.500 -148.341 60.552 -148.445 60.731 -148.462 60.951 -148.330 61.143 -147.940 61.036 -147.934 60.959 -147.593 60.975 -147.104 61.104 -146.527 60.997 -146.599 60.775 -146.346 60.613 -145.868 60.409 -145.489 60.588 -144.863 60.409 -144.852 60.203 -144.467 60.047 -144.049 60.049 -143.429 60.093 -142.846 60.058 -142.269 60.005 -141.484 59.832 -141.220 59.723 -140.681 59.747 -140.132 59.942 -139.648 59.882 -139.154 59.783 -139.341 59.610 -139.648 59.407 -139.440 59.286 -139.049 59.135 -138.511 58.951 -138.071 58.681 -137.665 58.505 -137.379 58.321 -136.791 58.357 -136.401 58.495 -136.121 58.701 -136.456 58.860 -136.863 58.962 -136.857 58.885 -136.269 58.830 -135.945 58.459 -135.747 58.299 -135.313 58.390 -135.088 58.679 -135.214 59.074 -135.396 59.310 -135.401 59.250 -135.319 58.967 -135.170 58.723 -134.978 58.426 -134.731 58.371 -134.077 58.113 -133.907 57.901 -133.549 57.618 -133.368 57.379 -133.330 57.203 -133.291 57.005 -132.879 56.761 -132.527 56.549 -132.324 56.253 -131.813 56.038 -131.973 55.670 -132.071 55.794 -131.813 56.011 -131.264 55.835 -131.022 55.571 -130.879 55.239 -130.764 55.077 -130.835 54.849 -130.753 54.920 -130.368 55.181 -130.115 55.440 -130.082 55.717 -130.093 55.788 -130.088 55.431 -130.022 55.132 -130.082 55.146 -129.945 55.453 -129.808 55.426 -129.659 55.066 -129.841 54.915 -130.005 54.668 -130.137 54.442 -130.077 54.481 -130.313 54.286 -130.264 54.217 -129.725 54.102 -129.841 53.953 -130.049 53.723 -129.791 53.475 -129.423 53.621 -129.192 53.868 -128.868 53.819 -128.659 53.530 -128.681 53.382 -128.099 53.412 -128.297 53.500 -128.753 53.401 -128.879 53.151 -128.599 52.876 -128.275 ; #2 2 -69.571 75.665 -69.646 75.049 -69.747 74.374 -69.863 73.599 -70.041 72.940 -70.316 72.753 -70.555 72.511 -70.758 71.890 -71.033 71.484 -71.327 71.308 -71.604 71.253 -71.879 70.874 -72.077 70.176 -72.288 69.571 -72.401 68.714 -72.258 67.852 -72.019 67.478 -71.695 67.736 -71.467 67.852 -71.234 68.363 -71.014 68.934 -70.739 69.203 -70.423 69.187 -70.607 68.571 -70.475 68.044 -70.242 67.725 -69.962 68.033 -69.962 68.731 -69.753 69.187 -69.505 68.945 -69.357 69.407 -69.190 69.571 -68.934 69.566 -68.670 69.764 -68.434 70.005 -68.162 69.714 -67.841 69.632 -67.835 69.044 -67.854 68.280 -67.805 67.522 -67.769 66.769 -67.723 66.005 -67.662 65.247 -67.607 64.505 -67.527 63.780 -67.577 63.049 -67.593 62.368 -67.519 61.577 -67.442 60.918 -67.379 60.203 -67.387 59.445 -67.269 58.934 -67.126 58.291 -67.025 57.615 -66.920 56.918 -66.728 57.005 -66.536 57.165 -66.390 56.489 -66.212 55.967 -65.989 55.500 -65.890 54.830 -65.876 54.115 -65.871 53.418 -65.931 52.720 -65.984 52.016 -66.162 51.451 -66.335 50.896 -66.500 50.330 -66.786 50.247 -67.049 50.560 -67.181 50.467 -67.069 49.769 -66.975 49.121 -67.107 48.418 -67.343 48.852 -67.514 48.643 -67.654 47.995 -67.659 47.308 -67.404 47.198 -67.294 46.555 -67.544 46.275 -67.709 45.665 -67.775 44.940 -67.962 44.341 -68.038 43.604 -68.110 42.841 -68.327 42.313 -68.462 41.604 -68.613 40.951 -68.786 40.313 -68.986 39.802 -69.313 39.742 -69.582 39.593 -69.852 38.819 -69.624 38.599 -69.797 38.253 -69.668 37.489 -69.412 37.830 -69.357 37.368 -69.624 36.808 -69.473 36.280 -69.255 36.148 -69.093 35.473 -68.871 34.940 -68.591 34.670 -68.508 33.978 -68.701 33.396 -68.975 33.247 -69.250 32.896 -69.456 32.308 -69.613 31.621 -69.780 30.929 -69.819 30.088 -69.874 29.275 -70.005 28.527 -70.118 27.736 -70.159 26.907 -70.261 26.104 -70.338 25.286 -70.431 24.473 -70.516 23.643 -70.533 22.780 -70.423 21.962 -70.390 21.110 -70.288 20.302 -70.176 19.511 -70.091 18.687 -70.000 17.890 -70.107 17.049 -70.214 16.258 -70.283 15.429 -70.231 14.593 -70.209 13.813 -70.288 12.956 -70.486 12.396 -70.701 11.857 -70.676 10.940 -70.481 10.324 -70.272 9.747 -70.091 9.027 -70.236 8.896 -70.423 8.538 -70.209 7.791 -70.385 7.187 -70.580 6.621 -70.613 5.753 -70.654 4.885 -70.728 4.049 -70.821 3.220 -70.915 2.396 -71.066 1.637 -71.192 0.824 -71.387 0.181 -71.604 -0.418 -71.387 -0.951 -71.418 -1.714 -71.299 -2.275 -71.269 -2.967 -71.316 -3.852 -71.321 -4.753 -71.407 -5.670 -71.239 -6.115 -70.992 -5.698 -70.747 -5.742 -70.821 -6.500 -71.038 -7.082 -71.299 -7.500 -71.615 -7.538 -71.745 -8.418 -71.448 -8.786 -71.173 -9.082 -70.962 -9.687 -71.074 -10.225 -71.346 -10.511 -71.604 -11.077 -71.376 -11.797 -71.574 -12.187 -71.799 -11.626 -72.069 -11.346 -72.332 -11.703 -72.555 -12.313 -72.739 -13.082 -72.797 -14.044 -72.959 -14.022 -73.170 -14.242 -73.217 -15.209 -73.376 -16.077 -73.720 -16.511 -73.912 -16.560 -74.058 -16.291 -73.995 -15.280 -73.890 -14.280 -74.085 -14.258 -74.245 -15.110 -74.459 -15.813 -74.651 -16.604 -74.885 -17.214 -75.157 -17.577 -75.407 -18.126 -75.712 -18.132 -75.788 -19.341 -75.868 -20.324 -75.945 -21.374 -75.978 -22.484 -76.041 -23.626 -76.121 -24.786 -76.280 -25.890 -76.409 -26.775 -76.533 -27.907 -76.706 -28.907 -76.915 -29.775 -77.093 -30.786 -77.308 -31.676 -77.448 -32.852 -77.662 -33.769 -77.904 -34.500 -78.143 -35.258 -78.407 -35.896 -78.687 -36.247 -78.973 -36.044 -79.154 -34.846 -79.357 -33.797 -79.431 -32.374 -79.297 -30.967 -79.154 -29.621 -79.052 -27.797 -79.195 -28.016 -79.409 -29.027 -79.684 -29.791 -79.909 -28.484 -80.176 -28.148 -80.379 -29.214 -80.495 -30.885 -80.646 -32.346 -80.750 -34.027 -80.882 -35.621 -80.992 -37.313 -81.165 -38.852 -81.302 -40.511 -81.495 -41.962 -81.769 -42.648 -81.863 -44.434 -81.810 -46.434 -81.849 -48.440 -81.931 -50.368 -82.055 -52.242 -82.195 -54.077 -82.407 -55.555 -82.657 -56.599 -82.948 -58.071 -82.794 -58.956 -82.508 -59.291 -82.308 -60.874 -82.110 -62.484 -81.918 -63.973 -81.717 -65.434 -81.505 -66.835 -81.316 -68.302 -81.151 -69.863 -81.041 -71.599 -80.882 -73.148 -80.692 -74.549 -80.448 -75.357 -80.198 -76.302 -80.041 -78.896 -80.019 -77.758 -79.843 -76.505 -79.577 -76.143 -79.327 -76.791 -79.275 -78.242 -79.255 -79.841 -79.484 -80.495 -79.431 -81.038 -79.173 -81.830 -78.992 -82.912 -78.706 -83.390 -78.418 -83.885 -78.332 -83.049 -78.580 -82.132 -78.764 -81.022 -78.824 -79.566 -78.734 -78.159 -78.492 -77.577 -78.255 -78.368 -78.135 -79.659 -77.970 -81.000 -77.750 -81.033 -77.758 -79.934 -77.868 -78.643 -77.931 -77.302 -78.014 -75.989 -78.115 -74.687 -77.942 -73.538 -77.662 -73.000 -77.492 -73.962 -77.484 -75.324 -77.291 -76.242 -77.049 -76.967 -76.797 -77.577 -76.541 -78.126 -76.280 -78.440 -76.008 -77.791 -76.071 -76.703 -76.321 -76.192 -76.533 -75.434 -76.599 -74.220 -76.640 -72.978 -76.665 -71.725 -76.673 -70.429 -76.426 -69.797 -76.272 -68.868 -76.159 -67.775 -76.049 -66.648 -75.898 -65.648 -75.720 -64.720 -75.541 -63.786 -75.308 -63.802 -75.060 -63.544 -74.761 -63.154 -74.885 -62.522 -74.788 -61.945 -74.508 -61.802 -74.253 -61.451 -74.027 -61.385 -73.912 -61.209 -73.698 -60.753 -73.497 -61.346 -73.250 -61.659 -73.275 -60.885 -73.217 -60.209 -72.959 -60.165 -72.709 -60.780 -72.541 -61.407 -72.346 -61.000 -72.088 -61.126 -72.019 -62.275 -71.898 -62.049 -71.805 -61.148 -71.615 -61.484 -71.467 -61.434 -71.250 -61.082 -70.951 -61.280 -70.816 -61.918 -70.624 -61.775 -70.401 -62.209 -70.154 -62.066 -69.874 -62.484 -69.577 -62.478 -69.352 -62.918 -69.143 -63.423 -68.821 -63.527 -68.602 -63.786 -68.415 -63.137 -68.357 -63.467 -68.492 -64.220 -68.723 -64.104 -68.745 -64.423 -68.695 -65.187 -68.445 -65.357 -68.187 -64.989 -68.074 -65.385 -67.753 -65.467 -67.492 -65.516 -67.305 -65.000 -67.027 -64.775 -66.830 -64.049 -66.536 -63.940 -66.286 -63.566 -66.574 -62.720 -66.286 -62.632 -66.319 -61.841 -66.231 -61.247 -66.044 -60.709 -65.981 -61.154 -66.096 -61.819 -65.890 -62.368 -65.588 -61.973 -65.382 -62.055 -65.170 -61.709 -64.981 -61.126 -64.764 -60.692 -64.555 -60.242 -64.426 -59.626 -64.467 -59.022 -64.313 -58.830 -64.022 -58.665 -63.797 -58.297 -63.624 -57.747 -63.547 -57.066 -63.294 -57.027 -63.261 -57.599 -63.409 -58.132 -63.538 -58.764 -63.745 -59.247 -63.854 -59.758 -63.948 -60.308 -64.096 -60.890 -64.357 -61.198 -64.533 -61.665 -64.706 -62.324 -64.854 -62.725 -65.052 -63.170 -65.093 -63.896 -65.398 -63.956 -65.599 -64.099 -65.808 -64.495 -65.984 -64.813 -66.096 -65.368 -66.299 -65.824 -66.544 -66.198 -66.786 -66.462 -66.975 -66.879 -67.113 -67.440 -67.453 -67.522 -67.522 -66.747 -67.714 -66.797 -67.962 -67.038 -68.245 -66.907 -68.503 -67.055 -68.797 -67.209 -69.008 -66.868 -69.283 -67.165 -69.335 -67.951 -69.418 -68.555 -69.706 -68.385 -69.989 -68.434 -70.247 -68.060 -70.522 -67.797 -70.799 -67.593 -71.080 -67.429 -71.371 -67.505 -71.654 -67.291 -71.915 -66.940 -72.206 -66.923 -72.478 -67.011 -72.739 -67.473 -72.934 -68.154 -73.110 -68.956 -73.236 -69.863 -73.288 -70.841 -73.390 -71.758 -73.470 -72.764 -73.610 -73.637 -73.692 -74.637 -73.739 -75.604 -73.830 -76.632 -73.665 -76.780 -73.544 -77.352 -73.646 -78.434 -73.475 -78.885 -73.242 -79.495 -73.085 -80.302 -73.217 -80.615 -73.415 -80.956 -73.684 -81.148 -73.885 -81.703 -73.849 -82.588 -73.720 -83.522 -73.673 -84.495 -73.563 -85.473 -73.203 -85.846 -73.275 -86.555 -73.242 -87.429 -73.176 -88.324 -72.810 -88.896 -73.033 -89.390 -73.176 -90.165 -73.283 -91.055 -73.195 -92.088 -73.190 -93.060 -73.269 -93.995 -73.236 -94.984 -73.283 -95.989 -73.255 -96.962 -73.124 -97.918 -72.992 -98.648 -73.025 -99.648 -73.052 -100.621 -73.044 -101.720 -72.934 -102.418 -72.753 -103.011 -72.940 -103.516 -73.228 -103.253 -73.335 -102.401 -73.349 -101.407 -73.382 -100.390 -73.571 -99.527 -73.706 -99.912 -73.725 -100.945 -73.618 -101.901 -73.665 -102.835 -73.918 -102.484 -74.077 -101.725 -74.387 -101.418 -74.486 -100.511 -74.745 -100.451 -74.912 -100.060 -75.126 -99.632 -75.255 -100.533 -75.255 -101.643 -75.069 -102.462 -75.038 -103.665 -75.069 -104.786 -75.165 -105.874 -75.308 -106.852 -75.269 -107.951 -75.157 -109.011 -75.203 -110.390 -74.920 -110.500 -74.659 -110.022 -74.343 -110.154 -74.203 -111.060 -74.387 -111.544 -74.673 -111.538 -74.841 -112.170 -74.717 -112.962 -74.495 -113.258 -74.217 -113.346 -73.973 -113.791 -74.036 -114.621 -74.357 -114.731 -74.473 -115.610 -74.536 -116.637 -74.409 -117.659 -74.500 -118.429 -74.624 -119.291 -74.681 -120.368 -74.723 -121.467 -74.687 -122.555 -74.723 -123.621 -74.681 -124.725 -74.659 -125.819 -74.651 -126.912 -74.703 -127.973 -74.805 -128.989 -74.827 -130.077 -74.783 -131.176 -74.745 -132.264 -74.819 -133.368 -74.629 -134.269 -74.607 -135.308 -74.745 -136.363 -74.973 -137.011 -75.077 -138.055 -75.121 -139.209 -75.360 -139.890 -75.497 -140.824 -75.497 -141.978 -75.588 -142.929 -75.712 -144.071 -75.882 -144.857 -75.962 -146.022 -76.321 -145.819 -76.297 -146.879 -76.143 -148.022 -76.321 -149.132 -76.467 -148.473 -76.442 -147.291 -76.599 -146.302 -76.830 -145.709 -77.049 -145.874 -77.327 -146.049 -77.327 -146.984 -77.484 -148.192 -77.651 -149.192 -77.662 -150.181 -77.448 -151.148 -77.412 -152.269 -77.368 -153.132 -77.179 -154.060 -77.102 -155.286 -77.239 -156.198 -77.203 -157.368 -77.440 -157.764 -77.714 -158.005 -77.986 -157.890 -78.220 -156.714 -78.162 -155.357 -78.181 -154.060 -78.464 -154.137 -78.599 -155.522 -78.802 -155.445 -79.022 -154.445 -79.143 -153.088 -79.275 -151.775 -79.462 -150.538 -79.599 -149.126 -79.747 -147.764 -79.953 -146.582 -80.220 -145.918 -80.505 -145.626 -80.750 -146.522 -80.981 -147.555 -81.264 -148.379 -81.352 -149.901 -81.190 -151.495 -81.091 -153.192 -81.016 -155.000 -81.165 -156.637 -81.352 -155.868 -81.558 -154.335 -81.835 -154.665 -82.124 -154.071 -82.365 -152.819 -82.626 -151.907 -82.901 -152.566 -83.184 -153.005 -83.481 -152.956 -83.755 -153.099 -84.044 -152.874 -84.308 -151.703 -84.522 -149.731 -84.665 -147.077 -84.788 -144.121 -84.874 -141.088 -85.047 -138.995 -85.228 -140.857 -85.137 -144.258 -85.115 -147.808 -85.368 -150.170 -85.343 -153.445 -85.390 -157.176 -85.321 -160.632 -85.137 -163.346 -84.959 -166.005 -84.788 -168.132 -84.602 -170.769 -84.484 -173.533 -84.462 -176.599 -84.365 -179.049 -84.173 178.758 -84.025 176.368 -83.863 174.033 -83.720 172.198 -83.497 171.000 -83.396 168.560 -83.266 168.159 -83.011 167.863 -82.808 166.824 -82.569 165.615 -82.349 164.357 -82.124 163.643 -81.849 162.742 -81.571 161.258 -81.288 161.621 -81.052 160.665 -80.786 160.593 -80.527 160.489 -80.437 159.055 -80.253 158.599 -79.997 159.907 -79.747 159.934 -79.462 160.511 -79.184 160.324 -78.992 161.220 -78.874 162.544 -78.695 163.725 -78.580 164.951 -78.580 166.753 -78.464 166.374 -78.181 165.423 -78.060 164.610 -77.723 164.275 -77.544 163.747 -77.255 163.544 -77.016 162.835 -76.838 162.769 -76.574 162.841 -76.272 162.709 -76.008 162.813 -75.758 162.995 -75.481 162.830 -75.187 162.571 -75.016 163.357 -74.753 163.901 -74.673 164.797 -74.473 165.181 -74.181 164.918 -74.091 165.797 -73.918 165.885 -73.698 166.670 -73.489 167.456 -73.530 168.132 -73.475 168.846 -73.209 169.192 -72.986 169.703 -72.681 170.088 -72.396 170.192 -72.151 170.066 -71.964 170.632 -71.720 170.841 -71.484 170.308 -71.423 169.407 -71.228 168.753 -71.033 168.005 -70.786 167.659 -70.701 166.747 -70.654 165.967 -70.569 165.170 -70.497 164.308 -70.574 163.511 -70.374 162.846 -70.305 162.033 -70.231 161.258 -70.085 160.549 -69.863 160.137 -69.651 159.571 -69.495 158.896 -69.310 158.297 -69.115 157.385 -69.179 156.742 -69.201 155.995 -69.115 155.209 -68.918 154.511 -68.665 154.555 -68.429 153.940 -68.618 153.797 -68.896 153.599 -68.838 152.797 -68.838 152.088 -68.882 151.198 -68.508 151.011 -68.451 150.269 -68.341 149.560 -68.310 148.731 -68.052 148.434 -67.890 147.995 -68.052 147.220 -67.926 146.989 -67.692 146.462 -67.588 145.604 -67.313 145.698 -67.093 145.549 -67.146 144.797 -67.049 144.148 -66.907 143.511 -66.981 142.725 -66.824 142.110 -66.786 141.363 -66.731 140.654 -66.654 139.984 -66.555 139.291 -66.516 138.571 -66.415 137.890 -66.330 137.214 -66.319 136.505 -66.195 135.824 -66.060 135.126 -65.810 135.099 -65.525 135.258 -65.245 135.093 -65.030 134.764 -65.038 134.231 -65.335 134.132 -65.626 134.181 -65.901 134.390 -66.135 134.132 -66.077 133.368 -66.146 132.676 -66.195 131.989 -66.231 131.286 -66.214 130.560 -66.357 129.940 -66.596 129.516 -66.868 129.313 -67.096 128.956 -67.044 128.231 -66.956 127.538 -66.780 126.978 -66.481 126.852 -66.316 126.225 -66.467 125.549 -66.703 125.132 -66.615 124.621 -66.558 124.016 -66.698 123.368 -66.665 122.846 -66.577 122.088 -66.698 121.401 -66.819 120.758 -66.854 120.011 -66.920 119.313 -66.926 118.544 -66.964 117.841 -66.863 117.132 -66.626 116.742 -66.409 116.264 -66.376 115.560 -66.473 114.824 -66.247 114.473 -66.016 114.033 -65.791 113.555 -65.775 112.956 -65.882 112.308 -65.931 111.610 -66.060 110.973 -66.319 110.742 -66.549 110.407 -66.684 109.780 -66.772 108.956 -66.632 108.368 -66.440 107.797 -66.415 107.055 -66.343 106.368 -66.264 105.687 -66.154 105.011 -66.049 104.357 -65.997 103.670 -65.929 102.995 -65.931 102.291 -66.014 101.615 -66.107 100.956 -66.338 100.505 -66.519 99.951 -66.780 99.418 -66.670 98.962 -66.536 98.412 -66.640 97.665 -66.588 96.989 -66.646 96.253 -66.659 95.495 -66.574 94.797 -66.640 94.082 -66.596 93.363 -66.615 92.621 -66.549 91.918 -66.558 91.181 -66.640 90.489 -66.703 89.780 -66.728 88.984 -66.481 88.758 -66.146 88.445 -66.264 88.181 -66.569 88.082 -66.805 87.698 -66.975 87.093 -67.044 86.390 -67.157 85.736 -67.151 84.984 -67.146 84.247 -67.157 83.500 -67.305 82.824 -67.286 82.159 -67.547 81.753 -67.698 81.516 -67.860 80.868 -67.937 80.126 -68.052 79.418 -68.217 78.797 -68.440 78.280 -68.690 77.956 -68.975 77.901 -69.173 77.407 -69.313 76.681 -69.456 76.060 ; #3 1 -20.937 149.044 -20.805 148.819 -20.511 148.791 -20.264 148.736 -20.137 148.484 -20.016 148.253 -19.885 147.973 -19.758 147.709 -19.440 147.484 -19.409 147.236 -19.272 146.989 -19.184 146.687 -19.030 146.423 -18.786 146.291 -18.511 146.264 -18.291 146.066 -18.016 146.055 -17.739 146.110 -17.464 146.071 -17.192 145.956 -16.929 145.841 -16.712 145.626 -16.475 145.451 -16.203 145.445 -15.918 145.385 -15.635 145.319 -15.335 145.286 -15.074 145.275 -14.876 145.203 -14.712 144.956 -14.547 144.709 -14.294 144.571 -14.272 144.330 -14.390 144.121 -14.453 143.863 -14.201 143.709 -13.931 143.615 -13.654 143.555 -13.376 143.555 -13.088 143.505 -12.832 143.434 -12.558 143.341 -12.321 143.143 -12.025 143.159 -11.874 142.945 -11.593 142.846 -11.310 142.824 -11.016 142.725 -10.821 142.549 -10.841 142.363 -11.033 142.159 -11.341 142.121 -11.624 142.038 -11.915 141.973 -12.049 141.885 -12.277 141.731 -12.635 141.819 -12.824 141.725 -13.058 141.615 -13.341 141.648 -13.613 141.522 -13.901 141.484 -14.173 141.588 -14.464 141.538 -14.750 141.571 -15.038 141.637 -15.310 141.555 -15.588 141.451 -15.879 141.401 -16.159 141.385 -16.451 141.291 -16.712 141.170 -16.951 141.005 -17.223 140.918 -17.470 140.780 -17.621 140.522 -17.701 140.231 -17.657 139.945 -17.533 139.670 -17.385 139.407 -17.220 139.181 -16.962 139.055 -16.843 138.769 -16.777 138.478 -16.695 138.192 -16.514 137.956 -16.297 137.753 -16.165 137.489 -16.025 137.231 -15.912 136.951 -15.846 136.692 -15.662 136.451 -15.464 136.236 -15.288 136.005 -15.121 135.753 -14.970 135.500 -14.712 135.445 -14.464 135.615 -14.236 135.813 -13.989 135.934 -13.712 135.973 -13.453 135.901 -13.250 136.022 -13.179 136.291 -13.168 136.489 -12.885 136.560 -12.580 136.725 -12.387 136.907 -12.225 136.742 -12.005 136.555 -12.027 136.357 -12.236 136.280 -12.448 136.143 -12.228 136.005 -12.209 135.841 -12.168 135.720 -11.934 135.852 -11.865 135.813 -12.047 135.571 -12.203 135.286 -12.220 135.055 -12.030 134.797 -12.049 134.544 -12.000 134.231 -11.849 133.962 -11.772 133.742 -11.775 133.456 -11.684 133.198 -11.418 132.945 -11.453 132.676 -11.245 132.429 -11.255 132.220 -11.247 132.088 -11.272 131.890 -11.475 132.110 -11.484 132.445 -11.701 132.626 -12.041 132.670 -12.225 132.467 -12.214 132.253 -12.269 131.956 -12.286 131.659 -12.176 131.341 -12.214 131.110 -12.484 130.907 -12.473 130.731 -12.632 130.571 -12.772 130.357 -12.986 130.165 -13.291 130.231 -13.486 130.005 -13.626 129.813 -13.887 129.747 -14.071 129.555 -14.349 129.401 -14.577 129.637 -14.775 129.846 -14.843 129.769 -15.096 129.659 -15.025 129.533 -15.044 129.242 -14.942 129.110 -14.832 128.824 -14.802 128.489 -15.000 128.335 -15.321 128.165 -15.225 128.071 -14.923 128.126 -14.690 128.143 -14.486 127.896 -14.264 127.720 -14.060 127.495 -13.931 127.247 -13.827 127.033 -13.854 126.824 -14.088 126.681 -14.049 126.511 -14.126 126.324 -14.011 126.148 -14.077 126.066 -14.418 126.022 -14.527 125.780 -14.332 125.665 -14.407 125.593 -14.558 125.429 -14.695 125.214 -14.942 125.280 -15.099 125.291 -15.063 125.027 -15.319 125.000 -15.324 124.808 -15.407 124.648 -15.599 124.412 -15.865 124.538 -16.049 124.555 -16.247 124.429 -16.376 124.758 -16.398 124.687 -16.390 124.379 -16.299 124.121 -16.280 123.775 -16.456 123.582 -16.602 123.555 -16.849 123.830 -17.088 123.753 -17.420 123.577 -17.316 123.407 -17.058 123.264 -16.780 123.121 -16.519 123.005 -16.503 122.868 -16.747 122.714 -16.937 122.495 -17.143 122.258 -17.407 122.148 -17.687 122.181 -17.962 122.258 -18.181 122.258 -18.368 122.033 -18.549 121.791 -18.786 121.637 -19.071 121.511 -19.313 121.346 -19.516 121.126 -19.665 120.868 -19.780 120.588 -19.885 120.297 -19.937 119.995 -20.008 119.698 -20.014 119.412 -19.992 119.110 -20.190 118.879 -20.319 118.621 -20.354 118.302 -20.445 118.027 -20.624 117.791 -20.701 117.505 -20.665 117.187 -20.629 116.857 -20.703 116.626 -20.835 116.352 -20.964 116.115 -21.146 115.868 -21.332 115.637 -21.527 115.407 -21.651 115.115 -21.753 114.830 -21.953 114.582 -22.179 114.473 -22.459 114.269 -22.294 114.121 -21.915 114.115 -21.989 113.934 -22.258 113.824 -22.525 113.692 -22.786 113.731 -23.069 113.786 -23.354 113.769 -23.610 113.648 -23.863 113.495 -24.143 113.412 -24.434 113.407 -24.684 113.560 -24.953 113.643 -25.206 113.797 -25.464 113.945 -25.714 114.110 -25.967 114.225 -26.324 114.110 -26.099 113.835 -25.929 113.709 -25.629 113.522 -25.805 113.451 -26.069 113.577 -26.286 113.791 -26.571 113.769 -26.467 113.555 -26.190 113.324 -26.352 113.280 -26.582 113.478 -26.808 113.676 -27.052 113.846 -27.308 114.000 -27.580 114.115 -27.868 114.110 -28.146 114.209 -28.376 114.407 -28.626 114.566 -28.896 114.654 -29.140 114.846 -29.420 114.951 -29.706 114.945 -30.000 114.956 -30.280 115.005 -30.563 115.077 -30.835 115.203 -31.091 115.357 -31.357 115.495 -31.615 115.648 -31.896 115.731 -32.203 115.725 -32.593 115.698 -32.745 115.615 -33.033 115.670 -33.288 115.659 -33.569 115.445 -33.602 115.132 -33.679 114.978 -33.970 114.967 -34.269 115.077 -34.354 115.412 -34.516 115.698 -34.745 115.934 -34.879 116.258 -34.973 116.489 -35.033 116.868 -35.033 117.220 -35.082 117.577 -35.063 117.918 -34.942 118.253 -34.728 118.511 -34.538 118.797 -34.486 119.121 -34.401 119.429 -34.140 119.604 -33.970 119.890 -33.948 120.231 -33.920 120.566 -33.868 120.918 -33.841 121.253 -33.852 121.604 -33.893 121.978 -33.981 122.247 -33.920 122.577 -33.882 122.923 -33.953 123.242 -33.863 123.610 -33.629 123.852 -33.382 124.005 -33.113 124.143 -32.951 124.418 -32.882 124.758 -32.728 125.049 -32.593 125.352 -32.456 125.648 -32.302 125.940 -32.264 126.275 -32.308 126.621 -32.302 126.962 -32.269 127.297 -32.176 127.615 -32.096 127.951 -31.997 128.269 -31.874 128.577 -31.739 128.874 -31.665 129.209 -31.629 129.544 -31.604 129.885 -31.585 130.225 -31.599 130.566 -31.580 130.901 -31.505 131.220 -31.618 131.544 -31.766 131.835 -31.948 132.104 -32.005 132.418 -31.964 132.731 -32.118 133.033 -32.179 133.390 -32.176 133.676 -32.440 133.912 -32.538 134.209 -32.810 134.154 -33.107 134.280 -33.203 134.632 -33.429 134.830 -33.692 134.934 -33.918 135.181 -34.179 135.291 -34.538 135.308 -34.703 135.396 -34.871 135.846 -34.632 135.912 -34.434 136.121 -34.165 136.324 -33.956 136.555 -33.769 136.879 -33.676 137.159 -33.429 137.346 -33.162 137.473 -32.953 137.714 -32.668 137.775 -32.679 137.863 -32.959 137.956 -33.198 137.918 -33.495 137.912 -33.728 137.764 -33.967 137.582 -34.231 137.484 -34.514 137.467 -34.852 137.440 -34.923 137.126 -35.190 136.940 -35.181 137.280 -35.126 137.648 -34.871 137.819 -34.591 137.890 -34.264 138.055 -34.415 138.258 -34.698 138.467 -34.956 138.495 -35.247 138.451 -35.569 138.236 -35.610 138.582 -35.505 138.912 -35.379 139.247 -35.580 139.231 -35.698 139.181 -35.907 139.412 -36.033 139.555 -35.659 139.082 -35.720 139.148 -35.920 139.407 -36.154 139.610 -36.420 139.753 -36.695 139.852 -36.975 139.747 -37.255 139.802 -37.503 140.038 -37.717 140.264 -37.951 140.467 -38.063 140.797 -38.140 141.143 -38.363 141.434 -38.316 141.714 -38.360 142.104 -38.396 142.462 -38.549 142.780 -38.684 143.110 -38.805 143.451 -38.714 143.775 -38.516 144.044 -38.349 144.346 -38.162 144.560 -37.929 144.835 -38.074 145.077 -38.341 144.852 -38.462 144.989 -38.288 145.302 -38.437 145.467 -38.657 145.698 -38.835 145.951 -39.027 146.335 -38.830 146.346 -38.701 146.544 -38.626 146.896 -38.409 147.165 -38.203 147.423 -38.019 147.698 -37.890 148.022 -37.821 148.379 -37.810 148.747 -37.794 149.126 -37.766 149.473 -37.577 149.764 -37.374 149.973 -37.118 149.951 -36.852 149.945 -36.563 150.044 -36.283 150.121 -36.014 150.137 -35.734 150.258 -35.467 150.429 -35.217 150.615 -35.022 150.764 -34.736 150.830 -34.500 150.879 -34.209 151.055 -33.981 151.209 -33.643 151.291 -33.387 151.478 -33.179 151.626 -32.931 151.797 -32.742 152.115 -32.560 152.324 -32.349 152.533 -32.060 152.560 -31.808 152.764 -31.536 152.901 -31.258 152.978 -30.967 153.055 -30.684 153.011 -30.401 153.088 -30.126 153.192 -29.849 153.275 -29.563 153.335 -29.277 153.374 -29.003 153.489 -28.734 153.604 -28.448 153.571 -28.173 153.527 -27.898 153.423 -27.632 153.319 -27.374 153.148 -27.115 153.126 -26.805 153.143 -26.530 153.115 -26.253 153.093 -25.929 153.093 -25.690 152.929 -25.398 152.907 -25.198 152.648 -24.953 152.505 -24.734 152.341 -24.549 152.093 -24.266 151.945 -24.058 151.698 -23.995 151.456 -23.794 151.214 -23.566 150.956 -23.349 150.824 -23.060 150.769 -22.783 150.802 -22.492 150.654 -22.459 150.352 -22.239 150.093 -22.475 149.978 -22.445 149.780 -22.242 149.599 -21.962 149.495 -21.648 149.451 -21.431 149.319 -21.159 149.214 ; #4 2 66.220 -35.681 66.343 -35.610 66.330 -34.984 66.516 -34.538 66.703 -34.198 67.008 -33.802 67.288 -33.489 67.544 -33.242 67.728 -32.852 67.915 -32.209 68.187 -32.187 68.462 -32.445 68.486 -32.269 68.245 -31.791 68.093 -31.379 68.140 -30.571 68.228 -30.104 68.310 -29.703 68.316 -29.143 68.440 -28.363 68.522 -27.720 68.629 -26.973 68.739 -26.231 68.951 -25.637 69.148 -25.220 69.341 -24.637 69.533 -24.027 69.753 -23.473 69.907 -22.901 70.080 -22.489 70.124 -23.681 70.236 -24.445 70.343 -25.220 70.266 -26.016 70.209 -26.868 70.019 -27.500 70.102 -28.088 70.283 -26.989 70.423 -26.698 70.407 -27.758 70.453 -28.516 70.481 -28.879 70.676 -28.137 70.962 -27.989 71.038 -27.626 70.951 -26.802 71.066 -26.033 71.280 -25.566 71.489 -26.093 71.525 -27.071 71.580 -27.841 71.593 -28.044 71.755 -27.571 71.945 -28.192 72.038 -28.291 71.835 -27.484 71.604 -26.780 71.555 -25.934 71.371 -25.181 71.239 -24.555 70.945 -24.214 70.665 -24.000 70.464 -23.357 70.533 -22.648 70.670 -22.467 70.511 -21.769 70.775 -21.709 71.055 -21.857 71.376 -21.978 71.544 -22.368 71.690 -22.423 71.750 -22.912 71.984 -22.885 72.176 -23.687 72.346 -24.341 72.338 -25.143 72.332 -25.478 72.593 -24.764 72.786 -25.522 72.714 -26.467 72.824 -26.830 72.876 -25.588 73.063 -25.275 73.170 -26.286 73.143 -27.121 73.390 -26.973 73.308 -25.736 73.549 -25.000 73.766 -25.258 73.679 -24.374 73.739 -23.670 73.604 -22.703 73.582 -22.692 73.577 -23.643 73.297 -22.659 73.363 -21.802 73.456 -21.060 73.591 -20.467 73.863 -20.555 73.940 -21.676 73.794 -21.852 74.113 -22.225 74.374 -22.066 74.500 -21.681 74.415 -20.500 74.266 -19.654 74.500 -19.187 74.637 -19.769 74.723 -20.764 75.025 -21.093 75.077 -21.841 75.239 -20.868 75.459 -21.890 75.541 -21.901 75.368 -20.945 75.247 -19.791 75.527 -19.412 75.788 -19.610 75.945 -20.560 75.986 -21.253 76.176 -20.022 76.255 -21.121 76.516 -22.104 76.739 -22.121 76.874 -21.093 76.948 -20.093 76.821 -18.720 77.016 -18.154 77.291 -18.736 77.360 -19.819 77.519 -20.549 77.687 -20.060 77.714 -19.363 77.904 -20.890 77.750 -21.670 78.154 -21.473 78.453 -21.203 78.714 -21.077 78.951 -20.126 79.234 -19.495 79.547 -19.659 79.758 -18.841 79.942 -17.720 80.118 -18.286 79.997 -19.824 79.920 -20.379 80.242 -19.511 80.231 -17.681 80.401 -16.522 80.585 -17.110 80.574 -18.852 80.610 -19.962 80.750 -17.407 80.824 -15.604 81.066 -14.725 81.288 -13.505 81.558 -12.511 81.797 -13.484 81.918 -15.363 81.810 -17.275 81.547 -18.335 81.547 -20.308 81.302 -21.670 81.052 -22.632 80.810 -23.549 80.703 -24.115 81.077 -23.286 81.341 -22.610 81.624 -22.071 81.918 -22.055 82.041 -23.357 81.783 -24.302 81.585 -25.714 81.519 -26.896 81.904 -25.390 82.014 -27.143 81.945 -29.330 81.863 -31.066 81.824 -32.324 82.151 -30.396 82.179 -27.885 82.151 -25.747 82.264 -23.819 82.423 -22.143 82.673 -21.791 82.824 -23.703 82.901 -25.181 83.104 -26.016 83.088 -28.324 83.071 -30.615 82.962 -32.577 82.915 -34.280 83.088 -32.203 83.151 -29.918 83.151 -27.418 83.330 -26.203 83.481 -28.610 83.582 -30.995 83.566 -33.758 83.497 -36.170 83.431 -37.643 83.266 -38.566 83.058 -38.027 82.885 -39.286 83.151 -41.742 83.184 -43.489 83.011 -45.209 82.885 -45.709 82.838 -43.407 82.777 -41.159 82.582 -39.912 82.495 -40.225 82.657 -41.863 82.777 -44.368 82.657 -45.203 82.407 -43.940 82.236 -43.659 81.918 -44.577 81.849 -45.379 82.096 -46.643 82.294 -48.165 82.495 -49.769 82.379 -50.918 82.096 -50.291 81.863 -50.313 81.717 -50.374 81.931 -52.566 81.717 -53.593 82.195 -53.791 82.264 -55.280 82.179 -56.967 82.000 -58.868 81.703 -58.093 81.467 -56.995 81.442 -57.077 81.662 -58.385 81.890 -59.643 81.755 -61.225 81.456 -61.022 81.165 -61.648 81.091 -63.264 80.956 -63.577 80.750 -65.396 80.552 -66.538 80.277 -67.341 80.063 -66.418 80.107 -64.786 80.118 -64.341 79.835 -65.005 79.547 -64.934 79.275 -65.533 79.124 -66.643 79.071 -67.995 78.874 -69.148 78.695 -70.489 78.588 -71.731 78.379 -72.643 78.126 -72.681 77.876 -71.643 77.805 -70.632 77.698 -70.066 77.500 -69.654 77.555 -68.484 77.615 -67.176 77.599 -66.357 77.352 -66.555 77.368 -68.005 77.239 -68.462 77.170 -66.846 77.146 -66.725 77.179 -68.137 77.214 -69.440 77.179 -70.731 76.948 -71.044 76.854 -70.264 76.874 -69.830 76.673 -68.956 76.591 -68.434 76.338 -69.297 76.113 -68.407 75.992 -67.214 76.033 -66.835 76.192 -66.654 76.176 -65.775 76.129 -65.060 76.239 -64.176 76.288 -62.907 76.209 -61.813 76.071 -60.714 75.898 -59.747 75.736 -58.868 75.505 -58.335 75.308 -58.335 75.030 -57.819 74.783 -57.000 74.508 -56.462 74.302 -56.489 74.148 -56.599 73.904 -55.901 73.659 -55.813 73.343 -55.291 73.077 -55.258 72.786 -54.709 72.536 -54.824 72.409 -55.231 72.269 -54.956 72.027 -54.945 71.720 -55.593 71.442 -55.286 71.371 -54.500 71.563 -53.962 71.745 -53.714 72.063 -53.654 72.220 -53.703 71.854 -53.060 71.654 -52.533 71.610 -52.077 71.412 -52.527 71.418 -51.846 71.245 -52.115 71.228 -51.852 71.115 -51.824 71.008 -51.407 70.753 -51.011 70.522 -50.879 70.363 -50.951 70.486 -51.742 70.676 -52.423 70.764 -53.258 70.791 -54.143 70.602 -54.418 70.390 -53.813 70.294 -53.000 70.096 -52.346 70.005 -51.555 70.014 -50.918 69.923 -50.379 69.679 -50.599 69.462 -50.665 69.201 -50.566 69.030 -50.610 68.819 -51.011 68.602 -51.148 68.549 -51.973 68.467 -52.604 68.280 -52.852 68.239 -51.923 68.374 -51.363 68.357 -51.071 68.099 -50.995 67.951 -50.588 68.052 -51.571 68.121 -52.286 68.140 -52.775 68.115 -53.148 67.942 -52.918 67.750 -53.538 67.577 -53.445 67.783 -52.758 67.901 -52.071 67.841 -51.582 67.846 -50.780 67.799 -50.599 67.679 -50.918 67.599 -50.385 67.582 -50.989 67.659 -51.670 67.739 -52.412 67.662 -52.962 67.442 -53.670 67.269 -53.549 67.330 -52.764 67.374 -52.049 67.335 -51.357 67.187 -50.808 67.170 -50.709 67.239 -51.407 67.343 -52.049 67.288 -52.769 67.212 -53.495 67.069 -53.670 66.940 -53.275 66.868 -52.549 66.690 -53.005 66.525 -52.912 66.429 -53.599 66.195 -53.390 66.343 -52.692 66.538 -52.159 66.750 -51.670 66.931 -51.093 67.025 -50.429 66.984 -50.363 66.863 -50.819 66.712 -51.577 66.500 -52.093 66.316 -52.659 66.126 -53.181 65.962 -53.176 65.956 -52.500 65.956 -52.093 65.791 -53.033 65.662 -52.775 65.514 -52.462 65.643 -51.863 65.777 -51.209 65.728 -50.896 65.613 -51.802 65.418 -52.275 65.239 -52.275 64.909 -52.110 64.887 -51.841 64.923 -51.571 64.621 -52.071 64.343 -51.846 64.670 -51.324 64.788 -50.896 65.077 -50.797 64.755 -50.187 64.475 -49.890 64.409 -49.879 64.654 -50.489 64.533 -50.643 64.409 -50.566 64.223 -51.159 64.146 -51.484 64.212 -50.720 64.198 -50.368 64.058 -51.258 63.915 -51.379 63.843 -51.187 63.640 -51.412 63.613 -51.011 63.585 -50.863 63.409 -50.995 63.360 -50.720 63.206 -50.835 63.080 -50.374 62.904 -50.203 62.970 -49.967 62.764 -50.126 62.420 -50.170 62.280 -49.736 62.137 -49.495 62.022 -49.374 62.052 -49.104 61.843 -49.220 61.885 -48.951 61.615 -48.978 61.547 -48.484 61.503 -48.516 61.343 -48.654 61.206 -48.297 61.168 -48.000 60.978 -48.038 60.832 -47.962 60.885 -47.522 60.904 -46.830 61.041 -46.280 61.129 -45.786 61.060 -45.429 60.841 -45.846 60.830 -45.489 60.613 -45.637 60.613 -45.308 60.544 -45.192 60.536 -44.846 60.242 -44.978 60.374 -44.648 60.082 -44.819 60.250 -44.121 60.132 -43.500 60.220 -43.176 60.412 -43.473 60.588 -43.797 60.552 -43.066 60.695 -43.000 60.865 -43.165 61.033 -42.852 61.115 -43.198 61.165 -42.885 61.201 -42.879 61.266 -42.813 61.327 -42.868 61.475 -42.604 61.582 -42.681 61.706 -42.500 61.766 -42.582 61.959 -42.335 62.245 -42.363 62.473 -42.544 62.747 -42.703 62.857 -42.181 62.956 -41.791 63.126 -41.852 63.266 -41.610 63.437 -41.593 63.445 -41.368 63.486 -41.115 63.613 -40.901 63.750 -41.209 63.821 -40.615 64.080 -40.813 64.286 -41.297 64.426 -40.555 64.775 -40.819 65.030 -40.956 65.063 -40.341 65.212 -39.934 65.519 -39.907 65.626 -39.341 65.629 -38.648 65.761 -38.242 65.995 -38.159 66.280 -37.912 66.357 -37.582 66.225 -37.412 65.956 -37.703 65.901 -37.088 65.989 -36.379 66.063 -35.885 ; #5 1 68.310 -67.115 68.305 -67.544 68.409 -67.187 68.486 -67.698 68.585 -68.522 68.648 -68.368 68.791 -68.918 68.832 -68.247 68.997 -68.121 69.115 -68.786 69.223 -68.451 69.305 -68.863 69.319 -68.566 69.217 -67.813 69.165 -67.005 69.346 -66.863 69.467 -67.577 69.533 -68.346 69.544 -69.505 69.571 -69.121 69.673 -68.330 69.758 -67.434 69.984 -67.313 70.242 -67.830 70.135 -68.335 69.945 -68.835 69.742 -69.714 69.819 -69.626 70.096 -68.912 70.146 -69.473 69.929 -70.077 69.995 -70.071 70.198 -69.610 70.363 -68.742 70.538 -68.445 70.739 -69.192 70.676 -70.115 70.643 -70.835 70.225 -71.308 70.396 -71.242 70.442 -71.632 70.527 -71.626 70.690 -70.956 70.986 -70.643 70.945 -71.214 70.769 -72.302 71.003 -72.137 71.151 -71.396 71.437 -71.418 71.599 -72.198 71.489 -72.769 71.173 -73.379 71.423 -73.610 71.327 -74.038 71.382 -74.126 71.670 -73.769 71.659 -74.203 71.352 -74.813 71.538 -74.945 71.695 -75.027 71.890 -74.275 72.096 -74.736 71.835 -75.687 72.014 -75.505 71.970 -76.143 72.027 -76.093 72.162 -75.280 72.409 -75.143 72.547 -75.951 72.690 -76.736 72.720 -77.676 72.536 -78.429 72.206 -77.599 72.264 -78.451 71.898 -78.104 72.003 -78.736 72.181 -79.011 72.338 -79.593 72.250 -79.973 72.088 -80.555 72.327 -80.879 72.492 -80.813 72.753 -80.412 73.038 -80.610 73.283 -81.082 73.571 -81.308 73.725 -82.000 73.679 -83.011 73.448 -83.802 73.330 -84.648 73.091 -84.330 73.091 -85.159 72.882 -84.604 72.929 -85.264 72.714 -85.676 72.445 -85.225 72.190 -84.533 72.225 -85.148 72.044 -85.742 71.794 -85.478 71.624 -84.786 71.352 -84.709 71.044 -84.808 71.107 -85.044 71.044 -86.269 71.151 -85.940 71.291 -85.148 71.533 -85.489 71.775 -86.060 72.044 -86.396 72.332 -86.346 72.604 -86.555 72.876 -86.599 73.137 -86.231 73.409 -85.797 73.632 -85.115 73.808 -85.324 73.843 -86.357 73.766 -87.357 73.591 -88.176 73.330 -88.791 73.096 -89.198 72.797 -89.412 72.536 -89.747 72.250 -89.824 72.008 -89.951 71.714 -89.923 71.418 -89.907 71.280 -89.148 71.239 -88.209 71.033 -87.456 70.978 -88.302 71.019 -89.236 70.764 -89.236 70.511 -88.764 70.327 -88.077 70.327 -87.352 70.412 -86.720 70.357 -86.500 70.102 -86.198 70.052 -85.522 70.036 -84.687 69.967 -83.802 69.962 -82.978 69.852 -82.099 70.165 -82.516 70.074 -82.044 69.835 -81.170 70.030 -81.412 70.074 -81.038 69.989 -80.192 69.879 -79.484 69.989 -78.747 70.475 -79.099 70.332 -78.560 70.198 -77.945 69.879 -77.670 69.846 -77.396 69.791 -77.000 69.624 -76.610 69.401 -76.209 69.165 -75.681 69.025 -76.330 68.769 -76.456 68.907 -75.643 68.967 -74.940 68.780 -74.703 68.607 -74.082 68.560 -73.797 68.316 -73.489 68.176 -73.038 67.879 -72.802 67.604 -72.533 67.319 -72.324 67.088 -72.549 66.832 -72.918 66.709 -72.379 66.654 -71.577 66.945 -71.077 66.813 -70.549 66.684 -69.973 66.492 -69.440 66.247 -69.610 66.247 -70.407 66.069 -71.060 66.245 -71.165 66.516 -71.374 66.654 -72.027 66.692 -72.753 66.615 -73.368 66.396 -73.841 66.173 -74.346 65.904 -74.082 65.588 -73.643 65.486 -74.154 65.376 -74.808 65.286 -75.604 65.104 -75.423 64.874 -75.385 64.923 -75.516 65.170 -75.709 65.321 -76.280 65.431 -77.093 65.258 -77.434 65.044 -77.923 64.775 -78.159 64.497 -78.027 64.330 -77.566 64.245 -76.973 64.299 -76.440 64.453 -75.830 64.511 -75.412 64.467 -74.698 64.775 -74.769 64.775 -74.588 64.547 -74.099 64.585 -73.473 64.387 -73.324 64.154 -72.973 63.918 -72.544 63.758 -72.082 63.640 -71.516 63.426 -71.813 63.220 -71.681 63.055 -71.077 62.890 -70.692 62.769 -69.967 62.668 -69.484 62.440 -69.132 62.288 -68.632 62.203 -67.989 62.121 -67.407 62.003 -66.841 61.885 -66.236 62.099 -66.066 62.330 -66.313 62.585 -66.632 62.761 -67.077 62.978 -67.566 63.129 -67.984 63.368 -68.401 63.637 -68.830 63.698 -68.467 63.486 -67.929 63.624 -67.824 63.607 -67.681 63.360 -67.203 63.151 -66.791 63.201 -66.648 63.201 -66.582 63.019 -66.137 62.907 -65.626 62.698 -65.236 62.769 -65.060 62.962 -64.934 63.231 -64.984 63.613 -65.115 63.390 -64.681 63.613 -64.555 63.893 -64.808 64.066 -65.110 64.357 -65.324 64.549 -65.566 64.764 -65.940 64.912 -66.571 65.126 -66.923 65.409 -67.253 65.593 -67.692 65.747 -67.973 66.088 -68.330 66.030 -68.016 65.915 -67.549 66.063 -67.313 66.387 -67.802 66.352 -67.445 66.486 -67.390 66.555 -67.000 66.330 -66.533 66.239 -65.824 66.077 -65.813 65.997 -65.412 66.234 -64.676 66.082 -64.786 65.871 -65.324 65.648 -65.104 65.519 -64.989 65.316 -64.621 65.162 -64.165 65.008 -63.736 65.049 -63.440 65.335 -63.434 65.676 -63.478 65.657 -62.989 65.761 -62.670 66.016 -62.692 66.044 -62.225 66.291 -62.577 66.349 -61.885 66.516 -61.841 66.651 -61.593 66.912 -61.863 66.896 -62.379 66.775 -62.797 66.857 -62.890 66.824 -63.440 66.896 -63.489 67.214 -63.159 67.137 -63.626 67.102 -64.462 67.245 -64.445 67.409 -64.154 67.690 -64.357 67.745 -64.896 67.907 -65.011 67.769 -65.396 67.860 -65.516 67.810 -65.885 68.003 -65.945 67.912 -66.247 68.014 -66.538 68.187 -67.159 ; #6 1 -9.201 141.110 -9.173 141.379 -9.220 141.670 -9.203 141.962 -9.190 142.253 -9.291 142.533 -9.253 142.802 -9.104 143.055 -8.984 143.335 -8.709 143.341 -8.503 143.137 -8.390 142.863 -8.341 142.582 -8.236 142.280 -8.236 142.368 -8.294 142.626 -8.310 142.912 -8.286 143.198 -8.217 143.533 -7.986 143.467 -7.964 143.500 -7.964 143.852 -7.571 143.747 -7.635 143.857 -7.761 144.126 -7.687 144.368 -7.602 144.555 -7.679 144.835 -7.813 145.082 -7.898 145.357 -7.945 145.659 -8.014 145.868 -8.170 146.121 -8.415 146.280 -8.657 146.456 -8.890 146.577 -9.082 146.863 -9.299 146.951 -9.486 147.154 -9.648 147.390 -9.901 147.549 -10.066 147.802 -10.124 148.077 -10.165 148.352 -10.173 148.681 -10.253 148.940 -10.275 149.231 -10.341 149.505 -10.451 149.907 -10.596 150.000 -10.676 150.275 -10.615 150.560 -10.407 150.489 -10.294 150.725 -10.245 150.632 -10.184 150.352 -10.088 150.077 -9.959 149.830 -9.734 149.918 -9.618 149.769 -9.585 149.478 -9.415 149.231 -9.074 149.253 -9.058 148.945 -9.074 148.648 -8.852 148.495 -8.624 148.341 -8.393 148.214 -8.107 148.115 -7.964 147.868 -7.799 147.637 -7.602 147.445 -7.431 147.209 -7.132 147.088 -6.868 146.967 -6.734 147.170 -6.747 147.467 -6.690 147.780 -6.437 147.841 -6.209 147.687 -6.000 147.484 -5.953 147.203 -5.871 146.929 -5.750 146.670 -5.607 146.412 -5.533 146.132 -5.462 145.830 -5.195 145.780 -4.901 145.780 -4.679 145.604 -4.467 145.412 -4.371 145.148 -4.187 144.923 -4.030 144.692 -3.854 144.478 -3.827 144.187 -3.725 143.923 -3.566 143.681 -3.418 143.434 -3.365 143.143 -3.308 142.863 -3.223 142.582 -3.124 142.313 -3.014 142.049 -2.901 141.780 -2.775 141.516 -2.657 141.258 -2.607 140.978 -2.549 140.714 -2.431 140.434 -2.371 140.165 -2.368 139.879 -2.272 139.610 -2.146 139.346 -2.022 139.082 -1.912 138.819 -1.769 138.566 -1.681 138.291 -1.566 138.027 -1.503 137.764 -1.621 137.495 -1.758 137.236 -1.975 137.176 -2.132 137.033 -2.231 136.758 -2.231 136.467 -2.440 136.302 -2.659 136.121 -2.871 135.945 -3.088 135.769 -3.283 135.555 -3.374 135.297 -3.310 135.000 -3.115 134.846 -2.915 134.742 -2.574 134.621 -2.714 134.484 -2.613 134.357 -2.374 134.203 -2.096 134.137 -1.808 134.115 -1.555 134.192 -1.275 134.220 -0.970 134.093 -0.777 134.022 -0.742 133.747 -0.728 133.456 -0.574 133.198 -0.459 132.934 -0.371 132.659 -0.371 132.368 -0.484 132.104 -0.665 131.879 -0.755 131.582 -0.838 131.308 -1.113 131.225 -1.319 131.027 -1.470 131.099 -1.451 131.357 -1.527 131.681 -1.610 131.907 -1.852 131.967 -2.074 132.099 -2.239 132.363 -2.253 132.654 -2.266 132.945 -2.223 133.236 -2.225 133.538 -2.148 133.808 -2.286 133.907 -2.544 133.769 -2.580 133.473 -2.511 133.341 -2.470 133.082 -2.676 132.879 -2.764 132.643 -2.706 132.379 -2.794 132.055 -2.945 132.192 -3.055 132.467 -3.269 132.676 -3.456 132.857 -3.690 132.791 -3.978 132.841 -4.082 133.071 -3.984 133.330 -3.739 133.445 -3.459 133.560 -3.088 133.786 -3.228 133.720 -3.596 133.736 -3.772 133.945 -3.896 134.225 -3.967 134.500 -3.937 134.830 -4.036 134.731 -4.275 134.879 -4.420 135.137 -4.448 135.418 -4.489 135.709 -4.549 135.989 -4.668 136.253 -4.769 136.522 -4.890 136.791 -4.937 137.060 -5.025 137.313 -5.176 137.593 -5.330 137.835 -5.511 138.049 -5.769 138.253 -6.036 138.324 -6.305 138.423 -6.604 138.681 -6.766 138.769 -6.907 139.060 -6.907 139.022 -6.926 138.687 -7.187 139.033 -7.203 138.797 -7.308 138.813 -7.536 139.016 -7.813 138.989 -8.151 138.907 -8.055 139.181 -8.132 139.291 -8.157 139.566 -8.025 140.000 -8.239 140.038 -8.440 140.275 -8.635 140.489 -8.860 140.670 -9.055 140.885 ; #7 1 4.316 117.670 4.255 117.995 4.327 118.286 4.478 118.527 4.717 118.264 4.951 118.236 4.970 118.511 4.984 118.797 5.077 119.077 5.277 119.258 5.420 119.066 5.489 118.835 5.629 118.588 5.799 118.341 5.725 118.055 5.882 118.044 5.978 117.885 5.901 117.626 5.962 117.599 6.231 117.670 6.486 117.654 6.604 117.407 6.863 117.242 6.915 117.066 6.742 116.857 6.912 116.709 6.624 116.577 6.401 116.385 6.223 116.220 5.973 116.088 5.712 115.923 5.555 115.670 5.470 115.467 5.250 115.478 5.033 115.500 4.909 115.231 4.948 115.016 4.874 114.731 4.695 114.500 4.596 114.231 4.500 113.995 4.206 113.890 3.978 113.709 3.783 113.489 3.555 113.319 3.330 113.132 3.135 112.934 3.049 112.659 2.981 112.379 2.909 112.099 2.868 111.813 2.764 111.549 2.511 111.445 2.368 111.324 2.135 111.253 1.838 111.132 1.602 111.115 1.407 111.176 1.522 110.736 1.670 110.473 1.720 110.247 1.725 109.929 1.904 109.698 2.000 109.538 1.819 109.319 1.588 109.148 1.299 109.110 1.074 108.956 0.777 108.890 0.475 108.929 0.261 109.038 0.022 109.209 -0.258 109.126 -0.536 109.187 -0.692 109.368 -0.879 109.418 -0.945 109.698 -1.154 109.907 -1.401 110.049 -1.703 109.989 -1.912 110.016 -2.179 110.115 -2.497 110.203 -2.739 110.214 -2.951 110.330 -2.981 110.637 -2.986 110.868 -3.008 111.159 -2.953 111.440 -2.912 111.670 -2.871 111.758 -3.179 111.824 -3.481 111.918 -3.335 112.247 -3.409 112.544 -3.297 112.808 -3.104 112.989 -3.041 113.121 -3.217 113.357 -3.275 113.615 -3.462 113.758 -3.341 114.022 -3.310 114.231 -3.451 114.473 -3.706 114.593 -4.000 114.615 -4.143 114.742 -4.008 115.016 -3.896 115.280 -3.791 115.555 -3.662 115.819 -3.481 116.011 -3.231 116.159 -3.019 116.165 -2.890 116.264 -2.563 116.390 -2.343 116.577 -2.184 116.467 -2.066 116.390 -1.753 116.368 -1.484 116.582 -1.247 116.753 -1.168 116.802 -1.132 117.060 -0.893 117.269 -0.772 117.516 -0.495 117.538 -0.217 117.467 0.088 117.495 0.363 117.566 0.624 117.692 0.805 117.901 0.951 117.978 1.025 117.995 0.854 118.264 0.827 118.538 0.846 118.824 1.047 118.923 1.253 118.703 1.431 118.456 1.596 118.220 1.777 118.000 2.030 117.852 2.291 118.038 2.547 117.890 2.813 117.709 3.003 117.593 3.245 117.368 3.467 117.319 3.626 117.214 3.679 117.560 3.780 117.742 3.970 117.566 4.137 117.456 ; #8 2 82.582 -76.181 82.824 -77.104 82.901 -78.769 82.764 -79.555 82.717 -80.093 82.657 -81.390 82.451 -82.220 82.179 -81.352 81.945 -79.780 81.959 -80.181 82.137 -82.335 82.223 -83.269 82.423 -84.775 82.308 -85.863 81.986 -85.368 82.000 -86.819 82.027 -88.582 81.742 -90.665 81.533 -90.247 81.519 -88.500 81.418 -89.297 81.176 -89.753 81.052 -88.588 81.190 -85.907 81.041 -86.516 80.931 -88.753 80.681 -87.923 80.810 -86.747 81.027 -85.599 81.140 -83.308 81.077 -83.764 80.967 -85.467 80.703 -86.495 80.552 -85.714 80.681 -83.747 80.692 -82.615 80.632 -81.220 80.810 -79.786 81.102 -79.137 81.352 -77.599 81.264 -77.835 80.992 -78.725 80.896 -77.313 80.824 -77.621 80.692 -79.297 80.599 -78.808 80.552 -79.055 80.470 -80.665 80.368 -82.495 80.154 -82.610 79.909 -81.670 79.684 -80.593 79.610 -81.038 79.747 -81.929 79.997 -82.769 80.220 -83.868 80.299 -85.544 80.176 -86.571 79.920 -86.049 79.684 -85.538 79.442 -84.687 79.124 -84.077 78.962 -84.005 78.942 -82.038 78.734 -82.615 78.813 -83.736 78.882 -85.203 78.755 -86.626 78.511 -87.209 78.190 -87.319 78.190 -86.049 78.407 -84.918 78.275 -84.665 78.107 -84.720 77.876 -85.071 77.635 -84.775 77.555 -83.742 77.931 -82.764 77.797 -82.769 77.500 -83.473 77.360 -84.176 77.412 -85.396 77.643 -85.929 77.860 -86.791 77.786 -88.060 77.511 -87.802 77.283 -87.082 77.146 -87.313 77.058 -88.544 76.821 -89.396 76.525 -89.379 76.582 -88.632 76.467 -87.885 76.484 -86.670 76.338 -85.720 76.418 -84.753 76.566 -83.681 76.591 -82.473 76.508 -81.527 76.247 -80.868 76.264 -79.885 76.467 -78.830 76.615 -78.005 76.890 -77.874 76.915 -78.780 77.110 -79.198 77.179 -80.225 77.231 -81.604 77.456 -81.676 77.440 -81.236 77.299 -80.110 77.335 -78.786 77.563 -77.967 77.887 -78.044 77.959 -76.566 78.135 -76.209 78.255 -75.577 78.473 -76.000 78.549 -75.225 78.813 -75.011 78.942 -76.275 78.893 -77.874 78.992 -78.187 79.124 -77.352 79.173 -76.423 79.093 -74.907 79.234 -75.297 79.297 -77.247 79.431 -76.736 79.431 -75.247 79.503 -73.753 79.791 -73.978 79.791 -73.192 79.780 -71.511 80.096 -71.544 80.368 -70.379 80.481 -69.214 80.728 -68.352 80.942 -67.242 81.176 -66.071 81.404 -64.736 81.495 -65.588 81.365 -67.302 81.176 -69.467 81.264 -69.099 81.442 -67.302 81.599 -68.440 81.599 -67.824 81.676 -65.769 81.797 -64.115 82.000 -62.451 82.236 -61.341 82.481 -62.456 82.687 -63.407 82.824 -64.918 82.703 -67.467 82.824 -66.951 82.962 -67.934 83.041 -70.390 83.025 -71.824 82.854 -73.104 82.948 -74.110 83.025 -76.176 82.871 -76.670 82.599 -75.901 ; #9 -1 43.030 -86.247 43.217 -86.313 43.470 -86.467 43.747 -86.484 44.041 -86.473 44.313 -86.313 44.604 -86.247 44.846 -86.071 45.088 -85.709 44.904 -85.566 44.989 -85.407 45.275 -85.330 45.467 -85.044 45.750 -84.879 45.692 -84.473 45.555 -84.115 45.423 -83.758 45.266 -83.423 45.011 -83.368 44.701 -83.302 44.404 -83.346 44.179 -83.549 43.956 -83.830 43.690 -83.863 43.698 -83.533 43.926 -83.308 44.030 -82.912 43.824 -82.654 43.538 -82.577 43.250 -82.511 43.060 -82.302 43.225 -81.945 43.451 -81.720 43.745 -81.720 44.041 -81.714 44.313 -81.571 44.549 -81.335 44.838 -81.319 45.151 -81.566 45.179 -81.330 44.918 -81.088 44.714 -80.918 44.635 -80.560 44.522 -80.143 44.791 -79.874 44.964 -79.901 45.250 -80.082 45.464 -80.346 45.670 -80.571 45.907 -80.808 45.978 -81.220 46.038 -81.626 46.118 -82.044 46.179 -82.467 46.187 -82.852 46.212 -83.258 46.277 -83.670 46.387 -84.038 46.538 -84.412 46.786 -84.467 46.992 -84.665 47.305 -84.654 47.555 -84.923 47.863 -84.923 47.951 -85.269 47.948 -85.698 48.121 -86.016 48.387 -86.198 48.681 -86.363 48.769 -86.725 48.783 -87.159 48.871 -87.599 48.970 -88.077 48.659 -88.363 48.486 -88.753 48.486 -89.088 48.239 -89.269 48.033 -89.527 47.871 -89.901 47.761 -90.297 47.646 -90.692 47.467 -91.033 47.250 -91.324 47.052 -91.632 46.824 -91.989 46.717 -91.775 46.819 -91.346 46.920 -90.962 46.725 -90.868 46.637 -90.676 46.629 -90.258 46.772 -89.890 46.852 -89.489 46.978 -89.110 47.148 -88.703 46.909 -88.473 46.896 -88.253 46.893 -87.846 46.723 -87.549 46.530 -87.242 46.475 -86.797 46.555 -86.440 46.681 -86.066 46.692 -85.637 46.753 -85.143 46.527 -84.951 46.470 -84.533 46.341 -84.236 46.080 -84.044 45.992 -84.269 45.962 -84.659 45.992 -85.000 46.088 -85.401 45.975 -85.797 45.934 -86.214 45.723 -86.522 45.755 -86.621 45.805 -86.863 45.769 -87.077 45.519 -87.280 45.269 -87.484 45.016 -87.681 44.684 -87.945 44.769 -87.527 44.467 -87.495 44.181 -87.560 43.907 -87.714 43.624 -87.747 43.352 -87.868 43.069 -87.879 42.783 -87.797 42.492 -87.808 42.203 -87.786 41.942 -87.637 41.687 -87.451 41.662 -87.093 41.808 -86.758 42.041 -86.538 42.297 -86.352 42.574 -86.247 42.860 -86.220 ; #10 1 -5.591 120.115 -5.547 120.363 -5.277 120.335 -5.005 120.297 -4.742 120.396 -4.448 120.385 -4.162 120.368 -3.876 120.379 -3.602 120.418 -3.299 120.390 -3.027 120.258 -2.813 120.445 -2.657 120.681 -2.670 120.962 -2.865 121.049 -3.187 121.033 -3.462 120.901 -3.701 121.066 -3.885 121.275 -4.049 121.544 -4.288 121.549 -4.593 121.495 -4.797 121.676 -4.802 122.005 -4.525 122.148 -4.440 122.429 -4.409 122.720 -4.192 122.863 -4.041 122.659 -3.841 122.533 -3.635 122.280 -3.349 122.330 -3.124 122.385 -2.876 122.231 -2.657 122.022 -2.398 121.879 -2.198 121.681 -1.918 121.401 -1.901 121.626 -1.706 121.857 -1.604 122.132 -1.467 122.385 -1.253 122.582 -1.030 122.758 -0.887 122.989 -0.975 123.264 -0.739 123.418 -0.574 123.181 -0.676 122.868 -0.775 122.670 -0.761 122.390 -0.863 122.126 -0.948 121.857 -0.865 121.582 -1.060 121.335 -1.294 121.165 -1.396 120.940 -1.321 120.659 -1.052 120.527 -0.896 120.297 -0.676 120.104 -0.398 120.033 -0.110 120.033 0.159 120.132 0.396 120.297 0.522 120.549 0.459 120.830 0.440 121.110 0.481 121.412 0.503 121.676 0.448 121.951 0.481 122.231 0.492 122.544 0.486 122.797 0.453 123.093 0.310 123.346 0.294 123.637 0.330 123.929 0.379 124.209 0.497 124.478 0.725 124.626 0.937 124.830 1.157 125.016 1.423 125.165 1.665 125.099 1.577 124.868 1.360 124.626 1.187 124.478 1.011 124.253 0.876 123.984 0.854 123.703 0.901 123.423 0.942 123.154 0.874 122.863 0.962 122.588 1.016 122.302 1.055 122.016 1.074 121.736 1.184 121.467 1.264 121.236 1.327 120.934 1.118 120.797 0.885 120.621 0.893 120.346 0.780 120.148 0.549 119.995 0.291 119.835 -0.025 119.764 -0.272 119.780 -0.687 119.791 -0.802 119.599 -1.063 119.445 -1.313 119.319 -1.602 119.313 -1.904 119.319 -2.157 119.165 -2.437 119.104 -2.637 118.885 -2.857 118.819 -3.135 118.813 -3.478 118.912 -3.484 119.176 -3.527 119.451 -3.816 119.505 -4.063 119.610 -4.379 119.610 -4.662 119.538 -4.948 119.495 -5.214 119.385 -5.516 119.434 -5.659 119.643 -5.602 119.934 ; #11 1 5.525 95.220 5.308 95.242 5.044 95.335 4.775 95.473 4.571 95.665 4.360 95.879 4.170 96.099 3.975 96.308 3.772 96.516 3.709 96.808 3.500 97.011 3.266 97.187 3.027 97.346 2.843 97.571 2.563 97.648 2.305 97.753 2.223 98.016 2.060 98.275 1.920 98.522 1.681 98.747 1.420 98.791 1.151 98.896 0.874 98.984 0.602 99.077 0.308 99.159 0.184 99.407 0.044 99.659 -0.203 99.786 -0.429 99.956 -0.648 100.143 -0.879 100.324 -1.159 100.407 -1.401 100.571 -1.659 100.687 -1.909 100.841 -2.192 100.868 -2.456 101.005 -2.657 101.209 -2.868 101.390 -3.118 101.538 -3.324 101.736 -3.492 101.973 -3.670 102.209 -3.937 102.313 -4.140 102.516 -4.313 102.747 -4.500 102.967 -4.662 103.209 -4.841 103.423 -4.975 103.692 -5.168 103.907 -5.393 104.071 -5.602 104.291 -5.852 104.577 -5.604 104.588 -5.574 104.758 -5.742 105.077 -5.577 105.225 -5.599 105.423 -5.802 105.665 -5.637 105.819 -5.349 105.841 -5.063 105.874 -4.775 105.879 -4.486 105.885 -4.206 105.824 -3.909 105.912 -3.646 105.841 -3.363 105.945 -3.126 106.060 -2.926 105.885 -2.695 105.725 -2.440 105.566 -2.365 105.264 -2.341 104.967 -2.588 104.670 -2.398 104.698 -2.124 104.841 -1.959 104.610 -1.758 104.511 -1.470 104.456 -1.187 104.407 -1.049 104.236 -1.019 103.923 -0.951 103.676 -0.761 103.440 -0.505 103.456 -0.308 103.412 -0.173 103.456 -0.022 103.681 0.236 103.742 0.412 103.538 0.489 103.269 0.338 103.016 0.214 102.610 0.277 102.747 0.442 103.016 0.681 102.918 0.736 102.632 0.849 102.379 1.074 102.209 1.343 102.115 1.538 101.896 1.662 101.648 1.772 101.396 2.041 101.275 2.239 101.055 2.041 100.874 2.104 100.681 2.264 100.451 2.585 100.231 2.670 100.022 2.937 99.945 3.148 99.747 3.302 99.505 3.484 99.280 3.635 99.038 3.766 98.769 3.970 98.571 4.113 98.286 4.297 98.258 4.533 98.099 4.761 97.962 4.978 97.786 5.181 97.560 5.184 97.275 5.258 97.000 5.242 96.714 5.220 96.429 5.286 96.143 5.451 95.912 5.599 95.665 5.613 95.379 ; #12 -1 39.223 49.247 39.052 49.044 38.764 48.863 38.459 48.879 38.170 48.890 37.887 48.962 37.637 49.126 37.497 49.445 37.462 49.841 37.368 50.154 37.129 50.368 36.948 50.648 36.797 50.956 36.698 51.291 36.632 51.643 36.591 52.000 36.665 52.352 36.728 52.703 36.805 53.055 36.874 53.407 36.904 53.769 36.909 53.879 37.341 53.912 37.626 53.846 37.918 53.808 38.206 53.852 38.497 53.841 38.777 53.918 39.025 53.819 39.217 53.626 39.299 53.231 39.503 53.165 39.555 53.330 39.602 53.560 39.907 53.440 39.893 52.989 40.102 52.764 40.385 52.720 40.670 52.835 40.904 53.016 40.794 53.423 40.745 53.681 40.662 53.956 40.764 54.302 40.904 54.626 41.140 54.648 41.335 54.324 41.544 54.060 41.830 53.962 42.091 53.797 42.102 53.385 42.016 53.027 41.728 52.846 41.462 52.857 41.258 52.797 41.665 52.533 41.942 52.462 42.209 52.489 42.473 52.648 42.709 52.626 42.843 52.214 42.923 51.846 43.148 51.582 43.266 51.302 43.571 51.220 43.819 51.022 44.080 50.868 44.269 50.610 44.396 50.269 44.618 50.374 44.610 50.808 44.519 51.198 44.599 51.396 44.904 51.027 45.126 51.258 45.354 51.522 45.398 51.901 45.398 52.335 45.352 52.736 45.401 53.027 45.701 52.819 45.953 53.033 46.231 53.137 46.519 53.082 46.791 53.104 46.945 52.780 46.907 52.341 46.879 51.989 46.997 51.648 47.088 51.242 46.984 50.824 46.857 50.484 46.709 50.143 46.549 49.725 46.492 49.357 46.264 49.148 46.093 48.808 45.893 48.593 45.742 48.143 45.670 47.687 45.585 47.478 45.245 47.363 44.978 47.176 44.808 46.978 44.549 46.714 44.352 46.951 44.157 47.236 43.868 47.440 43.681 47.511 43.305 47.516 43.019 47.511 42.769 47.709 42.527 47.896 42.291 48.126 42.041 48.324 41.838 48.577 41.615 48.830 41.382 49.049 41.110 49.181 40.871 49.396 40.643 49.610 40.560 50.000 40.404 50.308 40.308 50.236 40.305 49.835 40.115 49.500 39.835 49.418 39.547 49.324 39.330 49.385 ; #13 1 -21.997 43.275 -22.250 43.275 -22.560 43.313 -22.841 43.396 -23.074 43.582 -23.349 43.681 -23.593 43.725 -23.890 43.681 -24.179 43.692 -24.442 43.780 -24.676 43.956 -24.953 44.071 -25.168 44.352 -25.272 44.566 -25.354 44.874 -25.530 45.143 -25.555 45.445 -25.445 45.736 -25.294 46.011 -25.187 46.308 -25.157 46.632 -25.055 46.929 -24.879 47.148 -24.591 47.264 -24.313 47.368 -24.047 47.484 -23.777 47.604 -23.492 47.670 -23.217 47.764 -22.937 47.841 -22.651 47.890 -22.368 47.973 -22.093 48.066 -21.830 48.181 -21.552 48.280 -21.277 48.368 -20.995 48.445 -20.712 48.522 -20.431 48.604 -20.165 48.720 -19.912 48.808 -19.613 48.890 -19.341 48.995 -19.063 49.082 -18.797 49.198 -18.525 49.308 -18.247 49.396 -17.970 49.445 -17.687 49.511 -17.407 49.451 -17.124 49.516 -16.896 49.687 -16.725 49.791 -16.418 49.852 -16.148 49.791 -15.874 49.714 -15.585 49.659 -15.486 49.868 -15.753 50.000 -15.918 50.214 -15.673 50.390 -15.393 50.484 -15.124 50.429 -14.865 50.291 -14.585 50.214 -14.294 50.192 -14.005 50.159 -13.717 50.115 -13.431 50.027 -13.165 49.951 -12.898 49.852 -12.720 49.659 -12.437 49.538 -12.143 49.275 -12.272 49.082 -12.475 48.852 -12.766 48.923 -13.041 48.868 -13.330 48.786 -13.456 48.522 -13.687 48.308 -13.577 48.071 -13.676 47.907 -14.104 47.984 -14.228 47.863 -14.602 47.868 -14.742 47.676 -15.011 47.516 -14.824 47.440 -14.918 47.297 -15.360 47.093 -15.258 46.923 -15.409 46.654 -15.580 46.434 -15.832 46.390 -15.901 46.335 -15.794 46.082 -15.794 45.808 -15.959 45.588 -16.016 45.302 -16.124 45.005 -16.201 44.747 -16.280 44.467 -16.591 44.451 -16.857 44.330 -17.110 44.170 -17.352 44.022 -17.629 43.984 -17.901 44.038 -18.187 44.055 -18.467 44.110 -18.728 44.242 -18.997 44.264 -19.280 44.374 -19.541 44.473 -19.827 44.456 -20.085 44.418 -20.338 44.264 -20.566 44.110 -20.827 43.940 -21.107 43.846 -21.288 43.626 -21.478 43.478 -21.777 43.396 ; #14 1 41.486 140.989 41.255 140.813 41.201 141.126 40.959 141.181 40.909 140.813 41.170 140.516 41.022 140.324 40.766 140.148 40.566 139.918 40.272 140.005 39.942 139.841 39.695 140.060 39.404 140.022 39.140 139.890 38.860 139.791 38.613 139.599 38.341 139.462 38.074 139.335 37.915 139.033 37.709 138.797 37.456 138.621 37.255 138.368 37.121 138.055 37.000 137.720 36.857 137.418 36.808 137.099 37.104 136.973 37.393 137.258 37.437 137.044 37.286 136.747 37.019 136.742 36.728 136.692 36.489 136.495 36.277 136.236 36.038 136.022 35.734 136.038 35.547 135.769 35.511 135.429 35.643 135.209 35.646 134.824 35.621 134.467 35.525 134.137 35.495 133.780 35.503 133.368 35.541 133.066 35.423 132.720 35.209 132.495 35.014 132.236 34.819 131.978 34.654 131.681 34.467 131.423 34.398 131.110 34.223 130.896 33.986 130.995 33.981 131.363 34.011 131.709 33.863 132.038 33.981 132.176 34.266 132.286 34.261 132.560 34.313 132.995 34.343 133.247 34.462 133.516 34.519 133.918 34.662 134.214 34.758 134.522 34.698 134.857 34.662 135.181 34.577 135.412 34.299 135.165 34.011 135.121 33.761 135.280 33.558 135.467 33.489 135.797 33.692 136.000 33.975 136.214 34.187 136.401 34.283 136.742 34.415 136.868 34.624 136.588 34.898 136.643 34.882 136.890 34.698 137.159 34.635 137.352 34.651 137.698 34.629 138.099 34.813 138.319 35.033 138.676 34.714 138.857 34.915 139.110 35.190 139.170 35.239 139.593 35.538 139.863 35.310 139.874 34.997 139.835 35.022 140.044 35.184 140.346 35.475 140.451 35.668 140.709 35.816 140.786 36.074 140.615 36.354 140.599 36.637 140.692 36.893 140.857 37.146 141.000 37.434 141.033 37.717 141.000 38.000 140.929 38.291 141.071 38.352 141.385 38.437 141.511 38.698 141.527 38.956 141.698 39.203 141.907 39.489 142.005 39.764 141.984 40.052 141.890 40.316 141.775 40.549 141.533 40.819 141.412 41.110 141.407 41.360 141.346 ; #15 1 58.571 -5.022 58.365 -5.066 58.168 -5.286 57.948 -5.242 57.890 -5.368 57.780 -5.714 57.475 -5.698 57.269 -5.577 57.000 -5.698 56.720 -5.896 56.544 -5.747 56.709 -5.297 56.648 -5.247 56.445 -5.418 56.096 -5.604 55.849 -5.593 55.440 -5.681 55.580 -5.489 55.852 -5.390 56.143 -5.170 55.984 -4.978 55.772 -4.879 55.508 -4.698 55.223 -4.901 54.951 -5.088 54.755 -4.879 54.797 -4.335 54.830 -3.885 54.959 -3.297 54.868 -3.319 54.585 -3.571 54.319 -3.423 54.157 -3.066 53.951 -2.940 53.684 -2.995 53.360 -2.978 53.305 -3.291 53.294 -3.791 53.162 -4.225 52.893 -4.599 52.852 -4.352 52.640 -4.055 52.379 -4.121 52.176 -4.440 52.047 -4.868 51.832 -5.187 51.668 -4.934 51.690 -4.313 51.574 -4.049 51.489 -3.687 51.412 -3.264 51.637 -2.654 51.462 -2.808 51.242 -3.077 51.206 -3.533 51.206 -4.011 51.036 -4.341 50.805 -4.588 50.582 -4.879 50.368 -5.148 50.159 -5.566 50.063 -5.385 50.115 -5.060 50.280 -4.753 50.341 -4.269 50.258 -3.835 50.407 -3.527 50.643 -3.335 50.701 -2.841 50.588 -2.423 50.662 -1.973 50.794 -1.489 50.816 -1.104 50.777 -0.775 50.810 -0.264 50.775 0.198 50.876 0.632 51.000 1.016 51.272 1.363 51.431 0.725 51.692 0.890 51.909 1.242 52.099 1.549 52.374 1.703 52.657 1.714 52.874 1.423 52.956 0.973 52.890 0.500 52.912 0.154 53.209 0.324 53.475 0.110 53.679 -0.440 53.665 -0.066 53.901 -0.137 54.168 -0.236 54.429 -0.533 54.588 -0.978 54.742 -1.253 55.025 -1.429 55.302 -1.555 55.585 -1.703 55.805 -2.022 55.973 -2.423 56.005 -2.868 56.003 -3.451 56.052 -3.319 56.223 -2.791 56.387 -3.005 56.440 -2.995 56.574 -2.560 56.810 -2.302 57.085 -2.099 57.352 -1.901 57.596 -1.879 57.668 -2.374 57.679 -2.907 57.687 -3.451 57.596 -4.148 57.797 -4.000 58.038 -3.797 58.236 -3.396 58.549 -3.159 58.599 -3.643 58.533 -4.264 58.547 -4.725 ; #16 1 72.613 -114.538 72.753 -114.220 73.033 -114.005 73.308 -114.313 73.269 -115.214 73.129 -116.077 72.973 -116.929 72.791 -117.637 72.580 -118.291 72.294 -118.341 72.044 -118.824 71.709 -119.005 71.635 -118.214 71.514 -117.973 71.423 -117.423 71.478 -116.462 71.519 -115.505 71.448 -115.747 71.341 -116.297 71.228 -117.137 71.115 -117.984 70.890 -118.253 70.654 -117.604 70.613 -116.780 70.596 -115.951 70.607 -115.055 70.676 -114.198 70.643 -113.368 70.533 -112.571 70.357 -111.747 70.272 -112.099 70.231 -112.819 70.277 -113.709 70.305 -114.544 70.261 -115.401 70.192 -116.231 70.102 -117.044 69.879 -117.330 69.613 -116.857 69.412 -116.423 69.277 -115.654 69.261 -114.857 69.228 -113.896 69.036 -113.621 68.753 -113.549 68.503 -113.126 68.508 -112.352 68.544 -111.456 68.585 -110.819 68.624 -110.022 68.701 -109.247 68.882 -108.577 68.956 -107.841 69.110 -107.176 69.390 -106.758 69.255 -106.308 69.143 -105.687 68.997 -105.071 68.896 -104.363 68.821 -103.555 68.849 -102.775 69.071 -101.989 69.368 -102.209 69.250 -103.000 69.363 -103.071 69.582 -103.335 69.629 -102.835 69.808 -102.214 69.742 -101.390 69.885 -100.912 70.140 -101.247 70.294 -101.896 70.538 -102.857 70.591 -103.407 70.805 -103.984 71.060 -104.473 71.357 -104.390 71.640 -104.456 71.909 -104.808 72.190 -105.033 72.473 -105.242 72.753 -105.412 73.011 -105.857 73.223 -106.582 73.269 -107.577 73.096 -108.159 72.777 -108.066 72.497 -107.890 72.220 -107.753 71.920 -107.429 71.701 -107.681 71.761 -108.170 72.038 -108.368 72.327 -108.610 72.599 -108.879 72.816 -109.478 72.986 -110.264 72.772 -110.181 72.527 -110.110 72.434 -110.956 72.327 -111.555 72.352 -111.709 72.637 -111.324 72.849 -111.885 72.973 -112.846 72.734 -113.533 72.613 -114.165 ; #17 1 21.846 -84.874 21.871 -84.560 21.854 -84.324 21.992 -84.022 22.170 -83.808 22.201 -83.495 22.321 -83.242 22.511 -83.000 22.668 -82.731 22.684 -82.418 22.673 -82.099 22.580 -81.742 22.409 -82.011 22.253 -81.907 22.192 -81.632 22.143 -81.269 22.135 -81.093 22.052 -80.802 22.085 -80.473 21.874 -80.225 21.731 -79.940 21.662 -79.626 21.571 -79.341 21.580 -79.033 21.585 -78.725 21.327 -78.549 21.055 -78.467 20.860 -78.242 20.717 -77.989 20.692 -77.676 20.668 -77.330 20.429 -77.159 20.206 -77.368 19.945 -77.626 19.874 -77.357 19.890 -77.071 19.934 -76.769 19.953 -76.451 19.975 -76.148 19.956 -75.846 19.893 -75.544 19.951 -75.170 19.953 -74.956 20.047 -74.665 20.168 -74.269 20.360 -74.484 20.560 -74.714 20.676 -75.011 20.701 -75.319 20.777 -75.643 20.992 -75.676 21.096 -75.967 21.195 -76.220 21.247 -76.544 21.341 -76.780 21.519 -77.066 21.593 -77.236 21.843 -77.478 21.753 -77.434 21.739 -77.484 21.882 -77.813 22.030 -78.033 22.179 -78.297 22.308 -78.566 22.374 -78.813 22.387 -79.170 22.497 -79.445 22.709 -79.654 22.874 -79.901 22.929 -80.209 23.047 -80.549 23.082 -80.791 23.115 -81.137 23.104 -81.429 23.154 -81.687 23.176 -82.005 23.159 -82.324 23.055 -82.615 23.005 -82.945 22.964 -83.220 22.852 -83.522 22.753 -83.824 22.635 -84.099 22.420 -84.324 22.126 -84.352 22.022 -84.462 21.929 -84.797 ; #18 1 51.541 -55.764 51.544 -56.082 51.404 -56.489 51.201 -56.786 50.970 -56.984 50.673 -57.258 50.451 -57.462 50.179 -57.615 49.909 -57.791 49.544 -57.879 49.387 -58.192 49.121 -58.011 49.066 -58.319 48.698 -58.747 48.591 -59.077 48.489 -58.560 48.294 -58.753 48.096 -59.071 47.868 -59.335 47.602 -59.165 47.615 -58.681 47.687 -58.313 47.659 -57.890 47.618 -57.456 47.574 -57.049 47.593 -56.670 47.703 -56.198 47.838 -55.863 47.742 -55.802 47.552 -55.956 47.497 -55.753 47.599 -55.423 47.659 -55.115 47.618 -54.907 47.407 -55.209 47.173 -55.467 47.038 -55.857 46.879 -55.725 46.948 -55.319 47.159 -55.071 47.423 -54.659 47.462 -54.451 47.775 -54.258 47.786 -54.038 47.473 -53.890 47.245 -53.989 46.953 -54.159 46.860 -53.978 47.096 -53.670 47.033 -53.566 46.761 -53.527 46.695 -53.137 46.973 -52.896 47.228 -52.813 47.610 -52.714 47.492 -53.060 47.610 -53.203 48.016 -53.005 47.934 -53.330 47.629 -53.599 47.799 -53.808 48.074 -53.791 48.239 -53.516 48.505 -53.126 48.525 -53.434 48.442 -53.835 48.574 -53.791 48.761 -53.929 49.000 -53.769 49.253 -53.566 49.434 -53.995 49.409 -54.401 49.363 -54.769 49.291 -55.192 49.418 -55.462 49.475 -55.874 49.621 -56.000 49.885 -55.703 50.033 -56.071 49.923 -56.407 49.673 -56.731 49.758 -56.808 50.025 -56.703 50.319 -56.462 50.541 -56.247 50.805 -56.066 51.033 -55.791 51.236 -55.967 51.343 -55.835 51.497 -55.511 ; #19 1 -39.651 176.934 -39.456 176.929 -39.209 177.093 -39.085 177.429 -39.146 177.802 -39.124 177.929 -38.794 177.956 -38.610 178.198 -38.349 178.330 -38.060 178.363 -37.745 178.484 -37.566 178.170 -37.659 177.824 -37.868 177.588 -37.992 177.214 -37.926 176.901 -37.805 176.566 -37.629 176.126 -37.442 176.005 -37.151 175.901 -36.854 175.802 -36.626 175.560 -36.808 175.489 -37.154 175.533 -37.030 175.275 -36.868 174.841 -36.657 174.775 -36.396 174.780 -36.129 174.654 -35.827 174.473 -35.604 174.516 -35.324 174.297 -35.187 174.071 -35.030 173.791 -34.926 173.434 -34.808 173.159 -34.511 172.940 -34.651 172.885 -34.885 173.093 -35.168 173.159 -35.379 173.434 -35.624 173.467 -35.876 173.681 -36.247 174.033 -36.008 173.945 -36.055 173.984 -36.212 174.330 -36.481 174.357 -36.637 174.302 -36.931 174.473 -36.995 174.775 -37.143 174.720 -37.371 174.747 -37.734 174.874 -38.014 174.841 -38.192 174.747 -38.514 174.643 -38.799 174.577 -38.975 174.302 -39.091 173.962 -39.313 173.775 -39.533 173.989 -39.648 174.330 -39.830 174.626 -39.945 174.984 -40.203 175.247 -40.404 175.220 -40.698 175.126 -40.959 174.929 -41.201 174.714 -41.332 174.868 -41.525 175.209 -41.500 175.533 -41.324 175.841 -41.102 176.077 -40.852 176.253 -40.593 176.451 -40.346 176.670 -40.113 176.868 -39.755 177.016 ; #20 1 18.475 122.203 18.324 122.011 18.335 121.692 18.462 121.440 18.602 121.170 18.596 120.863 18.459 120.604 18.157 120.505 17.874 120.429 17.593 120.368 17.305 120.418 17.011 120.418 16.725 120.313 16.456 120.313 16.159 120.363 16.071 120.170 16.286 119.885 16.019 119.775 15.780 119.896 15.497 119.923 15.225 120.005 14.929 120.060 14.775 120.225 14.492 120.451 14.766 120.593 14.698 120.885 14.456 120.896 14.236 120.643 13.978 120.615 13.865 120.753 13.709 120.995 13.632 121.308 13.816 121.495 13.915 121.780 13.775 122.060 13.585 122.280 13.299 122.560 13.519 122.604 13.849 122.495 13.805 122.725 13.596 122.901 13.412 123.159 13.157 123.286 12.992 123.456 12.887 123.819 12.629 123.912 12.637 124.099 12.981 124.126 13.099 123.846 13.297 123.775 13.577 123.577 13.731 123.824 13.874 123.720 13.981 123.418 13.887 123.220 14.069 123.022 14.288 122.775 14.313 122.505 14.132 122.275 13.951 122.143 14.071 121.846 14.313 121.714 14.624 121.643 14.846 121.621 15.113 121.495 15.368 121.423 15.657 121.582 15.923 121.604 16.146 121.984 16.154 122.115 16.398 122.225 16.679 122.357 16.945 122.467 17.214 122.434 17.412 122.258 17.703 122.154 17.995 122.176 18.261 122.286 ; #21 1 -41.558 174.099 -41.266 174.148 -41.104 174.066 -41.115 173.841 -40.992 173.813 -41.162 173.434 -41.214 173.099 -40.885 172.984 -40.684 172.709 -40.555 172.692 -40.775 172.264 -41.016 172.110 -41.316 172.088 -41.580 171.907 -41.766 171.588 -41.986 171.412 -42.269 171.302 -42.396 171.396 -42.357 171.527 -42.560 171.143 -42.835 171.038 -42.890 170.863 -43.058 170.500 -43.220 170.258 -43.470 169.879 -43.637 169.555 -43.753 169.231 -43.923 169.049 -44.011 168.549 -44.198 168.225 -44.390 167.984 -44.643 167.786 -44.854 167.500 -45.041 167.203 -45.266 167.137 -45.382 167.033 -45.495 166.868 -45.734 166.802 -45.948 166.626 -46.085 166.791 -46.255 167.176 -46.220 167.610 -46.371 167.978 -46.484 168.319 -46.582 168.527 -46.637 168.984 -46.624 169.379 -46.492 169.753 -46.266 170.044 -46.044 170.297 -45.838 170.670 -45.582 170.764 -45.308 170.907 -44.995 171.027 -44.857 170.791 -44.720 171.198 -44.434 171.258 -44.231 171.115 -44.206 171.143 -44.137 171.467 -44.030 171.835 -43.835 172.088 -43.599 171.775 -43.387 171.505 -43.250 171.335 -43.577 171.775 -43.758 172.099 -43.799 172.418 -43.835 172.648 -43.777 173.005 -43.574 172.764 -43.478 172.385 -43.404 172.192 -43.327 172.599 -43.255 172.484 -43.181 172.830 -43.014 173.165 -42.788 173.385 -42.516 173.566 -42.305 173.802 -42.088 173.956 -41.794 174.220 -41.668 174.104 ; #22 1 -7.896 110.033 -8.022 110.297 -8.137 110.560 -8.209 110.846 -8.255 111.132 -8.288 111.423 -8.319 111.709 -8.299 111.989 -8.341 112.286 -8.415 112.571 -8.390 112.852 -8.291 113.126 -8.365 113.407 -8.481 113.670 -8.582 113.934 -8.629 114.220 -8.618 114.456 -8.217 114.396 -7.926 114.451 -7.736 114.291 -7.659 114.011 -7.714 113.720 -7.739 113.434 -7.728 113.170 -7.613 112.901 -7.407 112.791 -7.173 112.676 -6.923 112.538 -6.896 112.236 -6.827 111.967 -6.739 111.692 -6.679 111.429 -6.646 111.148 -6.437 110.945 -6.541 110.687 -6.816 110.577 -6.948 110.346 -6.907 110.071 -6.887 109.775 -6.849 109.489 -6.860 109.198 -6.816 108.923 -6.747 108.637 -6.489 108.500 -6.305 108.264 -6.283 107.984 -6.223 107.720 -6.099 107.456 -5.964 107.214 -6.022 106.984 -6.052 106.709 -6.005 106.429 -5.951 106.137 -6.041 105.923 -6.313 105.830 -6.525 105.676 -6.734 105.451 -6.821 105.352 -6.852 105.714 -6.846 106.005 -6.967 106.280 -7.099 106.473 -7.368 106.478 -7.429 106.780 -7.451 107.071 -7.497 107.368 -7.596 107.637 -7.712 107.901 -7.780 108.187 -7.764 108.473 -7.670 108.758 -7.703 109.033 -7.723 109.335 -7.783 109.604 -7.832 109.830 ; #23 1 53.014 141.890 52.712 141.846 52.442 141.736 52.170 141.665 51.882 141.714 51.651 141.841 51.371 142.121 51.088 142.236 50.808 142.110 50.516 142.071 50.231 142.154 49.942 142.154 49.657 142.148 49.371 142.088 49.082 142.033 48.802 141.912 48.530 141.984 48.261 142.143 47.970 142.159 47.695 142.016 47.404 141.967 47.121 142.044 46.838 141.945 46.555 141.830 46.269 141.890 46.049 142.110 46.426 142.341 46.665 142.626 46.591 143.038 46.473 143.335 46.245 143.495 46.692 143.516 46.791 143.231 47.096 143.044 47.357 142.885 47.560 142.654 47.849 142.544 48.129 142.593 48.412 142.720 48.687 142.857 48.964 142.973 49.214 143.148 49.332 143.495 49.250 144.000 49.058 144.330 48.827 144.593 48.777 144.676 49.077 144.396 49.352 144.247 49.635 144.159 49.912 144.038 50.181 143.879 50.453 143.747 50.739 143.676 51.019 143.582 51.294 143.478 51.577 143.324 51.865 143.214 52.132 143.137 52.407 143.176 52.541 143.280 52.997 143.313 53.302 143.209 53.558 143.049 53.805 142.934 54.118 142.962 54.310 142.632 54.187 142.429 53.885 142.676 53.657 142.648 53.434 142.297 53.376 141.863 53.190 141.835 ; #24 1 9.764 125.423 9.574 125.423 9.294 125.505 9.022 125.456 8.945 125.165 8.929 124.846 8.599 124.753 8.527 124.571 8.503 124.335 8.236 124.198 8.063 123.813 8.198 123.852 8.495 123.808 8.643 123.582 8.621 123.368 8.486 123.088 8.228 122.956 8.118 122.687 8.047 122.412 7.879 122.181 7.607 122.110 7.330 122.016 7.060 121.918 6.964 122.143 7.245 122.286 7.511 122.423 7.736 122.588 7.582 122.819 7.585 123.082 7.489 123.363 7.769 123.511 7.736 123.791 7.599 124.044 7.349 124.198 7.093 124.044 6.816 124.000 6.533 124.049 6.277 124.165 6.113 124.396 5.978 124.654 5.876 124.929 6.016 125.148 5.940 125.242 5.679 125.269 5.659 125.456 5.901 125.626 6.176 125.687 6.453 125.582 6.668 125.412 6.964 125.505 7.242 125.747 7.036 125.945 6.777 126.066 6.418 126.143 6.508 126.220 6.838 126.253 7.014 126.423 7.266 126.577 7.549 126.582 7.794 126.456 8.110 126.429 8.357 126.368 8.585 126.225 8.863 126.302 9.192 126.181 9.385 125.967 9.549 125.786 9.725 125.560 ; #25 1 66.371 -14.824 66.231 -15.401 66.415 -15.841 66.462 -16.396 66.159 -16.681 66.060 -17.374 66.063 -17.967 65.797 -18.104 65.797 -18.198 66.044 -18.544 66.135 -19.011 65.854 -19.484 66.003 -20.110 65.747 -20.302 65.580 -20.615 65.341 -21.044 65.376 -21.242 65.643 -21.511 65.904 -21.401 66.115 -21.714 66.349 -22.247 66.423 -22.907 66.310 -22.692 66.016 -22.648 66.102 -23.236 65.962 -23.571 65.775 -23.516 65.695 -23.687 65.580 -24.132 65.464 -24.110 65.478 -23.467 65.569 -22.791 65.486 -22.143 65.250 -22.385 65.126 -21.989 65.038 -22.253 65.003 -22.912 64.876 -23.698 64.802 -23.396 64.788 -22.610 64.621 -22.308 64.582 -21.835 64.440 -21.753 64.190 -21.852 63.967 -22.484 63.849 -22.011 63.887 -21.275 63.766 -20.599 63.593 -20.264 63.514 -19.676 63.415 -19.016 63.478 -18.291 63.632 -17.901 63.758 -17.527 63.841 -16.885 63.989 -16.313 64.176 -15.802 64.308 -15.220 64.470 -14.577 64.698 -14.346 64.904 -13.923 65.030 -13.813 65.198 -13.731 65.382 -13.736 65.593 -14.192 65.775 -14.632 66.055 -14.896 66.286 -14.852 ; #26 1 19.734 -72.115 19.772 -72.363 19.907 -72.670 19.920 -72.973 19.871 -73.269 19.692 -73.368 19.596 -73.033 19.423 -72.753 19.159 -72.769 18.920 -72.670 18.720 -72.429 18.552 -72.462 18.453 -72.775 18.464 -73.082 18.503 -73.385 18.544 -73.670 18.593 -73.984 18.648 -74.286 18.442 -74.445 18.286 -74.242 18.107 -73.907 18.223 -73.648 18.239 -73.357 18.184 -73.060 18.162 -72.758 18.209 -72.478 18.225 -72.154 18.126 -71.868 17.898 -71.670 17.709 -71.522 17.739 -71.341 17.973 -71.165 18.245 -71.022 18.379 -70.736 18.258 -70.516 18.253 -70.192 18.429 -69.945 18.434 -69.637 18.431 -69.330 18.404 -69.033 18.272 -68.769 18.330 -68.555 18.574 -68.379 18.802 -68.560 18.975 -68.808 19.014 -69.099 19.118 -69.495 19.242 -69.269 19.324 -69.379 19.310 -69.692 19.511 -69.879 19.651 -70.066 19.709 -70.363 19.788 -70.654 19.904 -70.945 19.849 -71.236 19.887 -71.571 19.720 -71.824 ; #27 1 45.511 141.934 45.409 141.731 45.154 141.610 44.876 141.747 44.588 141.780 44.308 141.687 44.019 141.654 43.780 141.429 43.505 141.390 43.239 141.335 43.190 140.989 43.277 140.505 43.014 140.462 42.780 140.220 42.604 139.890 42.294 139.813 42.063 140.044 41.799 140.093 41.492 140.060 41.541 140.379 41.758 140.648 41.747 141.022 41.896 141.033 42.082 140.725 42.212 140.379 42.464 140.363 42.547 140.687 42.374 141.011 42.544 141.401 42.591 141.780 42.445 142.121 42.283 142.445 42.146 142.791 42.036 143.214 42.343 143.374 42.593 143.577 42.805 143.846 42.962 144.176 42.945 144.604 43.027 144.984 43.261 145.538 43.332 145.324 43.624 145.170 43.893 145.126 44.201 145.313 44.190 145.159 43.981 144.868 43.937 144.489 44.080 144.154 44.157 143.747 44.321 143.418 44.508 143.104 44.714 142.819 44.951 142.582 45.184 142.341 45.401 142.077 ; #28 2 76.209 -112.714 76.247 -113.692 76.459 -114.527 76.272 -115.379 76.184 -115.934 75.992 -116.604 75.882 -115.429 75.830 -115.758 75.703 -116.962 75.613 -115.769 75.481 -116.434 75.382 -117.451 75.165 -117.159 75.091 -116.022 75.060 -115.060 75.321 -114.049 75.143 -113.769 75.173 -112.654 75.195 -111.456 75.077 -111.407 74.995 -112.390 74.868 -113.352 74.681 -114.225 74.442 -113.555 74.423 -112.505 74.536 -111.511 74.739 -110.632 74.863 -109.813 74.986 -108.753 74.986 -107.742 74.986 -106.632 75.173 -105.940 75.459 -105.643 75.736 -105.434 75.992 -105.923 75.830 -106.841 75.882 -107.615 76.135 -108.209 76.434 -108.451 76.739 -108.698 76.681 -109.527 76.426 -110.115 76.192 -109.720 75.915 -109.654 75.626 -108.995 75.527 -109.747 75.558 -110.989 75.813 -111.769 76.041 -112.231 ; #29 1 55.313 -7.335 55.154 -7.621 55.162 -8.005 54.951 -8.374 54.764 -8.571 54.593 -8.352 54.335 -8.544 54.255 -8.769 54.258 -9.236 54.209 -9.934 53.951 -9.824 53.788 -9.703 53.525 -10.066 53.363 -9.808 53.209 -9.203 52.964 -9.396 52.659 -9.698 52.618 -9.440 52.692 -8.978 52.632 -8.989 52.566 -9.467 52.379 -9.802 52.168 -10.115 51.868 -10.258 51.821 -9.819 51.695 -9.967 51.687 -9.648 51.569 -9.698 51.503 -9.560 51.530 -9.126 51.621 -8.659 51.810 -8.291 51.904 -7.890 52.071 -7.533 52.173 -7.016 52.223 -6.560 52.431 -6.319 52.717 -6.170 52.995 -6.038 53.313 -6.121 53.566 -6.143 53.846 -6.297 54.038 -6.159 54.214 -5.764 54.440 -5.577 54.712 -5.736 54.945 -5.907 55.179 -6.165 55.148 -6.940 55.308 -7.154 ; #30 2 -72.714 -72.396 -72.670 -71.791 -72.670 -70.813 -72.618 -69.885 -72.459 -69.148 -72.231 -68.516 -71.953 -68.286 -71.665 -68.121 -71.376 -68.203 -71.085 -68.247 -70.799 -68.346 -70.516 -68.511 -70.247 -68.896 -69.978 -69.159 -69.695 -69.346 -69.418 -69.593 -69.184 -70.016 -68.876 -70.187 -68.827 -70.852 -68.945 -71.582 -69.159 -72.137 -69.434 -71.929 -69.690 -71.692 -69.978 -71.775 -70.272 -71.610 -70.486 -72.286 -70.690 -71.945 -70.791 -71.143 -71.080 -70.929 -71.157 -71.890 -71.121 -72.753 -71.316 -72.709 -71.371 -73.231 -71.495 -73.582 -71.544 -74.137 -71.635 -74.791 -71.745 -75.363 -71.995 -75.165 -72.137 -74.341 -71.959 -73.742 -71.915 -73.192 -71.745 -72.516 -71.805 -72.016 -71.989 -71.341 -72.151 -71.621 -72.250 -70.923 -72.357 -70.857 -72.390 -71.791 -72.352 -72.813 -72.585 -72.819 ; #31 1 -54.830 -68.538 -54.849 -68.044 -54.882 -67.549 -54.915 -67.044 -55.011 -66.549 -54.948 -66.049 -54.926 -65.571 -54.769 -65.231 -54.646 -65.429 -54.624 -65.912 -54.489 -66.357 -54.294 -66.725 -54.126 -67.126 -53.934 -67.500 -53.720 -67.791 -53.475 -68.055 -53.162 -68.368 -52.920 -68.330 -52.679 -68.599 -52.626 -68.945 -52.541 -69.363 -52.643 -69.648 -52.810 -70.165 -53.027 -70.346 -53.319 -70.434 -53.418 -70.071 -53.398 -69.489 -53.626 -69.736 -53.794 -70.121 -54.077 -70.016 -54.231 -69.610 -54.376 -69.159 -54.555 -69.231 -54.497 -69.335 -54.409 -69.736 -54.341 -70.137 -54.198 -70.753 -54.434 -70.429 -54.448 -70.753 -54.440 -71.357 -54.508 -71.802 -54.626 -71.670 -54.618 -71.269 -54.720 -70.780 -54.791 -70.297 -54.766 -69.830 -54.887 -69.368 -54.871 -68.863 ; #32 -1 60.915 -114.742 60.981 -114.165 61.115 -113.698 61.374 -113.500 61.437 -112.984 61.533 -112.445 61.755 -112.027 62.005 -111.632 62.223 -111.357 62.374 -110.830 62.415 -110.286 62.511 -110.159 62.519 -110.478 62.706 -110.044 62.698 -110.610 62.585 -111.264 62.525 -111.484 62.777 -110.747 62.819 -110.192 62.753 -109.549 62.739 -109.187 62.931 -109.978 62.923 -110.621 62.794 -111.198 62.569 -111.555 62.324 -111.879 62.124 -112.341 62.038 -112.940 62.038 -113.522 62.228 -113.967 62.374 -114.462 62.508 -115.066 62.665 -115.626 62.632 -115.868 62.412 -115.368 62.162 -115.099 61.882 -114.742 61.755 -115.225 61.624 -115.648 61.354 -115.907 61.242 -116.192 61.255 -116.764 61.206 -117.286 61.206 -117.462 61.036 -116.879 60.948 -116.357 60.849 -115.791 60.857 -115.253 ; #33 2 76.632 -92.082 76.525 -93.159 76.690 -93.264 76.907 -94.005 77.016 -95.165 76.973 -96.489 76.747 -96.571 76.500 -95.813 76.297 -95.005 76.305 -93.610 76.176 -92.791 75.915 -92.330 75.626 -92.115 75.352 -92.423 75.091 -92.176 74.766 -91.885 74.723 -91.027 74.571 -90.055 74.745 -88.841 74.514 -88.192 74.500 -87.060 74.536 -86.280 74.580 -85.330 74.544 -84.681 74.731 -83.407 74.558 -82.698 74.500 -81.731 74.588 -80.566 74.885 -79.973 75.077 -80.099 75.338 -79.566 75.541 -80.192 75.712 -81.187 75.821 -82.253 75.783 -83.495 75.681 -84.555 75.527 -85.626 75.412 -86.352 75.536 -87.423 75.541 -88.599 75.613 -89.418 75.876 -89.692 75.937 -90.621 76.096 -90.956 76.209 -89.978 76.467 -90.857 76.665 -91.368 ; #34 2 79.398 10.885 79.195 11.698 78.912 11.929 78.618 12.093 78.445 12.786 78.236 13.709 78.437 14.489 78.687 14.912 78.695 15.396 78.530 15.945 78.569 16.577 78.341 16.423 78.143 14.918 77.997 13.945 77.769 14.286 77.849 15.747 77.813 16.527 77.615 15.330 77.511 15.720 77.484 14.258 77.187 14.599 77.033 15.703 76.898 16.011 76.673 16.780 77.041 17.286 77.335 17.555 77.563 18.176 77.868 18.429 78.115 18.874 78.418 19.165 78.626 20.154 78.783 21.176 79.071 19.918 79.255 18.934 79.525 18.055 79.835 17.725 79.942 16.396 79.695 15.731 79.409 15.934 79.132 16.225 79.063 16.033 79.379 15.484 79.662 15.093 79.673 14.280 79.525 13.505 79.813 13.077 79.736 11.813 79.588 10.962 ; #35 -1 -4.206 29.181 -4.308 29.225 -4.569 29.148 -4.865 29.099 -5.157 29.132 -5.420 29.258 -5.681 29.346 -5.945 29.220 -6.192 29.297 -6.467 29.429 -6.728 29.533 -6.956 29.714 -7.115 29.945 -7.310 30.148 -7.591 30.214 -7.860 30.319 -8.080 30.522 -8.456 30.544 -8.574 30.780 -8.747 31.060 -8.571 31.165 -8.324 31.044 -8.080 30.918 -7.813 30.775 -7.555 30.626 -7.266 30.571 -7.008 30.527 -6.728 30.368 -6.508 30.165 -6.437 29.901 -6.184 29.731 -5.951 29.874 -5.698 29.896 -5.431 29.775 -5.143 29.802 -4.893 29.637 -4.613 29.632 -4.338 29.599 -4.074 29.473 -3.805 29.357 -3.437 29.275 -3.602 29.143 -3.882 29.110 -4.176 29.088 ; #36 -1 55.692 109.440 55.516 109.231 55.225 109.176 54.962 108.978 54.692 108.797 54.437 108.566 54.170 108.363 53.907 108.154 53.706 107.797 53.470 107.522 53.277 107.159 53.041 106.852 52.794 106.648 52.604 106.308 52.434 105.923 52.195 105.659 51.989 105.341 51.868 104.912 51.788 104.478 51.720 103.912 51.560 104.060 51.481 104.505 51.525 104.945 51.613 105.385 51.723 105.830 51.937 106.137 52.212 106.275 52.352 106.615 52.464 106.967 52.629 107.352 52.734 107.802 52.918 108.165 53.148 108.407 53.316 108.819 53.533 108.786 53.736 108.901 53.731 109.192 53.995 109.418 54.266 109.511 54.558 109.527 54.830 109.670 55.113 109.758 55.398 109.835 55.720 109.769 ; #37 2 74.687 56.440 74.536 55.802 74.280 55.423 74.132 55.330 73.953 54.500 73.706 54.192 73.651 54.852 73.415 54.440 73.363 55.797 73.302 56.687 73.530 57.027 73.747 57.192 73.863 57.841 74.104 57.945 74.288 58.621 74.536 58.808 74.703 59.626 74.929 60.330 75.104 60.758 75.316 61.588 75.505 62.593 75.657 63.643 75.775 64.698 75.915 65.731 76.058 66.758 76.223 67.775 76.401 68.478 76.690 68.885 76.940 68.368 76.956 67.148 76.764 66.121 76.541 65.538 76.376 64.390 76.264 63.181 76.247 62.165 76.184 61.071 76.041 60.385 75.876 59.165 75.665 58.236 75.420 57.560 75.261 56.813 75.052 56.225 74.766 56.319 74.695 56.967 ; #38 -1 65.099 -123.247 65.030 -122.621 65.016 -121.901 65.272 -121.571 65.492 -121.176 65.533 -120.500 65.245 -120.632 64.945 -121.231 64.953 -120.846 65.140 -120.264 65.371 -119.714 65.657 -119.841 65.791 -119.308 65.736 -118.264 66.014 -118.011 66.225 -117.736 66.525 -117.703 66.467 -118.209 66.330 -118.758 66.330 -119.582 66.423 -120.264 66.632 -120.038 66.824 -119.313 66.984 -119.626 66.964 -120.302 66.857 -121.005 66.712 -121.599 66.582 -122.346 66.505 -123.016 66.401 -123.654 66.154 -124.703 66.140 -124.159 66.121 -123.352 66.214 -122.885 66.258 -122.132 66.121 -121.484 65.948 -121.555 65.984 -122.418 65.863 -122.341 65.626 -122.467 65.426 -122.813 65.217 -123.192 ; #39 -1 -2.052 31.676 -2.313 31.698 -2.670 31.846 -2.511 32.060 -2.338 32.264 -2.473 32.538 -2.530 32.758 -2.852 32.797 -2.821 32.923 -2.519 32.896 -2.434 33.110 -2.505 33.390 -2.242 33.687 -2.124 33.330 -1.948 33.407 -1.734 33.593 -1.500 33.780 -1.297 33.912 -1.027 34.066 -0.780 34.093 -0.508 34.154 -0.448 34.423 -0.310 34.731 -0.135 34.670 -0.272 34.357 -0.157 34.143 0.036 33.995 0.223 33.824 0.242 33.582 0.360 33.368 0.258 33.126 0.132 32.901 0.154 32.632 0.033 32.357 -0.060 32.093 -0.247 31.973 -0.519 31.841 -0.797 31.742 -1.055 31.824 -1.374 31.819 -1.626 31.736 -1.912 31.654 ; #40 -1 49.821 31.451 49.679 31.599 49.505 31.951 49.338 32.308 49.162 32.687 49.030 33.082 48.997 33.495 48.841 33.841 48.692 34.220 48.536 34.582 48.429 35.011 48.148 35.121 47.865 35.104 47.599 34.995 47.574 34.544 47.552 34.126 47.335 33.940 47.069 33.692 46.846 33.478 46.717 32.890 46.745 33.077 46.816 33.533 46.984 33.753 47.299 34.071 47.437 34.242 47.500 34.659 47.426 35.093 47.599 35.264 47.882 35.143 48.154 35.154 48.495 35.187 48.503 35.033 48.574 34.604 48.766 34.242 48.904 33.956 49.030 33.505 49.173 33.132 49.431 32.753 49.451 32.390 49.563 31.967 49.706 31.582 ; #41 1 -4.190 152.126 -4.264 151.934 -4.242 151.593 -4.525 151.621 -4.846 151.659 -4.937 151.434 -5.069 151.187 -5.305 151.033 -5.478 150.835 -5.500 150.577 -5.530 150.302 -5.418 150.088 -5.135 150.121 -5.126 150.022 -5.415 149.934 -5.527 149.698 -5.577 149.418 -5.547 149.143 -5.508 148.857 -5.500 148.566 -5.577 148.346 -5.802 148.484 -5.896 148.769 -6.060 149.016 -6.099 149.225 -6.162 149.500 -6.297 149.731 -6.291 150.027 -6.286 150.308 -6.195 150.588 -6.069 150.835 -5.981 151.121 -5.808 151.357 -5.591 151.533 -5.563 151.830 -5.409 152.088 -5.110 152.000 -4.975 152.187 -4.766 152.379 -4.467 152.385 -4.269 152.236 ; #42 -1 8.964 0.231 8.780 0.170 8.478 0.121 8.223 0.154 7.918 0.033 8.118 -0.225 8.220 -0.352 8.277 -0.588 8.522 -0.758 8.657 -0.835 8.942 -1.104 8.780 -1.115 8.714 -1.495 8.714 -1.379 8.629 -1.110 8.497 -0.868 8.223 -0.720 8.085 -0.571 8.022 -0.341 7.791 -0.170 7.604 -0.489 7.588 -0.181 7.478 -0.066 7.247 0.099 6.984 0.082 6.766 -0.038 6.739 -0.297 6.794 -0.571 6.720 -0.560 6.593 -0.291 6.431 -0.011 6.272 0.088 6.297 0.110 6.635 0.236 6.871 0.247 7.143 0.280 7.473 0.275 7.791 0.247 7.995 0.170 8.294 0.214 8.544 0.137 8.819 0.209 ; #43 -1 -9.843 33.923 -10.121 34.027 -10.368 34.203 -10.643 34.203 -10.940 34.242 -11.225 34.242 -11.511 34.291 -11.775 34.242 -12.022 34.093 -12.310 34.060 -12.547 34.187 -12.838 34.286 -13.107 34.341 -13.396 34.346 -13.624 34.538 -13.882 34.571 -14.157 34.615 -14.173 34.808 -14.102 34.951 -14.220 35.192 -13.780 35.044 -13.599 34.857 -13.308 34.819 -13.016 34.780 -12.731 34.797 -12.451 34.720 -12.165 34.747 -11.929 34.907 -11.648 34.962 -11.390 34.863 -11.190 34.687 -10.918 34.632 -10.632 34.626 -10.349 34.577 -10.060 34.522 -9.813 34.374 -9.604 34.176 -9.566 33.978 ; #44 -1 44.821 61.615 45.055 61.819 45.225 61.566 45.511 61.297 45.717 61.055 46.005 61.044 46.255 61.286 46.489 61.473 46.755 61.511 46.596 61.005 46.706 60.588 46.679 60.302 46.500 59.918 46.228 59.912 46.239 59.522 45.918 59.484 45.942 59.286 45.948 58.857 45.720 58.632 45.448 58.511 45.179 58.352 44.901 58.209 44.613 58.236 44.321 58.247 44.058 58.374 43.725 58.423 43.808 58.863 43.786 59.088 43.753 59.451 43.574 59.720 43.462 59.940 43.571 60.313 43.604 60.687 43.742 60.956 43.981 60.813 44.255 61.066 44.533 61.159 44.670 61.330 ; #45 1 74.168 -119.714 74.316 -120.379 74.500 -121.247 74.486 -122.280 74.429 -123.346 74.324 -124.462 74.022 -124.357 73.753 -123.951 73.462 -124.269 73.190 -124.670 72.920 -124.780 72.624 -125.038 72.357 -125.445 72.063 -125.764 71.945 -125.181 71.769 -124.462 71.574 -123.819 71.305 -123.484 71.126 -122.901 71.299 -122.093 71.418 -121.423 71.538 -120.577 71.819 -120.407 72.146 -120.214 72.294 -119.588 72.560 -119.176 72.772 -118.549 72.953 -117.780 73.124 -116.989 73.288 -116.176 73.497 -115.473 73.753 -115.956 73.981 -116.604 74.195 -117.335 74.245 -118.363 74.104 -119.209 ; #46 1 64.951 -83.170 65.121 -83.516 65.258 -84.110 65.349 -84.736 65.547 -85.148 65.816 -85.352 65.838 -85.802 65.574 -86.066 65.288 -86.143 64.995 -86.187 64.728 -86.291 64.440 -86.379 64.140 -86.297 63.940 -86.802 63.659 -87.121 63.629 -86.599 63.701 -85.896 63.533 -85.621 63.236 -85.599 63.157 -85.137 63.330 -84.610 63.582 -84.269 63.772 -83.747 64.049 -83.538 64.063 -83.033 63.863 -82.484 63.670 -82.198 63.577 -81.577 63.508 -80.962 63.714 -80.396 63.901 -80.522 64.058 -80.973 64.030 -81.637 64.146 -81.742 64.448 -81.791 64.690 -82.170 64.813 -82.742 ; #47 1 7.467 79.802 7.168 79.835 6.882 79.857 6.596 79.940 6.324 80.016 6.074 80.165 5.956 80.423 5.973 80.703 6.085 80.978 6.176 81.242 6.327 81.500 6.522 81.714 6.786 81.830 7.069 81.879 7.393 81.835 7.626 81.714 7.827 81.621 8.126 81.440 8.418 81.346 8.585 81.198 8.885 81.038 9.066 80.896 9.308 80.769 9.519 80.544 9.712 80.324 9.736 80.253 9.659 80.319 9.681 80.099 9.500 80.379 9.459 80.110 9.168 80.093 8.907 79.956 8.610 79.918 8.332 79.835 8.126 79.753 7.766 79.775 7.610 79.791 ; #48 1 0.272 128.846 0.451 128.681 0.610 128.462 0.813 128.286 1.000 128.555 1.203 128.709 1.500 128.681 1.514 128.423 1.308 128.170 1.102 128.060 0.868 127.874 0.970 127.687 1.198 127.901 1.440 128.016 1.723 127.967 2.066 127.945 1.997 127.764 1.753 127.593 1.486 127.522 1.168 127.423 0.923 127.533 0.673 127.549 0.401 127.615 0.159 127.692 -0.129 127.681 -0.360 127.813 -0.599 127.978 -0.832 128.275 -0.701 128.225 -0.456 128.071 -0.192 127.962 0.088 127.901 0.396 127.940 0.418 128.220 0.354 128.500 0.261 128.775 ; #49 1 -40.775 147.956 -40.865 147.731 -40.970 147.385 -41.058 146.951 -41.129 146.681 -41.157 146.302 -41.060 145.934 -40.909 145.599 -40.791 145.247 -40.717 144.824 -40.876 144.670 -41.143 144.676 -41.418 144.786 -41.684 144.934 -41.920 145.148 -42.297 145.363 -42.489 145.247 -42.736 145.374 -42.992 145.577 -43.234 145.852 -43.393 146.088 -43.516 146.396 -43.599 146.736 -43.448 146.967 -43.214 147.104 -42.942 147.308 -42.931 147.495 -43.080 147.808 -42.923 147.934 -42.646 147.929 -42.382 148.000 -42.115 148.220 -41.948 148.302 -41.662 148.291 -41.346 148.297 -41.077 148.291 -40.832 148.159 ; #50 -1 46.327 74.027 46.179 73.791 45.934 73.637 45.690 73.478 45.423 73.681 45.104 74.027 45.313 74.121 45.591 74.198 45.794 74.275 46.011 74.429 46.137 74.753 46.409 75.027 46.511 75.363 46.566 75.582 46.525 76.033 46.547 76.401 46.489 76.857 46.473 77.258 46.412 77.703 46.341 78.099 46.352 78.467 46.404 78.918 46.706 79.115 46.706 78.780 46.588 78.352 46.629 77.918 46.637 77.533 46.610 77.011 46.637 76.659 46.728 76.308 46.794 75.912 46.742 75.484 46.794 75.044 46.731 74.643 46.516 74.357 ; #51 2 81.052 -94.110 80.942 -94.956 80.668 -94.412 80.574 -95.269 80.368 -96.082 80.140 -94.995 80.063 -96.242 79.843 -96.330 79.695 -94.896 79.588 -95.049 79.368 -95.286 79.379 -93.692 79.338 -92.099 79.234 -91.115 79.203 -91.082 79.154 -92.643 79.033 -93.879 78.775 -93.522 78.541 -92.522 78.283 -92.236 78.154 -90.956 78.349 -89.973 78.266 -89.209 78.321 -88.654 78.569 -88.313 78.942 -88.055 78.794 -87.835 78.923 -87.027 79.082 -86.176 79.420 -85.440 79.566 -86.676 79.791 -87.154 80.030 -87.473 80.288 -87.665 80.231 -88.516 80.368 -89.165 80.552 -90.093 80.799 -91.110 81.077 -91.758 81.316 -92.780 81.214 -93.725 ; #52 -1 52.981 -98.643 52.791 -98.841 52.549 -98.566 52.313 -98.291 52.066 -98.071 51.978 -97.797 52.033 -97.522 51.835 -97.253 51.593 -97.121 51.541 -96.780 51.269 -96.813 50.975 -96.934 50.676 -96.967 50.484 -96.709 50.720 -96.407 51.091 -96.363 51.324 -96.385 51.574 -96.604 51.832 -96.780 52.104 -96.973 52.363 -97.055 52.657 -97.209 52.934 -97.379 53.203 -97.489 53.464 -97.687 53.736 -97.863 54.003 -97.973 54.269 -97.956 54.302 -98.099 53.997 -98.264 53.794 -98.165 53.813 -98.890 53.505 -99.077 53.223 -99.192 53.060 -98.857 53.055 -98.500 ; #53 1 32.566 131.731 32.819 131.956 33.030 131.945 33.225 131.764 33.374 131.610 33.615 131.599 33.593 131.220 33.797 131.000 33.915 130.852 33.830 130.527 33.629 130.313 33.500 129.989 33.346 129.736 33.132 129.698 32.926 129.808 32.679 129.890 32.786 130.225 33.096 130.297 32.766 130.549 32.544 130.566 32.250 130.418 32.016 130.209 31.720 130.253 31.418 130.231 31.236 130.374 31.272 130.593 31.582 130.566 31.602 130.714 31.299 130.780 31.099 130.824 31.376 131.148 31.541 131.407 31.824 131.467 32.107 131.527 32.352 131.621 ; #54 -1 42.445 -81.709 42.297 -81.896 42.173 -82.258 42.003 -82.566 42.038 -83.005 42.294 -82.989 42.335 -82.538 42.541 -82.555 42.599 -82.797 42.343 -83.000 42.080 -83.192 41.802 -83.368 41.544 -82.934 41.456 -82.780 41.420 -82.456 41.492 -82.066 41.530 -81.687 41.706 -81.368 41.835 -81.027 41.942 -80.659 42.088 -80.236 42.187 -79.962 42.332 -79.621 42.505 -79.308 42.695 -79.022 42.942 -78.896 42.962 -79.033 42.868 -79.429 42.835 -79.813 42.654 -80.242 42.569 -80.385 42.629 -80.764 42.665 -81.148 42.574 -81.511 ; #55 -1 56.206 102.225 56.195 101.907 56.000 101.566 55.830 101.654 55.516 101.863 55.467 102.154 55.184 102.242 55.212 102.319 55.492 102.330 55.690 102.027 55.951 101.973 56.088 102.363 56.104 102.797 55.846 103.027 55.571 103.176 55.291 103.297 55.019 103.214 54.755 103.110 54.456 103.176 54.206 103.011 53.849 103.077 53.723 103.170 53.321 103.374 53.538 103.593 53.723 103.401 53.989 103.170 54.247 103.275 54.475 103.291 54.742 103.159 55.019 103.258 55.299 103.330 55.582 103.231 55.846 103.093 56.179 102.934 56.280 102.473 ; #56 1 50.794 -127.626 50.846 -128.077 50.670 -128.319 50.484 -127.978 50.478 -127.692 50.135 -127.637 50.041 -127.209 49.907 -126.857 49.747 -126.522 49.607 -126.363 49.412 -126.368 49.335 -125.934 49.135 -125.731 48.973 -125.379 49.019 -124.978 49.077 -124.857 48.753 -125.044 48.563 -124.566 48.459 -124.209 48.352 -123.786 48.412 -123.412 48.651 -123.500 48.931 -123.714 49.165 -123.918 49.310 -124.247 49.442 -124.692 49.676 -124.918 49.923 -125.154 50.176 -125.363 50.357 -125.654 50.434 -126.088 50.495 -126.538 50.569 -126.962 50.687 -127.357 ; #57 1 -9.393 125.220 -9.247 125.473 -9.168 125.753 -9.071 126.027 -8.975 126.297 -8.860 126.555 -8.747 126.824 -8.615 127.082 -8.393 127.187 -8.376 126.857 -8.456 126.571 -8.470 126.286 -8.503 126.000 -8.522 125.709 -8.574 125.423 -8.681 125.148 -8.915 124.967 -9.069 124.720 -9.187 124.467 -9.272 124.187 -9.415 123.929 -9.618 123.714 -9.893 123.621 -10.129 123.626 -10.354 123.599 -10.319 123.918 -10.190 124.176 -10.118 124.467 -9.920 124.687 -9.712 124.896 -9.522 125.027 ; #58 -1 54.703 48.962 54.876 49.038 55.069 49.434 55.242 49.813 55.349 50.297 55.426 50.775 55.437 51.242 55.626 51.747 55.720 51.544 55.538 51.357 55.467 50.824 55.442 50.330 55.393 49.852 55.398 49.280 55.198 49.192 54.951 48.885 54.679 48.703 54.475 48.407 54.168 48.456 53.967 48.808 53.706 48.874 53.423 49.077 53.313 48.879 53.280 48.923 53.423 49.571 53.500 49.247 53.739 49.220 54.085 49.500 54.022 49.165 54.082 48.797 54.324 48.538 54.547 48.923 ; #59 2 -80.920 -52.703 -80.871 -51.478 -80.775 -49.775 -80.681 -48.082 -80.585 -46.418 -80.423 -44.945 -80.187 -44.302 -79.975 -43.643 -79.662 -43.352 -79.368 -44.055 -79.102 -43.808 -78.852 -44.978 -78.626 -44.077 -78.321 -44.055 -78.096 -44.940 -77.951 -46.154 -77.959 -47.500 -78.135 -48.626 -78.360 -49.527 -78.618 -50.121 -78.901 -50.467 -79.195 -50.626 -79.484 -50.643 -79.758 -51.181 -80.019 -52.027 -80.209 -53.198 -80.412 -54.335 -80.692 -54.824 -80.907 -53.863 ; #60 1 73.871 -100.055 73.747 -100.637 73.508 -100.995 73.283 -100.423 73.025 -100.319 72.786 -100.566 72.791 -101.363 73.019 -102.066 72.810 -102.681 72.555 -102.247 72.332 -101.632 72.201 -100.852 71.984 -100.275 71.750 -99.720 71.478 -99.341 71.327 -98.720 71.690 -98.269 71.646 -97.505 71.854 -96.725 72.082 -96.593 72.352 -96.555 72.657 -96.742 72.835 -97.209 72.986 -98.137 73.209 -97.945 73.456 -97.396 73.706 -97.049 73.863 -97.764 73.747 -98.868 73.857 -99.648 ; #61 1 71.755 51.418 71.563 51.632 71.514 52.440 71.429 53.368 71.143 53.863 70.852 53.654 70.728 54.522 70.659 55.467 70.643 56.269 70.632 56.984 70.753 57.429 70.978 56.753 71.214 56.220 71.478 55.857 71.755 55.566 72.014 55.385 72.363 55.390 72.585 55.577 72.849 55.885 73.096 56.231 73.321 55.560 73.368 54.621 73.255 53.687 73.000 53.247 72.835 52.676 72.599 52.846 72.294 52.588 72.107 52.088 71.920 51.451 ; #62 -1 48.657 44.555 48.926 44.780 49.184 44.984 49.462 45.104 49.717 45.313 50.008 45.429 50.201 45.753 50.234 46.203 50.302 46.280 50.401 45.890 50.712 45.819 50.953 46.038 51.231 45.901 51.492 46.082 51.695 46.412 51.802 46.681 51.635 46.181 51.404 45.890 51.135 45.841 50.882 45.945 50.648 45.681 50.363 45.764 50.121 45.484 49.852 45.324 49.566 45.093 49.319 44.978 49.055 44.830 48.808 44.610 48.585 44.473 ; #63 1 11.396 119.484 11.214 119.423 10.901 119.346 10.728 119.302 10.464 119.176 10.308 118.978 10.093 118.775 9.868 118.593 9.654 118.385 9.434 118.192 9.255 117.973 9.091 117.731 8.890 117.522 8.522 117.280 8.558 117.511 8.706 117.747 8.885 117.984 9.113 118.170 9.258 118.429 9.481 118.615 9.734 118.736 9.956 118.868 10.060 119.159 10.294 119.335 10.451 119.621 10.714 119.610 10.989 119.527 11.272 119.538 ; #64 -1 61.104 27.901 61.085 28.181 61.310 28.571 61.574 28.709 61.624 29.121 61.799 29.593 62.088 29.692 62.448 29.610 62.245 29.258 62.231 28.791 62.261 28.198 62.593 27.896 62.481 28.484 62.643 28.330 62.948 28.209 63.016 27.714 63.181 27.324 63.464 27.165 63.423 27.137 63.126 27.214 62.860 27.571 62.549 27.495 62.448 27.533 62.286 27.885 62.077 28.264 61.918 28.698 61.788 28.505 61.591 28.187 61.629 27.923 61.637 27.533 61.442 27.319 61.220 27.813 ; #65 1 25.099 121.198 24.964 120.995 24.712 120.830 24.489 120.637 24.236 120.484 23.984 120.330 23.725 120.170 23.429 120.132 23.118 120.088 22.879 120.181 22.582 120.297 22.404 120.511 22.044 120.753 22.277 120.885 22.555 120.978 22.786 121.159 23.030 121.330 23.291 121.434 23.577 121.511 23.863 121.582 24.143 121.654 24.412 121.797 24.670 121.830 25.000 121.901 25.198 121.670 25.187 121.412 ; #66 -1 54.723 -64.407 54.503 -64.390 54.214 -64.418 54.198 -64.885 54.541 -65.165 54.437 -65.187 54.096 -65.011 54.014 -65.330 54.203 -65.769 54.486 -66.198 54.662 -66.313 54.962 -66.462 54.863 -66.522 54.593 -66.577 54.283 -66.445 54.387 -66.374 54.363 -66.148 54.132 -65.780 53.945 -65.445 53.569 -65.302 53.703 -65.231 53.860 -65.044 54.047 -64.604 53.953 -64.170 53.915 -63.654 54.033 -63.280 54.104 -63.473 54.151 -63.846 54.363 -64.159 54.626 -64.330 ; #67 2 74.846 140.357 74.942 141.418 74.907 142.346 74.995 143.220 75.286 142.341 75.596 142.165 75.618 142.753 75.286 142.670 75.091 143.363 75.099 144.412 75.360 144.808 75.613 144.995 75.813 143.813 75.860 142.725 76.071 141.846 76.049 141.275 75.758 140.929 75.712 140.500 75.931 139.786 76.143 138.742 76.041 137.901 75.783 137.412 75.536 137.165 75.277 137.077 74.981 137.676 74.761 138.357 74.775 139.379 74.920 139.819 ; #68 1 -20.624 164.879 -20.431 164.643 -20.283 164.363 -20.181 164.115 -20.228 164.044 -20.470 164.187 -20.725 164.368 -20.934 164.593 -21.115 164.786 -21.349 165.011 -21.527 165.236 -21.665 165.500 -21.797 165.764 -21.964 166.060 -22.148 166.264 -22.269 166.522 -22.357 166.857 -22.184 166.984 -21.986 166.742 -21.813 166.516 -21.637 166.291 -21.467 166.000 -21.346 165.791 -21.162 165.538 -20.926 165.341 -20.750 165.132 ; #69 -1 44.420 -75.923 44.316 -76.247 44.220 -76.615 44.140 -77.187 44.041 -76.995 43.918 -77.214 44.000 -77.604 43.984 -77.978 43.931 -78.368 43.882 -78.764 43.786 -79.126 43.621 -79.462 43.374 -79.703 43.206 -79.495 43.258 -79.115 43.343 -78.742 43.385 -78.346 43.368 -77.951 43.283 -77.566 43.288 -77.143 43.330 -76.797 43.492 -76.456 43.659 -76.214 43.981 -76.198 44.192 -76.220 44.385 -75.874 ; #70 1 -0.261 -48.445 -0.236 -48.648 -0.192 -48.934 -0.154 -49.220 -0.231 -49.473 -0.209 -49.780 -0.148 -50.066 -0.132 -50.352 -0.247 -50.610 -0.588 -50.676 -0.794 -50.775 -1.055 -50.632 -1.151 -50.687 -1.418 -50.786 -1.676 -50.626 -1.821 -50.434 -1.673 -50.286 -1.673 -50.220 -1.734 -49.984 -1.714 -49.714 -1.566 -49.467 -1.525 -49.181 -1.393 -48.918 -1.201 -48.819 -0.975 -48.610 -0.701 -48.511 -0.404 -48.407 ; #71 1 -2.879 128.159 -3.022 128.066 -3.354 127.912 -3.203 128.099 -3.266 128.291 -3.437 128.544 -3.277 128.852 -3.368 129.104 -3.431 129.390 -3.346 129.593 -3.385 129.918 -3.544 130.159 -3.657 130.423 -3.816 130.720 -3.629 130.846 -3.393 130.714 -3.143 130.555 -2.995 130.308 -2.978 130.005 -2.874 129.753 -2.808 129.462 -2.909 129.159 -2.846 128.907 -2.852 128.615 -2.860 128.324 ; #72 1 -8.269 120.269 -8.357 120.132 -8.481 119.890 -8.780 119.868 -8.799 120.159 -8.805 120.440 -8.843 120.742 -8.926 121.011 -8.874 121.324 -8.849 121.599 -8.846 121.868 -8.750 122.148 -8.725 122.445 -8.602 122.753 -8.250 122.890 -8.313 122.819 -8.464 122.555 -8.618 122.335 -8.503 122.066 -8.495 121.802 -8.549 121.538 -8.481 121.258 -8.371 120.989 -8.294 120.687 -8.266 120.423 ; #73 1 38.280 15.588 38.228 15.308 38.157 14.995 38.099 14.648 38.022 14.291 38.011 13.934 38.047 13.582 38.159 13.231 38.096 12.835 38.016 12.549 37.742 12.489 37.571 12.775 37.484 13.121 37.319 13.423 37.173 13.731 37.096 14.066 36.956 14.368 36.758 14.610 36.692 14.967 36.827 15.132 37.110 15.258 37.354 15.137 37.635 15.181 37.890 15.330 38.143 15.533 ; #74 -1 62.893 34.527 62.610 34.802 62.582 35.137 62.354 35.527 62.148 35.187 62.374 34.676 62.179 34.665 62.162 34.429 62.431 34.110 62.382 34.060 62.124 34.352 61.841 34.473 61.599 34.753 61.445 35.253 61.148 35.577 61.148 35.055 61.041 35.060 60.923 35.747 61.085 36.203 61.308 36.407 61.566 36.165 61.841 35.901 62.104 35.731 62.412 35.802 62.618 35.456 62.788 34.918 ; #75 1 -2.676 150.819 -2.786 150.912 -2.901 151.176 -3.063 151.418 -3.225 151.654 -3.407 151.885 -3.505 152.154 -3.692 152.363 -3.918 152.544 -4.181 152.670 -4.470 152.692 -4.750 152.835 -4.651 153.033 -4.376 153.099 -4.121 153.022 -3.929 152.824 -3.780 152.577 -3.588 152.385 -3.390 152.154 -3.217 151.934 -3.080 151.687 -2.926 151.434 -2.813 151.176 -2.651 150.934 ; #76 1 -8.379 117.209 -8.431 117.077 -8.602 116.830 -8.912 116.780 -9.077 116.967 -9.049 117.247 -9.005 117.538 -8.926 117.819 -8.860 118.093 -8.706 118.335 -8.764 118.429 -8.802 118.775 -8.676 119.055 -8.404 119.011 -8.409 118.742 -8.319 118.621 -8.316 118.324 -8.137 118.088 -8.179 117.791 -8.420 117.923 -8.541 118.187 -8.665 118.137 -8.690 117.846 -8.495 117.615 -8.431 117.368 ; #77 1 19.909 109.544 19.874 109.401 19.750 109.220 19.541 108.973 19.365 108.720 19.132 108.643 18.835 108.654 18.544 108.725 18.385 108.995 18.299 109.264 18.234 109.604 18.401 109.907 18.486 110.088 18.684 110.357 18.865 110.495 19.162 110.566 19.500 110.780 19.648 110.967 19.940 110.923 20.038 110.621 20.016 110.363 19.970 110.038 19.973 109.753 ; #78 1 73.959 -95.269 73.775 -94.989 73.706 -95.308 73.503 -95.637 73.184 -95.599 72.896 -95.654 72.637 -95.407 72.363 -95.181 72.077 -95.011 72.063 -94.115 72.371 -93.648 72.695 -93.918 72.777 -93.214 72.753 -92.214 73.000 -91.648 73.255 -91.357 73.530 -90.885 73.808 -90.368 73.967 -90.797 73.995 -91.868 74.071 -92.604 74.140 -93.648 74.085 -94.621 ; #79 -1 23.838 32.846 23.596 32.758 23.478 32.802 23.269 32.808 22.997 32.626 22.750 32.489 22.725 32.236 22.687 31.962 22.522 31.736 22.266 31.522 22.041 31.352 21.780 31.203 21.659 31.170 22.000 31.390 22.242 31.604 22.393 31.824 22.610 32.005 22.610 32.291 22.777 32.560 22.975 32.747 23.036 32.940 23.338 32.967 23.613 32.962 23.890 32.901 ; #80 2 76.591 -100.560 76.360 -100.357 76.058 -99.923 76.104 -100.566 76.360 -101.593 76.184 -101.791 75.882 -101.352 75.830 -101.709 75.703 -102.412 75.541 -102.335 75.604 -101.110 75.681 -99.582 75.549 -99.945 75.330 -100.434 75.052 -100.225 75.025 -99.198 75.104 -98.066 75.376 -97.841 75.541 -97.396 75.797 -97.676 76.121 -97.566 76.409 -97.753 76.558 -98.753 76.599 -99.747 ; #81 1 41.212 9.176 41.060 8.962 40.885 8.665 40.865 8.258 40.607 8.214 40.357 8.418 40.074 8.434 39.799 8.489 39.508 8.423 39.184 8.418 39.008 8.489 38.904 8.786 39.159 9.055 39.168 9.368 39.258 9.588 39.544 9.643 39.838 9.687 40.113 9.676 40.379 9.731 40.640 9.753 40.926 9.610 41.154 9.418 ; #82 1 34.181 134.615 34.253 134.374 34.357 134.082 34.264 133.725 34.082 133.593 33.953 133.291 34.036 132.934 33.805 132.703 33.591 132.489 33.412 132.165 33.412 132.253 33.258 132.445 32.992 132.500 32.783 132.813 32.942 133.027 33.184 133.214 33.396 133.390 33.503 133.720 33.354 134.110 33.566 134.346 33.750 134.610 33.920 134.659 ; #83 -1 63.091 25.577 62.953 25.830 62.673 25.769 62.407 25.868 62.137 25.643 61.893 25.412 61.646 25.308 61.357 25.308 61.099 25.456 61.176 26.016 61.275 25.753 61.511 25.621 61.799 25.665 62.060 25.824 62.387 26.253 62.492 26.736 62.723 26.967 62.929 26.830 62.739 26.566 62.519 26.225 62.500 25.962 62.728 26.110 62.964 26.044 ; #84 -1 58.580 -110.973 58.670 -110.473 58.918 -110.132 59.049 -109.637 59.107 -109.104 59.129 -108.538 59.203 -107.962 59.310 -107.533 59.272 -106.918 59.261 -106.291 59.283 -106.423 59.324 -106.956 59.385 -107.511 59.445 -108.082 59.415 -108.615 59.497 -108.962 59.577 -109.489 59.379 -109.868 59.170 -110.302 58.981 -110.692 58.764 -111.115 ; #85 2 77.335 -118.901 77.179 -119.505 76.940 -120.176 76.706 -120.907 76.475 -121.654 76.297 -122.637 76.063 -122.577 76.041 -121.099 75.945 -120.522 75.907 -119.835 76.192 -119.418 76.442 -118.720 76.706 -118.214 76.624 -117.901 76.338 -117.670 76.484 -116.896 76.706 -116.077 76.973 -116.104 77.247 -115.808 77.475 -116.071 77.404 -116.951 77.360 -117.973 ; #86 -1 47.723 84.297 47.868 84.407 48.063 84.137 48.291 83.736 48.459 83.637 48.753 83.489 48.962 83.742 49.129 84.253 49.330 84.071 49.585 83.830 49.607 83.577 49.456 83.692 49.294 84.060 49.091 84.011 48.964 83.599 48.714 83.429 48.423 83.467 48.239 83.187 48.077 83.297 47.970 83.698 47.810 84.060 ; #87 1 46.923 -60.423 46.953 -60.637 46.692 -60.951 46.464 -61.104 46.214 -61.346 45.962 -61.511 45.673 -61.412 45.582 -61.115 45.599 -60.720 45.690 -60.308 45.874 -60.000 46.113 -59.907 46.195 -60.368 45.973 -60.582 45.742 -60.725 45.777 -60.989 45.981 -60.923 46.214 -60.560 46.434 -60.462 46.698 -60.346 ; #88 -1 13.055 15.110 13.126 14.912 13.247 14.648 13.201 14.363 13.354 14.187 13.376 13.995 13.481 13.797 13.769 13.830 13.953 13.599 13.830 13.308 13.527 13.368 13.280 13.511 13.110 13.736 12.973 13.835 12.731 13.852 12.508 14.088 12.635 14.286 12.808 14.527 12.890 14.775 12.945 15.082 ; #89 1 35.302 26.297 35.223 26.126 35.220 25.769 35.316 25.478 35.363 25.121 35.412 24.791 35.371 24.412 35.516 24.126 35.577 23.725 35.434 23.560 35.245 23.676 35.209 24.044 35.168 24.390 35.025 24.714 34.940 25.011 34.978 25.357 35.005 25.709 35.019 26.066 35.179 26.286 ; #90 2 80.321 24.500 80.220 23.659 80.368 22.940 80.129 22.374 80.209 21.495 80.390 20.286 80.368 19.698 80.209 19.027 80.030 18.390 79.769 18.786 79.769 21.280 79.610 20.440 79.420 20.709 79.368 22.379 79.214 23.687 79.357 25.055 79.566 25.951 79.813 26.852 80.096 26.956 80.231 25.390 ; #91 -1 46.690 -100.769 46.525 -100.621 46.231 -100.610 45.970 -100.555 45.687 -100.484 45.429 -100.473 45.332 -100.462 45.096 -100.374 44.863 -100.588 44.786 -100.995 44.745 -100.962 44.541 -100.582 44.668 -100.566 44.934 -100.374 45.168 -100.269 45.467 -100.341 45.728 -100.346 45.975 -100.467 46.255 -100.560 46.563 -100.577 ; #92 1 10.909 123.516 10.956 123.346 10.920 123.066 10.695 122.945 10.431 122.846 10.118 122.835 9.975 122.588 9.772 122.418 9.522 122.533 9.354 122.780 9.113 122.962 9.124 123.214 9.382 123.275 9.629 123.159 9.934 123.198 10.203 123.319 10.470 123.423 10.742 123.544 ; #93 -1 74.571 103.137 74.687 104.115 74.783 105.203 74.854 105.269 74.951 104.198 74.681 103.302 74.637 102.269 74.659 101.198 74.885 100.571 75.008 100.302 74.602 100.418 74.415 99.758 74.357 99.643 74.280 100.670 74.000 101.044 73.926 101.374 74.266 101.143 74.409 101.203 74.352 102.044 74.508 102.527 ; #94 1 -1.500 105.868 -1.657 105.758 -1.637 105.632 -1.668 105.396 -1.959 105.214 -2.115 105.385 -2.124 105.676 -2.349 105.835 -2.599 105.918 -2.830 106.044 -2.934 106.324 -3.074 106.571 -2.973 106.670 -2.643 106.731 -2.516 106.577 -2.407 106.313 -2.135 106.192 -1.846 106.137 -1.588 105.995 ; #95 -1 56.703 -124.791 56.505 -124.582 56.146 -124.341 55.997 -124.170 55.805 -123.868 55.596 -123.500 55.288 -123.225 55.360 -123.198 55.599 -123.440 55.843 -123.725 56.014 -123.555 56.027 -123.033 56.071 -122.434 56.129 -122.555 56.055 -123.060 56.030 -123.527 56.165 -124.022 56.346 -124.346 56.596 -124.599 ; #96 2 -72.201 -102.258 -72.245 -101.544 -72.294 -100.626 -72.390 -99.588 -72.508 -98.830 -72.516 -97.819 -72.560 -96.912 -72.473 -96.104 -72.258 -96.104 -72.201 -96.747 -72.044 -96.604 -71.879 -96.951 -72.063 -97.445 -72.058 -98.082 -71.865 -98.621 -71.995 -99.060 -72.058 -99.566 -71.995 -100.308 -71.970 -101.225 -72.063 -102.247 ; #97 -1 4.599 36.038 4.365 35.918 4.074 35.896 3.794 35.846 3.516 35.912 3.261 36.044 3.016 36.176 2.805 36.385 2.495 36.571 2.695 36.698 2.901 36.582 3.096 36.368 3.349 36.242 3.646 36.225 3.929 36.209 4.220 36.220 4.514 36.198 ; #98 -1 61.720 30.780 61.505 30.407 61.255 30.016 61.036 30.203 60.794 30.500 60.525 30.720 60.269 30.956 59.975 31.253 60.154 31.643 60.190 32.176 60.288 32.599 60.536 32.775 60.821 32.786 61.077 32.533 61.275 32.060 61.451 31.610 61.643 31.192 ; #99 2 79.357 -103.819 79.327 -104.780 79.143 -105.538 78.923 -104.549 78.714 -103.725 78.541 -104.055 78.407 -104.863 78.283 -103.824 78.302 -102.571 78.181 -101.214 77.923 -100.626 77.849 -99.462 78.115 -99.165 78.387 -99.714 78.657 -99.896 78.863 -100.940 79.003 -102.324 79.255 -103.132 ; #100 -1 49.393 43.648 49.170 43.841 48.942 43.753 48.717 43.484 48.492 43.143 48.231 42.951 47.997 42.835 47.909 42.434 47.712 42.209 47.626 42.478 47.764 42.945 47.907 43.099 48.170 43.176 48.445 43.445 48.670 43.604 48.918 43.769 49.159 43.907 49.379 43.670 ; #101 1 35.684 34.588 35.626 34.418 35.500 34.110 35.393 33.780 35.335 33.434 35.346 33.033 35.176 32.780 35.080 32.401 34.863 32.357 34.679 32.604 34.626 32.962 34.725 33.313 34.860 33.599 34.973 33.934 35.187 33.951 35.409 34.159 35.582 34.451 ; #102 1 12.571 124.291 12.412 124.324 12.154 124.445 11.981 124.698 11.799 124.907 11.591 124.934 11.415 124.951 11.203 125.170 11.129 125.588 11.363 125.582 11.668 125.478 11.940 125.473 12.214 125.451 12.434 125.291 12.560 125.016 12.519 124.747 12.538 124.445 ; #103 -1 -17.912 27.104 -17.698 27.269 -17.516 27.500 -17.258 27.676 -17.091 27.929 -16.931 28.104 -16.813 28.396 -16.673 28.808 -16.525 28.571 -16.613 28.275 -16.799 28.044 -16.929 27.769 -17.121 27.593 -17.385 27.390 -17.607 27.264 -17.846 27.093 ; #104 -1 59.234 56.209 58.997 55.962 58.783 56.082 58.602 55.621 58.582 55.632 58.533 56.088 58.245 56.319 57.890 56.742 58.129 56.830 58.247 56.555 58.555 56.264 58.854 56.456 59.126 56.280 59.346 56.632 59.624 56.610 59.750 56.571 59.374 56.495 ; #105 -1 56.291 -103.242 56.415 -103.005 56.591 -102.544 56.799 -102.297 57.063 -102.016 57.352 -102.000 57.786 -101.709 58.016 -101.901 57.959 -102.198 57.709 -102.588 57.401 -102.863 57.168 -102.709 56.772 -102.687 56.591 -102.962 56.745 -103.077 56.651 -103.165 56.445 -103.275 ; #106 1 18.214 -78.291 18.146 -78.049 17.948 -77.824 17.852 -77.555 17.780 -77.214 17.909 -76.896 17.904 -76.654 17.882 -76.324 18.060 -76.297 18.203 -76.538 18.321 -76.813 18.412 -77.093 18.464 -77.396 18.495 -77.692 18.467 -77.989 18.382 -78.275 ; #107 1 11.865 121.923 11.703 122.027 11.423 122.066 11.135 122.049 10.849 121.967 10.552 121.962 10.522 122.077 10.657 122.330 10.739 122.610 10.937 122.813 11.121 123.033 11.453 123.143 11.505 122.929 11.563 122.665 11.687 122.407 11.821 122.148 ; #108 1 -9.558 118.984 -9.736 119.187 -9.769 119.473 -9.863 119.736 -10.025 119.978 -10.217 120.192 -10.266 120.484 -10.148 120.758 -9.920 120.725 -9.701 120.522 -9.582 120.264 -9.379 120.016 -9.365 119.758 -9.368 119.467 -9.393 119.176 ; #109 2 79.379 99.676 79.684 99.857 79.953 99.533 79.953 98.407 79.865 97.681 80.129 96.962 80.063 95.291 79.854 94.352 79.566 93.324 79.473 93.863 79.124 94.835 79.011 96.126 78.852 97.456 78.802 98.824 79.003 99.780 79.234 99.308 ; #110 -1 54.643 90.956 54.423 91.220 54.151 91.434 53.871 91.445 53.898 91.604 54.047 91.599 54.360 91.495 54.596 91.110 54.865 90.995 55.041 91.319 55.104 91.786 55.327 92.396 55.291 92.143 55.162 91.720 55.074 91.242 54.882 90.940 ; #111 1 69.885 -97.973 69.742 -98.247 69.484 -98.357 69.228 -98.709 69.058 -99.407 68.871 -98.973 68.758 -98.275 68.571 -97.429 68.497 -96.758 68.571 -96.066 68.739 -95.522 68.887 -95.637 69.132 -96.104 69.379 -96.440 69.596 -97.143 69.764 -97.555 ; #112 1 13.547 92.995 13.360 92.874 13.077 92.830 12.777 92.769 12.511 92.720 12.225 92.725 11.920 92.593 11.621 92.643 11.687 92.742 11.989 92.769 12.283 92.879 12.511 92.956 12.871 92.940 13.082 93.000 13.368 93.038 ; #113 2 77.997 100.104 78.162 101.302 78.209 102.665 78.302 104.110 78.453 105.154 78.764 105.011 78.951 104.302 79.093 103.368 78.981 102.626 79.327 102.247 79.063 101.198 78.802 100.780 78.549 100.192 78.275 99.802 78.041 99.396 ; #114 1 11.253 124.060 11.129 123.962 10.854 123.890 10.596 123.753 10.338 123.621 10.080 123.467 9.835 123.379 9.533 123.330 9.525 123.445 9.788 123.566 10.060 123.676 10.277 123.885 10.495 124.033 10.786 124.038 11.071 124.038 ; #115 -1 53.148 -100.544 53.104 -100.896 52.915 -100.984 52.879 -100.648 52.758 -100.280 52.580 -100.027 52.305 -100.143 51.915 -100.038 51.692 -99.813 51.813 -99.725 52.096 -99.802 52.363 -99.747 52.646 -99.670 52.912 -99.775 53.080 -100.220 ; #116 1 -5.558 154.736 -5.835 154.731 -6.071 154.885 -6.261 155.093 -6.489 155.214 -6.723 155.346 -6.854 155.610 -6.758 155.896 -6.475 155.874 -6.250 155.659 -6.099 155.445 -5.868 155.247 -5.610 155.077 -5.500 154.830 ; #117 1 56.349 -133.599 56.212 -133.495 55.956 -133.220 55.668 -133.192 55.376 -133.071 55.220 -132.802 55.005 -132.500 54.775 -132.236 54.901 -132.005 55.151 -132.099 55.464 -132.385 55.648 -132.390 55.912 -132.626 56.104 -133.016 56.310 -133.313 ; #118 1 72.907 122.874 72.797 123.769 72.662 124.615 72.478 125.368 72.409 126.165 72.747 126.319 73.019 126.555 73.321 126.456 73.484 125.896 73.646 125.055 73.712 124.066 73.544 123.401 73.176 123.484 72.981 122.923 ; #119 1 46.984 -64.104 46.758 -64.346 46.563 -64.154 46.376 -63.852 46.217 -63.549 46.223 -63.126 46.060 -62.896 46.110 -62.533 46.360 -62.253 46.459 -62.566 46.429 -62.929 46.473 -63.363 46.503 -63.753 46.632 -63.918 46.885 -64.016 ; #120 -1 -21.495 -45.544 -21.374 -45.747 -21.104 -45.879 -20.835 -46.049 -20.745 -45.868 -20.967 -45.593 -21.069 -45.330 -20.995 -45.412 -20.717 -45.610 -20.637 -45.780 -20.670 -46.121 -20.827 -46.148 -21.069 -46.055 -21.327 -46.071 -21.374 -45.945 -21.473 -45.687 ; #121 -1 51.786 -99.170 51.709 -99.357 51.574 -99.363 51.302 -99.022 51.088 -98.901 50.841 -98.791 50.569 -98.610 50.272 -98.495 50.261 -98.093 50.492 -98.011 50.731 -98.269 50.912 -98.643 51.154 -98.654 51.511 -98.857 51.651 -99.060 ; #122 1 49.863 -63.698 49.890 -64.280 49.739 -64.154 49.591 -63.764 49.379 -63.484 49.236 -63.077 49.148 -62.654 49.080 -62.225 49.168 -61.791 49.396 -62.099 49.552 -62.473 49.698 -62.857 49.802 -63.280 ; #123 1 -49.602 70.192 -49.453 69.852 -49.374 70.159 -49.354 70.434 -49.110 70.341 -49.239 69.813 -49.129 69.500 -49.069 69.187 -48.813 69.027 -49.014 68.819 -49.275 68.846 -49.602 68.824 -49.585 69.148 -49.585 69.615 -49.648 69.879 ; #124 1 13.467 120.324 13.335 120.456 13.124 120.670 12.849 120.780 12.607 120.901 12.338 121.066 12.280 121.297 12.481 121.456 12.758 121.505 13.069 121.495 13.294 121.341 13.440 121.071 13.486 120.813 13.508 120.511 ; #125 1 73.692 -80.813 73.470 -80.841 73.228 -80.401 72.973 -80.082 72.772 -79.445 72.857 -78.500 72.876 -77.544 72.830 -76.544 73.011 -76.269 73.269 -76.747 73.503 -77.313 73.646 -78.231 73.646 -79.269 73.734 -80.253 ; #126 1 -43.371 -73.791 -43.168 -73.670 -42.937 -73.582 -42.690 -73.681 -42.478 -73.720 -42.231 -73.456 -41.912 -73.538 -41.841 -73.896 -42.030 -74.055 -42.310 -74.170 -42.596 -74.176 -42.893 -74.209 -43.179 -74.341 -43.349 -74.082 ; #127 2 -80.810 -61.588 -80.599 -60.582 -80.321 -60.253 -80.030 -60.198 -79.725 -60.264 -79.706 -61.319 -79.997 -61.725 -80.231 -62.478 -80.288 -64.170 -80.187 -66.407 -80.448 -66.022 -80.481 -64.330 -80.703 -63.055 ; #128 1 57.827 -153.253 57.772 -153.604 57.519 -153.775 57.596 -154.093 57.519 -154.560 57.275 -154.676 56.973 -154.423 57.022 -154.269 57.080 -154.027 56.912 -153.918 56.989 -153.648 57.217 -153.264 57.396 -152.852 57.464 -152.467 57.687 -152.385 57.843 -152.676 57.915 -152.973 ; #129 -1 48.135 -103.192 48.104 -103.588 48.055 -103.604 48.099 -103.176 48.080 -102.758 47.846 -102.560 47.604 -102.302 47.489 -101.868 47.563 -101.308 47.593 -101.500 47.563 -101.907 47.819 -102.275 47.912 -102.571 48.140 -102.786 ; #130 1 -17.005 178.742 -16.901 178.929 -16.755 179.154 -16.788 179.407 -16.659 179.841 -16.695 179.604 -16.571 179.599 -16.247 179.901 -16.231 179.665 -16.349 179.412 -16.434 179.132 -16.558 178.857 -16.684 178.577 -16.863 178.621 ; #131 1 -7.385 138.544 -7.420 138.368 -7.549 138.110 -7.772 137.929 -8.027 137.791 -8.308 137.670 -8.390 137.802 -8.390 138.093 -8.393 138.385 -8.223 138.632 -8.041 138.857 -7.780 138.978 -7.536 138.962 -7.374 138.703 ; #132 1 20.236 -155.874 20.022 -155.857 19.750 -156.000 19.456 -155.918 19.162 -155.896 18.995 -155.670 19.176 -155.429 19.294 -155.159 19.456 -154.874 19.695 -154.989 19.931 -155.148 20.085 -155.412 20.198 -155.692 ; #133 1 42.997 9.374 42.783 9.291 42.640 8.951 42.437 8.643 42.159 8.637 41.868 8.703 41.626 8.835 41.470 9.187 41.720 9.374 42.014 9.467 42.297 9.549 42.591 9.489 42.871 9.467 ; #134 1 54.132 -131.681 54.014 -132.022 53.805 -132.247 53.679 -132.379 54.027 -132.429 54.143 -132.830 54.008 -133.088 53.706 -132.995 53.440 -132.681 53.250 -132.588 53.203 -132.187 53.431 -131.923 53.714 -131.885 53.981 -131.714 ; #135 -1 -15.376 -69.544 -15.297 -69.714 -15.538 -69.857 -15.725 -69.989 -15.876 -69.819 -15.995 -69.560 -16.190 -69.407 -16.162 -69.115 -16.385 -68.962 -16.327 -68.692 -16.096 -68.830 -15.890 -68.978 -15.681 -69.198 -15.489 -69.407 ; #136 1 11.442 124.330 11.190 124.401 10.948 124.511 10.821 124.758 10.541 124.764 10.165 124.901 10.286 125.126 10.508 125.192 10.775 125.049 11.069 125.044 11.335 124.962 11.338 124.709 11.437 124.467 ; #137 1 18.247 -67.198 17.986 -67.121 17.967 -66.797 17.967 -66.489 17.945 -66.192 18.016 -65.890 18.277 -65.676 18.445 -65.967 18.462 -66.209 18.486 -66.522 18.489 -66.835 18.464 -67.137 ; #138 1 -18.255 178.071 -18.176 178.264 -18.115 178.538 -17.923 178.637 -17.648 178.544 -17.440 178.308 -17.354 178.093 -17.420 177.764 -17.533 177.516 -17.764 177.374 -18.030 177.302 -18.170 177.555 -18.247 177.857 ; #139 -1 -15.657 30.780 -15.695 30.945 -15.761 31.231 -15.717 31.533 -15.717 31.835 -15.681 32.132 -15.593 32.522 -15.544 32.390 -15.588 32.093 -15.610 31.808 -15.618 31.495 -15.668 31.209 -15.646 30.912 ; #140 1 -50.033 -74.703 -49.909 -74.511 -49.662 -74.511 -49.343 -74.456 -49.033 -74.489 -48.766 -74.643 -48.879 -74.945 -49.206 -74.923 -49.374 -75.275 -49.723 -75.148 -49.500 -74.863 -49.632 -74.824 -49.918 -74.802 ; #141 1 45.503 148.681 45.349 148.418 45.324 148.016 45.209 147.802 45.016 147.505 44.783 147.181 44.541 146.945 44.505 147.077 44.703 147.368 44.920 147.659 45.063 148.016 45.231 148.352 45.374 148.758 ; #142 -1 11.360 4.137 11.209 4.313 11.066 4.566 10.810 4.687 10.593 4.522 10.335 4.440 10.019 4.533 10.091 4.599 10.360 4.659 10.624 4.681 10.918 4.703 11.143 4.505 11.272 4.247 ; #143 -1 54.217 -100.269 53.953 -100.341 53.717 -100.363 53.500 -100.698 53.280 -100.484 53.118 -100.088 53.118 -99.610 53.217 -99.396 53.283 -99.681 53.376 -99.940 53.659 -100.088 53.901 -99.725 53.904 -99.978 54.121 -100.038 ; #144 -1 51.335 -73.005 51.266 -73.319 51.071 -73.676 50.882 -73.901 50.495 -73.989 50.181 -73.995 50.324 -73.830 50.547 -73.797 50.805 -73.610 51.069 -73.280 50.912 -73.335 50.978 -73.159 51.176 -72.830 51.206 -72.907 51.258 -72.951 ; #145 1 58.327 -134.934 58.110 -134.791 57.805 -134.709 57.462 -134.473 57.165 -134.495 57.310 -134.066 57.508 -133.967 57.937 -134.225 57.725 -133.951 57.843 -133.945 58.107 -134.209 58.231 -134.692 ; #146 1 70.283 -54.544 70.014 -54.615 69.764 -54.736 69.582 -54.560 69.522 -53.714 69.423 -53.940 69.272 -53.725 69.341 -52.951 69.473 -52.220 69.706 -51.967 69.918 -52.621 70.140 -53.148 70.277 -53.901 ; #147 -1 12.085 -85.846 11.893 -85.912 11.629 -85.857 11.354 -85.720 11.195 -85.484 11.104 -85.203 11.055 -84.901 11.261 -84.813 11.492 -84.973 11.712 -85.170 11.885 -85.407 12.049 -85.637 ; #148 -1 1.063 30.604 1.266 30.769 1.495 30.956 1.637 31.203 1.871 31.368 2.253 31.412 2.184 31.275 1.992 31.060 1.819 30.830 1.618 30.621 1.387 30.445 1.159 30.484 ; #149 2 81.201 95.060 81.005 93.462 80.764 92.885 80.459 92.330 80.310 92.110 80.187 92.692 80.074 94.346 80.198 95.863 80.332 97.187 80.657 97.440 80.871 97.302 81.115 96.341 81.277 95.775 ; #150 -1 59.115 38.132 59.022 37.632 58.854 37.918 58.624 37.890 58.720 37.313 58.613 37.374 58.376 37.769 58.143 38.242 58.154 38.648 58.398 38.956 58.610 38.632 58.838 38.280 ; #151 1 -7.637 158.527 -7.854 158.720 -8.030 158.945 -8.173 159.203 -8.302 159.462 -8.478 159.775 -8.357 159.797 -8.146 159.588 -7.989 159.346 -7.876 159.082 -7.701 158.846 -7.577 158.610 ; #152 1 68.157 -75.022 68.253 -75.335 68.321 -76.093 68.203 -76.758 67.942 -77.115 67.662 -77.280 67.385 -77.154 67.236 -76.615 67.280 -75.863 67.440 -75.253 67.714 -75.060 68.003 -75.088 ; #153 -1 -33.582 -53.516 -33.448 -53.456 -33.140 -53.363 -32.934 -53.159 -32.846 -52.967 -32.788 -52.703 -32.363 -52.692 -32.500 -52.951 -32.714 -53.225 -32.931 -53.385 -33.148 -53.604 -33.448 -53.566 ; #154 -1 49.984 -94.593 49.813 -94.610 49.571 -94.907 49.321 -94.978 49.099 -95.225 48.926 -95.115 48.896 -94.681 49.124 -94.225 49.332 -94.593 49.368 -94.187 49.591 -94.308 49.821 -94.495 ; #155 2 -79.791 -158.714 -79.525 -158.885 -79.275 -159.687 -79.041 -160.621 -78.802 -161.489 -78.794 -162.824 -79.063 -163.632 -79.349 -163.593 -79.588 -162.720 -79.769 -161.473 -79.854 -159.940 ; #156 2 -73.857 -118.742 -73.788 -119.676 -73.761 -120.703 -73.673 -121.687 -73.651 -122.808 -73.898 -122.588 -74.203 -122.527 -74.365 -122.005 -74.288 -120.984 -74.203 -119.984 -74.085 -119.055 ; #157 1 58.255 -135.830 58.154 -136.198 57.934 -136.264 57.679 -136.121 57.459 -135.819 57.629 -135.676 57.662 -135.527 57.489 -135.038 57.646 -134.885 57.852 -135.511 57.808 -135.198 57.940 -135.027 58.063 -135.445 58.077 -135.654 ; #158 1 -0.027 -91.500 -0.291 -91.335 -0.588 -91.176 -0.788 -91.423 -0.995 -91.379 -1.003 -91.088 -0.838 -90.852 -0.580 -90.934 -0.335 -91.066 -0.096 -91.209 0.107 -91.363 ; #159 1 -3.192 126.038 -3.462 126.088 -3.651 126.291 -3.780 126.555 -3.794 126.830 -3.681 127.093 -3.467 127.236 -3.272 127.077 -3.096 126.841 -3.069 126.549 -3.129 126.258 ; #160 1 70.863 179.187 70.956 -179.951 70.945 -179.093 71.025 -178.198 71.228 -177.610 71.473 -178.187 71.574 -179.016 71.538 -179.923 71.363 179.346 71.137 178.764 70.898 178.736 ; #161 1 38.904 23.033 38.742 23.335 38.519 23.593 38.387 23.907 38.223 24.148 38.025 24.445 38.176 24.385 38.418 24.209 38.651 24.049 38.747 23.681 38.929 23.412 ; #162 1 41.049 -71.989 41.030 -72.390 40.986 -72.703 40.956 -73.093 40.923 -73.445 40.698 -73.841 40.626 -73.582 40.720 -73.165 40.786 -72.764 40.868 -72.440 40.989 -72.077 ; #163 1 63.049 -169.527 63.206 -169.016 63.341 -169.231 63.440 -169.769 63.621 -170.198 63.615 -170.890 63.670 -171.500 63.555 -171.813 63.360 -171.467 63.379 -170.698 63.258 -170.258 63.080 -169.830 ; #164 1 -54.876 -36.016 -54.755 -35.934 -54.486 -36.077 -54.275 -36.456 -54.115 -36.813 -54.044 -37.280 -54.003 -37.819 -54.093 -37.720 -54.206 -37.330 -54.368 -36.912 -54.538 -36.527 -54.783 -36.225 ; #165 1 -52.223 -59.478 -52.102 -59.143 -51.962 -58.775 -51.830 -58.302 -51.712 -57.896 -51.522 -57.929 -51.522 -58.242 -51.431 -58.440 -51.324 -58.830 -51.607 -59.055 -51.780 -59.313 -51.997 -59.577 ; #166 -1 25.437 -97.500 25.291 -97.659 24.992 -97.692 24.739 -97.692 24.470 -97.769 24.016 -97.747 24.154 -97.725 24.445 -97.681 24.728 -97.615 25.008 -97.538 25.291 -97.445 ; #167 -1 42.714 77.929 42.679 77.626 42.654 77.236 42.588 76.857 42.420 76.379 42.250 76.703 42.168 77.060 42.176 77.467 42.332 77.813 42.621 78.154 ; #168 1 -4.404 123.016 -4.580 122.874 -4.871 122.835 -5.148 122.775 -5.412 122.637 -5.648 122.703 -5.527 122.890 -5.379 123.099 -5.195 123.077 -5.036 122.978 -4.772 123.132 -4.525 123.143 ; #169 2 -79.588 -71.659 -79.599 -70.698 -79.349 -69.797 -79.082 -69.137 -78.843 -68.280 -78.560 -67.495 -78.511 -68.407 -78.695 -69.571 -78.893 -70.676 -79.132 -71.538 -79.409 -71.824 ; #170 1 56.088 12.423 55.865 12.022 55.860 11.654 55.717 11.115 55.437 11.143 55.225 11.330 55.060 11.830 55.179 12.165 55.423 12.280 55.648 12.484 55.931 12.549 ; #171 1 -54.945 -68.489 -54.973 -68.857 -55.049 -69.407 -55.190 -69.769 -55.418 -69.401 -55.261 -69.352 -55.209 -69.099 -55.390 -68.841 -55.555 -68.242 -55.319 -68.423 -55.124 -68.791 -55.085 -68.516 ; #172 2 75.459 146.302 75.179 146.352 74.986 147.302 74.819 148.187 74.766 149.286 74.876 150.341 75.126 150.555 75.255 149.440 75.316 148.495 75.390 147.412 75.467 146.698 ; #173 1 72.522 126.698 72.714 127.478 72.868 128.291 73.104 128.923 73.316 128.275 73.489 127.588 73.423 126.775 73.129 126.709 72.857 126.412 72.560 126.357 72.409 126.478 ; #174 1 -8.176 114.467 -8.371 114.626 -8.470 114.907 -8.745 115.165 -8.602 115.385 -8.409 115.637 -8.170 115.473 -8.091 115.187 -8.184 114.907 -8.126 114.615 ; #175 -1 53.901 81.236 53.981 81.346 54.217 81.725 54.379 82.121 54.541 82.533 54.723 83.066 54.799 82.901 54.618 82.456 54.409 82.088 54.247 81.703 54.041 81.341 ; #176 1 -8.343 160.654 -8.527 160.670 -8.805 160.720 -9.080 160.830 -9.286 161.027 -9.522 161.291 -9.382 161.302 -9.140 161.225 -8.904 161.071 -8.659 160.962 -8.407 160.824 ; #177 -1 59.343 13.852 59.352 13.335 59.063 13.137 58.962 12.654 58.766 12.495 58.492 12.445 58.418 12.615 58.560 13.099 58.679 13.632 58.890 13.962 59.129 14.033 ; #178 2 -74.071 -123.797 -73.794 -124.121 -73.665 -124.907 -73.423 -125.560 -73.250 -126.346 -73.354 -127.220 -73.610 -127.005 -73.780 -126.214 -73.995 -125.505 -74.132 -124.593 ; #179 1 -9.305 159.632 -9.516 159.626 -9.745 159.791 -9.821 160.077 -9.852 160.374 -9.863 160.714 -9.613 160.626 -9.448 160.374 -9.429 160.077 -9.332 159.824 ; #180 1 -6.898 112.907 -7.033 112.747 -7.181 112.885 -7.203 113.154 -7.212 113.495 -7.118 113.736 -7.027 113.984 -6.887 113.956 -6.890 113.665 -6.890 113.374 -6.887 113.082 ; #181 -1 -46.926 -72.808 -46.725 -72.511 -46.563 -72.176 -46.516 -71.764 -46.580 -71.330 -46.451 -71.319 -46.338 -71.769 -46.484 -72.115 -46.563 -72.555 -46.626 -72.698 -46.879 -72.846 ; #182 1 -52.118 -60.857 -52.165 -60.538 -51.992 -60.121 -51.830 -59.747 -51.484 -59.418 -51.423 -59.890 -51.437 -60.423 -51.687 -60.352 -51.879 -60.440 -52.003 -60.802 ; #183 2 75.613 -95.110 75.437 -95.830 75.234 -96.220 74.964 -96.264 74.783 -95.473 74.643 -94.544 74.731 -93.555 75.030 -93.495 75.316 -93.687 75.558 -94.346 ; #184 1 -11.885 131.027 -11.742 131.242 -11.516 131.467 -11.261 131.363 -11.330 131.126 -11.368 130.797 -11.291 130.522 -11.442 130.429 -11.692 130.571 -11.852 130.819 ; #185 -1 56.885 54.242 57.027 54.725 57.225 55.121 57.349 55.533 57.665 55.434 57.723 55.313 57.396 55.363 57.264 54.978 57.091 54.654 56.951 54.176 56.799 54.093 ; #186 -1 46.137 33.791 46.027 34.099 45.898 34.478 45.783 34.747 45.401 35.192 45.574 35.099 45.827 34.879 46.077 34.604 46.181 34.236 46.201 33.901 ; #187 1 10.821 -61.082 10.799 -61.247 10.692 -61.527 10.341 -61.484 10.132 -61.775 10.069 -61.665 10.071 -61.368 10.132 -61.071 10.396 -61.011 10.742 -60.989 ; #188 1 57.448 -135.165 57.440 -135.456 57.201 -135.412 56.920 -135.275 56.670 -135.033 56.302 -134.780 56.503 -134.632 56.769 -134.643 57.052 -134.764 57.316 -134.940 ; #189 -1 51.788 -68.434 51.690 -68.780 51.761 -69.143 51.643 -69.214 51.354 -69.148 51.118 -68.907 50.832 -68.742 50.857 -68.692 51.107 -68.456 51.341 -68.242 51.621 -68.242 ; #190 1 -1.640 135.473 -1.712 135.692 -1.797 135.967 -1.876 136.247 -1.827 136.687 -1.728 136.495 -1.673 136.214 -1.643 135.929 -1.618 135.637 ; #191 -1 38.203 45.137 38.008 45.121 37.766 45.198 37.484 45.286 37.187 45.445 37.335 45.775 37.618 45.747 37.802 45.500 38.096 45.473 ; #192 1 26.893 -77.830 26.816 -77.527 26.621 -77.302 26.412 -77.209 26.041 -77.275 26.137 -77.176 26.393 -77.055 26.648 -77.258 26.843 -77.495 26.915 -77.797 ; #193 2 -67.593 -69.198 -67.720 -68.764 -67.503 -68.148 -67.255 -67.912 -67.014 -67.857 -66.728 -67.731 -66.670 -67.973 -66.901 -68.418 -67.165 -68.698 -67.423 -69.022 ; #194 1 73.761 140.879 73.503 140.368 73.409 140.121 73.363 141.330 73.269 142.264 73.275 143.313 73.563 143.308 73.788 142.621 73.890 141.676 ; #195 1 53.220 -131.918 53.143 -132.341 52.986 -132.291 52.769 -132.055 52.544 -131.802 52.247 -131.280 52.385 -131.346 52.599 -131.659 52.854 -131.802 53.063 -131.775 ; #196 1 62.953 -82.445 62.885 -83.055 62.786 -83.511 62.525 -83.808 62.239 -83.676 62.228 -83.066 62.404 -82.577 62.615 -82.165 62.876 -81.962 ; #197 -1 47.500 -107.962 47.604 -107.632 47.659 -107.198 47.690 -106.813 47.714 -106.368 47.901 -106.390 47.786 -106.813 47.701 -107.170 47.670 -107.571 47.558 -107.912 ; #198 2 78.714 -98.258 78.453 -98.187 78.154 -97.456 77.896 -97.159 77.876 -96.341 78.060 -95.115 78.368 -95.110 78.569 -96.121 78.764 -97.269 ; #199 -1 8.074 -5.538 7.865 -5.681 7.635 -5.731 7.330 -5.775 7.074 -5.500 7.385 -5.401 7.363 -5.538 7.434 -5.632 7.734 -5.582 7.956 -5.544 ; #200 1 -36.060 137.516 -35.857 137.896 -35.706 137.665 -35.602 137.423 -35.662 137.077 -35.736 136.720 -35.948 136.615 -36.044 136.907 -36.016 137.269 ; #201 2 78.162 23.005 78.154 21.357 77.896 21.440 77.536 21.187 77.423 22.555 77.467 23.665 77.750 24.505 77.904 23.692 ; #202 -1 38.484 42.324 38.481 42.527 38.423 42.885 38.379 43.192 38.632 43.203 38.887 43.489 38.931 43.231 38.805 43.038 38.777 42.659 38.610 42.412 ; #203 -1 37.901 -110.374 37.777 -110.462 37.525 -110.698 37.297 -110.846 37.071 -111.308 37.058 -111.132 37.214 -110.769 37.492 -110.637 37.747 -110.429 ; #204 1 -6.654 156.456 -6.813 156.555 -7.011 156.764 -7.228 156.967 -7.357 157.352 -7.220 157.258 -6.986 157.093 -6.816 156.863 -6.662 156.615 ; #205 1 1.038 97.879 1.225 97.670 1.464 97.445 1.426 97.192 1.316 97.181 1.069 97.352 0.882 97.527 0.618 97.742 0.794 97.896 ; #206 1 -10.258 161.291 -10.382 161.440 -10.596 161.610 -10.745 161.852 -10.816 162.242 -10.602 162.214 -10.456 161.995 -10.379 161.714 -10.239 161.451 ; #207 1 55.038 -163.610 54.989 -164.022 54.871 -164.451 54.629 -164.813 54.423 -164.720 54.536 -164.280 54.626 -163.830 54.692 -163.269 54.841 -163.368 ; #208 1 12.475 123.253 12.099 123.225 12.157 123.440 12.014 123.687 11.824 123.956 11.953 124.027 12.187 123.852 12.363 123.632 12.503 123.374 ; #209 2 78.107 -110.038 78.080 -111.005 77.997 -112.297 77.797 -113.203 77.492 -112.912 77.360 -111.808 77.484 -110.505 77.758 -110.423 77.970 -109.940 ; #210 -1 13.231 103.703 13.030 103.753 12.841 103.945 12.684 104.154 12.475 104.505 12.604 104.473 12.791 104.247 13.047 104.088 13.223 103.874 ; #211 1 -14.860 166.736 -14.775 166.566 -15.140 166.621 -15.437 166.659 -15.610 166.863 -15.495 167.170 -15.209 167.137 -15.047 166.945 -15.008 166.769 ; #212 1 12.516 53.346 12.407 53.500 12.316 53.775 12.346 54.071 12.495 54.412 12.635 54.280 12.659 54.000 12.651 53.720 12.632 53.445 ; #213 -1 59.788 -153.890 59.788 -154.181 59.747 -154.758 59.643 -155.275 59.547 -155.802 59.338 -155.670 59.418 -155.088 59.522 -154.604 59.701 -154.137 ; #214 1 68.992 -135.808 68.934 -135.209 68.808 -134.511 68.882 -134.522 69.132 -134.434 69.445 -133.929 69.577 -134.385 69.385 -135.170 69.217 -135.703 ; #215 -1 41.676 -112.764 41.571 -112.912 41.288 -112.863 41.041 -112.654 40.797 -112.396 40.931 -112.159 41.093 -112.176 41.280 -112.462 41.516 -112.714 ; #216 1 57.346 17.055 57.179 16.918 56.912 16.703 56.657 16.473 56.343 16.412 56.385 16.571 56.657 16.709 56.937 16.879 57.206 17.044 ; #217 1 68.956 48.253 68.758 48.676 68.827 49.445 69.052 50.071 69.250 50.132 69.440 49.505 69.462 48.758 69.223 48.297 ; #218 1 73.582 -104.566 73.720 -105.170 73.720 -106.214 73.516 -106.813 73.269 -106.170 72.967 -105.467 73.110 -104.890 73.390 -104.577 ; #219 1 -8.261 116.264 -8.442 116.093 -8.755 115.973 -8.885 116.088 -8.887 116.456 -8.687 116.599 -8.404 116.698 -8.236 116.484 ; #220 -1 50.203 -88.368 50.203 -88.714 49.896 -88.956 49.670 -88.989 49.538 -88.714 49.451 -88.357 49.596 -88.143 49.926 -88.121 50.159 -88.225 ; #221 -1 36.497 -114.368 36.154 -114.626 36.080 -114.374 36.104 -114.027 35.934 -113.725 35.962 -113.720 36.151 -114.022 36.132 -114.313 36.423 -114.341 ; #222 2 -71.184 -76.148 -71.102 -75.319 -71.014 -74.473 -70.838 -73.742 -70.659 -74.159 -70.758 -74.874 -70.879 -75.764 -71.033 -76.495 ; #223 1 -1.069 -51.676 -1.335 -51.846 -1.316 -51.599 -1.102 -51.374 -0.890 -51.236 -0.599 -51.286 -0.632 -51.516 -0.879 -51.659 ; #224 1 -1.681 99.253 -1.453 99.154 -1.201 99.033 -0.967 98.868 -1.077 98.637 -1.343 98.676 -1.588 98.835 -1.766 99.060 ; #225 1 71.049 -25.813 70.937 -26.374 70.827 -27.187 70.549 -27.901 70.486 -27.247 70.544 -26.368 70.659 -25.527 70.920 -25.505 ; #226 -1 37.187 100.214 37.190 99.907 36.956 99.736 36.728 99.857 36.637 100.198 36.602 100.577 36.830 100.665 37.063 100.407 ; #227 -1 61.382 -117.703 61.519 -118.104 61.371 -118.505 61.250 -119.066 61.294 -119.714 61.258 -119.659 61.223 -119.071 61.319 -118.495 61.393 -117.967 ; #228 1 -2.588 107.665 -2.821 107.604 -3.115 107.621 -3.140 107.885 -3.151 108.137 -2.874 108.258 -2.643 108.110 -2.560 107.846 ; #229 -1 63.027 -102.110 62.885 -101.901 62.769 -101.396 62.860 -101.000 63.176 -101.011 63.401 -100.703 63.478 -101.005 63.401 -101.522 63.143 -102.033 ; #230 1 53.970 -166.346 53.934 -166.621 53.764 -166.929 53.558 -167.099 53.365 -167.582 53.313 -167.423 53.442 -166.945 53.629 -166.538 53.852 -166.363 ; #231 -1 32.934 118.115 32.937 118.330 33.115 118.637 33.456 118.637 33.343 118.335 33.099 118.385 33.115 118.225 33.124 118.027 33.113 117.907 32.997 118.154 ; #232 -1 51.448 100.412 51.269 100.319 50.959 100.275 50.596 100.214 50.629 100.440 50.904 100.604 51.184 100.742 51.505 100.637 ; #233 -1 64.621 -70.440 64.797 -70.495 65.071 -70.835 65.302 -71.500 65.154 -71.610 64.882 -71.791 64.648 -71.643 64.712 -71.088 64.657 -70.648 ; #234 1 -0.008 130.813 -0.047 130.670 -0.154 130.352 -0.321 130.484 -0.272 130.742 -0.302 130.912 -0.341 131.214 -0.151 131.231 -0.041 130.973 ; #235 -1 43.973 -99.352 43.794 -99.401 43.552 -99.346 43.335 -99.088 43.118 -98.747 43.162 -98.769 43.352 -99.071 43.569 -99.319 43.810 -99.368 ; #236 1 -5.478 134.495 -5.687 134.341 -5.959 134.330 -6.201 134.346 -6.316 134.632 -6.041 134.703 -5.794 134.731 -5.519 134.643 ; #237 1 60.396 -166.176 60.335 -166.566 60.173 -167.192 59.967 -166.951 59.827 -166.291 59.890 -165.830 60.058 -165.648 60.319 -165.868 ; #238 1 -52.775 -74.681 -52.975 -74.462 -53.080 -74.099 -53.206 -73.659 -53.338 -73.324 -53.231 -73.374 -53.099 -73.676 -52.967 -74.115 -52.835 -74.484 ; #239 1 45.898 -81.681 45.874 -81.890 45.912 -82.379 45.898 -82.918 45.783 -82.731 45.676 -82.341 45.599 -81.907 45.753 -81.659 ; #240 1 -1.690 124.385 -1.907 124.374 -1.984 124.621 -1.920 124.907 -1.846 125.236 -1.739 125.137 -1.684 124.846 -1.643 124.555 ; #241 1 -7.176 131.549 -7.379 131.379 -7.635 131.198 -7.838 131.126 -7.975 131.280 -7.772 131.478 -7.530 131.654 -7.231 131.676 ; #242 1 -53.775 -72.203 -53.657 -72.473 -53.552 -72.841 -53.459 -73.126 -53.648 -73.308 -53.923 -73.242 -53.876 -72.923 -54.030 -72.852 -54.058 -72.582 -53.898 -72.319 ; #243 1 25.118 -78.187 24.887 -78.209 24.629 -78.297 24.393 -78.110 24.396 -77.857 24.626 -77.742 24.885 -77.890 25.135 -78.044 ; #244 -1 45.195 132.780 45.288 132.588 45.313 132.187 45.102 132.033 44.816 132.082 44.604 132.313 44.772 132.632 45.044 132.808 ; #245 1 72.434 127.159 72.313 127.962 72.121 128.703 72.201 129.396 72.445 129.088 72.566 128.203 72.593 127.319 72.484 126.720 ; #246 2 80.096 47.978 80.220 48.775 80.423 49.626 80.610 51.198 80.799 50.187 80.574 49.049 80.401 47.731 80.209 47.385 ; #247 1 69.896 59.049 69.797 59.533 69.712 60.203 69.940 60.368 70.154 59.775 70.396 59.176 70.277 58.610 70.025 58.698 ; #248 1 -0.728 135.434 -0.860 135.687 -1.088 135.841 -1.151 136.203 -0.937 136.099 -0.750 135.868 -0.692 135.604 ; #249 -1 58.841 14.929 58.687 14.665 58.434 14.418 57.986 14.220 58.162 14.549 58.429 14.791 58.670 14.918 ; #250 1 25.451 -76.692 25.308 -76.396 25.082 -76.187 24.802 -76.231 24.791 -76.159 25.085 -76.143 25.308 -76.357 25.475 -76.632 ; #251 1 57.887 18.835 57.791 18.484 57.536 18.170 57.091 18.247 57.236 18.615 57.473 18.824 57.769 18.934 ; #252 1 -7.876 125.863 -7.904 126.143 -7.915 126.445 -7.755 126.725 -7.621 126.665 -7.651 126.396 -7.698 126.110 ; #253 1 -25.670 153.099 -25.387 153.198 -25.118 153.324 -24.838 153.291 -24.841 153.203 -25.135 153.115 -25.374 153.033 -25.657 152.984 ; #254 1 39.959 3.148 39.904 2.929 39.621 2.522 39.429 2.797 39.354 3.148 39.629 3.407 39.838 3.209 ; #255 1 10.137 124.346 10.060 124.104 9.863 123.868 9.646 123.923 9.604 124.225 9.736 124.511 9.981 124.549 ; #256 1 72.835 -23.286 72.857 -24.033 72.643 -24.335 72.445 -23.830 72.225 -22.533 72.445 -22.319 72.690 -22.813 ; #257 -1 57.371 42.824 57.124 43.016 56.835 43.159 56.745 43.280 57.085 43.209 57.387 43.297 57.549 43.352 57.445 42.846 ; #258 2 -72.915 -74.412 -72.901 -75.335 -73.143 -75.852 -73.409 -75.659 -73.591 -74.714 -73.401 -74.429 -73.118 -74.275 ; #259 2 -73.124 -78.775 -72.934 -77.901 -72.709 -77.522 -72.527 -77.901 -72.464 -79.016 -72.676 -78.995 -72.959 -79.225 ; #260 1 62.387 -79.791 62.203 -80.170 61.909 -80.269 61.662 -79.951 61.755 -79.582 62.014 -79.352 62.297 -79.357 ; #261 1 27.195 -97.385 27.027 -97.396 26.739 -97.357 26.302 -97.220 26.475 -97.253 26.753 -97.341 27.038 -97.379 ; #262 1 -4.635 122.648 -4.739 122.456 -4.970 122.368 -5.255 122.308 -5.363 122.467 -5.272 122.626 -5.011 122.709 -4.755 122.742 ; #263 1 73.415 -24.813 73.242 -25.489 73.077 -24.863 73.104 -23.467 73.269 -24.429 73.255 -23.725 73.368 -23.951 ; #264 -1 50.668 92.863 50.552 92.615 50.371 92.302 50.080 92.456 50.038 92.846 50.291 93.225 50.555 92.995 ; #265 -1 1.365 32.703 1.376 32.885 1.294 33.209 1.429 33.231 1.651 33.363 1.646 33.203 1.560 32.912 1.505 32.637 ; #266 1 44.459 146.082 44.266 145.923 43.857 145.571 43.981 145.808 44.209 146.077 44.352 146.434 44.445 146.352 ; #267 1 56.390 -79.401 56.264 -79.577 55.962 -79.747 56.011 -79.291 56.228 -79.066 56.019 -79.132 56.115 -79.055 56.385 -78.978 ; #268 -1 63.835 34.324 63.646 34.341 63.415 34.659 63.047 34.879 63.137 34.945 63.407 35.093 63.530 35.060 63.772 34.659 ; #269 1 58.571 163.582 58.783 164.104 58.940 164.604 59.157 164.423 58.989 163.819 58.701 163.632 58.571 163.429 ; #270 1 53.527 -167.896 53.508 -168.231 53.280 -168.489 52.956 -168.912 52.978 -168.665 53.190 -168.308 53.376 -167.923 ; #271 -1 52.810 5.159 52.580 5.110 52.332 5.159 52.343 5.637 52.577 5.786 52.835 5.549 53.022 5.401 ; #272 -1 49.324 117.654 49.154 117.412 48.929 117.110 48.681 117.082 48.640 117.275 48.854 117.544 49.041 117.857 49.157 117.802 ; #273 1 58.604 22.846 58.566 22.390 58.401 21.956 58.052 22.077 58.099 22.253 58.245 22.648 58.451 23.137 ; #274 -1 11.621 37.352 11.755 37.445 12.008 37.560 12.264 37.429 12.214 37.121 11.920 37.033 11.753 37.258 ; #275 2 -77.670 167.703 -77.615 168.989 -77.412 168.951 -77.360 167.571 -77.283 166.610 -77.643 166.555 -77.805 166.835 ; #276 -1 -50.632 -72.940 -50.429 -72.890 -50.245 -72.297 -50.179 -72.604 -50.077 -73.143 -50.250 -73.137 -50.514 -73.000 ; #277 2 78.734 -110.775 78.588 -111.698 78.398 -113.016 78.321 -112.308 78.321 -110.995 78.379 -109.516 78.648 -109.885 ; #278 1 26.673 -78.962 26.536 -78.775 26.580 -78.467 26.673 -78.038 26.712 -78.181 26.723 -78.544 26.615 -78.813 ; #279 1 26.964 56.286 26.978 56.110 26.879 55.791 26.648 55.418 26.637 55.582 26.714 55.896 26.865 56.159 ; #280 -1 60.442 -133.231 60.308 -133.066 60.104 -132.665 59.750 -132.242 59.882 -132.280 60.115 -132.599 60.319 -133.022 ; #281 1 2.398 96.473 2.530 96.352 2.698 96.121 2.865 95.835 2.681 95.808 2.555 96.071 2.390 96.330 ; #282 1 53.209 -81.269 53.190 -81.714 53.003 -81.918 52.860 -81.429 52.780 -80.841 53.069 -80.940 ; #283 -1 36.986 -88.253 36.808 -88.159 36.525 -88.077 36.173 -88.016 36.283 -87.951 36.563 -88.033 36.838 -88.132 ; #284 -1 15.967 -3.896 15.901 -4.060 15.739 -4.275 15.495 -4.280 15.332 -4.170 15.750 -4.253 15.890 -4.038 ; #285 1 -1.852 125.385 -1.929 125.571 -1.918 125.868 -1.865 126.209 -1.805 126.132 -1.799 125.841 -1.805 125.544 ; #286 1 68.269 15.066 68.393 15.582 68.497 16.154 68.775 16.407 68.665 15.995 68.797 15.797 68.659 15.484 68.423 15.187 ; #287 1 -6.187 134.099 -6.415 134.137 -6.651 134.077 -6.868 134.192 -6.703 134.418 -6.478 134.440 -6.272 134.231 ; #288 1 -14.220 136.335 -14.234 136.489 -14.280 136.797 -14.159 136.835 -13.904 136.835 -13.758 136.742 -13.797 136.527 -14.069 136.412 ; #289 1 45.632 149.626 45.827 150.000 46.030 150.291 46.165 150.341 45.959 149.896 45.764 149.599 45.615 149.484 ; #290 1 -2.005 147.407 -2.008 147.242 -1.962 146.962 -2.080 146.621 -2.162 146.758 -2.184 147.071 -2.066 147.346 ; #291 1 -16.519 167.440 -16.538 167.615 -16.398 167.769 -16.176 167.522 -15.959 167.313 -16.096 167.220 -16.313 167.385 ; #292 1 26.832 128.236 26.684 128.038 26.536 127.874 26.209 127.703 26.299 127.835 26.508 128.027 26.712 128.275 ; #293 -1 -48.885 -72.934 -49.044 -72.489 -48.901 -72.440 -48.566 -72.588 -48.706 -72.637 -48.514 -72.857 -48.659 -72.923 -48.813 -73.044 ; #294 -1 52.063 47.769 52.195 48.104 52.434 48.198 52.725 48.445 52.712 48.346 52.453 48.148 52.198 47.923 ; #295 1 50.077 155.429 50.245 155.830 50.500 156.088 50.659 155.945 50.390 155.577 50.217 155.247 ; #296 1 55.538 10.478 55.473 9.835 55.190 10.005 55.060 10.330 55.170 10.758 55.442 10.720 ; #297 1 55.951 -131.308 55.799 -131.571 55.547 -131.709 55.442 -131.451 55.379 -131.352 55.305 -131.170 55.566 -130.962 55.832 -131.099 ; #298 1 56.896 -134.187 56.723 -134.280 56.459 -134.148 56.179 -134.137 56.277 -133.918 56.544 -133.830 56.753 -133.901 ; #299 1 -1.261 123.473 -1.269 123.242 -1.190 122.973 -1.470 122.868 -1.484 123.165 -1.448 123.440 ; #300 1 -55.008 -67.148 -54.926 -67.566 -54.929 -68.148 -55.132 -68.121 -55.225 -67.687 -55.239 -67.192 ; #301 -1 54.942 -96.703 54.909 -96.978 54.788 -97.445 54.670 -97.912 54.610 -97.808 54.725 -97.374 54.863 -96.967 ; #302 1 -7.995 157.440 -8.214 157.280 -8.327 157.516 -8.527 157.791 -8.283 157.764 -8.085 157.599 ; #303 1 28.508 -16.385 28.382 -16.676 28.250 -16.841 28.041 -16.599 28.269 -16.374 28.508 -16.187 ; #304 1 -1.423 127.434 -1.602 127.412 -1.714 127.643 -1.646 128.027 -1.431 127.863 -1.376 127.588 ; #305 1 58.467 -6.214 58.382 -6.522 58.201 -6.907 57.885 -6.956 58.005 -6.544 58.242 -6.253 ; #306 1 56.975 -133.236 57.036 -133.764 56.832 -133.758 56.508 -133.549 56.654 -133.165 56.846 -132.973 ; #307 -1 -18.843 -45.033 -18.662 -45.165 -18.354 -45.275 -18.516 -45.385 -18.775 -45.275 -18.942 -45.330 -18.959 -45.225 ; #308 -1 31.146 119.929 30.951 120.154 31.008 120.473 31.129 120.434 31.431 120.280 31.398 119.995 ; #309 1 28.371 -14.159 28.140 -14.346 28.085 -14.346 28.223 -14.016 28.451 -13.852 28.662 -13.951 ; #310 1 -8.165 124.445 -8.343 124.445 -8.409 124.731 -8.302 125.060 -8.165 124.907 -8.165 124.610 ; #311 1 72.953 -22.148 73.038 -22.967 72.981 -24.165 72.896 -23.791 72.786 -22.835 72.758 -22.077 ; #312 1 2.011 128.302 2.085 128.505 2.332 128.654 2.569 128.549 2.412 128.302 2.159 128.242 ; #313 2 77.750 -93.478 77.769 -94.445 77.734 -95.791 77.500 -95.841 77.467 -94.396 77.555 -93.418 ; #314 1 -20.904 55.599 -20.945 55.302 -21.198 55.313 -21.349 55.560 -21.236 55.813 -21.038 55.742 ; #315 2 -64.440 -57.896 -64.368 -57.462 -64.124 -57.214 -63.931 -57.742 -64.030 -58.242 -64.321 -58.110 ; #316 -1 68.896 27.082 68.786 27.500 68.860 28.121 69.245 28.451 69.206 28.060 68.997 27.412 ; #317 2 -64.712 -64.236 -64.783 -63.841 -64.621 -63.104 -64.382 -63.181 -64.360 -63.632 -64.569 -64.049 ; #318 1 -1.681 130.335 -1.728 130.176 -1.857 129.841 -2.022 130.016 -2.008 130.313 -1.835 130.385 ; #319 1 21.819 -83.082 21.610 -83.060 21.456 -82.978 21.544 -82.643 21.802 -82.665 21.915 -82.945 ; #320 1 3.750 8.863 3.690 8.681 3.437 8.500 3.236 8.566 3.346 8.775 3.613 8.918 ; #321 1 52.396 -174.236 52.236 -174.390 52.055 -174.989 52.030 -174.747 52.088 -174.352 52.275 -174.088 ; #322 1 23.569 -75.286 23.277 -75.132 23.102 -75.082 22.997 -74.901 23.280 -75.099 23.544 -75.225 ; #323 1 -0.313 127.516 -0.418 127.368 -0.720 127.462 -0.821 127.758 -0.679 127.703 -0.431 127.626 ; #324 -1 -30.896 -62.659 -30.841 -62.396 -30.673 -62.242 -30.547 -62.495 -30.640 -62.857 -30.827 -62.841 ; #325 1 54.786 137.473 54.720 137.846 55.011 138.027 55.146 137.670 54.931 137.330 54.783 137.225 ; #326 2 -63.437 -56.346 -63.352 -55.956 -63.346 -55.324 -63.201 -55.231 -63.135 -55.830 -63.291 -56.407 ; #327 1 53.294 -128.995 53.049 -129.022 52.854 -129.044 52.753 -128.720 52.920 -128.533 53.176 -128.703 ; #328 1 0.830 103.027 0.945 102.868 1.063 102.599 0.942 102.462 0.788 102.615 0.755 102.940 ; #329 2 -78.648 -37.643 -78.588 -38.566 -78.560 -40.929 -78.618 -39.951 -78.648 -38.533 ; #330 1 22.783 90.665 22.615 90.593 22.187 90.698 22.363 90.863 22.635 90.797 ; #331 2 -74.863 -20.198 -74.703 -20.170 -74.294 -20.505 -74.464 -21.231 -74.739 -20.544 ; #332 -1 52.728 -119.104 52.602 -118.962 52.206 -118.462 52.382 -118.654 52.618 -118.929 ; #333 1 0.261 -50.000 0.206 -50.286 0.052 -50.275 -0.016 -49.956 0.203 -49.769 ; #334 1 58.376 -152.187 58.409 -152.511 58.269 -152.934 58.088 -153.077 58.104 -152.604 58.236 -152.154 ; #335 1 69.879 169.209 69.984 168.346 69.797 167.956 69.607 168.654 69.668 169.264 ; #336 2 76.755 -19.005 76.591 -19.005 76.121 -18.736 76.321 -18.665 76.615 -18.720 ; #337 -1 4.981 -55.077 4.788 -55.220 4.555 -55.264 4.593 -54.962 4.841 -54.874 ; #338 1 -44.934 -73.247 -44.835 -73.027 -44.607 -72.841 -44.437 -73.022 -44.566 -73.264 -44.794 -73.346 ; #339 1 7.052 171.786 7.099 171.159 7.069 171.478 6.992 171.687 ; #340 2 80.470 59.582 80.470 60.973 80.750 62.005 80.824 60.407 80.681 59.374 ; #341 1 20.964 -73.681 20.940 -73.440 21.143 -73.099 21.176 -73.308 21.118 -73.604 ; #342 1 53.882 -130.247 53.670 -130.055 53.398 -129.654 53.596 -129.665 53.816 -129.995 ; #343 -1 32.706 119.165 32.780 119.341 33.085 119.313 33.088 119.011 33.080 119.181 32.885 119.176 ; #344 1 -11.819 130.137 -11.758 130.484 -11.462 130.390 -11.431 130.220 -11.698 130.110 ; #345 1 33.544 126.830 33.530 126.643 33.341 126.275 33.239 126.549 33.407 126.874 ; #346 1 73.044 70.137 73.195 71.275 73.390 71.093 73.442 70.269 73.176 69.984 ; #347 2 76.088 -117.824 75.945 -118.429 75.613 -118.967 75.695 -118.060 75.986 -117.621 ; #348 1 -20.058 57.599 -20.294 57.379 -20.492 57.445 -20.376 57.736 -20.179 57.769 ; #349 1 -6.085 39.198 -6.310 39.335 -6.277 39.500 -5.978 39.385 -5.824 39.280 ; #350 2 82.137 -44.929 82.407 -44.736 82.626 -46.621 82.423 -46.989 82.195 -45.648 ; #351 1 55.330 165.984 55.198 165.956 54.945 166.214 54.852 166.522 55.223 166.247 ; #352 1 51.621 -68.758 51.437 -69.049 51.209 -68.874 51.319 -68.495 51.514 -68.429 ; #353 1 -10.871 122.868 -10.821 123.132 -10.593 123.368 -10.560 123.231 -10.717 122.995 ; #354 2 77.723 -105.940 77.492 -105.742 77.203 -105.027 77.379 -104.709 77.635 -105.269 ; #355 -1 -49.736 -72.143 -49.588 -72.379 -49.475 -72.835 -49.632 -72.901 -49.712 -72.445 ; #356 2 74.217 113.088 74.464 113.104 74.451 112.005 74.245 111.747 74.113 112.500 ; #357 1 -48.681 -75.181 -48.486 -75.121 -48.135 -75.379 -48.321 -75.445 -48.571 -75.286 ; #358 1 20.923 -156.544 20.646 -156.396 20.679 -156.088 20.871 -156.137 ; #359 2 -62.214 -58.918 -62.157 -58.467 -62.005 -57.846 -61.942 -58.264 -62.085 -58.780 ; #360 -1 38.484 33.538 38.635 33.648 38.940 33.445 38.810 33.198 38.571 33.390 ; #361 1 67.997 -73.549 68.069 -74.093 68.049 -74.610 67.810 -74.412 67.819 -73.555 ; #362 1 54.266 19.341 54.335 19.560 54.610 20.104 54.569 19.824 54.368 19.412 ; #363 1 39.363 26.286 39.258 25.951 39.115 26.132 39.025 26.473 39.203 26.478 ; #364 1 -13.805 -172.484 -13.758 -172.264 -13.514 -172.297 -13.519 -172.648 -13.701 -172.615 ; #365 -1 27.184 -80.813 27.036 -80.989 26.832 -80.973 26.764 -80.714 27.063 -80.659 ; #366 1 -46.745 167.835 -47.143 167.670 -47.088 168.115 -46.890 168.077 ; #367 1 36.420 28.137 36.321 27.907 36.036 27.753 36.063 28.016 36.316 28.187 ; #368 1 25.277 -112.143 25.129 -112.170 24.852 -112.181 24.712 -112.170 25.140 -112.148 ; #369 1 -40.239 148.220 -40.091 148.280 -39.813 148.049 -39.874 147.852 -40.143 148.000 ; #370 1 -9.376 150.445 -9.580 150.500 -9.670 150.802 -9.541 150.868 -9.401 150.643 ; #371 1 69.104 17.302 69.239 17.890 69.511 17.764 69.401 17.198 69.159 16.995 ; #372 1 -26.115 113.198 -25.937 113.137 -25.607 113.000 -25.712 112.945 -25.973 113.077 ; #373 1 -0.893 130.890 -0.981 130.725 -1.234 130.775 -1.275 130.995 -0.970 131.016 ; #374 1 60.324 -147.055 60.228 -147.280 59.909 -147.731 59.937 -147.456 60.176 -147.126 ; #375 1 -53.615 -70.577 -53.846 -70.758 -54.135 -70.725 -54.008 -70.527 -53.745 -70.473 ; #376 2 80.599 45.082 80.527 46.247 80.692 48.005 80.810 47.390 80.681 45.868 ; #377 1 29.571 -113.588 29.404 -113.549 29.121 -113.269 29.266 -113.253 29.497 -113.456 ; #378 1 53.607 -130.489 53.456 -130.341 53.223 -129.945 53.343 -129.846 53.544 -130.187 ; #379 1 -5.775 120.478 -5.931 120.445 -6.313 120.467 -6.209 120.533 -5.920 120.533 ; #380 1 -16.755 139.148 -16.698 139.286 -16.511 139.599 -16.445 139.418 -16.602 139.187 ; #381 2 -72.555 -91.165 -72.728 -91.500 -73.025 -91.379 -73.025 -91.038 -72.747 -90.846 ; #382 2 -72.690 -100.802 -72.772 -100.231 -72.758 -99.236 -72.604 -99.451 -72.585 -100.434 ; #383 -1 1.602 32.385 1.640 32.495 1.797 32.879 1.777 32.692 1.673 32.423 ; #384 1 27.852 -80.440 27.706 -80.390 27.338 -80.242 27.440 -80.269 27.712 -80.374 ; #385 1 31.783 121.203 31.654 121.341 31.505 121.714 31.610 121.654 31.772 121.379 ; #386 -1 47.687 -76.538 47.527 -76.736 47.198 -76.577 47.310 -76.462 47.544 -76.571 ; #387 1 -2.481 149.956 -2.582 150.088 -2.662 150.357 -2.467 150.379 -2.423 150.088 ; #388 1 21.703 -157.973 21.615 -158.137 21.407 -158.170 21.349 -157.841 21.571 -157.879 ; #389 1 24.236 -77.769 24.066 -77.868 23.799 -77.687 23.898 -77.544 24.148 -77.665 ; #390 -1 50.747 -117.731 50.615 -117.912 50.245 -117.874 50.341 -117.857 50.629 -117.846 ; #391 1 -9.805 150.802 -10.027 150.956 -10.096 151.225 -9.975 151.110 -9.810 150.879 ; #392 1 -11.503 159.978 -11.618 160.115 -11.766 160.429 -11.676 160.407 -11.538 160.143 ; #393 1 -8.275 123.407 -8.418 123.352 -8.560 123.467 -8.319 123.758 -8.294 123.571 ; #394 1 63.258 -77.500 63.393 -77.692 63.462 -78.308 63.266 -78.302 63.151 -77.769 ; #395 1 57.651 -6.253 57.486 -6.560 57.212 -6.093 57.415 -6.137 ; #396 1 27.835 -97.055 27.692 -97.181 27.376 -97.346 27.451 -97.297 27.703 -97.143 ; #397 1 14.005 124.148 13.648 124.115 13.665 124.357 13.931 124.324 ; #398 1 27.816 -15.731 27.824 -15.445 28.102 -15.440 28.074 -15.731 ; #399 -1 34.802 -87.615 34.775 -87.363 34.648 -87.049 34.684 -87.038 34.808 -87.352 ; #400 1 -11.426 43.258 -11.632 43.242 -11.863 43.346 -11.791 43.451 -11.478 43.374 ; #401 1 52.113 -174.033 52.052 -173.758 52.060 -173.214 52.107 -173.341 52.124 -173.780 ; #402 1 35.190 -75.720 35.283 -75.538 35.569 -75.484 35.632 -75.478 35.286 -75.571 ; #403 1 52.420 -127.275 52.321 -127.522 52.093 -127.846 52.077 -127.670 52.291 -127.324 ; #404 1 55.228 -133.165 55.060 -133.154 54.766 -132.863 54.852 -132.813 55.099 -133.022 ; #405 2 79.887 91.308 79.725 92.582 79.953 93.297 80.052 91.560 ; #406 1 -11.357 153.198 -11.497 153.324 -11.607 153.615 -11.503 153.610 -11.385 153.335 ; #407 1 47.412 -87.868 47.464 -88.093 47.173 -88.456 47.236 -88.143 ; #408 1 -5.445 39.725 -5.341 39.808 -5.055 39.852 -4.992 39.736 -5.277 39.698 ; #409 2 74.429 -20.901 74.338 -21.780 74.126 -21.385 74.212 -20.418 ; #410 1 38.308 138.505 38.203 138.363 37.926 138.269 37.882 138.445 38.115 138.495 ; #411 -1 15.368 -89.313 15.423 -89.154 15.662 -88.923 15.659 -88.995 15.503 -89.297 ; #412 -1 51.214 30.511 51.063 30.396 50.734 30.434 50.791 30.544 51.085 30.566 ; #413 1 0.904 103.148 1.049 103.005 1.118 102.736 1.011 102.764 0.879 103.033 ; #414 1 30.398 -86.544 30.401 -86.731 30.349 -87.121 30.349 -87.055 30.390 -86.725 ; #415 1 48.173 -88.484 48.110 -88.698 47.942 -89.110 47.901 -88.978 48.058 -88.621 ; #416 2 -71.014 -2.610 -70.810 -2.280 -70.681 -3.192 -70.956 -3.110 ; #417 2 78.368 22.203 78.580 21.505 78.398 20.511 78.220 21.176 ; #418 1 22.223 -159.445 22.093 -159.720 21.904 -159.538 22.038 -159.330 ; #419 1 2.052 101.714 2.030 101.467 1.777 101.478 1.816 101.709 ; #420 1 -14.055 -171.742 -14.041 -171.549 -13.909 -171.582 -13.841 -171.929 -13.997 -171.879 ; #421 1 -5.393 133.088 -5.808 132.923 -5.690 133.022 -5.437 133.154 ; #422 2 77.536 -91.143 77.264 -90.648 77.335 -89.764 77.591 -90.269 ; #423 2 -70.159 -75.357 -70.058 -74.709 -69.846 -75.214 -70.005 -75.747 ; #424 1 -20.835 167.302 -20.772 167.132 -21.022 167.126 -21.093 167.396 ; #425 1 20.692 58.907 20.566 58.824 20.330 58.665 20.297 58.758 20.541 58.907 ; #426 1 69.288 -78.692 68.975 -79.209 68.975 -78.758 69.255 -78.368 ; #427 -1 57.978 -156.720 57.745 -156.198 57.816 -156.016 58.008 -156.308 ; #428 1 54.863 11.060 54.684 11.253 54.709 11.725 54.871 11.489 ; #429 1 47.640 -61.412 47.580 -61.615 47.341 -61.929 47.382 -61.802 47.574 -61.544 ; #430 1 29.151 -112.473 28.931 -112.505 28.835 -112.286 29.165 -112.286 ; #431 1 43.192 16.379 43.143 16.577 43.121 16.995 43.148 16.967 43.198 16.577 ; #432 1 6.734 122.060 6.626 121.885 6.426 122.038 6.615 122.225 ; #433 1 13.124 122.973 12.986 123.033 12.794 123.269 12.824 123.286 13.041 123.093 ; #434 1 72.294 77.253 72.409 78.110 72.593 77.874 72.445 77.143 ; #435 1 -48.632 -74.533 -48.308 -74.681 -48.442 -74.857 -48.640 -74.819 ; #436 1 24.574 -75.648 24.212 -75.445 24.264 -75.374 24.516 -75.571 ; #437 2 76.297 -103.038 76.217 -104.071 76.049 -103.912 76.143 -102.753 ; #438 2 75.407 -104.440 75.187 -104.775 75.069 -104.016 75.321 -103.835 ; #439 2 80.942 55.154 80.775 56.923 80.907 56.912 81.052 55.198 ; #440 -1 -20.613 -46.593 -20.503 -46.687 -20.335 -46.929 -20.401 -46.940 -20.525 -46.775 ; #441 2 -62.643 -60.852 -62.673 -60.192 -62.533 -60.181 -62.544 -60.885 ; #442 2 74.091 -98.066 73.959 -99.044 73.835 -98.846 73.967 -97.874 ; #443 1 22.626 -73.945 22.302 -74.137 22.349 -74.011 22.610 -73.863 ; #444 1 14.731 -61.181 14.497 -60.967 14.662 -60.890 14.821 -61.049 ; #445 1 60.451 -1.396 60.203 -1.429 60.096 -1.214 60.412 -1.126 ; #446 1 37.788 -25.742 37.723 -25.374 37.832 -25.280 37.865 -25.687 ; #447 2 76.640 -104.423 76.442 -104.462 76.360 -103.467 76.574 -103.742 ; #448 1 -17.747 -149.538 -17.794 -149.280 -17.651 -149.308 -17.569 -149.560 ; #449 1 66.049 -84.253 65.723 -83.698 65.876 -83.742 ; #450 2 -65.676 100.511 -65.662 100.890 -65.451 101.077 -65.538 100.396 ; #451 2 80.739 63.055 80.981 64.797 80.942 63.242 ; #452 1 56.346 -132.401 56.198 -132.621 56.003 -132.286 56.209 -132.330 ; #453 1 54.291 13.181 54.299 13.538 54.560 13.445 54.470 13.225 ; #454 2 80.118 57.896 80.277 58.538 80.459 57.824 80.231 57.308 ; #455 1 -50.434 -75.247 -50.234 -74.945 -50.129 -75.181 -50.316 -75.346 ; #456 -1 46.302 6.258 46.412 6.725 46.497 6.593 46.363 6.247 ; #457 1 28.442 129.577 28.308 129.280 28.198 129.346 28.385 129.621 ; #458 1 -53.915 -71.808 -53.959 -72.121 -54.209 -71.973 -54.077 -71.797 ; #459 1 56.478 -5.742 56.585 -6.132 56.382 -6.192 56.349 -5.819 ; #460 1 -44.047 -176.462 -43.816 -176.390 -43.734 -176.429 -43.843 -176.670 ; #461 1 11.008 -64.379 10.989 -63.984 11.047 -64.192 ; #462 1 68.206 -86.720 67.860 -86.747 68.022 -86.401 ; #463 2 -70.154 16.137 -70.000 16.258 -69.918 15.621 -70.140 15.681 ; #464 1 4.516 126.791 4.173 126.764 4.330 126.890 ; #465 1 1.313 102.302 1.025 102.297 1.060 102.456 ; #466 2 -69.695 -62.060 -69.324 -62.055 -69.527 -62.170 ; #467 1 69.717 -80.566 69.582 -80.275 69.673 -79.670 69.769 -80.049 ; #468 1 1.464 102.495 1.544 102.181 1.360 102.407 ; #469 1 62.129 29.308 62.069 29.066 61.841 29.027 61.967 29.390 ; #470 1 -40.107 143.962 -39.772 144.027 -39.970 143.868 ; #471 -1 11.376 34.676 11.632 34.418 11.470 34.516 ; #472 1 -9.005 152.527 -9.143 152.830 -8.978 152.714 ; #473 1 52.896 172.659 52.843 173.181 52.995 172.901 ; #474 1 70.470 22.148 70.665 22.962 70.632 22.346 ; #475 1 5.973 120.967 5.923 121.291 6.036 121.209 ; #476 1 7.170 93.731 6.874 93.797 7.047 93.901 ; #477 1 12.659 122.126 12.327 122.000 12.527 122.121 ; #478 -1 12.376 -86.473 12.212 -86.236 12.352 -86.192 ; #479 1 29.201 -13.462 28.992 -13.736 29.008 -13.516 ; #480 1 21.154 -157.247 21.107 -156.885 21.190 -157.016 ; #481 1 1.126 104.621 1.118 104.363 0.937 104.516 ; #482 1 10.445 125.643 10.102 125.599 10.272 125.665 ; #483 2 75.451 135.885 75.728 135.896 75.728 135.604 75.481 135.505 ; #484 1 -51.063 -74.879 -51.047 -74.654 -50.860 -74.500 -50.926 -74.791 ; #485 1 -17.569 168.390 -17.739 168.264 -17.758 168.527 ; #486 2 -64.470 -62.538 -64.176 -62.203 -64.286 -62.511 ; #487 1 61.624 -64.725 61.635 -65.214 61.434 -64.890 ; #488 1 -15.945 168.225 -15.615 168.192 -15.750 168.137 ; #489 1 38.456 20.544 38.310 20.440 38.151 20.582 38.321 20.637 ; #490 1 45.168 14.319 44.835 14.396 45.022 14.412 ; #491 1 -54.904 -70.434 -54.975 -70.824 -55.118 -70.637 -55.041 -70.451 ; #492 -1 59.852 39.093 59.607 39.560 59.739 39.379 ; #493 1 65.997 -85.088 65.690 -84.874 65.871 -84.780 ; #494 1 44.695 14.736 44.442 15.044 44.599 14.890 ; #495 -1 47.525 9.632 47.720 9.253 47.602 9.313 ; #496 1 -0.516 -90.401 -0.714 -90.456 -0.629 -90.220 ; #497 1 7.571 -12.912 7.505 -12.610 7.626 -12.742 ; #498 1 -8.429 143.203 -8.610 143.484 -8.492 143.352 ; #499 1 -5.549 147.780 -5.766 147.967 -5.569 147.973 ; #500 1 38.566 25.978 38.286 25.967 38.401 26.143 ; #501 1 18.923 -73.297 18.797 -72.989 18.940 -73.148 ; #502 2 80.140 -99.830 79.854 -99.390 80.063 -99.060 ; #503 1 -18.742 169.203 -18.755 169.005 -18.940 169.231 ; #504 1 47.060 152.093 46.893 151.934 47.135 152.258 ; #505 1 39.786 19.731 39.503 19.901 39.687 19.896 ; #506 1 16.016 -61.637 16.277 -61.621 16.192 -61.780 ; #507 1 45.288 -87.022 45.016 -87.258 45.151 -87.066 ; #508 1 -1.978 125.918 -2.297 125.973 -2.113 125.984 ; #509 1 0.071 -49.429 -0.027 -49.681 -0.066 -49.434 ; #510 2 73.959 140.786 74.212 140.703 73.995 140.236 ; #511 2 -73.912 -116.060 -74.071 -116.907 -74.104 -116.308 ; #512 1 13.456 121.835 13.277 122.005 13.495 122.022 ; #513 1 -0.011 -50.681 -0.168 -50.918 -0.140 -50.698 ; #514 2 75.346 -18.456 75.060 -18.055 75.255 -18.000 ; #515 1 64.467 -40.247 64.747 -40.566 64.610 -40.544 ; #516 1 5.341 120.187 5.168 119.956 5.198 120.165 ; #517 1 63.462 -76.555 63.602 -77.099 63.423 -76.868 ; #518 1 30.835 131.060 30.541 130.945 30.684 131.060 ; #519 1 -5.102 121.901 -5.365 121.923 -5.209 122.033 ; #520 1 12.379 -69.159 12.151 -68.940 12.283 -69.044 ; #521 1 -54.091 -71.533 -54.269 -71.247 -54.132 -71.137 ; #522 1 70.973 53.071 71.275 52.824 71.102 52.830 ; #523 1 51.967 -176.643 51.728 -176.813 51.819 -176.522 ; #524 1 12.305 119.885 12.096 120.121 12.234 120.027 ; #525 1 1.731 -157.176 1.904 -157.423 1.753 -157.324 ; #526 1 0.404 6.648 0.170 6.538 0.266 6.725 ; #527 1 68.591 14.973 68.843 15.242 68.739 14.791 ; #528 1 -50.838 -74.192 -50.582 -74.418 -50.777 -74.385 ; #529 1 52.566 5.830 52.429 5.418 52.434 5.736 ; #530 1 34.569 134.995 34.324 134.786 34.401 134.934 ; #531 1 60.574 -68.038 60.352 -68.264 60.412 -67.890 ; #532 1 48.258 -122.604 48.088 -122.538 48.396 -122.621 ; #533 1 -52.093 -74.973 -51.797 -74.846 -51.920 -74.973 ; #534 -1 55.228 -97.275 55.071 -97.709 55.082 -97.451 ; #535 1 -2.690 -79.984 -2.885 -80.209 -2.841 -80.055 ; #536 1 28.673 -17.747 28.747 -17.918 28.495 -17.835 ; #537 1 15.624 40.242 15.810 40.088 15.739 39.989 ; #538 1 -11.445 136.516 -11.192 136.692 -11.302 136.593 ; #539 1 -9.349 161.352 -9.629 161.462 -9.462 161.451 ; #540 1 -7.640 156.516 -7.843 156.670 -7.651 156.687 ; #541 1 16.780 41.874 16.703 42.016 16.876 41.753 ; #542 1 15.624 -61.473 15.368 -61.374 15.552 -61.335 ; #543 1 51.912 -177.066 51.758 -177.445 51.747 -177.203 ; #544 1 -45.170 -73.736 -45.058 -74.077 -45.212 -73.984 ; #545 2 81.986 -51.357 82.209 -52.555 82.055 -52.582 ; #546 1 10.841 92.467 10.621 92.379 10.637 92.538 ; #547 1 -16.157 168.099 -16.310 168.027 -16.297 168.264 ; #548 1 72.843 78.610 72.747 79.099 72.959 79.231 ; #549 2 -65.459 103.423 -65.212 103.077 -65.363 103.077 ; #550 1 13.648 144.874 13.404 144.720 13.511 144.874 ; #551 1 26.231 50.473 25.959 50.522 26.146 50.588 ; #552 1 0.610 -50.374 0.316 -50.418 0.462 -50.346 ; #553 1 16.239 94.648 16.008 94.467 16.088 94.621 ; #554 -1 49.624 -118.110 49.478 -118.071 49.780 -118.104 ; #555 1 -8.473 124.022 -8.316 124.258 -8.319 124.110 ; #556 2 77.986 -114.786 77.769 -114.313 77.942 -114.005 ; #557 1 8.173 98.297 7.898 98.313 8.041 98.396 ; #558 -1 26.558 -99.148 26.832 -99.275 26.665 -99.242 ; #559 1 16.959 -25.192 17.140 -25.110 17.055 -25.341 ; #560 1 -19.110 178.093 -19.027 178.352 -18.956 178.319 ; #561 1 -21.431 168.033 -21.516 167.874 -21.632 168.077 ; #562 1 -54.942 -69.203 -54.940 -69.703 -54.989 -69.407 ; #563 1 15.030 121.879 14.775 121.923 14.934 122.005 ; #564 1 15.044 -23.577 15.198 -23.758 15.000 -23.731 ; #565 -1 56.280 -95.863 56.170 -96.324 56.154 -96.071 ; #566 1 68.701 -75.280 68.440 -75.071 68.607 -74.967 ; #567 1 28.393 -96.407 28.217 -96.676 28.286 -96.511 ; #568 1 -0.783 -89.473 -0.907 -89.484 -0.723 -89.286 ; #569 1 54.412 -4.363 54.190 -4.626 54.261 -4.374 ; #570 1 10.390 103.929 10.151 103.978 10.308 104.066 ; #571 1 68.887 15.451 69.126 15.868 69.052 15.549 ; #572 1 -60.731 -45.170 -60.574 -45.665 -60.668 -45.478 ; #573 1 69.429 -77.236 69.201 -77.181 69.330 -76.824 ; #574 1 68.157 14.220 68.335 14.786 68.299 14.396 ; #575 2 -77.102 -149.115 -76.931 -149.967 -77.085 -149.857 ; #576 1 25.343 -80.264 25.110 -80.456 25.201 -80.346 ; #577 1 53.407 -4.495 53.217 -4.478 53.299 -4.198 ; #578 1 -15.354 168.159 -15.069 168.148 -15.162 168.121 ; #579 1 -0.772 130.846 -0.849 130.582 -0.849 130.802 ; #580 1 51.904 -178.093 51.712 -178.022 51.788 -177.791 ; #581 1 65.629 -37.929 65.673 -37.505 65.830 -37.703 ; #582 1 69.533 18.192 69.717 18.742 69.673 18.319 ; #583 1 60.555 -172.995 60.374 -172.549 60.470 -172.764 ; #584 1 69.797 19.181 69.984 19.456 69.967 18.951 ; #585 1 -48.393 -74.923 -48.159 -75.005 -48.297 -75.137 ; #586 1 -2.110 33.132 -1.953 32.962 -2.052 32.907 ; #587 1 -8.165 138.819 -8.261 138.643 -8.346 138.813 ; #588 1 37.890 -75.346 38.143 -75.176 38.058 -75.236 ; #589 1 56.478 -132.363 56.236 -132.165 56.382 -132.143 ; #590 2 -74.451 -130.786 -74.352 -131.571 -74.508 -131.396 ; #591 1 -9.253 150.154 -9.459 150.231 -9.338 150.330 ; #592 1 34.687 129.467 34.437 129.330 34.563 129.462 ; #593 1 56.516 -79.555 56.316 -79.879 56.365 -79.659 ; #594 1 55.148 10.923 54.896 10.725 55.003 10.857 ; #595 1 -47.978 -74.341 -47.937 -73.995 -47.865 -74.280 ; #596 1 54.945 11.753 54.720 11.846 54.838 12.005 ; #597 2 76.813 -90.291 76.574 -90.165 76.706 -89.791 ; #598 1 49.780 -124.648 49.596 -124.341 49.712 -124.429 ; #599 1 22.159 91.082 22.409 91.132 22.363 91.044 ; #600 1 56.799 -132.901 56.599 -132.907 56.615 -132.670 ; #601 1 -7.879 157.016 -8.080 157.033 -7.975 157.176 ; #602 1 -5.022 154.610 -5.275 154.610 -5.137 154.692 ; #603 1 16.321 -61.522 16.236 -61.319 16.412 -61.412 ; #604 1 13.717 -60.940 13.953 -60.918 13.832 -61.033 ; #605 1 -23.755 151.269 -23.530 151.159 -23.657 151.115 ; #606 1 52.794 -128.390 52.527 -128.401 52.651 -128.324 ; #607 1 -50.544 166.192 -50.775 166.027 -50.701 166.203 ; #608 1 -19.470 169.407 -19.448 169.253 -19.635 169.407 ; #609 2 -77.203 -148.555 -77.316 -147.753 -77.126 -148.000 ; #610 1 -12.162 44.209 -12.264 44.429 -12.140 44.374 ; #611 2 -65.876 -66.099 -65.657 -65.775 -65.728 -66.060 ; #612 2 75.962 -102.082 75.852 -102.989 75.830 -102.478 ; #613 1 35.824 27.220 35.563 27.143 35.668 27.192 ; #614 -1 48.538 -118.137 48.412 -118.181 48.673 -118.093 ; #615 1 -3.706 128.060 -3.640 128.280 -3.563 128.170 ; #616 2 -74.508 -127.077 -74.330 -127.593 -74.500 -127.604 ; #617 1 60.291 22.934 60.121 22.577 60.151 22.841 ; #618 1 34.819 -76.346 34.734 -76.434 34.931 -76.214 ; #619 1 -0.146 -51.132 -0.330 -51.302 -0.283 -51.176 ; #620 1 -10.813 165.797 -10.769 166.033 -10.703 165.907 ; #621 -1 -4.137 15.527 -4.176 15.357 -4.316 15.445 ; #622 1 -52.228 -73.698 -52.011 -73.945 -52.118 -73.863 ; #623 1 -17.099 49.835 -16.863 49.956 -16.953 49.885 ; #624 1 40.025 25.440 39.929 25.170 39.868 25.297 ; #625 1 -7.810 129.604 -7.975 129.654 -7.876 129.786 ; #626 1 52.816 -129.264 52.588 -129.093 52.712 -129.071 ; #627 1 55.261 14.753 55.058 14.912 55.195 15.005 ; #628 1 -51.475 -75.016 -51.327 -74.687 -51.346 -74.896 ; #629 1 19.511 93.659 19.343 93.824 19.489 93.824 ; #630 1 -44.802 -74.286 -44.717 -74.033 -44.665 -74.286 ; #631 1 70.277 23.165 70.475 23.484 70.442 23.121 ; #632 1 -49.865 -75.231 -49.668 -75.390 -49.777 -75.467 ; #633 1 39.129 1.544 38.975 1.335 38.995 1.544 ; #634 1 29.981 48.143 29.764 48.170 29.865 48.280 ; #635 1 16.283 -86.632 16.382 -86.385 16.374 -86.505 ; #636 1 63.258 -41.247 63.423 -41.549 63.363 -41.681 ; #637 1 55.876 -6.302 55.698 -6.363 55.761 -6.088 ; #638 1 59.962 -43.813 60.008 -43.445 60.088 -43.819 ; #639 1 62.297 -7.192 62.077 -6.951 62.187 -6.956 ; #640 -1 56.390 -94.802 56.431 -95.236 56.352 -95.071 ; #641 1 2.184 -50.379 1.997 -50.462 2.036 -50.313 ; #642 -1 66.805 -125.533 66.717 -125.099 66.887 -125.214 ; #643 1 -17.003 179.929 -16.827 -179.907 -16.874 179.951 ; #644 1 55.286 -159.879 55.074 -160.093 55.137 -159.918 ; #645 2 76.121 -78.923 75.931 -79.434 75.937 -79.033 ; #646 2 -70.585 72.121 -70.385 72.005 -70.412 71.742 ; #647 1 69.019 -100.484 68.821 -100.560 68.849 -100.236 ; #648 1 0.648 -50.077 0.495 -50.225 0.505 -50.071 ; #649 -1 34.967 97.615 34.810 97.725 34.975 97.797 ; #650 1 69.918 -51.110 69.717 -51.192 69.802 -50.835 ; #651 1 22.385 -73.154 22.341 -72.901 22.418 -73.005 ; #652 1 12.341 98.346 12.560 98.412 12.503 98.319 ; #653 1 16.566 -24.313 16.621 -24.187 16.657 -24.423 ; #654 1 -46.102 -75.060 -45.956 -74.813 -45.951 -74.984 ; #655 1 7.725 134.632 7.500 134.555 7.566 134.643 ; #656 1 44.151 14.846 43.973 15.082 44.063 15.005 ; #657 1 -0.423 -91.588 -0.330 -91.473 -0.286 -91.665 ; #658 1 60.396 19.857 60.209 19.824 60.247 20.071 ; #659 1 40.036 4.220 40.044 4.000 39.909 4.192 ; #660 1 63.571 9.132 63.560 8.626 63.492 8.852 ; #661 1 37.775 27.066 37.761 26.780 37.690 26.918 ; #662 2 -61.247 -55.341 -61.170 -54.951 -61.115 -55.264 ; #663 1 -50.794 -75.319 -50.569 -75.269 -50.673 -75.418 ; #664 1 57.321 -135.786 57.115 -135.780 57.190 -135.593 ; #665 1 42.956 16.676 42.920 17.000 42.970 16.918 ; #666 1 1.385 103.989 1.390 103.769 1.305 103.868 ; #667 1 -0.291 -90.786 -0.247 -90.632 -0.148 -90.791 ; #668 1 20.580 -86.742 20.434 -86.940 20.442 -86.830 ; #669 1 36.874 27.352 36.799 27.060 36.799 27.187 ; #670 1 3.429 125.659 3.621 125.533 3.489 125.544 ; #671 1 33.802 11.055 33.849 10.841 33.714 10.896 ; #672 1 -11.324 132.593 -11.099 132.582 -11.173 132.516 ; #673 1 -49.049 -75.231 -48.882 -75.440 -48.995 -75.456 ; #674 -1 32.011 -85.099 31.775 -85.121 31.821 -85.082 ; #675 1 -8.085 131.033 -8.236 130.879 -8.190 131.044 ; #676 1 69.753 -78.165 69.591 -78.544 69.607 -78.148 ; #677 1 58.956 -2.687 59.025 -3.088 58.934 -2.995 ; #678 1 11.953 119.890 11.769 119.945 11.843 120.027 ; #679 1 -51.626 -75.291 -51.420 -75.126 -51.475 -75.253 ; #680 1 37.876 20.648 37.714 20.824 37.824 20.835 ; #681 1 56.437 -78.698 56.247 -78.852 56.253 -78.692 ; #682 1 7.574 -81.813 7.376 -81.731 7.489 -81.692 ; #683 1 -8.426 151.093 -8.657 151.077 -8.571 151.121 ; #684 1 -45.772 -74.434 -45.599 -74.291 -45.618 -74.467 ; #685 1 -52.989 73.236 -53.118 73.544 -53.016 73.451 ; #686 1 43.343 16.429 43.280 16.709 43.368 16.665 ; #687 2 -73.071 -90.341 -73.000 -89.736 -72.929 -90.077 ; #688 1 58.808 -160.703 58.681 -161.022 58.657 -160.841 ; #689 1 -8.121 127.780 -8.209 127.984 -8.126 127.934 ; #690 1 62.772 -70.588 62.843 -70.940 62.684 -70.692 ; #691 1 -27.728 153.423 -27.514 153.484 -27.574 153.407 ; #692 1 37.970 24.725 37.794 24.846 37.871 24.918 ; #693 1 52.055 -128.033 51.868 -128.165 51.904 -127.989 ; #694 1 -52.352 -74.016 -52.159 -74.209 -52.245 -74.209 ; #695 1 -10.577 121.714 -10.555 121.912 -10.470 121.852 ; #696 1 -54.725 -64.291 -54.780 -64.544 -54.786 -64.165 ; #697 1 49.841 -126.896 49.692 -126.852 49.761 -126.665 ; #698 1 56.143 -133.291 56.047 -133.610 56.005 -133.440 ; #699 1 45.225 14.555 45.047 14.566 45.077 14.703 ; #700 -1 52.236 104.352 52.047 104.566 52.129 104.527 ; #701 1 -7.975 39.725 -7.805 39.846 -7.865 39.714 ; #702 1 53.712 -128.830 53.558 -129.104 53.582 -128.956 ; #703 2 77.118 96.005 77.025 95.929 77.195 96.527 ; #704 1 11.343 -60.527 11.242 -60.720 11.236 -60.610 ; #705 1 -48.038 -75.247 -47.967 -74.934 -47.959 -75.055 ; #706 1 -0.566 -50.835 -0.681 -51.000 -0.701 -50.879 ; #707 1 54.085 -130.379 53.975 -130.615 53.923 -130.445 ; #708 1 -8.429 119.451 -8.621 119.407 -8.569 119.505 ; #709 1 24.527 -112.016 24.418 -111.819 24.505 -111.852 ; #710 1 60.412 -146.132 60.390 -146.538 60.332 -146.352 ; #711 1 -15.481 167.714 -15.404 167.901 -15.368 167.775 ; #712 1 29.753 -84.703 29.651 -84.929 29.668 -84.846 ; #713 2 76.731 -100.286 76.665 -101.148 76.640 -100.780 ; #714 1 55.712 -5.297 55.530 -5.308 55.588 -5.132 ; #715 -1 44.602 -92.577 44.492 -92.313 44.541 -92.363 ; #716 1 55.404 -160.720 55.266 -160.824 55.250 -160.610 ; #717 1 23.673 -76.027 23.525 -75.846 23.604 -75.896 ; #718 1 22.099 -77.945 21.986 -77.764 22.077 -77.791 ; #719 1 -45.755 -73.654 -45.574 -73.626 -45.618 -73.758 ; #720 1 -27.352 153.429 -27.143 153.429 -27.203 153.374 ; #721 1 -48.695 -75.588 -48.558 -75.385 -48.560 -75.549 ; #722 1 50.690 -1.071 50.723 -1.346 50.624 -1.286 ; #723 1 37.684 26.357 37.604 26.115 37.585 26.225 ; #724 1 56.926 -61.467 56.731 -61.566 56.783 -61.440 ; #725 1 -52.140 -74.874 -51.953 -74.714 -52.003 -74.830 ; #726 1 -1.357 149.566 -1.527 149.643 -1.437 149.692 ; #727 1 13.077 -59.478 13.236 -59.533 13.148 -59.615 ; #728 1 -0.261 127.231 -0.374 127.126 -0.412 127.247 ; #729 1 47.104 -56.363 46.907 -56.363 46.934 -56.286 ; #730 1 -8.412 157.352 -8.604 157.297 -8.560 157.368 ; #731 1 51.717 -128.016 51.538 -128.066 51.574 -127.923 ; #732 1 -12.816 45.088 -12.857 45.170 -12.676 45.099 ; #733 1 12.302 -68.396 12.148 -68.313 12.198 -68.253 ; #734 1 38.846 20.692 38.709 20.588 38.668 20.681 ; #735 1 -8.376 143.324 -8.459 143.478 -8.382 143.495 ; #736 2 76.272 96.000 76.192 95.698 76.201 96.451 ; #737 1 -11.684 136.181 -11.577 136.363 -11.588 136.297 ; #738 2 -67.780 -67.742 -67.745 -67.357 -67.654 -67.577 ; #739 1 34.049 -119.890 33.992 -119.670 34.052 -119.692 ; #740 1 28.157 -115.181 28.247 -115.280 28.091 -115.308 ; #741 1 54.742 8.291 54.915 8.429 54.893 8.308 ; #742 1 -4.110 133.319 -4.236 133.478 -4.181 133.445 ; #743 2 -64.533 -57.467 -64.467 -57.060 -64.431 -57.258 ; #744 1 22.827 -74.346 22.709 -74.181 22.777 -74.192 ; #745 -1 29.473 -101.192 29.508 -101.000 29.555 -101.176 ; #746 1 49.096 -123.692 48.942 -123.495 48.981 -123.533 ; #747 1 50.431 -125.291 50.272 -125.247 50.299 -125.126 ; #748 1 68.044 13.495 68.140 13.813 68.198 13.621 ; #749 -1 30.398 32.330 30.253 32.456 30.299 32.484 ; #750 1 11.448 98.187 11.621 98.275 11.580 98.209 ; #751 -1 53.646 -103.412 53.574 -103.698 53.549 -103.571 ; #752 2 75.382 81.791 75.338 82.093 75.497 82.154 ; #753 -1 -21.525 -44.434 -21.393 -44.473 -21.376 -44.555 ; #754 1 -49.272 -75.516 -49.126 -75.385 -49.140 -75.533 ; #755 1 -10.632 152.549 -10.684 152.731 -10.640 152.703 ; #756 -1 46.648 -111.692 46.484 -111.582 46.516 -111.538 ; #757 1 34.701 -76.692 34.684 -76.934 34.687 -76.874 ; #758 1 29.352 -94.813 29.217 -94.967 29.253 -94.874 ; #759 1 17.720 -64.885 17.714 -64.703 17.766 -64.720 ; #760 -1 34.511 -114.379 34.374 -114.214 34.412 -114.242 ; #761 1 -0.492 32.214 -0.310 32.209 -0.393 32.170 ; #762 1 60.602 -145.769 60.541 -146.099 60.500 -146.033 ; #763 1 -45.025 -74.313 -44.992 -74.093 -44.926 -74.170 ; #764 1 50.283 -125.291 50.110 -125.264 50.154 -125.192 ; #765 1 18.788 -91.538 18.714 -91.714 18.712 -91.643 ; #766 1 12.225 52.088 12.170 52.264 12.214 52.236 ; #767 -1 34.401 -83.918 34.269 -84.016 34.302 -83.885 ; #768 -1 -29.981 24.725 -30.124 24.852 -30.077 24.857 ; #769 1 22.799 -79.632 22.701 -79.467 22.742 -79.500 ; #770 1 28.126 -96.857 27.984 -96.973 27.989 -96.923 ; #771 1 68.091 13.099 67.942 12.907 67.951 13.033 ; #772 1 22.404 -78.313 22.332 -78.170 22.390 -78.154 ; #773 1 10.728 98.286 10.868 98.236 10.832 98.187 ; #774 1 2.055 97.341 2.184 97.253 2.126 97.236 ; #775 -1 57.385 -4.341 57.255 -4.527 57.261 -4.495 ; #776 1 17.901 -87.995 18.030 -87.901 18.030 -87.934 ; #777 2 77.060 149.060 77.060 149.621 77.198 149.341 ; #778 2 77.060 156.934 77.060 157.500 77.198 157.220 ; #779 2 77.060 158.621 76.500 158.621 76.643 158.912 ; #780 1 71.437 -175.500 71.437 -174.934 71.580 -175.220 ; #781 1 60.187 154.687 60.187 154.945 60.302 154.835 ; #782 1 59.624 153.000 59.624 153.560 59.766 153.280 ; #783 1 52.310 175.500 52.310 176.060 52.445 175.780 ; #784 1 38.810 -29.808 38.810 -28.687 38.975 -29.247 ; #785 -1 35.437 3.934 35.437 4.500 35.604 4.231 ; #786 1 33.187 -16.308 33.352 -16.099 33.750 -16.308 ; #787 -1 33.750 -2.247 33.750 -1.687 33.846 -1.962 ; #788 1 32.624 -65.247 32.060 -65.808 32.060 -65.247 ; #789 1 28.687 -178.308 28.687 -177.747 28.797 -178.022 ; #790 1 28.687 -176.060 28.687 -175.500 28.797 -175.720 ; #791 1 25.874 -173.247 26.437 -173.247 26.099 -173.516 ; #792 1 19.124 -82.121 19.124 -81.560 19.206 -81.868 ; #793 1 13.500 -60.187 13.500 -59.621 13.582 -59.896 ; #794 1 12.374 -82.121 12.374 -81.560 12.937 -81.560 ; #795 1 12.374 71.434 12.937 71.434 12.637 71.209 ; #796 1 10.124 -109.687 10.687 -109.687 10.415 -109.896 ; #797 1 3.937 108.000 4.500 108.000 4.500 107.434 ; #798 1 2.250 -158.060 2.250 -157.500 2.332 -157.720 ; #799 -1 0.302 29.126 0.000 29.247 0.560 29.247 ; #800 -1 -1.687 28.687 -1.687 28.907 -1.602 28.791 ; #801 1 -2.250 176.060 -2.810 176.060 -2.802 175.835 ; #802 1 -6.187 176.060 -6.187 176.621 -6.077 176.374 ; #803 1 -7.310 71.434 -7.310 72.000 -6.750 72.000 ; #804 1 -7.874 -141.187 -7.874 -140.621 -7.764 -140.896 ; #805 1 -8.437 -14.621 -7.874 -14.621 -7.874 -14.786 ; #806 1 -9.000 -158.621 -9.000 -158.060 -8.896 -158.280 ; #807 1 -10.124 -139.500 -10.124 -138.934 -9.560 -139.500 ; #808 1 -15.187 -147.934 -15.187 -148.500 -15.269 -148.264 ; #809 1 -15.750 -6.187 -15.750 -5.621 -15.662 -5.841 ; #810 1 -16.874 -145.687 -16.874 -145.121 -16.791 -145.341 ; #811 1 -15.750 -143.995 -16.310 -143.995 -16.008 -143.720 ; #812 1 -15.750 -142.874 -16.310 -143.434 -16.874 -143.434 ; #813 -1 -19.124 -67.500 -18.560 -67.500 -18.560 -68.060 ; #814 1 -19.687 -158.621 -19.124 -158.621 -19.124 -159.187 ; #815 1 -25.310 -131.060 -24.750 -131.060 -25.025 -131.214 ; #816 1 -50.060 165.934 -50.624 165.934 -50.275 166.099 ; #817 1 -54.000 3.934 -54.560 3.934 -54.151 4.071 ; #818 2 -67.500 -91.687 -67.500 -91.121 -67.401 -91.335 ; #819 1 51.187 178.308 51.187 178.874 51.750 178.874 51.750 178.308 51.750 177.747 51.750 177.187 52.310 177.187 51.750 176.923 ; #820 -1 -29.250 136.687 -29.250 137.247 -28.687 137.808 -28.124 137.808 -27.560 137.247 -27.560 136.687 -28.124 136.687 -28.687 136.687 ; #821 -1 -18.560 15.187 -19.124 15.747 -18.560 16.308 -18.560 16.874 -18.000 16.874 -18.000 16.308 -18.000 15.747 ; #822 1 71.437 -9.560 71.437 -9.000 71.437 -8.434 71.437 -7.874 72.000 -7.874 72.000 -8.434 ; #823 -1 -24.750 129.934 -24.750 130.500 -24.750 131.060 -24.187 131.060 -24.187 130.500 -24.187 129.934 ; #824 1 10.687 72.000 10.687 72.560 11.250 72.560 11.810 72.560 11.250 72.000 ; #825 -1 -30.937 139.500 -30.937 140.060 -30.374 140.060 -29.810 140.060 -30.374 139.500 ; #826 1 56.810 -170.434 56.810 -169.874 57.374 -171.000 57.374 -170.434 ; #827 -1 49.500 135.560 49.500 136.121 50.060 136.121 50.060 135.560 ; #828 -1 50.624 136.264 50.624 136.687 51.187 136.687 51.187 136.264 ; #829 1 32.624 -17.434 32.624 -16.874 33.750 -16.874 33.187 -17.434 ; #830 -1 29.250 53.434 29.810 53.434 29.810 52.874 29.810 52.308 ; #831 1 19.124 -111.374 19.124 -110.808 19.687 -110.808 19.687 -111.374 ; #832 1 16.310 -23.060 16.310 -23.621 15.750 -24.187 15.187 -24.187 ; #833 1 13.500 144.000 13.500 144.560 14.060 144.560 14.060 144.000 ; #834 1 9.560 169.874 10.124 169.874 10.124 169.308 10.124 168.747 ; #835 1 -1.124 174.934 -0.560 174.374 -0.560 173.808 -1.124 174.374 ; #836 1 -14.060 146.247 -14.060 146.808 -13.500 146.808 -13.500 146.247 ; #837 1 -21.937 -158.621 -21.937 -158.060 -21.374 -158.060 -21.374 -158.621 ; #838 -1 -23.624 122.621 -23.624 123.187 -23.060 123.187 -23.060 122.621 ; #839 -1 -29.250 139.500 -29.250 140.060 -28.687 139.500 -28.687 138.934 ; #840 1 -46.687 37.121 -46.687 37.687 -46.124 37.687 -46.124 37.121 ; #841 2 -66.937 178.308 -66.937 178.874 -66.374 178.874 -66.374 178.308 ; end sunclock-3.57/vmf/timezones.vmf0000644000000000000000000427607011053545625013524 0ustar %!VMF % Vector Map Format for Sunclock % % List of colors #BFEFFF % 0 LightBlue1 #FFFACD % 1 LemonChiffon #FFFF69 % 2 LightYellow #BEB208 % 3 DarkGold #86CB28 % 4 YellowGreen #D7EB00 % 5 GreenGold #8CCD8C % 6 LightGreen3 #CD7054 % 7 Salmon3 #EE8262 % 8 Salmon2 #DEB887 % 9 Burlywood #F4A460 % 10 SandyBrown #000000 % 11 Black #0000FF % 12 Blue #FF0000 % 13 Red #000000 % 14 Black ; % Default color 0 % Palette (possibly several codes for each color: ci j1 j2 j3 ... ) c0 0 c1 1 c2 2 c3 3 c4 4 c5 5 c6 6 c7 7 c8 8 c9 9 c10 10 c11 11 c12 12 c13 13 ; % Background value 1 % Coordinate range (latitude, longitude) range -90 90 -180 180 % List of closed curves of land areas & lakes % Set internal flag flag 2 % Fill mode = fill areas within closed curves fillmode 2 closedcurves #0 3 21.364 -157.706 21.568 -157.862 21.642 -158.075 21.456 -158.211 21.383 -158.017 21.252 -157.823 ; #1 3 21.159 -156.871 21.196 -157.065 21.085 -157.279 21.103 -157.065 21.048 -156.871 ; #2 3 20.862 -156.833 20.918 -157.027 20.731 -156.910 ; #3 3 20.638 -156.095 20.825 -156.075 20.937 -156.269 20.862 -156.677 20.768 -156.464 20.583 -156.386 ; #4 3 19.238 -155.260 19.276 -155.066 19.388 -154.871 19.575 -154.813 19.724 -155.007 19.912 -155.066 20.042 -155.260 20.191 -155.648 20.005 -155.745 19.818 -155.920 19.631 -155.920 19.445 -155.842 19.052 -155.823 18.976 -155.648 ; #5 2 53.264 -167.551 53.407 -167.163 53.450 -166.755 53.592 -166.658 53.634 -166.463 53.776 -166.347 53.691 -166.560 53.834 -166.386 53.975 -166.405 53.848 -166.599 53.989 -166.716 53.975 -166.910 53.905 -167.104 53.748 -167.046 53.649 -166.852 53.649 -167.046 53.507 -167.104 53.436 -167.298 53.393 -167.512 53.249 -167.667 ; #6 2 59.859 -166.638 59.846 -166.230 59.885 -165.842 60.002 -165.648 60.184 -165.725 60.313 -165.745 60.313 -165.958 60.377 -166.153 60.365 -166.541 60.223 -166.929 60.223 -167.143 60.132 -167.337 60.002 -167.143 ; #7 2 54.116 -165.706 54.216 -165.900 54.088 -166.094 54.032 -165.900 ; #8 2 54.202 -165.473 54.258 -165.667 54.102 -165.570 ; #9 2 54.469 -164.871 54.399 -164.677 54.413 -164.483 54.554 -164.289 54.624 -164.094 54.624 -163.706 54.652 -163.493 54.708 -163.298 54.666 -163.104 54.750 -163.298 55.044 -163.551 55.058 -163.745 54.889 -164.327 54.889 -164.541 54.750 -164.638 54.624 -164.832 54.610 -164.891 ; #10 2 54.399 -162.755 54.427 -162.560 54.483 -162.755 ; #11 2 58.557 -161.007 58.677 -160.813 58.809 -160.716 58.651 -161.124 ; #12 2 55.336 -160.852 55.197 -160.755 55.252 -160.541 55.406 -160.696 ; #13 2 55.183 -159.998 55.058 -160.172 54.918 -160.192 55.058 -159.998 ; #14 2 55.238 -159.551 55.085 -159.531 55.238 -159.512 ; #15 2 56.523 -157.240 56.563 -157.046 56.577 -157.240 ; #16 2 55.918 -155.629 55.766 -155.609 55.904 -155.551 ; #17 2 56.999 -154.133 57.134 -153.745 57.012 -153.939 56.877 -153.998 56.741 -154.153 56.754 -153.959 56.850 -153.745 56.972 -153.551 57.039 -153.745 57.067 -153.551 57.162 -153.396 57.284 -152.794 57.365 -152.600 57.460 -152.794 57.446 -152.988 57.500 -152.794 57.433 -152.405 57.568 -152.211 57.621 -152.405 57.756 -152.483 57.890 -152.464 57.877 -152.658 57.823 -152.852 57.943 -153.066 57.997 -153.260 57.863 -153.085 57.729 -153.202 57.823 -153.396 57.689 -153.435 57.823 -153.570 57.890 -153.764 57.756 -153.939 57.689 -153.745 57.554 -153.687 57.419 -153.823 57.284 -153.648 57.379 -153.842 57.648 -154.056 57.662 -154.250 57.500 -154.638 57.365 -154.735 57.230 -154.580 57.094 -154.522 56.944 -154.366 56.944 -154.172 57.053 -154.133 ; #18 2 57.890 -153.454 57.890 -153.260 57.970 -153.454 ; #19 2 57.176 -152.949 57.134 -153.357 56.985 -153.299 57.094 -153.104 57.134 -152.891 ; #20 2 58.077 -153.260 58.050 -153.066 58.132 -153.260 ; #21 2 58.064 -152.658 58.198 -152.580 58.132 -152.386 58.265 -152.289 58.158 -152.075 58.291 -151.978 58.358 -152.192 58.358 -152.386 58.464 -152.580 58.411 -152.774 58.278 -152.755 58.291 -152.949 58.212 -153.143 58.077 -153.066 57.997 -152.852 ; #22 2 58.610 -152.483 58.477 -152.541 58.597 -152.347 ; #23 2 60.481 -151.978 60.352 -152.036 60.481 -151.862 ; #24 2 59.937 -148.231 60.002 -148.037 60.002 -148.075 ; #25 2 60.002 -148.114 60.132 -147.978 60.002 -148.153 ; #26 2 60.184 -148.075 60.054 -148.134 60.184 -148.037 ; #27 2 60.494 -147.726 60.365 -147.862 60.236 -147.901 60.287 -147.706 60.416 -147.629 ; #28 2 59.911 -147.804 59.781 -147.862 59.872 -147.473 60.041 -147.357 60.300 -146.988 60.326 -147.182 60.067 -147.493 60.002 -147.687 ; #29 2 60.481 -146.406 60.481 -146.599 60.352 -146.697 60.300 -146.503 60.390 -146.095 ; #30 2 60.610 -145.784 60.572 -145.978 60.469 -146.173 60.572 -145.784 ; #31 2 59.911 -144.406 60.002 -144.211 60.002 -144.270 ; #32 2 58.090 -136.503 57.957 -136.386 58.090 -136.464 ; #33 2 57.514 -135.979 57.379 -135.823 57.406 -135.629 57.541 -135.571 57.648 -135.765 57.675 -135.571 57.514 -135.163 57.460 -134.969 57.595 -134.852 57.729 -134.910 57.729 -135.299 57.836 -135.493 57.984 -135.881 57.809 -135.299 57.783 -135.105 57.917 -135.182 57.877 -134.988 58.010 -134.910 58.090 -135.124 58.104 -135.318 57.984 -135.726 58.090 -135.532 58.225 -135.707 58.225 -136.114 58.090 -136.153 58.225 -136.347 58.090 -136.406 57.957 -136.212 57.823 -136.425 57.756 -136.212 57.621 -136.114 57.433 -135.784 ; #34 2 57.257 -135.843 57.121 -135.745 56.985 -135.804 57.039 -135.610 57.176 -135.610 57.311 -135.707 ; #35 2 56.673 -134.891 56.536 -135.027 56.262 -134.794 56.399 -134.619 56.550 -134.658 56.686 -134.619 57.230 -134.833 57.365 -134.949 57.433 -135.163 57.460 -135.357 57.433 -135.551 57.298 -135.610 57.244 -135.396 57.107 -135.376 57.039 -135.182 56.944 -135.376 56.795 -135.318 56.822 -135.124 56.686 -135.202 56.768 -135.007 56.632 -135.124 56.591 -135.085 ; #36 2 57.554 -134.386 57.487 -134.580 57.379 -134.386 57.284 -134.580 57.149 -134.580 57.067 -134.386 57.176 -134.192 57.325 -134.134 57.311 -133.940 57.446 -133.978 57.581 -133.940 57.863 -134.231 57.997 -134.231 57.716 -133.978 57.581 -133.823 57.850 -133.959 57.984 -134.076 58.132 -134.153 58.172 -134.561 58.265 -134.755 58.398 -134.930 58.265 -134.930 58.132 -134.814 57.997 -134.755 57.716 -134.716 57.500 -134.580 ; #37 2 58.212 -134.522 58.238 -134.328 58.331 -134.522 ; #38 2 56.289 -134.076 56.138 -134.017 56.275 -133.920 56.563 -133.862 56.700 -133.765 56.632 -133.978 56.768 -133.920 56.904 -134.114 56.890 -134.309 56.754 -134.386 56.618 -134.270 56.550 -134.076 56.412 -134.037 56.412 -134.231 56.138 -134.212 56.000 -134.134 ; #39 2 55.406 -133.590 55.252 -133.590 55.406 -133.454 ; #40 2 55.155 -133.221 55.002 -133.143 54.722 -132.872 54.680 -132.678 54.820 -132.755 54.960 -132.930 55.099 -132.988 55.238 -133.105 ; #41 2 56.453 -132.852 56.330 -133.047 56.234 -132.852 56.317 -132.639 56.453 -132.697 ; #42 2 55.030 -132.872 55.044 -132.678 55.183 -132.814 ; #43 2 54.889 -132.794 54.750 -132.639 54.889 -132.619 ; #44 2 56.344 -132.483 56.207 -132.697 56.070 -132.561 55.945 -132.367 56.042 -132.173 56.180 -132.270 56.193 -132.483 56.330 -132.386 ; #45 2 56.262 -132.347 56.166 -132.153 56.234 -131.940 56.481 -132.328 ; #46 2 55.295 -131.843 55.155 -131.745 55.295 -131.629 55.406 -131.823 ; #47 2 55.461 -131.512 55.447 -131.318 55.586 -131.357 55.447 -131.279 55.309 -131.454 55.309 -131.260 55.252 -131.066 55.683 -130.969 55.821 -131.066 55.959 -131.260 55.931 -131.454 55.835 -131.648 55.544 -131.648 55.406 -131.765 55.322 -131.609 ; #48 2 55.155 -131.532 55.002 -131.551 55.099 -131.357 55.238 -131.474 ; #49 -2 65.644 -167.997 65.716 -167.803 65.716 -167.589 65.833 -167.473 65.892 -167.279 65.868 -167.085 65.927 -166.891 66.044 -166.735 66.162 -166.347 66.162 -166.133 66.104 -165.745 66.151 -165.551 66.209 -165.745 66.326 -165.725 66.419 -165.337 66.454 -164.949 66.570 -164.560 66.593 -164.366 66.593 -163.765 66.477 -163.784 66.244 -163.939 66.197 -164.133 66.209 -163.939 66.091 -163.765 66.091 -163.376 66.068 -163.162 66.104 -162.968 66.104 -162.755 66.044 -162.560 66.033 -162.366 66.079 -162.153 66.044 -161.959 66.068 -161.765 66.079 -161.784 66.197 -161.629 66.267 -161.434 66.174 -161.027 66.291 -161.065 66.360 -161.260 66.407 -161.667 66.372 -161.881 66.488 -161.881 66.721 -162.269 66.733 -162.463 66.848 -162.619 66.917 -162.425 66.883 -162.230 66.779 -162.036 66.662 -162.075 66.546 -161.900 66.477 -161.706 66.454 -161.493 66.500 -161.298 66.488 -161.104 66.407 -160.910 66.372 -160.696 66.395 -160.308 66.512 -160.211 66.627 -160.328 66.604 -160.716 66.662 -160.910 66.651 -161.104 66.535 -161.337 66.558 -161.570 66.686 -161.842 66.814 -161.881 66.952 -161.706 66.952 -161.512 67.021 -161.706 67.044 -161.920 67.033 -162.133 67.067 -162.289 67.159 -162.444 67.056 -162.483 67.021 -162.677 67.044 -162.716 67.044 -163.104 67.113 -163.706 67.343 -163.823 67.583 -164.075 67.810 -164.696 67.799 -164.716 67.867 -164.910 68.025 -165.318 68.104 -165.706 68.126 -165.920 68.227 -166.114 68.296 -166.308 68.329 -166.502 68.340 -166.716 68.363 -166.658 68.352 -166.560 68.396 -166.366 68.743 -166.192 68.854 -166.230 68.876 -166.036 68.854 -165.648 68.920 -164.425 68.954 -164.153 68.998 -163.958 69.142 -163.570 69.374 -163.221 69.483 -163.104 69.593 -163.143 69.637 -163.065 69.691 -162.949 69.801 -162.910 69.975 -162.502 70.116 -162.347 70.191 -162.153 70.300 -161.959 70.278 -161.745 70.224 -161.784 70.191 -161.978 70.191 -161.784 70.246 -161.570 70.268 -161.260 70.289 -160.968 70.601 -160.172 70.590 -159.998 70.515 -159.998 70.472 -160.211 70.472 -159.998 70.429 -159.998 70.321 -160.133 70.353 -159.998 70.246 -159.842 70.353 -159.862 70.472 -159.823 70.494 -159.434 70.547 -159.842 70.633 -159.998 70.665 -159.998 70.815 -159.609 70.878 -159.201 70.783 -159.396 70.762 -159.201 70.772 -159.007 70.836 -157.998 70.878 -157.803 70.975 -157.512 71.081 -157.201 71.198 -157.027 71.292 -156.833 71.398 -156.444 71.292 -156.541 71.198 -155.745 71.102 -155.551 70.996 -155.745 70.975 -155.939 70.922 -156.153 70.857 -155.959 70.825 -155.978 70.836 -155.590 70.943 -155.512 71.112 -155.202 71.028 -155.007 71.091 -154.813 71.017 -154.619 70.910 -154.677 70.825 -154.483 70.815 -154.075 70.889 -153.862 70.889 -153.473 70.922 -153.260 70.857 -152.852 70.846 -152.658 70.868 -152.464 70.836 -152.250 70.730 -152.405 70.622 -152.425 70.590 -152.231 70.569 -152.619 70.547 -152.211 70.569 -152.017 70.558 -151.823 70.450 -151.978 70.439 -151.571 70.375 -151.182 70.439 -151.143 70.504 -150.541 70.439 -150.386 70.439 -150.192 70.483 -149.998 70.504 -149.590 70.483 -149.376 70.494 -149.182 70.429 -148.968 70.407 -148.716 70.386 -148.561 70.311 -148.366 70.353 -148.192 70.321 -148.075 70.311 -147.901 70.257 -147.784 70.202 -147.590 70.159 -146.988 70.180 -146.794 70.180 -146.386 70.137 -145.784 70.062 -145.590 70.040 -145.396 69.996 -145.299 69.975 -144.988 69.985 -144.580 70.040 -144.347 70.051 -144.134 69.996 -144.056 70.083 -143.842 70.105 -143.240 70.062 -142.852 70.019 -142.639 69.975 -142.503 69.790 -141.978 69.812 -141.920 69.767 -141.706 69.680 -141.474 69.637 -141.279 69.637 -141.260 69.659 -141.066 69.659 -141.008 60.429 -141.008 60.274 -140.833 60.236 -140.639 60.300 -140.425 60.249 -140.211 60.197 -139.998 60.223 -139.920 60.326 -139.707 60.339 -139.493 60.352 -139.299 60.274 -139.085 60.145 -139.163 60.002 -139.046 59.963 -138.891 59.911 -138.697 59.768 -138.619 59.676 -138.425 59.559 -138.211 59.455 -138.017 59.442 -137.979 59.349 -137.804 59.231 -137.590 59.100 -137.532 58.954 -137.357 59.034 -137.163 59.113 -136.949 59.165 -136.755 59.192 -136.541 59.336 -136.464 59.468 -136.309 59.598 -136.347 59.650 -136.153 59.663 -135.959 59.728 -135.726 59.794 -135.512 59.715 -135.318 59.624 -135.105 59.546 -135.007 59.402 -135.046 59.270 -134.872 59.179 -134.658 59.126 -134.464 58.994 -134.386 58.862 -134.250 58.796 -134.037 58.730 -133.823 58.570 -133.648 58.544 -133.610 58.411 -133.396 58.291 -133.376 58.172 -133.182 58.024 -133.085 57.890 -132.911 57.756 -132.794 57.621 -132.658 57.487 -132.522 57.352 -132.347 57.203 -132.231 57.067 -132.250 56.999 -132.037 56.850 -132.076 56.795 -131.862 56.659 -131.823 56.604 -131.668 56.550 -131.454 56.481 -131.260 56.399 -131.047 56.371 -130.852 56.275 -130.639 56.193 -130.445 56.097 -130.250 56.056 -130.037 55.904 -130.017 55.766 -130.173 55.489 -130.114 55.281 -129.998 55.127 -130.173 54.988 -130.270 54.848 -130.464 54.764 -130.678 54.904 -130.736 54.806 -130.930 54.946 -130.930 55.099 -130.852 55.155 -130.658 55.295 -130.483 55.169 -130.678 55.113 -130.872 55.252 -130.949 55.281 -130.755 55.433 -130.872 55.711 -130.891 56.000 -131.163 55.945 -131.571 55.876 -131.765 55.738 -131.784 55.599 -131.881 55.544 -132.076 55.683 -132.212 55.973 -131.940 56.111 -131.959 56.193 -131.765 56.180 -131.571 56.234 -131.920 56.371 -132.037 56.481 -132.250 56.632 -132.309 56.618 -132.503 56.754 -132.464 56.795 -132.658 56.904 -132.852 57.039 -132.814 57.053 -133.007 57.134 -133.221 57.134 -133.415 57.271 -133.474 57.325 -133.085 57.325 -133.279 57.446 -133.474 57.581 -133.318 57.568 -133.512 57.702 -133.590 57.514 -133.007 57.716 -133.396 57.850 -133.551 57.877 -133.357 57.850 -133.163 57.903 -133.357 57.917 -133.551 57.783 -133.648 57.917 -133.823 58.064 -133.765 58.010 -133.959 58.145 -134.076 58.278 -134.056 58.411 -133.959 58.517 -133.765 58.504 -133.959 58.238 -134.114 58.251 -134.309 58.358 -134.503 58.371 -134.716 58.637 -134.969 58.770 -134.930 58.822 -135.124 59.087 -135.221 59.218 -135.318 59.349 -135.357 59.455 -135.338 59.323 -135.396 59.310 -135.493 59.179 -135.338 59.231 -135.532 59.100 -135.396 58.967 -135.396 58.610 -135.163 58.477 -135.143 58.345 -135.046 58.212 -135.143 58.265 -135.338 58.398 -135.415 58.424 -135.629 58.385 -135.823 58.531 -135.843 58.796 -136.056 58.875 -135.862 58.875 -136.056 59.007 -136.095 58.875 -136.095 58.770 -136.309 58.862 -136.503 58.994 -136.677 58.980 -136.872 59.060 -137.066 58.928 -136.910 58.862 -137.105 58.888 -136.891 58.809 -136.503 58.664 -136.464 58.651 -136.270 58.517 -136.212 58.385 -136.037 58.318 -136.231 58.398 -136.425 58.345 -136.619 58.212 -136.658 58.345 -136.833 58.451 -137.221 58.597 -137.629 58.862 -137.940 58.980 -138.134 59.074 -138.328 59.100 -138.522 59.179 -138.444 59.152 -138.658 59.231 -138.852 59.283 -139.066 59.375 -139.260 59.388 -139.454 59.481 -139.648 59.533 -139.842 59.572 -139.648 59.702 -139.474 59.833 -139.590 59.963 -139.512 59.859 -139.299 59.598 -139.338 59.728 -139.279 59.846 -139.085 59.807 -138.891 59.911 -139.299 60.002 -139.415 60.002 -139.590 59.872 -139.765 59.781 -139.998 59.715 -140.192 59.702 -140.406 59.741 -140.794 59.872 -141.396 60.002 -141.260 60.132 -141.376 60.002 -141.474 59.950 -141.687 60.002 -141.842 60.080 -142.503 60.107 -142.658 60.041 -143.668 60.002 -143.842 60.028 -144.172 60.158 -144.250 60.171 -144.444 60.223 -144.677 60.300 -144.871 60.572 -144.813 60.687 -144.619 60.712 -144.619 60.636 -144.813 60.390 -145.201 60.365 -145.396 60.443 -145.590 60.469 -145.804 60.597 -145.706 60.674 -145.901 60.648 -146.095 60.776 -146.037 60.700 -146.425 60.687 -146.619 60.776 -146.425 60.829 -146.095 60.854 -146.289 60.816 -146.483 60.880 -146.697 61.007 -146.697 61.084 -146.503 61.084 -146.289 61.122 -146.503 61.071 -146.697 60.969 -146.891 61.007 -147.085 60.995 -147.473 61.122 -147.532 60.995 -147.609 60.867 -147.609 60.918 -147.998 61.058 -147.920 61.187 -147.765 61.276 -147.726 61.148 -147.920 61.020 -148.056 61.097 -148.270 60.956 -148.250 60.829 -148.347 60.829 -148.541 60.700 -148.677 60.764 -148.483 60.636 -148.425 60.764 -148.231 60.636 -148.211 60.558 -148.406 60.520 -148.599 60.520 -148.386 60.546 -148.192 60.520 -147.998 60.390 -148.095 60.274 -148.289 60.145 -148.153 60.132 -148.366 60.002 -148.406 60.002 -148.541 59.950 -148.735 60.002 -149.202 59.872 -149.279 60.002 -149.318 60.002 -149.396 59.872 -149.590 59.741 -149.532 59.872 -149.648 59.859 -149.842 59.715 -149.745 59.794 -149.998 59.637 -149.998 59.572 -150.192 59.715 -150.211 59.572 -150.386 59.572 -150.580 59.442 -150.600 59.362 -150.794 59.231 -150.968 59.297 -151.163 59.179 -151.765 59.257 -151.959 59.402 -151.901 59.455 -151.706 59.468 -151.493 59.559 -151.299 59.689 -151.124 59.689 -151.318 59.637 -151.512 59.676 -151.726 59.807 -151.862 60.002 -151.745 60.262 -151.396 60.377 -151.318 60.507 -151.279 60.648 -151.357 60.776 -151.260 60.789 -151.066 60.969 -150.677 61.020 -150.483 60.905 -150.075 60.969 -149.804 60.893 -149.221 60.995 -149.609 61.135 -149.998 61.200 -149.998 61.327 -149.804 61.453 -149.415 61.491 -149.609 61.403 -149.804 61.238 -149.998 61.250 -150.405 61.365 -150.580 61.238 -150.755 61.200 -150.949 61.071 -151.143 60.995 -151.532 60.918 -151.726 60.789 -151.765 60.700 -151.978 60.572 -152.172 60.443 -152.347 60.313 -152.405 60.223 -152.600 60.236 -152.794 60.313 -152.988 60.094 -152.600 60.002 -152.638 59.885 -152.852 59.859 -153.240 59.833 -153.046 59.702 -153.085 59.663 -153.279 59.637 -153.668 59.546 -153.862 59.415 -153.920 59.375 -154.133 59.113 -154.172 59.060 -154.211 59.074 -153.803 58.994 -153.609 58.967 -153.415 58.836 -153.376 58.704 -153.512 58.610 -153.706 58.610 -153.900 58.477 -154.114 58.345 -154.211 58.212 -154.172 58.077 -154.328 58.104 -154.541 58.024 -154.930 57.890 -155.085 57.756 -155.473 57.648 -155.667 57.554 -155.745 57.527 -155.939 57.419 -156.328 57.325 -156.522 57.189 -156.386 57.053 -156.502 56.958 -156.891 56.822 -157.104 56.836 -157.357 56.727 -157.551 56.659 -157.745 56.632 -157.939 56.536 -158.133 56.577 -157.939 56.509 -158.133 56.481 -158.328 56.344 -158.541 56.317 -158.328 56.180 -158.347 56.234 -158.153 56.152 -158.347 56.014 -158.425 55.986 -158.502 56.125 -158.561 55.986 -158.658 56.014 -158.852 55.890 -159.046 55.890 -159.240 55.794 -159.454 55.642 -159.551 55.599 -159.764 55.738 -159.687 55.780 -159.881 55.780 -159.998 55.656 -160.192 55.656 -160.405 55.503 -160.463 55.544 -160.658 55.516 -160.852 55.350 -161.260 55.364 -161.454 55.503 -161.454 55.530 -161.260 55.627 -161.454 55.558 -161.648 55.420 -161.706 55.281 -161.862 55.127 -161.978 55.155 -162.172 55.030 -162.386 55.183 -162.502 55.267 -162.696 55.127 -162.599 54.988 -162.580 54.932 -162.774 54.988 -162.988 55.141 -163.182 54.988 -163.143 54.848 -163.221 54.988 -163.279 55.141 -163.298 55.197 -163.085 55.183 -162.891 55.322 -162.696 55.364 -162.502 55.516 -162.463 55.656 -162.289 55.766 -162.094 55.986 -161.279 55.931 -161.085 56.000 -160.891 55.849 -160.929 55.711 -160.794 55.849 -160.774 55.862 -160.580 55.794 -160.386 55.931 -160.502 56.070 -160.502 56.207 -160.425 56.344 -160.231 56.550 -159.803 56.700 -159.221 56.822 -159.027 56.782 -158.832 56.917 -158.697 57.053 -158.638 57.325 -158.289 57.365 -158.075 57.500 -157.900 57.568 -157.706 57.473 -157.667 57.487 -157.454 57.554 -157.396 57.487 -157.570 57.756 -157.687 57.890 -157.629 58.037 -157.609 58.172 -157.551 58.212 -157.357 58.158 -157.143 58.238 -157.337 58.265 -157.531 58.398 -157.551 58.664 -157.182 58.743 -156.949 58.875 -157.027 59.007 -156.852 59.152 -156.774 59.020 -156.871 58.888 -157.085 58.743 -157.687 58.624 -158.075 58.624 -158.269 58.796 -158.541 58.928 -158.502 59.020 -158.289 58.967 -158.095 59.034 -158.192 59.060 -158.386 59.179 -158.541 59.047 -158.483 58.664 -158.871 58.531 -158.774 58.411 -158.968 58.438 -159.046 58.704 -159.337 58.836 -159.531 58.928 -159.745 58.796 -159.823 58.875 -159.998 58.915 -160.192 59.047 -160.328 59.007 -160.522 58.928 -160.716 58.809 -161.124 58.796 -161.318 58.664 -161.376 58.610 -161.570 58.651 -162.172 58.677 -161.978 58.756 -161.784 59.034 -161.862 59.060 -161.667 59.113 -161.862 59.244 -162.056 59.388 -161.900 59.494 -161.706 59.637 -161.881 59.768 -161.959 60.002 -162.192 60.132 -162.211 60.249 -162.405 60.377 -162.347 60.520 -162.230 60.648 -162.056 60.700 -161.881 60.661 -162.075 60.738 -162.172 60.469 -162.366 60.339 -162.560 60.210 -162.483 60.080 -162.483 60.002 -162.522 60.002 -162.755 59.911 -162.949 59.846 -163.162 59.820 -163.357 59.794 -163.765 59.807 -163.958 59.859 -164.153 60.002 -164.114 60.054 -164.308 60.313 -164.677 60.287 -164.755 60.326 -164.949 60.390 -165.085 60.520 -164.968 60.507 -165.376 60.764 -165.027 60.893 -164.968 60.893 -164.774 60.816 -164.560 60.789 -164.366 60.661 -164.289 60.572 -164.444 60.751 -164.056 60.764 -163.862 60.636 -163.842 60.584 -163.687 60.661 -163.493 60.803 -163.512 60.841 -163.706 60.841 -163.900 60.867 -163.706 60.995 -163.687 60.854 -164.075 60.854 -164.463 60.931 -164.677 60.944 -164.871 60.905 -165.085 61.033 -164.949 61.109 -165.143 61.238 -165.124 61.187 -165.318 61.453 -165.065 61.491 -164.852 61.618 -164.716 61.632 -164.774 61.428 -165.163 61.301 -165.221 61.173 -165.376 61.097 -165.570 61.225 -165.648 61.314 -165.842 61.441 -165.842 61.542 -166.036 61.669 -166.172 61.657 -165.978 61.682 -165.784 61.720 -165.978 61.821 -165.784 61.859 -165.590 61.984 -165.764 62.110 -165.706 62.499 -165.143 62.536 -164.949 62.461 -164.755 62.449 -164.599 62.486 -164.794 62.611 -164.696 62.747 -164.483 62.648 -164.716 62.772 -164.871 62.785 -164.774 62.908 -164.813 63.033 -164.619 63.008 -164.327 63.082 -164.522 63.205 -164.425 63.255 -164.036 63.205 -163.726 63.082 -163.629 62.984 -163.803 63.058 -163.609 63.070 -163.415 63.045 -163.221 63.082 -163.007 63.205 -162.813 63.255 -162.619 63.513 -162.289 63.513 -162.094 63.452 -161.900 63.477 -161.298 63.550 -161.085 63.672 -160.891 63.794 -160.774 63.929 -160.832 64.050 -160.929 64.171 -160.949 64.414 -161.201 64.426 -161.396 64.534 -161.376 64.498 -161.182 64.558 -160.968 64.679 -160.794 64.799 -160.871 64.871 -161.085 64.943 -160.988 64.931 -161.201 64.811 -161.376 64.775 -161.570 64.811 -161.765 64.703 -161.978 64.691 -162.172 64.595 -162.366 64.522 -162.580 64.402 -162.638 64.426 -162.832 64.655 -163.221 64.414 -163.143 64.498 -163.337 64.558 -163.551 64.583 -163.745 64.571 -164.347 64.462 -165.163 64.498 -165.356 64.583 -166.172 64.631 -166.366 64.763 -166.483 64.883 -166.405 64.979 -166.658 65.086 -166.852 65.205 -166.968 65.122 -166.774 65.122 -166.560 65.241 -166.425 65.241 -166.056 65.313 -166.250 65.372 -166.852 65.337 -166.658 65.348 -166.852 65.384 -167.046 65.420 -167.454 65.573 -167.997 ; #50 -2 68.363 -166.755 68.419 -166.463 68.363 -166.658 ; #51 -2 69.539 -163.182 69.593 -163.182 69.626 -163.162 69.637 -163.065 69.593 -163.143 69.483 -163.104 ; #52 -2 57.107 -154.308 57.134 -154.114 57.080 -154.114 ; #53 5 69.615 -138.930 69.648 -139.124 69.561 -139.318 69.527 -139.124 ; #54 4 69.352 -135.299 69.363 -135.493 69.308 -135.299 ; #55 4 70.654 -128.231 70.547 -128.328 70.601 -128.114 ; #56 -4 68.898 -136.425 68.887 -136.153 68.843 -135.862 68.765 -135.668 68.687 -135.260 68.664 -135.221 68.664 -135.143 68.732 -135.338 68.854 -135.435 68.931 -135.241 68.887 -135.046 68.931 -134.852 68.865 -134.658 68.743 -134.503 68.675 -134.289 68.687 -134.231 68.987 -134.619 69.109 -134.503 69.153 -134.309 69.263 -134.134 69.286 -133.920 69.330 -133.726 69.407 -133.532 69.429 -133.105 69.659 -132.872 69.637 -132.464 69.746 -132.483 69.767 -132.270 69.735 -132.464 69.702 -132.270 69.724 -132.076 69.767 -131.881 69.844 -131.687 69.942 -131.279 69.834 -131.202 69.942 -131.047 69.996 -131.008 70.094 -130.814 70.127 -130.619 70.127 -130.406 70.083 -130.212 70.083 -130.017 70.213 -129.629 70.105 -129.493 69.996 -129.571 69.801 -130.406 69.702 -130.600 69.670 -130.794 69.593 -131.008 69.615 -131.202 69.571 -131.396 69.561 -131.804 69.527 -131.998 69.418 -132.095 69.319 -132.309 69.208 -132.483 69.263 -132.678 69.142 -132.872 69.032 -132.891 69.065 -133.105 68.954 -133.241 68.887 -133.435 68.776 -133.415 68.687 -133.027 68.754 -133.241 68.821 -133.027 68.810 -132.619 68.832 -132.425 68.887 -132.619 68.909 -132.833 69.021 -132.872 69.153 -132.464 69.230 -132.076 69.308 -131.881 69.429 -131.881 69.450 -131.493 69.341 -131.512 69.450 -131.376 69.341 -131.338 69.450 -131.163 69.571 -131.260 69.450 -131.124 69.571 -131.163 69.461 -131.027 69.341 -131.085 69.461 -130.969 69.352 -131.027 69.241 -130.988 69.341 -130.794 69.461 -130.658 69.680 -130.328 69.823 -129.609 69.844 -129.202 69.931 -129.008 69.823 -129.163 69.713 -129.163 69.680 -128.930 69.801 -128.736 69.888 -128.542 69.942 -128.347 69.996 -128.309 70.116 -128.347 70.170 -128.153 70.224 -127.551 70.278 -127.940 70.386 -127.920 70.375 -128.114 70.483 -128.153 70.579 -127.959 70.418 -127.493 70.364 -127.357 70.268 -127.163 69.942 -126.794 69.834 -126.755 69.724 -126.639 69.516 -126.231 69.385 -125.843 69.319 -125.454 69.385 -125.241 69.461 -125.435 69.494 -125.221 69.604 -125.435 69.691 -125.221 69.746 -125.027 69.713 -124.833 69.757 -125.027 69.757 -125.221 69.812 -125.027 69.931 -124.911 69.996 -124.639 69.996 -125.008 69.931 -125.221 69.996 -125.202 70.062 -124.852 70.083 -124.445 70.148 -124.658 70.105 -124.445 69.942 -124.425 69.713 -124.483 69.713 -124.076 69.494 -124.386 69.374 -124.483 69.352 -124.289 69.352 -123.649 69.385 -123.454 69.494 -123.357 69.604 -123.144 69.713 -123.105 69.823 -123.008 69.790 -122.814 69.812 -122.406 69.790 -122.212 69.812 -121.998 69.757 -121.396 69.615 -120.794 69.439 -120.406 69.385 -120.192 69.341 -119.940 69.230 -118.717 69.142 -118.522 68.998 -117.920 68.965 -117.513 68.887 -117.124 68.931 -116.911 68.876 -116.717 68.854 -116.522 68.865 -116.115 68.976 -116.270 68.965 -116.076 68.998 -115.862 68.943 -115.474 68.821 -114.853 68.575 -114.270 68.464 -114.056 68.352 -113.979 68.239 -114.056 68.227 -114.270 68.261 -114.464 68.239 -114.853 68.182 -114.775 68.149 -114.969 68.126 -115.183 68.002 -115.124 67.889 -115.513 67.878 -115.319 67.799 -115.105 67.810 -114.697 67.776 -114.484 67.719 -114.289 67.731 -114.095 67.696 -113.901 67.674 -112.503 67.742 -112.289 67.731 -112.095 67.674 -111.901 67.753 -111.804 67.731 -111.590 67.765 -111.008 67.946 -110.406 67.980 -109.998 67.855 -109.998 67.889 -109.940 67.821 -109.746 67.708 -109.668 67.742 -109.455 67.719 -109.066 67.594 -108.989 67.480 -109.027 67.434 -108.950 67.434 -108.756 67.548 -108.561 67.434 -108.426 67.297 -108.037 67.182 -107.901 67.067 -107.959 67.067 -108.367 67.113 -108.561 67.021 -108.367 66.964 -108.173 66.848 -108.231 66.802 -107.959 66.454 -107.435 66.407 -107.241 66.512 -107.435 66.639 -107.590 66.756 -107.688 66.872 -107.726 66.987 -107.707 67.010 -107.513 66.883 -107.629 66.825 -107.416 66.952 -107.338 66.883 -107.144 67.010 -107.299 67.125 -107.280 67.182 -107.493 67.297 -107.590 67.537 -107.668 67.742 -108.018 67.855 -107.921 67.957 -107.707 67.991 -107.901 68.104 -107.843 67.991 -107.746 68.059 -107.552 68.047 -107.357 68.126 -107.163 68.104 -106.756 68.171 -106.678 68.250 -106.464 68.363 -106.309 68.374 -106.095 68.408 -105.901 68.497 -105.707 68.609 -105.804 68.620 -106.018 68.508 -106.426 68.464 -106.620 68.352 -106.678 68.374 -106.872 68.261 -107.260 68.318 -107.455 68.340 -107.649 68.296 -107.862 68.182 -107.785 68.160 -107.979 68.171 -108.192 68.227 -108.387 68.250 -108.581 68.250 -108.795 68.363 -108.678 68.597 -108.348 68.631 -108.154 68.642 -107.765 68.699 -107.357 68.787 -106.969 68.843 -106.561 68.931 -106.134 68.843 -105.726 68.743 -105.532 68.631 -105.513 68.519 -105.416 68.408 -105.416 68.318 -105.222 68.307 -105.028 68.261 -104.814 68.194 -104.620 68.070 -104.581 68.036 -104.367 68.014 -104.173 68.047 -103.979 68.025 -103.785 68.081 -103.377 67.957 -103.202 67.912 -103.008 67.821 -102.794 67.742 -102.192 67.776 -101.999 60.094 -101.999 60.002 -102.037 60.002 -109.998 48.995 -109.998 48.995 -104.037 48.300 -104.018 47.829 -104.018 47.829 -103.940 47.692 -103.746 47.661 -103.746 47.508 -103.591 47.615 -103.396 47.615 -103.241 47.600 -102.853 47.539 -102.659 47.524 -102.425 47.600 -102.192 47.524 -101.940 47.524 -101.688 47.554 -101.494 47.493 -101.396 47.340 -101.358 47.278 -101.008 47.109 -100.930 46.986 -100.930 46.986 -101.202 46.863 -101.086 46.817 -101.086 46.786 -100.814 46.709 -100.775 46.540 -100.581 46.353 -100.542 46.183 -100.620 46.121 -100.620 46.121 -100.659 45.935 -100.756 45.935 -100.484 45.779 -100.348 45.561 -100.484 45.388 -100.290 45.201 -100.290 45.044 -100.328 44.997 -100.425 44.823 -100.464 44.823 -100.678 44.792 -100.736 44.461 -100.542 44.445 -100.387 44.382 -100.367 44.350 -100.348 44.034 -100.639 43.875 -100.678 43.700 -100.659 43.732 -100.601 43.716 -100.387 43.589 -100.193 43.397 -100.173 42.998 -100.134 42.998 -100.872 42.933 -100.872 42.773 -100.814 42.661 -100.853 42.436 -100.775 42.274 -100.756 42.048 -100.794 41.967 -100.794 41.741 -100.930 41.725 -101.377 41.562 -101.377 41.383 -101.222 41.107 -101.222 40.780 -101.202 40.600 -101.299 40.420 -101.299 40.140 -101.280 39.992 -101.280 39.992 -102.018 39.580 -102.018 39.580 -101.513 39.365 -101.338 39.132 -101.338 38.983 -101.435 38.900 -101.435 38.701 -101.455 38.484 -101.532 37.949 -101.513 37.932 -101.513 37.748 -101.494 37.748 -102.018 36.991 -102.018 36.991 -103.008 36.500 -103.008 36.415 -103.047 33.760 -103.047 33.257 -103.066 32.054 -103.066 32.002 -103.125 32.002 -104.892 31.757 -104.892 31.054 -104.911 30.736 -104.911 30.612 -104.969 30.683 -105.008 30.860 -105.397 30.930 -105.474 31.265 -105.823 31.493 -106.231 31.528 -106.231 31.704 -106.348 31.757 -106.445 31.757 -106.484 31.774 -106.523 31.774 -107.998 31.739 -108.212 31.528 -108.212 31.335 -108.348 31.335 -108.969 31.300 -108.969 30.807 -109.047 30.559 -108.639 30.365 -108.561 30.028 -108.542 29.993 -108.561 29.816 -108.581 29.424 -108.600 29.246 -108.678 29.104 -108.659 28.496 -108.600 28.407 -108.561 28.264 -108.775 28.282 -109.008 28.048 -109.086 27.833 -108.892 27.743 -108.853 27.563 -108.697 27.365 -108.659 27.184 -108.678 26.986 -108.464 27.005 -108.445 27.022 -108.426 27.058 -108.387 26.914 -108.018 26.787 -107.979 26.606 -107.843 26.190 -107.746 26.154 -107.532 26.063 -107.338 25.863 -107.260 25.809 -107.144 25.645 -106.930 25.517 -107.047 25.318 -107.105 25.190 -107.125 24.990 -107.066 24.880 -106.950 24.716 -106.756 24.624 -106.717 24.387 -106.600 24.295 -106.406 24.387 -106.192 24.204 -105.998 24.094 -105.959 23.799 -105.901 23.561 -105.823 23.542 -105.765 23.359 -105.707 23.248 -105.630 23.212 -105.610 23.157 -105.397 23.028 -105.397 23.028 -105.202 22.954 -105.008 22.770 -104.911 22.549 -105.008 22.604 -104.892 22.622 -104.659 22.419 -104.484 22.419 -104.464 22.437 -104.328 22.327 -104.309 22.271 -104.328 22.067 -104.406 21.993 -104.290 21.771 -104.095 21.697 -104.134 21.494 -104.173 21.383 -103.940 21.196 -104.076 21.178 -104.231 21.048 -104.212 20.974 -104.212 20.787 -104.290 20.713 -104.290 20.844 -104.484 20.899 -104.523 20.918 -104.542 20.918 -104.620 21.011 -104.814 20.918 -105.008 20.787 -105.202 20.731 -105.241 20.713 -105.261 20.694 -105.261 20.768 -105.474 20.955 -105.377 21.141 -105.222 21.512 -105.222 21.568 -105.358 21.956 -105.630 22.327 -105.649 22.512 -105.726 22.843 -105.979 23.193 -106.406 23.377 -106.503 24.057 -107.144 24.387 -107.610 24.496 -107.707 24.588 -107.940 24.789 -108.057 24.971 -107.998 25.044 -108.037 25.227 -108.309 25.282 -108.503 25.354 -108.639 25.572 -108.853 25.608 -109.047 25.590 -109.183 25.754 -109.377 25.863 -109.416 26.045 -109.416 26.244 -109.299 26.263 -109.221 26.353 -109.125 26.335 -109.241 26.534 -109.280 26.679 -109.474 26.679 -109.668 26.733 -109.804 27.094 -109.959 27.130 -110.192 27.239 -110.387 27.437 -110.561 27.653 -110.639 27.833 -110.523 27.940 -110.833 27.958 -110.814 27.958 -110.853 27.833 -110.872 27.940 -111.086 28.102 -111.280 28.282 -111.396 28.603 -111.785 28.782 -111.862 28.907 -112.057 29.104 -112.173 29.246 -112.192 29.335 -112.386 29.513 -112.406 29.691 -112.561 29.993 -112.736 30.188 -112.755 30.718 -113.086 31.089 -113.047 31.177 -113.066 31.265 -113.260 31.282 -113.455 31.353 -113.629 31.528 -113.688 31.617 -113.901 31.493 -114.095 31.564 -114.289 31.897 -114.930 32.159 -114.969 32.177 -114.969 32.265 -115.027 32.317 -115.008 32.404 -114.969 32.474 -114.930 32.492 -114.911 32.492 -114.833 32.509 -114.814 32.701 -114.717 32.718 -114.717 32.735 -114.619 32.735 -114.542 32.893 -114.464 33.014 -114.503 33.101 -114.697 33.136 -114.678 33.326 -114.717 33.500 -114.581 33.604 -114.542 33.725 -114.484 33.898 -114.503 33.968 -114.503 34.140 -114.309 34.312 -114.134 34.536 -114.367 34.709 -114.464 34.726 -114.484 34.743 -114.484 34.811 -114.561 34.983 -114.619 35.000 -114.619 35.342 -114.581 35.428 -114.639 35.616 -114.639 36.008 -114.736 36.076 -114.736 36.161 -114.542 36.127 -114.328 36.042 -114.134 36.212 -114.037 42.000 -114.037 42.000 -117.008 42.500 -117.008 42.500 -118.115 42.677 -118.192 43.126 -118.212 44.145 -118.212 44.350 -118.056 44.429 -117.862 44.429 -117.591 44.303 -117.338 44.303 -117.202 44.366 -117.202 44.540 -117.144 44.682 -117.066 44.839 -116.891 44.997 -116.853 45.044 -116.833 45.185 -116.697 45.357 -116.658 45.514 -116.542 45.623 -116.445 45.779 -116.581 45.856 -116.775 46.013 -116.581 45.982 -116.445 45.825 -116.289 45.670 -116.270 45.561 -116.289 45.405 -116.212 45.452 -115.920 45.452 -115.726 45.388 -115.513 45.576 -115.202 45.514 -115.008 45.405 -114.717 45.498 -114.639 45.561 -114.542 45.732 -114.503 45.888 -114.386 45.919 -114.406 46.075 -114.464 46.307 -114.425 46.632 -114.328 46.648 -114.503 46.648 -114.542 46.725 -114.736 46.879 -114.930 46.925 -114.930 46.971 -115.008 47.140 -115.202 47.263 -115.319 47.340 -115.532 47.463 -115.726 47.493 -115.649 47.646 -115.688 47.920 -115.979 48.088 -116.056 48.995 -116.056 49.221 -115.959 49.251 -115.959 49.430 -115.920 49.625 -116.056 49.998 -116.425 50.399 -116.522 50.752 -116.697 51.268 -117.144 51.487 -117.474 51.501 -117.493 52.098 -118.522 52.258 -118.755 52.431 -118.930 52.748 -119.163 52.776 -118.950 52.762 -118.717 52.848 -118.620 52.877 -118.620 53.050 -118.717 53.178 -118.853 53.135 -119.047 53.364 -119.532 53.450 -119.784 53.592 -119.920 53.705 -119.804 53.806 -119.998 54.174 -120.115 54.328 -120.309 54.638 -121.047 54.694 -121.182 54.889 -121.493 55.113 -121.746 55.489 -122.095 55.503 -122.542 55.516 -122.561 55.586 -122.600 55.876 -122.522 56.125 -122.561 56.152 -122.561 57.121 -122.658 57.189 -122.600 57.284 -122.367 57.352 -121.629 57.352 -121.338 57.338 -120.270 57.392 -119.998 60.002 -119.998 60.002 -123.823 60.041 -124.018 60.080 -123.979 60.339 -124.212 60.469 -124.231 60.572 -124.464 60.700 -124.619 60.841 -124.522 60.956 -124.736 60.854 -124.930 60.854 -125.124 60.789 -125.416 60.867 -125.804 60.803 -125.998 60.867 -126.114 60.776 -126.309 60.816 -126.503 60.751 -126.716 60.776 -126.891 60.905 -126.930 61.033 -127.066 61.097 -127.085 61.225 -127.027 61.352 -127.066 61.491 -127.221 61.529 -127.610 61.733 -127.998 61.808 -128.037 61.884 -128.231 62.009 -128.386 62.122 -128.600 62.060 -128.833 62.223 -129.221 62.261 -129.280 62.511 -129.221 62.586 -129.435 62.772 -129.668 62.908 -129.726 63.082 -129.629 63.107 -129.843 63.230 -129.998 63.341 -129.998 63.378 -129.920 63.501 -129.843 63.624 -129.998 63.697 -130.134 63.697 -130.328 63.819 -130.289 63.929 -130.561 64.135 -130.949 64.208 -130.949 64.342 -131.027 64.426 -131.221 64.450 -131.415 64.366 -131.609 64.426 -131.804 64.546 -131.726 64.583 -131.920 64.643 -131.998 64.727 -132.212 64.811 -132.600 64.931 -132.503 64.967 -132.503 65.086 -132.386 65.193 -132.581 65.193 -132.775 65.360 -132.522 65.443 -132.328 65.561 -132.212 65.657 -132.212 65.892 -132.542 65.962 -132.328 65.997 -132.911 66.021 -133.066 65.951 -133.454 66.056 -133.668 66.056 -133.707 66.174 -133.551 66.302 -133.610 66.314 -133.823 66.442 -133.668 66.604 -133.707 66.733 -133.843 66.848 -133.843 66.883 -133.881 66.998 -133.901 67.010 -134.969 66.998 -136.173 67.056 -136.212 67.217 -136.153 67.377 -136.114 67.617 -136.231 67.674 -136.425 ; #57 -4 68.976 -135.454 68.909 -135.532 68.909 -135.745 68.965 -135.920 69.021 -135.512 69.054 -135.745 69.131 -135.940 69.241 -135.940 69.175 -135.745 69.131 -135.532 69.208 -135.745 69.319 -135.765 69.230 -135.571 69.341 -135.571 69.252 -135.182 69.319 -135.241 69.439 -135.260 69.483 -135.066 69.483 -134.580 69.593 -134.425 69.713 -134.406 69.670 -134.212 69.550 -134.153 69.505 -133.940 69.550 -133.745 69.429 -133.881 69.109 -134.503 69.021 -134.678 68.810 -134.445 68.699 -134.270 68.743 -134.464 68.965 -134.755 68.987 -134.852 68.898 -135.046 68.931 -135.241 ; #58 -4 68.898 -135.046 68.987 -134.852 68.965 -134.755 68.743 -134.464 68.699 -134.270 68.810 -134.445 69.021 -134.678 69.109 -134.503 68.987 -134.619 68.687 -134.231 68.675 -134.289 68.743 -134.503 68.865 -134.658 68.931 -134.852 68.887 -135.046 68.931 -135.241 ; #59 5 53.450 -132.755 53.422 -132.561 53.321 -132.755 53.335 -132.542 53.193 -132.522 53.164 -132.328 53.193 -132.114 53.335 -131.940 53.620 -131.940 53.762 -131.881 53.905 -131.745 54.060 -131.668 54.060 -131.862 54.018 -132.056 53.876 -132.076 53.734 -132.192 53.606 -132.386 53.634 -132.581 53.748 -132.386 53.820 -132.192 53.975 -132.134 54.102 -132.347 54.046 -132.542 54.130 -132.736 54.159 -132.930 54.003 -133.066 53.862 -133.124 53.606 -132.891 ; #60 5 52.863 -131.687 53.007 -131.687 53.021 -131.823 53.050 -131.726 53.207 -131.765 53.207 -131.959 53.150 -132.153 53.150 -132.542 53.035 -132.347 52.992 -132.153 52.935 -132.347 52.791 -132.192 52.791 -131.998 52.647 -131.978 52.503 -131.765 52.431 -131.571 52.272 -131.454 52.127 -131.279 52.170 -131.085 52.214 -131.066 52.272 -131.279 52.431 -131.415 52.532 -131.629 52.834 -131.862 52.978 -131.920 52.992 -131.881 52.949 -131.901 ; #61 5 52.733 -131.668 52.590 -131.590 52.733 -131.474 ; #62 2 54.610 -130.930 54.469 -130.930 54.610 -130.755 ; #63 5 54.074 -130.347 54.046 -130.542 53.905 -130.542 53.989 -130.347 53.848 -130.464 53.919 -130.270 54.060 -130.328 ; #64 5 53.164 -129.940 53.178 -129.745 53.321 -129.823 53.464 -129.998 53.592 -130.328 53.620 -130.522 53.478 -130.386 53.221 -129.998 ; #65 2 54.792 -130.445 54.862 -130.231 55.016 -130.173 ; #66 5 53.620 -130.328 53.649 -130.114 53.790 -130.270 ; #67 5 53.919 -130.192 53.762 -130.212 53.649 -129.998 53.578 -129.998 53.278 -129.648 53.306 -129.454 53.450 -129.454 53.820 -129.998 ; #68 5 53.107 -129.493 53.035 -129.299 53.178 -129.454 ; #69 5 53.321 -129.280 53.178 -129.163 53.321 -129.221 ; #70 5 52.705 -129.241 52.561 -129.124 52.532 -128.911 52.676 -129.027 52.819 -129.241 ; #71 5 52.949 -128.678 52.662 -128.736 52.805 -128.542 52.949 -128.522 53.092 -128.580 53.207 -128.775 53.278 -128.969 52.992 -129.183 52.949 -128.988 53.092 -128.949 52.949 -128.969 52.805 -129.105 52.662 -128.911 ; #72 5 53.691 -128.949 53.563 -129.163 53.422 -129.144 53.705 -128.833 ; #73 5 53.464 -129.047 53.321 -129.105 53.378 -128.911 53.521 -128.988 ; #74 5 52.445 -128.755 52.301 -128.639 52.445 -128.619 ; #75 5 52.489 -128.678 52.503 -128.483 52.647 -128.542 ; #76 5 52.791 -128.406 52.633 -128.445 52.489 -128.270 52.791 -128.367 ; #77 5 49.789 -126.930 49.640 -126.833 49.729 -126.639 49.878 -126.775 49.759 -126.619 49.774 -126.425 49.670 -126.211 49.611 -126.503 49.460 -126.561 49.400 -126.367 49.400 -126.173 49.341 -125.979 49.356 -125.785 49.206 -125.746 49.055 -125.823 48.935 -125.435 48.995 -125.027 49.100 -124.833 48.950 -124.969 48.815 -125.163 48.603 -124.775 48.391 -123.979 48.300 -123.590 48.421 -123.396 48.573 -123.357 48.709 -123.551 48.860 -123.649 48.995 -123.843 49.145 -123.940 49.341 -124.328 49.371 -124.522 49.460 -124.736 49.611 -124.911 49.774 -124.969 49.908 -125.163 49.998 -125.221 50.353 -125.551 50.383 -125.940 50.487 -126.386 50.472 -126.580 50.546 -126.794 50.605 -127.182 50.782 -127.571 50.842 -127.765 50.842 -128.173 50.782 -128.367 50.635 -128.328 50.487 -128.153 50.472 -127.959 50.605 -127.765 50.517 -127.551 50.368 -127.454 50.487 -127.649 50.472 -127.862 50.324 -127.940 50.250 -127.746 50.102 -127.823 50.176 -127.435 50.028 -127.396 49.998 -127.202 49.848 -127.008 49.908 -126.814 49.878 -126.775 ; #78 5 52.054 -127.978 52.011 -128.173 51.866 -128.250 51.750 -128.056 52.040 -127.959 ; #79 5 52.184 -128.231 52.040 -128.192 52.184 -128.153 ; #80 5 51.662 -128.134 51.501 -128.095 51.413 -127.901 51.559 -127.901 51.706 -127.998 ; #81 5 52.243 -127.396 52.402 -127.241 52.373 -127.435 52.170 -127.823 52.025 -127.881 52.054 -127.687 52.155 -127.590 ; #82 5 50.812 -126.328 50.664 -126.445 50.664 -126.250 50.812 -126.250 ; #83 5 50.279 -125.182 50.131 -125.144 50.279 -125.105 50.428 -125.280 ; #84 5 50.057 -124.891 50.205 -125.008 50.057 -125.008 ; #85 5 50.294 -124.930 50.146 -124.775 50.294 -124.891 ; #86 5 49.640 -124.289 49.729 -124.483 49.581 -124.328 49.490 -124.115 ; #87 5 48.875 -123.571 48.770 -123.377 48.935 -123.571 ; #88 5 48.512 -123.163 48.452 -122.969 48.603 -123.105 ; #89 5 33.985 -119.998 33.968 -120.192 33.951 -119.998 ; #90 5 33.985 -119.862 34.037 -119.668 34.089 -119.862 ; #91 5 32.997 -118.581 32.823 -118.406 32.997 -118.522 ; #92 -2 56.502 -133.681 56.789 -133.681 56.925 -133.875 57.061 -133.953 57.061 -133.759 56.993 -133.370 56.993 -133.157 56.884 -132.962 56.735 -132.962 56.598 -133.040 56.721 -133.234 56.585 -133.137 56.447 -133.195 56.488 -133.390 56.420 -133.584 ; #93 -2 56.174 -133.399 56.216 -133.593 56.352 -133.554 56.339 -133.166 56.188 -133.030 56.051 -132.952 56.009 -132.758 55.885 -132.545 55.594 -132.312 55.456 -132.137 55.622 -132.525 55.484 -132.525 55.387 -132.331 55.373 -132.137 55.233 -132.176 55.276 -131.982 55.136 -132.001 54.997 -132.156 55.011 -131.962 54.870 -131.962 54.731 -132.079 54.759 -132.273 54.899 -132.331 55.052 -132.486 55.122 -132.506 55.178 -132.719 55.387 -133.108 55.373 -132.914 55.498 -133.108 55.651 -132.933 55.608 -133.127 55.622 -133.321 55.761 -133.224 56.036 -133.224 56.106 -133.321 56.133 -133.263 56.161 -133.283 56.133 -133.360 ; #94 -2 56.097 -133.338 55.904 -133.687 56.056 -133.687 56.083 -133.493 56.125 -133.376 ; #95 -2 56.782 -132.794 56.645 -132.619 56.509 -132.716 56.509 -132.930 56.645 -132.891 56.782 -132.949 ; #96 -5 53.021 -131.881 53.021 -131.823 52.992 -131.881 ; #97 2 55.918 -129.998 55.766 -130.114 55.336 -129.998 55.322 -129.998 55.461 -130.056 55.599 -130.134 55.738 -130.153 55.904 -130.017 ; #98 -5 53.436 -128.076 53.292 -127.959 53.436 -128.095 ; #99 4 72.881 -125.066 72.769 -125.008 72.563 -125.047 72.492 -125.241 72.492 -125.299 72.172 -125.590 71.953 -125.920 71.974 -125.299 71.807 -124.697 71.703 -124.095 71.503 -123.687 71.398 -123.551 71.282 -123.474 71.177 -123.338 71.091 -123.144 71.081 -122.949 71.102 -122.736 71.187 -122.542 71.261 -122.134 71.451 -121.726 71.398 -121.532 71.387 -121.338 71.430 -120.930 71.514 -120.542 71.619 -120.425 71.839 -120.406 71.953 -120.445 72.047 -120.251 72.161 -120.153 72.264 -120.212 72.223 -119.998 72.223 -119.843 72.316 -119.435 72.533 -119.202 72.636 -119.144 72.677 -118.930 72.738 -118.736 72.759 -118.542 72.830 -118.348 72.901 -117.940 73.014 -117.551 73.125 -116.930 73.227 -116.542 73.358 -115.746 73.479 -115.319 73.579 -115.435 73.670 -115.629 73.700 -115.824 74.069 -116.833 74.187 -117.222 74.227 -117.415 74.276 -118.134 74.237 -118.561 74.208 -118.755 74.098 -118.794 73.998 -118.969 74.008 -119.183 74.118 -119.066 74.217 -119.202 74.208 -119.415 74.128 -119.610 74.029 -119.746 74.039 -119.804 74.148 -119.726 74.227 -119.532 74.267 -120.095 74.365 -120.697 74.415 -120.891 74.493 -121.086 74.532 -121.299 74.542 -121.707 74.473 -122.309 74.415 -123.746 74.355 -124.561 74.316 -124.755 74.267 -124.561 74.069 -124.464 73.969 -124.289 73.860 -124.192 73.840 -123.998 73.789 -123.804 73.690 -123.940 73.579 -124.037 73.479 -124.192 73.439 -124.386 73.237 -124.581 73.135 -124.794 73.034 -124.794 72.993 -124.600 72.891 -124.658 72.881 -124.852 ; #100 4 76.131 -122.969 76.168 -122.581 76.074 -122.522 75.979 -122.697 75.923 -122.484 75.960 -122.270 76.026 -122.076 76.046 -121.862 75.932 -121.280 75.989 -121.066 76.093 -121.008 76.187 -120.911 76.159 -120.697 76.055 -120.736 75.998 -120.542 75.808 -120.406 75.856 -120.212 75.837 -119.998 75.875 -119.784 75.970 -119.668 76.074 -119.610 76.112 -119.804 76.112 -119.590 76.206 -119.590 76.301 -119.649 76.253 -119.454 76.159 -119.319 76.084 -119.105 76.168 -118.911 76.263 -118.911 76.282 -118.697 76.375 -118.600 76.450 -118.794 76.554 -118.853 76.506 -118.658 76.544 -118.445 76.647 -118.348 76.739 -118.309 76.758 -118.115 76.804 -117.901 76.712 -117.843 76.610 -117.940 76.516 -117.940 76.422 -118.037 76.329 -117.843 76.282 -117.649 76.263 -117.415 76.282 -117.222 76.329 -117.008 76.422 -117.008 76.516 -117.066 76.535 -116.853 76.572 -116.658 76.600 -116.231 76.647 -116.037 76.739 -115.940 76.833 -116.134 76.889 -116.328 76.907 -116.115 76.898 -115.901 76.990 -115.901 77.018 -116.115 77.110 -116.289 77.192 -116.095 77.211 -115.882 77.302 -115.474 77.395 -115.668 77.458 -116.076 77.522 -116.309 77.549 -116.522 77.522 -116.930 77.458 -117.144 77.395 -116.930 77.395 -116.717 77.320 -116.911 77.358 -117.124 77.302 -117.319 77.358 -117.940 77.367 -118.367 77.349 -118.755 77.320 -118.969 77.320 -119.183 77.220 -119.357 77.110 -119.746 77.018 -119.940 77.018 -119.998 76.916 -120.173 76.879 -120.386 76.786 -120.445 76.675 -121.066 76.610 -121.260 76.516 -121.415 76.432 -121.610 76.432 -122.037 76.413 -122.251 76.375 -122.445 76.225 -122.853 ; #101 4 75.894 -122.639 75.913 -122.425 75.923 -122.639 ; #102 -4 75.923 -120.988 75.828 -121.008 75.723 -121.105 75.808 -120.911 75.913 -120.872 ; #103 4 76.103 -117.823 75.970 -118.212 75.960 -118.425 75.913 -118.620 75.685 -119.241 75.579 -119.377 75.512 -118.736 75.522 -118.542 75.570 -118.328 75.666 -118.134 75.732 -117.940 75.828 -117.862 76.017 -117.532 76.112 -117.629 ; #104 4 76.196 -116.134 76.159 -116.522 76.055 -116.697 76.026 -116.503 75.960 -116.697 75.875 -116.484 75.875 -115.241 75.904 -114.833 75.856 -115.047 75.837 -115.668 75.808 -116.056 75.789 -116.891 75.704 -117.086 75.598 -117.241 75.560 -116.853 75.560 -116.445 75.570 -116.231 75.647 -115.610 75.694 -115.008 75.598 -115.416 75.579 -115.629 75.484 -116.017 75.474 -117.241 75.406 -117.435 75.311 -117.571 75.204 -117.532 75.156 -117.144 75.156 -116.950 75.118 -116.736 75.185 -116.522 75.204 -116.328 75.098 -116.328 75.118 -116.115 75.020 -116.017 74.982 -115.804 74.982 -115.610 75.089 -115.591 75.127 -115.183 75.030 -115.222 74.962 -115.027 74.991 -114.814 75.089 -114.406 75.185 -114.309 75.263 -114.503 75.243 -114.309 75.282 -114.115 75.378 -114.056 75.378 -113.843 75.416 -113.435 75.291 -113.843 75.194 -113.921 75.194 -113.707 75.146 -113.921 75.049 -113.707 75.068 -113.299 75.118 -113.105 75.098 -112.891 75.137 -112.697 75.233 -112.717 75.185 -112.522 75.204 -112.328 75.137 -112.115 75.137 -111.921 75.175 -111.726 75.166 -111.532 75.204 -111.319 75.263 -111.124 75.243 -110.911 75.146 -111.124 75.068 -111.513 74.982 -111.726 75.001 -112.115 74.972 -112.911 74.835 -113.513 74.826 -113.707 74.729 -114.328 74.621 -114.367 74.503 -113.959 74.425 -113.552 74.395 -112.930 74.425 -112.328 74.493 -111.726 74.640 -110.891 74.689 -110.697 74.797 -110.639 74.787 -110.445 74.835 -110.231 74.835 -110.037 74.864 -109.804 74.855 -109.590 75.059 -108.775 75.020 -108.581 74.982 -108.775 74.962 -108.561 74.914 -108.348 74.924 -108.134 75.011 -107.921 75.098 -107.765 75.001 -107.688 74.933 -107.493 74.924 -107.066 75.001 -106.678 75.001 -106.484 75.039 -106.076 75.146 -105.882 75.243 -105.901 75.339 -105.688 75.436 -105.630 75.541 -105.610 75.628 -105.416 75.723 -105.455 75.828 -105.435 75.923 -105.591 75.989 -105.785 76.055 -106.367 76.055 -106.561 75.998 -106.756 75.894 -106.872 75.808 -106.659 75.770 -106.853 75.675 -106.892 75.770 -107.028 75.866 -107.086 75.904 -107.280 75.904 -107.493 75.885 -107.688 75.789 -107.901 75.894 -107.921 75.951 -107.707 76.046 -107.765 76.065 -107.979 76.046 -108.173 76.046 -108.387 76.140 -108.406 76.206 -108.212 76.301 -108.154 76.394 -108.328 76.413 -108.542 76.460 -108.484 76.554 -108.523 76.637 -108.717 76.665 -108.523 76.758 -108.561 76.852 -108.756 76.814 -108.950 76.823 -109.163 76.591 -109.765 76.497 -109.785 76.478 -109.998 76.432 -110.212 76.338 -110.328 76.225 -109.998 76.234 -109.785 76.131 -109.396 76.037 -109.299 75.941 -109.688 75.932 -109.901 75.904 -109.998 75.875 -109.998 75.856 -109.785 75.799 -109.590 75.751 -109.163 75.713 -108.969 75.608 -108.833 75.512 -109.221 75.541 -109.998 75.531 -110.406 75.560 -110.620 75.560 -110.814 75.512 -111.221 75.617 -111.416 75.713 -111.357 75.799 -111.552 75.837 -111.765 75.808 -111.979 75.808 -112.192 75.885 -111.998 75.894 -111.785 75.979 -111.979 76.017 -112.173 76.037 -112.386 76.131 -112.503 76.263 -112.930 76.263 -113.319 76.187 -113.940 76.291 -114.076 76.385 -114.095 76.478 -114.289 76.497 -114.503 76.487 -114.697 76.516 -114.911 76.450 -115.338 76.441 -115.552 76.385 -115.746 76.282 -115.920 76.234 -115.707 76.234 -115.280 76.168 -114.872 76.168 -114.678 76.150 -114.872 76.187 -115.474 76.187 -115.901 ; #105 4 70.483 -116.794 70.483 -116.581 70.504 -116.794 ; #106 4 70.537 -116.736 70.558 -116.522 70.558 -116.717 ; #107 4 78.029 -114.678 77.938 -115.066 77.867 -114.872 77.740 -114.425 77.704 -114.212 77.749 -113.804 77.831 -113.590 77.902 -113.785 77.957 -113.998 77.984 -114.212 78.074 -114.328 ; #108 4 76.730 -113.571 76.823 -113.493 76.870 -113.688 76.889 -113.882 76.889 -114.095 76.870 -114.484 76.842 -114.697 76.739 -114.678 76.702 -114.056 ; #109 4 67.878 -113.998 67.878 -114.212 67.867 -114.017 ; #110 4 67.934 -113.280 67.901 -113.493 67.901 -113.299 ; #111 4 78.759 -110.406 78.732 -110.814 78.644 -111.435 78.573 -111.649 78.546 -111.862 78.556 -112.076 78.537 -112.289 78.458 -112.911 78.422 -113.105 78.342 -113.319 78.271 -113.105 78.324 -112.717 78.360 -112.309 78.360 -112.076 78.271 -111.688 78.271 -111.493 78.369 -111.066 78.289 -110.658 78.280 -110.445 78.324 -110.018 78.297 -109.804 78.315 -109.396 78.493 -109.280 78.670 -109.882 78.688 -109.998 ; #112 4 78.110 -110.406 78.101 -110.600 78.065 -110.814 78.083 -111.202 78.037 -111.629 78.046 -111.824 77.993 -112.464 77.911 -113.105 77.840 -113.299 77.749 -113.241 77.567 -113.202 77.449 -112.814 77.458 -112.600 77.358 -112.445 77.320 -112.037 77.422 -111.202 77.404 -111.008 77.440 -110.794 77.477 -110.367 77.522 -110.173 77.613 -110.115 77.713 -110.095 77.785 -110.309 77.767 -110.717 77.858 -110.872 77.894 -110.212 77.948 -109.785 78.037 -109.590 78.101 -109.785 78.101 -109.998 ; #113 4 70.300 -113.008 70.289 -113.202 70.278 -113.008 ; #114 4 70.332 -112.231 70.289 -112.037 70.311 -111.824 70.364 -112.251 ; #115 4 67.957 -110.814 67.855 -111.008 67.934 -110.814 ; #116 4 68.508 -110.736 68.464 -110.930 68.486 -110.736 ; #117 4 68.104 -109.998 68.036 -110.192 68.081 -109.998 ; #118 4 68.250 -109.571 68.137 -109.765 68.227 -109.571 ; #119 4 67.560 -108.231 67.446 -108.134 67.560 -108.192 ; #120 4 67.640 -108.134 67.526 -108.076 67.640 -107.979 ; #121 4 67.480 -107.921 67.400 -108.115 67.343 -107.921 67.457 -107.882 ; #122 4 73.619 -107.629 73.619 -107.843 73.569 -108.057 73.549 -107.843 73.569 -107.649 ; #123 4 66.987 -107.843 66.872 -107.882 66.987 -107.785 ; #124 4 67.113 -107.571 67.113 -107.377 67.194 -107.590 ; #125 4 72.860 -105.202 72.973 -105.163 73.074 -104.989 73.165 -104.775 73.378 -104.581 73.489 -104.523 73.589 -104.542 73.630 -104.756 73.740 -105.086 73.759 -105.280 73.759 -105.494 73.730 -105.688 73.730 -106.309 73.710 -106.523 73.660 -106.717 73.559 -106.892 73.469 -106.989 73.459 -106.775 73.307 -106.173 73.197 -106.057 73.014 -105.668 72.943 -105.474 72.891 -105.416 ; #126 4 77.758 -105.921 77.668 -105.940 77.385 -105.668 77.201 -105.241 77.174 -105.047 77.110 -104.833 77.137 -104.581 77.192 -104.387 77.293 -104.464 77.376 -104.678 77.413 -104.872 77.504 -104.950 77.594 -105.125 77.749 -105.649 ; #127 4 68.575 -105.008 68.464 -104.911 68.408 -104.717 68.396 -104.523 68.508 -104.484 68.575 -104.678 ; #128 4 75.436 -104.270 75.406 -104.464 75.339 -104.678 75.243 -104.756 75.137 -104.930 75.068 -104.736 75.039 -104.523 75.030 -104.309 75.068 -103.823 75.146 -103.630 75.243 -103.746 75.349 -103.804 75.436 -104.154 ; #129 4 76.647 -104.406 76.600 -104.639 76.506 -104.581 76.422 -104.387 76.319 -104.387 76.319 -103.959 76.301 -103.746 76.329 -103.358 76.366 -103.163 76.460 -103.125 76.516 -103.552 76.600 -103.746 76.647 -103.940 76.665 -104.134 ; #130 4 68.194 -104.425 68.081 -104.484 68.194 -104.367 ; #131 4 76.310 -102.814 76.310 -103.028 76.215 -104.251 76.168 -104.387 76.074 -104.387 76.037 -103.804 76.037 -103.358 76.065 -102.950 76.093 -102.756 76.187 -102.581 76.291 -102.659 ; #132 4 77.165 -104.212 77.073 -104.270 77.165 -104.076 ; #133 4 76.074 -102.756 76.007 -103.358 75.979 -103.571 75.894 -103.785 75.904 -103.377 75.960 -102.775 75.989 -102.561 76.074 -102.348 ; #134 4 75.875 -103.746 75.837 -103.532 75.875 -103.338 ; #135 4 78.271 -103.008 78.208 -103.202 78.118 -103.105 78.181 -102.892 78.271 -102.892 ; #136 -5 51.076 -126.891 51.106 -126.697 51.062 -126.891 51.047 -127.105 51.062 -127.299 ; #137 5 28.084 -115.357 28.192 -115.163 28.371 -115.202 ; #138 4 28.996 -112.192 29.193 -112.251 29.193 -112.445 29.014 -112.503 28.836 -112.484 28.746 -112.289 ; #139 -4 24.643 -112.134 24.825 -112.212 25.209 -112.154 25.026 -112.192 24.825 -112.289 ; #140 4 25.044 -110.736 24.935 -110.542 25.117 -110.717 ; #141 -4 71.345 -116.328 71.345 -116.115 71.387 -115.920 71.430 -116.115 71.462 -115.920 71.483 -115.726 71.472 -115.319 71.524 -115.105 71.493 -115.299 71.556 -115.707 71.503 -116.095 71.462 -116.717 71.420 -116.911 71.398 -117.299 71.408 -117.493 71.377 -117.687 71.377 -118.095 71.472 -118.289 71.535 -118.095 71.535 -117.901 71.577 -117.687 71.660 -117.882 71.660 -118.095 71.587 -118.289 71.650 -118.484 71.660 -118.697 71.577 -118.891 71.681 -119.105 71.787 -119.124 71.891 -119.086 72.006 -118.911 72.109 -118.717 72.182 -118.522 72.233 -118.115 72.337 -118.173 72.337 -118.386 72.430 -118.581 72.543 -118.406 72.799 -117.591 72.901 -117.396 72.953 -116.988 73.054 -116.581 73.074 -116.386 73.125 -116.192 73.135 -115.979 73.186 -115.784 73.197 -115.591 73.368 -114.658 73.358 -114.445 73.328 -114.251 73.227 -114.056 73.125 -113.959 72.911 -114.037 72.809 -113.979 72.799 -114.115 72.759 -114.309 72.656 -114.406 72.604 -114.600 72.563 -114.561 72.553 -114.425 72.646 -114.017 72.636 -113.610 72.728 -113.416 72.759 -113.610 72.963 -113.260 73.004 -113.066 73.004 -112.872 72.943 -112.464 72.891 -112.251 72.850 -111.843 72.707 -111.221 72.584 -111.260 72.482 -111.455 72.410 -111.649 72.326 -111.843 72.326 -111.649 72.223 -111.785 72.295 -111.590 72.399 -111.493 72.368 -111.299 72.379 -111.086 72.482 -110.988 72.543 -110.775 72.482 -110.561 72.451 -110.367 72.553 -110.387 72.451 -109.998 72.440 -109.804 72.563 -110.192 72.522 -109.998 72.512 -109.804 72.718 -110.192 72.697 -109.998 72.728 -109.804 72.748 -110.134 72.830 -110.328 72.840 -110.523 72.911 -110.639 73.014 -110.620 73.014 -110.406 72.931 -109.688 72.830 -109.590 72.748 -109.396 72.759 -109.183 72.718 -109.163 72.677 -108.950 72.563 -109.008 72.584 -108.814 72.522 -108.600 72.420 -108.639 72.306 -108.620 72.099 -108.406 71.984 -108.406 71.911 -108.212 71.807 -108.270 71.703 -108.212 71.681 -107.998 71.619 -107.804 71.693 -107.843 71.724 -107.649 71.787 -107.455 71.807 -107.260 71.911 -107.338 71.996 -107.532 72.099 -107.610 72.203 -107.785 72.306 -107.726 72.410 -107.882 72.512 -107.901 72.614 -108.018 72.728 -108.037 72.748 -108.076 72.963 -108.173 73.044 -108.154 73.155 -108.290 73.207 -108.095 73.197 -107.882 73.247 -108.076 73.348 -108.018 73.317 -107.610 73.277 -107.416 73.197 -107.202 73.197 -107.008 73.297 -107.008 73.307 -106.833 73.217 -106.639 73.165 -106.426 73.085 -106.231 73.014 -105.823 72.830 -105.435 72.728 -105.435 72.512 -105.222 72.399 -105.241 72.192 -104.969 72.089 -105.008 71.974 -104.853 71.870 -104.814 71.776 -104.620 71.660 -104.464 71.556 -104.367 71.345 -104.290 71.303 -104.484 71.198 -104.464 71.091 -104.620 70.996 -104.406 70.964 -104.231 70.740 -103.901 70.686 -103.707 70.590 -103.513 70.590 -103.299 70.504 -103.105 70.515 -102.911 70.569 -103.105 70.675 -103.125 70.611 -102.911 70.494 -102.794 70.418 -102.387 70.321 -102.192 70.289 -101.999 69.790 -101.999 69.844 -102.076 69.844 -102.270 69.790 -102.464 69.767 -102.678 69.648 -102.503 69.539 -102.620 69.527 -102.833 69.648 -103.222 69.593 -103.416 69.505 -103.028 69.286 -103.028 69.175 -103.105 69.286 -102.950 69.374 -102.756 69.407 -102.561 69.472 -102.367 69.483 -102.154 69.450 -101.999 69.407 -101.999 69.330 -102.096 69.208 -102.173 69.252 -101.999 68.965 -101.999 68.954 -102.387 68.865 -102.581 68.799 -102.969 68.843 -103.183 68.776 -103.377 68.821 -103.571 68.876 -104.173 68.920 -104.387 68.854 -104.581 68.887 -104.989 68.976 -105.183 69.087 -104.989 69.076 -105.183 69.098 -105.397 69.153 -105.591 69.175 -105.804 69.142 -106.212 69.219 -106.406 69.330 -106.309 69.439 -106.426 69.483 -106.639 69.374 -106.756 69.308 -106.969 69.197 -106.969 69.120 -107.183 69.010 -107.377 68.931 -107.979 68.943 -108.387 68.732 -108.989 68.699 -109.183 68.699 -109.377 68.642 -109.590 68.620 -109.998 68.631 -110.212 68.586 -110.406 68.609 -110.600 68.575 -110.794 68.597 -111.008 68.564 -111.396 68.531 -111.202 68.542 -111.590 68.497 -112.620 68.464 -112.814 68.475 -113.008 68.564 -113.222 68.620 -113.416 68.732 -113.552 68.854 -113.610 68.965 -113.571 69.076 -113.649 69.186 -113.571 69.252 -113.979 69.252 -114.173 69.286 -114.367 69.252 -114.775 69.274 -114.969 69.241 -115.183 69.297 -115.979 69.429 -116.581 69.648 -116.853 69.691 -117.066 69.779 -117.260 69.996 -117.435 70.040 -117.357 70.094 -117.163 70.127 -116.950 70.268 -115.338 70.278 -114.930 70.321 -114.328 70.268 -113.726 70.278 -113.319 70.213 -112.697 70.234 -112.503 70.300 -112.289 70.278 -112.095 70.268 -111.688 70.343 -111.493 70.364 -111.901 70.396 -112.037 70.504 -112.192 70.526 -112.600 70.569 -112.794 70.579 -113.008 70.643 -113.396 70.643 -113.590 70.698 -113.804 70.708 -113.998 70.665 -114.212 70.675 -114.406 70.622 -114.619 70.590 -115.843 70.569 -116.037 70.633 -116.251 70.601 -116.833 70.622 -117.649 70.730 -117.804 70.836 -118.192 70.953 -118.367 71.059 -118.231 71.154 -117.843 71.261 -116.814 71.292 -116.736 71.324 -116.522 ; #142 5 29.121 -113.183 29.300 -113.183 29.513 -113.571 29.335 -113.532 29.014 -113.144 ; #143 -4 27.994 -112.755 27.815 -112.717 27.509 -112.309 27.329 -112.251 27.148 -112.095 27.076 -111.940 26.715 -111.901 26.896 -111.882 26.769 -111.688 26.588 -111.552 26.408 -111.455 26.045 -111.338 25.863 -111.338 25.663 -111.202 25.481 -111.008 25.117 -110.891 24.917 -110.736 24.734 -110.736 24.533 -110.755 24.350 -110.697 24.204 -110.503 24.185 -110.426 24.259 -110.328 24.240 -110.134 24.039 -109.804 23.671 -109.688 23.579 -109.493 23.396 -109.416 23.212 -109.455 22.917 -109.862 22.917 -109.998 23.083 -110.095 23.451 -110.231 23.634 -110.426 23.726 -110.620 24.075 -111.008 24.588 -111.824 24.771 -111.959 24.898 -112.154 25.190 -112.115 25.282 -112.076 25.645 -112.057 25.827 -112.115 26.009 -112.212 26.208 -112.386 26.317 -112.658 26.606 -113.066 26.787 -113.202 26.986 -113.163 26.751 -113.299 26.787 -113.493 26.769 -113.688 26.950 -113.843 27.040 -114.056 27.094 -114.076 27.148 -114.289 27.293 -114.484 27.472 -114.600 27.617 -114.794 27.707 -114.988 27.797 -114.794 27.779 -114.581 27.833 -114.367 27.689 -114.173 27.653 -113.979 27.472 -113.901 27.653 -113.882 27.850 -113.921 27.689 -114.115 27.868 -114.134 27.994 -114.192 ; #144 3 0.097 -91.455 0.000 -91.610 -0.097 -91.397 -0.291 -91.358 -0.485 -91.202 -0.680 -91.164 -0.738 -91.358 -0.932 -91.494 -1.009 -91.300 -1.009 -91.105 -0.951 -90.911 -0.757 -90.795 -0.582 -90.989 -0.388 -91.008 -0.194 -91.183 0.000 -91.261 ; #145 3 -0.582 -90.173 -0.505 -90.367 -0.699 -90.523 -0.777 -90.329 ; #146 3 -0.835 -89.338 -0.815 -89.533 -0.951 -89.533 ; #147 -3 60.002 -109.998 60.002 -102.037 60.094 -101.999 67.776 -101.999 67.708 -101.804 67.685 -101.591 67.753 -101.183 67.742 -100.989 67.821 -100.794 67.799 -100.581 67.844 -100.387 67.844 -100.193 67.810 -99.998 67.821 -99.940 67.799 -99.532 67.696 -98.911 67.765 -98.717 67.867 -98.523 67.957 -98.717 68.070 -98.620 67.991 -98.426 67.765 -98.018 67.617 -97.629 67.628 -97.222 67.696 -97.086 67.923 -97.241 67.912 -97.435 68.002 -97.629 67.934 -98.037 67.934 -98.232 68.047 -98.445 68.160 -98.523 68.171 -98.329 68.261 -98.523 68.374 -98.698 68.408 -98.484 68.329 -98.290 68.385 -97.901 68.542 -97.940 68.497 -97.552 68.486 -97.338 68.374 -97.144 68.261 -97.066 68.250 -96.872 68.194 -96.659 68.283 -96.465 68.047 -96.659 68.047 -96.445 68.160 -96.387 68.216 -96.173 68.216 -95.979 67.787 -96.212 67.548 -96.465 67.434 -96.309 67.377 -96.115 67.251 -96.154 67.285 -95.960 67.366 -95.746 67.320 -95.552 67.205 -95.688 67.205 -95.494 67.090 -95.397 66.964 -95.416 66.987 -95.610 66.952 -95.804 67.044 -95.998 66.975 -96.193 66.998 -96.406 66.697 -95.804 66.581 -95.824 66.710 -95.765 66.941 -96.057 66.906 -95.649 66.941 -95.261 67.125 -95.338 67.297 -95.183 67.411 -95.358 67.526 -95.319 67.640 -95.494 67.708 -95.688 67.833 -95.532 67.946 -95.513 68.059 -95.377 68.070 -95.164 68.047 -94.775 68.160 -94.581 68.272 -94.193 68.396 -94.154 68.475 -93.960 68.553 -93.532 68.609 -93.552 68.609 -93.746 68.843 -93.571 68.954 -93.630 69.065 -93.804 68.954 -93.960 68.832 -94.018 68.876 -93.824 68.743 -94.212 68.721 -94.523 68.843 -94.581 68.954 -94.406 69.032 -94.212 69.142 -94.096 69.219 -94.290 69.330 -94.212 69.363 -93.998 69.352 -93.804 69.396 -93.610 69.308 -93.804 69.197 -93.765 69.374 -93.377 69.407 -93.532 69.516 -93.513 69.516 -93.727 69.429 -93.921 69.450 -94.329 69.561 -94.503 69.670 -94.698 69.582 -94.911 69.713 -95.513 69.790 -95.707 69.779 -95.901 69.844 -96.096 69.953 -96.134 70.019 -96.367 70.127 -96.523 70.234 -96.562 70.353 -96.523 70.439 -96.329 70.547 -96.251 70.590 -96.057 70.558 -95.863 70.601 -96.057 70.708 -95.901 70.654 -96.096 70.654 -96.290 70.751 -96.484 70.857 -96.600 70.975 -96.503 71.292 -96.387 71.398 -96.173 71.408 -95.979 71.313 -95.727 71.292 -95.532 71.398 -95.513 71.503 -95.416 71.493 -95.629 71.514 -95.824 71.619 -95.804 71.714 -95.416 71.818 -95.241 71.839 -94.834 71.870 -94.639 71.849 -94.834 71.849 -95.222 71.953 -95.105 71.996 -94.698 71.953 -94.484 71.849 -94.562 71.745 -94.581 71.807 -94.387 71.703 -94.329 71.755 -94.134 71.745 -93.940 71.693 -93.727 71.577 -93.649 71.483 -93.261 71.377 -93.144 71.271 -92.931 71.166 -92.872 70.953 -92.892 70.846 -93.008 70.793 -92.775 70.686 -92.581 70.601 -92.173 70.483 -92.231 70.418 -92.037 70.300 -92.037 70.364 -91.843 70.137 -91.533 70.116 -91.940 70.170 -92.134 70.180 -92.329 70.073 -92.406 70.083 -92.193 69.996 -91.998 69.985 -92.076 69.877 -92.270 69.691 -92.853 69.691 -92.659 69.659 -92.872 69.648 -92.678 69.691 -92.465 69.550 -92.076 69.505 -91.882 69.561 -91.688 69.615 -91.591 69.659 -91.377 69.615 -91.183 69.527 -91.377 69.561 -91.183 69.483 -90.775 69.516 -90.581 69.429 -90.387 69.418 -90.581 69.363 -90.775 69.252 -90.872 69.263 -91.067 69.319 -91.067 69.286 -91.261 69.065 -90.659 68.832 -90.523 68.620 -90.562 68.396 -90.426 68.283 -90.290 68.329 -90.096 68.374 -89.999 68.430 -89.999 68.542 -89.804 68.620 -89.921 68.710 -89.727 68.821 -89.688 68.931 -89.746 69.043 -89.649 69.252 -89.280 69.263 -89.067 69.065 -88.678 68.943 -88.271 68.843 -88.076 68.721 -87.940 68.609 -87.940 68.385 -87.785 68.261 -87.843 68.239 -87.882 68.239 -88.076 68.318 -88.290 68.205 -88.329 68.092 -88.290 67.980 -88.368 67.867 -88.309 67.640 -88.057 67.560 -87.863 67.434 -87.669 67.343 -87.455 67.228 -87.397 67.113 -87.494 67.090 -87.280 67.240 -87.183 67.262 -86.989 67.377 -86.911 67.388 -86.717 67.354 -86.523 67.468 -86.465 67.594 -86.445 67.708 -86.484 67.821 -86.368 67.980 -86.096 68.036 -85.902 68.160 -85.882 68.385 -85.727 68.497 -85.707 68.620 -85.746 68.732 -85.571 68.754 -84.989 66.952 -84.989 66.952 -85.067 66.837 -85.106 66.883 -84.989 66.279 -84.989 66.349 -85.300 66.465 -85.338 66.581 -85.494 66.535 -85.688 66.500 -86.096 66.535 -86.309 66.535 -86.504 66.465 -86.698 66.337 -86.659 66.221 -86.057 66.104 -86.018 65.986 -86.135 65.845 -86.465 65.727 -86.484 65.479 -87.067 65.360 -87.241 65.325 -87.436 65.325 -87.824 65.348 -88.038 65.408 -88.232 65.526 -88.426 65.644 -88.814 65.632 -88.407 65.704 -89.008 65.915 -89.610 65.939 -89.999 65.821 -89.804 65.868 -89.999 65.868 -90.193 65.904 -90.387 65.892 -90.600 65.939 -91.008 65.915 -91.397 65.857 -91.202 65.915 -91.008 65.880 -90.600 65.798 -89.999 65.739 -89.804 65.644 -89.610 65.526 -89.416 65.443 -89.222 65.325 -89.047 65.313 -88.659 65.253 -88.057 65.289 -87.649 65.278 -87.455 65.253 -87.241 65.193 -87.047 65.074 -86.989 64.955 -87.086 64.739 -87.474 64.619 -87.513 64.426 -87.863 64.184 -88.018 64.002 -88.620 63.978 -88.814 64.014 -89.008 64.087 -89.222 63.965 -89.164 64.038 -89.358 64.062 -89.552 63.941 -89.474 64.002 -89.571 64.075 -89.766 64.196 -89.804 64.159 -89.999 64.123 -90.115 64.111 -89.921 63.978 -89.999 63.965 -90.173 63.843 -89.999 63.770 -89.999 63.636 -90.251 63.648 -90.445 63.562 -90.853 63.636 -91.241 63.709 -91.436 63.733 -91.766 63.819 -91.960 63.745 -92.154 63.770 -92.367 63.819 -92.523 63.893 -92.756 64.002 -93.358 64.075 -93.571 64.196 -93.765 63.990 -93.552 63.990 -93.765 63.953 -93.765 63.843 -93.494 63.843 -93.300 63.965 -93.416 63.843 -92.931 63.819 -92.736 63.819 -92.523 63.733 -92.329 63.685 -92.115 63.648 -92.329 63.550 -92.523 63.575 -92.329 63.685 -91.921 63.697 -91.727 63.575 -91.533 63.489 -91.338 63.477 -91.144 63.292 -90.736 63.218 -90.678 63.082 -90.659 62.959 -90.756 62.946 -90.969 62.908 -91.164 62.785 -91.358 62.846 -91.960 62.809 -92.154 62.846 -92.367 62.722 -92.348 62.660 -92.154 62.648 -91.940 62.523 -92.057 62.598 -92.193 62.523 -92.387 62.586 -92.581 62.461 -92.600 62.349 -92.795 62.286 -92.581 62.160 -92.600 62.286 -92.775 62.349 -93.183 62.223 -92.775 62.097 -92.931 62.047 -93.125 62.034 -93.416 61.896 -93.358 61.846 -93.552 61.821 -93.358 61.733 -93.261 61.618 -93.668 61.529 -93.863 61.390 -93.960 61.301 -93.901 61.314 -94.115 61.250 -94.018 61.122 -94.057 60.982 -94.173 60.854 -94.348 60.533 -94.542 60.533 -94.736 60.494 -94.795 60.403 -94.620 60.262 -94.698 60.132 -94.717 60.002 -94.795 59.755 -94.775 59.624 -94.814 59.349 -94.659 59.218 -94.775 59.087 -94.795 59.047 -94.989 58.980 -94.698 58.717 -94.426 58.756 -94.212 58.225 -94.367 58.358 -94.251 58.624 -94.212 58.756 -94.134 58.770 -93.591 58.704 -93.377 58.756 -93.183 58.491 -93.105 58.212 -92.931 58.077 -92.814 57.796 -92.717 57.392 -92.445 57.257 -92.426 57.121 -92.523 56.972 -92.678 56.904 -92.872 56.944 -92.678 57.039 -92.465 57.026 -92.270 56.931 -92.465 56.944 -92.367 57.026 -92.173 57.257 -90.989 57.217 -90.581 57.012 -89.999 56.917 -89.397 56.822 -88.989 56.207 -89.999 48.026 -89.999 48.011 -89.649 47.996 -89.571 47.829 -89.999 47.692 -90.600 47.615 -90.795 47.356 -91.183 47.201 -91.358 46.771 -92.115 46.694 -91.902 46.756 -91.513 46.940 -90.931 46.786 -90.853 46.632 -90.931 46.663 -90.736 46.602 -90.542 46.586 -90.406 46.694 -90.018 46.802 -89.843 46.740 -89.843 46.555 -89.707 46.509 -89.610 46.509 -89.358 46.353 -89.183 46.353 -89.125 46.431 -88.931 46.431 -88.135 46.261 -88.076 46.261 -87.843 46.168 -87.630 46.013 -87.591 45.935 -87.377 45.763 -87.338 45.701 -87.338 45.576 -87.261 45.561 -87.241 45.232 -87.513 44.997 -87.630 44.950 -87.824 44.619 -88.018 44.635 -87.824 44.792 -87.669 44.871 -87.474 44.713 -87.358 44.540 -87.474 44.382 -87.513 44.224 -87.494 44.066 -87.649 43.891 -87.727 43.732 -87.707 43.238 -87.902 43.078 -87.863 42.741 -87.766 42.323 -87.824 42.161 -87.766 42.000 -87.649 41.725 -87.513 41.708 -87.513 41.660 -87.436 41.627 -87.222 41.757 -86.834 41.757 -86.523 41.708 -86.523 41.594 -86.484 41.400 -86.678 41.270 -86.814 41.221 -86.931 40.928 -86.969 40.747 -87.105 40.747 -87.533 39.349 -87.533 39.182 -87.610 39.000 -87.591 38.834 -87.533 38.684 -87.533 38.517 -87.649 38.434 -87.746 38.501 -87.533 38.534 -87.300 38.434 -87.086 38.217 -87.028 38.166 -86.814 37.982 -86.834 37.848 -86.640 37.999 -86.523 38.033 -86.523 37.882 -86.290 37.681 -86.232 37.513 -86.096 37.429 -85.902 37.411 -85.688 37.344 -85.474 37.210 -85.377 37.227 -85.261 37.244 -85.067 37.193 -85.067 37.126 -84.989 36.974 -84.853 36.974 -84.678 36.788 -84.601 36.619 -84.775 36.381 -84.640 36.280 -84.853 36.093 -84.833 35.923 -84.659 35.786 -84.892 35.667 -85.008 35.120 -85.416 35.102 -85.397 35.034 -85.435 35.000 -85.513 35.000 -85.630 34.691 -85.552 34.261 -85.455 34.209 -85.435 33.968 -85.377 33.951 -85.377 33.742 -85.338 33.673 -85.338 33.535 -85.300 33.222 -85.241 33.049 -85.222 33.031 -85.202 32.997 -85.202 32.910 -85.183 32.875 -85.183 32.544 -85.008 32.526 -85.008 32.526 -84.989 32.509 -84.989 32.439 -84.970 32.422 -84.970 32.248 -84.911 32.124 -85.047 32.054 -85.067 31.880 -85.125 31.704 -85.106 31.634 -85.067 31.599 -85.047 31.282 -85.106 31.142 -85.047 31.089 -85.028 31.036 -84.989 31.001 -84.989 31.001 -85.008 30.983 -84.989 30.913 -84.970 30.789 -84.911 30.718 -84.873 30.700 -84.873 30.630 -84.911 30.524 -84.989 30.435 -85.008 30.082 -85.144 30.011 -85.086 29.993 -85.047 29.780 -85.047 29.745 -85.086 29.709 -85.183 29.691 -85.319 29.869 -85.338 29.993 -85.533 30.099 -85.591 30.046 -85.397 30.188 -85.688 30.276 -85.649 30.294 -85.843 30.153 -85.707 30.312 -86.096 30.418 -86.484 30.400 -86.173 30.365 -86.115 30.435 -86.135 30.489 -86.193 30.418 -86.581 30.383 -87.125 30.418 -86.989 30.594 -87.028 30.524 -87.164 30.418 -87.183 30.418 -87.358 30.471 -87.416 30.418 -87.436 30.276 -87.591 30.223 -87.785 30.241 -87.979 30.312 -87.785 30.489 -87.940 30.665 -87.960 30.736 -88.018 30.541 -88.076 30.365 -88.212 30.365 -88.639 30.418 -88.892 30.400 -88.853 30.383 -88.872 30.330 -89.319 30.294 -89.319 30.153 -89.610 30.188 -89.610 30.241 -89.785 30.223 -89.804 30.365 -90.096 30.294 -90.309 30.117 -90.426 30.064 -90.135 30.082 -89.999 30.153 -89.863 30.153 -89.649 30.117 -89.649 29.993 -89.843 29.940 -89.746 29.993 -89.552 29.993 -89.436 29.833 -89.455 29.673 -89.649 29.496 -89.610 29.371 -89.377 29.318 -89.183 29.193 -89.028 29.139 -89.028 29.068 -89.222 28.925 -89.416 29.139 -89.397 29.246 -89.610 29.407 -89.804 29.567 -90.173 29.389 -90.057 29.211 -90.057 29.104 -90.173 29.353 -90.426 29.228 -90.620 29.139 -90.639 29.175 -91.008 29.531 -91.261 29.602 -91.241 29.513 -91.397 29.745 -91.785 29.798 -91.979 29.620 -92.096 29.585 -92.154 29.549 -92.348 29.620 -92.756 29.709 -92.950 29.816 -93.358 29.993 -93.280 29.993 -93.338 29.816 -93.358 29.762 -93.494 29.762 -93.882 29.816 -93.901 29.993 -93.804 29.816 -93.960 29.762 -93.921 29.673 -93.960 29.638 -94.173 29.567 -94.367 29.371 -94.756 29.531 -94.562 29.549 -94.465 29.549 -94.659 29.727 -94.717 29.656 -94.911 29.709 -95.008 29.691 -95.047 29.318 -94.892 29.139 -95.144 29.014 -95.183 28.871 -95.377 28.871 -95.435 28.746 -95.629 28.478 -96.212 28.639 -95.979 28.585 -96.173 28.621 -96.134 28.693 -96.232 28.746 -96.426 28.585 -96.445 28.675 -96.562 28.639 -96.620 28.567 -96.600 28.425 -96.406 28.335 -96.600 28.478 -96.795 28.389 -96.833 28.209 -96.814 28.138 -97.008 28.048 -97.027 27.868 -97.163 27.850 -97.494 27.833 -97.396 27.689 -97.261 27.329 -97.416 27.347 -97.571 27.437 -97.765 27.257 -97.649 27.184 -97.435 27.005 -97.571 26.154 -97.299 25.972 -97.144 25.590 -97.222 25.044 -97.513 24.442 -97.668 23.892 -97.727 23.874 -97.746 24.624 -97.649 25.008 -97.532 25.282 -97.532 25.373 -97.727 25.008 -97.727 24.935 -97.668 24.752 -97.707 24.570 -97.843 24.387 -97.746 24.002 -97.785 23.856 -97.765 23.781 -97.824 23.597 -97.746 23.083 -97.746 22.917 -97.765 22.733 -97.843 22.437 -97.824 22.253 -97.765 22.160 -97.785 21.975 -97.707 21.790 -97.571 21.623 -97.377 21.512 -97.319 21.326 -97.396 21.344 -97.435 21.531 -97.377 21.808 -97.629 21.993 -97.727 21.808 -97.707 21.623 -97.629 21.475 -97.494 21.141 -97.377 20.620 -97.125 20.005 -96.562 19.799 -96.426 19.426 -96.329 19.313 -96.270 19.052 -96.037 18.864 -95.960 18.789 -95.785 18.826 -95.979 18.714 -95.882 18.621 -95.940 18.621 -95.901 18.695 -95.863 18.752 -95.765 18.789 -95.765 18.733 -95.649 18.714 -95.280 18.545 -94.989 18.526 -94.795 18.170 -94.562 18.150 -94.426 18.189 -94.193 18.432 -93.494 18.414 -93.164 18.451 -92.931 18.526 -92.736 18.451 -92.659 18.602 -92.581 18.658 -92.484 18.714 -92.076 18.621 -91.863 18.602 -91.979 18.414 -91.843 18.451 -91.649 18.432 -91.494 18.621 -91.300 18.621 -91.261 18.808 -91.397 18.808 -91.494 18.957 -91.300 19.183 -90.911 19.369 -90.736 19.762 -90.678 19.930 -90.484 20.005 -90.465 20.191 -90.503 20.378 -90.465 20.564 -90.484 20.750 -90.445 20.862 -90.367 20.881 -90.406 21.066 -90.270 21.270 -89.804 21.419 -88.814 21.568 -88.426 21.549 -88.329 21.586 -88.096 21.438 -87.338 21.586 -87.125 21.475 -86.931 21.289 -86.834 21.011 -86.834 20.844 -86.873 20.657 -87.028 20.453 -87.261 20.266 -87.377 20.079 -87.474 19.949 -87.474 19.575 -87.688 19.538 -87.494 19.350 -87.649 19.201 -87.630 19.313 -87.474 18.189 -87.843 18.583 -88.057 18.770 -88.018 18.714 -88.232 18.488 -88.290 18.282 -88.096 18.094 -88.115 17.567 -88.271 17.511 -88.173 17.323 -88.290 16.718 -88.290 16.511 -88.348 16.548 -88.387 16.360 -88.484 16.245 -88.678 15.981 -88.931 15.886 -88.911 15.754 -88.620 15.697 -88.600 15.830 -88.503 15.830 -88.387 15.716 -88.212 15.773 -88.018 15.924 -87.727 15.792 -87.513 15.849 -87.319 15.773 -87.067 15.811 -86.465 15.773 -86.368 15.886 -86.173 15.905 -85.979 15.962 -85.902 15.981 -85.707 15.943 -85.669 15.886 -85.474 15.981 -84.989 15.886 -84.659 15.792 -84.484 15.830 -84.290 15.526 -83.940 15.412 -83.746 15.374 -83.746 15.507 -83.940 15.488 -84.096 15.298 -83.999 15.242 -83.902 15.412 -83.960 15.204 -83.766 15.280 -83.571 15.298 -83.571 15.242 -83.377 15.052 -83.242 14.995 -83.125 14.729 -83.319 14.405 -83.203 14.215 -83.222 13.891 -83.455 13.396 -83.552 13.014 -83.533 12.899 -83.494 12.708 -83.533 12.518 -83.513 12.364 -83.610 12.556 -83.630 12.556 -83.591 12.746 -83.533 12.785 -83.649 12.594 -83.630 12.402 -83.707 12.326 -83.649 12.135 -83.688 11.886 -83.824 11.694 -83.669 11.311 -83.863 11.043 -83.785 10.947 -83.707 10.928 -83.649 10.735 -83.610 10.716 -83.630 10.582 -83.513 10.293 -83.338 10.005 -83.086 10.005 -83.028 9.793 -82.892 9.562 -82.562 9.505 -82.601 9.601 -82.775 9.562 -82.873 9.505 -82.834 9.293 -82.931 9.062 -82.931 8.947 -82.737 8.908 -82.717 8.850 -82.834 8.773 -82.911 8.542 -82.834 8.465 -82.834 8.426 -82.892 8.407 -82.931 8.272 -82.970 8.272 -82.950 8.021 -82.892 8.600 -83.183 8.735 -83.377 8.542 -83.300 8.368 -83.280 8.542 -83.688 8.677 -83.688 8.869 -83.571 8.966 -83.610 9.158 -83.766 9.466 -84.212 9.524 -84.523 9.716 -84.659 9.774 -84.640 10.159 -85.067 10.178 -85.222 10.255 -85.241 10.274 -85.280 10.082 -85.222 10.005 -85.144 9.928 -84.950 9.736 -84.950 9.620 -85.144 9.736 -85.241 9.851 -85.435 9.890 -85.630 10.197 -85.824 10.370 -85.863 10.563 -85.688 10.755 -85.649 10.851 -85.843 10.947 -85.824 11.081 -85.688 11.522 -86.173 11.617 -86.348 12.001 -86.678 12.192 -86.775 12.441 -87.164 12.422 -87.105 12.460 -87.125 12.479 -87.183 12.804 -87.533 12.995 -87.649 13.052 -87.591 12.919 -87.319 12.919 -87.280 13.033 -87.280 13.148 -87.416 13.339 -87.455 13.377 -87.377 13.377 -87.571 13.358 -87.688 13.396 -87.824 13.435 -87.843 13.244 -87.824 13.167 -88.018 13.167 -88.309 13.224 -88.348 13.263 -88.639 13.167 -88.445 13.244 -88.814 13.415 -89.144 13.473 -89.338 13.529 -89.804 13.701 -89.999 13.891 -90.465 13.929 -90.620 13.910 -91.105 13.948 -91.300 14.043 -91.533 14.538 -92.251 14.995 -92.698 15.185 -92.814 15.298 -93.008 15.886 -93.746 16.075 -93.882 16.151 -94.076 16.170 -94.290 16.094 -94.096 16.037 -94.057 16.189 -94.523 16.189 -94.717 16.416 -94.834 16.322 -94.989 16.245 -94.989 16.227 -94.795 16.189 -94.989 16.208 -95.125 16.151 -95.164 15.943 -95.532 15.830 -95.921 15.754 -96.037 15.678 -96.251 15.678 -96.445 15.640 -96.484 15.735 -96.872 15.905 -97.202 15.943 -97.494 15.962 -97.746 16.170 -98.076 16.322 -98.561 16.511 -98.717 16.756 -99.785 16.908 -99.998 17.265 -101.047 17.717 -101.649 17.925 -101.863 17.981 -102.057 17.925 -102.173 18.075 -102.794 18.189 -103.008 18.301 -103.435 18.695 -103.746 18.864 -103.959 19.089 -104.348 19.220 -104.794 19.445 -105.066 20.005 -105.494 20.191 -105.552 20.378 -105.668 20.564 -105.280 20.657 -105.241 20.694 -105.261 20.713 -105.261 20.731 -105.241 20.787 -105.202 20.918 -105.008 21.011 -104.814 20.918 -104.620 20.918 -104.542 20.899 -104.523 20.844 -104.484 20.713 -104.290 20.787 -104.290 20.974 -104.212 21.048 -104.212 21.178 -104.231 21.196 -104.076 21.383 -103.940 21.494 -104.173 21.697 -104.134 21.771 -104.095 21.993 -104.290 22.067 -104.406 22.271 -104.328 22.327 -104.309 22.437 -104.328 22.419 -104.464 22.419 -104.484 22.622 -104.659 22.604 -104.892 22.549 -105.008 22.770 -104.911 22.954 -105.008 23.028 -105.202 23.028 -105.397 23.157 -105.397 23.212 -105.610 23.248 -105.630 23.359 -105.707 23.542 -105.765 23.561 -105.823 23.799 -105.901 24.094 -105.959 24.204 -105.998 24.387 -106.192 24.295 -106.406 24.387 -106.600 24.624 -106.717 24.716 -106.756 24.880 -106.950 24.990 -107.066 25.190 -107.125 25.318 -107.105 25.517 -107.047 25.645 -106.930 25.809 -107.144 25.863 -107.260 26.063 -107.338 26.154 -107.532 26.190 -107.746 26.606 -107.843 26.787 -107.979 26.914 -108.018 27.058 -108.387 27.022 -108.426 27.005 -108.445 26.986 -108.464 27.184 -108.678 27.365 -108.659 27.563 -108.697 27.743 -108.853 27.833 -108.892 28.048 -109.086 28.282 -109.008 28.264 -108.775 28.407 -108.561 28.496 -108.600 29.104 -108.659 29.246 -108.678 29.424 -108.600 29.816 -108.581 29.993 -108.561 30.028 -108.542 30.365 -108.561 30.559 -108.639 30.807 -109.047 31.300 -108.969 31.335 -108.969 31.335 -108.348 31.528 -108.212 31.739 -108.212 31.774 -107.998 31.774 -106.523 31.757 -106.484 31.757 -106.445 31.704 -106.348 31.528 -106.231 31.493 -106.231 31.265 -105.823 30.930 -105.474 30.860 -105.397 30.683 -105.008 30.612 -104.969 30.736 -104.911 31.054 -104.911 31.757 -104.892 32.002 -104.892 32.002 -103.125 32.054 -103.066 33.257 -103.066 33.760 -103.047 36.415 -103.047 36.500 -103.008 36.991 -103.008 36.991 -102.018 37.748 -102.018 37.748 -101.494 37.932 -101.513 37.949 -101.513 38.484 -101.532 38.701 -101.455 38.900 -101.435 38.983 -101.435 39.132 -101.338 39.365 -101.338 39.580 -101.513 39.580 -102.018 39.992 -102.018 39.992 -101.280 40.140 -101.280 40.420 -101.299 40.600 -101.299 40.780 -101.202 41.107 -101.222 41.383 -101.222 41.562 -101.377 41.725 -101.377 41.741 -100.930 41.967 -100.794 42.048 -100.794 42.274 -100.756 42.436 -100.775 42.661 -100.853 42.773 -100.814 42.933 -100.872 42.998 -100.872 42.998 -100.134 43.397 -100.173 43.589 -100.193 43.716 -100.387 43.732 -100.601 43.700 -100.659 43.875 -100.678 44.034 -100.639 44.350 -100.348 44.382 -100.367 44.445 -100.387 44.461 -100.542 44.792 -100.736 44.823 -100.678 44.823 -100.464 44.997 -100.425 45.044 -100.328 45.201 -100.290 45.388 -100.290 45.561 -100.484 45.779 -100.348 45.935 -100.484 45.935 -100.756 46.121 -100.659 46.121 -100.620 46.183 -100.620 46.353 -100.542 46.540 -100.581 46.709 -100.775 46.786 -100.814 46.817 -101.086 46.863 -101.086 46.986 -101.202 46.986 -100.930 47.109 -100.930 47.278 -101.008 47.340 -101.358 47.493 -101.396 47.554 -101.494 47.524 -101.688 47.524 -101.940 47.600 -102.192 47.524 -102.425 47.539 -102.659 47.600 -102.853 47.615 -103.241 47.615 -103.396 47.508 -103.591 47.661 -103.746 47.692 -103.746 47.829 -103.940 47.829 -104.018 48.300 -104.018 48.995 -104.037 48.995 -109.998 ; #148 3 11.043 -84.950 11.100 -84.756 11.331 -84.853 11.617 -85.067 11.790 -85.241 11.886 -85.455 12.039 -85.649 12.116 -85.785 12.097 -85.863 11.867 -85.921 11.675 -85.902 11.445 -85.785 11.254 -85.610 11.062 -84.989 ; #149 -4 73.085 -102.096 73.064 -101.999 72.492 -101.999 72.563 -102.328 72.718 -102.736 72.820 -102.736 72.921 -102.581 73.034 -102.503 73.064 -102.309 ; #150 3 69.197 -101.707 69.087 -101.649 69.197 -101.513 ; #151 3 76.758 -100.542 76.730 -100.950 76.665 -101.163 76.637 -101.377 76.563 -101.591 76.554 -101.377 76.572 -101.163 76.675 -100.503 76.721 -100.290 ; #152 3 69.539 -101.105 69.505 -101.319 69.396 -101.163 69.505 -101.047 ; #153 3 75.628 -100.270 75.589 -100.678 75.541 -100.892 75.570 -100.678 75.541 -100.484 ; #154 3 70.675 -100.503 70.654 -100.697 70.547 -100.659 70.494 -100.464 70.494 -100.251 70.601 -100.251 70.654 -100.464 ; #155 3 69.021 -100.406 68.987 -100.620 68.765 -100.620 68.710 -100.425 68.787 -100.232 68.909 -100.134 68.998 -100.328 ; #156 3 69.087 -100.018 69.087 -100.232 68.976 -100.193 68.943 -99.998 68.965 -99.998 ; #157 3 79.878 -99.494 79.843 -99.299 79.758 -99.319 79.715 -98.911 79.732 -98.717 79.827 -98.659 79.912 -98.775 80.031 -98.794 80.099 -99.008 80.125 -99.202 80.108 -99.396 80.142 -99.591 80.150 -99.785 80.091 -100.057 79.997 -100.154 79.886 -100.115 79.878 -99.998 ; #158 3 76.721 -99.591 76.749 -99.998 76.721 -99.998 ; #159 3 68.464 -96.329 68.564 -96.134 68.620 -95.921 68.732 -95.804 68.754 -95.397 68.865 -95.241 68.887 -95.435 68.821 -95.629 68.876 -95.843 68.987 -95.921 69.098 -95.940 69.219 -96.037 69.098 -96.154 69.330 -96.270 69.450 -96.678 69.494 -96.892 69.691 -97.280 69.648 -97.474 69.757 -97.455 69.866 -97.843 69.866 -98.037 69.779 -98.232 69.670 -98.329 69.561 -98.251 69.461 -98.057 69.483 -98.251 69.582 -98.445 69.352 -98.426 69.297 -98.620 69.186 -98.736 69.142 -99.125 69.153 -99.338 69.087 -99.532 68.976 -99.494 68.865 -99.299 68.854 -99.086 68.943 -98.892 68.832 -98.853 68.743 -98.465 68.854 -98.387 68.743 -98.290 68.675 -98.076 68.664 -97.882 68.609 -97.668 68.531 -97.474 68.531 -97.280 68.575 -97.086 68.508 -96.892 68.441 -96.523 ; #160 3 74.118 -97.843 74.098 -98.057 74.029 -98.484 74.029 -98.698 73.949 -99.086 73.939 -99.299 73.850 -99.105 73.850 -98.892 73.830 -99.086 73.809 -98.892 73.850 -98.698 73.840 -98.503 73.890 -98.096 74.019 -97.707 74.098 -97.649 ; #161 3 77.902 -96.465 77.867 -96.251 77.876 -96.037 77.929 -95.610 77.957 -95.203 77.993 -95.008 78.083 -94.931 78.173 -95.105 78.217 -95.319 78.289 -95.125 78.324 -94.911 78.414 -94.989 78.520 -95.591 78.493 -96.037 78.520 -96.232 78.618 -96.154 78.626 -96.348 78.680 -96.562 78.688 -96.775 78.732 -96.969 78.759 -97.183 78.803 -97.591 78.820 -97.998 78.803 -98.212 78.714 -98.367 78.626 -98.232 78.573 -98.037 78.528 -98.251 78.440 -98.348 78.404 -98.154 78.315 -98.076 78.280 -97.863 78.208 -97.668 78.208 -97.455 78.190 -97.261 78.110 -96.853 78.074 -97.066 78.083 -97.513 78.037 -97.727 77.929 -97.125 77.840 -97.086 77.785 -96.872 ; #162 3 74.631 -97.416 74.572 -97.610 74.473 -97.785 74.473 -97.571 74.522 -97.377 74.621 -97.358 ; #163 3 73.155 -97.008 73.054 -97.144 72.943 -97.027 72.921 -96.833 72.973 -96.639 73.074 -96.581 73.186 -96.775 ; #164 3 75.637 -96.426 75.560 -96.620 75.503 -97.047 75.406 -96.950 75.378 -96.736 75.446 -96.523 75.541 -96.503 75.493 -96.309 75.493 -96.115 75.551 -95.901 75.598 -96.018 ; #165 3 72.891 -96.717 72.840 -96.911 72.738 -96.853 72.779 -96.639 72.881 -96.678 ; #166 3 69.527 -96.309 69.571 -96.717 69.461 -96.523 69.396 -96.309 69.439 -96.115 69.550 -96.134 ; #167 3 75.598 -95.280 75.522 -95.688 75.425 -95.668 75.416 -96.076 75.387 -95.882 75.156 -96.484 75.059 -96.600 75.001 -96.406 74.904 -96.309 75.001 -96.154 74.904 -96.076 74.845 -95.863 74.816 -95.668 74.739 -95.474 74.797 -95.261 74.621 -94.659 74.650 -94.270 74.650 -93.630 74.748 -93.455 74.845 -93.416 74.953 -93.436 75.030 -93.630 75.137 -93.474 75.233 -93.513 75.301 -93.727 75.397 -93.863 75.560 -94.290 75.608 -94.484 75.637 -94.872 ; #168 3 77.776 -93.591 77.740 -93.824 77.785 -94.620 77.749 -95.261 77.804 -95.455 77.758 -95.901 77.722 -96.096 77.650 -96.290 77.558 -96.212 77.486 -96.018 77.468 -95.824 77.458 -95.203 77.477 -94.989 77.477 -94.387 77.449 -94.173 77.440 -93.552 77.540 -93.494 77.632 -93.377 77.704 -93.164 ; #169 3 80.696 -95.280 80.696 -95.707 80.671 -96.134 80.647 -95.921 80.655 -95.707 80.630 -95.494 80.621 -95.086 80.680 -95.067 ; #170 3 69.626 -95.727 69.571 -95.921 69.461 -95.998 69.439 -95.804 69.550 -95.707 69.429 -95.668 69.319 -95.707 69.341 -95.494 69.450 -95.397 69.561 -95.494 ; #171 3 74.640 -95.668 74.572 -95.863 74.522 -95.668 74.493 -95.455 74.513 -95.261 74.611 -95.416 74.640 -95.629 ; #172 3 74.138 -92.931 74.167 -93.338 74.167 -93.552 74.138 -93.765 74.138 -94.173 74.069 -94.795 74.029 -94.989 74.008 -95.203 73.909 -95.319 73.720 -94.950 73.680 -94.736 73.660 -94.931 73.749 -95.358 73.740 -95.552 73.640 -95.727 73.529 -95.629 73.429 -95.668 73.227 -95.591 73.014 -95.668 72.799 -95.668 72.697 -95.591 72.646 -95.397 72.543 -95.319 72.440 -95.164 72.223 -95.203 72.151 -94.989 72.161 -94.795 72.109 -95.203 71.996 -95.203 71.984 -94.989 72.027 -94.406 72.006 -94.193 72.326 -93.765 72.389 -93.571 72.492 -93.474 72.697 -93.804 72.728 -94.212 72.769 -93.998 72.789 -93.397 72.707 -92.367 72.728 -92.173 72.809 -91.960 72.911 -91.766 73.125 -91.474 73.227 -91.533 73.247 -91.319 73.358 -91.164 73.660 -90.581 73.759 -90.426 73.860 -90.367 73.939 -90.562 73.969 -90.756 74.029 -91.571 74.008 -91.979 73.949 -92.173 74.039 -92.367 74.078 -92.562 74.078 -92.717 ; #173 3 76.150 -94.872 76.046 -95.047 76.140 -94.853 ; #174 3 75.941 -94.872 75.847 -94.834 75.751 -94.717 75.761 -94.309 75.866 -94.406 75.960 -94.445 75.970 -94.484 ; #175 3 78.271 -94.678 78.181 -94.523 78.199 -94.309 78.280 -94.523 ; #176 3 69.823 -91.533 69.790 -91.727 69.724 -91.533 ; #177 3 77.165 -91.202 77.137 -90.989 77.146 -90.795 77.247 -90.853 77.257 -91.067 ; #178 3 77.632 -90.406 77.632 -90.620 77.659 -90.834 77.632 -91.028 77.540 -91.183 77.440 -91.164 77.349 -91.067 77.293 -90.853 77.201 -90.231 77.211 -89.999 77.266 -89.804 77.358 -89.707 77.449 -89.707 77.549 -89.999 ; #179 3 69.286 -90.484 69.308 -90.678 69.197 -90.581 ; #180 3 76.506 -89.921 76.497 -89.707 76.591 -89.863 76.693 -89.707 76.786 -89.785 76.842 -89.999 76.804 -90.426 76.712 -90.562 76.526 -90.193 76.469 -89.999 ; #181 3 69.407 -90.367 69.297 -90.445 69.297 -90.231 69.418 -90.193 ; #182 3 74.069 -89.999 73.998 -90.193 73.989 -89.999 ; #183 3 68.732 -89.999 68.743 -89.804 68.854 -89.921 68.810 -89.999 68.776 -89.999 ; #184 3 78.449 -88.115 78.262 -88.232 78.449 -88.057 ; #185 3 69.964 -86.736 69.975 -86.542 69.996 -86.465 70.105 -86.600 70.083 -86.795 70.116 -86.989 70.105 -87.202 69.996 -87.144 69.996 -87.028 ; #186 3 68.283 -86.581 68.250 -86.775 68.137 -86.892 68.025 -86.853 67.912 -86.950 67.787 -86.853 67.731 -86.640 67.810 -86.445 67.934 -86.368 68.160 -86.426 ; #187 3 78.970 -86.309 78.882 -86.309 78.960 -85.435 79.048 -85.300 79.065 -85.707 79.057 -85.921 ; #188 -3 68.776 -101.999 68.810 -101.882 68.765 -101.688 68.653 -101.688 68.575 -101.882 68.597 -101.999 ; #189 -4 68.609 -102.096 68.664 -102.290 68.754 -102.076 68.776 -101.999 68.597 -101.999 ; #190 -3 69.252 -101.999 69.252 -101.979 69.197 -101.785 69.076 -101.804 68.965 -101.979 68.965 -101.999 ; #191 -3 69.208 -102.173 69.330 -102.096 69.407 -101.999 69.252 -101.999 ; #192 -3 69.450 -101.999 69.439 -101.960 69.407 -101.999 ; #193 -3 70.289 -101.999 70.300 -101.804 70.246 -101.610 70.137 -101.571 70.159 -101.377 70.116 -100.989 69.996 -100.930 69.779 -100.872 69.670 -100.950 69.691 -101.338 69.801 -101.532 69.691 -101.727 69.735 -101.921 69.790 -101.999 ; #194 -3 73.064 -101.999 73.044 -101.901 72.943 -101.765 72.891 -101.571 72.789 -101.416 72.707 -101.222 72.697 -101.027 72.759 -100.833 72.748 -100.561 72.769 -100.348 72.871 -100.406 72.983 -100.425 72.871 -100.270 72.931 -100.057 73.034 -100.154 73.135 -100.328 73.186 -100.523 73.287 -100.406 73.186 -99.998 73.217 -99.785 73.237 -99.998 73.307 -100.193 73.317 -100.387 73.267 -100.775 73.277 -100.969 73.408 -101.377 73.449 -101.571 73.549 -101.435 73.599 -101.222 73.589 -101.027 73.549 -100.814 73.449 -100.620 73.419 -100.406 73.499 -100.601 73.609 -100.659 73.670 -100.853 73.700 -101.047 73.799 -101.008 73.809 -100.814 73.850 -100.601 73.840 -100.406 73.799 -100.212 73.779 -99.998 73.840 -99.998 73.909 -100.212 73.939 -99.998 73.949 -99.979 73.870 -99.785 73.789 -99.377 73.690 -99.183 73.749 -98.989 73.749 -98.775 73.779 -98.581 73.809 -98.154 73.850 -97.940 73.890 -97.552 73.819 -97.125 73.720 -96.950 73.609 -97.027 73.549 -97.241 73.559 -97.455 73.459 -97.591 73.469 -97.183 73.358 -97.280 73.307 -97.688 73.155 -98.076 72.963 -98.465 72.850 -98.426 72.963 -98.290 73.024 -98.096 73.044 -97.901 73.034 -97.688 72.963 -97.280 72.860 -97.396 72.809 -97.183 72.707 -97.047 72.604 -97.105 72.677 -96.911 72.728 -96.523 72.614 -96.465 72.512 -96.348 72.410 -96.329 72.295 -96.736 72.203 -96.523 72.099 -96.484 72.016 -96.698 71.996 -96.484 71.901 -96.678 71.911 -96.484 71.807 -96.620 71.807 -96.833 71.660 -97.241 71.619 -97.455 71.619 -97.649 71.640 -98.057 71.671 -98.270 71.776 -98.329 71.880 -98.212 71.818 -98.406 71.714 -98.406 71.608 -98.270 71.503 -98.076 71.398 -98.251 71.313 -98.445 71.292 -98.659 71.313 -98.853 71.366 -99.047 71.366 -99.241 71.587 -99.416 71.787 -99.804 71.943 -100.193 72.141 -100.561 72.203 -100.756 72.172 -100.969 72.285 -101.105 72.316 -101.299 72.275 -101.494 72.285 -101.688 72.358 -101.882 72.379 -101.863 72.482 -101.940 72.492 -101.999 ; #195 -3 75.885 -101.999 75.885 -101.960 75.866 -101.765 75.819 -101.552 75.751 -101.358 75.808 -100.930 75.789 -101.125 75.837 -101.358 75.932 -101.552 76.017 -101.338 75.989 -101.727 76.084 -101.901 76.178 -101.746 76.234 -101.513 76.215 -101.727 76.234 -101.999 76.394 -101.999 76.441 -101.901 76.441 -101.474 76.394 -101.280 76.338 -101.086 76.243 -101.144 76.225 -100.930 76.168 -100.717 76.074 -100.601 76.065 -100.406 75.923 -99.998 75.875 -99.979 75.904 -99.785 75.970 -99.591 75.951 -99.785 76.007 -99.998 76.037 -99.998 76.037 -100.057 76.131 -100.212 76.150 -99.998 76.131 -99.804 76.150 -99.591 76.159 -99.804 76.196 -99.998 76.187 -100.193 76.282 -100.406 76.310 -100.212 76.282 -99.998 76.319 -99.998 76.375 -100.193 76.375 -100.601 76.422 -100.794 76.516 -100.833 76.582 -100.620 76.647 -100.212 76.591 -99.610 76.506 -99.202 76.413 -99.086 76.506 -98.969 76.600 -98.989 76.591 -98.775 76.656 -98.581 76.684 -98.775 76.675 -98.561 76.610 -98.348 76.582 -98.154 76.563 -98.348 76.506 -97.746 76.404 -97.707 76.310 -97.765 76.215 -97.552 76.121 -97.513 76.026 -97.591 75.828 -97.629 75.723 -97.804 75.685 -97.396 75.493 -97.416 75.397 -97.280 75.436 -97.494 75.531 -97.629 75.455 -98.057 75.359 -97.921 75.339 -98.134 75.263 -97.940 75.223 -97.746 75.118 -97.688 75.127 -97.882 75.214 -98.076 75.108 -97.998 75.011 -97.979 75.020 -98.193 75.001 -98.601 75.001 -99.183 75.068 -99.396 74.972 -99.591 74.982 -99.998 74.991 -100.193 75.030 -100.387 75.223 -100.387 75.243 -99.998 75.253 -100.232 75.349 -100.639 75.378 -100.425 75.436 -100.620 75.446 -100.406 75.484 -100.193 75.484 -99.998 75.503 -99.998 75.522 -100.193 75.531 -99.998 75.560 -99.998 75.560 -99.940 75.656 -99.746 75.675 -99.125 75.704 -98.930 75.685 -99.785 75.637 -100.620 75.608 -100.833 75.617 -101.027 75.589 -101.241 75.598 -101.455 75.551 -101.999 ; #196 -4 75.541 -102.057 75.551 -102.270 75.522 -102.464 75.531 -102.678 75.628 -102.853 75.723 -102.445 75.723 -102.251 75.694 -102.037 75.789 -102.154 75.819 -102.367 75.875 -102.154 75.885 -101.999 75.551 -101.999 ; #197 -4 75.885 -102.387 75.789 -102.523 75.742 -102.911 75.751 -103.338 75.913 -102.930 75.941 -102.717 75.979 -102.309 75.979 -102.115 75.941 -101.999 75.932 -101.999 ; #198 -4 76.243 -102.134 76.338 -102.096 76.394 -101.999 76.234 -101.999 ; #199 -3 77.885 -101.999 77.894 -101.668 77.822 -101.163 77.731 -101.008 77.722 -101.435 77.677 -101.824 77.677 -101.999 ; #200 -4 77.677 -102.037 77.704 -102.231 77.767 -102.445 77.858 -102.484 77.885 -102.290 77.885 -101.999 77.677 -101.999 ; #201 -3 79.075 -101.999 79.083 -101.979 79.075 -101.707 78.970 -101.280 78.890 -101.066 78.793 -101.027 78.793 -100.620 78.829 -100.406 78.759 -100.193 78.732 -99.998 78.618 -99.998 78.599 -99.746 78.565 -99.532 78.475 -99.688 78.386 -99.746 78.289 -99.746 78.289 -99.552 78.029 -98.969 77.840 -99.163 77.822 -99.377 77.794 -99.998 77.813 -100.270 77.849 -100.464 77.929 -100.678 78.020 -100.833 78.118 -100.930 78.190 -101.144 78.199 -101.358 78.262 -101.765 78.271 -101.999 ; #202 -4 78.280 -102.192 78.235 -102.581 78.289 -102.814 78.378 -102.814 78.315 -103.649 78.271 -103.843 78.243 -104.076 78.262 -104.464 78.404 -104.892 78.493 -105.047 78.546 -104.930 78.573 -104.717 78.556 -104.290 78.520 -104.095 78.511 -103.668 78.528 -103.455 78.618 -103.552 78.618 -103.765 78.653 -103.959 78.697 -103.513 78.785 -103.494 78.793 -103.688 78.759 -104.095 78.838 -104.076 78.917 -103.863 78.978 -104.076 78.952 -104.464 78.855 -104.581 78.803 -104.794 78.855 -104.989 78.952 -104.794 79.040 -104.794 79.013 -105.397 79.057 -105.610 79.153 -105.630 79.327 -105.416 79.301 -105.202 79.370 -103.940 79.362 -103.746 79.319 -103.532 79.284 -103.125 79.232 -102.911 79.144 -102.794 79.057 -102.620 78.970 -102.736 78.873 -102.600 78.943 -102.387 79.031 -102.270 79.031 -102.173 79.075 -101.999 78.271 -101.999 ; #203 -10 23.874 -97.746 23.799 -97.746 23.856 -97.765 ; #204 -10 24.002 -97.785 24.387 -97.746 24.570 -97.843 24.752 -97.707 24.935 -97.668 25.008 -97.727 25.373 -97.727 25.282 -97.532 25.008 -97.532 24.624 -97.649 23.874 -97.746 23.856 -97.765 ; #205 3 27.076 -97.396 26.697 -97.358 26.335 -97.222 ; #206 3 27.725 -97.163 27.545 -97.280 27.365 -97.338 27.545 -97.241 ; #207 3 28.102 -96.892 27.922 -96.969 28.102 -96.833 ; #208 3 28.120 -96.775 28.300 -96.581 28.192 -96.775 ; #209 3 29.300 -94.872 29.139 -95.028 29.264 -94.834 ; #210 3 29.585 -91.727 29.531 -91.921 29.549 -91.727 ; #211 3 18.658 -91.727 18.770 -91.513 18.752 -91.649 18.639 -91.824 ; #212 3 29.904 -88.814 29.745 -88.853 29.816 -88.814 29.940 -88.814 29.993 -88.833 ; #213 3 20.453 -86.834 20.508 -86.950 20.322 -87.028 20.247 -86.989 ; #214 3 16.435 -86.232 16.416 -86.426 16.264 -86.620 ; #215 -3 80.796 -95.183 80.855 -95.377 80.938 -95.319 81.029 -95.105 81.053 -94.911 81.045 -94.678 80.971 -94.484 81.004 -94.290 81.037 -93.901 81.053 -94.115 81.111 -94.348 81.095 -94.173 81.095 -93.746 81.070 -93.552 81.095 -93.164 81.185 -93.125 81.218 -93.552 81.201 -93.960 81.218 -94.173 81.259 -94.387 81.349 -94.270 81.366 -94.115 81.341 -93.688 81.382 -93.474 81.324 -92.853 81.251 -92.251 81.209 -92.037 81.128 -91.843 81.045 -91.746 80.979 -91.533 80.821 -91.164 80.730 -91.008 80.722 -90.795 80.655 -90.600 80.563 -90.639 80.537 -89.999 80.537 -89.377 80.496 -89.164 80.412 -89.241 80.319 -89.144 80.235 -89.183 80.133 -88.775 80.108 -88.581 80.133 -88.368 80.108 -88.173 80.192 -88.271 80.218 -88.484 80.303 -88.678 80.387 -88.659 80.437 -88.465 80.412 -87.824 80.353 -87.630 80.175 -87.591 80.150 -87.785 80.099 -87.999 80.065 -87.785 80.073 -87.358 79.946 -87.008 79.920 -87.202 79.835 -87.416 79.869 -87.183 79.869 -86.969 79.784 -87.067 79.697 -87.105 79.517 -87.416 79.525 -87.222 79.595 -87.028 79.612 -86.814 79.655 -86.620 79.646 -86.387 79.612 -86.193 79.439 -86.038 79.621 -85.746 79.569 -85.552 79.387 -85.222 79.344 -85.028 79.284 -84.989 79.257 -84.989 79.153 -85.591 79.065 -86.465 78.978 -86.600 78.960 -86.795 79.031 -86.989 78.943 -86.969 78.846 -87.125 78.793 -87.319 78.697 -87.494 78.644 -87.688 78.706 -87.882 78.793 -87.999 78.978 -87.902 79.065 -87.804 78.934 -88.212 78.838 -88.232 78.661 -88.154 78.626 -87.960 78.528 -87.940 78.466 -88.135 78.502 -88.329 78.582 -88.542 78.528 -88.736 78.440 -88.542 78.253 -88.717 78.154 -88.872 78.181 -89.067 78.431 -89.649 78.608 -89.999 78.565 -90.096 78.466 -89.999 78.334 -89.688 78.243 -89.571 78.154 -89.571 78.324 -90.135 78.324 -90.756 78.280 -90.542 78.271 -90.348 78.181 -90.270 78.136 -90.465 78.136 -90.872 78.164 -91.105 78.181 -91.513 78.235 -91.921 78.226 -92.134 78.324 -92.193 78.297 -92.406 78.360 -92.620 78.395 -92.814 78.485 -92.892 78.520 -92.484 78.528 -92.076 78.565 -91.649 78.591 -92.465 78.626 -92.872 78.591 -93.300 78.680 -93.377 78.688 -93.591 78.785 -93.688 78.741 -93.241 78.767 -93.028 78.829 -93.436 78.829 -93.882 78.908 -94.076 78.996 -94.232 79.022 -94.037 79.031 -93.804 79.065 -93.591 79.153 -93.416 79.161 -92.562 79.144 -92.367 79.161 -91.766 79.214 -90.756 79.249 -90.542 79.240 -91.164 79.223 -91.377 79.232 -91.591 79.205 -91.998 79.205 -92.212 79.223 -92.406 79.292 -92.620 79.309 -92.426 79.292 -92.018 79.319 -91.824 79.336 -91.397 79.396 -91.183 79.370 -91.377 79.370 -91.610 79.344 -91.824 79.353 -92.270 79.405 -92.484 79.449 -92.290 79.449 -92.484 79.405 -92.892 79.449 -93.105 79.362 -93.164 79.353 -93.377 79.439 -93.358 79.353 -93.513 79.292 -93.727 79.257 -93.940 79.292 -94.154 79.379 -93.998 79.396 -94.193 79.267 -95.008 79.319 -95.222 79.405 -95.299 79.387 -95.494 79.466 -95.727 79.552 -95.649 79.595 -94.834 79.664 -94.406 79.758 -94.387 79.732 -94.581 79.672 -94.775 79.638 -95.377 79.646 -95.824 79.707 -96.037 79.741 -96.232 79.827 -96.406 79.912 -96.465 79.929 -96.232 79.938 -96.426 79.997 -96.639 80.057 -96.503 80.057 -96.736 80.142 -96.678 80.142 -96.484 80.116 -96.270 80.073 -96.076 80.057 -95.863 80.031 -95.222 80.031 -94.795 79.997 -94.581 79.997 -94.426 80.049 -94.639 80.133 -94.620 80.184 -94.212 80.192 -94.426 80.218 -94.620 80.159 -94.814 80.133 -95.028 80.116 -95.222 80.125 -95.435 80.192 -95.649 80.201 -95.435 80.243 -95.241 80.218 -95.435 80.243 -95.649 80.201 -95.843 80.243 -96.270 80.319 -96.465 80.345 -96.678 80.345 -96.484 80.387 -96.076 80.370 -95.668 80.378 -95.455 80.395 -95.649 80.454 -95.843 80.496 -96.057 80.580 -95.843 80.596 -95.416 80.588 -95.203 80.604 -94.989 80.563 -94.795 80.554 -94.581 80.554 -94.154 80.580 -93.940 80.613 -94.367 80.613 -94.562 80.696 -94.503 80.714 -94.076 80.730 -94.756 80.813 -94.950 ; #216 -3 29.993 -93.338 29.993 -93.280 29.816 -93.358 ; #217 -3 81.764 -91.086 81.837 -90.892 81.845 -90.678 81.885 -90.484 81.885 -89.999 81.917 -89.785 81.845 -89.571 81.813 -89.358 81.877 -89.144 81.909 -89.358 81.933 -89.144 82.014 -88.931 82.070 -88.484 82.093 -88.096 82.078 -87.455 82.046 -87.261 81.957 -87.261 81.901 -86.853 81.957 -87.067 81.982 -86.853 82.053 -86.659 82.053 -86.445 82.046 -86.232 82.014 -86.018 81.973 -85.804 81.860 -85.377 81.925 -85.591 81.997 -85.338 81.973 -85.144 81.917 -84.989 81.309 -84.989 81.300 -85.183 81.218 -86.018 81.128 -86.445 81.070 -87.338 81.070 -88.387 81.045 -89.047 81.012 -89.455 81.029 -89.999 81.070 -90.193 81.161 -90.348 81.218 -90.135 81.243 -89.999 81.243 -89.785 81.209 -89.571 81.251 -88.931 81.259 -89.125 81.243 -89.338 81.324 -89.940 81.406 -89.319 81.447 -89.125 81.456 -88.892 81.512 -88.678 81.537 -88.038 81.512 -87.804 81.504 -87.397 81.561 -88.038 81.569 -88.445 81.553 -88.639 81.553 -88.853 81.399 -90.193 81.366 -90.387 81.414 -90.620 81.439 -90.834 81.488 -90.620 81.553 -90.193 81.561 -89.999 81.601 -89.804 81.610 -89.591 81.626 -89.804 81.618 -89.999 81.683 -90.193 81.650 -90.426 81.667 -90.639 81.635 -90.834 81.545 -91.047 81.529 -91.474 81.610 -91.669 81.610 -91.882 81.626 -91.940 81.683 -91.727 81.756 -91.533 ; #218 -3 74.640 -91.494 74.729 -91.707 74.758 -91.902 74.855 -92.018 74.953 -92.037 75.049 -92.193 75.156 -92.096 75.156 -92.309 75.263 -92.465 75.359 -92.367 75.455 -92.367 75.551 -92.193 75.598 -91.998 75.789 -92.115 75.894 -92.231 76.017 -92.639 76.112 -92.639 76.215 -92.814 76.366 -93.202 76.329 -93.436 76.253 -93.630 76.282 -94.484 76.310 -94.698 76.253 -94.911 76.234 -95.125 76.291 -95.319 76.301 -95.125 76.347 -94.911 76.375 -95.532 76.422 -95.940 76.526 -96.057 76.516 -95.863 76.600 -95.668 76.554 -95.863 76.582 -96.076 76.684 -96.484 76.712 -96.892 76.804 -96.833 76.749 -96.620 76.814 -96.426 76.852 -96.639 76.926 -96.833 76.981 -96.639 76.972 -96.445 77.045 -96.251 77.045 -96.037 77.064 -95.843 77.055 -95.416 77.008 -95.222 76.972 -94.814 76.981 -94.600 76.916 -94.406 76.889 -94.212 76.926 -93.998 76.916 -93.804 76.795 -93.377 76.702 -93.183 76.610 -93.261 76.432 -93.630 76.460 -93.416 76.554 -93.202 76.619 -92.989 76.610 -92.581 76.591 -92.387 76.665 -91.960 76.684 -91.358 76.637 -90.950 76.582 -90.736 76.554 -90.542 76.460 -90.639 76.497 -91.261 76.478 -91.455 76.450 -91.241 76.432 -90.814 76.404 -90.620 76.404 -90.406 76.375 -90.193 76.310 -89.436 76.273 -89.241 76.178 -89.377 76.159 -89.785 76.178 -90.251 76.159 -90.445 76.168 -90.639 76.168 -90.853 76.243 -91.474 76.140 -91.338 76.159 -91.144 76.140 -90.931 76.055 -90.736 76.093 -90.523 76.026 -90.329 76.037 -90.542 76.007 -91.144 76.007 -90.931 75.904 -90.989 75.989 -90.795 75.932 -90.406 75.941 -90.193 76.007 -89.999 76.007 -89.960 75.923 -89.766 75.828 -89.785 75.856 -89.591 75.819 -89.397 75.723 -89.183 75.628 -89.338 75.570 -89.766 75.551 -89.552 75.589 -89.358 75.531 -89.144 75.436 -88.969 75.436 -88.775 75.628 -88.775 75.647 -88.581 75.570 -88.387 75.474 -88.232 75.560 -87.843 75.560 -87.649 75.512 -87.436 75.608 -87.377 75.598 -87.164 75.512 -86.950 75.474 -86.736 75.465 -86.542 75.368 -86.445 75.425 -86.038 75.416 -85.630 75.436 -85.843 75.531 -85.999 75.541 -85.785 75.589 -85.591 75.560 -85.397 75.656 -84.989 74.640 -84.989 74.689 -85.008 74.592 -85.047 74.493 -85.164 74.513 -85.358 74.621 -85.533 74.513 -85.513 74.483 -85.921 74.483 -86.115 74.582 -86.232 74.483 -86.406 74.572 -86.795 74.464 -86.756 74.483 -86.950 74.464 -87.144 74.542 -87.358 74.464 -87.552 74.513 -87.746 74.473 -87.940 74.503 -88.154 74.493 -88.348 74.592 -88.562 74.689 -88.445 74.787 -88.484 74.895 -88.581 74.689 -88.872 74.787 -89.047 74.689 -89.086 74.582 -89.202 74.582 -89.397 74.532 -89.785 74.582 -89.999 74.553 -90.096 74.601 -90.503 74.679 -90.892 74.874 -90.834 74.777 -91.028 74.729 -91.222 74.631 -91.105 74.708 -91.300 ; #219 -4 42.307 -82.620 42.355 -82.426 42.516 -82.562 42.548 -82.640 42.629 -82.640 42.596 -82.795 42.436 -82.873 42.307 -83.067 42.225 -83.144 42.064 -83.203 41.741 -83.455 41.708 -83.435 41.692 -83.280 41.529 -82.892 41.513 -82.698 41.432 -82.892 41.464 -82.698 41.400 -82.504 41.497 -82.096 41.497 -81.707 41.741 -81.319 41.967 -80.523 42.323 -79.630 42.548 -79.242 42.869 -78.873 43.030 -78.892 43.094 -79.067 42.917 -78.911 42.869 -79.047 42.885 -79.242 42.837 -79.804 42.757 -80.251 42.596 -80.426 42.548 -80.212 42.661 -81.028 42.661 -81.222 42.612 -81.416 42.516 -81.611 42.258 -81.999 42.113 -82.406 41.951 -82.523 42.032 -82.717 41.983 -82.911 42.145 -83.105 42.307 -83.067 ; #220 -4 44.445 -75.902 44.382 -75.999 44.177 -76.775 44.161 -77.377 44.113 -77.572 44.113 -77.300 44.050 -77.086 44.050 -76.892 43.891 -77.028 43.954 -77.436 44.034 -77.630 43.843 -79.008 43.557 -79.591 43.397 -79.688 43.238 -79.649 43.206 -79.455 43.222 -79.261 43.317 -78.892 43.381 -78.484 43.381 -78.096 43.317 -77.708 43.254 -77.494 43.333 -76.717 43.525 -76.426 43.557 -76.232 43.716 -76.213 43.875 -76.271 44.001 -76.057 43.970 -76.271 44.129 -76.348 44.319 -75.960 44.429 -75.844 44.572 -75.727 ; #221 -3 71.640 -89.999 71.755 -89.824 71.859 -89.999 72.068 -89.999 72.151 -89.591 72.161 -89.804 72.264 -89.921 72.368 -89.882 72.482 -89.785 72.584 -89.766 72.626 -89.552 72.728 -89.571 72.759 -89.377 72.973 -89.358 73.175 -89.144 73.207 -88.950 73.287 -88.736 73.388 -88.736 73.549 -88.309 73.720 -87.707 73.779 -87.300 73.840 -86.698 73.850 -86.076 73.819 -85.241 73.799 -85.047 73.779 -84.989 73.670 -84.989 73.640 -85.047 73.529 -85.455 73.388 -85.843 73.287 -86.038 72.973 -86.426 72.881 -86.640 72.769 -86.698 72.667 -86.698 72.482 -86.309 72.379 -86.271 72.264 -86.426 72.058 -86.426 71.839 -86.193 71.556 -85.591 71.483 -85.397 71.441 -85.202 71.430 -85.008 71.420 -84.989 71.292 -84.989 71.282 -85.047 71.282 -85.261 71.198 -85.649 71.187 -85.843 71.059 -86.271 71.017 -86.659 70.985 -86.465 71.007 -86.271 71.112 -85.863 71.144 -85.649 71.166 -85.435 71.144 -85.222 71.166 -85.028 71.091 -85.125 71.038 -84.989 70.083 -84.989 70.073 -85.047 70.105 -85.669 70.062 -85.863 70.073 -85.669 70.051 -85.455 69.996 -85.261 69.996 -85.824 70.148 -86.348 70.234 -86.542 70.343 -86.542 70.461 -86.426 70.386 -86.620 70.386 -86.834 70.461 -87.028 70.396 -87.222 70.289 -87.047 70.321 -87.455 70.234 -87.843 70.343 -88.232 70.353 -88.038 70.407 -88.232 70.450 -88.639 70.504 -88.833 70.719 -89.164 70.804 -89.358 70.910 -89.436 70.975 -89.222 71.081 -89.397 71.038 -89.202 71.038 -88.581 71.017 -88.387 70.943 -88.193 70.932 -87.979 70.953 -87.766 70.943 -87.377 71.017 -87.183 71.038 -87.377 71.154 -87.785 71.261 -87.882 71.208 -88.076 71.313 -89.688 71.345 -89.882 71.451 -89.999 ; #222 2 46.694 -90.018 46.586 -90.406 46.602 -90.542 46.663 -90.736 46.632 -90.931 46.786 -90.853 46.940 -90.931 46.756 -91.513 46.694 -91.902 46.771 -92.115 47.201 -91.358 47.356 -91.183 47.615 -90.795 47.692 -90.600 47.829 -89.999 47.996 -89.571 47.996 -89.513 47.996 -89.571 48.103 -89.397 48.255 -89.261 48.406 -89.222 48.512 -89.028 48.482 -88.833 48.331 -88.872 48.633 -88.542 48.785 -88.542 48.800 -88.329 48.497 -88.484 48.648 -88.309 48.694 -88.115 48.995 -88.251 48.905 -87.746 48.800 -87.358 48.785 -87.164 48.815 -86.969 48.694 -86.368 48.542 -86.251 48.240 -86.115 48.088 -85.979 47.950 -85.785 47.920 -85.397 47.966 -85.202 47.966 -84.989 47.813 -84.911 47.661 -84.989 47.585 -84.989 47.478 -84.795 47.325 -84.601 47.017 -84.775 46.940 -84.581 46.910 -84.387 46.756 -84.562 46.586 -84.562 46.524 -84.387 46.540 -84.154 46.384 -84.115 46.230 -83.397 46.168 -82.989 46.183 -82.406 46.137 -82.212 46.106 -81.824 46.121 -81.611 45.997 -81.571 45.982 -81.183 45.919 -80.775 45.452 -80.387 45.341 -80.173 45.185 -80.018 45.028 -79.999 44.997 -79.921 44.839 -79.766 44.808 -79.882 44.855 -79.999 44.556 -79.999 44.509 -80.193 44.540 -80.387 44.619 -80.581 44.808 -80.989 44.966 -80.970 44.966 -81.164 44.997 -81.183 44.997 -81.242 45.154 -81.319 45.247 -81.533 45.216 -81.727 45.107 -81.513 44.902 -81.358 44.745 -81.280 44.588 -81.300 44.097 -81.727 43.461 -81.707 43.286 -81.824 43.062 -82.212 43.014 -82.406 43.046 -82.445 43.206 -82.504 43.859 -82.659 44.018 -82.795 44.050 -82.989 43.906 -83.397 43.748 -83.455 43.605 -83.649 43.668 -83.882 43.827 -83.940 43.986 -83.766 44.097 -83.571 44.413 -83.319 44.682 -83.280 44.839 -83.300 44.997 -83.455 45.044 -83.261 45.201 -83.377 45.357 -83.552 45.561 -84.135 45.670 -84.329 45.763 -84.795 45.592 -85.106 45.436 -84.989 45.373 -84.989 45.388 -85.106 45.310 -85.319 44.997 -85.397 44.839 -85.533 44.997 -85.513 44.839 -85.649 45.154 -85.649 44.997 -85.785 44.871 -86.076 44.713 -86.251 44.382 -86.251 44.066 -86.523 43.906 -86.445 43.573 -86.523 43.413 -86.445 43.254 -86.251 43.222 -86.290 42.837 -86.212 42.516 -86.251 42.177 -86.426 41.854 -86.678 41.757 -86.834 41.663 -87.067 41.617 -87.241 41.603 -87.292 41.598 -87.339 41.794 -87.552 41.998 -87.698 42.323 -87.824 42.741 -87.766 43.078 -87.863 43.238 -87.902 43.732 -87.707 43.891 -87.727 44.066 -87.649 44.224 -87.494 44.382 -87.513 44.540 -87.474 44.713 -87.358 44.871 -87.474 44.792 -87.669 44.635 -87.824 44.619 -88.018 44.950 -87.824 44.997 -87.630 45.232 -87.513 45.561 -87.241 45.872 -86.969 45.701 -86.911 45.856 -86.736 45.872 -86.542 45.716 -86.562 45.810 -86.348 45.966 -86.193 45.950 -85.999 45.982 -85.804 46.106 -85.397 46.013 -84.989 45.919 -84.892 45.982 -84.698 45.997 -84.484 45.982 -83.902 46.152 -84.038 46.199 -84.232 46.353 -84.212 46.509 -84.368 46.462 -84.795 46.493 -84.989 46.571 -85.028 46.771 -84.989 46.771 -85.222 46.709 -85.416 46.663 -86.193 46.462 -86.581 46.540 -86.989 46.509 -87.183 46.524 -87.377 46.848 -87.669 46.910 -87.863 46.910 -88.465 47.063 -88.503 47.125 -88.542 47.063 -88.368 47.340 -87.979 47.401 -87.921 47.432 -87.727 47.478 -87.921 47.417 -88.309 47.293 -88.523 47.140 -88.562 47.217 -88.620 47.140 -88.814 47.002 -89.008 46.848 -89.397 46.833 -89.804 46.802 -89.843 ; #223 -2 46.833 -89.804 46.848 -89.397 47.002 -89.008 47.140 -88.814 47.217 -88.620 47.140 -88.562 47.125 -88.562 47.125 -88.542 47.063 -88.503 46.910 -88.465 46.910 -87.863 46.848 -87.669 46.524 -87.377 46.509 -87.183 46.540 -86.989 46.462 -86.581 46.663 -86.193 46.709 -85.416 46.771 -85.222 46.771 -84.989 46.571 -85.028 46.493 -84.989 46.462 -84.795 46.509 -84.368 46.353 -84.212 46.199 -84.232 46.152 -84.038 45.982 -83.902 45.997 -84.484 45.982 -84.698 45.919 -84.892 46.013 -84.989 46.106 -85.397 45.982 -85.804 45.950 -85.999 45.966 -86.193 45.810 -86.348 45.716 -86.562 45.872 -86.542 45.856 -86.736 45.701 -86.911 45.872 -86.969 45.561 -87.241 45.576 -87.261 45.701 -87.338 45.763 -87.338 45.935 -87.377 46.013 -87.591 46.168 -87.630 46.261 -87.843 46.261 -88.076 46.431 -88.135 46.431 -88.931 46.353 -89.125 46.353 -89.183 46.509 -89.358 46.509 -89.610 46.555 -89.707 46.740 -89.843 46.802 -89.843 ; #224 2 66.009 -84.970 65.974 -85.164 65.857 -85.144 65.739 -85.086 65.680 -84.892 65.561 -84.775 65.644 -84.581 65.880 -84.775 65.997 -84.911 ; #225 2 66.056 -84.057 66.139 -84.465 66.021 -84.406 65.974 -84.212 65.857 -84.135 65.739 -83.979 65.786 -83.785 65.668 -83.766 65.657 -83.571 65.727 -83.377 65.751 -83.571 65.821 -83.785 65.939 -83.727 66.009 -83.921 ; #226 2 62.210 -83.707 62.210 -83.513 62.249 -83.300 62.173 -83.105 62.311 -82.717 62.561 -82.348 62.598 -82.154 62.698 -81.960 62.959 -81.960 62.971 -82.154 62.933 -82.756 62.859 -82.950 62.859 -83.144 62.908 -83.338 62.785 -83.533 62.660 -83.591 62.461 -83.921 ; #227 2 69.801 -83.571 69.735 -83.766 69.779 -83.571 ; #228 2 65.868 -83.338 65.821 -83.552 65.833 -83.338 ; #229 2 66.267 -83.086 66.337 -83.280 66.221 -83.125 66.256 -82.931 ; #230 2 69.834 -82.620 69.812 -82.426 69.866 -82.640 ; #231 2 68.352 -82.018 68.340 -82.212 68.329 -81.999 ; #232 2 53.221 -81.300 53.164 -81.902 53.021 -82.057 52.949 -81.863 52.834 -81.261 52.762 -81.067 52.733 -80.678 52.891 -80.737 53.178 -81.086 ; #233 2 69.637 -79.999 69.615 -79.804 69.615 -79.591 69.680 -79.397 69.790 -79.436 69.812 -79.630 69.735 -79.999 69.801 -80.212 69.790 -80.406 69.680 -80.387 69.735 -80.601 69.702 -80.795 69.626 -80.387 69.527 -80.173 69.494 -79.999 69.571 -79.999 ; #234 2 61.567 -79.804 61.695 -79.611 61.947 -79.397 62.085 -79.319 62.210 -79.280 62.336 -79.397 62.411 -79.611 62.361 -79.999 62.147 -80.232 62.022 -80.290 61.758 -80.193 61.695 -79.999 ; #235 2 56.180 -80.076 56.193 -79.999 56.275 -79.804 56.412 -79.611 56.330 -79.999 ; #236 2 55.908 -79.993 55.935 -79.799 56.074 -79.624 55.935 -79.644 55.894 -79.449 56.031 -79.314 56.183 -79.216 56.031 -79.178 55.894 -79.275 56.031 -79.158 56.183 -79.080 56.320 -79.061 56.183 -79.042 55.908 -79.197 56.183 -79.022 56.320 -78.886 56.595 -79.236 56.320 -79.372 56.170 -79.546 56.457 -79.411 56.320 -79.507 56.197 -79.702 55.949 -79.993 ; #237 2 56.944 -79.843 56.795 -79.727 56.944 -79.785 ; #238 2 54.946 -79.067 54.889 -79.455 54.806 -79.649 54.918 -79.047 ; #239 2 52.083 -79.397 51.938 -79.552 51.938 -79.358 52.098 -79.300 ; #240 2 69.341 -78.659 69.120 -78.931 69.098 -79.125 68.976 -79.300 68.865 -79.397 68.843 -79.203 68.943 -78.795 69.164 -78.465 69.263 -78.271 69.374 -78.309 69.385 -78.465 ; #241 2 68.318 -79.183 68.194 -79.144 68.205 -78.950 68.318 -78.892 68.352 -79.106 ; #242 2 56.412 -78.775 56.275 -78.834 56.138 -78.814 56.275 -78.659 56.412 -78.659 ; #243 2 68.631 -78.601 68.553 -78.814 68.441 -78.795 ; #244 2 69.648 -78.542 69.539 -78.737 69.483 -78.542 69.637 -77.941 69.746 -78.135 ; #245 2 58.597 -78.659 58.544 -78.465 58.664 -78.659 ; #246 2 60.803 -78.426 60.764 -78.620 60.738 -78.426 60.803 -78.232 ; #247 2 63.465 -78.406 63.341 -78.426 63.119 -78.038 63.107 -77.844 63.169 -77.630 63.292 -77.552 63.427 -77.688 63.465 -77.882 63.465 -78.076 63.501 -78.212 ; #248 2 64.026 -77.630 63.941 -77.824 64.002 -77.630 ; #249 2 55.558 -77.416 55.433 -77.610 55.642 -77.203 ; #250 2 63.599 -76.814 63.660 -77.028 63.685 -77.222 63.672 -77.416 63.550 -77.300 63.402 -76.911 63.365 -76.698 63.477 -76.678 ; #251 2 69.396 -77.339 69.286 -77.358 69.175 -77.319 69.120 -77.106 69.120 -76.911 69.230 -76.873 69.308 -76.678 69.418 -76.698 69.396 -76.892 69.439 -77.106 ; #252 2 67.308 -77.106 67.240 -76.892 67.228 -76.698 67.262 -76.115 67.251 -75.902 67.354 -75.494 67.423 -75.300 67.503 -75.106 67.628 -75.028 67.980 -75.144 68.092 -75.028 68.205 -75.106 68.329 -75.708 68.340 -75.921 68.296 -76.115 68.329 -76.309 68.239 -76.717 68.126 -76.892 67.901 -77.164 67.787 -77.261 67.674 -77.300 67.548 -77.222 67.434 -77.222 67.423 -77.183 ; #253 2 68.329 -74.814 68.441 -74.892 68.553 -74.911 68.664 -74.989 68.687 -75.183 68.620 -75.377 68.508 -75.397 68.329 -74.989 ; #254 2 68.564 -74.775 68.586 -74.562 68.675 -74.775 ; #255 2 68.059 -74.251 68.171 -74.329 68.070 -74.523 68.070 -74.717 67.957 -74.756 67.844 -74.620 67.776 -74.426 67.787 -74.018 67.765 -73.416 67.878 -73.397 67.991 -73.494 68.002 -73.649 ; #256 2 62.660 -74.484 62.623 -74.290 62.673 -74.077 62.685 -74.290 62.735 -74.484 ; #257 2 68.363 -74.348 68.250 -74.135 68.374 -74.135 68.464 -74.329 ; #258 2 62.809 -70.679 62.834 -70.873 62.797 -71.067 62.722 -70.873 62.598 -70.814 62.523 -70.407 62.598 -70.212 62.722 -70.387 62.772 -70.581 ; #259 2 59.126 -69.358 58.994 -69.203 59.126 -69.183 ; #260 2 60.572 -67.999 60.494 -68.193 60.365 -68.329 60.236 -68.387 60.236 -68.174 60.300 -67.979 60.429 -67.785 60.558 -67.941 ; #261 -3 29.940 -88.814 29.904 -88.814 29.993 -88.833 ; #262 -3 29.816 -88.814 29.745 -88.853 29.904 -88.814 ; #263 -2 47.293 -88.523 47.417 -88.309 47.478 -87.921 47.432 -87.727 47.401 -87.921 47.340 -87.979 47.063 -88.368 47.125 -88.542 47.140 -88.562 ; #264 -3 47.125 -88.542 47.125 -88.562 47.140 -88.562 ; #265 -3 76.450 -88.620 76.544 -88.659 76.441 -88.833 76.422 -89.028 76.432 -89.222 76.563 -89.649 76.656 -89.436 76.852 -89.533 76.981 -88.931 77.008 -88.717 77.128 -88.271 77.110 -88.057 77.128 -87.649 77.101 -87.455 77.174 -87.241 77.183 -87.047 77.128 -86.834 77.174 -86.620 77.201 -87.047 77.293 -87.241 77.340 -87.028 77.349 -86.834 77.367 -87.028 77.358 -87.241 77.331 -87.436 77.349 -87.649 77.449 -87.766 77.540 -87.707 77.622 -88.135 77.713 -88.154 77.813 -88.096 77.894 -87.300 77.885 -86.892 77.840 -86.484 77.804 -86.290 77.731 -86.076 77.632 -85.882 77.540 -85.804 77.440 -85.766 77.458 -85.552 77.395 -85.358 77.376 -84.989 76.563 -84.989 76.572 -85.028 76.478 -85.008 76.469 -84.989 76.301 -84.989 76.301 -85.435 76.338 -85.630 76.375 -86.251 76.478 -86.406 76.516 -86.212 76.637 -86.620 76.563 -86.426 76.469 -86.640 76.375 -86.698 76.366 -86.892 76.385 -87.105 76.450 -87.319 76.544 -87.494 76.450 -87.552 76.357 -87.416 76.338 -87.630 76.394 -87.824 76.357 -88.018 76.394 -88.426 76.487 -88.348 76.684 -88.503 76.786 -88.484 76.739 -88.678 76.544 -88.503 ; #266 -3 81.004 -86.678 81.086 -86.018 81.209 -85.397 81.251 -84.989 81.070 -84.989 81.053 -85.571 81.037 -85.785 80.913 -86.406 80.846 -86.600 80.739 -87.008 80.647 -87.183 80.630 -87.416 80.630 -87.630 80.688 -88.038 80.696 -88.251 80.772 -88.678 80.846 -89.280 80.929 -89.377 80.987 -88.756 81.004 -88.329 81.004 -87.902 80.979 -87.494 80.979 -87.280 ; #267 2 21.845 -84.756 21.938 -84.562 21.827 -84.368 21.919 -84.173 22.179 -83.785 22.197 -83.533 22.345 -83.144 22.530 -82.970 22.696 -82.678 22.659 -82.096 22.678 -81.843 22.585 -81.649 22.530 -81.649 22.290 -81.999 22.179 -81.785 22.179 -81.397 22.049 -81.203 22.234 -81.144 22.049 -80.989 22.067 -80.465 22.142 -80.445 22.030 -80.406 21.901 -80.290 21.827 -80.096 21.716 -79.999 21.753 -79.999 21.549 -79.144 21.623 -78.853 21.605 -78.698 21.364 -78.562 20.992 -78.426 20.694 -78.038 20.713 -77.824 20.676 -77.533 20.713 -77.339 20.546 -77.242 20.471 -77.086 20.360 -77.106 20.304 -77.164 20.173 -77.436 20.005 -77.630 19.836 -77.630 19.912 -77.222 19.893 -76.970 19.986 -76.174 19.949 -75.766 19.875 -75.377 19.893 -75.222 19.968 -75.164 20.005 -75.183 20.005 -75.086 19.968 -75.144 19.893 -75.067 20.005 -74.873 20.061 -74.271 20.247 -74.135 20.284 -74.329 20.378 -74.523 20.546 -74.717 20.601 -74.737 20.713 -75.183 20.731 -75.377 20.694 -75.572 20.731 -75.766 20.918 -75.708 20.937 -75.630 21.122 -75.708 21.085 -76.115 21.252 -76.309 21.270 -76.542 21.456 -76.950 21.531 -77.008 21.456 -77.203 21.623 -77.339 21.568 -77.144 21.753 -77.319 21.790 -77.708 21.901 -77.902 22.087 -78.076 22.308 -78.542 22.308 -78.737 22.401 -78.989 22.382 -79.183 22.456 -79.397 22.899 -79.804 22.936 -79.999 22.936 -80.406 23.064 -80.601 23.083 -80.756 23.046 -80.950 23.193 -81.164 23.101 -81.475 23.157 -81.669 23.157 -82.329 23.064 -82.542 22.972 -82.950 23.009 -83.028 22.991 -83.222 22.880 -83.416 22.770 -83.785 22.585 -84.173 22.401 -84.348 22.216 -84.426 22.030 -84.290 22.049 -84.504 21.882 -84.892 ; #268 2 21.475 -82.737 21.586 -82.542 21.771 -82.640 21.919 -82.834 21.864 -83.028 21.679 -83.009 21.494 -83.086 21.438 -82.892 ; #269 2 19.257 -81.397 19.350 -81.203 19.332 -81.397 ; #270 2 25.136 -80.406 24.953 -80.581 25.117 -80.387 25.336 -80.271 ; #271 2 26.534 -78.601 26.624 -78.212 26.733 -77.999 26.697 -78.406 26.769 -78.601 26.588 -78.698 26.624 -78.892 26.479 -78.698 ; #272 2 22.549 -78.426 22.493 -78.620 22.419 -78.426 ; #273 2 17.944 -76.717 17.944 -76.775 17.869 -76.445 18.000 -76.251 18.094 -76.309 18.207 -76.504 18.264 -76.698 18.357 -76.873 18.451 -77.261 18.507 -77.727 18.507 -77.805 18.432 -77.999 18.451 -78.154 18.264 -78.368 18.226 -78.348 18.189 -78.154 18.056 -77.960 17.869 -77.766 17.850 -77.397 17.812 -77.319 17.981 -76.814 ; #274 2 24.880 -78.193 24.698 -78.329 24.515 -78.329 24.478 -78.135 24.295 -78.018 24.423 -77.824 24.606 -77.746 24.971 -77.941 25.154 -77.999 25.209 -78.193 ; #275 2 23.892 -77.513 24.075 -77.708 24.259 -77.727 24.094 -77.921 23.910 -77.824 23.726 -77.649 ; #276 2 22.067 -77.708 22.012 -77.902 21.901 -77.708 ; #277 2 26.190 -77.164 26.371 -77.028 26.552 -77.086 26.679 -77.300 26.842 -77.494 26.896 -77.688 26.896 -77.882 26.805 -77.475 26.606 -77.339 26.426 -77.222 26.244 -77.222 26.063 -77.339 25.881 -77.222 ; #278 2 25.336 -76.445 25.172 -76.251 24.990 -76.154 24.807 -76.154 24.990 -76.135 25.172 -76.174 25.336 -76.387 25.427 -76.581 25.409 -76.775 25.409 -76.581 ; #279 2 34.777 -76.426 34.606 -76.542 34.777 -76.387 34.914 -76.213 ; #280 2 23.597 -76.018 23.542 -75.824 23.671 -76.018 ; #281 2 24.313 -75.397 24.679 -75.669 24.313 -75.475 24.130 -75.455 ; #282 2 35.582 -75.436 35.752 -75.494 35.582 -75.455 35.410 -75.494 35.240 -75.630 35.240 -75.533 ; #283 2 23.101 -75.067 22.917 -74.873 23.101 -75.028 23.285 -75.086 23.671 -75.300 ; #284 2 22.733 -74.077 22.733 -74.290 22.659 -74.077 ; #285 2 22.234 -74.174 22.308 -74.057 22.493 -73.863 22.678 -74.018 22.493 -73.882 22.234 -74.174 22.197 -74.251 22.160 -74.271 ; #286 2 40.698 -73.144 40.796 -72.756 40.812 -72.562 41.041 -71.979 41.058 -72.174 40.944 -72.562 41.107 -72.387 41.009 -72.581 40.960 -72.776 40.977 -72.970 40.894 -73.358 40.928 -73.552 40.796 -73.766 40.747 -73.960 40.584 -73.999 40.584 -73.805 40.665 -73.397 ; #287 2 20.955 -73.280 21.066 -73.086 21.252 -73.086 21.141 -73.280 21.196 -73.494 21.103 -73.688 20.918 -73.669 ; #288 2 18.808 -72.834 18.901 -73.028 18.845 -73.222 18.752 -73.028 18.695 -72.814 ; #289 2 22.364 -72.795 22.364 -72.989 22.290 -72.776 ; #290 2 20.005 -72.620 20.061 -72.756 20.042 -72.950 20.005 -72.717 ; #291 2 41.627 -71.261 41.464 -71.300 41.627 -71.222 ; #292 2 41.334 -69.999 41.270 -70.193 41.253 -69.999 ; #293 2 44.429 -68.348 44.271 -68.271 44.445 -68.232 ; #294 -3 69.823 -85.397 69.823 -85.591 69.855 -85.494 69.834 -85.280 69.767 -85.086 69.812 -84.989 69.153 -84.989 69.175 -85.028 69.186 -85.241 69.263 -85.435 69.374 -85.455 69.483 -85.533 69.593 -85.455 ; #295 -3 29.691 -85.377 29.869 -85.397 29.691 -85.319 ; #296 -3 77.576 -85.047 77.558 -84.989 77.477 -84.989 77.458 -85.067 77.531 -85.261 77.540 -85.474 77.585 -85.261 ; #297 -3 82.475 -84.989 82.021 -84.989 82.061 -85.824 82.093 -86.018 82.126 -86.640 82.181 -86.834 82.229 -86.620 82.221 -86.173 82.237 -85.979 82.237 -85.746 82.285 -85.358 82.364 -85.533 82.420 -85.746 82.468 -85.552 82.483 -85.086 ; #298 -2 66.883 -84.989 66.917 -84.911 66.883 -84.698 66.814 -84.504 66.686 -84.329 66.651 -84.135 66.535 -84.076 66.419 -83.882 66.279 -83.766 66.162 -83.785 66.221 -83.979 66.314 -84.173 66.291 -84.387 66.407 -84.523 66.291 -84.542 66.174 -84.484 66.279 -84.989 ; #299 -2 68.754 -84.989 68.799 -84.795 68.810 -84.989 68.954 -84.989 68.943 -84.795 68.998 -84.989 69.032 -84.833 69.021 -84.620 69.076 -84.833 69.153 -84.989 69.812 -84.989 69.855 -84.892 69.844 -84.698 69.866 -84.484 69.702 -83.669 69.702 -83.261 69.680 -83.067 69.702 -82.659 69.648 -82.465 69.637 -82.251 69.637 -82.465 69.615 -82.659 69.505 -82.581 69.539 -83.183 69.505 -82.989 69.494 -82.775 69.439 -82.465 69.341 -82.271 69.230 -82.193 69.274 -81.999 69.208 -81.397 69.098 -81.319 69.010 -81.533 68.887 -81.921 68.898 -81.727 68.843 -81.513 68.821 -81.319 68.710 -81.261 68.597 -81.358 68.531 -81.571 68.531 -81.766 68.419 -81.960 68.464 -82.193 68.464 -82.387 68.519 -82.601 68.408 -82.601 68.408 -82.504 68.296 -82.465 68.227 -82.271 68.115 -82.212 68.216 -82.018 68.104 -82.115 67.980 -82.154 67.867 -81.999 67.662 -81.611 67.594 -81.397 67.480 -81.242 67.125 -81.416 66.998 -81.591 66.998 -81.785 66.941 -81.979 66.710 -82.154 66.733 -82.348 66.627 -82.542 66.558 -82.737 66.546 -82.950 66.360 -83.338 66.407 -83.533 66.523 -83.688 66.558 -83.882 66.674 -83.863 66.791 -83.999 66.710 -84.193 66.802 -84.406 66.929 -84.387 66.975 -84.581 66.987 -84.465 67.010 -84.659 66.987 -84.873 66.975 -84.678 66.952 -84.989 ; #300 -3 68.876 -85.183 68.954 -84.989 68.810 -84.989 ; #301 -2 71.038 -85.006 71.028 -84.986 70.922 -84.967 70.996 -84.773 71.102 -84.831 71.208 -84.695 71.313 -84.812 71.420 -84.753 71.462 -84.540 71.671 -84.734 71.640 -84.948 71.650 -85.006 72.244 -85.006 72.244 -84.986 72.172 -84.792 72.058 -84.384 71.953 -84.190 72.058 -84.326 72.233 -84.715 72.295 -84.928 72.358 -84.734 72.368 -84.520 72.368 -84.734 72.420 -84.948 72.410 -85.006 72.901 -85.006 72.891 -84.928 72.850 -84.520 72.799 -84.326 72.789 -84.132 72.901 -84.715 72.983 -85.006 73.115 -85.006 73.064 -84.598 73.034 -84.190 73.024 -83.763 73.064 -83.977 73.064 -84.171 73.115 -84.579 73.186 -84.986 73.197 -85.006 73.348 -85.006 73.388 -84.831 73.287 -84.617 73.247 -84.404 73.317 -84.598 73.429 -84.481 73.459 -84.288 73.439 -83.860 73.358 -83.666 73.459 -83.705 73.529 -83.919 73.579 -83.705 73.640 -83.297 73.650 -83.083 73.710 -82.889 73.730 -82.695 73.720 -81.685 73.680 -81.472 73.579 -81.297 73.469 -81.219 73.267 -81.219 73.197 -80.812 73.145 -80.618 73.034 -80.618 72.931 -80.656 72.830 -80.501 72.779 -80.307 72.574 -80.540 72.522 -80.754 72.451 -80.948 72.244 -81.317 72.420 -80.909 72.482 -80.714 72.461 -80.501 72.358 -80.637 72.264 -80.831 72.161 -80.850 72.058 -80.637 72.099 -80.831 72.037 -81.045 71.984 -80.831 71.880 -80.967 71.984 -80.754 72.016 -80.559 72.078 -80.365 72.182 -80.326 72.285 -80.210 72.172 -79.996 72.161 -79.802 72.223 -80.016 72.295 -80.132 72.399 -80.016 72.451 -79.744 72.337 -79.627 72.233 -79.724 72.295 -79.530 72.399 -79.375 72.275 -78.967 72.172 -78.986 71.953 -79.142 71.953 -78.928 71.880 -78.521 71.953 -78.715 72.058 -78.890 72.161 -78.831 72.120 -78.637 72.027 -78.443 71.911 -78.365 71.807 -78.171 71.776 -77.957 71.828 -78.152 71.932 -78.326 71.932 -78.132 71.828 -77.957 71.818 -77.763 71.870 -77.957 71.974 -78.152 72.016 -78.365 72.120 -78.462 72.223 -78.890 72.326 -78.734 72.316 -78.540 72.213 -78.423 72.316 -78.346 72.264 -77.938 72.172 -77.530 72.182 -77.336 72.130 -77.006 72.182 -77.200 72.213 -77.627 72.306 -78.016 72.379 -78.423 72.482 -78.559 72.594 -78.404 72.697 -77.996 72.707 -77.802 72.759 -77.588 72.748 -76.987 72.728 -76.792 72.626 -76.579 72.584 -76.171 72.471 -76.074 72.584 -76.016 72.584 -75.821 72.512 -75.394 72.440 -75.181 72.337 -75.064 72.223 -75.006 72.141 -75.220 72.141 -75.627 72.089 -76.035 71.984 -76.171 71.880 -76.385 71.953 -76.190 72.058 -75.996 72.109 -75.783 72.120 -75.588 72.099 -75.394 72.006 -75.588 71.891 -75.666 71.787 -75.783 71.714 -75.996 71.734 -75.802 71.839 -75.647 71.953 -75.588 72.027 -75.181 72.130 -75.006 72.099 -74.831 72.089 -74.443 72.058 -74.229 71.953 -74.132 71.839 -74.229 71.787 -74.618 71.724 -74.831 71.693 -75.239 71.629 -75.025 71.545 -75.239 71.660 -74.831 71.660 -74.637 71.556 -74.812 71.514 -75.006 71.441 -74.792 71.335 -74.831 71.219 -74.967 71.313 -74.773 71.430 -74.656 71.535 -74.754 71.640 -74.559 71.693 -74.365 71.660 -74.152 71.556 -74.171 71.660 -74.093 71.766 -73.938 71.776 -73.724 71.671 -73.783 71.566 -73.957 71.462 -74.035 71.420 -74.249 71.430 -74.035 71.324 -74.152 71.219 -74.190 71.324 -74.016 71.535 -73.860 71.587 -73.647 71.483 -73.627 71.366 -73.472 71.271 -73.666 71.154 -73.724 71.049 -73.899 71.081 -73.705 71.187 -73.666 71.292 -73.492 71.324 -73.278 71.261 -73.084 71.219 -73.278 71.112 -73.297 70.996 -73.394 71.102 -73.258 71.219 -73.181 71.261 -73.084 71.292 -72.987 71.398 -73.006 71.503 -72.851 71.545 -72.656 71.640 -72.462 71.514 -71.647 71.462 -71.453 71.356 -71.258 71.250 -71.142 71.166 -71.356 71.059 -71.491 71.112 -71.899 71.070 -72.093 70.953 -72.268 70.857 -72.482 70.815 -72.676 70.836 -72.482 70.772 -72.287 70.665 -72.443 70.622 -72.637 70.633 -72.501 70.698 -72.287 70.783 -72.093 70.857 -71.686 70.868 -71.472 70.899 -71.278 71.007 -71.220 71.112 -70.831 71.059 -70.618 70.953 -70.540 70.836 -70.695 70.730 -70.792 70.675 -70.987 70.579 -71.181 70.601 -71.394 70.558 -71.589 70.450 -71.763 70.407 -71.958 70.407 -71.744 70.289 -71.841 70.386 -71.686 70.494 -71.608 70.558 -71.394 70.537 -71.181 70.321 -71.336 70.202 -71.356 70.094 -71.433 70.180 -71.317 70.622 -71.006 70.783 -70.404 70.846 -70.016 70.815 -69.822 70.686 -70.094 70.633 -70.288 70.611 -70.404 70.601 -70.501 70.494 -70.327 70.611 -70.404 70.633 -70.016 70.708 -69.822 70.762 -69.608 70.772 -69.414 70.762 -69.200 70.654 -68.812 70.590 -68.424 70.472 -68.346 70.364 -68.482 70.418 -68.676 70.311 -68.793 70.257 -69.414 70.159 -69.822 70.073 -70.016 70.051 -70.016 69.996 -69.822 69.953 -70.210 69.834 -70.404 69.964 -70.016 69.996 -69.744 70.029 -69.802 70.148 -69.666 70.213 -69.064 70.202 -68.870 70.159 -68.657 70.051 -68.793 69.985 -69.064 69.909 -69.278 69.812 -69.472 69.834 -69.686 69.779 -69.899 69.659 -70.016 69.615 -70.016 69.779 -69.802 69.812 -69.608 69.779 -69.414 69.888 -69.220 69.996 -68.598 70.116 -68.210 70.224 -68.307 70.321 -68.094 70.300 -67.996 70.289 -68.016 69.767 -68.016 69.767 -68.035 69.713 -68.229 69.626 -68.424 69.626 -68.831 69.539 -69.220 69.561 -69.822 69.539 -70.016 69.516 -70.016 69.505 -69.938 69.550 -69.744 69.505 -69.336 69.593 -68.715 69.571 -68.520 69.472 -68.016 69.263 -68.016 69.297 -68.152 69.308 -68.560 69.352 -68.967 69.297 -69.161 69.330 -68.967 69.274 -68.365 69.197 -68.171 69.230 -68.560 69.208 -68.773 69.186 -68.540 69.087 -68.948 68.976 -68.967 69.087 -68.870 69.164 -68.462 69.153 -68.268 69.109 -68.055 69.087 -68.016 68.987 -68.016 68.976 -68.074 68.998 -68.268 68.965 -68.482 68.965 -68.268 68.865 -68.074 68.898 -68.288 68.887 -68.482 68.876 -68.288 68.810 -68.016 68.787 -68.016 68.821 -68.307 68.810 -68.385 68.810 -68.424 68.799 -68.424 68.787 -68.520 68.810 -68.909 68.843 -69.103 68.810 -69.297 68.799 -69.084 68.743 -68.695 68.721 -68.307 68.631 -68.094 68.653 -68.715 68.597 -68.909 68.620 -68.715 68.586 -68.520 68.564 -68.715 68.586 -68.327 68.531 -68.132 68.542 -68.016 65.986 -68.016 65.997 -68.035 66.115 -68.132 66.221 -68.327 66.174 -68.715 66.186 -68.520 66.091 -68.307 66.079 -68.113 65.962 -68.152 66.009 -68.346 65.892 -68.152 65.774 -68.055 65.774 -68.016 63.538 -68.016 63.733 -68.598 63.721 -68.987 63.599 -68.870 63.501 -68.676 63.439 -68.462 63.193 -68.210 63.144 -68.016 62.210 -68.016 62.261 -68.579 62.386 -68.987 62.424 -69.181 62.635 -69.569 62.760 -69.433 62.785 -69.627 62.747 -69.822 62.747 -70.171 62.785 -70.365 62.871 -70.560 62.884 -70.754 62.971 -70.967 63.095 -71.025 63.045 -71.220 63.021 -71.220 63.119 -71.414 63.132 -71.608 63.255 -71.783 63.378 -71.822 63.439 -72.016 63.427 -71.627 63.489 -71.433 63.611 -71.258 63.745 -71.783 63.709 -71.977 63.758 -72.385 63.880 -72.268 63.819 -72.462 63.856 -72.676 63.990 -72.676 64.038 -72.870 64.159 -72.928 64.245 -73.123 64.366 -73.278 64.426 -73.472 64.534 -73.278 64.655 -73.336 64.522 -73.356 64.583 -73.550 64.558 -73.744 64.583 -73.938 64.462 -73.977 64.342 -74.132 64.462 -74.171 64.522 -73.977 64.558 -74.171 64.679 -74.152 64.631 -74.346 64.619 -74.540 64.739 -74.715 64.871 -74.676 64.763 -74.889 64.546 -74.501 64.426 -74.618 64.378 -74.812 64.426 -75.006 64.426 -75.200 64.571 -75.608 64.571 -75.802 64.450 -75.685 64.378 -75.880 64.354 -76.093 64.281 -76.287 64.305 -76.482 64.281 -76.695 64.233 -76.890 64.269 -77.084 64.257 -77.278 64.305 -77.472 64.390 -77.666 64.366 -77.880 64.486 -78.054 64.715 -78.229 64.847 -78.093 64.967 -78.152 65.050 -77.957 65.170 -77.355 65.289 -77.491 65.420 -77.394 65.455 -77.200 65.432 -77.142 65.432 -76.928 65.337 -76.326 65.278 -76.132 65.253 -75.938 65.146 -75.744 65.110 -75.550 64.991 -75.433 64.943 -75.627 64.823 -75.472 64.871 -75.491 64.955 -75.297 65.074 -75.200 65.039 -75.414 65.158 -75.588 65.241 -75.783 65.278 -75.588 65.264 -75.394 65.253 -75.181 65.372 -75.123 65.384 -74.812 65.337 -74.618 65.384 -74.423 65.479 -74.229 65.526 -73.822 65.467 -73.627 65.585 -73.608 65.716 -73.705 65.904 -74.113 66.139 -74.482 66.244 -74.287 66.302 -74.093 66.535 -73.511 66.651 -73.356 66.710 -73.161 66.674 -72.559 66.686 -72.152 66.546 -71.356 66.430 -71.278 66.314 -71.142 66.197 -71.181 66.079 -71.297 66.091 -71.103 66.009 -71.297 65.951 -71.297 65.997 -71.103 66.115 -70.928 66.209 -70.734 66.326 -70.637 66.209 -70.443 66.209 -70.249 66.256 -70.016 66.197 -69.627 66.314 -69.453 66.372 -69.258 66.454 -69.453 66.442 -69.647 66.558 -69.258 66.512 -69.453 66.604 -69.647 66.710 -70.016 66.744 -70.423 66.802 -70.618 66.929 -70.754 67.021 -71.142 66.906 -71.181 66.791 -71.317 66.674 -71.375 66.616 -71.569 66.686 -71.977 66.710 -72.365 66.710 -72.773 66.744 -72.967 66.872 -72.967 66.987 -72.851 67.079 -72.656 67.090 -72.462 67.217 -72.287 67.331 -72.385 67.560 -72.482 67.674 -72.656 67.799 -72.637 67.855 -72.831 68.194 -73.006 68.239 -73.200 68.250 -73.414 68.374 -73.317 68.296 -73.511 68.272 -73.627 68.307 -73.666 68.352 -73.880 68.464 -73.899 68.575 -73.763 68.699 -73.841 68.642 -74.035 68.531 -74.016 68.508 -74.210 68.553 -74.423 68.675 -74.598 68.787 -74.695 68.821 -74.909 68.898 -74.695 69.010 -74.870 69.032 -74.656 69.076 -74.851 68.998 -75.064 68.887 -75.200 68.976 -75.394 68.987 -75.588 68.876 -75.647 68.675 -76.443 68.687 -76.656 68.799 -76.598 68.920 -76.656 69.032 -76.598 69.054 -76.385 69.010 -75.977 69.164 -75.588 69.274 -75.705 69.385 -76.113 69.407 -76.307 69.483 -76.521 69.604 -76.579 69.670 -76.385 69.571 -76.773 69.593 -76.987 69.702 -77.025 69.702 -76.831 69.812 -76.851 69.855 -77.045 69.877 -77.258 69.931 -77.064 69.888 -77.258 69.779 -77.472 69.779 -77.666 70.127 -77.705 70.246 -77.821 70.202 -78.210 70.246 -78.423 70.353 -78.462 70.375 -78.676 70.461 -78.870 70.461 -79.083 70.579 -78.928 70.547 -78.734 70.622 -78.928 70.643 -79.142 70.526 -79.142 70.418 -79.239 70.472 -79.433 70.364 -79.433 70.311 -79.239 70.332 -79.025 70.224 -78.851 69.996 -78.676 69.877 -78.812 69.888 -79.414 69.844 -79.627 69.931 -79.821 69.942 -80.016 69.996 -80.152 69.996 -80.423 70.040 -80.637 70.062 -81.045 70.094 -81.239 70.094 -81.452 70.062 -81.647 69.996 -81.452 69.996 -81.239 69.920 -81.122 69.855 -80.928 69.735 -80.831 69.746 -81.025 69.909 -81.433 69.996 -81.841 70.127 -82.190 70.191 -82.598 70.278 -82.986 70.202 -82.792 70.083 -82.190 69.975 -81.919 69.855 -81.860 69.866 -82.054 69.844 -82.462 69.996 -83.064 69.996 -83.317 69.942 -83.647 69.996 -84.443 69.996 -84.676 70.094 -84.870 70.083 -85.006 ; #302 2 71.091 -85.125 71.166 -85.028 71.144 -85.222 71.166 -85.435 71.144 -85.649 71.112 -85.863 71.007 -86.271 70.985 -86.465 71.017 -86.659 71.059 -86.271 71.187 -85.843 71.198 -85.649 71.282 -85.261 71.282 -85.047 71.292 -84.989 71.038 -84.989 ; #303 -3 71.420 -84.989 71.324 -84.853 71.292 -84.989 ; #304 -3 71.693 -85.338 71.797 -85.435 71.911 -85.610 71.996 -86.018 72.016 -85.804 72.058 -85.610 72.141 -85.416 72.254 -85.377 72.254 -85.183 72.244 -84.989 71.650 -84.989 ; #305 -3 72.389 -85.125 72.410 -85.338 72.471 -85.533 72.574 -85.494 72.667 -85.688 72.871 -85.649 72.973 -85.513 72.963 -85.319 72.901 -84.989 72.410 -84.989 ; #306 -3 73.024 -85.125 73.034 -85.533 73.135 -85.397 73.145 -85.183 73.115 -84.989 72.983 -84.989 ; #307 -3 73.247 -85.164 73.348 -85.008 73.348 -84.989 73.197 -84.989 ; #308 2 76.150 -81.436 76.187 -81.222 76.178 -81.416 ; #309 2 73.710 -80.212 73.759 -80.406 73.749 -80.814 73.328 -80.873 73.277 -80.678 73.237 -80.251 73.135 -80.173 73.034 -80.173 72.921 -80.037 72.860 -79.999 72.820 -79.785 72.748 -79.591 72.728 -79.377 72.779 -78.970 72.850 -78.581 72.891 -78.154 72.891 -77.533 72.840 -77.144 72.830 -76.737 72.809 -76.542 72.809 -76.329 72.840 -76.135 72.953 -76.290 73.054 -76.309 73.115 -76.504 73.227 -76.581 73.328 -76.737 73.328 -76.931 73.439 -77.106 73.509 -77.300 73.559 -77.513 73.660 -78.115 73.660 -78.737 73.630 -78.950 73.630 -79.339 73.720 -79.999 ; #310 2 72.451 -79.591 72.347 -79.533 72.451 -79.552 ; #311 2 76.121 -78.950 76.007 -79.377 75.913 -79.572 75.819 -79.572 75.866 -79.358 75.875 -78.970 75.960 -79.164 76.017 -78.970 76.112 -78.892 ; #312 2 72.440 -78.989 72.337 -78.950 72.379 -78.737 72.440 -78.931 ; #313 2 78.697 -74.562 78.759 -74.348 78.776 -74.562 ; #314 2 71.303 -72.989 71.420 -73.008 71.524 -72.970 71.451 -73.164 71.566 -73.183 71.462 -73.300 71.356 -73.261 71.292 -73.067 ; #315 2 71.545 -72.912 71.556 -72.698 71.660 -72.717 71.650 -72.931 ; #316 5 77.376 -72.446 77.302 -72.018 77.320 -71.610 77.395 -71.397 77.458 -72.232 ; #317 2 71.070 -71.824 70.922 -72.212 70.815 -72.057 70.889 -71.630 70.899 -71.436 71.017 -71.378 71.049 -71.785 ; #318 5 77.422 -71.183 77.367 -70.970 77.385 -70.368 77.413 -70.174 77.458 -70.814 77.458 -71.241 ; #319 5 76.554 -69.999 76.535 -69.785 76.544 -69.572 76.600 -69.805 76.582 -69.999 ; #320 -3 73.779 -84.989 73.740 -84.853 73.670 -84.989 ; #321 -2 75.656 -84.989 75.656 -84.795 75.704 -84.387 75.819 -83.979 75.819 -83.785 75.751 -83.377 75.751 -82.970 75.789 -82.775 75.837 -82.348 75.808 -81.940 75.808 -81.513 75.751 -81.106 75.647 -81.222 75.647 -80.601 75.628 -80.387 75.608 -80.193 75.541 -79.999 75.522 -79.999 75.465 -80.212 75.465 -79.708 75.387 -79.494 75.291 -79.591 75.194 -79.591 75.166 -79.785 75.089 -79.999 75.020 -80.406 74.953 -80.193 75.011 -79.940 75.030 -79.746 74.972 -79.513 74.874 -79.377 74.826 -79.999 74.864 -80.329 74.777 -80.135 74.679 -80.212 74.582 -80.232 74.562 -80.640 74.582 -81.067 74.562 -81.261 74.473 -81.669 74.473 -82.076 74.532 -82.484 74.522 -82.678 74.542 -82.873 74.631 -83.086 74.826 -83.105 74.845 -83.319 74.835 -83.513 74.768 -83.319 74.572 -83.513 74.542 -83.727 74.542 -83.940 74.513 -84.135 74.503 -84.348 74.513 -84.756 74.592 -84.970 74.640 -84.989 ; #322 2 76.469 -84.989 76.404 -84.814 76.329 -84.387 76.301 -84.620 76.301 -84.989 ; #323 -2 76.478 -85.008 76.572 -85.028 76.563 -84.989 76.469 -84.989 ; #324 -2 77.376 -84.989 77.376 -84.950 77.320 -84.756 77.293 -84.542 77.385 -84.620 77.395 -83.999 77.358 -83.591 77.431 -83.785 77.477 -83.591 77.504 -83.377 77.585 -83.183 77.858 -82.640 78.046 -82.368 78.065 -82.562 78.011 -82.775 77.920 -82.737 77.876 -82.950 77.594 -83.455 77.531 -83.669 77.494 -83.863 77.522 -84.309 77.522 -84.717 77.613 -84.678 77.686 -84.484 77.603 -84.911 77.613 -84.989 77.885 -84.989 77.902 -84.504 77.902 -84.989 78.037 -84.989 78.029 -84.717 78.074 -84.523 78.074 -84.329 78.083 -84.523 78.056 -84.737 78.065 -84.950 78.164 -84.989 78.199 -84.601 78.154 -84.193 78.208 -84.406 78.208 -84.795 78.297 -84.853 78.334 -84.620 78.360 -84.833 78.449 -84.814 78.537 -84.698 78.449 -84.892 78.360 -84.970 78.351 -84.989 78.908 -84.989 78.864 -84.601 78.838 -83.766 78.793 -83.552 78.776 -83.338 78.723 -83.144 78.670 -82.737 78.591 -82.523 78.565 -82.309 78.653 -82.465 78.714 -82.251 78.750 -82.445 78.723 -82.659 78.793 -83.067 78.846 -82.873 78.829 -82.465 78.864 -82.037 78.864 -81.824 78.952 -81.707 79.040 -81.494 79.031 -81.707 79.004 -81.902 78.917 -82.115 78.882 -82.523 78.934 -82.950 78.943 -83.164 78.926 -83.571 78.943 -83.785 78.978 -84.406 79.013 -84.620 79.101 -84.678 79.144 -84.465 79.101 -84.057 79.040 -83.824 79.022 -83.630 79.031 -83.416 79.057 -83.630 79.153 -84.018 79.188 -84.251 79.275 -84.406 79.362 -84.445 79.439 -84.659 79.482 -84.853 79.569 -84.989 80.260 -84.989 80.277 -84.620 80.269 -83.979 80.201 -83.571 80.133 -83.377 79.861 -82.173 79.689 -81.824 79.621 -81.611 79.638 -81.397 79.578 -80.737 79.612 -80.523 79.646 -79.999 79.689 -79.785 79.697 -79.999 79.646 -80.834 79.707 -81.222 79.715 -81.416 79.766 -81.630 79.852 -81.591 79.929 -81.397 79.963 -81.630 79.997 -82.037 80.209 -82.853 80.285 -83.047 80.353 -82.853 80.353 -82.620 80.403 -81.979 80.403 -81.766 80.454 -80.911 80.462 -80.504 80.479 -80.309 80.529 -80.096 80.554 -79.222 80.563 -78.154 80.580 -78.038 80.604 -78.465 80.604 -79.785 80.663 -79.591 80.755 -78.737 80.805 -78.076 80.829 -77.630 80.846 -76.484 80.888 -76.717 80.888 -77.164 80.913 -77.572 80.905 -77.979 80.855 -78.834 80.946 -78.873 81.029 -78.795 81.070 -78.601 81.243 -77.979 81.324 -77.766 81.366 -77.358 81.431 -76.950 81.439 -77.183 81.341 -78.038 81.234 -78.426 81.201 -78.620 81.120 -78.678 81.103 -78.892 81.153 -79.300 81.193 -79.494 81.128 -79.280 81.095 -79.086 81.037 -79.300 80.954 -79.203 80.913 -79.416 80.829 -79.591 80.739 -80.212 80.663 -80.853 80.596 -81.669 80.546 -82.717 80.546 -83.144 80.630 -83.105 80.688 -82.698 80.714 -82.251 80.747 -82.018 80.805 -81.804 80.829 -82.018 80.739 -82.640 80.688 -83.280 80.696 -83.494 80.780 -83.280 80.788 -83.494 80.747 -83.688 80.580 -83.766 80.529 -83.979 80.513 -84.387 80.521 -84.795 80.504 -84.989 81.037 -84.989 81.037 -84.950 81.029 -84.717 81.070 -84.115 81.078 -83.669 81.111 -83.242 81.120 -82.834 81.169 -82.387 81.177 -82.795 81.128 -83.416 81.070 -84.989 81.251 -84.989 81.267 -84.775 81.309 -84.970 81.309 -84.989 81.917 -84.989 81.901 -84.950 81.933 -84.989 81.989 -84.989 81.982 -84.853 81.901 -84.756 81.982 -84.756 82.021 -84.970 82.021 -84.989 82.475 -84.989 82.468 -84.659 82.435 -84.678 82.435 -84.892 82.404 -84.678 82.364 -84.232 82.372 -83.999 82.333 -83.610 82.285 -83.397 82.205 -83.242 82.165 -83.047 82.085 -83.028 82.061 -82.154 82.037 -81.960 82.085 -82.193 82.093 -82.620 82.173 -82.814 82.221 -83.009 82.285 -82.775 82.277 -82.581 82.165 -81.979 82.037 -80.931 82.029 -80.737 81.989 -80.542 81.982 -80.115 81.820 -79.494 81.820 -79.280 81.901 -79.494 82.029 -80.135 82.078 -80.756 82.158 -81.164 82.221 -81.804 82.357 -82.620 82.444 -82.640 82.475 -82.504 82.507 -82.406 82.507 -81.960 82.490 -81.746 82.499 -81.475 82.514 -81.669 82.514 -81.882 82.586 -82.290 82.664 -82.251 82.672 -82.057 82.625 -81.397 82.538 -80.970 82.601 -80.756 82.711 -81.164 82.751 -81.377 82.828 -81.416 82.821 -80.931 82.797 -80.504 82.751 -80.290 82.672 -80.096 82.711 -79.882 82.672 -79.416 82.664 -78.775 82.687 -78.581 82.680 -78.795 82.696 -79.242 82.735 -79.688 82.813 -79.902 82.821 -79.688 82.837 -80.115 82.907 -80.309 82.938 -80.096 82.977 -79.416 82.954 -79.183 82.876 -79.047 82.930 -78.814 82.938 -78.620 82.876 -78.406 82.868 -78.212 82.907 -77.999 82.859 -77.358 82.656 -76.737 82.593 -76.077 82.531 -76.290 82.444 -76.426 82.483 -76.213 82.586 -75.805 82.601 -75.610 82.711 -76.426 82.774 -76.193 82.790 -76.639 82.859 -76.853 82.907 -77.067 82.923 -77.300 82.954 -77.494 83.008 -77.242 83.016 -76.562 83.039 -76.368 83.047 -76.154 83.023 -75.455 83.039 -74.931 83.016 -74.484 82.985 -74.271 82.923 -74.057 82.844 -73.882 82.751 -73.261 82.719 -72.853 82.735 -72.640 82.813 -73.300 82.945 -73.688 83.063 -73.047 83.101 -72.174 83.101 -71.941 83.070 -71.708 82.985 -71.766 82.930 -71.533 82.899 -71.125 82.899 -70.892 82.969 -71.319 83.016 -71.513 83.094 -71.106 83.109 -70.465 83.109 -70.038 82.992 -69.591 83.023 -69.125 82.985 -68.931 82.977 -68.717 83.008 -68.523 83.000 -68.329 82.930 -68.115 82.961 -67.902 82.969 -67.688 82.954 -67.494 82.751 -67.494 82.719 -67.843 82.696 -68.251 82.672 -68.465 82.625 -68.659 82.656 -67.999 82.664 -67.494 81.601 -67.494 81.561 -68.135 81.561 -68.329 81.675 -68.950 81.683 -69.145 81.618 -68.717 81.529 -68.523 81.529 -68.756 81.512 -68.562 81.553 -67.688 81.553 -67.494 81.422 -67.494 81.382 -67.863 81.300 -68.504 81.169 -70.232 81.144 -69.843 81.103 -70.057 81.103 -69.960 81.193 -69.339 81.284 -68.057 81.349 -67.494 80.905 -67.494 80.880 -67.572 80.846 -67.785 80.796 -67.979 80.772 -68.193 80.680 -68.620 80.554 -69.067 80.387 -69.436 80.361 -69.650 80.345 -70.290 80.437 -70.271 80.496 -70.484 80.504 -70.679 80.428 -70.465 80.336 -70.484 80.277 -70.057 80.192 -70.174 80.201 -70.834 80.108 -71.669 80.125 -71.863 80.184 -72.057 80.201 -72.465 80.159 -72.251 80.091 -72.018 80.073 -72.446 80.057 -72.251 80.073 -71.397 80.133 -70.737 80.082 -70.543 80.039 -70.620 79.989 -70.737 79.980 -70.814 79.963 -71.203 79.886 -71.417 79.904 -71.222 79.904 -70.989 79.817 -71.067 79.766 -71.281 79.707 -71.688 79.697 -71.921 79.672 -72.115 79.681 -72.717 79.732 -72.950 79.817 -72.931 79.835 -73.572 79.886 -73.999 79.886 -74.193 79.861 -74.407 79.843 -74.834 79.792 -74.620 79.792 -73.979 79.766 -73.785 79.758 -73.572 79.715 -73.358 79.638 -73.164 79.552 -73.125 79.509 -73.319 79.500 -73.746 79.552 -73.960 79.466 -73.960 79.439 -74.154 79.439 -74.581 79.474 -74.795 79.466 -75.008 79.379 -74.989 79.379 -75.203 79.387 -75.416 79.449 -75.805 79.431 -75.999 79.492 -76.193 79.517 -76.639 79.517 -77.047 79.482 -76.853 79.466 -76.232 79.370 -76.057 79.344 -76.251 79.353 -76.873 79.449 -77.300 79.362 -77.242 79.344 -77.436 79.344 -77.669 79.362 -77.882 79.319 -77.688 79.301 -77.494 79.257 -77.280 79.275 -76.465 79.257 -76.057 79.232 -75.863 79.232 -74.581 79.179 -74.795 79.118 -74.581 79.031 -74.484 79.022 -74.679 79.065 -75.630 79.101 -75.824 79.188 -76.018 79.196 -76.426 79.179 -77.086 79.196 -77.280 79.205 -77.727 79.188 -78.154 79.171 -77.339 79.144 -76.911 79.153 -76.698 79.101 -76.077 79.075 -76.290 79.083 -76.717 79.065 -77.106 79.013 -77.533 79.065 -77.960 79.083 -78.387 79.065 -78.814 79.065 -78.406 79.031 -77.766 78.943 -77.941 78.864 -78.154 78.776 -78.290 78.970 -77.688 79.022 -76.834 79.022 -76.387 78.996 -75.979 78.970 -75.785 78.917 -75.979 78.873 -76.407 78.890 -75.377 78.882 -75.183 78.820 -74.756 78.644 -74.853 78.599 -74.659 78.528 -75.067 78.511 -75.513 78.511 -75.921 78.537 -76.115 78.546 -76.348 78.528 -76.562 78.493 -76.154 78.458 -75.941 78.431 -75.494 78.369 -75.086 78.306 -75.300 78.208 -75.513 78.208 -75.727 78.235 -76.115 78.235 -76.717 78.154 -76.504 78.127 -75.688 78.037 -75.708 77.957 -75.902 77.993 -76.115 78.002 -76.309 77.948 -76.523 77.938 -76.737 77.902 -76.931 77.938 -77.144 77.948 -77.979 77.993 -78.174 77.929 -78.387 77.804 -77.960 77.713 -77.999 77.622 -77.785 77.558 -77.979 77.458 -78.057 77.431 -78.271 77.358 -78.484 77.311 -78.678 77.358 -78.892 77.293 -79.106 77.284 -79.319 77.311 -79.727 77.275 -79.999 77.311 -80.601 77.340 -80.814 77.422 -81.222 77.632 -81.843 77.531 -81.669 77.440 -81.746 77.385 -81.533 77.367 -81.339 77.302 -81.533 77.302 -82.154 77.257 -81.960 77.165 -81.824 77.275 -81.008 77.211 -80.173 77.110 -80.309 77.229 -79.804 77.229 -79.397 77.201 -79.183 77.110 -79.008 76.926 -79.377 76.935 -78.950 76.842 -78.970 76.823 -78.775 76.889 -78.562 76.981 -78.406 77.018 -78.193 76.981 -77.999 76.889 -77.824 76.795 -77.785 76.693 -77.805 76.628 -78.018 76.535 -78.135 76.460 -78.542 76.563 -78.562 76.572 -78.775 76.478 -78.892 76.413 -79.125 76.310 -79.242 76.310 -79.475 76.243 -79.999 76.243 -80.193 76.196 -80.406 76.187 -80.601 76.131 -80.989 76.225 -81.047 76.422 -80.775 76.478 -80.989 76.497 -81.203 76.469 -81.611 76.506 -82.018 76.600 -82.037 76.656 -81.824 76.628 -82.251 76.693 -82.445 76.786 -82.601 76.684 -82.562 76.619 -82.368 76.582 -82.173 76.487 -82.193 76.394 -82.406 76.394 -82.814 76.441 -83.028 76.535 -83.067 76.628 -83.203 76.712 -83.397 76.610 -83.358 76.516 -83.242 76.422 -83.183 76.422 -83.591 76.526 -83.999 76.628 -84.076 76.656 -84.290 76.460 -84.193 76.432 -84.620 76.516 -84.814 76.563 -84.989 ; #325 -2 77.477 -84.989 77.513 -84.853 77.558 -84.989 77.613 -84.989 77.603 -84.911 77.686 -84.484 77.613 -84.678 77.522 -84.717 77.522 -84.309 77.494 -83.863 77.531 -83.669 77.594 -83.455 77.876 -82.950 77.920 -82.737 78.011 -82.775 78.065 -82.562 78.046 -82.368 77.858 -82.640 77.585 -83.183 77.504 -83.377 77.477 -83.591 77.431 -83.785 77.358 -83.591 77.395 -83.999 77.385 -84.620 77.293 -84.542 77.320 -84.756 77.376 -84.950 77.376 -84.989 ; #326 -2 77.558 -84.989 77.513 -84.853 77.477 -84.989 ; #327 -3 77.632 -85.125 77.722 -85.319 77.794 -85.106 77.794 -85.319 77.876 -85.106 77.885 -84.989 77.613 -84.989 ; #328 -3 77.902 -84.989 77.902 -84.504 77.885 -84.989 ; #329 -3 77.902 -85.106 77.876 -85.513 77.966 -85.552 78.046 -85.125 78.037 -84.989 77.902 -84.989 ; #330 3 78.164 -84.989 78.065 -84.950 78.056 -84.737 78.083 -84.523 78.074 -84.329 78.074 -84.523 78.029 -84.717 78.037 -84.989 ; #331 -3 78.351 -84.989 78.360 -84.970 78.449 -84.892 78.537 -84.698 78.449 -84.814 78.360 -84.833 78.334 -84.620 78.297 -84.853 78.208 -84.795 78.208 -84.406 78.154 -84.193 78.199 -84.601 78.164 -84.989 ; #332 -3 78.173 -85.280 78.101 -85.474 78.056 -86.115 78.145 -86.251 78.208 -86.038 78.297 -85.902 78.235 -86.115 78.199 -86.309 78.208 -86.504 78.118 -86.717 78.101 -87.164 78.118 -87.377 78.199 -87.164 78.217 -87.358 78.306 -87.513 78.404 -87.513 78.493 -87.338 78.546 -87.144 78.546 -86.931 78.635 -86.989 78.732 -86.873 78.785 -86.678 78.855 -85.610 78.908 -85.202 78.908 -84.989 78.351 -84.989 ; #333 -3 79.284 -84.989 79.257 -84.970 79.257 -84.989 ; #334 -3 79.655 -85.202 79.689 -85.397 79.707 -85.610 79.697 -85.843 79.758 -86.465 79.938 -86.445 79.971 -86.232 79.938 -85.824 79.938 -85.610 79.904 -85.416 79.963 -85.630 79.997 -86.445 80.082 -86.620 80.175 -86.600 80.260 -86.523 80.319 -86.309 80.336 -86.115 80.336 -85.902 80.285 -85.474 80.260 -85.047 80.260 -84.989 79.569 -84.989 ; #335 -3 80.504 -85.028 80.537 -85.863 80.596 -85.669 80.580 -85.863 80.529 -86.076 80.596 -86.717 80.680 -86.640 80.755 -86.426 80.796 -86.232 80.938 -85.824 80.979 -85.610 81.037 -84.989 80.504 -84.989 ; #336 -3 81.070 -84.989 81.128 -83.416 81.177 -82.795 81.169 -82.387 81.120 -82.834 81.111 -83.242 81.078 -83.669 81.070 -84.115 81.029 -84.717 81.037 -84.950 81.037 -84.989 ; #337 -3 81.309 -84.989 81.309 -84.970 81.267 -84.775 81.251 -84.989 ; #338 -3 81.933 -84.989 81.901 -84.950 81.917 -84.989 ; #339 -3 81.989 -85.067 81.989 -84.989 81.933 -84.989 ; #340 -3 82.021 -84.989 82.021 -84.970 81.982 -84.756 81.901 -84.756 81.982 -84.853 81.989 -84.989 ; #341 -2 8.407 -82.931 8.426 -82.892 8.465 -82.834 8.542 -82.834 8.773 -82.911 8.850 -82.834 8.908 -82.717 8.947 -82.737 9.062 -82.931 9.293 -82.931 9.505 -82.834 9.562 -82.873 9.601 -82.775 9.505 -82.601 9.562 -82.562 9.447 -82.426 9.254 -82.387 9.216 -82.193 9.024 -82.251 8.927 -82.076 8.947 -81.766 9.139 -81.863 8.831 -81.571 8.773 -81.222 8.869 -80.873 9.062 -80.562 9.177 -80.173 9.312 -79.999 9.312 -79.902 9.351 -79.902 9.332 -79.882 9.370 -79.824 9.562 -79.649 9.582 -79.455 9.544 -79.300 9.544 -79.067 9.524 -79.008 9.447 -79.067 9.409 -78.873 9.409 -78.581 9.254 -78.193 9.216 -78.018 9.062 -77.824 8.869 -77.688 8.677 -77.494 8.677 -77.358 8.503 -77.280 8.137 -76.834 7.944 -76.931 8.041 -76.737 8.484 -76.814 8.677 -76.678 8.831 -76.484 9.081 -76.232 9.274 -76.096 9.428 -75.921 9.428 -75.727 9.620 -75.591 9.813 -75.630 10.082 -75.572 10.274 -75.591 10.370 -75.513 10.582 -75.513 10.697 -75.319 10.697 -75.241 10.793 -75.241 10.889 -75.047 11.100 -74.892 11.120 -74.853 10.985 -74.465 11.004 -74.290 10.947 -74.504 10.755 -74.543 10.735 -74.446 10.928 -74.290 11.196 -74.232 11.350 -74.038 11.273 -73.844 11.273 -73.339 11.426 -73.144 11.560 -72.892 11.637 -72.834 11.694 -72.737 11.886 -72.251 12.078 -72.154 12.249 -71.960 12.441 -71.572 12.307 -71.222 12.097 -71.106 11.905 -71.300 11.847 -71.319 11.694 -71.824 11.579 -72.018 11.388 -72.135 11.350 -72.135 11.158 -72.290 11.062 -72.523 10.870 -72.659 10.620 -72.776 10.428 -72.912 10.390 -72.892 10.005 -72.970 9.793 -72.989 9.544 -73.144 9.177 -73.377 9.177 -73.183 9.274 -72.989 9.197 -72.950 9.101 -72.756 9.081 -72.795 8.638 -72.659 8.388 -72.426 8.388 -72.407 8.195 -72.348 8.002 -72.407 7.963 -72.446 7.809 -72.446 7.616 -72.465 7.423 -72.426 7.403 -72.387 7.384 -72.193 7.249 -72.154 7.056 -72.057 7.017 -71.921 7.036 -71.727 6.978 -71.145 6.998 -71.125 7.094 -70.756 7.075 -70.562 6.959 -70.348 6.978 -70.115 6.824 -69.999 6.766 -69.941 6.225 -69.514 6.109 -69.417 6.090 -69.222 6.206 -68.989 6.148 -68.601 6.186 -68.484 6.167 -68.290 6.225 -68.096 6.225 -67.941 6.302 -67.747 6.244 -67.552 6.186 -67.475 6.186 -67.455 6.090 -67.475 5.973 -67.436 5.780 -67.630 5.528 -67.611 5.373 -67.805 5.179 -67.805 5.063 -67.785 5.005 -67.805 4.928 -67.824 4.734 -67.824 4.541 -67.883 4.443 -67.805 4.249 -67.805 4.075 -67.727 4.036 -67.708 3.843 -67.630 3.668 -67.455 3.474 -67.358 3.261 -67.378 3.106 -67.591 2.911 -67.785 2.795 -67.843 2.795 -67.650 2.621 -67.475 2.427 -67.261 2.290 -67.203 2.096 -67.106 2.019 -67.106 1.554 -66.950 1.223 -66.873 1.165 -67.067 1.650 -67.086 2.096 -67.319 2.096 -67.514 1.902 -67.688 1.747 -67.883 1.864 -68.077 1.844 -68.271 1.786 -68.232 1.728 -68.426 1.728 -69.377 1.767 -69.572 1.709 -69.843 1.068 -69.843 1.048 -69.377 0.893 -69.183 0.738 -69.164 0.621 -69.203 0.699 -69.397 0.680 -69.572 0.582 -69.999 0.019 -70.057 0.000 -70.057 -0.233 -69.999 -0.505 -69.610 -0.699 -69.591 -0.932 -69.514 -1.029 -69.436 -1.087 -69.436 -1.300 -69.377 -1.418 -69.436 -1.534 -69.455 -2.174 -69.572 -2.834 -69.688 -2.873 -69.688 -3.532 -69.805 -4.191 -69.941 -4.211 -69.941 -4.230 -69.960 -4.307 -69.960 -4.327 -69.999 -4.327 -70.038 -4.346 -70.193 -4.657 -69.999 -5.005 -69.785 -5.721 -69.358 -6.495 -68.873 -7.442 -68.310 -8.792 -67.455 -8.985 -67.339 -9.081 -67.281 -9.562 -67.009 -9.832 -66.834 -9.851 -66.795 -9.928 -66.640 -10.005 -66.776 -10.178 -66.970 -10.332 -67.164 -10.313 -67.281 -10.466 -67.475 -10.620 -67.669 -10.697 -67.708 -10.678 -67.785 -10.659 -67.979 -10.831 -68.193 -11.004 -68.387 -11.100 -68.581 -11.004 -68.737 -10.985 -68.776 -11.004 -68.989 -10.966 -69.164 -10.927 -69.377 -10.947 -69.572 -11.216 -69.417 -11.886 -68.989 -12.498 -68.679 -12.670 -68.737 -12.842 -68.931 -13.033 -68.950 -13.511 -68.950 -13.700 -69.067 -13.891 -68.989 -14.062 -68.892 -14.253 -69.009 -14.424 -69.028 -14.576 -69.222 -14.805 -69.358 -14.995 -69.358 -15.147 -69.222 -15.298 -69.203 -15.488 -69.339 -15.526 -69.358 -15.469 -69.377 -15.355 -69.591 -15.317 -69.785 -15.545 -69.882 -15.735 -69.805 -15.697 -69.999 -15.868 -69.999 -15.792 -69.805 -15.981 -69.650 -16.019 -69.436 -16.208 -69.494 -16.284 -69.300 -16.226 -69.106 -16.226 -69.067 -16.208 -68.950 -16.378 -69.028 -16.586 -69.028 -16.643 -68.989 -16.661 -69.009 -16.813 -69.203 -17.002 -69.377 -17.284 -69.650 -17.398 -69.494 -17.511 -69.494 -17.567 -69.572 -17.699 -69.843 -17.906 -69.805 -18.075 -69.824 -18.282 -69.999 -18.320 -70.096 -18.320 -70.329 -18.376 -70.407 -17.887 -70.989 -17.699 -71.378 -17.511 -71.378 -17.323 -71.494 -17.228 -71.649 -17.171 -71.843 -17.039 -72.018 -17.021 -72.115 -16.756 -72.387 -16.661 -72.581 -16.643 -72.776 -16.529 -72.912 -16.170 -73.766 -15.905 -74.154 -15.849 -74.348 -15.697 -74.543 -15.450 -75.067 -15.374 -75.164 -15.203 -75.241 -14.900 -75.533 -14.653 -75.941 -14.462 -75.999 -14.082 -76.290 -13.872 -76.387 -13.681 -76.213 -13.511 -76.193 -13.320 -76.251 -13.014 -76.484 -12.823 -76.562 -12.441 -76.795 -12.058 -77.164 -12.001 -77.144 -11.790 -77.183 -11.598 -77.261 -11.406 -77.455 -11.273 -77.649 -11.081 -77.649 -10.812 -77.766 -10.197 -78.135 -9.466 -78.406 -9.274 -78.523 -8.503 -78.834 -8.118 -79.106 -7.944 -79.300 -7.809 -79.397 -7.423 -79.591 -7.326 -79.611 -7.191 -79.708 -7.133 -79.708 -6.843 -79.960 -6.747 -79.999 -6.360 -80.601 -6.186 -80.970 -6.050 -81.164 -5.857 -81.144 -5.857 -80.950 -5.664 -80.873 -5.470 -80.931 -5.296 -81.125 -5.102 -81.183 -4.889 -81.183 -4.734 -81.319 -4.502 -81.319 -4.424 -81.280 -4.288 -81.280 -3.901 -80.873 -3.706 -80.737 -3.532 -80.542 -3.377 -80.329 -3.338 -80.251 -3.338 -80.135 -3.222 -79.960 -3.066 -79.882 -2.776 -79.824 -2.582 -79.727 -2.388 -79.843 -2.174 -79.863 -2.019 -79.766 -2.116 -79.882 -2.213 -79.902 -2.369 -79.863 -2.582 -79.921 -2.621 -79.999 -2.485 -79.999 -2.485 -79.921 -2.466 -79.999 -2.329 -79.999 -2.621 -80.212 -2.640 -80.406 -2.466 -80.601 -2.349 -80.853 -2.193 -80.950 -2.213 -80.911 -2.077 -80.756 -1.883 -80.737 -1.670 -80.814 -1.515 -80.814 -1.320 -80.756 -1.126 -80.892 -0.932 -80.737 -0.835 -80.542 -0.641 -80.465 -0.641 -80.271 -0.563 -80.406 -0.369 -80.504 0.000 -80.115 0.155 -80.037 0.350 -79.999 0.621 -80.037 0.815 -79.999 0.893 -79.824 0.874 -79.630 0.990 -79.572 1.068 -79.377 1.106 -78.989 1.242 -78.892 1.437 -78.814 1.573 -78.931 1.767 -78.950 1.806 -78.737 1.941 -78.601 2.213 -78.678 2.408 -78.581 2.504 -78.193 2.524 -77.979 2.601 -77.941 2.601 -77.746 2.795 -77.746 3.047 -77.552 3.242 -77.455 3.280 -77.397 3.494 -77.319 3.610 -77.222 3.803 -77.144 3.862 -77.067 3.843 -77.261 4.036 -77.203 3.979 -77.397 4.172 -77.436 4.249 -77.242 4.462 -77.339 4.657 -77.319 5.198 -77.358 5.393 -77.397 5.586 -77.494 5.664 -77.300 5.857 -77.280 6.244 -77.475 6.438 -77.377 6.631 -77.416 6.824 -77.591 7.017 -77.669 7.519 -78.154 7.905 -78.387 8.098 -78.406 8.060 -78.329 8.079 -78.271 8.272 -78.271 8.330 -78.076 8.253 -77.941 8.561 -78.135 8.465 -78.329 8.542 -78.406 8.349 -78.387 8.735 -78.601 8.947 -78.989 9.139 -78.970 9.004 -79.242 9.004 -79.436 8.927 -79.513 8.927 -79.552 8.869 -79.688 8.542 -79.824 8.291 -80.212 8.311 -80.387 8.098 -80.465 7.616 -80.037 7.461 -79.999 7.365 -80.368 7.307 -80.368 7.229 -80.562 7.210 -80.834 7.616 -80.989 7.905 -81.047 7.886 -81.222 7.597 -81.222 7.674 -81.416 7.867 -81.611 7.983 -81.611 8.156 -81.882 8.233 -81.940 8.176 -82.154 8.330 -82.271 8.349 -82.426 8.291 -82.814 8.021 -82.892 8.272 -82.950 8.272 -82.970 ; #342 2 8.214 -82.348 8.253 -82.329 8.253 -82.406 8.214 -82.387 ; #343 2 -2.659 -79.999 -2.659 -80.037 -2.814 -80.251 -3.008 -80.115 -2.814 -79.999 ; #344 2 8.465 -78.911 8.253 -78.911 8.446 -78.873 ; #345 5 -48.694 -75.513 -48.603 -75.319 -48.437 -75.455 -48.542 -75.649 -48.694 -75.610 ; #346 5 -49.789 -75.222 -49.640 -75.397 -49.655 -75.591 -49.819 -75.572 -49.834 -75.377 -49.908 -75.183 ; #347 5 -48.633 -75.086 -48.467 -75.086 -48.316 -75.203 -48.011 -75.358 -48.119 -75.572 -48.270 -75.513 -48.421 -75.533 -48.391 -75.319 -48.709 -75.203 ; #348 5 -50.502 -75.261 -50.487 -75.455 -50.649 -75.455 -50.797 -75.319 ; #349 5 -50.161 -74.873 -50.191 -75.067 -50.028 -75.125 -50.102 -75.319 -50.250 -75.222 -50.220 -75.416 -50.368 -75.455 -50.443 -75.261 -50.294 -75.047 ; #350 5 -49.236 -75.067 -49.386 -75.125 -49.281 -75.319 -49.430 -75.261 -49.311 -75.455 -49.460 -75.319 -49.610 -75.300 -49.759 -75.203 -49.893 -75.008 -49.595 -75.047 -49.490 -74.834 -49.356 -74.640 -49.505 -74.834 -49.655 -74.892 -49.804 -74.814 -49.967 -74.873 -49.952 -74.679 -49.998 -74.873 -49.998 -74.543 -49.923 -74.465 -49.759 -74.484 -49.610 -74.543 -49.311 -74.446 -49.161 -74.484 -48.995 -74.484 -48.845 -74.601 -48.724 -74.814 -48.785 -75.008 -48.935 -74.950 -49.085 -74.834 -49.236 -74.873 -49.236 -74.931 -49.191 -74.911 -49.040 -74.950 -49.176 -75.144 -49.236 -75.028 ; #351 5 -51.340 -75.028 -51.340 -75.222 -51.486 -75.222 -51.632 -75.300 ; #352 5 -48.875 -75.086 -48.845 -75.280 -48.995 -75.203 ; #353 5 -48.331 -74.834 -48.179 -74.834 -48.103 -75.028 -48.149 -75.222 -48.300 -75.164 -48.452 -75.028 ; #354 5 -51.895 -75.067 -51.749 -75.067 -51.895 -75.106 ; #355 5 -50.812 -74.989 -50.664 -75.086 -50.812 -75.028 ; #356 5 -48.026 -74.795 -47.874 -74.892 -47.996 -75.086 -48.073 -74.892 ; #357 5 -51.982 -74.853 -51.837 -74.775 -51.677 -74.892 -51.967 -75.067 -52.112 -74.970 ; #358 5 -48.648 -74.484 -48.497 -74.601 -48.346 -74.601 -48.194 -74.756 -48.346 -74.814 -48.497 -74.756 -48.437 -74.950 -48.588 -75.008 -48.694 -74.620 ; #359 -5 -51.457 -74.892 -51.311 -74.737 -51.370 -74.543 -51.223 -74.601 -51.326 -74.795 -51.472 -74.989 ; #360 5 -50.708 -74.911 -50.856 -74.892 -50.885 -74.698 ; #361 5 -51.047 -74.581 -50.988 -74.387 -50.842 -74.446 -50.767 -74.640 -50.915 -74.698 -50.959 -74.892 -51.120 -74.717 ; #362 5 -51.996 -74.698 -51.851 -74.756 -52.141 -74.873 ; #363 5 -45.732 -74.581 -45.576 -74.562 -45.732 -74.698 ; #364 5 -44.635 -74.465 -44.682 -74.659 -44.697 -74.465 ; #365 5 -48.225 -74.407 -48.194 -74.601 -48.346 -74.523 ; #366 5 -50.767 -74.174 -50.458 -74.407 -50.487 -74.601 -50.635 -74.562 -50.797 -74.407 -50.856 -74.212 ; #367 5 -53.292 -73.203 -53.178 -73.416 -53.135 -73.610 -52.978 -73.999 -52.949 -74.193 -52.862 -74.387 -52.834 -74.601 -52.978 -74.446 -53.035 -74.251 -53.092 -73.844 -53.321 -73.455 ; #368 5 -45.732 -74.348 -45.576 -74.232 -45.467 -74.426 -45.623 -74.484 -45.779 -74.465 ; #369 5 -51.880 -74.096 -51.749 -74.484 -51.895 -74.368 -51.953 -74.154 ; #370 5 -48.391 -74.271 -48.376 -74.465 -48.467 -74.271 ; #371 5 -49.610 -74.387 -49.460 -74.446 -49.610 -74.426 ; #372 5 -44.761 -74.135 -44.603 -74.018 -44.603 -74.212 -44.651 -74.407 -44.808 -74.251 ; #373 5 -44.997 -74.154 -44.902 -73.960 -44.870 -74.154 -44.997 -74.368 ; #374 -5 -52.301 -73.960 -52.402 -73.844 -52.388 -73.785 -52.243 -73.805 -52.243 -74.018 -52.301 -73.960 -52.155 -74.154 -52.098 -74.348 -52.388 -74.135 ; #375 5 -51.223 -74.212 -51.062 -74.329 -51.223 -74.271 ; #376 5 -47.890 -73.921 -47.844 -74.115 -47.829 -74.329 -47.981 -74.310 ; #377 5 -42.323 -73.591 -42.161 -73.436 -42.000 -73.513 -41.838 -73.533 -41.838 -73.649 -41.886 -73.844 -41.854 -74.038 -42.016 -74.057 -42.500 -74.212 -42.661 -74.135 -42.821 -74.174 -43.158 -74.329 -43.317 -74.290 -43.397 -73.882 -43.269 -73.688 -43.110 -73.610 -43.062 -73.533 -42.933 -73.649 -42.773 -73.552 -42.661 -73.746 -42.500 -73.649 -42.404 -73.610 -42.564 -73.436 -42.516 -73.436 -42.404 -73.610 ; #378 5 -51.720 -73.999 -51.574 -74.096 -51.720 -74.212 -51.808 -74.018 ; #379 5 -45.467 -73.863 -45.420 -74.057 -45.576 -74.135 ; #380 5 -52.141 -73.727 -51.996 -73.902 -51.996 -74.115 -52.083 -73.902 -52.229 -73.727 ; #381 5 -51.384 -74.038 -51.238 -74.096 -51.384 -74.077 ; #382 5 -45.138 -74.096 -45.247 -73.902 -45.153 -73.708 -44.997 -73.844 -44.997 -73.921 ; #383 5 -43.938 -73.960 -43.780 -73.863 -43.938 -73.999 ; #384 5 -44.966 -73.785 -44.808 -73.921 -44.966 -73.844 ; #385 5 -52.575 -73.746 -52.431 -73.824 -52.590 -73.902 -52.733 -73.921 ; #386 5 -46.044 -73.727 -46.059 -73.921 -46.214 -73.766 ; #387 5 -44.619 -73.630 -44.588 -73.824 -44.745 -73.746 ; #388 5 -52.891 -73.397 -52.862 -73.591 -52.921 -73.805 -52.877 -73.610 -52.949 -73.416 ; #389 5 -53.492 -73.572 -53.450 -73.785 -53.535 -73.591 -53.549 -73.397 -53.393 -73.436 ; #390 5 -45.607 -73.610 -45.451 -73.708 -45.607 -73.746 -45.763 -73.649 ; #391 5 -53.989 -72.523 -54.018 -72.310 -53.876 -72.232 -53.734 -72.232 -53.720 -72.426 -53.578 -72.465 -53.634 -72.679 -53.478 -72.853 -53.634 -72.912 -53.478 -73.008 -53.507 -73.203 -53.492 -73.397 -53.634 -73.222 -53.677 -73.028 -53.663 -73.222 -53.563 -73.416 -53.606 -73.610 -53.748 -73.513 -53.848 -73.319 -53.989 -73.222 -54.003 -73.028 -53.848 -72.970 -53.933 -72.776 -54.074 -72.834 -54.088 -73.028 -54.144 -72.834 ; #392 5 -42.965 -73.397 -42.949 -73.591 -42.998 -73.397 ; #393 5 -54.032 -73.261 -54.074 -73.475 -54.130 -73.261 ; #394 5 -44.603 -72.970 -44.603 -72.776 -44.445 -72.853 -44.493 -73.261 -44.651 -73.222 -44.729 -73.436 -44.792 -73.222 -44.950 -73.261 -44.870 -73.067 -44.745 -72.872 ; #395 5 -54.244 -72.484 -54.230 -72.290 -54.116 -72.290 ; #396 5 -53.919 -72.018 -54.046 -72.212 -54.188 -72.057 -54.286 -71.863 -54.003 -71.921 -54.088 -71.727 -53.947 -71.669 ; #397 5 -53.961 -71.630 -54.102 -71.591 -54.244 -71.630 -54.188 -71.436 -54.328 -71.300 -54.371 -71.106 -54.230 -70.989 -54.088 -71.048 -54.159 -71.241 -54.018 -71.281 ; #398 5 -54.876 -71.048 -54.848 -71.261 -54.889 -71.455 -54.876 -71.261 -54.960 -71.048 ; #399 5 -55.169 -70.387 -55.030 -70.368 -54.988 -70.562 -54.904 -70.368 -54.974 -70.562 -54.946 -70.756 -55.058 -70.950 -55.071 -70.562 -55.210 -70.523 ; #400 5 -53.989 -70.543 -54.003 -70.348 -53.862 -70.446 -53.563 -70.523 -53.705 -70.717 -53.848 -70.698 -53.876 -70.892 -54.032 -70.873 -54.174 -70.717 -54.230 -70.523 ; #401 5 -54.202 -70.290 -54.230 -70.484 -54.272 -70.271 ; #402 5 -55.169 -69.941 -55.238 -69.746 -55.210 -69.533 -55.309 -69.746 -55.461 -69.339 -55.503 -69.145 -55.364 -69.242 -55.295 -69.436 -55.141 -69.281 -55.281 -68.892 -55.433 -68.795 -55.420 -68.601 -55.613 -68.212 -55.683 -67.999 -55.544 -68.077 -55.406 -68.232 -55.281 -68.640 -55.295 -68.445 -55.252 -68.232 -55.183 -68.445 -55.183 -68.640 -55.141 -68.834 -55.030 -69.048 -55.155 -68.659 -55.099 -68.445 -54.960 -68.407 -54.946 -68.601 -54.988 -68.814 -54.988 -69.009 -55.044 -69.397 -55.058 -69.805 -55.127 -69.999 -55.169 -69.999 ; #403 5 -55.016 -69.533 -54.918 -69.339 -54.889 -69.533 -54.946 -69.727 -54.904 -69.921 -55.044 -69.902 ; #404 5 -55.834 -67.615 -55.862 -67.809 -55.903 -67.615 ; #405 -5 37.294 -77.203 37.344 -77.242 37.294 -77.047 ; #406 -5 38.800 -77.028 38.784 -77.028 38.767 -77.047 ; #407 -5 38.900 -77.067 38.867 -77.008 38.800 -77.028 ; #408 -5 38.517 -76.659 38.667 -76.678 38.501 -76.639 ; #409 -5 -49.115 -75.552 -49.040 -75.416 -49.055 -75.339 -49.145 -75.319 -49.281 -75.513 ; #410 -5 -48.995 -75.358 -49.055 -75.339 -49.040 -75.416 ; #411 -5 -48.965 -75.649 -48.875 -75.455 -48.935 -75.261 -49.085 -75.261 -49.055 -75.339 -48.995 -75.358 -49.040 -75.416 ; #412 -5 -45.825 -74.814 -45.856 -74.601 -45.950 -74.407 -45.794 -74.368 -45.888 -74.174 -46.044 -73.979 -46.199 -74.096 -46.245 -74.290 -46.199 -74.484 -46.261 -74.290 -46.214 -74.096 -46.307 -73.902 -46.152 -73.960 -46.291 -73.766 -46.446 -73.863 -46.602 -73.844 -46.446 -73.746 -46.276 -73.572 -46.121 -73.494 -46.276 -73.688 -46.121 -73.610 -45.966 -73.630 -45.810 -73.533 -45.638 -73.377 -45.732 -73.572 -45.576 -73.533 -45.420 -73.436 -45.310 -73.241 -45.420 -73.047 -45.467 -72.853 -45.420 -72.814 -45.420 -72.931 -45.325 -73.125 -45.153 -73.319 -44.997 -73.397 -44.966 -73.300 -44.950 -73.086 -44.839 -72.892 -44.682 -72.737 -44.525 -72.640 -44.366 -72.601 -44.445 -72.795 -44.303 -72.989 -44.224 -73.183 -44.145 -73.280 -43.684 -72.853 -43.732 -73.047 -43.589 -72.950 -43.589 -73.028 -43.429 -73.106 -43.254 -72.970 -43.094 -72.931 -42.933 -72.737 -42.821 -72.834 -42.500 -72.795 -42.548 -72.601 -42.532 -72.543 -42.387 -72.756 -42.225 -72.717 -42.307 -72.523 -42.468 -72.426 -42.145 -72.465 -42.032 -72.562 -42.000 -72.756 -41.838 -72.795 -41.741 -72.601 -41.692 -72.407 -41.529 -72.348 -41.692 -72.523 -41.497 -72.912 -41.594 -73.106 -41.757 -73.125 -41.806 -73.533 -41.757 -73.649 -41.594 -73.572 -41.594 -73.669 -41.480 -73.863 -41.318 -73.863 -41.155 -73.960 -40.977 -73.999 -40.534 -73.766 -40.371 -73.766 -40.207 -73.708 -40.008 -73.708 -39.910 -73.572 -39.844 -73.377 -39.728 -73.377 -39.563 -73.280 -39.365 -73.222 -39.200 -73.222 -38.650 -73.475 -38.434 -73.533 -38.100 -73.455 -37.932 -73.513 -37.748 -73.630 -37.580 -73.669 -37.496 -73.591 -37.327 -73.669 -37.160 -73.572 -37.244 -73.377 -37.143 -73.183 -36.771 -73.183 -36.720 -72.989 -36.551 -72.989 -36.381 -72.872 -36.229 -72.814 -36.025 -72.795 -35.855 -72.659 -35.514 -72.543 -35.308 -72.426 -35.034 -72.193 -34.931 -72.193 -34.743 -72.077 -34.398 -72.038 -34.278 -71.979 -34.106 -71.979 -33.812 -71.805 -33.621 -71.649 -33.431 -71.708 -33.084 -71.746 -32.910 -71.513 -32.718 -71.513 -32.369 -71.417 -32.194 -71.533 -31.792 -71.513 -31.617 -71.572 -30.647 -71.708 -30.471 -71.688 -30.294 -71.591 -30.188 -71.397 -30.010 -71.397 -29.886 -71.281 -29.745 -71.339 -29.389 -71.339 -29.211 -71.475 -28.979 -71.494 -28.407 -71.183 -28.102 -71.164 -27.689 -71.028 -27.509 -70.892 -27.275 -70.931 -26.353 -70.640 -26.208 -70.659 -26.026 -70.620 -25.881 -70.698 -25.699 -70.679 -25.517 -70.620 -25.336 -70.446 -25.154 -70.446 -25.008 -70.484 -24.588 -70.562 -24.222 -70.504 -23.837 -70.484 -23.689 -70.426 -23.506 -70.407 -23.450 -70.601 -23.267 -70.601 -22.954 -70.310 -22.382 -70.251 -21.827 -70.135 -21.642 -70.135 -21.456 -70.057 -20.955 -70.135 -20.768 -70.193 -20.378 -70.193 -20.005 -70.115 -19.406 -70.212 -19.014 -70.310 -18.639 -70.348 -18.451 -70.310 -18.376 -70.407 -18.320 -70.329 -18.320 -70.096 -18.282 -69.999 -18.075 -69.824 -17.906 -69.805 -17.699 -69.843 -17.567 -69.572 -17.511 -69.494 -17.398 -69.494 -17.284 -69.650 -17.002 -69.377 -16.813 -69.203 -16.661 -69.009 -16.643 -68.989 -16.586 -69.028 -16.567 -69.028 -16.586 -68.853 -16.454 -68.931 -16.435 -68.912 -16.416 -68.756 -16.208 -68.640 -16.226 -68.853 -16.151 -68.873 -15.943 -68.814 -15.868 -69.009 -15.678 -69.164 -15.526 -69.358 -15.488 -69.339 -15.298 -69.203 -15.147 -69.222 -14.995 -69.358 -14.805 -69.358 -14.576 -69.222 -14.424 -69.028 -14.253 -69.009 -14.062 -68.892 -13.891 -68.989 -13.700 -69.067 -13.511 -68.950 -13.033 -68.950 -12.842 -68.931 -12.670 -68.737 -12.498 -68.679 -11.886 -68.989 -11.216 -69.417 -10.947 -69.572 -10.927 -69.377 -10.966 -69.164 -11.004 -68.989 -10.985 -68.776 -11.004 -68.737 -11.100 -68.581 -11.004 -68.387 -10.831 -68.193 -10.659 -67.979 -10.678 -67.785 -10.697 -67.708 -10.620 -67.669 -10.466 -67.475 -10.313 -67.281 -10.332 -67.164 -10.178 -66.970 -10.005 -66.776 -9.928 -66.640 -9.851 -66.795 -9.832 -66.834 -9.562 -67.009 -9.081 -67.281 -8.985 -67.339 -8.792 -67.455 -7.442 -68.310 -6.495 -68.873 -5.721 -69.358 -5.005 -69.785 -4.657 -69.999 -4.346 -70.193 -4.327 -70.038 -4.327 -69.999 -4.307 -69.960 -4.230 -69.960 -4.211 -69.941 -4.191 -69.941 -3.532 -69.805 -2.873 -69.688 -2.834 -69.688 -2.174 -69.572 -1.534 -69.455 -1.418 -69.436 -1.300 -69.377 -1.087 -69.436 -1.029 -69.436 -0.932 -69.514 -0.699 -69.591 -0.505 -69.610 -0.233 -69.999 0.000 -70.057 0.019 -70.057 0.582 -69.999 0.680 -69.572 0.699 -69.397 0.621 -69.203 0.738 -69.164 0.893 -69.183 1.048 -69.377 1.068 -69.843 1.709 -69.843 1.767 -69.572 1.728 -69.377 1.728 -68.426 1.786 -68.232 1.844 -68.271 1.864 -68.077 1.747 -67.883 1.902 -67.688 2.096 -67.514 2.096 -67.319 1.650 -67.086 1.165 -67.067 1.223 -66.873 1.554 -66.950 2.019 -67.106 2.096 -67.106 2.290 -67.203 2.427 -67.261 2.621 -67.475 2.795 -67.650 2.795 -67.843 2.911 -67.785 3.106 -67.591 3.261 -67.378 3.474 -67.358 3.668 -67.455 3.843 -67.630 4.036 -67.708 4.075 -67.727 4.249 -67.805 4.443 -67.805 4.541 -67.883 4.734 -67.824 4.928 -67.824 5.005 -67.805 5.063 -67.785 5.179 -67.805 5.373 -67.805 5.528 -67.611 5.780 -67.630 5.973 -67.436 6.090 -67.475 6.186 -67.455 6.186 -67.475 6.244 -67.552 6.302 -67.747 6.225 -67.941 6.225 -68.096 6.167 -68.290 6.186 -68.484 6.148 -68.601 6.206 -68.989 6.090 -69.222 6.109 -69.417 6.225 -69.514 6.766 -69.941 6.824 -69.999 6.978 -70.115 6.959 -70.348 7.075 -70.562 7.094 -70.756 6.998 -71.125 6.978 -71.145 7.036 -71.727 7.017 -71.921 7.056 -72.057 7.249 -72.154 7.384 -72.193 7.403 -72.387 7.423 -72.426 7.616 -72.465 7.809 -72.446 7.963 -72.446 8.002 -72.407 8.195 -72.348 8.388 -72.407 8.388 -72.426 8.638 -72.659 9.081 -72.795 9.101 -72.756 9.197 -72.950 9.274 -72.989 9.177 -73.183 9.177 -73.377 9.544 -73.144 9.793 -72.989 10.005 -72.970 10.390 -72.892 10.428 -72.912 10.620 -72.776 10.870 -72.659 11.062 -72.523 11.158 -72.290 11.350 -72.135 11.388 -72.135 11.579 -72.018 11.694 -71.824 11.847 -71.319 11.694 -71.513 11.675 -71.708 11.598 -71.902 11.406 -71.941 11.216 -71.863 11.043 -71.669 11.004 -71.766 10.755 -71.630 10.582 -71.610 10.447 -71.630 10.005 -71.999 9.793 -72.115 9.659 -72.018 9.466 -71.999 9.370 -71.727 9.216 -71.766 9.043 -71.591 9.120 -71.281 9.351 -71.048 9.813 -71.086 9.870 -71.067 10.197 -71.339 10.563 -71.552 10.774 -71.533 10.793 -71.572 10.908 -71.417 11.196 -70.873 11.273 -70.484 11.388 -70.174 11.579 -70.135 11.464 -69.921 11.656 -69.805 11.656 -69.999 11.598 -70.212 11.752 -70.193 11.771 -70.232 11.963 -70.251 12.097 -70.212 12.192 -69.999 12.001 -69.824 11.809 -69.805 11.617 -69.727 11.502 -69.533 11.445 -68.834 11.196 -68.445 10.870 -68.232 10.697 -68.290 10.601 -68.251 10.486 -68.057 10.486 -67.669 10.620 -66.795 10.620 -66.310 10.582 -66.115 10.466 -66.076 10.217 -65.785 10.197 -65.591 10.082 -65.164 10.082 -64.776 10.159 -64.717 10.390 -64.329 10.466 -64.135 10.466 -63.747 10.563 -63.941 10.563 -64.135 10.639 -63.941 10.659 -63.747 10.620 -63.533 10.716 -63.145 10.697 -62.950 10.735 -62.756 10.678 -62.154 10.716 -61.960 10.639 -62.174 10.524 -62.368 10.543 -62.756 10.486 -62.950 10.293 -62.970 10.390 -62.776 10.197 -62.659 10.063 -62.853 10.101 -63.009 10.005 -62.931 10.005 -62.776 10.197 -62.620 9.986 -62.426 9.928 -62.446 9.716 -62.329 9.697 -62.310 9.890 -62.232 9.697 -62.174 9.639 -62.213 9.639 -62.174 9.832 -62.154 9.851 -62.018 9.947 -62.213 10.005 -62.213 10.005 -62.135 9.890 -61.941 9.755 -61.824 9.639 -61.844 9.736 -61.766 9.793 -61.785 9.793 -61.572 9.562 -61.203 9.562 -61.009 9.389 -60.815 9.139 -61.047 8.600 -61.203 8.619 -61.649 8.580 -61.649 8.407 -61.261 8.580 -60.892 8.600 -60.698 8.523 -60.465 8.580 -60.426 8.619 -60.232 8.542 -59.980 8.330 -59.785 8.137 -59.436 8.272 -59.630 8.214 -59.436 8.098 -59.223 7.944 -59.028 7.732 -58.795 7.480 -58.582 7.287 -58.465 7.133 -58.465 6.978 -58.504 6.785 -58.601 6.592 -58.601 6.380 -58.679 6.418 -58.601 6.669 -58.543 6.863 -58.426 6.882 -58.271 6.805 -58.174 6.785 -57.980 6.534 -57.708 6.264 -57.514 6.264 -57.320 6.069 -57.164 5.683 -57.164 5.490 -57.242 5.451 -57.261 5.257 -57.222 5.218 -57.203 5.024 -57.281 5.024 -57.339 5.005 -57.494 4.928 -57.747 4.734 -57.863 4.346 -57.941 4.153 -58.057 3.959 -57.999 3.571 -57.708 3.358 -57.630 3.358 -57.320 3.028 -57.203 2.834 -57.203 2.737 -57.087 2.329 -56.873 2.019 -56.679 1.941 -56.465 1.922 -56.368 1.844 -56.096 1.902 -55.902 2.077 -55.941 2.251 -56.135 2.349 -56.057 2.485 -55.863 2.427 -55.747 2.427 -55.358 2.601 -54.989 2.427 -54.795 2.446 -54.776 2.251 -54.718 2.058 -54.756 2.038 -54.795 1.844 -54.756 1.747 -54.504 1.728 -54.290 1.612 -54.116 1.379 -53.824 1.379 -53.630 1.320 -53.553 1.281 -53.533 0.971 -53.417 0.777 -53.222 0.602 -53.125 0.408 -53.125 0.214 -53.028 0.078 -53.009 0.000 -52.989 -0.175 -52.815 -0.427 -52.620 -0.621 -52.562 -0.796 -52.523 -0.893 -52.368 -1.087 -52.310 -1.165 -52.096 -1.165 -51.902 -1.418 -52.019 -1.340 -52.232 -1.573 -52.698 -1.612 -52.698 -1.592 -52.465 -1.689 -52.271 -1.689 -52.252 -1.999 -52.232 -2.213 -52.174 -2.446 -52.038 -2.873 -51.941 -3.086 -51.805 -3.145 -51.611 -3.513 -51.708 -3.571 -51.902 -3.377 -51.999 -3.300 -52.155 -3.494 -52.232 -3.706 -52.407 -3.862 -52.601 -4.172 -52.640 -4.599 -52.698 -5.005 -52.912 -5.393 -52.853 -5.586 -52.679 -5.838 -52.543 -6.031 -52.543 -6.437 -52.329 -6.573 -52.155 -6.650 -51.999 -6.862 -52.019 -6.959 -52.232 -6.998 -52.427 -7.210 -52.582 -7.616 -52.737 -7.809 -52.776 -8.002 -52.756 -8.176 -52.679 -8.368 -52.659 -8.715 -52.271 -8.889 -52.155 -9.081 -52.038 -9.274 -52.019 -9.659 -52.291 -9.601 -52.484 -9.716 -52.620 -9.736 -52.213 -9.851 -50.232 -10.005 -50.291 -10.466 -50.485 -10.659 -50.601 -11.081 -50.601 -11.369 -50.718 -11.579 -50.679 -11.752 -50.718 -11.943 -50.660 -12.097 -50.679 -12.307 -50.620 -12.594 -50.640 -12.804 -50.601 -12.842 -50.485 -13.282 -50.582 -13.662 -50.776 -13.700 -50.834 -14.082 -50.834 -14.139 -50.912 -14.310 -50.970 -14.500 -50.970 -14.786 -51.048 -14.900 -51.087 -14.995 -51.222 -14.995 -51.417 -15.090 -51.533 -15.280 -51.650 -15.697 -51.824 -15.735 -51.824 -15.868 -52.019 -15.886 -52.232 -15.886 -52.252 -15.905 -52.252 -16.000 -52.310 -16.284 -52.659 -16.567 -52.659 -16.756 -52.815 -16.945 -53.048 -17.134 -53.145 -17.342 -53.184 -17.436 -53.222 -17.642 -53.242 -18.019 -53.048 -18.207 -53.048 -18.395 -52.989 -18.469 -52.776 -18.658 -52.892 -18.695 -52.853 -18.714 -52.543 -18.714 -52.465 -19.126 -51.669 -19.164 -51.436 -19.276 -51.242 -19.350 -51.028 -19.482 -50.951 -19.669 -51.009 -20.005 -51.009 -20.098 -50.989 -20.304 -51.145 -20.397 -51.358 -20.583 -51.533 -20.787 -51.611 -20.862 -51.611 -20.955 -51.689 -21.196 -51.863 -21.326 -51.844 -21.512 -51.980 -21.586 -52.077 -21.771 -52.135 -21.790 -52.135 -22.105 -52.368 -22.142 -52.387 -22.382 -52.795 -22.530 -52.989 -22.714 -53.145 -22.880 -53.572 -23.009 -53.630 -23.230 -53.689 -23.248 -53.689 -23.285 -53.708 -23.359 -53.786 -23.414 -53.922 -23.542 -53.980 -23.874 -54.057 -24.002 -54.174 -24.057 -54.232 -24.075 -54.271 -24.259 -54.290 -24.368 -54.251 -25.008 -54.446 -25.245 -54.485 -25.427 -54.601 -25.590 -54.601 -25.663 -54.640 -25.808 -54.601 -26.244 -54.659 -26.462 -54.718 -26.661 -54.795 -26.787 -54.989 -26.968 -55.203 -26.950 -55.242 -27.005 -55.436 -27.202 -55.591 -27.383 -55.689 -27.437 -55.786 -27.329 -55.960 -27.329 -56.154 -27.545 -56.329 -27.454 -56.523 -27.454 -56.640 -27.472 -57.048 -27.437 -57.300 -27.293 -57.883 -27.293 -58.504 -27.311 -58.601 -27.184 -58.659 -26.896 -58.349 -26.606 -58.174 -26.462 -58.174 -26.299 -58.154 -26.117 -58.038 -26.026 -57.902 -25.845 -57.805 -25.663 -57.688 -25.481 -57.552 -25.300 -57.669 -25.282 -57.708 -25.245 -57.727 -25.081 -57.941 -25.008 -58.135 -24.990 -58.349 -24.898 -58.426 -24.771 -58.815 -24.624 -59.048 -24.533 -59.261 -24.259 -59.630 -24.039 -59.999 -24.020 -60.310 -24.020 -60.329 -23.874 -60.776 -23.818 -60.989 -23.597 -61.125 -23.469 -61.319 -23.248 -61.727 -23.064 -61.921 -22.899 -62.018 -22.714 -62.193 -22.512 -62.252 -22.474 -62.329 -22.456 -62.387 -22.327 -62.581 -22.234 -62.640 -21.993 -62.795 -22.030 -63.688 -22.049 -63.708 -22.012 -63.805 -22.160 -64.018 -22.345 -64.116 -22.437 -64.154 -22.512 -64.213 -22.880 -64.329 -22.714 -64.407 -22.530 -64.445 -22.179 -64.659 -22.087 -64.989 -22.105 -65.164 -22.105 -65.183 -22.087 -65.591 -22.105 -65.591 -22.087 -65.785 -21.919 -65.980 -21.790 -66.212 -22.124 -66.348 -22.234 -66.737 -22.364 -66.756 -22.714 -67.125 -22.825 -67.183 -22.991 -67.009 -23.726 -67.242 -23.744 -67.242 -24.039 -67.378 -24.130 -67.572 -24.149 -67.630 -24.332 -68.077 -24.460 -68.271 -24.478 -68.290 -24.606 -68.484 -24.825 -68.562 -25.008 -68.426 -25.172 -68.484 -25.300 -68.543 -25.409 -68.581 -25.590 -68.562 -26.063 -68.426 -26.135 -68.407 -26.317 -68.562 -26.497 -68.581 -26.878 -68.290 -27.040 -68.348 -27.130 -68.543 -27.184 -68.853 -27.365 -68.892 -27.779 -69.125 -27.886 -69.145 -28.066 -69.319 -28.407 -69.650 -28.549 -69.650 -28.728 -69.746 -28.907 -69.766 -29.121 -69.805 -29.264 -69.999 -29.460 -69.999 -29.709 -69.921 -30.010 -69.921 -30.152 -69.824 -30.400 -69.999 -30.524 -70.212 -30.718 -70.271 -31.124 -70.368 -31.106 -70.465 -31.282 -70.543 -31.458 -70.562 -31.528 -70.581 -31.704 -70.484 -31.880 -70.329 -32.037 -70.368 -32.213 -70.329 -32.317 -70.232 -32.369 -70.232 -32.457 -70.174 -32.631 -70.174 -32.806 -70.096 -32.823 -70.077 -32.875 -69.999 -32.910 -69.999 -33.049 -70.096 -33.118 -70.096 -33.309 -69.999 -33.326 -69.785 -33.500 -69.824 -33.794 -69.902 -33.968 -69.882 -34.106 -69.843 -34.278 -69.999 -34.295 -70.038 -34.708 -70.251 -35.034 -70.368 -35.205 -70.465 -35.205 -70.504 -35.599 -70.407 -35.769 -70.368 -36.008 -70.387 -36.144 -70.426 -36.212 -70.620 -36.381 -70.698 -36.432 -70.756 -36.398 -70.892 -36.483 -71.028 -36.737 -71.125 -36.906 -71.145 -36.940 -71.125 -36.957 -71.125 -37.126 -71.106 -37.293 -71.183 -37.428 -71.125 -37.765 -71.145 -38.150 -70.989 -38.250 -71.009 -38.350 -70.970 -38.517 -70.834 -38.684 -70.853 -38.850 -71.281 -38.967 -71.417 -39.132 -71.397 -39.266 -71.397 -39.596 -71.494 -39.596 -71.649 -39.646 -71.708 -39.811 -71.669 -40.008 -71.649 -40.041 -71.669 -40.173 -71.805 -40.338 -71.669 -40.551 -71.843 -40.731 -71.941 -41.009 -71.863 -41.107 -71.843 -41.383 -71.902 -41.545 -71.863 -41.676 -71.902 -41.838 -71.805 -42.000 -71.766 -42.145 -71.863 -42.242 -72.096 -42.420 -72.057 -42.548 -72.115 -42.885 -72.096 -43.030 -72.115 -43.126 -71.921 -43.174 -71.727 -43.301 -71.746 -43.413 -71.921 -43.573 -71.766 -43.589 -71.708 -43.605 -71.688 -43.764 -71.805 -43.922 -71.649 -43.954 -71.649 -44.050 -71.746 -44.366 -71.843 -44.398 -71.708 -44.429 -71.319 -44.525 -71.125 -44.556 -71.106 -44.713 -71.222 -44.776 -71.417 -44.761 -71.572 -44.776 -71.979 -44.886 -72.077 -44.950 -71.863 -44.997 -71.552 -45.153 -71.455 -45.325 -71.300 -45.388 -71.417 -45.529 -71.552 -45.561 -71.746 -45.716 -71.785 -45.856 -71.746 -45.904 -71.630 -45.935 -71.610 -46.028 -71.669 -46.152 -71.902 -46.307 -71.746 -46.338 -71.746 -46.540 -71.669 -46.571 -71.669 -46.725 -71.727 -46.802 -71.921 -47.048 -71.999 -47.201 -71.863 -47.278 -72.018 -47.293 -72.038 -47.401 -72.154 -47.463 -72.348 -47.615 -72.329 -47.768 -72.465 -47.950 -72.523 -48.073 -72.329 -48.225 -72.290 -48.391 -72.407 -48.482 -72.601 -48.739 -72.543 -48.890 -72.698 -48.920 -72.737 -48.950 -72.892 -49.100 -73.086 -49.251 -73.164 -49.281 -73.106 -49.311 -73.300 -49.415 -73.513 -49.565 -73.552 -49.998 -73.475 -50.176 -73.475 -50.324 -73.280 -50.472 -73.261 -50.620 -73.203 -50.767 -73.086 -50.664 -72.892 -50.605 -72.523 -50.708 -72.329 -50.812 -72.271 -50.959 -72.251 -51.120 -72.387 -51.267 -72.251 -51.282 -72.290 -51.399 -72.310 -51.559 -72.426 -51.706 -72.271 -51.735 -72.154 -51.851 -71.960 -51.996 -71.902 -51.996 -69.999 -52.127 -69.533 -52.141 -69.377 -52.141 -69.222 -52.272 -68.834 -52.301 -68.640 -52.330 -68.581 -52.301 -68.912 -52.214 -69.106 -52.214 -69.281 -52.287 -69.475 -52.460 -69.552 -52.489 -69.610 -52.503 -69.805 -52.590 -70.193 -52.662 -70.387 -52.662 -70.581 -52.805 -70.776 -53.249 -70.950 -53.393 -70.989 -53.549 -70.950 -53.691 -70.970 -53.834 -71.086 -53.890 -71.300 -53.806 -71.688 -53.705 -71.902 -53.691 -72.096 -53.407 -72.446 -53.264 -72.310 -53.249 -72.115 -53.393 -72.057 -53.249 -72.018 -53.306 -71.824 -53.450 -71.785 -53.578 -71.979 -53.507 -71.785 -53.207 -71.727 -53.107 -71.319 -52.949 -71.222 -52.805 -71.183 -52.733 -71.397 -52.834 -71.455 -52.978 -71.843 -53.121 -72.018 -53.049 -72.212 -53.092 -72.407 -53.207 -72.212 -53.249 -72.407 -53.393 -72.581 -53.535 -72.407 -53.507 -72.601 -53.393 -72.795 -53.321 -72.989 -53.178 -73.106 -53.192 -72.912 -53.278 -72.717 -53.135 -72.698 -53.064 -72.892 -52.921 -72.950 -52.776 -72.814 -52.848 -72.426 -52.704 -72.251 -52.647 -72.057 -52.690 -71.863 -52.690 -71.669 -52.633 -71.475 -52.561 -71.669 -52.532 -71.863 -52.532 -72.659 -52.503 -72.853 -52.662 -72.892 -52.633 -72.698 -52.921 -72.970 -53.064 -73.028 -53.107 -73.222 -52.992 -73.416 -52.891 -73.222 -52.791 -73.416 -52.791 -73.222 -52.633 -73.144 -52.489 -72.989 -52.503 -73.183 -52.647 -73.241 -52.633 -73.436 -52.733 -73.630 -52.590 -73.649 -52.445 -73.610 -52.155 -73.610 -52.214 -72.834 -52.054 -72.776 -52.054 -72.717 -52.200 -72.523 -52.359 -72.698 -52.460 -72.892 -52.402 -72.698 -52.330 -72.504 -52.184 -72.484 -52.098 -72.581 -51.953 -72.659 -51.895 -72.465 -51.749 -72.484 -51.603 -72.679 -51.559 -72.872 -51.413 -73.086 -51.457 -73.164 -51.603 -73.106 -51.574 -72.912 -51.691 -72.717 -51.837 -72.659 -51.632 -73.261 -51.778 -73.067 -51.924 -73.067 -51.996 -73.261 -51.691 -73.377 -51.996 -73.300 -52.141 -73.397 -51.996 -73.572 -51.837 -73.591 -51.982 -73.416 -51.837 -73.533 -51.691 -73.552 -51.749 -73.746 -51.588 -73.902 -51.443 -73.766 -51.603 -73.591 -51.297 -73.708 -51.149 -73.727 -51.223 -73.921 -51.193 -74.115 -51.047 -74.232 -50.900 -74.193 -50.885 -73.999 -50.959 -73.805 -50.812 -73.785 -50.649 -73.708 -50.664 -73.494 -50.590 -73.688 -50.443 -73.610 -50.502 -73.708 -50.797 -73.902 -50.797 -74.096 -50.635 -74.193 -50.487 -74.115 -50.531 -73.921 -50.399 -74.115 -50.413 -74.310 -50.265 -74.290 -50.265 -74.484 -50.117 -74.601 -50.102 -74.407 -50.205 -74.212 -50.205 -74.018 -50.161 -74.212 -49.998 -74.368 -49.952 -74.348 -49.998 -74.154 -49.998 -73.999 -49.878 -73.921 -49.952 -74.115 -49.789 -74.310 -49.729 -74.115 -49.715 -74.310 -49.565 -74.154 -49.550 -73.960 -49.670 -73.766 -49.520 -73.902 -49.445 -74.096 -49.296 -74.077 -49.326 -73.882 -49.176 -73.979 -49.025 -73.863 -49.055 -74.057 -49.206 -74.174 -49.356 -74.154 -49.505 -74.271 -49.356 -74.407 -49.206 -74.407 -49.040 -74.465 -48.890 -74.426 -48.739 -74.251 -48.739 -74.057 -48.709 -74.193 -48.603 -74.387 -48.482 -74.193 -48.542 -73.999 -48.391 -74.077 -48.149 -74.465 -47.996 -74.601 -47.996 -74.387 -48.149 -74.232 -47.996 -74.154 -48.042 -73.941 -48.088 -73.746 -48.240 -73.552 -48.225 -73.358 -48.149 -73.436 -47.981 -73.475 -47.981 -73.280 -47.966 -73.475 -47.813 -73.552 -47.676 -73.746 -47.829 -73.882 -47.783 -74.077 -47.752 -74.679 -47.600 -74.620 -47.752 -74.232 -47.600 -74.193 -47.539 -74.387 -47.386 -74.484 -47.232 -74.310 -47.310 -74.115 -47.155 -74.038 -47.109 -74.057 -47.048 -73.979 -47.033 -74.096 -47.002 -74.115 -46.833 -74.154 -46.771 -74.348 -46.756 -74.562 -46.910 -74.484 -46.879 -74.679 -46.802 -74.873 -46.663 -75.067 -46.509 -74.989 -46.617 -75.183 -46.740 -75.572 -46.786 -75.377 -46.956 -75.455 -46.833 -75.649 -46.679 -75.708 -46.509 -75.533 -46.291 -75.125 -46.261 -74.931 -46.106 -74.814 -45.950 -74.756 -46.106 -74.911 -46.044 -75.106 -45.888 -75.008 ; #413 -2 22.197 -74.251 22.234 -74.174 22.160 -74.271 ; #414 -5 -47.017 -74.174 -47.033 -74.096 -47.109 -74.057 -47.171 -74.174 ; #415 -2 22.493 -73.882 22.678 -74.018 22.493 -73.863 22.308 -74.057 22.234 -74.174 ; #416 -5 -52.098 -74.348 -52.155 -74.154 -52.301 -73.960 -52.388 -74.135 ; #417 -5 -47.048 -73.979 -47.109 -74.057 -47.033 -74.096 ; #418 -5 -52.243 -74.018 -52.243 -73.805 -52.388 -73.785 -52.402 -73.844 -52.301 -73.960 ; #419 -5 71.219 -73.164 71.102 -73.241 70.996 -73.377 71.112 -73.280 71.219 -73.261 71.261 -73.067 ; #420 -5 -52.200 -72.892 -52.054 -72.912 -52.054 -72.776 ; #421 -5 18.695 -71.766 18.882 -71.727 18.938 -71.843 18.976 -71.843 19.089 -71.669 19.294 -71.746 19.482 -71.688 19.519 -71.708 19.706 -71.746 19.836 -71.669 19.893 -71.475 19.836 -71.281 19.893 -71.086 19.893 -70.892 19.799 -70.698 19.762 -70.504 19.650 -70.310 19.613 -70.096 19.669 -69.999 19.294 -69.746 19.294 -69.164 19.201 -69.358 19.201 -69.630 19.014 -69.222 18.976 -69.028 18.994 -68.834 18.714 -68.445 18.526 -68.368 18.357 -68.562 18.376 -68.601 18.282 -68.795 18.395 -68.989 18.451 -69.319 18.395 -69.514 18.470 -69.882 18.414 -69.999 18.226 -70.174 18.264 -70.581 18.339 -70.776 18.282 -70.970 18.282 -71.086 18.094 -71.086 17.680 -71.358 17.756 -71.552 17.944 -71.649 18.038 -71.766 18.226 -71.746 18.414 -71.843 18.451 -71.902 ; #422 -2 18.414 -71.843 18.226 -71.746 18.038 -71.766 18.189 -71.960 18.226 -72.154 18.226 -72.368 18.170 -72.950 18.264 -73.436 18.226 -73.630 18.131 -73.824 18.019 -73.882 18.207 -74.057 18.301 -74.251 18.339 -74.446 18.526 -74.426 18.658 -74.232 18.639 -74.096 18.563 -73.902 18.563 -73.669 18.414 -72.737 18.545 -72.543 18.545 -72.348 18.733 -72.446 18.920 -72.640 19.145 -72.756 19.238 -72.776 19.445 -72.698 19.613 -73.086 19.631 -73.280 19.818 -73.358 19.930 -73.164 19.930 -72.834 19.762 -72.251 19.706 -71.785 19.706 -71.746 19.519 -71.708 19.482 -71.688 19.294 -71.746 19.089 -71.669 18.976 -71.843 18.938 -71.843 18.882 -71.727 18.695 -71.766 18.451 -71.902 ; #423 5 12.192 -68.931 12.268 -69.145 12.097 -68.931 12.039 -68.737 ; #424 5 18.131 -68.562 18.150 -68.756 18.094 -68.562 ; #425 5 18.019 -65.844 18.207 -65.650 18.395 -65.747 18.451 -65.941 18.507 -67.106 18.320 -67.242 17.944 -67.125 17.944 -66.912 17.981 -66.717 17.981 -66.329 17.944 -66.135 17.963 -65.941 ; #426 5 44.792 -66.795 44.635 -66.853 44.792 -66.756 ; #427 5 68.227 -66.329 68.171 -66.523 68.149 -66.329 ; #428 5 61.846 -65.708 61.770 -65.902 61.821 -65.708 ; #429 5 64.715 -65.319 64.631 -65.533 64.510 -65.552 64.571 -65.358 64.691 -65.261 ; #430 5 61.669 -64.853 61.695 -65.067 61.644 -65.455 61.517 -65.281 61.327 -64.873 61.453 -64.698 61.593 -64.659 ; #431 5 61.896 -65.242 61.770 -65.067 61.808 -64.873 61.921 -65.067 ; #432 5 62.548 -64.465 62.548 -64.853 62.411 -64.912 62.386 -64.698 62.399 -64.504 62.523 -64.387 ; #433 5 60.481 -64.620 60.481 -64.814 60.352 -64.679 60.313 -64.523 60.377 -64.426 ; #434 5 63.868 -64.737 63.745 -64.640 63.672 -64.445 63.794 -64.581 63.893 -64.543 ; #435 5 63.599 -64.484 63.477 -64.426 63.378 -64.213 63.636 -64.329 ; #436 5 46.431 -63.145 46.540 -63.533 46.493 -63.727 46.478 -63.941 46.632 -63.883 46.756 -64.077 46.910 -63.980 46.956 -64.174 46.648 -64.407 46.617 -64.213 46.462 -64.116 46.353 -63.708 46.261 -63.688 46.199 -63.494 46.152 -63.300 46.245 -63.086 46.152 -62.873 45.997 -62.892 45.966 -62.679 45.982 -62.485 46.152 -62.465 46.307 -62.387 46.431 -61.999 46.478 -62.193 46.478 -62.349 ; #437 5 10.947 -63.844 11.139 -63.844 10.985 -64.038 10.947 -64.252 10.851 -64.057 ; #438 5 59.846 -64.116 59.715 -63.999 59.846 -64.038 ; #439 5 67.617 -63.980 67.503 -63.960 67.514 -63.766 67.628 -63.921 ; #440 5 67.331 -63.455 67.274 -63.650 67.262 -63.455 ; #441 5 67.021 -62.834 67.067 -62.620 67.182 -62.504 67.056 -62.892 ; #442 5 17.265 -62.640 17.342 -62.853 17.209 -62.659 ; #443 5 65.668 -62.387 65.609 -62.193 65.727 -62.252 ; #444 5 10.063 -61.183 10.236 -60.989 10.620 -61.028 10.812 -61.086 10.793 -61.281 10.620 -61.494 10.428 -61.475 10.236 -61.514 10.043 -61.902 ; #445 5 16.284 -61.591 16.227 -61.785 16.037 -61.747 16.075 -61.552 16.264 -61.552 ; #446 5 56.890 -61.552 56.754 -61.630 56.618 -61.436 56.754 -61.378 56.754 -61.572 56.836 -61.378 56.904 -61.358 ; #447 5 56.440 -61.358 56.440 -61.164 56.467 -61.358 56.550 -61.552 ; #448 5 16.208 -61.514 16.322 -61.319 16.473 -61.514 16.284 -61.533 ; #449 5 15.336 -61.242 15.526 -61.281 15.583 -61.475 15.204 -61.358 ; #450 5 14.424 -60.834 14.634 -60.892 14.824 -61.028 14.843 -61.222 14.462 -61.047 14.405 -60.853 ; #451 5 56.028 -61.183 56.014 -60.970 56.152 -61.047 56.166 -61.086 ; #452 5 13.891 -60.892 14.101 -60.951 13.891 -61.067 13.701 -60.951 ; #453 5 13.167 -59.455 13.244 -59.649 13.052 -59.533 ; #454 5 54.918 -57.980 54.806 -58.174 54.764 -57.980 54.918 -57.941 ; #455 4 74.483 -57.358 74.483 -56.737 74.532 -56.523 74.562 -56.718 74.532 -56.931 74.513 -57.339 ; #456 4 73.870 -56.116 73.899 -56.523 73.870 -56.718 73.779 -56.310 ; #457 4 72.779 -55.766 72.748 -55.980 72.646 -56.057 72.769 -55.650 ; #458 4 73.459 -55.786 73.388 -55.591 73.489 -55.630 73.519 -55.844 73.569 -55.941 ; #459 4 72.759 -55.591 72.656 -55.805 72.614 -55.591 72.604 -55.397 72.799 -54.970 72.840 -55.184 ; #460 4 71.849 -55.747 71.818 -55.533 71.932 -55.514 ; #461 4 72.285 -55.417 72.295 -55.611 72.182 -55.689 72.141 -55.475 72.192 -55.281 72.379 -55.009 ; #462 4 70.386 -54.970 70.439 -54.756 70.483 -54.970 ; #463 4 69.909 -54.251 69.964 -54.659 69.942 -54.853 69.834 -54.931 69.779 -54.718 69.702 -54.523 69.746 -54.718 69.659 -54.912 69.582 -54.718 69.561 -54.523 69.550 -54.116 69.461 -53.708 69.550 -53.494 69.439 -53.378 69.439 -53.591 69.418 -53.786 69.439 -53.999 69.352 -54.193 69.319 -53.999 69.252 -53.786 69.241 -53.514 69.439 -52.310 69.483 -52.116 69.582 -51.902 69.702 -51.941 69.812 -52.038 69.909 -52.659 69.996 -52.853 70.116 -53.028 70.224 -53.417 70.311 -54.232 70.311 -54.446 70.268 -54.640 70.170 -54.834 70.062 -54.815 69.996 -54.640 ; #464 4 71.166 -53.941 71.059 -53.805 71.028 -53.611 71.081 -53.397 71.187 -53.436 71.303 -53.572 ; #465 4 71.650 -52.853 71.671 -53.261 71.660 -53.475 71.545 -53.417 71.524 -53.222 ; #466 4 65.538 -53.028 65.657 -52.989 65.573 -53.184 ; #467 4 71.250 -53.145 71.144 -52.951 71.166 -52.756 71.303 -52.349 71.345 -52.543 71.387 -52.951 71.345 -53.145 ; #468 4 68.497 -53.009 68.385 -53.125 68.374 -52.931 68.486 -52.989 ; #469 4 68.710 -52.562 68.642 -52.951 68.620 -52.756 68.642 -52.349 68.699 -52.174 ; #470 4 70.975 -52.077 70.868 -51.960 70.846 -51.766 70.878 -51.572 70.975 -51.980 ; #471 4 70.675 -51.514 70.686 -51.727 70.643 -51.514 ; #472 4 69.920 -51.203 69.877 -51.009 69.801 -51.203 69.691 -51.339 69.582 -51.261 69.527 -51.048 69.757 -50.892 69.801 -50.698 69.920 -50.989 ; #473 -2 47.017 -70.853 47.002 -70.814 46.879 -70.989 ; #474 -2 70.494 -70.310 70.601 -70.484 70.611 -70.387 ; #475 -5 -54.861 -70.193 -54.708 -70.232 -54.820 -70.426 -54.806 -70.620 -54.833 -70.814 -54.736 -70.620 -54.778 -71.028 -54.638 -70.950 -54.694 -71.145 -54.554 -71.241 -54.638 -71.455 -54.666 -71.649 -54.652 -71.843 -54.511 -71.999 -54.554 -71.805 -54.554 -71.591 -54.469 -71.805 -54.511 -71.591 -54.441 -71.397 -54.427 -71.203 -54.455 -71.009 -54.328 -70.814 -54.342 -70.620 -54.483 -70.717 -54.441 -70.504 -54.525 -70.310 -54.385 -70.465 -54.272 -70.659 -54.258 -70.853 -54.216 -70.659 -54.357 -70.271 -54.385 -70.077 -54.286 -69.999 -54.427 -69.863 -54.286 -69.843 -54.342 -69.650 -54.357 -69.455 -54.441 -69.261 -54.582 -69.377 -54.582 -69.183 -54.455 -68.989 -54.230 -69.591 -54.116 -69.999 -53.820 -70.174 -53.691 -69.999 -53.521 -69.397 -53.378 -69.358 -53.321 -69.552 -53.363 -69.941 -53.478 -70.193 -53.378 -70.387 -53.306 -70.465 -53.021 -70.446 -53.035 -70.232 -52.877 -70.096 -52.891 -70.290 -52.748 -70.387 -52.719 -70.174 -52.834 -69.999 -52.762 -69.727 -52.474 -69.475 -52.676 -69.067 -52.604 -68.873 -52.618 -68.679 -52.647 -68.620 -54.554 -68.620 -54.792 -68.640 -54.889 -68.640 -54.820 -68.834 -54.946 -69.028 -54.833 -69.630 -54.820 -69.824 -54.680 -69.960 -54.722 -69.999 -54.848 -69.999 ; #476 -5 -15.697 -69.999 -15.735 -69.805 -15.545 -69.882 -15.317 -69.785 -15.355 -69.591 -15.469 -69.377 -15.526 -69.358 -15.716 -69.377 -15.924 -69.300 -16.037 -69.261 -16.226 -69.106 -16.284 -69.300 -16.208 -69.494 -16.019 -69.436 -15.981 -69.650 -15.792 -69.805 -15.868 -69.999 ; #477 -5 -15.678 -69.164 -15.868 -69.009 -15.943 -68.814 -16.151 -68.873 -16.226 -68.853 -16.208 -68.640 -16.416 -68.756 -16.435 -68.912 -16.378 -68.873 -16.208 -68.950 -16.226 -68.873 -16.075 -69.067 -16.226 -69.106 -16.037 -69.261 -15.924 -69.300 -15.716 -69.377 -15.526 -69.358 ; #478 -5 -51.091 -69.397 -51.062 -69.377 -51.032 -69.319 ; #479 -5 -16.075 -69.067 -16.226 -68.873 -16.208 -68.950 -16.226 -69.067 -16.226 -69.106 ; #480 -5 76.338 -69.494 76.441 -69.455 76.487 -69.028 76.563 -68.814 76.591 -68.620 76.572 -68.426 76.572 -68.212 76.600 -67.979 76.702 -68.135 76.656 -68.523 76.656 -68.756 76.675 -69.183 76.758 -69.999 76.852 -69.999 76.944 -69.785 76.981 -69.591 76.981 -69.785 76.795 -70.348 76.795 -70.562 76.823 -70.776 76.898 -70.970 76.926 -70.776 76.953 -70.970 76.953 -71.183 77.018 -71.378 77.119 -71.203 77.146 -70.989 77.192 -70.795 77.238 -70.193 77.229 -69.688 77.165 -68.445 77.165 -68.232 77.201 -67.824 77.119 -66.814 77.146 -66.407 77.192 -66.212 77.146 -66.814 77.220 -67.824 77.220 -68.038 77.201 -68.232 77.229 -68.853 77.275 -69.067 77.367 -68.445 77.385 -67.591 77.349 -66.737 77.284 -66.543 77.275 -66.329 77.340 -66.543 77.431 -66.523 77.431 -66.115 77.531 -66.135 77.622 -66.329 77.641 -66.523 77.713 -66.737 77.650 -67.145 77.558 -67.319 77.531 -67.514 77.494 -68.368 77.585 -68.445 77.585 -68.659 77.494 -68.776 77.449 -69.183 77.531 -69.805 77.540 -69.999 77.585 -70.212 77.641 -69.785 77.731 -69.572 77.695 -69.785 77.668 -70.193 77.668 -70.407 77.713 -70.620 77.822 -70.193 77.822 -69.999 77.840 -69.999 77.858 -70.387 77.776 -70.776 77.758 -71.241 77.804 -71.436 77.876 -71.222 77.867 -71.417 77.920 -71.630 77.894 -71.824 77.911 -72.018 77.966 -72.232 78.056 -72.407 78.074 -72.620 78.173 -73.028 78.217 -72.814 78.306 -72.601 78.342 -72.814 78.440 -72.679 78.528 -72.484 78.565 -71.863 78.618 -71.649 78.635 -71.455 78.618 -70.814 78.706 -70.620 78.750 -69.999 78.785 -69.999 78.793 -69.921 78.820 -69.281 78.864 -69.086 78.882 -68.873 78.970 -69.067 79.048 -68.445 79.075 -68.115 79.031 -68.057 77.840 -66.426 76.394 -64.426 76.310 -64.329 76.253 -64.387 76.253 -64.581 76.159 -64.679 76.178 -64.892 76.112 -64.970 76.131 -65.358 76.026 -65.358 76.026 -65.552 76.074 -65.766 76.168 -65.747 76.234 -65.552 76.273 -65.747 76.263 -65.941 76.282 -66.154 76.196 -66.348 76.103 -66.368 76.121 -66.562 76.263 -66.970 76.196 -67.183 76.103 -67.009 76.026 -66.795 75.979 -66.601 75.951 -66.795 76.007 -67.494 76.074 -68.193 76.074 -68.368 76.150 -68.445 76.159 -68.659 76.273 -69.067 ; #481 -5 47.371 -68.717 47.478 -68.484 47.615 -68.368 47.768 -68.368 47.920 -68.310 47.966 -68.115 47.996 -68.018 47.996 -67.630 47.890 -67.436 47.920 -67.106 47.981 -66.912 47.981 -66.892 47.996 -66.834 47.996 -66.737 48.026 -66.640 48.058 -66.445 47.935 -66.038 47.905 -65.844 47.752 -65.708 47.615 -65.630 47.813 -65.222 47.844 -65.028 47.813 -64.834 47.661 -64.795 47.340 -64.950 47.186 -65.125 47.079 -65.358 47.048 -65.203 47.094 -65.009 47.079 -64.814 46.925 -64.873 46.771 -64.853 46.602 -64.698 46.291 -64.562 46.214 -64.348 46.183 -63.960 46.137 -63.805 46.044 -63.999 45.997 -64.038 45.935 -63.844 45.825 -63.650 45.872 -63.436 45.810 -63.242 45.779 -62.853 45.732 -62.659 45.623 -62.756 45.670 -62.543 45.670 -62.349 45.747 -62.154 45.872 -61.960 45.716 -61.883 45.623 -61.688 45.685 -61.494 45.607 -61.378 45.592 -61.358 45.452 -61.242 45.388 -61.436 45.326 -61.261 45.341 -61.067 45.138 -61.455 45.154 -61.649 44.997 -61.999 44.902 -62.387 44.698 -62.989 44.682 -63.183 44.619 -63.281 44.603 -63.475 44.698 -63.611 44.540 -63.533 44.461 -63.727 44.509 -63.941 44.682 -63.883 44.525 -64.018 44.556 -64.213 44.398 -64.271 44.382 -64.310 44.224 -64.426 44.129 -64.620 43.970 -64.717 43.875 -64.912 43.716 -65.028 43.685 -65.125 43.685 -65.319 43.525 -65.397 43.541 -65.591 43.827 -65.980 43.685 -66.019 43.843 -66.154 44.177 -66.174 44.334 -66.115 44.493 -65.960 44.413 -66.154 44.572 -65.980 44.682 -65.785 44.603 -65.747 44.713 -65.552 44.666 -65.747 44.808 -65.552 45.169 -64.776 45.216 -64.562 45.310 -64.368 45.154 -64.348 45.060 -64.154 44.997 -64.154 44.997 -64.096 45.154 -64.154 45.310 -63.766 45.310 -63.572 45.357 -63.358 45.405 -63.747 45.405 -64.154 45.373 -64.348 45.405 -64.543 45.294 -64.756 45.452 -64.853 45.763 -64.271 45.841 -64.271 45.763 -64.465 46.075 -64.737 45.919 -64.620 45.763 -64.640 45.607 -64.776 45.514 -65.164 45.247 -65.747 45.216 -65.960 45.279 -66.076 45.452 -65.999 45.326 -66.193 45.169 -66.174 45.138 -66.290 45.154 -66.484 45.075 -66.698 45.060 -66.892 45.107 -67.086 45.154 -67.145 45.185 -67.203 45.201 -67.261 45.154 -67.358 45.247 -67.436 45.561 -67.397 45.592 -67.416 45.623 -67.611 45.763 -67.805 45.841 -67.747 46.152 -67.766 46.384 -67.785 47.063 -67.785 47.155 -67.941 47.171 -67.941 47.356 -68.251 47.186 -68.892 47.293 -69.048 ; #482 -5 -16.454 -68.931 -16.586 -68.853 -16.567 -69.028 ; #483 -5 -16.378 -69.028 -16.208 -68.950 -16.378 -68.873 -16.435 -68.912 -16.435 -68.950 -16.454 -68.931 -16.567 -69.028 ; #484 -5 -16.435 -68.950 -16.435 -68.912 -16.454 -68.931 ; #485 -5 -50.013 -68.931 -50.013 -69.009 -49.982 -68.873 ; #486 -5 -54.792 -68.640 -54.876 -68.562 -54.889 -68.640 ; #487 -4 -54.554 -68.620 -52.647 -68.620 -52.647 -68.601 -52.877 -68.348 -53.035 -68.251 -53.078 -68.445 -53.221 -68.543 -53.306 -68.348 -53.306 -68.154 -53.592 -67.979 -53.933 -67.514 -53.947 -67.494 -54.046 -67.319 -54.216 -66.912 -54.272 -66.717 -54.427 -66.523 -54.624 -65.941 -54.666 -65.747 -54.666 -65.533 -54.638 -65.339 -54.652 -65.145 -54.932 -65.358 -54.904 -65.960 -54.988 -66.154 -54.988 -66.348 -55.044 -66.543 -54.960 -66.737 -54.876 -67.494 -54.876 -67.533 -54.889 -67.727 -54.806 -68.271 -54.861 -68.523 -54.792 -68.640 ; #488 -4 81.382 -67.863 81.422 -67.494 81.349 -67.494 81.284 -68.057 81.193 -69.339 81.103 -69.960 81.103 -70.057 81.144 -69.843 81.169 -70.232 81.300 -68.504 ; #489 -2 68.810 -68.351 68.799 -68.196 68.765 -67.982 68.732 -67.982 68.732 -68.002 68.776 -68.409 68.799 -68.390 ; #490 -2 68.821 -68.290 68.787 -67.999 68.765 -67.999 68.799 -68.212 68.810 -68.368 ; #491 -4 79.075 -68.018 79.048 -67.805 79.101 -67.611 79.109 -67.494 79.136 -67.222 79.109 -67.009 79.109 -66.795 79.144 -66.601 79.144 -66.407 79.109 -66.174 79.127 -65.941 79.196 -65.727 79.292 -65.533 79.387 -65.125 79.560 -64.814 79.646 -64.989 79.741 -64.970 79.912 -65.009 79.997 -65.067 80.031 -64.873 80.065 -64.407 80.125 -64.213 80.142 -63.785 80.150 -63.999 80.184 -64.193 80.125 -64.387 80.091 -64.620 80.065 -65.009 80.082 -65.222 80.005 -65.863 80.015 -66.076 80.082 -66.290 80.091 -66.484 80.057 -66.912 80.159 -67.319 80.243 -67.475 80.327 -67.475 80.454 -66.853 80.546 -66.776 80.613 -66.135 80.671 -65.921 80.663 -65.514 80.696 -65.708 80.739 -65.514 80.788 -65.086 80.872 -65.028 80.905 -64.814 80.987 -64.756 80.996 -64.543 81.070 -63.902 81.144 -63.688 81.120 -63.494 80.954 -63.300 80.880 -63.106 80.796 -62.950 80.763 -62.756 80.929 -63.145 81.020 -63.261 81.103 -63.339 81.185 -63.242 81.218 -63.028 81.226 -62.834 81.201 -62.601 81.193 -62.193 81.070 -61.552 81.111 -61.339 81.120 -61.145 81.161 -60.951 81.243 -61.125 81.324 -61.222 81.414 -61.067 81.456 -60.853 81.537 -60.912 81.675 -61.319 81.756 -61.436 81.813 -61.242 81.901 -60.640 81.941 -60.057 81.901 -59.669 81.877 -58.989 81.837 -58.776 81.747 -58.737 81.667 -58.582 81.635 -58.387 81.594 -57.980 81.586 -57.766 81.504 -57.339 81.422 -57.164 81.366 -56.523 81.406 -56.718 81.422 -56.931 81.488 -57.164 81.561 -57.358 81.650 -57.785 81.658 -57.999 81.715 -58.232 81.885 -58.562 81.957 -59.164 82.014 -59.378 82.078 -58.756 82.109 -58.562 82.149 -57.941 82.173 -57.300 82.221 -56.659 82.221 -56.446 82.173 -56.232 82.253 -56.116 82.269 -55.902 82.237 -55.494 82.189 -55.300 82.173 -55.087 82.253 -55.203 82.285 -55.397 82.285 -55.591 82.357 -54.582 82.348 -54.349 82.324 -54.155 82.269 -53.960 82.109 -53.553 82.029 -53.611 81.941 -53.494 81.860 -53.533 81.691 -53.824 81.610 -53.786 81.521 -53.689 81.512 -53.494 81.675 -53.514 81.747 -53.300 81.788 -53.106 81.869 -52.931 81.949 -52.951 82.037 -52.892 81.973 -52.271 81.917 -51.863 81.901 -51.397 81.780 -50.756 81.732 -50.349 81.650 -50.213 81.618 -50.019 81.610 -49.824 81.643 -49.611 81.658 -49.844 81.739 -50.058 81.772 -50.465 81.852 -50.679 81.869 -50.892 81.949 -51.009 81.925 -50.795 81.901 -50.135 81.877 -49.941 81.877 -49.727 81.949 -49.514 82.037 -50.116 82.197 -50.718 82.364 -50.834 82.427 -51.028 82.507 -50.931 82.514 -49.863 82.475 -49.222 82.451 -49.028 82.333 -48.621 82.285 -47.980 82.173 -47.339 82.085 -46.310 82.046 -46.096 81.957 -45.980 81.901 -45.553 81.788 -45.164 81.764 -44.737 81.804 -44.310 81.885 -44.504 81.925 -44.698 81.941 -44.485 81.989 -44.912 82.053 -44.698 82.085 -44.504 82.165 -44.698 82.245 -44.718 82.292 -44.524 82.309 -44.310 82.309 -44.077 82.253 -43.436 82.245 -42.776 82.214 -42.562 82.214 -42.329 82.277 -42.737 82.277 -43.203 82.333 -43.824 82.412 -43.786 82.468 -44.193 82.483 -44.407 82.562 -44.621 82.586 -44.834 82.664 -45.223 82.719 -45.630 82.782 -45.397 82.766 -44.116 82.782 -43.669 82.782 -42.640 82.766 -42.194 82.680 -42.058 82.656 -41.863 82.577 -41.863 82.499 -41.747 82.531 -41.553 82.687 -41.747 82.735 -41.553 82.719 -41.339 82.672 -41.145 82.649 -40.931 82.570 -40.524 82.570 -40.310 82.507 -40.116 82.427 -40.077 82.364 -39.883 82.531 -39.922 82.610 -39.864 82.687 -39.980 82.719 -40.232 82.711 -40.465 82.782 -41.106 82.844 -41.980 82.844 -44.621 82.883 -44.815 82.907 -45.028 82.852 -45.223 82.852 -45.436 82.876 -45.650 82.844 -45.863 82.859 -46.291 82.883 -46.504 82.930 -46.698 82.961 -46.465 82.914 -46.019 82.977 -46.213 82.992 -46.679 83.054 -46.465 83.063 -46.252 83.085 -46.057 83.070 -45.844 83.031 -45.650 83.008 -45.436 82.992 -45.203 82.930 -45.106 82.961 -44.679 82.938 -44.465 82.907 -43.786 82.923 -43.397 82.930 -44.057 83.000 -44.893 83.125 -45.514 83.125 -45.320 83.163 -45.106 83.125 -44.912 83.163 -44.698 83.163 -44.252 83.125 -43.805 83.139 -43.397 83.116 -42.970 83.163 -43.397 83.170 -43.611 83.210 -43.824 83.210 -43.223 83.233 -43.009 83.264 -43.203 83.271 -43.009 83.271 -42.795 83.233 -42.349 83.233 -42.135 83.201 -41.902 83.125 -41.747 83.125 -41.533 83.101 -41.320 82.985 -40.679 82.961 -40.465 82.961 -39.630 82.945 -39.397 82.907 -39.184 82.797 -38.795 82.821 -38.543 82.852 -38.776 82.938 -38.912 82.992 -39.106 83.008 -38.912 83.023 -37.825 83.016 -37.378 83.047 -37.805 83.031 -38.446 83.078 -38.640 83.109 -38.252 83.125 -37.825 83.132 -37.145 83.155 -36.951 83.148 -37.417 83.201 -38.097 83.194 -38.543 83.271 -38.718 83.356 -38.815 83.433 -38.795 83.371 -37.941 83.379 -37.747 83.410 -37.961 83.494 -37.902 83.501 -37.669 83.486 -37.495 83.486 -37.436 83.455 -37.242 83.433 -36.834 83.379 -36.640 83.371 -36.407 83.448 -36.601 83.532 -36.718 83.548 -36.524 83.555 -36.077 83.539 -35.164 83.600 -34.757 83.539 -34.543 83.593 -34.330 83.509 -34.135 83.463 -33.941 83.486 -33.747 83.517 -33.941 83.593 -33.902 83.623 -33.068 83.616 -32.388 83.578 -32.155 83.600 -31.747 83.570 -31.320 83.570 -30.893 83.593 -30.679 83.600 -30.427 83.578 -29.786 83.555 -29.572 83.539 -29.359 83.478 -29.145 83.509 -28.912 83.478 -28.699 83.471 -28.912 83.433 -28.718 83.417 -28.505 83.463 -28.291 83.478 -27.844 83.440 -26.990 83.379 -26.194 83.340 -25.941 83.264 -25.728 83.201 -26.155 83.194 -26.369 83.139 -26.990 83.132 -27.650 83.179 -29.339 83.170 -29.941 83.148 -30.621 83.109 -30.834 83.101 -31.262 83.054 -31.650 83.054 -32.077 83.101 -32.504 83.132 -32.951 83.132 -33.378 83.116 -33.164 83.116 -32.912 83.094 -32.718 83.031 -32.524 83.000 -33.378 82.938 -34.038 82.907 -35.572 82.828 -35.436 82.751 -35.514 82.876 -35.126 82.914 -34.699 82.907 -34.019 82.868 -33.825 82.790 -33.902 82.852 -33.689 82.930 -33.670 82.954 -33.456 82.992 -31.922 82.930 -31.708 83.000 -31.475 83.070 -30.834 83.078 -30.446 83.125 -30.000 83.132 -29.339 83.109 -28.699 83.094 -28.466 83.063 -28.252 83.078 -27.864 83.054 -27.067 83.063 -26.640 83.109 -26.174 83.163 -25.106 83.116 -24.874 83.039 -24.893 82.961 -24.854 82.844 -25.262 82.766 -25.708 82.821 -25.029 82.899 -24.602 82.892 -24.155 82.837 -23.961 82.758 -24.000 82.774 -23.786 82.837 -23.572 82.852 -23.359 82.797 -23.145 82.766 -22.757 82.790 -22.543 82.782 -22.485 82.719 -22.077 82.704 -21.883 82.632 -21.456 82.554 -21.378 82.435 -22.213 82.357 -22.330 82.333 -22.485 82.324 -22.543 82.285 -23.165 82.285 -23.805 82.245 -24.233 82.181 -24.660 82.149 -25.087 82.141 -26.155 82.189 -27.922 82.165 -28.796 82.134 -29.242 82.134 -29.670 82.173 -30.077 82.181 -30.543 82.189 -30.718 82.205 -30.932 82.197 -31.592 82.181 -31.165 82.181 -30.543 82.149 -30.116 82.093 -29.903 81.965 -31.359 81.957 -31.728 81.925 -31.941 81.917 -32.155 81.860 -32.757 81.828 -32.970 81.747 -32.951 81.667 -32.873 81.675 -32.679 81.724 -32.465 81.813 -31.825 81.869 -30.970 81.869 -30.737 81.933 -29.864 81.869 -29.670 81.949 -29.475 81.989 -29.048 82.021 -27.359 82.014 -26.097 81.997 -25.475 81.925 -25.281 81.845 -25.242 81.764 -25.359 81.667 -26.000 81.561 -26.854 81.529 -27.281 81.456 -27.514 81.390 -27.301 81.382 -27.514 81.382 -27.281 81.422 -26.873 81.472 -26.679 81.635 -25.184 81.683 -24.990 81.715 -24.563 81.707 -24.349 81.724 -24.155 81.973 -24.038 82.046 -23.631 82.061 -22.815 82.078 -22.602 82.078 -22.407 82.053 -22.194 81.965 -22.038 81.724 -21.980 81.553 -22.097 81.472 -22.194 81.349 -22.485 81.309 -22.582 81.267 -22.796 81.185 -22.932 80.938 -23.708 80.855 -23.864 80.772 -23.903 80.714 -24.097 80.680 -24.330 80.671 -24.116 80.630 -24.310 80.537 -24.427 80.680 -23.786 80.763 -23.689 80.805 -23.495 80.896 -23.514 80.896 -23.301 80.971 -22.893 81.045 -22.699 81.103 -22.485 81.153 -22.291 81.201 -22.058 81.226 -21.864 81.366 -21.417 81.447 -21.223 81.553 -20.815 81.594 -20.602 81.643 -20.174 81.643 -19.961 81.594 -20.174 81.414 -20.213 81.447 -20.000 81.504 -19.786 81.561 -19.359 81.545 -18.951 81.479 -18.757 81.496 -18.524 81.447 -18.310 81.464 -17.922 81.545 -18.000 81.553 -17.786 81.594 -17.592 81.626 -17.806 81.715 -17.767 81.724 -17.553 81.691 -17.320 81.852 -17.456 81.837 -17.242 81.860 -17.048 81.852 -16.835 81.933 -16.602 81.909 -16.388 81.925 -15.980 81.901 -15.592 81.925 -14.951 81.909 -14.524 81.837 -13.903 81.788 -13.068 81.764 -12.854 81.739 -12.660 81.635 -12.233 81.618 -12.039 81.537 -12.039 81.488 -12.233 81.399 -12.854 81.316 -12.990 81.284 -13.398 81.201 -13.592 81.144 -13.825 81.128 -14.019 81.128 -14.640 81.111 -14.854 81.029 -14.854 80.971 -14.621 80.888 -14.660 80.829 -15.709 80.739 -15.903 80.704 -16.504 80.747 -17.145 80.739 -17.573 80.788 -17.767 80.788 -17.980 80.704 -18.000 80.688 -18.213 80.638 -18.407 80.621 -18.621 80.638 -19.281 80.663 -19.514 80.680 -19.942 80.671 -20.155 80.588 -20.543 80.571 -20.757 80.580 -21.184 80.554 -20.971 80.496 -20.738 80.554 -20.543 80.571 -20.330 80.630 -20.136 80.647 -19.922 80.630 -19.514 80.596 -19.301 80.588 -18.873 80.546 -18.427 80.571 -17.786 80.630 -17.359 80.563 -16.951 80.546 -16.291 80.529 -16.097 80.446 -16.233 80.378 -16.447 80.403 -16.640 80.319 -16.543 80.243 -16.951 80.226 -17.145 80.235 -17.980 80.209 -18.388 80.285 -19.650 80.269 -19.864 80.133 -20.271 80.108 -20.485 80.039 -20.543 80.005 -20.485 79.955 -20.543 79.861 -20.602 79.784 -20.194 79.817 -20.000 79.835 -20.000 79.817 -20.194 79.904 -20.136 79.989 -20.000 80.039 -19.553 80.091 -19.340 80.099 -19.145 80.082 -18.951 80.142 -18.077 80.142 -17.864 80.125 -17.650 80.091 -17.456 79.980 -17.534 79.817 -17.922 79.758 -18.136 79.741 -18.330 79.792 -19.145 79.750 -19.359 79.672 -19.573 79.586 -19.534 79.492 -19.709 79.405 -19.592 79.319 -19.631 79.232 -19.767 79.319 -19.573 79.319 -19.145 79.232 -19.126 79.275 -19.340 79.179 -19.514 79.118 -19.709 79.092 -20.000 79.031 -20.000 78.970 -19.902 78.882 -20.000 78.864 -20.097 78.882 -20.505 78.873 -20.699 78.838 -20.912 78.767 -21.107 78.680 -21.009 78.644 -21.417 78.635 -21.204 78.582 -20.971 78.493 -21.145 78.306 -21.359 78.208 -21.281 78.127 -21.476 78.136 -21.689 78.065 -21.495 78.011 -21.708 77.911 -21.786 77.957 -21.592 77.858 -21.747 77.767 -21.941 77.713 -21.941 77.686 -22.038 77.603 -22.291 77.477 -22.563 77.340 -22.699 77.211 -22.776 76.767 -22.971 76.600 -22.990 76.385 -22.951 76.234 -22.854 76.074 -22.679 75.904 -22.388 75.828 -22.136 75.742 -21.611 75.685 -20.932 75.656 -19.631 75.656 -19.534 75.628 -19.514 75.522 -19.359 75.425 -19.340 75.233 -19.398 75.137 -19.592 75.146 -19.786 75.185 -20.000 75.301 -20.000 75.339 -20.213 75.291 -20.621 75.368 -21.029 75.474 -21.223 75.531 -21.417 75.647 -22.038 75.637 -22.252 75.617 -22.058 75.531 -21.631 75.446 -21.436 75.474 -21.844 75.474 -22.058 75.512 -22.466 75.465 -22.077 75.465 -21.864 75.436 -21.456 75.359 -21.262 75.320 -21.048 75.253 -20.854 75.214 -20.640 75.118 -20.640 75.137 -20.854 75.127 -21.048 75.098 -21.262 75.030 -21.456 74.991 -21.650 75.108 -22.058 75.127 -22.252 75.079 -22.038 74.982 -21.883 74.953 -21.689 74.982 -21.476 75.089 -21.068 75.030 -20.640 74.826 -20.757 74.729 -20.602 74.660 -20.815 74.640 -21.009 74.669 -20.194 74.621 -20.000 74.592 -19.786 74.621 -19.592 74.679 -19.398 74.582 -19.262 74.493 -19.048 74.395 -19.126 74.296 -19.262 74.247 -19.456 74.237 -19.670 74.267 -20.019 74.345 -20.233 74.444 -20.407 74.444 -20.796 74.473 -21.223 74.444 -21.631 74.513 -21.825 74.562 -22.038 74.464 -21.825 74.355 -21.864 74.316 -22.058 74.306 -22.466 74.316 -22.563 74.483 -24.349 74.513 -25.048 74.483 -25.436 74.405 -25.922 74.177 -26.757 74.078 -27.029 73.850 -27.495 73.700 -27.708 73.328 -28.135 72.891 -28.524 72.203 -28.951 71.514 -29.223 71.102 -29.320 70.719 -29.378 69.996 -29.417 70.083 -28.660 70.094 -28.563 70.051 -28.369 70.073 -28.155 70.007 -27.961 70.051 -27.553 69.964 -27.456 69.996 -27.262 70.083 -27.184 70.191 -27.029 70.257 -26.815 70.246 -26.621 70.202 -26.427 70.213 -26.233 70.353 -25.631 70.386 -25.436 70.386 -25.223 70.268 -25.301 70.343 -25.087 70.300 -24.893 70.289 -24.699 70.137 -23.883 70.137 -23.689 70.105 -23.495 70.083 -22.893 70.094 -22.505 70.127 -22.310 70.105 -22.097 69.996 -22.291 69.996 -22.485 69.877 -22.835 69.855 -23.242 69.757 -23.029 69.757 -23.437 69.724 -23.631 69.735 -23.844 69.659 -23.650 69.550 -23.669 69.516 -23.864 69.571 -24.272 69.472 -24.077 69.385 -24.466 69.374 -24.660 69.263 -24.621 69.252 -24.815 69.286 -25.009 69.230 -25.223 69.219 -25.009 69.109 -25.165 69.043 -25.359 69.087 -25.553 68.965 -25.436 68.965 -25.631 68.854 -25.767 68.787 -25.980 68.787 -26.174 68.664 -26.349 68.687 -26.757 68.642 -26.951 68.575 -27.048 68.597 -27.242 68.531 -27.456 68.531 -27.650 68.464 -28.058 68.497 -28.271 68.363 -28.660 68.318 -28.854 68.363 -29.067 68.250 -29.456 68.283 -29.670 68.396 -29.825 68.374 -30.000 68.239 -30.000 68.261 -30.194 68.149 -30.038 68.104 -30.232 68.216 -30.407 68.250 -30.796 68.205 -30.601 68.081 -30.446 68.059 -30.640 68.070 -30.854 68.047 -31.048 68.126 -31.436 68.104 -31.630 68.216 -31.708 68.261 -31.902 68.374 -32.097 68.430 -32.291 68.542 -32.349 68.497 -32.543 68.385 -32.446 68.352 -32.252 68.239 -32.116 68.227 -32.310 68.149 -32.116 68.036 -32.135 67.923 -32.038 67.855 -32.232 67.867 -32.427 67.810 -32.621 67.719 -32.815 67.674 -33.009 67.560 -33.164 67.537 -33.359 67.423 -33.320 67.366 -33.534 67.251 -33.359 67.228 -33.553 67.113 -33.553 66.987 -33.941 66.768 -34.058 66.651 -34.194 66.616 -34.388 66.733 -34.427 66.488 -34.524 66.372 -34.640 66.302 -35.029 66.349 -35.223 66.232 -35.145 66.279 -35.339 66.279 -35.553 66.349 -35.747 66.232 -35.553 66.115 -35.689 66.127 -35.883 66.009 -35.883 65.927 -36.097 65.986 -36.291 66.079 -36.485 65.962 -36.659 65.904 -37.048 66.021 -37.029 65.786 -37.184 65.821 -37.378 65.868 -37.495 65.904 -37.572 65.904 -37.786 66.021 -37.805 66.115 -37.592 66.232 -37.417 66.302 -37.223 66.326 -37.417 66.314 -37.572 66.360 -37.766 66.384 -37.980 66.291 -37.766 66.244 -37.980 66.127 -37.941 66.009 -37.999 65.962 -38.194 65.997 -38.388 65.880 -38.368 65.833 -38.174 65.716 -38.174 65.644 -38.388 65.632 -38.582 65.680 -38.776 65.585 -38.970 65.668 -39.184 65.538 -39.320 65.609 -39.514 65.644 -39.728 65.514 -39.805 65.550 -39.999 65.479 -40.194 65.432 -39.999 65.241 -39.786 65.193 -39.999 65.098 -39.999 65.039 -40.213 65.027 -40.407 65.146 -40.601 65.015 -41.009 64.895 -41.087 64.691 -40.679 64.571 -40.582 64.450 -40.562 64.354 -40.349 64.366 -40.757 64.317 -40.951 64.317 -41.164 64.342 -41.359 64.257 -41.553 64.171 -41.359 64.147 -41.164 64.159 -40.757 64.050 -40.562 63.929 -40.757 63.831 -40.562 63.709 -40.640 63.685 -40.834 63.709 -41.048 63.758 -41.242 63.758 -41.436 63.697 -41.223 63.636 -40.873 63.513 -40.834 63.439 -41.028 63.513 -41.223 63.402 -41.028 63.452 -41.223 63.562 -41.417 63.427 -41.320 63.465 -41.533 63.402 -41.320 63.304 -41.126 63.353 -41.281 63.414 -41.495 63.427 -41.533 63.526 -41.747 63.402 -41.863 63.218 -41.456 63.095 -41.553 63.181 -41.747 63.218 -41.961 63.144 -41.747 63.033 -41.553 63.033 -41.747 63.070 -41.961 63.181 -42.155 63.045 -42.019 63.021 -41.805 62.971 -41.611 62.846 -41.747 62.846 -41.941 62.809 -42.135 62.871 -42.349 62.871 -42.543 62.747 -42.504 62.772 -42.698 62.710 -42.912 62.760 -43.106 62.598 -42.698 62.598 -42.504 62.474 -42.349 62.536 -42.543 62.436 -42.349 62.424 -42.543 62.499 -42.737 62.523 -42.931 62.336 -42.524 62.311 -42.329 62.185 -42.271 61.959 -42.465 62.022 -42.252 61.896 -42.368 61.770 -42.310 61.733 -42.504 61.783 -42.718 61.695 -42.504 61.720 -42.310 61.593 -42.446 61.555 -42.640 61.593 -43.048 61.529 -42.834 61.529 -42.640 61.428 -42.446 61.314 -42.659 61.339 -43.048 61.263 -42.659 61.212 -42.854 61.212 -43.048 61.109 -42.659 61.135 -43.436 61.097 -43.242 61.058 -42.698 60.931 -42.718 60.893 -42.931 60.918 -43.320 60.841 -42.931 60.816 -43.126 60.829 -43.339 60.789 -43.145 60.776 -42.931 60.648 -42.951 60.661 -43.145 60.623 -42.951 60.687 -42.757 60.520 -43.164 60.494 -43.359 60.533 -43.553 60.674 -43.669 60.572 -43.863 60.584 -44.057 60.481 -43.456 60.352 -43.495 60.390 -43.281 60.262 -43.145 60.132 -43.203 60.107 -43.397 60.184 -43.980 60.313 -43.999 60.287 -44.193 60.158 -44.291 60.132 -44.407 60.132 -44.446 60.119 -44.446 60.107 -44.485 60.002 -44.562 60.002 -44.776 60.132 -44.854 60.094 -45.048 60.184 -44.854 60.313 -44.737 60.443 -44.562 60.339 -44.757 60.210 -44.893 60.184 -45.106 60.313 -44.970 60.712 -44.659 60.469 -45.067 60.456 -45.262 60.584 -45.164 60.520 -45.358 60.648 -45.242 60.623 -45.456 60.494 -45.553 60.623 -45.650 60.558 -45.844 60.674 -45.650 60.687 -45.844 60.751 -45.650 60.854 -45.456 60.905 -45.262 60.918 -45.456 60.803 -45.650 60.712 -46.057 60.841 -45.960 60.803 -46.155 60.905 -45.960 60.969 -45.553 61.058 -45.378 61.200 -45.203 61.109 -45.397 61.238 -45.494 61.109 -45.475 60.995 -45.669 60.956 -45.863 60.944 -46.077 61.046 -45.863 61.071 -45.669 61.200 -45.805 61.327 -45.747 61.225 -45.941 61.097 -45.922 61.046 -46.116 61.046 -46.310 61.007 -46.504 60.931 -46.698 60.803 -46.854 60.841 -47.048 60.969 -47.009 60.905 -47.223 60.931 -47.417 60.880 -47.805 60.880 -47.417 60.816 -47.611 60.816 -47.805 60.841 -47.941 60.816 -47.999 60.816 -48.213 60.905 -48.019 60.956 -47.824 60.995 -48.019 60.982 -48.213 61.046 -48.019 61.160 -47.805 61.097 -48.019 61.173 -48.213 61.301 -48.019 61.238 -48.232 61.135 -48.426 61.377 -48.504 61.415 -48.698 61.403 -48.892 61.466 -48.698 61.529 -48.310 61.555 -48.504 61.479 -48.892 61.491 -49.086 61.555 -49.300 61.605 -49.086 61.580 -48.892 61.605 -48.698 61.605 -48.892 61.745 -48.892 61.733 -49.086 61.859 -49.009 61.959 -48.795 61.947 -49.009 61.821 -49.184 61.808 -49.397 61.934 -49.397 62.034 -49.009 62.160 -49.048 62.022 -49.145 61.984 -49.339 61.997 -49.533 62.122 -49.650 62.097 -49.436 62.147 -49.650 62.236 -49.436 62.236 -49.824 62.361 -49.902 62.311 -49.999 62.399 -50.193 62.536 -50.291 62.660 -50.232 62.809 -49.999 62.834 -49.999 62.797 -50.193 62.933 -50.155 62.971 -49.999 63.058 -49.805 62.933 -50.193 62.846 -50.388 62.971 -50.291 63.008 -50.504 63.132 -50.446 63.205 -50.252 63.230 -50.058 63.230 -50.252 63.181 -50.446 63.230 -50.853 63.218 -51.048 63.341 -51.106 63.365 -50.504 63.402 -50.310 63.378 -50.912 63.489 -51.106 63.538 -50.912 63.624 -51.106 63.611 -50.912 63.672 -50.504 63.660 -50.718 63.624 -50.912 63.648 -51.106 63.624 -51.300 63.660 -51.494 63.794 -51.397 63.843 -51.203 63.929 -50.989 63.843 -51.397 63.965 -51.358 64.038 -51.553 64.099 -50.834 64.171 -50.640 64.135 -50.446 64.196 -50.252 64.111 -50.038 64.233 -50.116 64.208 -50.310 64.221 -50.504 64.354 -50.388 64.233 -50.582 64.135 -50.970 64.087 -51.378 64.159 -51.572 64.159 -51.378 64.221 -51.572 64.184 -51.184 64.426 -50.815 64.426 -50.620 64.390 -50.407 64.474 -50.213 64.426 -50.407 64.546 -50.465 64.631 -50.853 64.631 -50.660 64.667 -50.465 64.691 -50.660 64.703 -50.465 64.643 -50.271 64.522 -50.193 64.438 -49.999 64.378 -49.786 64.354 -49.591 64.498 -49.999 64.631 -50.116 64.679 -49.999 64.703 -49.999 64.715 -50.193 64.871 -49.999 64.751 -50.388 64.823 -50.582 65.063 -50.795 65.181 -50.718 65.170 -50.912 65.050 -50.873 64.931 -50.737 64.811 -50.679 64.691 -50.873 64.619 -51.087 64.751 -51.087 64.727 -51.281 64.607 -51.417 64.486 -51.475 64.378 -51.689 64.257 -51.747 64.208 -51.960 64.450 -52.116 64.583 -52.038 64.703 -52.116 64.847 -51.727 64.859 -51.533 64.979 -51.320 64.931 -51.514 65.015 -51.708 64.895 -51.786 64.799 -51.999 64.799 -52.193 64.931 -52.135 65.170 -52.213 65.289 -52.038 65.193 -52.232 65.325 -52.193 65.253 -52.387 65.384 -52.427 65.420 -52.232 65.573 -51.824 65.692 -51.708 65.751 -51.300 65.751 -50.912 65.680 -50.718 65.751 -50.679 65.786 -51.164 65.739 -51.553 65.692 -51.708 65.632 -51.941 65.514 -52.019 65.432 -52.407 65.455 -52.504 65.467 -52.601 65.585 -52.562 65.561 -52.756 65.798 -52.698 65.680 -52.892 65.739 -53.087 65.810 -52.892 65.810 -53.087 65.939 -52.679 65.880 -52.484 65.845 -52.271 65.962 -52.096 65.997 -51.902 65.939 -51.708 66.056 -51.844 65.904 -52.427 65.974 -52.640 65.880 -53.028 65.927 -53.222 65.997 -53.028 65.939 -53.222 65.986 -53.417 66.021 -53.222 66.056 -53.417 66.221 -52.815 66.337 -52.620 66.419 -52.427 66.454 -52.213 66.523 -52.019 66.651 -51.824 66.697 -51.630 66.848 -51.222 66.860 -51.028 66.825 -50.834 66.860 -50.426 66.848 -50.834 66.975 -50.815 66.998 -50.601 66.975 -50.213 66.987 -50.019 66.998 -50.426 67.021 -50.620 67.056 -50.426 66.998 -50.834 66.906 -51.222 66.604 -52.038 66.500 -52.232 66.372 -52.620 66.186 -53.028 66.104 -53.417 66.139 -53.650 66.244 -53.456 66.279 -53.261 66.256 -53.456 66.279 -53.650 66.395 -53.669 66.512 -53.475 66.500 -53.281 66.546 -52.873 66.523 -52.679 66.546 -52.484 66.570 -52.892 66.546 -53.087 66.558 -53.281 66.604 -53.475 66.686 -53.281 66.674 -52.873 66.733 -52.679 66.721 -52.873 66.744 -53.067 66.744 -52.873 66.825 -52.679 66.825 -52.873 66.860 -52.679 66.848 -52.484 66.917 -52.291 66.975 -52.484 66.906 -52.679 66.929 -53.087 66.906 -53.494 66.987 -53.689 66.998 -53.300 67.010 -53.494 67.067 -53.689 67.090 -53.494 67.090 -53.689 67.148 -53.883 67.240 -53.494 67.262 -52.912 67.297 -52.718 67.308 -52.504 67.354 -52.310 67.366 -52.116 67.331 -51.922 67.343 -51.727 67.320 -51.514 67.205 -51.358 67.125 -51.164 67.182 -50.756 67.194 -50.349 67.217 -50.562 67.205 -50.776 67.148 -51.184 67.251 -51.378 67.366 -51.436 67.400 -51.242 67.388 -51.455 67.354 -51.650 67.388 -52.252 67.377 -52.446 67.285 -53.048 67.320 -53.261 67.228 -53.650 67.297 -53.844 67.411 -53.805 67.480 -53.591 67.514 -53.397 67.696 -52.989 67.742 -52.601 67.742 -52.795 67.765 -52.387 67.696 -51.999 67.628 -51.786 67.674 -51.378 67.628 -51.184 67.583 -50.970 67.514 -50.776 67.480 -50.582 67.480 -50.388 67.491 -50.174 67.514 -50.582 67.617 -50.795 67.719 -50.193 67.685 -49.999 67.708 -49.999 67.731 -50.174 67.731 -50.368 67.674 -50.562 67.640 -50.776 67.662 -50.970 67.719 -51.164 67.844 -50.368 67.901 -50.776 67.787 -50.834 67.776 -51.222 67.889 -51.261 67.968 -51.067 67.946 -51.261 67.867 -51.475 67.742 -51.397 67.776 -51.786 67.765 -51.980 67.878 -52.155 67.878 -51.941 67.946 -51.747 67.901 -51.960 67.901 -52.155 67.867 -52.349 67.799 -52.562 67.765 -52.951 67.583 -53.339 67.526 -53.553 67.605 -53.747 67.696 -53.553 67.810 -53.669 67.799 -53.475 67.821 -53.281 67.878 -53.475 67.855 -53.281 67.968 -53.184 67.991 -52.989 68.036 -53.184 68.047 -52.989 67.980 -52.795 67.934 -52.582 67.946 -52.193 67.991 -52.795 68.149 -53.203 68.171 -53.397 68.194 -53.203 68.070 -52.387 68.160 -52.776 68.194 -52.582 68.081 -52.193 68.059 -51.980 68.059 -51.184 67.901 -50.582 67.923 -50.388 67.923 -50.174 67.968 -50.562 68.171 -51.378 68.194 -51.184 68.171 -50.989 68.239 -51.184 68.250 -51.378 68.283 -51.164 68.396 -51.184 68.475 -50.776 68.464 -50.989 68.419 -51.184 68.408 -51.397 68.430 -51.591 68.352 -51.397 68.272 -51.591 68.239 -51.805 68.239 -51.999 68.182 -52.387 68.283 -52.582 68.272 -52.795 68.329 -52.601 68.329 -52.795 68.296 -52.989 68.307 -53.203 68.374 -52.795 68.508 -52.387 68.497 -52.582 68.553 -52.368 68.575 -52.038 68.575 -51.980 68.531 -51.766 68.542 -51.378 68.564 -51.164 68.675 -51.028 68.664 -50.834 68.787 -50.756 68.776 -50.970 68.743 -51.164 68.854 -51.164 68.898 -51.067 68.887 -51.067 68.931 -50.970 68.898 -51.067 69.109 -51.067 69.120 -50.853 69.076 -50.660 68.965 -50.524 68.909 -50.329 69.021 -50.465 69.054 -50.271 69.054 -50.465 69.098 -50.660 69.142 -50.271 69.197 -50.465 69.308 -50.446 69.208 -50.640 69.186 -50.834 69.197 -51.028 69.308 -50.970 69.429 -50.834 69.505 -50.446 69.505 -50.252 69.539 -50.446 69.494 -50.640 69.472 -50.853 69.593 -50.795 69.626 -50.601 69.593 -50.407 69.670 -50.601 69.670 -50.795 69.779 -50.601 69.757 -50.193 69.866 -50.310 69.899 -50.504 69.996 -50.232 70.040 -50.252 70.051 -50.465 69.996 -50.660 69.964 -50.931 69.996 -51.125 69.996 -50.970 70.062 -51.164 69.996 -51.358 69.975 -51.553 69.996 -51.533 70.007 -51.630 70.019 -51.844 70.051 -52.038 70.051 -52.252 70.116 -52.446 70.224 -52.640 70.311 -53.067 70.343 -53.261 70.375 -53.863 70.622 -54.485 70.740 -54.504 70.793 -54.310 70.825 -54.096 70.793 -53.689 70.762 -53.494 70.772 -53.087 70.740 -52.679 70.698 -52.465 70.504 -51.863 70.364 -51.067 70.353 -50.853 70.418 -50.660 70.526 -50.562 70.418 -50.756 70.579 -51.164 70.537 -50.970 70.558 -50.756 70.633 -50.951 70.654 -50.737 70.698 -51.164 70.751 -51.358 70.793 -51.145 70.762 -50.931 70.762 -50.737 70.878 -50.873 70.846 -51.067 70.889 -51.261 70.910 -51.475 70.964 -51.669 71.059 -51.863 70.964 -51.261 71.017 -51.067 71.028 -51.261 71.133 -51.378 71.112 -51.572 71.133 -51.766 71.112 -51.960 71.144 -52.174 71.219 -51.980 71.250 -51.766 71.250 -51.553 71.356 -51.650 71.324 -51.844 71.240 -52.058 71.187 -52.252 71.229 -52.446 71.282 -52.252 71.387 -52.155 71.430 -51.941 71.451 -51.553 71.483 -51.339 71.503 -51.747 71.377 -52.368 71.408 -52.970 71.493 -52.776 71.535 -52.582 71.566 -52.368 71.566 -52.155 71.608 -51.766 71.714 -51.650 71.629 -52.038 71.619 -52.232 71.629 -52.446 71.681 -52.640 71.681 -53.028 71.703 -53.242 71.787 -53.048 71.839 -52.989 71.839 -52.970 71.859 -52.951 71.901 -52.912 71.984 -52.718 71.953 -52.912 71.859 -52.951 71.839 -52.989 71.818 -53.184 71.911 -53.378 72.016 -53.397 72.099 -53.591 72.203 -53.747 72.306 -53.844 72.347 -53.630 72.347 -53.844 72.306 -53.844 72.295 -53.824 72.141 -53.805 72.058 -53.611 71.839 -53.397 71.755 -53.591 71.745 -53.786 71.640 -53.747 71.650 -53.941 71.535 -53.844 71.430 -53.980 71.366 -54.368 71.356 -54.562 71.356 -54.776 71.430 -54.970 71.462 -55.184 71.398 -55.378 71.503 -55.572 71.619 -55.669 71.671 -55.883 71.797 -55.475 71.766 -55.261 71.870 -55.358 71.891 -55.164 71.891 -54.951 71.943 -54.756 72.016 -54.562 72.130 -54.485 72.027 -54.620 71.953 -54.815 71.922 -55.242 71.963 -55.456 72.192 -55.087 72.254 -54.892 72.358 -54.776 72.420 -54.989 72.368 -55.184 72.471 -55.572 72.502 -55.378 72.471 -54.582 72.502 -54.387 72.482 -54.582 72.512 -54.776 72.574 -54.989 72.656 -54.776 72.759 -54.659 72.789 -54.873 72.809 -54.679 72.911 -54.718 73.014 -54.853 73.054 -55.048 73.034 -55.261 73.125 -55.650 73.237 -55.242 73.267 -55.456 73.368 -55.300 73.348 -55.087 73.388 -55.125 73.479 -55.533 73.579 -55.650 73.660 -56.077 73.740 -55.863 73.720 -55.669 73.789 -55.883 73.890 -55.747 73.939 -55.941 74.039 -56.077 74.078 -56.290 74.276 -56.154 74.167 -56.562 74.138 -56.756 74.128 -56.970 74.148 -57.184 74.198 -56.795 74.306 -56.387 74.345 -56.582 74.355 -56.368 74.405 -56.174 74.405 -56.582 74.444 -56.795 74.464 -56.387 74.553 -56.193 74.542 -56.387 74.640 -56.601 74.679 -56.815 74.689 -57.009 74.797 -57.125 74.845 -56.931 74.914 -57.145 74.933 -57.358 75.098 -58.096 75.194 -58.038 75.214 -58.232 75.301 -58.426 75.397 -58.251 75.368 -58.659 75.436 -58.232 75.531 -58.193 75.723 -58.426 75.732 -58.640 75.704 -58.834 75.751 -59.048 75.770 -59.261 75.866 -59.184 75.866 -59.378 75.819 -59.591 75.837 -59.785 75.913 -59.591 75.960 -59.785 75.932 -59.999 75.970 -59.999 76.026 -60.193 76.026 -60.815 76.121 -60.853 76.178 -61.261 76.159 -61.455 76.178 -61.669 76.225 -62.077 76.282 -62.271 76.253 -62.485 76.253 -62.679 76.310 -62.892 76.366 -63.319 76.301 -63.533 76.206 -63.727 76.150 -63.921 76.150 -64.135 76.347 -64.290 76.310 -64.329 76.394 -64.426 77.840 -66.426 79.031 -68.057 79.075 -68.115 ; #492 -5 63.144 -67.999 63.095 -67.785 63.082 -67.591 62.959 -67.747 63.045 -67.552 62.921 -67.650 62.984 -67.455 62.859 -67.281 62.785 -67.086 62.660 -66.931 62.635 -66.737 62.536 -66.543 62.411 -66.484 62.424 -66.387 62.299 -66.387 62.173 -65.980 62.122 -66.193 61.997 -66.076 61.871 -66.115 61.871 -66.387 61.921 -66.581 62.009 -66.795 62.022 -66.989 62.147 -67.378 62.173 -67.572 62.160 -67.766 62.210 -67.979 62.210 -67.999 ; #493 -5 65.774 -67.999 65.786 -67.824 65.550 -67.902 65.644 -67.708 65.644 -67.514 65.585 -67.319 65.467 -67.261 65.455 -67.067 65.408 -67.067 65.348 -67.261 65.229 -67.145 65.181 -66.931 65.063 -66.931 65.170 -66.737 65.039 -66.912 64.967 -66.737 64.847 -66.679 64.967 -66.523 64.919 -66.329 64.799 -66.174 64.679 -66.193 64.763 -65.960 64.643 -65.805 64.883 -65.960 64.739 -65.572 64.619 -65.630 64.498 -65.611 64.438 -65.397 64.522 -65.203 64.390 -65.164 64.245 -65.552 64.245 -65.358 64.147 -65.358 64.135 -65.164 64.014 -65.086 63.965 -64.679 63.893 -64.873 63.770 -64.931 63.745 -64.717 63.672 -64.523 63.550 -64.543 63.427 -64.504 63.267 -64.504 63.279 -64.717 63.526 -64.853 63.648 -64.989 63.733 -65.183 63.611 -64.989 63.489 -65.067 63.365 -64.950 63.243 -64.892 63.243 -65.106 63.144 -64.892 62.896 -64.679 62.871 -64.892 62.946 -65.086 62.984 -65.281 62.735 -65.009 62.611 -65.028 62.586 -65.222 62.710 -65.339 62.834 -65.261 62.834 -65.455 62.871 -65.650 62.996 -65.747 62.871 -65.805 63.058 -66.212 62.933 -66.135 63.045 -66.465 63.181 -66.562 63.304 -66.737 63.169 -66.620 63.045 -66.698 63.169 -66.892 63.279 -66.970 63.402 -67.009 63.279 -67.067 63.341 -67.281 63.427 -67.475 63.550 -67.630 63.648 -67.824 63.526 -67.785 63.402 -67.805 63.526 -67.979 63.538 -67.999 ; #494 -5 68.542 -67.999 68.542 -67.902 68.430 -67.902 68.542 -67.824 68.497 -67.630 68.374 -67.591 68.486 -67.436 68.408 -67.242 68.464 -67.048 68.419 -66.853 68.352 -67.048 68.396 -67.242 68.340 -67.650 68.261 -67.863 68.239 -67.650 68.340 -67.436 68.363 -67.242 68.307 -67.048 68.283 -67.242 68.160 -67.339 68.149 -67.533 68.137 -67.339 68.261 -67.203 68.296 -67.009 68.194 -66.814 68.081 -66.853 68.115 -66.659 68.002 -66.659 68.070 -66.465 68.092 -66.271 67.968 -66.329 67.855 -66.504 67.867 -66.698 67.821 -66.484 67.844 -66.368 67.957 -66.251 68.059 -65.863 67.946 -66.019 67.889 -65.941 67.765 -65.999 67.651 -65.980 67.765 -65.941 67.991 -65.630 67.980 -65.436 67.753 -65.552 67.696 -65.358 67.810 -65.494 67.923 -65.378 67.957 -65.183 68.047 -64.989 67.957 -64.795 67.878 -64.989 67.765 -65.047 67.651 -65.164 67.765 -64.970 67.696 -64.776 67.810 -64.698 67.799 -64.484 67.685 -64.484 67.731 -64.290 67.617 -64.252 67.605 -64.057 67.480 -64.193 67.457 -64.387 67.457 -64.174 67.423 -63.980 67.308 -64.057 67.331 -64.659 67.274 -64.252 67.217 -64.659 67.240 -64.252 67.205 -64.038 67.171 -64.445 67.113 -64.640 66.998 -64.679 67.136 -64.465 67.182 -64.057 67.228 -63.863 67.228 -63.669 67.159 -63.455 67.056 -63.650 67.113 -63.455 67.228 -63.378 67.320 -63.183 67.285 -62.989 67.159 -63.047 67.056 -63.242 66.941 -63.319 66.906 -63.514 66.825 -63.611 66.814 -63.824 66.802 -63.630 66.894 -63.416 66.779 -63.358 66.894 -63.242 66.941 -63.028 66.906 -62.834 66.779 -62.834 66.662 -62.892 66.825 -62.756 66.952 -62.717 66.917 -62.523 66.802 -62.349 66.917 -62.426 67.033 -62.232 67.044 -62.038 66.929 -61.999 66.894 -61.785 66.872 -61.999 66.883 -61.805 66.733 -61.397 66.616 -61.281 66.570 -61.339 66.546 -61.533 66.651 -61.727 66.674 -61.941 66.604 -62.135 66.639 -61.921 66.570 -61.727 66.454 -61.708 66.395 -61.921 66.407 -61.727 66.360 -61.533 66.279 -61.921 66.314 -62.135 66.407 -62.329 66.419 -62.485 66.395 -62.679 66.407 -62.485 66.279 -62.368 66.232 -62.562 66.232 -62.756 66.174 -62.368 66.115 -62.154 65.997 -62.135 65.986 -62.349 66.033 -62.543 66.033 -62.737 66.127 -62.931 66.033 -62.834 66.009 -62.640 65.915 -62.446 65.798 -62.407 65.798 -62.620 65.845 -62.814 65.727 -62.620 65.751 -62.834 65.632 -62.698 65.704 -62.912 65.585 -62.970 65.632 -63.028 65.668 -63.222 65.915 -63.514 65.798 -63.436 65.680 -63.514 65.668 -63.727 65.644 -63.514 65.597 -63.319 65.479 -63.475 65.432 -63.281 65.384 -63.475 65.264 -63.358 65.146 -63.436 65.027 -63.436 64.919 -63.650 65.039 -63.766 65.098 -63.980 65.074 -64.174 65.193 -64.193 65.253 -64.387 65.372 -64.348 65.253 -64.445 65.134 -64.640 65.253 -64.698 65.313 -64.892 65.337 -64.698 65.348 -64.892 65.384 -64.698 65.455 -64.484 65.396 -65.086 65.502 -65.125 65.538 -64.931 65.657 -64.795 65.550 -65.009 65.632 -65.203 65.704 -64.989 65.727 -64.795 65.716 -65.009 65.657 -65.203 65.727 -65.397 65.845 -65.436 65.939 -65.242 66.021 -64.834 66.139 -64.756 66.256 -64.601 66.326 -64.407 66.302 -64.601 66.221 -64.795 66.104 -64.873 66.044 -65.086 66.033 -65.281 65.974 -65.475 65.974 -65.669 65.951 -65.863 65.974 -65.941 66.091 -65.902 66.151 -65.688 66.267 -65.533 66.384 -65.475 66.256 -65.591 66.162 -65.785 66.115 -65.980 66.162 -66.193 66.279 -66.154 66.256 -66.348 66.267 -66.543 66.384 -66.601 66.477 -66.795 66.593 -66.892 66.639 -67.048 66.523 -67.048 66.581 -67.455 66.558 -67.650 66.546 -67.455 66.488 -67.261 66.372 -67.203 66.419 -67.397 66.302 -67.203 66.291 -67.397 66.442 -67.650 66.419 -67.863 66.186 -67.552 66.033 -67.164 65.915 -67.242 65.915 -67.650 65.880 -67.843 65.986 -67.999 ; #495 -5 68.765 -67.999 68.732 -67.824 68.732 -67.999 ; #496 -5 68.810 -67.999 68.776 -67.863 68.787 -67.999 ; #497 -5 69.087 -67.999 69.010 -67.843 68.987 -67.999 ; #498 -5 69.472 -67.999 69.450 -67.883 69.483 -67.669 69.461 -67.475 69.461 -67.261 69.418 -67.067 69.363 -66.873 69.252 -66.659 69.142 -66.717 69.186 -67.125 69.153 -67.533 69.186 -67.727 69.263 -67.999 ; #499 -5 69.659 -67.999 69.648 -67.863 69.582 -67.843 69.550 -67.999 ; #500 -2 69.539 -68.038 69.571 -68.251 69.670 -68.057 69.659 -67.999 69.550 -67.999 ; #501 -5 70.289 -67.999 70.300 -67.979 70.202 -67.688 70.116 -67.494 69.996 -67.339 69.942 -67.222 69.834 -67.164 69.713 -67.203 69.713 -67.397 69.779 -67.805 69.767 -67.999 ; #502 -5 69.702 -67.863 69.648 -67.843 69.648 -67.863 ; #503 -5 54.144 -67.669 54.230 -67.475 54.371 -67.591 54.511 -67.611 54.596 -67.222 54.624 -67.028 54.736 -67.222 54.876 -67.358 55.002 -67.436 55.002 -67.261 54.876 -67.009 54.764 -66.795 54.792 -66.601 54.932 -66.717 54.974 -66.659 55.002 -66.659 55.058 -66.737 55.197 -66.679 55.336 -66.795 55.267 -66.620 55.002 -66.251 54.932 -65.980 54.876 -65.844 54.736 -65.708 54.736 -65.319 54.708 -65.222 54.708 -65.028 54.750 -64.814 54.722 -64.620 54.750 -64.426 54.750 -64.407 54.638 -63.980 54.596 -63.805 54.722 -63.591 55.002 -63.455 55.141 -63.533 55.295 -63.164 55.309 -63.106 55.461 -63.164 55.558 -63.358 55.669 -63.475 55.807 -63.669 55.945 -63.669 56.028 -63.436 56.028 -63.650 56.070 -63.844 56.152 -64.018 56.426 -64.174 56.426 -64.077 56.440 -63.883 56.713 -64.116 56.768 -64.077 56.877 -63.883 57.012 -63.883 57.107 -63.785 57.406 -63.708 57.541 -63.747 57.608 -63.727 57.742 -63.902 57.783 -63.902 57.823 -64.096 57.957 -64.193 58.064 -64.348 58.104 -64.426 58.225 -64.232 58.358 -64.096 58.451 -63.824 58.517 -64.038 58.651 -64.057 58.704 -63.824 58.704 -63.630 58.849 -63.591 58.875 -63.785 58.822 -63.941 58.743 -64.135 58.875 -64.290 58.888 -64.484 58.928 -64.640 58.915 -64.853 59.047 -64.776 59.020 -64.581 58.980 -64.465 59.349 -64.523 59.481 -64.348 59.494 -64.543 59.468 -64.756 59.611 -64.795 59.872 -64.776 59.898 -64.659 59.963 -64.853 60.002 -64.853 60.107 -64.659 60.236 -64.853 60.287 -64.659 60.300 -64.523 60.249 -64.717 60.249 -64.523 60.119 -64.465 60.002 -64.814 60.002 -64.737 60.054 -64.543 60.002 -64.484 60.002 -64.154 59.859 -64.154 59.728 -64.232 59.676 -64.018 59.546 -64.096 59.624 -63.902 59.481 -63.747 59.415 -63.941 59.362 -63.805 59.349 -63.611 59.218 -63.630 59.283 -63.416 59.152 -63.397 59.060 -63.611 59.047 -63.999 59.034 -63.591 59.087 -63.300 58.954 -63.281 58.822 -63.183 58.836 -62.970 58.704 -63.028 58.570 -62.989 58.504 -63.203 58.491 -63.397 58.358 -63.514 58.438 -63.300 58.477 -63.106 58.464 -62.912 58.491 -62.717 58.358 -62.620 58.265 -62.814 58.251 -62.620 58.172 -62.834 58.158 -63.028 58.064 -63.203 58.077 -63.009 58.172 -62.504 58.037 -62.310 58.010 -62.504 57.863 -62.426 57.930 -62.213 57.783 -62.096 57.675 -61.902 57.541 -62.096 57.500 -62.290 57.500 -62.504 57.433 -62.290 57.460 -62.096 57.419 -61.902 57.284 -61.863 57.162 -61.475 57.026 -61.339 56.944 -61.339 56.958 -61.533 56.822 -61.649 56.795 -61.844 56.659 -61.669 56.645 -61.883 56.741 -62.349 56.795 -62.407 56.822 -62.271 56.822 -62.077 56.850 -62.465 56.795 -62.407 56.768 -62.485 56.741 -62.349 56.700 -62.310 56.632 -61.921 56.618 -62.232 56.577 -61.824 56.509 -62.018 56.317 -61.630 56.262 -61.824 56.303 -62.018 56.221 -61.824 56.207 -61.514 56.056 -61.455 56.056 -61.242 56.028 -61.455 55.973 -61.242 55.849 -61.047 55.849 -60.853 55.752 -60.951 55.725 -60.737 55.586 -60.659 55.725 -60.543 55.780 -60.329 55.642 -60.504 55.503 -60.446 55.364 -60.465 55.503 -60.271 55.002 -60.679 55.224 -60.271 55.252 -60.077 55.113 -60.174 55.016 -60.290 55.141 -60.096 55.238 -59.999 55.322 -59.805 55.183 -59.785 55.155 -59.591 55.002 -59.611 54.889 -59.805 54.750 -59.941 54.889 -59.766 55.085 -59.358 55.211 -59.164 55.071 -59.261 55.099 -59.067 54.820 -58.756 54.792 -58.368 54.736 -58.154 54.736 -57.960 54.596 -57.378 54.483 -57.572 54.455 -57.688 54.469 -57.475 54.371 -57.688 54.371 -58.077 54.258 -58.271 54.230 -58.465 54.159 -58.679 54.144 -58.873 54.060 -59.261 54.046 -59.475 54.003 -59.514 54.032 -59.223 54.188 -58.426 54.046 -58.601 54.046 -58.795 53.848 -59.397 53.776 -59.999 53.691 -60.077 53.549 -60.077 53.592 -60.271 53.691 -60.465 53.734 -60.659 53.834 -60.873 53.720 -60.931 53.677 -60.543 53.592 -60.329 53.450 -60.135 53.306 -60.213 53.264 -60.407 53.292 -60.193 53.436 -59.863 53.535 -59.863 53.521 -59.649 53.663 -59.261 53.705 -59.067 53.848 -58.951 53.947 -58.756 54.088 -58.174 54.102 -57.980 54.130 -58.174 54.202 -58.368 54.230 -58.174 54.230 -57.980 54.188 -57.785 54.144 -57.378 53.862 -57.164 53.720 -57.203 53.649 -57.416 53.592 -57.436 53.450 -57.339 53.535 -57.145 53.677 -57.048 53.734 -56.834 53.720 -56.640 53.776 -56.446 53.677 -56.640 53.578 -56.251 53.578 -56.057 53.563 -56.251 53.349 -55.824 53.207 -55.786 53.064 -55.883 53.035 -56.077 52.964 -55.883 52.819 -55.844 52.791 -56.038 52.676 -55.844 52.662 -56.038 52.546 -56.232 52.590 -56.485 52.546 -56.290 52.546 -56.096 52.489 -55.824 52.344 -55.766 52.431 -56.154 52.287 -55.766 52.141 -55.708 51.866 -56.096 51.691 -56.504 51.472 -56.892 51.413 -57.106 51.501 -57.300 51.443 -57.494 51.443 -57.688 51.297 -58.077 51.340 -58.271 51.253 -58.659 51.106 -58.698 50.988 -58.892 50.767 -59.028 50.738 -59.223 50.664 -59.417 50.487 -59.572 50.443 -59.766 50.294 -59.902 50.250 -59.999 50.265 -60.193 50.205 -60.582 50.205 -60.989 50.176 -61.378 50.102 -61.766 50.161 -61.572 50.191 -61.572 50.131 -61.766 50.205 -61.844 50.309 -63.028 50.235 -63.222 50.220 -63.397 51.996 -63.747 52.040 -63.650 52.330 -63.766 52.359 -63.980 52.503 -64.038 52.618 -63.844 52.647 -63.455 52.776 -63.591 52.921 -63.533 53.064 -63.630 53.107 -63.824 52.978 -63.921 52.877 -64.116 52.604 -64.174 52.315 -64.116 52.170 -64.116 52.141 -64.154 51.982 -64.290 51.837 -64.348 51.735 -64.271 51.559 -64.581 51.706 -64.698 51.851 -64.659 51.924 -64.834 52.069 -64.970 52.184 -65.164 52.214 -65.378 52.054 -65.552 52.098 -65.688 52.054 -65.902 52.200 -66.057 52.258 -66.212 52.141 -66.329 52.287 -66.465 52.431 -66.387 52.546 -66.426 52.834 -66.387 52.891 -66.290 53.035 -66.484 52.877 -66.659 52.805 -66.659 52.733 -66.853 52.690 -67.048 52.705 -67.086 52.906 -67.067 53.050 -66.970 53.207 -66.989 53.349 -66.912 53.378 -66.950 53.521 -67.125 53.563 -67.319 53.634 -67.494 53.776 -67.436 53.862 -67.591 54.003 -67.727 ; #504 4 -54.778 -64.310 -54.820 -64.116 -54.722 -63.921 -54.722 -64.310 -54.764 -64.504 -54.904 -64.679 ; #505 4 -39.132 -61.883 -39.116 -62.096 -39.249 -61.883 ; #506 5 -51.851 -60.912 -51.822 -61.125 -51.967 -60.989 ; #507 5 -51.486 -60.213 -51.399 -60.426 -51.384 -60.620 -51.530 -60.465 -51.706 -60.077 -51.662 -60.232 -51.706 -60.426 -51.720 -60.640 -51.764 -60.446 -51.778 -60.232 -51.837 -60.446 -51.982 -60.562 -52.083 -60.951 -52.112 -60.562 -52.155 -60.349 -52.011 -60.193 -51.953 -59.863 -51.662 -59.572 -51.559 -59.378 -51.413 -59.203 -51.443 -59.397 -51.399 -59.999 -51.457 -59.999 ; #508 5 -51.282 -59.785 -51.253 -59.591 -51.253 -59.785 ; #509 5 -52.243 -59.552 -52.287 -59.358 -52.141 -59.339 -52.155 -59.145 -52.011 -59.223 -52.040 -58.834 -52.112 -58.640 -51.967 -58.776 -51.822 -58.970 -51.895 -58.756 -51.880 -58.368 -51.764 -58.251 -51.749 -57.980 -51.617 -57.785 -51.516 -57.980 -51.530 -57.785 -51.384 -57.902 -51.399 -58.116 -51.457 -58.310 -51.603 -58.271 -51.457 -58.426 -51.311 -58.465 -51.355 -58.854 -51.516 -58.989 -51.516 -59.106 -51.662 -58.989 -51.808 -59.009 -51.720 -59.203 -51.822 -59.397 -51.967 -59.514 -52.112 -59.708 ; #510 -5 -55.680 -67.492 -55.596 -67.433 -55.735 -67.278 -55.791 -67.336 -55.749 -67.492 ; #511 -5 -55.738 -67.533 -55.683 -67.494 -55.752 -67.494 ; #512 -5 -54.932 -67.494 -54.932 -67.358 -54.974 -67.164 -55.099 -67.048 -55.238 -67.145 -55.309 -67.358 -55.210 -67.494 ; #513 -5 -55.169 -67.552 -55.252 -67.747 -55.197 -67.941 -55.224 -68.135 -55.085 -68.174 -54.932 -68.348 -54.904 -68.154 -54.932 -67.494 -55.210 -67.494 ; #514 -2 81.349 -67.494 81.374 -67.261 81.431 -66.368 81.504 -65.552 81.537 -64.931 81.537 -64.523 81.456 -64.484 81.390 -64.679 81.284 -65.281 81.251 -65.494 81.226 -65.902 81.193 -66.135 81.144 -66.348 81.070 -66.543 81.020 -66.756 80.954 -67.164 80.938 -67.358 80.905 -67.494 ; #515 -2 81.553 -67.494 81.561 -67.048 81.512 -66.620 81.422 -67.494 ; #516 -2 81.553 -67.688 81.512 -68.562 81.529 -68.756 81.529 -68.523 81.618 -68.717 81.683 -69.145 81.675 -68.950 81.561 -68.329 81.561 -68.135 81.601 -67.494 81.553 -67.494 ; #517 -2 82.664 -67.494 82.664 -67.378 82.696 -67.183 82.711 -66.756 82.758 -66.562 82.813 -66.135 82.844 -65.727 82.790 -65.514 82.805 -65.319 82.892 -65.145 82.907 -64.931 82.876 -64.717 82.868 -64.931 82.782 -64.543 82.790 -64.329 82.828 -64.096 82.837 -63.902 82.837 -63.669 82.821 -63.455 82.742 -63.475 82.719 -63.688 82.672 -63.475 82.601 -63.281 82.546 -63.047 82.459 -63.145 82.435 -63.378 82.444 -63.145 82.514 -62.737 82.522 -62.504 82.483 -62.290 82.483 -61.611 82.435 -61.319 82.380 -61.125 82.292 -61.086 82.205 -61.261 82.173 -61.455 82.158 -61.669 82.046 -62.096 81.892 -63.145 81.860 -63.552 81.813 -63.766 81.724 -64.368 81.747 -65.222 81.707 -65.611 81.683 -66.038 81.675 -65.397 81.626 -65.844 81.650 -66.038 81.618 -66.232 81.626 -66.445 81.601 -67.475 81.601 -67.494 ; #518 -2 82.656 -67.999 82.625 -68.659 82.672 -68.465 82.696 -68.251 82.719 -67.843 82.751 -67.494 82.664 -67.494 ; #519 -2 82.954 -67.494 82.938 -67.261 82.954 -67.009 82.938 -66.601 82.914 -66.387 82.859 -66.543 82.797 -66.970 82.751 -67.494 ; #520 -2 45.154 -67.145 45.091 -67.106 45.185 -67.203 ; #521 -2 48.026 -66.640 47.996 -66.737 47.996 -66.834 ; #522 -2 59.468 -65.222 59.375 -65.047 59.468 -65.242 ; #523 -5 60.132 -64.989 60.262 -64.931 60.352 -64.737 60.300 -64.523 60.287 -64.659 60.236 -64.853 60.107 -64.659 60.002 -64.853 60.002 -65.106 ; #524 -2 49.819 -63.358 49.341 -63.358 49.400 -63.572 49.550 -63.688 49.655 -63.883 49.774 -64.290 49.893 -64.484 49.938 -64.096 49.878 -63.883 49.834 -63.494 ; #525 -5 49.819 -63.358 49.774 -63.125 49.595 -62.543 49.400 -62.135 49.356 -61.941 49.236 -61.747 49.070 -61.785 49.070 -62.193 49.161 -62.776 49.341 -63.358 ; #526 -5 56.850 -62.465 56.822 -62.077 56.822 -62.271 56.795 -62.407 ; #527 -5 56.741 -62.349 56.768 -62.485 56.795 -62.407 ; #528 -5 47.453 -61.799 47.560 -61.605 47.407 -61.760 47.315 -61.974 ; #529 -5 47.612 -61.597 47.658 -61.403 47.581 -61.597 47.459 -61.791 ; #530 -5 45.701 -61.455 46.013 -61.552 46.462 -61.086 46.771 -60.892 46.894 -60.698 46.894 -60.485 46.833 -60.290 46.663 -60.387 46.509 -60.407 46.199 -60.601 46.291 -60.407 46.137 -60.582 46.121 -60.601 46.059 -60.795 45.935 -60.989 45.935 -60.795 45.856 -60.970 45.685 -61.125 45.747 -60.931 45.716 -60.718 45.872 -60.582 45.997 -60.387 45.935 -60.582 45.935 -60.776 46.059 -60.562 46.214 -60.387 46.137 -60.582 46.291 -60.387 46.199 -60.193 46.199 -59.999 46.090 -59.824 45.935 -59.805 45.872 -59.999 45.654 -60.368 45.592 -60.756 45.607 -60.951 45.576 -61.145 45.592 -61.358 45.607 -61.378 ; #531 -5 46.214 -60.387 46.059 -60.562 45.935 -60.776 45.935 -60.582 45.997 -60.387 45.872 -60.582 45.716 -60.718 45.747 -60.931 45.685 -61.125 45.856 -60.970 45.935 -60.795 45.935 -60.989 46.059 -60.795 46.121 -60.601 46.137 -60.582 ; #532 5 49.745 -54.135 49.581 -54.232 49.729 -54.077 ; #533 -10 -33.084 -58.213 -33.101 -58.213 -33.118 -58.271 ; #534 -10 -32.927 -58.135 -32.561 -58.213 -32.457 -58.193 -33.014 -58.077 -33.084 -58.213 ; #535 -4 4.346 -57.941 4.734 -57.863 4.928 -57.747 5.005 -57.494 5.024 -57.339 5.024 -57.281 5.218 -57.203 5.257 -57.222 5.451 -57.261 5.490 -57.242 5.683 -57.125 5.954 -57.067 5.954 -57.009 5.992 -56.989 5.934 -56.485 5.838 -56.096 5.664 -55.902 5.838 -55.883 5.876 -55.922 5.973 -55.727 5.954 -55.339 5.818 -55.125 5.857 -54.989 5.992 -54.989 5.876 -54.193 5.741 -53.980 5.548 -54.038 5.354 -54.155 5.412 -54.077 5.741 -53.883 5.702 -53.689 5.567 -53.494 5.451 -53.009 5.470 -52.951 5.044 -52.504 4.908 -52.368 4.908 -52.271 4.715 -52.329 4.850 -52.252 4.734 -52.058 4.541 -51.960 4.327 -52.038 4.424 -51.922 4.618 -51.824 4.230 -51.650 4.036 -51.689 4.133 -51.533 3.940 -51.417 4.153 -51.514 4.346 -51.553 4.249 -51.358 4.056 -51.184 3.648 -51.164 3.901 -51.087 3.300 -51.048 3.106 -51.009 2.718 -50.853 2.504 -50.834 2.310 -50.718 2.096 -50.737 2.019 -50.582 1.825 -50.388 1.825 -50.193 1.747 -49.999 1.650 -49.902 1.457 -49.883 1.262 -49.999 1.203 -50.116 1.223 -49.999 1.087 -49.999 0.912 -50.213 0.311 -50.660 0.175 -50.853 -0.058 -51.087 -0.117 -51.222 -0.233 -51.320 -0.835 -51.708 -1.029 -51.708 -1.165 -51.902 -1.165 -52.096 -1.087 -52.310 -0.893 -52.368 -0.796 -52.523 -0.621 -52.562 -0.427 -52.620 -0.175 -52.815 0.000 -52.989 0.078 -53.009 0.214 -53.028 0.408 -53.125 0.602 -53.125 0.777 -53.222 0.971 -53.417 1.281 -53.533 1.320 -53.553 1.379 -53.630 1.379 -53.824 1.612 -54.116 1.728 -54.290 1.747 -54.504 1.844 -54.756 2.038 -54.795 2.058 -54.756 2.251 -54.718 2.446 -54.776 2.427 -54.795 2.601 -54.989 2.427 -55.358 2.427 -55.747 2.485 -55.863 2.349 -56.057 2.251 -56.135 2.077 -55.941 1.902 -55.902 1.844 -56.096 1.922 -56.368 1.941 -56.465 2.019 -56.679 2.329 -56.873 2.737 -57.087 2.834 -57.203 3.028 -57.203 3.358 -57.320 3.358 -57.630 3.571 -57.708 3.959 -57.999 4.153 -58.057 ; #536 4 47.063 -56.387 46.910 -56.310 47.063 -56.290 ; #537 -4 52.546 -56.290 52.590 -56.485 52.546 -56.232 ; #538 -4 72.347 -53.844 72.347 -53.630 72.306 -53.844 ; #539 -4 71.859 -52.951 71.839 -52.970 71.839 -52.989 ; #540 -4 71.953 -52.912 71.984 -52.718 71.901 -52.912 71.859 -52.951 ; #541 4 -26.263 -48.640 -26.353 -48.660 -26.426 -48.582 ; #542 4 -27.635 -48.446 -27.454 -48.504 -27.833 -48.543 ; #543 4 -24.734 -47.553 -24.862 -47.747 -25.044 -47.883 ; #544 4 -23.947 -45.223 -23.744 -45.320 -23.929 -45.436 -23.965 -45.242 ; #545 4 -12.938 -38.601 -13.033 -38.737 -13.129 -38.776 ; #546 4 -1.456 -51.786 -1.320 -51.591 -1.145 -51.397 -0.951 -51.242 -0.757 -51.184 -0.544 -51.184 -0.544 -51.378 -0.718 -51.591 -0.912 -51.669 -1.106 -51.669 -1.281 -51.883 -1.476 -51.902 ; #547 4 64.571 -51.087 64.510 -51.281 64.390 -51.417 64.426 -51.222 64.546 -51.106 ; #548 4 64.546 -50.873 64.486 -51.067 64.366 -51.164 64.233 -51.339 64.281 -51.125 64.402 -50.989 64.522 -50.795 ; #549 4 -0.777 -50.970 -0.582 -50.892 -0.757 -51.106 -0.970 -51.145 ; #550 4 -0.058 -50.562 -0.039 -50.756 -0.097 -50.951 -0.291 -50.853 ; #551 4 -0.039 -50.504 0.000 -50.426 0.194 -50.582 0.000 -50.562 ; #552 4 1.999 -50.291 2.077 -50.504 1.883 -50.407 ; #553 4 0.369 -50.329 0.563 -50.407 0.175 -50.446 ; #554 4 0.000 -49.883 0.117 -49.805 0.311 -49.805 0.214 -50.310 0.000 -50.271 0.000 -50.077 -0.078 -49.999 ; #555 4 0.447 -50.116 0.641 -50.077 0.544 -50.271 0.350 -50.252 ; #556 4 -0.117 -49.786 -0.136 -49.591 0.000 -49.397 0.078 -49.572 0.000 -49.766 ; #557 4 60.944 -46.193 60.905 -46.388 60.751 -46.795 60.776 -46.601 60.841 -46.407 60.880 -46.193 ; #558 4 60.377 -45.358 60.249 -45.242 60.377 -45.145 ; #559 4 60.002 -44.252 59.950 -44.057 60.002 -43.980 ; #560 4 60.002 -43.164 60.080 -43.320 60.158 -43.902 60.107 -44.116 60.041 -43.902 60.054 -43.708 60.002 -43.902 59.950 -43.689 60.002 -43.495 60.054 -43.436 60.002 -43.242 ; #561 4 59.807 -43.844 59.937 -43.805 59.937 -44.019 59.807 -44.096 59.794 -43.902 ; #562 4 62.685 -42.388 62.772 -41.999 62.809 -42.194 62.698 -42.407 ; #563 4 63.156 -41.203 63.144 -41.417 63.119 -41.203 ; #564 4 64.221 -40.621 64.305 -40.815 64.196 -41.009 ; #565 4 64.510 -40.213 64.643 -40.388 64.763 -40.465 64.883 -40.601 64.823 -40.795 64.703 -40.601 64.583 -40.543 64.462 -40.388 64.426 -40.194 ; #566 4 65.337 -39.592 65.325 -39.786 65.278 -39.592 ; #567 4 82.774 -47.786 82.828 -47.553 82.859 -47.766 82.892 -48.193 82.868 -48.407 82.790 -48.291 ; #568 4 82.357 -46.854 82.205 -45.572 82.173 -45.378 82.093 -45.203 82.053 -45.009 82.078 -44.795 82.237 -44.990 82.292 -44.795 82.324 -44.582 82.404 -44.485 82.435 -44.698 82.490 -44.893 82.522 -45.106 82.632 -45.922 82.672 -46.349 82.672 -46.757 82.641 -46.970 82.641 -47.630 82.507 -47.223 ; #569 -4 83.016 -39.980 83.054 -40.194 83.070 -40.407 83.109 -40.660 83.170 -40.873 83.170 -41.106 83.139 -41.320 83.000 -40.504 82.977 -39.864 ; #570 4 83.109 -38.912 83.132 -38.718 83.170 -38.912 83.201 -39.339 83.233 -39.553 83.294 -39.766 83.333 -40.407 83.264 -40.621 83.248 -39.999 83.186 -39.786 83.155 -39.572 83.116 -38.951 ; #571 4 83.008 -39.475 83.094 -39.300 83.116 -39.766 83.155 -39.980 83.170 -40.213 83.125 -40.446 83.078 -40.232 83.070 -40.038 83.008 -39.825 82.992 -39.611 ; #572 -4 82.214 -52.504 82.173 -52.329 82.165 -52.096 82.141 -51.883 82.014 -51.261 81.982 -51.242 81.965 -51.630 81.973 -51.824 82.037 -52.504 ; #573 -4 82.102 -53.106 82.173 -53.300 82.253 -53.320 82.324 -53.106 82.324 -52.892 82.301 -52.698 82.221 -52.543 82.214 -52.504 82.037 -52.504 ; #574 -4 -1.689 -52.271 -1.592 -52.465 -1.612 -52.698 -1.573 -52.698 -1.340 -52.232 -1.418 -52.019 -1.437 -52.038 -1.495 -52.232 -1.689 -52.252 ; #575 -4 68.575 -52.232 68.620 -52.038 68.631 -51.824 68.575 -52.038 ; #576 -4 65.739 -51.553 65.786 -51.164 65.751 -50.679 65.680 -50.718 65.751 -50.912 65.751 -51.300 65.692 -51.708 ; #577 -4 68.931 -50.970 68.887 -51.067 68.898 -51.067 ; #578 -4 -1.203 -50.776 -1.184 -50.562 -1.048 -50.485 -1.029 -50.524 -1.106 -50.718 -0.893 -50.795 -0.815 -50.737 -0.718 -50.776 -0.660 -50.679 -0.680 -50.543 -0.544 -50.698 -0.350 -50.679 -0.155 -50.524 -0.117 -50.310 -0.252 -49.397 -0.136 -49.203 -0.252 -48.543 -0.447 -48.426 -0.835 -48.524 -1.048 -48.640 -1.203 -48.795 -1.398 -48.815 -1.554 -49.028 -1.631 -49.222 -1.631 -49.417 -1.747 -49.630 -1.805 -49.824 -1.747 -49.999 -1.786 -50.193 -1.767 -50.368 -1.805 -50.291 -1.844 -50.368 -1.805 -50.582 -1.534 -50.737 -1.456 -50.776 ; #579 -4 60.816 -47.805 60.803 -47.747 60.700 -47.941 60.738 -48.155 60.816 -47.999 ; #580 -4 60.841 -47.941 60.816 -47.805 60.816 -47.999 ; #581 -4 -24.002 -46.271 -24.020 -46.291 -24.002 -46.310 ; #582 -4 60.132 -44.407 60.107 -44.252 60.002 -44.291 60.002 -44.485 60.119 -44.446 ; #583 -4 60.132 -44.446 60.132 -44.407 60.119 -44.446 ; #584 3 -54.820 -36.116 -54.736 -35.922 -54.596 -35.902 -54.610 -36.097 -54.314 -36.291 -54.286 -36.504 -54.300 -36.699 -54.159 -36.699 -54.102 -37.281 -54.046 -37.475 -54.046 -37.669 -54.088 -37.883 -54.088 -37.689 -54.230 -37.611 -54.314 -37.417 -54.300 -37.223 -54.497 -36.834 -54.568 -36.621 -54.666 -36.427 -54.806 -36.291 -54.932 -36.097 ; #585 4 65.680 -36.951 65.704 -37.145 65.585 -37.009 ; #586 4 65.833 -36.582 65.962 -36.543 65.904 -36.737 65.786 -36.699 ; #587 4 68.171 -30.000 68.160 -29.786 68.227 -29.980 68.216 -30.000 ; #588 10 -58.398 -26.233 -58.437 -26.446 -58.504 -26.233 ; #589 -4 63.353 -41.281 63.230 -41.087 63.205 -41.106 63.267 -41.495 63.378 -41.689 63.414 -41.495 ; #590 -4 65.597 -37.941 65.716 -37.961 65.845 -37.844 65.904 -37.630 65.857 -37.495 65.704 -37.495 65.657 -37.689 65.573 -37.728 ; #591 -4 65.904 -37.572 65.868 -37.495 65.857 -37.495 65.904 -37.630 ; #592 -4 65.857 -37.495 65.833 -37.436 65.704 -37.495 ; #593 2 39.514 -31.203 39.349 -31.242 39.349 -31.203 ; #594 2 38.400 -28.038 38.501 -28.252 38.551 -28.446 38.367 -28.233 ; #595 2 38.651 -28.000 38.717 -28.194 38.584 -28.000 38.534 -27.805 ; #596 2 37.732 -25.242 37.831 -25.456 37.831 -25.650 37.882 -25.844 37.748 -25.650 37.698 -25.456 ; #597 2 17.002 -25.068 17.096 -25.281 16.908 -25.281 ; #598 2 14.995 -24.310 14.957 -24.505 14.805 -24.388 ; #599 2 16.548 -24.116 16.662 -24.310 16.473 -24.310 ; #600 2 15.090 -23.495 15.261 -23.689 15.071 -23.786 14.900 -23.592 14.900 -23.514 ; #601 2 16.170 -22.699 16.227 -22.893 16.019 -22.951 15.981 -22.796 ; #602 5 7.558 -12.893 7.500 -12.699 7.558 -12.505 7.635 -12.680 7.616 -12.873 ; #603 5 54.018 -10.000 53.961 -10.194 53.905 -10.000 ; #604 -4 82.181 -30.543 82.181 -31.165 82.197 -31.592 82.205 -30.932 82.189 -30.718 ; #605 -2 70.719 -29.378 71.102 -29.320 71.514 -29.223 72.203 -28.951 72.891 -28.524 73.328 -28.135 73.700 -27.708 73.850 -27.495 74.078 -27.029 74.177 -26.757 74.405 -25.922 74.483 -25.436 74.513 -25.048 74.483 -24.349 74.316 -22.563 74.286 -22.271 74.296 -22.058 74.088 -22.271 74.069 -22.466 74.029 -22.271 74.019 -22.077 73.919 -21.922 73.720 -21.708 73.819 -21.747 73.919 -21.883 74.029 -21.883 74.059 -21.669 73.939 -21.087 73.919 -20.874 73.880 -20.679 73.890 -20.466 73.830 -20.252 73.740 -20.446 73.630 -20.446 73.519 -20.369 73.449 -20.563 73.449 -21.165 73.469 -21.359 73.388 -21.572 73.368 -21.767 73.317 -21.980 73.247 -22.174 73.257 -22.388 73.338 -23.009 73.398 -23.203 73.419 -23.398 73.539 -23.805 73.619 -24.000 73.720 -23.980 73.720 -23.786 73.710 -23.572 73.549 -22.757 73.559 -22.543 73.619 -22.330 73.559 -22.738 73.730 -23.534 73.730 -23.747 73.799 -24.136 73.759 -24.330 73.650 -24.466 73.549 -24.369 73.579 -24.776 73.630 -24.990 73.730 -25.068 73.779 -25.262 73.860 -25.456 73.899 -25.669 73.789 -25.475 73.690 -25.087 73.489 -24.854 73.469 -25.242 73.419 -25.456 73.317 -25.572 73.247 -25.786 73.247 -26.174 73.328 -26.388 73.328 -26.796 73.378 -26.990 73.459 -27.184 73.469 -27.378 73.368 -27.184 73.297 -26.776 73.287 -26.582 73.186 -26.601 73.145 -26.815 73.186 -27.223 73.155 -27.417 73.155 -27.631 73.125 -27.417 73.024 -27.359 73.125 -27.242 73.135 -27.029 73.105 -26.815 73.105 -26.621 73.197 -26.427 73.197 -26.000 73.115 -25.592 73.085 -25.184 73.024 -24.990 72.921 -25.165 72.891 -25.359 72.881 -25.767 72.799 -25.961 72.779 -26.155 72.799 -26.369 72.850 -26.582 72.871 -26.776 72.830 -27.165 72.850 -27.359 72.799 -27.165 72.830 -26.757 72.799 -26.563 72.718 -26.776 72.718 -26.563 72.738 -26.369 72.626 -26.369 72.718 -26.174 72.728 -25.961 72.830 -25.553 72.748 -25.165 72.697 -24.757 72.594 -24.718 72.492 -24.796 72.451 -24.990 72.430 -25.203 72.430 -25.805 72.399 -25.592 72.399 -25.398 72.295 -25.398 72.182 -25.475 72.285 -25.301 72.368 -25.106 72.399 -24.912 72.410 -24.505 72.326 -24.310 72.264 -23.903 72.213 -23.708 72.109 -23.786 72.151 -23.592 72.109 -23.398 72.006 -23.184 72.006 -22.990 71.974 -22.776 71.870 -22.602 71.787 -22.796 71.734 -22.990 71.629 -23.048 71.734 -22.660 71.734 -22.466 71.629 -22.524 71.703 -22.136 71.703 -21.941 71.598 -22.116 71.587 -22.310 71.545 -22.505 71.430 -22.505 71.324 -22.330 71.430 -22.271 71.493 -22.077 71.514 -21.864 71.408 -21.669 71.303 -21.708 71.271 -21.903 71.219 -21.708 71.112 -21.708 71.049 -22.330 71.038 -22.136 71.081 -21.708 70.975 -21.922 70.985 -21.728 70.878 -21.728 70.772 -21.631 70.654 -21.650 70.547 -21.553 70.439 -21.631 70.418 -21.844 70.494 -22.038 70.450 -22.233 70.558 -22.407 70.675 -22.466 70.783 -22.427 70.719 -22.621 70.504 -22.582 70.429 -22.776 70.429 -23.184 70.450 -23.378 70.558 -23.786 70.643 -24.000 70.857 -24.194 71.081 -24.252 71.271 -24.660 71.303 -24.874 71.292 -25.068 71.535 -25.650 71.587 -26.116 71.545 -26.718 71.577 -26.912 71.660 -27.106 71.766 -27.281 71.818 -27.495 71.922 -27.670 71.974 -27.883 71.974 -28.077 72.089 -28.466 72.099 -28.679 72.068 -28.485 71.953 -28.485 71.922 -28.291 71.901 -27.864 71.797 -27.689 71.745 -27.495 71.640 -27.378 71.650 -27.592 71.608 -27.805 71.619 -28.000 71.566 -28.194 71.566 -28.388 71.545 -28.174 71.608 -27.572 71.598 -27.359 71.524 -26.970 71.483 -26.563 71.503 -26.369 71.483 -26.155 71.483 -25.747 71.387 -25.553 71.271 -25.398 71.229 -25.611 71.123 -25.767 71.049 -26.038 71.038 -26.233 70.964 -26.446 70.943 -26.640 70.943 -27.436 71.038 -27.631 71.144 -27.767 71.038 -27.805 70.964 -27.611 70.985 -28.000 70.964 -28.213 70.975 -28.407 70.889 -28.000 70.783 -27.980 70.675 -28.097 70.622 -28.291 70.537 -28.485 70.504 -28.893 70.461 -29.087 70.450 -28.873 70.504 -28.485 70.504 -28.271 70.396 -28.310 70.386 -28.116 70.450 -26.893 70.483 -26.679 70.461 -26.485 70.353 -26.369 70.311 -26.563 70.289 -26.776 70.321 -26.970 70.105 -27.767 70.105 -27.980 70.148 -28.174 70.105 -28.369 70.094 -28.563 70.083 -28.660 69.996 -29.417 ; #606 2 71.038 -25.883 70.996 -26.097 70.932 -26.291 70.899 -26.505 70.878 -27.087 70.783 -27.301 70.740 -27.495 70.643 -27.689 70.633 -27.883 70.526 -27.980 70.439 -27.767 70.483 -27.165 70.526 -26.970 70.515 -26.563 70.558 -26.369 70.579 -26.155 70.547 -25.961 70.601 -25.767 70.654 -25.359 70.762 -25.320 70.868 -25.378 70.975 -25.572 71.059 -25.669 ; #607 2 70.889 -27.534 70.846 -27.747 70.740 -27.670 70.793 -27.475 70.878 -27.262 ; #608 2 70.526 -26.097 70.461 -26.291 70.515 -26.077 ; #609 2 72.901 -24.874 72.881 -25.068 72.830 -25.281 72.789 -24.874 72.891 -24.776 ; #610 2 73.287 -24.194 73.227 -23.786 73.217 -23.592 73.267 -23.378 73.358 -23.805 73.419 -24.388 73.419 -24.990 73.328 -25.184 73.317 -24.990 ; #611 2 72.993 -22.388 73.034 -22.796 73.034 -22.990 73.064 -23.223 73.024 -23.631 72.993 -24.233 72.901 -24.427 72.911 -24.000 72.871 -23.611 72.850 -23.009 72.809 -22.796 72.707 -22.699 72.697 -22.291 72.728 -21.903 72.830 -22.116 72.911 -21.903 ; #612 2 72.358 -22.660 72.461 -22.660 72.440 -22.466 72.440 -22.252 72.389 -22.058 72.492 -22.000 72.482 -22.194 72.584 -22.388 72.604 -22.582 72.677 -22.776 72.728 -22.990 72.830 -23.126 72.830 -23.553 72.871 -23.941 72.860 -24.349 72.748 -24.407 72.646 -24.388 72.543 -24.213 72.522 -24.019 72.440 -23.825 72.337 -23.203 72.213 -22.815 72.120 -22.427 72.120 -22.213 72.223 -22.136 72.337 -22.466 ; #613 2 74.444 -21.359 74.365 -21.786 74.257 -21.961 74.177 -21.747 74.088 -21.145 74.157 -20.310 74.198 -20.116 74.237 -20.310 74.335 -20.427 74.405 -20.640 74.444 -20.951 ; #614 2 73.135 -21.184 73.095 -21.398 73.115 -21.184 ; #615 5 78.002 -21.242 77.911 -21.242 78.002 -21.107 ; #616 4 81.869 -19.942 81.909 -19.728 81.997 -19.922 82.053 -20.116 82.134 -20.291 82.173 -20.524 82.109 -20.738 82.029 -20.582 81.892 -20.174 ; #617 2 74.914 -20.194 74.972 -20.000 75.011 -20.000 75.039 -20.194 75.049 -20.407 74.982 -20.602 74.884 -20.563 74.777 -20.563 74.718 -20.349 74.699 -20.136 74.729 -20.000 74.816 -19.786 74.914 -19.922 74.924 -20.000 ; #618 5 77.975 -20.407 77.902 -20.194 77.858 -20.000 77.831 -19.786 77.804 -19.398 77.894 -19.378 77.894 -19.767 77.938 -20.000 77.975 -20.000 ; #619 4 80.192 -19.145 80.251 -19.553 80.235 -19.747 80.150 -19.883 80.057 -19.864 80.150 -19.029 ; #620 5 78.793 -19.145 78.882 -19.107 78.934 -19.320 78.803 -19.709 78.732 -19.514 78.732 -19.301 78.776 -19.359 ; #621 5 78.378 -19.650 78.289 -19.495 78.378 -19.534 ; #622 5 78.324 -19.301 78.342 -19.107 78.414 -19.165 ; #623 5 78.297 -18.854 78.324 -19.048 78.235 -19.165 ; #624 4 81.691 -18.330 81.804 -18.738 81.804 -18.932 81.756 -19.145 81.643 -18.524 ; #625 2 74.660 -18.893 74.601 -19.107 74.542 -18.893 74.562 -18.699 74.611 -18.679 ; #626 5 76.253 -18.582 76.450 -18.660 76.647 -18.621 76.730 -18.815 76.739 -19.029 76.647 -18.971 76.619 -18.776 76.591 -18.990 76.497 -19.087 76.301 -18.854 76.196 -18.835 76.007 -18.621 75.913 -18.602 76.007 -18.485 76.159 -18.602 ; #627 5 78.164 -18.912 78.074 -19.009 78.154 -18.815 ; #628 2 75.320 -18.097 75.301 -18.310 75.368 -18.505 75.320 -18.893 75.223 -18.776 75.020 -18.873 74.982 -18.485 74.991 -18.271 75.020 -18.077 75.011 -17.670 74.943 -17.476 75.049 -17.320 75.146 -17.262 75.146 -17.456 75.079 -17.670 75.127 -17.883 75.233 -17.961 75.223 -18.155 75.253 -17.941 75.301 -17.747 75.397 -17.902 ; #629 5 78.680 -18.466 78.591 -18.679 78.608 -18.466 78.670 -18.271 ; #630 2 74.708 -18.485 74.631 -18.291 74.699 -18.291 ; #631 5 78.855 -18.233 78.767 -18.116 78.855 -18.097 ; #632 5 77.911 -17.689 77.849 -17.883 77.758 -18.038 77.668 -18.077 77.668 -17.864 77.713 -17.650 77.804 -17.534 77.894 -17.611 ; #633 5 79.196 -17.825 79.109 -18.000 79.013 -17.922 79.127 -17.495 79.214 -17.650 ; #634 4 70.964 -8.621 70.964 -8.408 70.996 -8.194 71.070 -8.000 71.187 -7.980 71.123 -8.388 71.007 -8.524 70.922 -8.932 70.804 -9.029 ; #635 5 64.545 -22.373 64.437 -22.179 64.545 -21.926 64.642 -21.596 64.630 -21.538 64.570 -21.616 64.582 -21.732 64.497 -21.926 64.413 -22.043 64.292 -21.965 64.364 -21.771 64.364 -21.635 64.280 -21.829 64.158 -21.751 64.122 -21.829 64.146 -22.023 64.098 -21.946 64.025 -22.140 63.964 -22.528 64.000 -22.722 63.867 -22.742 63.805 -22.548 63.842 -22.353 63.817 -22.159 63.855 -21.771 63.817 -21.577 63.830 -21.382 63.928 -21.266 63.928 -21.072 63.842 -21.111 63.793 -20.917 63.855 -20.722 63.756 -20.781 63.695 -20.587 63.817 -20.431 63.720 -20.334 63.683 -20.470 63.561 -20.295 63.524 -20.023 63.524 -19.829 63.425 -19.324 63.376 -18.722 63.413 -18.528 63.524 -18.334 63.487 -18.082 63.586 -17.868 63.610 -17.984 63.720 -17.887 63.708 -17.693 63.768 -17.324 63.781 -17.014 63.903 -16.994 63.781 -16.936 63.879 -16.528 63.964 -16.334 63.988 -16.353 64.037 -16.160 64.122 -15.965 64.218 -15.577 64.340 -15.402 64.292 -15.286 64.280 -15.091 64.437 -14.528 64.461 -14.509 64.582 -14.548 64.690 -14.334 64.690 -14.140 64.786 -13.926 64.786 -13.849 64.905 -13.965 64.930 -13.752 65.002 -13.965 65.014 -14.159 65.037 -13.946 64.978 -13.752 65.025 -13.557 65.156 -13.538 65.180 -13.732 65.168 -14.024 65.192 -13.791 65.251 -13.577 65.288 -13.693 65.288 -13.888 65.371 -13.693 65.501 -13.635 65.513 -13.829 65.584 -14.024 65.619 -14.217 65.595 -14.392 65.477 -14.586 65.643 -14.334 65.761 -14.470 65.714 -14.858 65.808 -14.820 65.926 -14.625 66.043 -14.800 66.031 -14.994 66.149 -15.014 66.161 -14.975 66.278 -14.955 66.348 -14.742 66.371 -14.955 66.254 -15.150 66.243 -15.344 66.126 -15.402 66.219 -15.577 66.266 -15.791 66.394 -15.791 66.499 -15.985 66.522 -16.198 66.476 -16.586 66.243 -16.451 66.078 -16.606 66.196 -17.072 66.138 -17.266 65.902 -17.557 66.138 -17.946 66.149 -18.334 66.020 -18.315 65.902 -18.159 65.785 -18.082 65.631 -18.082 65.691 -18.159 65.808 -18.218 65.926 -18.353 66.149 -18.742 66.173 -18.936 66.149 -19.091 66.066 -19.130 66.066 -19.324 65.949 -19.519 65.832 -19.422 65.714 -19.460 65.726 -19.577 65.808 -19.693 65.902 -19.887 66.102 -20.140 66.090 -20.237 65.996 -20.431 65.761 -20.295 65.643 -20.295 65.631 -20.334 65.513 -20.412 65.477 -20.489 65.489 -20.567 65.572 -20.606 65.631 -20.800 65.513 -20.994 65.395 -21.111 65.145 -21.111 65.383 -21.208 65.619 -21.460 65.631 -21.654 65.750 -21.790 65.679 -21.596 65.703 -21.402 65.820 -21.305 65.938 -21.402 65.961 -21.538 65.984 -21.344 66.055 -21.538 66.055 -21.732 66.173 -21.790 66.254 -22.043 66.254 -22.237 66.371 -22.353 66.441 -22.548 66.417 -22.742 66.429 -22.936 66.406 -23.150 66.289 -23.072 66.336 -22.878 66.278 -22.684 66.243 -22.470 66.231 -22.684 66.149 -22.878 66.055 -22.489 65.808 -22.664 65.973 -22.606 65.949 -22.800 66.008 -22.994 66.126 -23.169 66.173 -23.363 66.161 -23.557 66.126 -23.616 66.078 -23.421 66.066 -23.616 65.973 -23.421 66.031 -23.616 66.043 -23.810 65.926 -23.693 65.832 -23.285 65.891 -23.693 65.879 -23.887 65.761 -23.751 65.726 -23.363 65.703 -23.557 65.655 -23.344 65.607 -23.557 65.703 -23.751 65.773 -24.140 65.536 -23.985 65.595 -24.198 65.595 -24.392 65.466 -24.489 65.466 -24.101 65.395 -23.887 65.477 -23.344 65.572 -22.955 65.548 -22.936 65.489 -22.742 65.607 -22.761 65.607 -22.567 65.513 -22.353 65.548 -22.159 65.430 -22.315 65.501 -22.120 65.430 -21.926 65.430 -21.713 65.383 -21.985 65.263 -22.373 65.145 -22.392 65.109 -22.198 65.097 -21.810 65.014 -22.004 65.037 -22.451 64.978 -22.645 65.002 -22.839 64.990 -23.227 64.893 -23.635 64.905 -23.829 64.810 -24.023 64.714 -23.829 64.786 -23.635 64.798 -23.247 64.750 -22.645 64.786 -22.431 64.666 -22.392 64.678 -22.353 ; #636 5 57.541 -7.301 57.675 -7.223 57.568 -7.417 57.500 -7.223 ; #637 5 57.162 -7.243 57.298 -7.204 57.352 -7.398 57.217 -7.417 57.094 -7.223 ; #638 5 62.135 -7.184 62.097 -7.379 62.022 -7.184 ; #639 5 61.972 -6.699 62.097 -6.815 62.223 -7.010 62.249 -7.204 62.122 -7.107 61.934 -6.718 ; #640 5 57.903 -6.893 57.809 -7.087 57.756 -6.893 57.890 -6.796 ; #641 5 57.917 -6.660 58.050 -6.660 57.917 -6.641 57.957 -6.446 58.104 -6.466 58.198 -6.272 58.331 -6.175 58.477 -6.194 58.438 -6.388 58.358 -6.582 58.238 -6.777 58.104 -6.854 58.225 -7.048 58.090 -7.087 57.957 -7.010 57.903 -6.815 ; #642 5 62.185 -6.718 62.274 -6.913 62.147 -6.815 62.060 -6.641 ; #643 5 61.517 -6.699 61.593 -6.893 61.466 -6.815 61.390 -6.660 ; #644 5 61.859 -6.641 61.821 -6.835 61.745 -6.641 ; #645 5 57.134 -5.786 57.271 -5.708 57.271 -5.922 57.352 -6.136 57.487 -6.136 57.635 -6.214 57.635 -6.408 57.500 -6.349 57.541 -6.544 57.487 -6.738 57.352 -6.660 57.298 -6.466 57.162 -6.291 57.134 -6.097 57.162 -5.903 57.026 -6.000 ; #646 5 55.627 -6.117 55.780 -6.058 55.890 -6.253 55.807 -6.446 55.669 -6.485 55.711 -6.291 55.572 -6.272 ; #647 5 56.330 -5.922 56.344 -5.728 56.481 -5.728 56.523 -5.922 56.659 -6.117 56.523 -6.194 56.494 -6.000 56.358 -6.058 56.262 -6.253 ; #648 5 56.822 -5.107 56.686 -5.165 56.713 -4.990 56.645 -5.301 56.563 -5.379 56.453 -5.379 56.453 -5.184 56.440 -5.379 56.344 -5.553 56.207 -5.553 56.070 -5.612 55.849 -5.650 55.711 -5.612 55.572 -5.708 55.295 -5.748 55.295 -5.708 55.433 -5.534 55.586 -5.437 56.000 -5.379 56.138 -5.184 56.234 -4.990 56.056 -5.262 55.918 -5.146 56.000 -5.107 55.862 -4.990 56.152 -4.796 56.014 -4.757 55.931 -4.563 55.959 -4.796 55.945 -4.835 55.807 -4.874 55.669 -4.854 55.558 -4.660 55.420 -4.718 55.141 -4.990 54.988 -5.029 54.904 -4.990 55.002 -5.087 55.002 -5.165 54.889 -5.165 54.624 -4.854 54.666 -4.854 54.806 -4.951 54.820 -4.738 54.736 -4.544 54.764 -4.349 54.904 -4.388 54.834 -4.252 54.834 -4.058 54.764 -4.039 54.764 -3.942 54.988 -3.553 54.960 -3.010 54.889 -3.243 54.764 -3.417 54.624 -3.553 54.483 -3.612 54.342 -3.417 54.244 -3.204 54.060 -3.126 54.216 -3.029 54.188 -3.010 54.202 -2.815 53.961 -2.854 53.820 -3.048 53.720 -2.893 53.691 -2.971 53.549 -3.087 53.393 -2.990 53.422 -3.068 53.235 -3.068 53.349 -3.359 53.292 -3.553 53.306 -3.748 53.221 -4.155 53.292 -4.155 53.422 -4.349 53.278 -4.563 53.121 -4.349 53.207 -4.194 53.021 -4.369 52.935 -4.563 52.791 -4.757 52.776 -4.505 52.891 -4.310 52.863 -4.117 52.719 -4.019 52.690 -4.058 52.546 -3.942 52.503 -4.058 52.373 -4.097 52.229 -4.272 52.083 -4.660 52.011 -5.068 51.866 -5.204 51.721 -5.223 51.691 -4.913 51.691 -4.990 51.603 -4.990 51.647 -4.738 51.735 -4.544 51.778 -4.349 51.662 -4.291 51.677 -4.058 51.647 -4.058 51.559 -4.272 51.559 -4.078 51.603 -3.922 51.530 -3.748 51.413 -3.573 51.384 -3.456 51.384 -3.262 51.559 -2.971 51.530 -2.912 51.574 -2.699 51.778 -2.388 51.501 -2.699 51.457 -2.815 51.311 -2.971 51.209 -2.990 51.179 -3.320 51.224 -3.515 51.209 -4.000 51.018 -4.272 51.018 -4.466 50.738 -4.621 50.590 -4.796 50.546 -4.990 50.472 -5.010 50.324 -5.184 50.235 -5.379 50.191 -5.573 50.043 -5.631 50.117 -5.437 49.998 -5.243 49.998 -5.146 50.146 -4.990 50.235 -4.835 50.324 -4.621 50.353 -4.408 50.399 -4.213 50.458 -4.194 50.383 -4.175 50.220 -3.748 50.383 -3.495 50.679 -3.456 50.605 -3.379 50.679 -3.146 50.723 -2.835 50.605 -2.447 50.620 -2.252 50.723 -2.019 50.708 -1.942 50.752 -1.515 50.856 -1.320 50.842 -0.913 50.723 -0.796 50.797 -0.583 50.827 -0.194 50.752 0.291 50.842 0.486 50.915 0.874 51.032 1.029 51.091 1.223 51.224 1.417 51.384 1.359 51.340 0.951 51.413 0.563 51.487 0.602 51.443 0.408 51.501 0.524 51.545 0.854 51.691 0.777 51.735 0.796 51.808 1.010 51.793 1.204 51.938 1.281 51.953 1.087 52.025 1.456 52.170 1.631 52.460 1.767 52.618 1.748 52.762 1.670 52.935 1.262 52.964 0.874 52.964 0.680 52.906 0.486 52.762 0.388 52.877 0.000 53.135 0.350 53.278 0.330 53.422 0.214 53.705 -0.350 53.677 -0.486 53.691 -0.719 53.734 -0.621 53.705 -0.427 53.720 -0.350 53.634 0.000 53.620 0.155 53.862 -0.117 54.003 -0.194 54.144 -0.194 54.483 -0.583 54.554 -0.777 54.596 -1.146 54.680 -1.185 54.792 -1.301 55.071 -1.437 55.127 -1.495 55.544 -1.612 55.627 -1.806 55.918 -2.155 55.945 -2.350 56.028 -2.583 56.056 -2.777 55.959 -2.971 56.000 -3.534 56.042 -3.728 56.111 -3.825 56.056 -3.709 56.056 -3.592 56.014 -3.379 56.056 -3.204 56.193 -2.971 56.193 -2.777 56.330 -2.738 56.440 -2.932 56.344 -3.243 56.358 -3.320 56.453 -2.971 56.467 -2.757 56.563 -2.544 56.741 -2.427 56.917 -2.175 57.257 -2.000 57.392 -1.845 57.541 -1.786 57.675 -1.903 57.675 -2.505 57.702 -2.893 57.662 -3.087 57.716 -3.379 57.595 -3.825 57.595 -4.019 57.487 -4.213 57.662 -4.175 57.702 -3.961 57.836 -3.961 57.836 -4.155 57.877 -4.272 57.957 -4.058 57.957 -3.961 58.371 -3.107 58.637 -3.146 58.651 -3.340 58.597 -3.515 58.624 -3.650 58.557 -3.845 58.583 -4.039 58.517 -4.233 58.491 -4.427 58.557 -4.796 58.624 -4.990 58.438 -4.990 58.385 -5.146 58.251 -5.010 58.251 -5.379 58.117 -5.262 57.984 -5.301 57.850 -5.243 57.877 -5.631 57.742 -5.767 57.595 -5.728 57.514 -5.670 57.500 -5.864 57.352 -5.708 57.365 -5.515 57.284 -5.708 57.284 -5.495 57.217 -5.417 57.230 -5.631 57.134 -5.592 57.107 -5.398 57.107 -5.573 57.053 -5.767 56.985 -5.573 57.012 -5.767 56.877 -5.748 56.741 -5.844 56.782 -5.942 56.686 -6.136 56.713 -5.748 56.686 -5.534 56.700 -5.748 56.563 -5.903 56.523 -5.708 56.577 -5.495 ; #649 5 55.849 -5.942 56.000 -5.786 56.138 -5.689 56.070 -5.884 55.931 -6.039 55.794 -5.961 ; #650 5 55.572 -5.087 55.711 -5.281 55.572 -5.359 55.433 -5.165 ; #651 5 55.766 -4.990 55.904 -5.146 55.862 -5.165 55.725 -5.010 ; #652 5 54.130 -4.485 54.272 -4.330 54.413 -4.349 54.342 -4.544 54.202 -4.699 54.060 -4.777 ; #653 5 58.888 -3.223 58.862 -3.417 58.770 -3.223 ; #654 5 58.967 -2.738 59.007 -2.932 58.994 -3.126 59.126 -3.146 59.100 -3.340 58.967 -3.243 58.875 -2.815 ; #655 -5 59.283 -2.874 59.323 -3.068 59.231 -2.874 ; #656 5 60.262 -1.185 60.390 -1.107 60.623 -1.281 60.520 -1.476 60.390 -1.379 60.313 -1.592 60.171 -1.495 60.236 -1.281 60.107 -1.262 60.002 -1.320 59.872 -1.301 60.002 -1.185 ; #657 4 46.183 -1.281 46.199 -1.476 46.152 -1.281 ; #658 5 50.708 -1.068 50.767 -1.262 50.664 -1.476 50.576 -1.281 ; #659 4 45.904 -1.165 45.966 -1.359 45.810 -1.204 ; #660 5 60.610 -1.010 60.481 -1.126 60.481 -1.087 ; #661 5 60.803 -0.777 60.674 -0.932 60.674 -0.835 ; #662 4 51.691 4.175 51.691 4.350 51.822 4.058 51.808 3.981 ; #663 4 61.135 5.048 61.097 4.854 61.122 5.068 ; #664 4 61.909 4.951 61.783 4.971 61.833 5.165 61.884 5.165 ; #665 4 60.403 5.010 60.274 4.990 60.210 5.184 60.352 5.165 ; #666 4 60.572 5.029 60.572 5.243 60.584 5.048 ; #667 4 60.416 5.243 60.546 5.068 60.533 5.029 ; #668 4 59.179 5.204 59.310 5.340 59.375 5.320 59.402 5.262 ; #669 4 59.689 5.204 59.689 5.398 59.820 5.301 ; #670 4 59.885 5.553 59.963 5.379 59.820 5.359 59.741 5.476 ; #671 4 60.054 5.728 60.002 5.534 60.002 5.728 ; #672 4 62.311 5.670 62.223 5.864 62.299 5.864 ; #673 4 62.286 5.942 62.349 6.155 62.411 6.077 ; #674 -5 77.686 -21.728 77.632 -21.514 77.540 -21.708 77.594 -21.495 77.686 -21.398 77.785 -21.378 77.975 -21.029 78.011 -20.815 77.929 -20.602 77.858 -20.194 77.804 -19.728 77.776 -19.320 77.722 -19.126 77.622 -18.951 77.585 -19.359 77.713 -20.000 77.731 -20.194 77.695 -20.407 77.713 -20.621 77.668 -20.835 77.632 -20.621 77.567 -20.388 77.549 -20.602 77.504 -20.388 77.540 -21.029 77.486 -20.621 77.440 -20.000 77.413 -20.194 77.413 -20.602 77.385 -20.194 77.395 -19.806 77.367 -19.592 77.247 -19.165 77.340 -19.029 77.367 -18.815 77.340 -18.388 77.247 -18.194 76.962 -18.097 76.870 -18.194 76.804 -18.407 76.804 -18.602 76.842 -18.815 76.879 -19.417 76.953 -19.825 76.962 -20.000 76.944 -20.116 76.990 -20.738 76.944 -20.951 76.879 -20.738 76.898 -21.145 76.870 -21.572 76.861 -21.165 76.833 -20.776 76.777 -21.184 76.721 -21.398 76.647 -21.592 76.675 -21.786 76.777 -21.961 76.852 -22.174 76.842 -22.369 76.749 -22.446 76.665 -22.660 76.637 -22.446 76.544 -22.310 76.637 -22.155 76.619 -21.941 76.526 -21.961 76.506 -21.747 76.460 -21.961 76.441 -21.747 76.441 -22.155 76.422 -22.349 76.413 -22.155 76.432 -21.553 76.329 -21.631 76.234 -21.650 76.273 -21.436 76.253 -21.029 76.206 -20.815 76.121 -20.621 76.140 -20.407 76.215 -20.835 76.310 -21.029 76.291 -20.815 76.215 -20.427 76.243 -20.213 76.243 -19.864 76.150 -19.709 76.055 -19.786 76.055 -20.000 75.998 -20.233 75.979 -20.427 75.998 -20.854 75.970 -21.650 75.951 -21.844 75.970 -21.029 75.960 -20.602 75.932 -20.407 75.923 -20.194 75.932 -19.942 75.885 -19.728 75.780 -19.573 75.723 -19.359 75.723 -19.573 75.656 -19.534 75.656 -19.631 75.685 -20.932 75.742 -21.611 75.828 -22.136 75.904 -22.388 76.074 -22.679 76.234 -22.854 76.385 -22.951 76.600 -22.990 76.767 -22.971 77.211 -22.776 77.340 -22.699 77.477 -22.563 77.603 -22.291 77.686 -22.038 77.713 -21.941 77.677 -21.941 ; #675 5 27.815 -17.883 27.761 -18.077 27.635 -17.980 ; #676 5 28.711 -17.728 28.836 -17.922 28.639 -17.922 28.460 -17.844 28.531 -17.767 ; #677 5 32.735 -16.738 32.823 -16.932 32.841 -17.126 32.666 -17.048 32.631 -16.932 ; #678 5 28.084 -16.466 28.442 -16.252 28.460 -16.447 28.389 -16.640 28.371 -16.835 28.192 -16.815 27.976 -16.660 ; #679 5 27.850 -15.378 28.030 -15.398 28.138 -15.592 28.012 -15.786 27.833 -15.767 27.725 -15.573 ; #680 5 28.192 -14.136 28.228 -13.922 28.603 -13.806 28.639 -14.019 28.282 -14.194 28.102 -14.388 28.048 -14.330 ; #681 5 29.032 -13.456 29.211 -13.417 29.014 -13.806 28.836 -13.767 ; #682 4 38.933 1.515 39.099 1.495 39.000 1.301 38.834 1.379 ; #683 4 39.597 3.398 39.761 3.340 39.794 3.146 39.959 3.204 39.844 2.816 39.630 2.427 39.448 2.524 39.530 2.718 39.365 2.893 39.283 3.087 39.415 3.301 ; #684 4 39.860 4.117 39.827 4.330 40.025 4.214 40.058 4.000 39.992 3.806 ; #685 4 39.679 8.446 39.016 8.388 39.033 8.582 38.867 8.641 38.883 8.835 39.016 9.029 39.216 9.087 39.266 9.029 39.216 9.107 39.165 9.379 39.216 9.573 39.547 9.670 39.943 9.708 40.025 9.708 40.189 9.631 40.354 9.708 40.518 9.844 41.009 9.611 41.156 9.417 41.253 9.223 41.123 9.029 40.928 8.815 40.861 8.621 40.829 8.408 40.960 8.213 40.633 8.194 40.469 8.388 40.289 8.485 39.992 8.408 39.877 8.563 39.696 8.544 ; #686 4 42.274 8.699 41.951 8.602 41.903 8.796 41.741 8.660 41.644 8.854 41.480 8.971 41.383 9.165 41.383 9.243 41.708 9.417 41.935 9.398 42.113 9.553 42.193 9.573 42.516 9.534 42.677 9.456 42.837 9.495 43.014 9.437 42.853 9.320 42.677 9.301 42.725 9.107 42.548 8.718 42.387 8.602 ; #687 4 42.869 10.427 42.725 10.233 42.709 10.427 ; #688 4 33.691 10.913 33.708 10.971 33.881 10.932 33.812 10.738 33.639 10.873 ; #689 4 36.906 14.427 36.754 14.621 36.703 15.009 36.720 15.126 36.889 15.145 37.025 15.340 37.193 15.204 37.361 15.107 37.462 15.087 37.798 15.262 38.116 15.534 38.284 15.573 38.150 15.184 38.150 14.776 38.016 14.388 38.033 13.961 37.966 13.767 38.166 13.378 38.166 13.184 38.033 12.990 38.083 12.815 38.066 12.621 37.898 12.466 37.732 12.485 37.563 12.660 37.563 12.913 37.278 13.573 37.143 13.767 37.092 13.961 37.092 14.175 36.991 14.369 ; #690 4 44.855 14.349 44.698 14.408 44.682 14.504 44.997 14.427 45.154 14.311 44.997 14.369 ; #691 4 35.889 14.524 35.974 14.330 35.803 14.524 ; #692 4 44.682 14.408 44.635 14.369 44.477 14.524 ; #693 -4 44.997 14.815 45.075 14.679 45.232 14.543 45.075 14.446 44.997 14.640 ; #694 4 44.603 14.835 44.382 15.068 44.334 15.262 44.477 15.009 44.509 15.009 ; #695 4 43.922 15.184 44.082 15.009 44.034 15.009 ; #696 4 43.142 17.068 43.190 16.679 43.158 16.485 43.110 17.068 ; #697 4 43.317 16.893 43.365 16.699 43.286 16.504 43.254 16.699 ; #698 4 42.965 17.068 42.917 16.679 42.901 16.873 ; #699 4 42.773 17.378 42.757 17.572 42.805 17.378 ; #700 -3 39.448 20.019 39.497 19.941 39.663 19.864 39.827 19.864 39.728 19.669 39.398 20.019 ; #701 3 38.334 20.407 38.166 20.427 38.083 20.815 38.384 20.543 ; #702 3 38.800 20.640 38.634 20.738 38.834 20.718 ; #703 3 37.831 20.854 37.798 20.660 37.648 20.854 ; #704 -5 14.158 -16.349 14.177 -16.447 14.139 -16.466 13.929 -16.776 14.120 -16.815 14.424 -16.990 14.615 -17.145 14.729 -17.320 14.805 -17.378 14.900 -17.165 14.995 -17.068 15.280 -16.835 15.811 -16.524 16.170 -16.524 16.548 -16.466 17.511 -16.078 17.699 -16.039 18.075 -16.019 18.470 -16.058 19.127 -16.272 19.276 -16.466 19.426 -16.466 19.818 -16.233 20.191 -16.194 20.731 -16.485 20.638 -16.602 21.066 -16.854 21.122 -16.932 21.011 -16.990 20.768 -17.048 20.955 -17.087 21.919 -16.912 22.105 -16.815 22.290 -16.660 22.364 -16.466 22.549 -16.369 22.733 -16.330 22.936 -16.194 23.101 -16.194 23.653 -15.844 23.837 -15.806 23.671 -16.000 23.856 -15.864 24.112 -15.534 24.478 -15.184 24.624 -14.990 24.807 -14.873 25.446 -14.777 25.990 -14.485 26.208 -14.427 26.661 -13.650 26.842 -13.495 27.005 -13.437 27.202 -13.378 27.490 -13.223 27.671 -13.165 27.779 -13.009 27.958 -12.854 28.084 -12.039 28.335 -11.456 28.513 -11.301 28.764 -11.010 28.961 -10.621 29.104 -10.427 29.282 -10.252 29.638 -10.000 29.851 -9.786 30.188 -9.631 30.365 -9.611 30.524 -9.689 30.700 -9.864 30.878 -9.806 31.423 -9.825 31.792 -9.592 32.037 -9.340 32.213 -9.262 32.579 -9.243 32.910 -8.835 33.257 -8.524 33.708 -7.359 33.881 -7.010 34.037 -6.815 34.828 -6.310 35.633 -5.981 35.803 -5.884 35.820 -5.689 35.923 -5.379 35.889 -5.320 35.803 -5.340 35.616 -5.262 35.308 -4.913 35.205 -4.699 35.154 -4.388 35.240 -4.000 35.205 -3.786 35.274 -3.728 35.188 -3.340 35.325 -2.932 35.274 -2.912 35.120 -2.719 35.086 -2.524 35.120 -2.330 35.086 -2.194 35.017 -2.136 35.000 -2.136 34.794 -1.825 34.777 -1.806 34.657 -1.786 34.484 -1.670 34.278 -1.709 34.106 -1.650 33.708 -1.728 33.673 -1.650 33.570 -1.592 33.397 -1.650 33.205 -1.612 33.049 -1.476 32.875 -1.495 32.701 -1.281 32.579 -1.126 32.230 -1.243 32.159 -1.281 32.159 -1.262 32.107 -1.185 32.089 -1.204 32.107 -1.379 32.124 -1.903 32.159 -2.369 32.124 -2.563 32.019 -2.932 31.845 -2.971 31.809 -3.068 31.757 -3.243 31.704 -3.437 31.669 -3.825 31.599 -3.825 31.405 -3.728 31.230 -3.786 31.142 -3.670 30.966 -3.650 30.913 -3.961 30.772 -4.155 30.736 -4.213 30.630 -4.427 30.630 -4.524 30.541 -4.796 30.418 -4.990 30.188 -5.146 29.993 -5.340 29.904 -5.592 29.833 -6.039 29.798 -6.233 29.816 -6.427 29.833 -6.466 29.745 -6.466 29.567 -6.621 29.602 -6.815 29.620 -7.126 29.478 -7.320 29.407 -7.417 29.389 -7.612 29.246 -7.806 29.086 -8.039 28.996 -8.233 28.818 -8.466 28.711 -8.660 27.293 -8.660 27.166 -8.446 25.536 -5.650 25.517 -5.650 25.117 -4.990 25.063 -4.893 24.990 -4.796 24.935 -4.699 24.021 -3.243 24.002 -3.223 23.064 -1.786 22.067 -0.330 21.845 -0.019 21.827 0.000 21.103 1.184 21.011 1.204 20.937 1.204 20.750 1.301 20.620 1.515 20.490 1.670 20.304 1.806 20.228 2.058 20.266 2.252 20.024 2.524 20.005 2.718 19.949 2.971 19.836 3.184 19.575 3.223 19.388 3.281 19.164 3.126 18.976 3.340 19.070 3.806 19.145 4.252 17.284 4.252 16.416 4.214 16.227 4.058 16.037 4.000 16.000 4.019 15.697 3.884 15.659 3.845 15.545 3.650 15.355 3.495 15.374 3.437 15.393 3.320 15.431 3.029 15.336 2.874 15.355 2.680 15.317 2.058 15.280 1.320 14.995 1.010 14.957 0.757 14.938 0.719 14.995 0.524 14.995 0.233 14.919 0.252 14.881 0.252 14.843 0.194 14.634 0.214 14.424 0.233 14.329 0.350 14.139 0.369 13.948 0.486 13.777 0.621 13.739 0.621 13.586 0.951 13.415 1.146 13.358 1.301 13.320 1.184 13.320 1.126 13.282 0.990 13.091 0.990 13.033 1.010 13.014 1.126 12.842 1.340 12.632 1.592 12.613 1.845 12.708 2.058 12.689 2.155 12.460 2.272 12.268 2.136 12.058 2.291 12.001 2.330 11.886 2.408 11.675 2.330 11.483 2.097 11.426 2.019 11.426 1.903 11.445 1.864 11.388 1.631 11.445 1.437 11.388 1.379 11.292 1.359 11.196 1.165 11.158 1.165 11.043 0.971 10.985 0.971 11.004 0.932 10.908 0.893 10.716 0.816 10.390 0.796 10.217 1.010 10.101 1.184 10.063 1.262 10.005 1.359 9.909 1.359 9.659 1.379 9.486 1.379 9.428 1.398 9.293 1.437 9.274 1.456 9.081 1.612 8.812 1.631 8.368 1.631 7.809 1.650 7.519 1.670 7.403 1.650 6.998 1.650 6.998 1.553 6.901 1.592 6.708 1.592 6.573 1.670 6.380 1.786 6.283 1.806 6.244 1.631 6.225 1.650 6.167 1.398 6.090 1.204 5.973 1.048 5.760 0.893 5.780 0.699 5.973 0.621 6.050 0.524 6.090 0.214 6.031 0.330 6.031 0.505 5.838 0.641 5.760 0.602 5.722 0.194 5.606 0.000 5.490 -0.350 5.218 -0.777 5.198 -0.971 5.005 -1.612 4.947 -1.670 4.734 -2.078 4.908 -2.311 5.082 -3.087 5.102 -2.912 5.160 -3.146 5.354 -3.184 5.315 -3.243 5.121 -3.340 5.140 -3.534 5.218 -3.709 5.179 -3.748 5.257 -3.942 5.238 -3.767 5.277 -3.767 5.315 -3.961 5.277 -3.942 5.277 -4.058 5.296 -4.310 5.218 -4.796 5.160 -4.777 5.218 -4.660 5.218 -4.446 5.277 -4.058 5.238 -4.000 5.140 -4.777 5.140 -4.990 5.218 -4.990 5.218 -5.262 5.140 -5.398 5.198 -5.204 5.121 -4.990 5.082 -5.456 5.024 -5.844 4.521 -7.184 4.424 -7.320 4.346 -7.495 4.346 -7.515 4.366 -7.708 4.986 -9.029 5.277 -9.417 5.451 -9.573 5.818 -10.000 5.915 -10.058 6.148 -10.349 6.225 -10.621 6.321 -10.796 6.399 -10.757 6.399 -10.796 6.592 -11.068 6.689 -11.301 6.882 -11.437 6.959 -11.573 6.998 -11.553 7.268 -12.155 7.384 -12.349 7.519 -12.369 7.597 -12.175 7.577 -12.311 7.713 -12.505 7.693 -12.563 7.905 -12.951 8.060 -12.893 8.253 -12.971 8.291 -13.165 8.484 -13.223 8.368 -13.029 8.426 -13.106 8.484 -13.068 8.561 -12.854 8.580 -13.048 8.657 -13.029 8.657 -13.223 8.850 -13.184 8.850 -12.971 8.947 -13.087 9.024 -13.281 9.177 -13.301 9.562 -13.495 9.639 -13.611 9.832 -13.650 9.736 -13.728 9.928 -13.670 9.947 -13.689 9.851 -13.806 10.005 -14.019 10.159 -14.019 10.159 -14.252 10.313 -14.446 10.659 -14.621 10.697 -14.602 10.812 -14.796 11.023 -14.679 10.966 -15.009 11.158 -15.009 11.062 -15.204 11.273 -15.320 11.426 -15.262 11.369 -15.495 11.560 -15.340 11.694 -15.145 11.656 -15.456 11.847 -15.398 11.847 -15.184 11.771 -14.990 11.771 -14.913 11.809 -14.990 11.963 -14.990 11.886 -15.534 11.790 -15.670 11.752 -15.864 11.943 -15.864 12.001 -15.689 11.982 -15.922 11.886 -16.116 12.001 -16.330 12.211 -16.252 12.345 -16.058 12.268 -16.311 12.192 -16.388 12.326 -16.718 12.402 -16.776 12.594 -16.621 12.594 -16.272 12.575 -15.689 12.594 -15.611 12.594 -15.573 12.613 -15.573 12.632 -15.495 12.823 -15.378 12.785 -15.534 12.613 -15.573 12.594 -15.611 12.651 -15.980 12.727 -16.019 12.632 -16.078 12.594 -16.272 12.594 -16.447 12.785 -16.582 12.746 -16.699 12.861 -16.757 13.052 -16.738 13.186 -16.796 13.377 -16.815 13.473 -16.660 13.282 -16.543 13.282 -16.155 13.415 -16.155 13.435 -15.747 13.492 -15.553 13.492 -15.456 13.454 -15.359 13.492 -15.281 13.492 -15.456 13.529 -15.553 13.454 -15.767 13.435 -16.155 13.339 -16.349 13.492 -16.563 13.586 -16.563 13.796 -16.485 14.005 -16.485 13.853 -16.582 13.796 -16.699 14.139 -16.466 ; #705 -5 14.177 -16.447 14.158 -16.349 14.139 -16.466 ; #706 -5 12.632 -16.078 12.727 -16.019 12.651 -15.980 12.594 -15.611 12.575 -15.689 12.594 -16.272 ; #707 -5 12.613 -15.573 12.594 -15.573 12.594 -15.611 ; #708 -5 12.785 -15.534 12.823 -15.378 12.632 -15.495 12.613 -15.573 ; #709 5 0.214 6.757 0.408 6.660 0.214 6.485 0.019 6.524 ; #710 -5 13.492 -15.281 13.454 -15.359 13.492 -15.456 ; #711 -5 40.518 -8.777 40.698 -8.641 40.861 -8.641 40.682 -8.699 41.156 -8.641 41.188 -8.699 41.692 -8.835 41.854 -8.874 41.951 -8.738 42.048 -8.641 42.080 -8.388 42.145 -8.194 42.032 -8.077 41.870 -8.194 41.870 -8.175 41.822 -8.155 41.822 -8.039 41.870 -7.883 41.886 -7.612 41.806 -7.417 41.886 -7.204 41.983 -7.184 41.967 -6.971 41.951 -6.932 41.967 -6.757 41.903 -6.563 41.741 -6.544 41.562 -6.194 41.480 -6.253 41.302 -6.466 41.270 -6.485 41.204 -6.679 41.041 -6.815 41.025 -6.913 41.009 -6.913 40.993 -6.893 40.861 -6.796 40.600 -6.815 40.584 -6.815 40.272 -6.854 40.256 -6.932 40.173 -7.010 39.992 -6.874 39.827 -6.932 39.827 -6.971 39.811 -6.971 39.679 -7.010 39.663 -7.048 39.663 -7.534 39.497 -7.379 39.464 -7.282 39.365 -7.301 39.283 -7.223 39.266 -7.243 39.099 -7.107 39.116 -7.029 39.033 -6.971 39.033 -6.951 38.917 -7.029 38.883 -7.029 38.834 -7.068 38.750 -7.204 38.667 -7.262 38.484 -7.320 38.467 -7.301 38.434 -7.320 38.384 -7.243 38.183 -7.087 38.200 -6.932 38.033 -6.990 37.999 -7.204 37.966 -7.243 37.932 -7.243 37.547 -7.515 37.530 -7.495 37.261 -7.417 37.193 -7.417 37.041 -7.786 37.025 -7.980 37.092 -8.175 37.092 -8.369 37.143 -8.524 37.008 -8.913 37.177 -8.913 37.445 -8.796 37.614 -8.796 37.732 -8.757 37.949 -8.854 38.217 -8.777 38.400 -8.796 38.567 -8.718 38.467 -8.777 38.501 -9.165 38.667 -9.184 38.634 -9.107 38.767 -8.913 38.950 -8.971 38.784 -9.087 38.701 -9.184 38.701 -9.378 38.867 -9.437 39.033 -9.417 39.200 -9.340 39.299 -9.340 39.630 -9.068 40.124 -8.854 ; #712 -4 42.113 -8.874 42.274 -8.641 42.355 -8.582 42.290 -8.660 42.242 -8.854 42.420 -8.641 42.404 -8.854 42.564 -8.815 42.693 -8.718 42.629 -8.913 42.789 -8.893 42.821 -8.854 42.789 -9.048 42.853 -9.126 42.901 -9.107 43.062 -9.243 43.317 -8.835 43.302 -8.641 43.365 -8.446 43.413 -8.155 43.493 -8.155 43.477 -8.194 43.637 -8.097 43.748 -7.903 43.716 -7.495 43.605 -7.301 43.557 -7.087 43.493 -7.029 43.573 -6.835 43.541 -6.718 43.557 -6.058 43.621 -5.864 43.541 -5.670 43.525 -5.281 43.461 -5.048 43.397 -4.602 43.397 -4.175 43.429 -4.039 43.397 -4.019 43.477 -3.825 43.493 -3.631 43.461 -3.437 43.349 -3.146 43.333 -3.010 43.413 -2.932 43.461 -2.738 43.317 -2.408 43.302 -2.214 43.317 -1.981 43.365 -1.767 43.445 -1.573 43.859 -1.379 44.350 -1.262 44.635 -1.204 44.792 -1.223 45.483 -1.126 45.467 -0.932 45.310 -0.757 45.138 -0.719 44.997 -0.563 44.886 -0.524 44.997 -0.544 45.154 -0.660 45.326 -0.699 45.483 -0.796 45.607 -0.990 45.701 -1.185 45.701 -1.243 45.779 -1.107 45.935 -1.068 46.245 -1.126 46.322 -1.107 46.322 -1.301 46.415 -1.495 46.446 -1.650 46.524 -1.767 46.679 -1.903 46.833 -2.117 47.033 -1.981 47.125 -2.175 47.278 -2.136 47.278 -1.942 47.201 -1.728 47.293 -1.922 47.293 -2.175 47.278 -2.369 47.448 -2.447 47.508 -2.350 47.508 -2.757 47.630 -2.951 47.478 -3.087 47.630 -3.184 47.737 -3.379 47.844 -4.019 47.798 -4.213 47.950 -4.408 48.026 -4.602 48.042 -4.718 48.103 -4.330 48.194 -4.524 48.346 -4.544 48.285 -4.330 48.391 -4.349 48.331 -4.738 48.482 -4.757 48.603 -4.563 48.664 -4.369 48.724 -3.981 48.679 -3.631 48.845 -3.476 48.830 -3.281 48.875 -3.087 48.573 -2.757 48.588 -2.563 48.694 -2.311 48.573 -2.000 48.512 -1.961 48.542 -1.942 48.573 -1.981 48.648 -1.379 48.785 -1.553 48.935 -1.534 49.251 -1.650 49.400 -1.806 49.700 -1.942 49.655 -1.612 49.700 -1.320 49.550 -1.301 49.341 -1.126 49.400 -0.913 49.356 -0.719 49.356 -0.524 49.296 -0.136 49.430 0.291 49.460 0.466 49.490 0.505 49.460 0.272 49.611 0.136 49.745 0.330 49.878 0.738 49.938 1.126 50.072 1.379 50.220 1.534 50.191 1.650 50.339 1.553 50.368 1.612 50.664 1.573 50.812 1.612 50.959 1.806 51.062 2.485 51.311 3.126 51.399 3.573 51.340 3.767 51.370 3.961 51.355 4.252 51.268 4.310 51.370 4.252 51.443 4.019 51.384 3.825 51.443 3.631 51.589 3.553 51.603 3.884 51.501 4.078 51.443 4.272 51.516 4.233 51.559 4.039 51.589 4.214 51.647 4.117 51.632 4.214 51.691 4.408 51.721 4.641 51.721 4.660 51.706 4.835 51.793 4.796 51.721 4.641 51.721 4.408 51.837 4.097 51.982 4.019 51.982 4.117 52.272 4.466 52.474 4.602 52.762 4.660 52.891 4.718 52.906 4.932 53.007 5.204 53.107 5.398 53.164 5.417 53.306 5.631 53.393 6.000 53.407 6.369 53.464 6.757 53.321 6.951 53.235 7.223 53.292 7.379 53.335 7.243 53.364 7.029 53.507 7.048 53.649 7.204 53.691 7.398 53.677 7.514 53.677 7.592 53.720 7.922 53.578 8.136 53.436 8.116 53.436 8.311 53.592 8.252 53.563 8.446 53.349 8.505 53.521 8.563 53.677 8.485 53.820 8.563 53.862 8.757 53.834 8.835 53.834 9.029 53.862 9.223 53.734 9.417 53.592 9.573 53.535 9.825 53.549 9.844 53.578 9.689 53.862 9.340 53.905 9.068 54.003 8.874 54.144 8.951 54.286 8.835 54.272 8.660 54.413 8.796 54.511 8.971 54.525 8.990 54.820 8.660 54.876 8.660 54.862 8.466 55.002 8.369 55.002 8.408 54.889 8.602 54.918 8.679 55.141 8.582 55.224 8.660 55.350 8.660 55.447 8.466 55.572 8.330 55.530 8.116 55.683 8.175 55.945 8.155 55.862 8.349 55.890 8.408 56.042 8.311 56.000 8.116 56.550 8.136 56.686 8.213 56.550 8.311 56.550 8.757 56.686 8.815 56.795 9.010 56.659 9.107 56.536 9.301 56.673 9.340 56.822 9.204 56.999 9.301 57.053 9.942 57.080 10.000 56.985 10.213 56.850 10.291 56.713 10.349 56.713 10.136 56.645 9.883 56.659 10.000 56.713 10.136 56.618 10.349 56.467 10.194 56.550 10.388 56.509 10.582 56.536 10.777 56.399 10.932 56.262 10.835 56.221 10.641 56.097 10.544 56.234 10.485 56.180 10.252 55.904 10.252 55.876 10.000 55.697 10.000 55.669 9.806 55.711 9.592 55.627 9.806 55.530 9.708 55.489 9.514 55.267 9.689 55.155 9.495 54.932 9.747 54.904 9.592 54.820 9.456 54.820 9.650 54.708 10.000 54.666 9.942 54.666 10.039 54.469 10.000 54.357 10.155 54.441 10.311 54.300 10.718 54.371 10.913 54.399 11.126 54.244 11.087 54.102 10.913 53.961 10.893 54.003 11.068 53.933 11.262 53.905 11.456 54.018 11.514 54.159 11.709 54.159 11.903 54.188 12.097 54.102 12.116 54.230 12.194 54.328 12.388 54.469 12.505 54.413 12.893 54.427 12.699 54.385 12.505 54.328 12.505 54.399 12.718 54.399 12.913 54.314 13.126 54.286 13.126 54.088 13.514 54.130 13.534 54.174 13.728 53.862 13.825 53.848 13.844 53.820 13.883 53.691 14.291 53.677 14.408 53.592 14.602 53.705 14.543 53.848 14.640 53.876 14.369 53.862 14.427 53.806 14.349 53.862 14.233 53.876 14.058 53.848 13.844 53.905 13.941 54.046 14.000 53.933 14.233 53.919 14.330 54.159 15.398 54.272 16.194 54.469 16.485 54.525 16.524 54.596 16.912 54.736 17.301 54.820 17.883 54.834 18.271 54.792 18.466 54.722 18.640 54.778 18.446 54.413 18.679 54.371 18.796 54.342 19.048 54.385 19.437 54.469 19.631 54.455 19.669 54.371 19.456 54.342 19.262 54.272 19.262 54.385 19.708 54.441 19.805 54.427 19.864 54.427 19.903 54.413 20.019 54.413 20.038 54.399 20.291 54.399 20.349 54.371 20.621 54.357 20.679 54.357 20.757 54.328 21.301 54.328 22.174 54.357 22.796 54.385 22.990 54.314 23.145 54.258 23.242 54.174 23.436 54.088 23.514 53.947 23.514 53.720 23.592 53.691 23.592 53.606 23.631 53.535 23.669 53.521 23.669 53.278 23.825 53.121 23.922 53.092 23.883 52.949 23.941 52.776 23.941 52.662 23.864 52.546 23.475 52.503 23.398 52.474 23.378 52.460 23.359 52.359 23.242 52.287 23.184 52.141 23.514 52.112 23.592 52.083 23.650 52.069 23.650 52.040 23.669 51.764 23.611 51.764 23.592 51.647 23.553 51.545 23.572 51.530 23.611 51.384 23.689 51.268 23.708 51.179 23.805 51.179 23.825 50.988 23.941 50.856 24.155 50.782 23.961 50.635 24.116 50.576 24.116 50.517 24.097 50.399 23.903 50.368 23.708 50.279 23.631 50.265 23.592 50.235 23.553 50.235 23.534 50.102 23.320 49.998 23.184 49.952 23.126 49.804 22.971 49.789 22.951 49.774 22.912 49.700 22.835 49.685 22.815 49.581 22.699 49.475 22.699 49.326 22.757 49.221 22.738 49.070 22.874 49.010 22.893 49.085 22.563 48.920 22.446 48.800 22.407 48.648 22.271 48.557 22.174 48.437 22.155 48.406 22.155 48.406 22.194 48.376 22.271 48.361 22.271 48.240 22.466 48.240 22.524 48.164 22.602 48.103 22.640 48.103 22.835 48.088 22.854 47.950 22.912 47.829 22.718 47.752 22.446 47.692 22.252 47.600 22.194 47.569 22.136 47.524 22.038 47.493 22.019 47.217 21.844 47.140 21.805 47.125 21.805 47.017 21.669 46.863 21.611 46.771 21.514 46.756 21.495 46.679 21.495 46.617 21.339 46.462 21.301 46.415 21.262 46.261 21.107 46.261 20.815 46.168 20.738 46.152 20.718 46.152 20.699 46.183 20.505 46.152 20.291 46.121 20.271 46.059 20.330 45.966 20.388 45.888 20.621 45.794 20.679 45.763 20.718 45.670 20.815 45.576 20.796 45.530 20.835 45.498 20.796 45.467 20.854 45.436 20.874 45.310 21.048 45.247 21.242 45.232 21.262 45.232 21.301 45.185 21.475 45.028 21.437 44.997 21.378 44.966 21.417 44.902 21.572 44.823 21.378 44.776 21.417 44.776 21.514 44.729 21.631 44.713 21.631 44.666 21.689 44.603 22.038 44.572 22.038 44.525 22.097 44.603 22.291 44.682 22.388 44.635 22.582 44.556 22.776 44.525 22.699 44.540 22.660 44.461 22.466 44.429 22.505 44.382 22.524 44.303 22.602 44.303 22.621 44.224 22.699 44.145 22.621 44.050 22.543 44.018 22.466 43.859 22.407 43.780 22.388 43.700 22.427 43.589 22.505 43.557 22.505 43.397 22.699 43.365 22.776 43.206 22.951 43.190 23.009 43.158 23.009 42.998 22.854 42.869 22.679 42.885 22.640 42.853 22.524 42.821 22.446 42.805 22.466 42.564 22.466 42.420 22.543 42.323 22.369 42.225 22.466 42.161 22.524 42.129 22.582 41.983 22.893 41.870 22.912 41.789 22.971 41.692 23.009 41.513 22.971 41.383 22.971 41.334 22.951 41.334 22.893 41.318 22.776 41.237 22.776 41.172 22.757 41.139 22.563 41.139 22.543 41.123 22.524 41.139 22.349 41.172 22.213 41.091 21.922 41.074 21.922 40.928 21.805 40.894 21.669 40.910 21.475 40.910 21.437 40.878 21.242 40.861 21.145 40.861 20.990 40.796 20.990 40.698 21.048 40.600 21.048 40.518 20.990 40.436 20.796 40.338 20.776 40.091 20.640 40.074 20.602 40.074 20.466 39.992 20.407 39.893 20.369 39.811 20.427 39.811 20.310 39.646 20.233 39.679 20.116 39.696 20.019 39.860 20.019 40.058 19.844 40.223 19.456 40.387 19.340 40.321 19.456 40.338 19.476 40.502 19.437 40.518 19.456 40.649 19.320 40.878 19.456 41.025 19.437 41.188 19.476 41.351 19.417 41.578 19.573 41.757 19.573 41.838 19.534 41.854 19.378 41.967 19.145 42.193 18.971 42.274 18.776 42.420 18.563 42.452 18.699 42.420 18.776 42.484 18.757 42.452 18.446 42.789 17.864 42.869 17.456 43.014 17.068 43.014 17.281 42.917 17.476 42.885 17.670 43.030 17.476 43.238 17.087 43.397 16.912 43.429 16.699 43.541 16.388 43.493 16.019 43.668 15.942 43.795 15.670 44.161 15.184 44.319 15.281 44.224 15.514 44.145 15.611 44.224 15.631 44.224 15.553 44.256 15.534 44.334 15.340 44.525 15.107 44.572 15.009 44.729 14.893 44.997 14.912 45.232 14.621 45.357 14.330 44.997 14.175 44.997 14.097 45.028 14.058 44.839 13.980 44.776 13.922 44.997 13.728 45.138 13.728 45.294 13.592 45.310 13.611 45.467 13.514 45.483 13.592 45.545 13.650 45.545 13.728 45.592 13.728 45.747 13.670 45.779 13.592 45.685 13.398 45.732 13.417 45.716 13.398 45.747 13.281 45.716 13.087 45.654 13.106 45.623 12.913 45.530 12.738 45.467 12.524 45.467 12.291 45.294 12.213 45.310 12.155 45.279 12.155 45.263 12.213 45.216 12.233 45.185 12.330 44.997 12.466 44.966 12.543 44.839 12.466 44.666 12.252 44.619 12.291 44.461 12.291 44.240 12.388 43.970 12.757 43.891 12.951 43.653 13.378 43.589 13.573 43.302 13.747 42.661 14.019 42.080 14.738 42.016 14.971 41.935 15.145 41.919 16.136 41.757 16.155 41.644 15.961 41.480 15.942 41.204 16.602 41.025 17.184 40.894 17.378 40.649 17.961 40.534 18.077 40.420 18.291 40.256 18.466 40.074 18.505 39.827 18.388 39.844 18.194 39.992 18.000 40.173 17.942 40.289 17.767 40.338 17.378 40.469 17.242 40.469 17.281 40.502 17.262 40.502 17.029 40.387 16.873 40.207 16.757 40.124 16.660 39.992 16.621 39.827 16.524 39.663 16.544 39.613 16.738 39.481 17.029 39.200 17.165 39.033 17.165 38.784 16.582 38.451 16.582 38.150 16.194 37.982 16.136 37.932 15.942 37.932 15.728 38.100 15.631 38.434 15.903 38.684 15.922 38.717 16.116 38.883 16.233 39.050 16.097 39.382 16.019 39.547 15.883 39.712 15.806 39.893 15.786 40.041 15.650 39.992 15.359 40.140 15.165 40.207 15.009 40.371 15.009 40.534 14.912 40.665 14.718 40.600 14.524 40.616 14.446 40.780 14.369 40.796 14.175 41.025 13.922 41.237 13.747 41.204 13.592 41.270 13.378 41.270 13.184 41.318 12.990 41.497 12.602 41.627 12.466 41.741 12.233 41.903 12.155 42.016 11.961 42.080 11.786 42.161 11.747 42.323 11.592 42.420 11.262 42.580 11.126 42.773 10.815 42.933 10.738 42.949 10.544 43.270 10.524 43.589 10.291 43.827 10.272 43.970 10.155 44.050 10.039 44.066 9.922 44.113 9.844 44.129 9.650 44.319 9.320 44.413 8.932 44.413 8.738 44.303 8.485 43.938 8.136 43.843 7.942 43.780 7.670 43.764 7.456 43.668 7.204 43.429 6.777 43.270 6.699 43.174 6.505 43.046 6.116 43.126 5.922 43.158 5.709 43.190 5.689 43.206 5.495 43.365 5.301 43.333 5.107 43.397 5.029 43.413 5.048 43.397 4.815 43.557 4.738 43.397 4.777 43.381 4.582 43.461 4.408 43.477 4.252 43.557 4.097 43.493 3.884 43.270 3.495 43.238 3.301 43.078 3.048 42.901 3.029 42.853 2.990 42.821 3.048 42.661 3.048 42.258 3.301 42.193 3.126 42.032 3.204 41.854 3.146 41.725 2.951 41.497 2.408 41.383 2.214 41.318 2.155 41.107 1.243 40.977 0.912 40.812 0.719 40.714 0.874 40.682 0.874 40.567 0.660 40.534 0.524 40.354 0.408 40.025 0.058 39.910 0.000 39.745 -0.155 39.431 -0.330 39.149 -0.233 38.983 -0.136 38.717 0.214 38.634 0.000 38.417 -0.388 38.116 -0.641 37.932 -0.699 37.681 -0.815 37.563 -1.010 37.563 -1.204 37.496 -1.398 37.261 -1.825 37.092 -1.845 36.923 -1.942 36.754 -2.097 36.822 -2.291 36.822 -2.447 36.686 -2.641 36.686 -2.835 36.754 -3.126 36.720 -3.515 36.720 -4.349 36.670 -4.446 36.500 -4.641 36.500 -4.835 36.466 -4.990 36.381 -5.184 36.144 -5.320 35.991 -5.592 36.178 -6.000 36.398 -6.214 36.517 -6.175 36.585 -6.233 36.686 -6.427 36.889 -6.233 36.974 -6.524 37.177 -6.913 37.278 -6.874 37.278 -6.971 37.177 -7.359 37.227 -7.398 37.261 -7.417 37.530 -7.495 37.547 -7.515 37.932 -7.243 37.966 -7.243 37.999 -7.204 38.033 -6.990 38.200 -6.932 38.183 -7.087 38.384 -7.243 38.434 -7.320 38.467 -7.301 38.484 -7.320 38.667 -7.262 38.750 -7.204 38.834 -7.068 38.883 -7.029 38.917 -7.029 39.033 -6.951 39.033 -6.971 39.116 -7.029 39.099 -7.107 39.266 -7.243 39.283 -7.223 39.365 -7.301 39.464 -7.282 39.497 -7.379 39.663 -7.534 39.663 -7.048 39.679 -7.010 39.811 -6.971 39.827 -6.971 39.827 -6.932 39.992 -6.874 40.173 -7.010 40.256 -6.932 40.272 -6.854 40.584 -6.815 40.600 -6.815 40.861 -6.796 40.993 -6.893 41.009 -6.913 41.025 -6.913 41.041 -6.815 41.204 -6.679 41.270 -6.485 41.302 -6.466 41.480 -6.253 41.562 -6.194 41.741 -6.544 41.903 -6.563 41.967 -6.757 41.951 -6.932 41.967 -6.971 41.983 -7.184 41.886 -7.204 41.806 -7.417 41.886 -7.612 41.870 -7.883 41.822 -8.039 41.822 -8.155 41.870 -8.175 41.870 -8.194 42.032 -8.077 42.145 -8.194 42.080 -8.388 42.048 -8.641 41.951 -8.738 ; #713 -8 52.272 5.340 52.258 5.417 52.431 5.825 52.503 5.883 52.575 5.825 52.590 5.883 52.604 5.670 52.748 5.612 52.834 5.728 52.834 5.534 52.978 5.417 53.007 5.223 52.921 5.048 52.776 5.126 52.705 5.301 52.690 5.281 52.633 5.087 52.503 5.107 52.373 4.990 52.330 5.165 ; #714 -4 28.711 -8.660 28.818 -8.466 28.996 -8.233 29.086 -8.039 29.246 -7.806 29.389 -7.612 29.407 -7.417 29.478 -7.320 29.620 -7.126 29.602 -6.815 29.567 -6.621 29.745 -6.466 29.833 -6.466 29.816 -6.427 29.798 -6.233 29.833 -6.039 29.904 -5.592 29.993 -5.340 30.188 -5.146 30.418 -4.990 30.541 -4.796 30.630 -4.524 30.630 -4.427 30.736 -4.213 30.772 -4.155 30.913 -3.961 30.966 -3.650 31.142 -3.670 31.230 -3.786 31.405 -3.728 31.599 -3.825 31.669 -3.825 31.704 -3.437 31.757 -3.243 31.809 -3.068 31.845 -2.971 32.019 -2.932 32.124 -2.563 32.159 -2.369 32.124 -1.903 32.107 -1.379 32.089 -1.204 32.107 -1.185 32.159 -1.262 32.159 -1.281 32.230 -1.243 32.579 -1.126 32.701 -1.281 32.875 -1.495 33.049 -1.476 33.205 -1.612 33.397 -1.650 33.570 -1.592 33.673 -1.650 33.708 -1.728 34.106 -1.650 34.278 -1.709 34.484 -1.670 34.657 -1.786 34.777 -1.806 34.794 -1.825 35.000 -2.136 35.017 -2.136 35.086 -2.194 35.068 -2.058 35.120 -1.748 35.256 -1.553 35.308 -1.359 35.444 -1.243 35.616 -1.087 35.718 -0.893 35.718 -0.699 35.872 -0.311 35.786 -0.097 35.838 0.000 36.042 0.136 36.195 0.350 36.483 1.126 36.619 2.408 36.585 2.602 36.805 2.990 36.737 3.184 36.805 3.262 36.771 3.456 36.906 3.845 36.889 4.815 36.805 5.010 36.720 5.087 36.653 5.243 36.653 5.437 36.788 5.670 36.856 6.058 36.923 6.252 37.025 6.291 37.092 6.485 36.957 6.679 36.923 6.874 36.923 7.068 37.075 7.282 37.075 7.379 36.856 7.844 36.873 8.039 36.957 8.233 36.906 8.427 36.940 8.641 37.025 8.913 37.160 9.087 37.327 9.670 37.294 9.883 37.261 9.883 37.244 10.019 37.126 10.213 37.092 10.194 36.923 10.291 36.889 10.349 36.788 10.272 36.805 10.291 36.771 10.291 36.720 10.427 37.008 10.893 36.974 11.087 36.788 11.029 36.449 10.738 36.364 10.524 36.178 10.466 35.957 10.544 35.786 10.699 35.718 10.835 35.565 11.029 35.256 11.106 34.897 10.913 34.536 10.582 34.347 10.194 34.175 10.019 34.106 10.019 33.932 10.097 33.742 10.272 33.639 10.524 33.639 10.718 33.466 10.757 33.621 10.951 33.621 11.029 33.449 11.106 33.257 11.145 33.257 11.340 33.101 11.670 33.066 11.864 32.823 12.349 32.788 12.777 32.910 13.301 32.806 13.573 32.771 13.941 32.666 14.252 32.526 14.446 32.439 14.815 32.404 15.107 32.265 15.301 31.932 15.378 31.704 15.475 31.582 15.553 31.405 15.728 31.247 16.116 31.212 16.485 31.230 16.679 31.089 17.320 30.789 18.155 30.471 18.602 30.259 19.068 30.276 19.281 30.435 19.669 30.825 20.058 31.001 20.136 31.212 20.155 31.458 20.019 31.634 19.961 31.880 19.941 32.072 20.019 32.265 20.194 32.561 20.582 32.631 20.796 32.735 20.990 32.771 21.378 32.875 21.553 32.928 21.747 32.910 22.019 32.875 22.252 32.788 22.505 32.683 22.912 32.561 23.106 32.370 23.106 32.213 23.262 32.159 23.805 32.037 24.019 32.002 24.213 32.002 24.815 31.949 25.009 31.652 25.165 31.582 25.087 31.475 25.009 31.317 24.873 31.001 24.932 30.825 25.009 30.736 25.009 30.453 24.912 30.365 24.815 30.188 24.718 29.993 24.796 29.798 24.815 29.745 24.854 29.602 24.893 29.567 24.893 29.175 25.009 20.005 25.009 20.005 24.019 15.697 24.019 15.754 23.805 15.754 23.611 15.678 23.398 15.716 23.126 15.526 22.932 15.298 23.009 15.109 22.951 15.033 22.815 14.995 22.776 14.710 22.699 14.672 22.640 14.634 22.505 14.424 22.466 14.234 22.505 14.234 22.563 14.043 22.407 13.929 22.213 13.834 22.155 13.643 22.155 13.454 22.252 13.377 22.310 13.186 22.155 12.995 21.922 12.804 21.844 12.670 21.903 12.651 22.116 12.689 22.310 12.498 22.427 12.230 22.485 12.039 22.485 11.982 22.621 11.790 22.582 11.694 22.563 11.502 22.660 11.406 22.854 11.311 22.971 10.928 22.893 10.831 22.932 10.466 23.300 10.005 23.592 9.793 23.689 9.409 23.669 9.197 23.592 9.120 23.475 8.985 23.495 8.773 23.514 8.715 23.708 8.715 23.980 8.696 24.194 8.311 24.194 8.272 24.272 8.272 24.466 8.176 24.873 7.983 25.009 7.944 25.029 7.867 25.243 7.674 25.301 7.539 25.203 7.345 25.378 7.152 25.786 6.959 26.058 6.747 26.213 6.631 26.407 6.457 26.310 6.225 26.485 6.031 26.563 5.992 26.776 5.973 26.815 5.896 26.912 5.799 27.126 5.586 27.281 5.393 27.262 5.218 27.320 5.005 27.475 5.024 27.436 5.082 27.398 5.160 27.203 5.160 27.009 5.044 26.834 5.063 26.640 5.082 26.466 5.179 26.252 5.218 26.155 5.218 25.883 5.296 25.669 5.373 25.592 5.315 25.398 5.005 25.203 5.005 25.126 4.986 25.009 4.928 24.815 5.005 24.621 5.102 24.485 5.005 24.330 5.005 24.310 4.947 24.252 4.831 23.903 4.695 23.534 4.599 23.359 4.734 23.165 4.715 22.854 4.618 22.738 4.462 22.602 4.346 22.602 4.153 22.466 4.133 22.466 4.114 22.563 3.862 22.854 3.862 23.242 3.823 23.359 3.823 23.534 3.668 23.417 3.629 23.398 3.668 23.203 3.532 23.009 3.494 22.796 3.086 22.796 3.028 22.893 3.106 23.087 2.698 22.990 2.504 23.126 2.524 23.320 2.524 23.359 2.388 23.572 2.174 23.631 2.232 23.436 2.174 23.242 2.135 23.203 2.174 22.990 2.019 22.776 2.038 22.718 2.096 22.582 2.038 22.602 1.902 22.524 1.709 22.485 1.495 22.291 1.495 22.310 1.476 22.446 1.320 22.660 1.126 22.757 0.680 22.874 0.563 22.951 0.408 22.990 0.000 23.281 -0.194 23.417 -0.388 23.009 -0.447 23.456 -0.641 23.631 -0.738 23.436 -0.873 23.417 -1.340 24.019 -1.398 24.213 -1.534 24.388 -1.786 24.427 -1.767 23.961 -1.922 23.767 -2.058 23.281 -1.922 23.068 -1.961 22.951 -1.805 22.640 -1.961 22.427 -1.922 22.174 -2.329 22.271 -2.388 22.038 -2.485 21.903 -2.524 21.844 -2.329 21.475 -2.504 21.281 -2.485 21.009 -2.698 20.971 -2.834 20.854 -3.028 20.757 -3.435 20.660 -4.153 20.679 -4.269 20.485 -4.288 20.446 -4.288 20.407 -4.385 20.310 -4.269 20.116 -4.288 20.058 -4.307 20.038 -4.521 20.116 -4.715 20.058 -5.005 20.155 -5.198 20.194 -5.393 20.155 -5.644 20.194 -5.838 20.116 -5.973 20.019 -6.069 19.805 -6.186 19.689 -6.592 19.747 -6.785 19.903 -6.998 19.980 -6.998 20.213 -6.920 20.407 -6.920 20.640 -7.114 20.563 -7.287 20.543 -7.287 21.786 -7.442 21.864 -7.655 21.844 -7.867 21.786 -7.944 21.767 -8.330 21.922 -8.426 21.941 -8.966 21.864 -9.120 21.844 -9.177 21.864 -9.486 21.844 -9.678 21.903 -10.005 22.194 -10.159 22.213 -10.428 22.310 -10.620 22.310 -10.678 22.330 -10.697 22.330 -10.793 22.271 -10.850 22.174 -11.234 22.252 -11.254 22.252 -11.138 22.485 -11.043 22.582 -11.100 22.718 -11.062 22.912 -11.100 23.106 -11.081 23.203 -10.966 23.398 -10.985 23.592 -11.004 23.805 -10.870 24.000 -11.119 24.019 -11.138 24.038 -11.502 24.038 -11.694 24.000 -12.211 24.000 -12.268 24.038 -12.460 24.019 -12.651 23.941 -12.804 23.903 -12.995 23.941 -12.995 22.252 -13.052 22.000 -13.700 22.000 -14.995 22.019 -16.170 22.019 -16.586 22.271 -17.492 23.223 -17.624 23.495 -17.473 24.252 -17.492 24.310 -17.511 24.796 -17.567 24.990 -17.586 25.009 -17.812 25.281 -17.831 25.009 -17.850 24.815 -17.906 24.737 -18.056 24.543 -17.963 24.369 -18.170 23.980 -18.264 23.903 -18.488 23.631 -18.301 23.534 -18.131 23.378 -18.000 23.300 -18.019 23.009 -18.245 21.786 -18.245 21.767 -18.301 21.475 -18.320 21.009 -21.993 21.009 -21.993 20.019 -22.308 20.000 -23.303 20.000 -23.874 20.019 -26.008 20.019 -26.751 20.000 -28.425 20.000 -28.496 19.805 -28.531 19.573 -28.710 19.476 -28.728 19.320 -28.907 19.301 -28.925 19.223 -28.925 19.029 -28.854 18.835 -28.854 18.660 -28.889 18.466 -28.871 18.077 -28.782 17.883 -28.782 17.670 -28.710 17.456 -28.496 17.340 -28.317 17.378 -28.156 17.204 -28.102 17.184 -28.066 16.990 -28.209 16.854 -28.389 16.776 -28.460 16.679 -28.585 16.504 -28.603 16.427 -28.048 15.767 -27.850 15.670 -27.311 15.301 -26.950 15.242 -26.769 15.126 -26.588 15.165 -26.408 15.107 -26.299 14.971 -26.117 14.990 -25.736 14.835 -25.554 14.893 -25.373 14.815 -25.008 14.835 -24.825 14.796 -24.643 14.660 -24.442 14.621 -24.075 14.466 -23.892 14.524 -23.524 14.485 -23.340 14.504 -23.083 14.427 -22.899 14.543 -22.659 14.543 -22.474 14.485 -22.087 14.272 -21.845 14.039 -21.382 13.767 -21.122 13.573 -20.750 13.378 -20.191 13.184 -20.005 13.049 -19.070 12.543 -18.770 12.349 -18.395 12.000 -18.207 11.922 -18.019 11.786 -17.831 11.747 -17.454 11.728 -16.680 11.825 -15.905 11.767 -15.526 12.039 -15.393 12.039 -15.203 12.097 -14.729 12.291 -13.967 12.408 -13.758 12.524 -13.453 12.524 -13.263 12.660 -13.109 12.854 -12.708 13.068 -12.575 13.281 -12.498 13.475 -12.326 13.592 -11.943 13.767 -11.062 13.864 -10.639 13.747 -10.447 13.573 -9.716 13.223 -9.524 13.204 -9.332 13.145 -9.177 13.049 -9.062 13.029 -8.754 13.320 -8.580 13.378 -8.330 13.378 -7.577 13.009 -7.171 12.854 -7.075 12.854 -6.920 12.796 -6.727 12.621 -6.321 12.388 -6.128 12.291 -6.012 12.680 -5.992 12.874 -5.876 13.087 -5.857 13.184 -5.838 12.874 -5.973 12.680 -6.031 12.485 -5.876 12.291 -5.780 12.233 -5.567 12.175 -5.373 12.194 -5.179 12.116 -5.005 12.136 -5.005 12.000 -4.657 11.767 -4.462 11.709 -3.940 11.145 -3.358 10.660 -3.300 10.641 -2.698 9.961 -2.504 9.806 -2.621 10.000 -2.543 10.000 -2.427 9.825 -2.388 9.631 -1.980 9.475 -1.980 9.534 -1.883 9.340 -1.689 9.262 -1.300 9.010 -1.476 9.165 -1.631 9.379 -1.612 9.573 -1.573 9.379 -1.340 9.146 -1.320 9.048 -1.009 8.932 -0.970 8.951 -0.893 8.854 -0.718 8.893 -0.738 8.932 -0.680 8.932 -0.873 9.010 -0.680 9.126 -0.272 9.320 0.194 9.417 0.136 9.611 0.175 10.000 0.175 9.825 0.272 9.611 0.466 9.417 0.660 9.437 0.621 9.631 1.029 9.611 1.009 9.806 1.106 9.767 1.087 9.573 1.184 9.379 1.379 9.456 1.573 9.631 1.592 9.747 1.592 9.650 1.941 9.825 2.135 9.786 2.873 9.883 3.066 9.980 3.261 9.942 3.435 9.786 3.629 9.825 3.629 9.650 3.823 9.689 3.862 9.728 4.056 9.689 4.114 9.708 4.075 9.689 4.075 9.456 4.017 9.514 3.998 9.495 4.036 9.456 3.921 9.340 4.036 9.340 4.017 9.126 4.249 8.971 4.637 8.854 4.599 8.815 4.695 8.660 4.502 8.699 4.618 8.524 4.812 8.602 4.850 8.427 4.792 8.369 4.986 8.194 4.618 8.369 4.560 8.175 4.502 7.767 4.579 7.573 4.715 7.553 4.579 7.534 4.579 7.359 4.541 7.262 4.657 7.107 4.462 7.048 4.657 7.029 4.676 6.913 4.462 6.990 4.404 6.874 4.792 6.796 4.327 6.796 4.404 6.718 4.599 6.738 4.541 6.718 4.502 6.563 4.327 6.446 4.288 6.252 4.482 6.252 4.269 6.116 4.404 6.058 4.385 6.000 4.521 5.728 4.889 5.476 5.335 5.476 5.373 5.592 5.528 5.631 5.393 5.398 5.567 5.320 5.586 5.515 5.625 5.320 5.722 5.340 5.606 5.146 5.799 5.126 5.896 5.301 5.838 5.165 5.857 5.010 6.186 4.679 6.380 4.330 6.438 3.806 6.418 3.592 6.457 3.398 6.457 3.534 6.612 3.728 6.457 3.398 6.380 3.320 6.341 2.466 6.283 1.942 6.225 1.650 6.244 1.631 6.283 1.806 6.380 1.786 6.573 1.670 6.708 1.592 6.901 1.592 6.998 1.553 6.998 1.650 7.403 1.650 7.519 1.670 7.809 1.650 8.368 1.631 8.812 1.631 9.081 1.612 9.274 1.456 9.293 1.437 9.428 1.398 9.486 1.379 9.659 1.379 9.909 1.359 10.005 1.359 10.063 1.262 10.101 1.184 10.217 1.010 10.390 0.796 10.716 0.816 10.908 0.893 11.004 0.932 10.985 0.971 11.043 0.971 11.158 1.165 11.196 1.165 11.292 1.359 11.388 1.379 11.445 1.437 11.388 1.631 11.445 1.864 11.426 1.903 11.426 2.019 11.483 2.097 11.675 2.330 11.886 2.408 12.001 2.330 12.058 2.291 12.268 2.136 12.460 2.272 12.689 2.155 12.708 2.058 12.613 1.845 12.632 1.592 12.842 1.340 13.014 1.126 13.033 1.010 13.091 0.990 13.282 0.990 13.320 1.126 13.320 1.184 13.358 1.301 13.415 1.146 13.586 0.951 13.739 0.621 13.777 0.621 13.948 0.486 14.139 0.369 14.329 0.350 14.424 0.233 14.634 0.214 14.843 0.194 14.881 0.252 14.919 0.252 14.995 0.233 14.995 0.524 14.938 0.719 14.957 0.757 14.995 1.010 15.280 1.320 15.317 2.058 15.355 2.680 15.336 2.874 15.431 3.029 15.393 3.320 15.374 3.437 15.355 3.495 15.545 3.650 15.659 3.845 15.697 3.884 16.000 4.019 16.037 4.000 16.227 4.058 16.416 4.214 17.284 4.252 19.145 4.252 19.070 3.806 18.976 3.340 19.164 3.126 19.388 3.281 19.575 3.223 19.836 3.184 19.949 2.971 20.005 2.718 20.024 2.524 20.266 2.252 20.228 2.058 20.304 1.806 20.490 1.670 20.620 1.515 20.750 1.301 20.937 1.204 21.011 1.204 21.103 1.184 21.827 0.000 21.845 -0.019 22.067 -0.330 23.064 -1.786 24.002 -3.223 24.021 -3.243 24.935 -4.699 24.990 -4.796 25.063 -4.893 25.117 -4.990 25.517 -5.650 25.536 -5.650 27.166 -8.446 27.293 -8.660 ; #715 -5 54.497 -8.194 54.638 -8.116 54.638 -8.699 54.764 -8.505 54.834 -8.311 55.002 -8.446 55.141 -8.291 55.169 -7.883 55.141 -7.689 55.002 -7.612 55.002 -7.573 55.141 -7.456 55.281 -7.515 55.281 -7.495 55.295 -7.320 55.281 -7.107 55.141 -7.146 55.071 -7.243 55.044 -7.243 55.044 -7.146 55.183 -6.951 55.169 -6.738 55.224 -6.524 55.224 -6.136 55.085 -6.039 55.058 -5.981 55.002 -5.981 54.764 -5.670 54.652 -5.903 54.624 -5.864 54.666 -5.670 54.666 -5.553 54.525 -5.456 54.385 -5.456 54.371 -5.534 54.511 -5.553 54.455 -5.631 54.357 -5.534 54.188 -5.864 54.046 -6.019 54.102 -6.253 53.947 -6.369 53.806 -6.253 53.720 -6.253 53.492 -6.097 53.464 -6.136 53.407 -6.117 53.335 -6.214 53.207 -6.078 53.064 -6.019 52.921 -6.019 52.762 -6.136 52.590 -6.194 52.344 -6.388 52.344 -6.485 52.200 -6.330 52.184 -6.524 52.214 -6.738 52.112 -6.932 52.287 -6.990 52.127 -7.184 52.141 -7.282 52.112 -7.495 52.098 -7.573 51.938 -7.689 51.982 -7.845 51.837 -8.000 51.793 -8.194 51.895 -8.291 51.880 -8.427 51.735 -8.330 51.487 -9.243 51.559 -9.437 51.516 -9.631 51.545 -9.825 51.691 -9.437 51.662 -9.844 51.603 -10.000 51.677 -10.000 51.837 -9.650 51.778 -10.000 51.778 -10.194 51.851 -10.388 51.996 -10.233 52.040 -10.000 52.127 -9.786 52.141 -10.000 52.098 -10.388 52.243 -10.291 52.243 -9.786 52.388 -9.844 52.561 -9.456 52.647 -8.951 52.662 -8.738 52.676 -8.932 52.776 -8.932 52.633 -9.126 52.633 -9.534 52.561 -9.825 52.848 -9.417 52.992 -9.398 53.135 -9.282 53.121 -9.068 53.150 -8.990 53.264 -9.068 53.221 -9.456 53.378 -9.573 53.292 -9.767 53.378 -10.000 53.521 -10.136 53.535 -10.000 53.606 -10.000 53.606 -9.689 53.634 -9.883 53.776 -9.786 53.776 -9.592 53.876 -9.786 53.905 -9.922 54.046 -9.883 54.188 -9.942 54.216 -10.000 54.300 -10.000 54.258 -9.786 54.314 -9.573 54.286 -9.378 54.202 -9.184 54.144 -9.126 54.286 -8.932 54.202 -8.524 54.342 -8.660 54.469 -8.369 54.469 -8.291 ; #716 -5 57.863 -4.291 57.903 -4.388 57.877 -4.272 ; #717 -5 57.621 -4.369 57.675 -4.175 57.662 -4.175 ; #718 -5 5.218 -4.446 5.218 -4.660 5.160 -4.777 5.218 -4.796 5.296 -4.310 5.277 -4.058 ; #719 -5 53.321 -2.796 53.306 -2.912 53.393 -2.990 ; #720 -5 53.349 -2.719 53.335 -2.699 53.321 -2.796 ; #721 -5 6.612 3.728 6.457 3.534 6.457 3.398 ; #722 -4 51.632 3.942 51.735 3.825 51.735 3.903 51.647 4.117 ; #723 -4 51.793 4.796 51.706 4.835 51.721 4.660 51.721 4.641 ; #724 4 3.552 8.893 3.745 8.835 3.629 8.641 3.435 8.466 3.242 8.505 3.203 8.699 ; #725 -4 52.344 5.223 52.258 5.417 52.272 5.340 52.330 5.165 ; #726 -4 52.474 5.359 52.518 5.456 52.604 5.670 52.575 5.786 52.518 5.864 52.474 5.845 52.388 5.631 52.258 5.417 52.344 5.223 52.330 5.165 ; #727 -4 52.373 4.990 52.503 5.107 52.633 5.087 52.690 5.281 52.590 5.495 52.518 5.456 52.474 5.359 52.330 5.165 ; #728 -4 52.705 5.301 52.776 5.126 52.921 5.048 53.007 5.223 52.978 5.417 52.834 5.534 52.834 5.728 52.748 5.612 52.604 5.670 52.518 5.456 52.590 5.495 52.690 5.281 ; #729 4 52.388 5.631 52.474 5.845 52.518 5.864 52.575 5.786 52.604 5.670 52.590 5.883 52.575 5.825 52.503 5.883 52.431 5.825 52.258 5.417 ; #730 -4 60.533 5.728 60.507 5.748 60.443 5.631 60.456 5.612 ; #731 -4 60.520 5.437 60.636 5.631 60.533 5.728 60.456 5.612 ; #732 -4 60.443 5.631 60.507 5.748 60.533 5.728 60.572 5.767 60.700 5.825 60.700 5.612 60.572 5.301 60.700 5.223 60.803 5.010 60.751 5.281 60.687 5.476 60.816 5.379 60.867 5.573 60.829 5.320 60.841 5.126 60.982 5.223 61.122 5.825 61.097 6.544 61.160 6.757 61.084 6.951 60.956 6.951 60.956 7.146 61.084 7.068 61.148 7.301 61.109 7.495 61.225 7.689 61.200 7.495 61.212 7.437 61.289 7.359 61.415 7.475 61.301 7.282 61.173 7.379 61.148 7.184 61.148 6.971 61.212 7.087 61.212 6.679 61.225 6.641 61.339 6.738 61.122 6.466 61.200 6.272 61.200 5.864 61.084 5.456 61.225 5.243 61.289 5.048 61.352 5.262 61.377 5.650 61.365 5.243 61.403 5.048 61.479 5.456 61.453 5.650 61.466 5.845 61.466 5.650 61.517 5.262 61.555 5.456 61.593 5.243 61.580 5.456 61.605 5.243 61.593 5.048 61.644 5.437 61.632 5.243 61.669 5.048 61.796 5.184 61.884 5.379 61.909 5.573 61.846 5.786 61.745 5.980 61.846 6.388 61.821 6.582 61.871 6.796 61.871 6.602 61.859 6.175 61.921 5.767 61.921 5.379 61.947 5.204 62.034 5.398 62.110 5.184 62.147 5.379 62.022 5.534 62.147 5.476 62.198 5.864 62.072 5.961 62.085 6.349 62.135 6.155 62.274 6.039 62.349 6.233 62.336 6.446 62.198 6.582 62.286 6.544 62.411 6.563 62.461 6.757 62.361 6.971 62.223 7.048 62.097 7.048 62.122 7.262 62.160 7.048 62.286 7.126 62.299 7.340 62.299 7.146 62.424 6.990 62.474 6.796 62.449 6.582 62.474 6.330 62.548 6.563 62.598 6.330 62.635 6.738 62.598 6.951 62.623 7.146 62.611 7.340 62.548 7.553 62.573 7.747 62.586 7.767 62.673 7.573 62.785 8.058 62.710 7.670 62.747 7.456 62.797 7.650 62.735 7.243 62.809 7.048 62.846 7.243 62.946 7.029 63.008 7.243 62.971 7.437 62.971 7.514 62.946 7.844 62.971 8.039 62.846 8.194 62.722 8.524 62.685 8.582 62.710 8.582 62.722 8.524 62.785 8.466 62.834 8.272 63.095 8.019 63.119 8.155 62.996 8.330 62.896 8.524 62.846 8.738 62.908 8.524 63.033 8.621 63.033 8.427 63.119 8.213 63.169 8.544 63.205 8.874 63.193 8.679 63.316 8.660 63.427 8.796 63.402 9.204 63.267 9.068 63.341 9.282 63.378 9.475 63.378 9.282 63.465 9.475 63.452 9.282 63.538 9.475 63.624 9.670 63.439 10.000 63.402 10.000 63.316 9.864 63.353 10.000 63.316 10.213 63.439 10.213 63.439 10.893 63.575 10.971 63.562 10.757 63.685 10.951 63.709 11.165 63.758 11.359 63.843 11.145 63.978 11.320 63.990 11.495 64.026 11.553 64.038 11.359 63.843 10.718 63.868 10.913 63.843 11.126 63.721 10.913 63.672 10.699 63.587 10.485 63.489 10.000 63.624 9.864 63.721 10.000 63.745 10.000 63.660 9.611 63.770 9.825 63.770 9.611 63.941 10.213 63.905 10.000 63.929 10.000 63.990 10.213 63.953 10.000 64.050 10.136 64.184 10.213 64.171 10.427 64.305 10.466 64.390 10.680 64.378 10.873 64.498 10.796 64.498 11.204 64.366 11.301 64.462 11.573 64.474 11.709 64.474 11.573 64.595 11.767 64.595 11.534 64.715 11.456 64.787 11.864 64.823 11.709 64.895 11.825 64.943 12.019 64.955 12.252 64.979 12.097 64.871 11.709 64.787 11.514 64.835 11.301 64.907 11.709 64.931 11.476 65.003 11.670 65.015 11.806 65.074 12.019 65.027 11.806 65.146 12.000 65.110 12.408 65.063 12.175 65.074 12.369 65.193 12.777 65.301 12.971 65.146 12.582 65.170 12.408 65.301 12.427 65.229 12.213 65.348 12.194 65.455 12.388 65.585 12.330 65.467 12.505 65.408 12.699 65.561 12.641 65.550 12.446 65.680 12.466 65.692 12.660 65.927 12.738 65.962 12.932 65.927 13.087 65.951 13.029 66.068 13.049 66.033 12.718 66.139 12.913 66.151 13.106 66.232 13.456 66.115 13.592 66.174 13.767 66.151 13.864 66.174 13.786 66.174 13.767 66.186 13.670 66.221 13.864 66.337 14.194 66.267 13.786 66.279 13.592 66.256 13.398 66.197 13.184 66.302 13.378 66.314 13.592 66.314 13.184 66.430 13.184 66.546 13.106 66.454 13.301 66.546 13.495 66.523 13.709 66.570 13.514 66.558 13.301 66.674 13.262 66.662 13.456 66.697 13.437 66.697 13.650 66.721 13.844 66.710 13.631 66.744 13.592 66.768 13.806 66.768 13.611 66.814 13.806 66.802 14.000 66.917 13.592 66.952 13.806 67.010 14.000 67.010 14.194 67.067 14.369 67.067 14.582 67.090 14.369 67.182 14.563 67.251 15.009 67.194 15.009 67.228 15.087 67.205 15.281 67.113 15.495 67.240 15.514 67.240 15.747 67.251 15.398 67.331 15.204 67.251 14.796 67.308 14.776 67.274 14.369 67.434 14.815 67.434 15.009 67.457 15.009 67.514 14.796 67.583 15.009 67.560 15.204 67.491 15.009 67.537 15.204 67.503 15.417 67.388 15.592 67.388 15.747 67.514 15.631 67.571 15.844 67.537 15.456 67.628 15.262 67.708 15.456 67.685 15.650 67.742 15.456 67.753 15.650 67.696 15.844 67.787 15.650 67.844 15.456 67.662 15.009 67.674 14.815 67.753 15.009 67.889 15.009 67.889 15.204 67.968 15.806 67.968 16.000 68.036 15.844 68.036 15.825 68.047 15.806 68.081 15.611 68.014 15.417 68.126 15.456 68.149 15.650 68.104 15.786 68.205 15.903 68.239 16.097 68.002 16.213 67.912 16.291 67.889 16.310 67.855 16.504 67.912 16.291 68.025 16.310 67.912 16.504 68.025 16.369 67.980 16.563 68.092 16.485 68.092 16.679 68.194 16.466 68.250 16.524 68.318 16.330 68.272 16.563 68.182 16.776 68.296 16.563 68.396 16.485 68.419 16.679 68.340 16.873 68.374 17.087 68.352 17.281 68.318 17.281 68.205 17.417 68.318 17.320 68.352 17.320 68.408 17.495 68.441 17.767 68.475 17.340 68.452 17.126 68.452 16.699 68.553 16.621 68.642 16.660 68.721 17.068 68.732 17.281 68.675 17.689 68.776 17.359 68.810 17.476 68.787 17.670 68.898 17.747 68.898 17.534 69.010 17.572 69.120 17.767 69.142 18.155 69.241 18.038 69.472 18.252 69.396 18.466 69.274 18.543 69.219 18.524 69.308 18.621 69.330 18.835 69.286 19.048 69.407 18.640 69.516 18.524 69.539 18.718 69.483 18.951 69.374 19.068 69.352 19.281 69.263 19.476 69.385 19.340 69.374 19.145 69.494 19.029 69.571 19.242 69.539 19.029 69.648 19.029 69.746 19.165 69.779 19.359 69.801 19.573 69.746 19.767 69.626 19.786 69.407 19.592 69.494 19.786 69.615 19.805 69.593 20.019 69.615 19.941 69.724 19.883 69.844 20.019 69.801 20.058 69.866 20.252 69.975 20.349 69.866 20.427 69.746 20.369 69.637 20.407 69.407 20.213 69.308 20.019 69.286 20.019 69.385 20.233 69.494 20.407 69.550 20.602 69.516 20.815 69.604 20.621 69.713 20.582 69.801 20.776 69.920 20.932 69.964 21.126 69.866 20.932 69.779 21.067 69.844 21.281 69.996 21.281 70.019 21.475 69.899 21.747 69.844 21.922 69.735 22.038 69.844 21.941 69.953 21.941 69.996 22.097 70.029 22.077 70.051 21.864 70.105 22.058 70.073 21.844 70.083 21.650 70.170 21.437 70.224 21.223 70.321 21.631 70.202 21.805 70.321 21.941 70.300 22.136 70.191 22.291 70.137 22.485 70.246 22.369 70.234 22.505 70.202 22.990 70.105 22.776 70.062 22.388 70.094 22.796 70.137 22.990 70.029 23.048 69.996 23.165 69.953 23.223 69.996 23.534 70.029 23.456 70.051 23.262 70.170 23.339 70.278 23.398 70.289 23.611 70.407 23.650 70.483 23.844 70.515 24.038 70.483 24.369 70.569 24.174 70.675 24.330 70.654 24.718 70.751 24.524 70.815 24.310 70.825 24.505 70.868 24.737 70.975 24.582 70.985 24.796 70.922 24.990 70.922 25.184 70.815 25.281 70.922 25.436 70.889 25.631 70.899 25.825 70.793 25.805 70.547 25.203 70.483 25.126 70.472 25.320 70.375 25.126 70.257 25.087 70.148 24.970 70.148 25.184 70.202 25.378 70.311 25.572 70.418 25.611 70.526 25.805 70.601 26.000 70.708 26.077 70.889 26.485 70.953 26.679 70.740 26.718 70.686 26.524 70.579 26.640 70.472 26.621 70.364 26.543 70.483 26.951 70.472 27.165 70.590 27.029 70.601 27.223 70.708 27.145 70.740 27.339 70.815 27.534 70.899 27.320 71.007 27.281 71.017 27.495 71.091 27.689 71.059 27.883 71.081 28.077 71.081 28.291 70.975 28.232 71.007 28.446 70.899 28.543 70.793 28.174 70.825 28.077 70.762 27.864 70.698 28.096 70.643 27.903 70.622 27.689 70.633 27.903 70.708 28.349 70.590 28.213 70.483 28.019 70.526 28.407 70.407 28.252 70.289 28.232 70.407 28.291 70.526 28.504 70.643 28.543 70.751 28.621 70.857 28.815 70.889 29.009 70.846 29.223 70.772 29.436 70.654 29.378 70.708 29.572 70.740 29.805 70.622 29.805 70.708 30.019 70.675 30.271 70.569 30.291 70.526 30.097 70.526 30.291 70.558 30.485 70.386 31.087 70.278 31.029 70.234 30.621 70.137 30.427 70.073 30.213 70.073 29.786 70.148 28.951 70.105 28.737 70.073 29.145 70.019 29.359 69.996 29.553 69.888 29.475 69.909 29.670 69.801 29.786 69.713 29.572 69.746 29.786 69.757 30.019 69.702 30.019 69.680 30.174 69.767 30.252 69.888 30.252 69.812 30.446 69.702 30.504 69.823 30.679 69.801 30.873 69.757 30.893 69.648 30.951 69.539 30.854 69.539 30.660 69.571 30.446 69.648 30.252 69.648 30.232 69.615 30.252 69.604 30.252 69.396 30.019 69.363 29.805 69.319 29.611 69.308 29.398 69.120 29.320 69.010 29.106 69.010 29.029 69.153 28.873 69.297 29.067 69.418 29.301 69.550 29.281 69.670 29.184 69.767 28.679 69.996 28.038 70.083 27.922 70.073 27.708 69.996 27.456 69.942 27.339 69.920 27.145 69.931 26.582 69.713 26.194 69.648 26.000 69.637 26.019 69.429 25.864 69.385 25.903 69.330 25.825 69.219 25.767 68.987 25.805 68.876 25.631 68.887 25.436 68.854 25.320 68.620 25.009 68.575 24.951 68.653 24.757 68.732 24.310 68.799 24.116 68.832 23.903 68.710 23.728 68.699 23.514 68.631 23.203 68.687 23.009 68.732 22.660 68.721 22.446 68.832 22.407 68.954 22.213 69.021 22.058 69.065 21.980 69.098 21.941 69.274 21.669 69.308 21.339 69.241 21.107 69.098 21.184 69.109 20.796 69.043 20.660 69.021 20.796 68.998 20.893 68.998 20.912 68.931 20.912 68.799 21.320 68.687 21.514 68.575 21.941 68.497 22.077 68.475 22.291 68.486 22.310 68.441 22.505 68.408 22.699 68.296 23.106 68.182 23.184 68.126 23.378 68.014 23.553 67.946 23.689 67.799 23.495 67.731 23.514 67.719 23.514 67.605 23.553 67.491 23.436 67.457 23.631 67.366 23.825 67.228 23.592 67.182 23.592 66.814 24.038 66.697 23.922 66.570 23.903 66.465 23.689 66.395 23.708 66.267 23.708 66.162 23.922 65.845 24.174 65.821 24.174 65.810 24.194 65.810 23.786 65.763 23.378 65.833 23.203 65.716 23.339 65.716 23.145 65.774 22.951 65.880 22.757 65.751 22.738 65.810 22.349 65.632 22.427 65.561 22.233 65.585 22.097 65.526 21.903 65.408 22.038 65.396 21.805 65.420 21.611 65.325 21.534 65.313 21.747 65.193 21.611 65.063 21.611 65.003 21.437 64.871 21.262 64.859 21.067 64.787 21.281 64.655 21.320 64.703 21.184 64.595 21.398 64.534 21.592 64.402 21.534 64.208 21.145 64.087 20.990 63.831 20.776 63.770 20.563 63.770 20.369 63.648 20.194 63.538 19.805 63.526 19.611 63.465 19.417 63.465 19.320 63.341 19.301 63.255 19.087 63.292 18.893 63.230 18.951 63.243 18.738 63.119 18.640 63.058 18.446 62.933 18.485 62.809 18.097 62.908 17.942 63.095 17.786 62.959 17.786 62.896 17.903 62.710 18.019 62.586 17.942 62.511 17.747 62.461 17.553 62.536 17.456 62.311 17.417 62.249 17.611 61.884 17.398 61.745 17.398 61.720 17.204 61.593 17.262 61.529 17.184 61.390 17.126 61.276 17.204 61.084 17.204 60.956 17.165 60.816 17.262 60.687 17.204 60.648 17.476 60.546 17.670 60.584 17.883 60.377 18.271 60.339 18.485 60.210 18.505 60.132 18.582 60.132 18.699 60.002 18.893 59.846 19.009 59.715 18.971 59.676 18.796 59.598 18.718 59.520 18.524 59.375 18.349 59.442 18.155 59.310 18.174 59.362 18.369 59.375 18.563 59.244 18.621 59.205 18.543 59.270 18.349 59.139 18.446 59.113 18.252 58.954 17.980 58.809 17.844 59.087 17.689 58.954 17.611 58.901 17.670 58.770 17.514 58.717 17.320 58.756 17.126 58.610 17.009 58.637 16.621 58.583 16.408 58.624 16.602 58.570 16.815 58.438 16.873 58.438 16.660 58.477 16.447 58.385 16.757 57.984 16.699 57.877 16.776 57.903 16.524 57.783 16.679 57.392 16.660 57.257 16.504 57.149 16.524 57.107 16.582 56.985 16.466 56.958 16.485 56.686 16.408 56.467 16.174 56.221 16.038 56.070 15.883 56.193 15.689 56.207 15.611 56.138 15.417 56.166 15.009 56.152 14.718 56.000 14.757 56.042 14.563 55.931 14.369 55.835 14.252 55.697 14.252 55.558 14.408 55.406 14.252 55.420 13.806 55.336 13.398 55.364 13.184 55.475 12.990 55.613 13.009 55.752 12.932 56.042 12.718 56.125 12.621 56.275 12.621 56.221 12.815 56.481 12.738 56.453 12.932 56.550 12.971 56.659 12.893 56.700 12.718 56.836 12.602 56.890 12.524 56.890 12.485 57.026 12.349 57.162 12.252 57.446 12.136 57.446 11.942 57.581 11.961 57.675 11.883 57.809 11.883 57.836 11.728 58.037 11.864 58.185 11.883 58.225 11.844 58.238 11.864 58.238 11.825 58.318 11.767 58.291 11.553 58.424 11.611 58.291 11.476 58.424 11.340 58.690 11.262 58.836 11.281 58.967 11.165 59.100 11.242 59.165 11.145 59.218 10.951 59.231 10.777 59.362 10.718 59.494 10.738 59.702 10.641 59.833 10.815 59.911 10.680 59.807 10.524 59.702 10.563 59.572 10.660 59.611 10.466 59.533 10.330 59.402 10.524 59.257 10.427 59.126 10.272 59.047 10.058 58.967 10.000 59.034 9.864 59.074 9.708 59.126 9.650 59.047 9.708 58.967 9.708 58.915 9.514 58.770 9.417 58.424 8.757 58.305 8.621 58.172 8.233 58.158 8.077 58.104 8.039 58.010 7.650 58.010 7.514 58.037 7.262 58.104 7.048 58.077 6.660 58.212 6.757 58.291 6.951 58.251 6.835 58.278 6.408 58.318 6.349 58.358 6.155 58.464 5.942 58.531 5.748 58.664 5.573 58.743 5.515 58.888 5.631 59.020 5.689 58.928 5.883 58.901 6.077 58.862 6.194 59.007 6.311 59.047 6.524 59.020 6.311 58.915 6.097 58.994 6.039 59.126 6.000 59.244 6.194 59.323 6.408 59.270 6.194 59.336 6.291 59.388 6.097 59.428 6.175 59.520 6.330 59.572 6.544 59.637 6.330 59.494 6.252 59.428 6.175 59.455 5.980 59.481 6.175 59.468 5.767 59.336 5.864 59.283 5.670 59.428 5.631 59.283 5.495 59.375 5.340 59.494 5.320 59.624 5.359 59.650 5.553 59.507 5.417 59.559 5.612 59.676 5.650 59.611 5.845 59.741 5.961 59.741 6.116 59.846 6.330 59.768 6.116 59.781 5.922 59.833 5.748 59.924 5.825 59.989 6.019 60.002 6.000 60.107 6.213 60.249 6.233 60.365 6.427 60.429 6.621 60.300 6.641 60.171 6.602 60.429 6.796 60.481 6.990 60.456 6.563 60.403 6.369 60.274 6.213 60.223 6.019 60.002 5.903 60.002 5.786 60.210 5.825 60.184 5.631 60.313 5.650 60.171 5.456 60.262 5.262 60.390 5.223 60.520 5.398 60.443 5.592 60.456 5.612 ; #733 -4 59.494 6.252 59.637 6.330 59.572 6.544 59.520 6.330 59.428 6.175 ; #734 -4 62.122 7.262 62.097 7.048 62.160 7.048 ; #735 -4 62.996 7.514 62.971 7.514 62.971 7.456 ; #736 4 56.795 8.874 56.944 8.854 56.877 8.660 56.673 8.660 ; #737 4 54.932 10.058 55.002 9.980 55.030 9.903 55.044 9.708 55.002 9.786 54.904 9.806 54.862 10.000 ; #738 4 55.044 10.427 55.058 10.621 55.099 10.777 55.155 10.815 55.336 10.815 55.613 10.621 55.516 10.621 55.447 10.427 55.586 10.408 55.599 10.213 55.516 9.942 55.516 9.728 55.127 10.000 55.197 10.000 ; #739 4 54.904 10.427 54.946 10.213 54.820 10.408 ; #740 4 54.932 10.718 54.862 10.815 55.002 10.913 55.141 10.913 55.002 10.815 ; #741 4 54.862 11.747 54.848 11.456 54.960 11.262 54.932 11.068 54.792 10.990 54.624 11.476 54.666 11.670 54.764 11.864 54.722 11.922 54.582 11.942 54.610 11.980 54.889 12.116 55.002 11.922 54.988 12.175 55.169 12.039 55.238 12.233 55.267 12.427 55.544 12.252 55.642 12.524 55.725 12.602 56.000 12.582 56.028 12.621 56.097 12.427 56.111 12.233 56.028 12.019 55.780 12.077 55.725 11.980 55.862 12.000 55.656 11.786 55.794 11.670 55.945 11.767 55.973 11.301 55.835 11.495 55.738 11.301 55.725 10.893 55.627 11.087 55.489 11.184 55.336 11.106 55.350 11.184 55.197 11.320 55.197 11.747 55.058 11.689 55.002 11.883 54.876 11.767 54.764 11.864 ; #742 4 54.497 11.242 54.413 11.106 54.413 11.242 ; #743 4 55.002 12.543 55.016 12.485 54.988 12.194 54.946 12.311 54.946 12.505 ; #744 4 54.258 13.301 54.328 13.495 54.314 13.631 54.371 13.728 54.582 13.670 54.568 13.475 54.596 13.281 54.554 13.281 54.469 13.475 54.469 13.281 54.328 13.126 ; #745 4 55.002 15.087 55.044 15.107 55.183 15.009 55.224 14.893 55.197 14.699 55.044 14.815 55.002 15.029 ; #746 4 56.275 16.427 56.412 16.602 56.550 16.660 56.822 16.873 56.972 16.912 57.244 17.107 56.822 16.621 56.536 16.427 56.440 16.427 ; #747 4 57.094 18.388 57.189 18.582 57.325 18.738 57.460 18.815 57.729 18.815 57.783 19.009 57.917 19.009 57.836 18.815 57.836 18.621 57.742 18.427 57.595 18.233 57.460 18.136 57.325 18.194 57.189 18.174 57.053 18.310 56.904 18.174 56.999 18.388 ; #748 3 60.210 20.077 60.210 20.271 60.352 20.213 60.390 19.844 60.262 19.903 60.249 19.708 60.107 19.903 60.107 20.019 60.145 20.058 60.287 20.019 ; #749 3 60.002 20.252 60.080 20.252 60.080 20.019 60.002 20.136 60.002 20.194 ; #750 3 63.230 21.339 63.292 21.145 63.169 21.281 ; #751 3 60.546 21.378 60.546 21.534 60.584 21.398 ; #752 3 58.050 22.233 58.185 22.291 58.238 22.485 58.225 22.679 58.385 23.087 58.438 23.281 58.544 23.126 58.610 22.932 58.583 22.718 58.610 22.524 58.570 22.330 58.491 22.136 58.517 21.941 58.385 22.000 58.251 21.903 58.172 22.097 57.903 22.038 ; #753 3 58.967 22.466 58.928 22.058 58.822 22.466 58.690 22.621 58.862 23.029 59.007 22.854 59.087 22.660 ; #754 3 60.300 22.388 60.313 22.174 60.262 22.271 60.236 22.252 60.197 22.310 60.262 22.271 ; #755 3 60.390 22.446 60.365 22.427 60.390 22.485 ; #756 3 63.806 22.738 63.770 22.951 63.843 22.932 ; #757 3 59.924 23.029 60.002 23.126 60.002 22.854 ; #758 3 58.557 23.165 58.531 23.378 58.677 23.262 ; #759 3 58.967 23.203 59.007 23.398 59.047 23.203 ; #760 3 65.050 25.009 65.074 24.796 65.027 24.582 64.955 24.698 65.027 25.009 ; #761 4 63.107 7.883 63.021 7.825 63.045 7.883 ; #762 4 63.402 8.233 63.465 8.039 63.329 8.039 63.365 8.233 ; #763 4 63.427 8.563 63.489 8.971 63.599 9.165 63.624 8.951 63.562 8.757 63.562 8.563 63.477 8.369 ; #764 4 63.745 8.679 63.697 8.485 63.672 8.699 63.745 8.893 ; #765 4 78.351 11.980 78.440 11.903 78.458 11.689 78.573 11.281 78.661 11.165 78.750 11.165 78.838 10.990 78.882 10.796 78.846 10.582 78.750 10.602 78.680 10.796 78.502 11.029 78.440 11.223 78.422 11.437 78.315 11.825 78.226 11.961 78.235 12.155 78.324 12.039 ; #766 4 78.732 11.476 78.653 11.670 78.591 11.883 78.582 12.097 78.537 12.311 78.520 12.505 78.520 12.951 78.475 12.116 78.395 12.311 78.351 12.524 78.289 12.718 78.199 12.854 78.208 13.068 78.190 13.475 78.243 13.689 78.226 13.903 78.280 14.097 78.378 14.116 78.360 14.311 78.449 14.446 78.485 14.233 78.582 14.408 78.670 14.291 78.706 14.504 78.706 14.699 78.618 14.718 78.626 14.912 78.723 15.087 78.812 15.165 78.812 15.378 78.714 15.398 78.626 15.320 78.573 15.126 78.485 15.223 78.449 15.417 78.475 15.844 78.565 16.233 78.653 16.330 78.688 16.544 78.591 16.582 78.520 16.388 78.431 16.408 78.395 16.621 78.386 16.835 78.414 17.029 78.414 17.223 78.342 16.835 78.324 16.621 78.351 16.000 78.334 15.786 78.306 15.573 78.217 15.534 78.235 15.320 78.101 14.718 78.083 14.291 78.092 14.097 78.002 14.097 78.065 13.883 78.083 13.689 78.002 13.495 77.911 13.475 77.813 13.611 77.722 13.631 77.722 13.844 77.776 14.058 77.749 14.252 77.776 14.446 77.785 14.835 77.804 15.048 77.858 15.242 77.876 15.456 77.831 15.650 77.831 15.864 77.849 16.058 77.849 16.485 77.902 16.679 77.920 16.893 77.822 16.796 77.776 16.990 77.804 16.776 77.749 15.747 77.713 15.126 77.686 14.932 77.632 14.718 77.567 15.767 77.494 15.980 77.468 16.174 77.458 15.980 77.513 15.786 77.531 15.573 77.522 15.359 77.549 14.951 77.540 14.757 77.486 14.582 77.576 14.369 77.576 14.155 77.558 13.961 77.513 13.747 77.422 13.806 77.229 14.175 77.165 14.369 77.174 14.582 77.137 14.796 77.055 15.009 77.008 15.204 76.999 15.611 77.064 15.806 77.018 16.019 76.981 16.447 76.935 16.233 76.972 16.019 76.953 15.825 76.926 15.611 76.870 15.417 76.833 15.611 76.767 15.806 76.730 16.019 76.656 16.213 76.563 16.233 76.600 16.427 76.563 16.621 76.582 16.815 76.656 17.029 76.749 17.048 76.795 16.854 76.953 17.242 77.055 17.068 77.064 17.281 77.247 17.456 77.349 17.514 77.440 17.650 77.504 17.844 77.494 18.038 77.567 18.252 77.758 18.407 77.938 18.369 78.037 18.427 78.037 18.854 78.092 19.048 78.181 18.893 78.271 18.932 78.360 19.029 78.458 18.932 78.485 19.359 78.573 19.553 78.618 19.767 78.599 19.980 78.644 20.330 78.626 20.543 78.688 20.757 78.653 20.951 78.670 21.378 78.759 21.534 78.855 21.437 78.926 20.621 78.996 20.194 79.013 19.980 79.153 19.747 79.179 19.320 79.144 19.126 79.161 18.912 79.249 18.796 79.257 18.563 79.275 18.757 79.362 18.815 79.457 18.796 79.543 18.660 79.629 18.252 79.569 18.038 79.482 17.961 79.387 17.786 79.370 17.572 79.466 17.708 79.552 17.572 79.672 17.961 79.758 17.922 79.886 17.514 79.946 17.107 79.955 16.912 79.869 16.835 79.912 16.621 79.997 16.524 80.049 16.349 80.049 16.233 79.963 16.155 79.955 16.136 79.861 16.213 79.878 16.000 79.809 15.806 79.543 16.038 79.362 16.136 79.004 16.563 78.917 16.544 78.987 16.349 79.075 16.272 79.153 16.077 79.179 15.883 79.267 15.844 79.344 15.650 79.517 15.475 79.603 15.437 79.750 15.029 79.792 14.835 79.792 14.621 79.697 14.427 79.612 14.388 79.612 14.194 79.543 13.980 79.362 14.233 79.267 14.194 79.301 13.980 79.396 13.980 79.449 13.767 79.439 13.573 79.500 13.359 79.586 13.475 79.595 13.281 79.569 12.874 79.586 12.641 79.689 13.242 79.707 13.456 79.697 13.670 79.715 13.864 79.766 14.058 79.861 14.000 79.869 13.806 79.843 13.398 79.775 12.757 79.784 12.543 79.835 12.330 79.750 12.213 79.664 12.349 79.664 12.155 79.750 11.961 79.843 11.825 79.775 11.417 79.724 11.223 79.638 11.340 79.638 11.145 79.586 10.913 79.552 11.126 79.560 10.932 79.517 10.699 79.466 10.913 79.370 10.913 79.196 11.184 79.101 11.281 79.127 11.495 79.214 11.689 79.301 11.709 79.292 12.116 79.205 12.077 79.144 11.864 79.048 11.806 78.970 12.019 78.908 12.252 78.908 12.000 78.943 11.806 78.996 11.301 78.978 11.106 78.917 11.301 78.838 11.689 78.829 11.495 ; #767 4 79.750 10.971 79.741 10.757 79.732 10.990 ; #768 4 64.847 11.165 64.931 11.378 64.967 11.184 64.955 10.990 64.871 10.796 64.967 11.184 64.895 10.971 ; #769 4 65.585 11.961 65.704 12.039 65.644 11.825 ; #770 4 66.104 12.466 66.091 12.680 66.162 12.680 ; #771 4 65.974 12.815 66.033 12.699 65.927 12.485 65.904 12.621 ; #772 4 67.889 12.913 67.901 13.106 68.014 13.223 68.036 13.029 68.014 13.009 ; #773 4 68.137 13.534 68.115 13.320 68.025 13.262 68.036 13.456 68.092 13.475 ; #774 4 68.171 13.650 68.115 13.864 68.261 14.213 68.283 13.825 68.272 13.611 68.239 13.709 ; #775 4 67.090 14.058 67.067 14.272 67.182 14.349 67.159 14.155 ; #776 4 68.272 14.252 68.272 14.291 68.329 14.291 ; #777 4 68.475 15.204 68.430 14.640 68.250 14.330 68.216 14.543 68.283 14.738 68.340 15.009 ; #778 4 68.699 15.204 68.675 15.009 68.586 14.932 68.620 15.204 68.675 15.437 68.699 15.456 68.832 15.417 68.931 15.223 68.821 15.184 68.865 15.009 68.787 14.932 68.832 14.738 68.732 14.524 68.620 14.602 68.732 15.009 ; #779 4 68.564 15.009 68.575 14.912 68.497 14.776 68.542 15.009 ; #780 4 67.957 15.204 67.957 15.009 67.923 15.009 ; #781 4 68.954 15.728 68.854 15.611 68.732 15.592 68.710 15.475 68.620 15.456 68.586 15.262 68.464 15.417 68.430 15.223 68.318 15.184 68.464 15.592 68.340 15.514 68.329 15.728 68.441 15.864 68.441 16.058 68.553 16.155 68.564 16.563 68.642 16.621 68.754 16.621 68.865 16.447 68.865 16.252 68.754 16.291 68.710 16.097 68.620 15.883 68.699 16.019 68.810 15.942 68.965 15.942 ; #782 4 69.274 16.019 69.164 15.844 69.120 15.650 69.010 15.534 68.898 15.475 68.998 15.670 68.976 15.728 69.043 15.922 69.142 16.116 69.263 16.213 ; #783 4 68.419 16.369 68.531 16.485 68.531 16.272 68.464 16.174 ; #784 4 68.954 16.544 68.943 16.349 68.887 16.563 ; #785 4 69.197 17.262 69.109 16.854 69.021 17.262 69.131 17.378 69.197 17.572 69.164 17.786 69.175 18.000 69.241 18.000 69.352 18.116 69.461 18.077 69.450 17.883 69.571 17.922 69.604 17.514 69.494 17.631 69.527 17.417 69.494 17.223 69.439 17.456 69.396 17.359 69.396 17.126 69.374 16.912 69.363 17.126 69.286 17.048 ; #786 4 68.776 17.242 68.843 17.048 68.732 16.951 68.743 17.145 ; #787 4 68.810 17.398 68.931 17.184 68.876 17.165 ; #788 4 80.175 19.262 80.167 19.476 80.082 19.281 80.175 18.893 80.201 18.660 80.175 18.019 80.150 17.806 80.091 18.213 80.039 18.427 80.023 18.640 80.031 18.835 79.997 18.757 79.997 18.602 79.946 18.388 79.920 18.194 79.835 18.271 79.784 18.466 79.766 18.679 79.732 18.873 79.732 19.320 79.707 19.514 79.741 19.980 79.792 20.407 79.817 21.048 79.835 21.689 79.766 21.922 79.792 22.116 79.792 22.330 79.758 22.116 79.750 21.922 79.707 21.708 79.715 21.048 79.681 20.640 79.603 20.835 79.586 21.048 79.586 20.407 79.638 20.213 79.638 19.980 79.629 19.767 79.543 19.689 79.509 19.980 79.466 20.194 79.449 20.602 79.370 21.009 79.396 21.437 79.370 21.631 79.370 21.844 79.405 22.233 79.396 22.699 79.309 22.640 79.240 22.835 79.205 23.048 79.179 23.475 79.179 23.903 79.196 24.116 79.292 24.252 79.379 24.873 79.327 25.087 79.405 25.708 79.492 25.903 79.578 25.903 79.655 26.097 79.724 26.505 79.827 26.893 79.843 27.106 79.938 27.184 79.997 27.145 80.091 27.242 80.108 27.029 80.167 26.815 80.184 26.602 80.184 25.980 80.167 25.767 80.235 25.572 80.226 25.359 80.260 25.145 80.260 24.912 80.345 24.854 80.277 24.640 80.353 24.427 80.370 24.213 80.277 24.233 80.303 24.000 80.294 23.805 80.209 23.747 80.125 23.553 80.167 23.126 80.251 23.087 80.277 23.300 80.370 23.223 80.454 23.262 80.496 22.854 80.327 22.738 80.420 22.679 80.428 22.466 80.336 22.369 80.294 22.582 80.125 22.388 80.039 22.427 79.997 22.349 79.997 22.213 80.082 22.097 80.125 21.903 80.125 21.689 80.218 21.883 80.277 21.689 80.209 20.835 80.294 20.796 80.294 20.582 80.378 20.427 80.420 20.213 80.496 19.611 80.412 19.437 80.378 19.864 80.294 19.786 80.218 19.592 80.303 19.378 80.336 19.184 80.345 18.971 80.260 19.068 ; #789 4 80.243 18.485 80.311 18.679 80.345 18.485 80.361 18.271 80.277 18.194 80.235 18.407 ; #790 4 69.713 18.951 69.823 19.029 69.801 18.835 69.691 18.796 69.779 18.582 69.713 18.388 69.691 18.602 69.626 18.407 69.527 18.213 69.571 18.815 69.680 18.873 ; #791 4 69.996 18.776 70.127 18.971 70.116 18.776 69.996 18.738 ; #792 4 74.385 19.165 74.483 19.262 74.513 19.048 74.425 18.835 74.345 19.029 ; #793 4 69.996 19.417 70.105 19.281 70.019 18.873 69.996 18.854 69.888 18.912 69.812 19.107 69.812 19.320 69.996 19.728 69.996 19.611 ; #794 4 70.224 19.786 70.257 19.592 70.148 19.728 70.051 19.941 70.062 19.980 70.148 19.980 ; #795 4 69.975 19.747 69.855 19.631 69.888 19.825 69.996 19.922 69.996 19.805 ; #796 4 79.379 19.980 79.336 19.767 79.353 19.980 ; #797 4 79.013 20.524 79.083 20.718 79.109 20.524 79.109 20.116 79.022 20.116 78.987 20.330 ; #798 4 78.422 20.524 78.334 20.505 78.297 20.699 78.208 20.660 78.217 20.874 78.199 21.087 78.226 21.281 78.253 21.689 78.243 22.097 78.334 22.213 78.431 22.194 78.520 22.136 78.599 21.708 78.565 21.495 78.618 21.281 78.546 20.874 78.493 20.252 78.466 20.116 ; #799 4 70.040 20.582 70.116 20.796 70.224 20.835 70.234 20.621 70.148 20.407 ; #800 4 80.663 20.738 80.655 20.505 80.621 20.718 ; #801 4 80.714 20.815 80.730 20.621 80.671 20.815 ; #802 4 70.019 20.776 69.996 20.815 69.964 21.009 69.996 21.126 ; #803 4 77.440 21.048 77.449 21.262 77.477 21.475 77.494 22.077 77.549 22.291 77.567 22.485 77.549 22.699 77.449 22.524 77.266 22.407 77.257 22.621 77.275 22.815 77.367 23.029 77.395 23.242 77.385 23.436 77.431 23.631 77.486 23.825 77.668 24.174 77.722 24.602 77.731 24.815 77.822 24.602 77.867 24.388 77.885 24.194 77.858 23.980 77.858 23.786 77.885 23.592 77.948 23.378 77.975 23.184 78.065 23.087 78.101 23.281 78.190 23.359 78.226 23.165 78.243 22.951 78.226 22.543 78.199 22.330 78.208 21.903 78.190 21.475 78.101 20.874 78.029 21.067 77.948 21.495 77.858 21.553 77.767 21.359 77.677 21.242 77.585 21.029 77.540 20.835 77.458 20.854 ; #804 4 80.479 24.038 80.496 24.252 80.504 24.038 ; #805 4 76.516 25.145 76.600 25.359 76.702 25.456 76.600 25.281 76.526 25.067 76.432 24.990 ; #806 4 78.714 26.834 78.803 26.621 78.785 26.407 78.688 26.543 78.626 26.737 ; #807 4 78.882 28.465 78.908 28.893 78.864 29.087 78.846 29.301 78.899 29.728 78.899 29.106 78.952 28.893 78.952 28.485 78.882 28.077 78.829 27.883 78.812 28.096 ; #808 4 80.091 32.232 80.133 32.854 80.167 33.068 80.175 33.261 80.235 33.475 80.235 33.242 80.192 32.834 80.125 31.805 80.065 31.592 ; #809 -4 62.996 7.514 63.058 7.650 62.971 7.650 62.971 7.514 ; #810 -4 63.279 8.349 63.169 8.544 63.218 8.349 ; #811 -4 56.809 8.252 56.944 8.388 57.080 8.582 57.121 8.660 57.107 8.854 57.149 9.048 57.134 9.243 57.162 9.456 57.284 9.650 57.433 9.767 57.595 10.000 57.595 10.213 57.742 10.602 57.608 10.446 57.473 10.524 57.230 10.544 57.094 10.408 56.999 10.213 57.094 10.019 57.080 10.000 57.053 9.942 57.067 9.747 56.999 9.301 57.053 9.126 57.026 9.107 56.958 8.718 56.673 8.427 ; #812 -4 62.710 8.582 62.685 8.582 62.722 8.524 ; #813 -4 57.067 9.747 57.053 9.942 56.999 9.301 ; #814 -4 56.659 10.000 56.645 9.883 56.713 10.136 ; #815 -4 64.967 11.184 64.931 11.378 64.847 11.165 64.895 10.971 ; #816 -4 64.967 11.184 64.871 10.796 64.955 10.990 ; #817 -4 58.238 11.825 58.225 11.844 58.104 11.709 58.185 11.514 58.251 11.709 ; #818 -4 58.238 11.864 58.225 11.844 58.238 11.825 ; #819 -4 66.174 13.786 66.151 13.864 66.174 13.767 ; #820 -4 53.876 14.058 53.862 14.233 53.806 14.349 53.862 14.427 53.876 14.369 53.848 14.640 53.705 14.543 53.592 14.602 53.677 14.408 53.691 14.291 53.820 13.883 53.848 13.844 ; #821 -4 54.046 13.806 54.130 13.844 54.046 14.000 ; #822 -4 68.036 15.825 67.991 15.670 68.036 15.670 ; #823 -4 67.855 16.504 67.889 16.310 67.912 16.291 ; #824 -3 -28.460 16.679 -28.389 16.776 -28.209 16.854 -28.066 16.990 -28.102 17.184 -28.156 17.204 -28.317 17.378 -28.496 17.340 -28.710 17.456 -28.782 17.670 -28.782 17.883 -28.871 18.077 -28.889 18.466 -28.854 18.660 -28.854 18.835 -28.925 19.029 -28.925 19.223 -28.907 19.301 -28.728 19.320 -28.710 19.476 -28.531 19.573 -28.496 19.805 -28.425 20.000 -26.751 20.000 -26.008 20.019 -23.874 20.019 -23.303 20.000 -22.308 20.000 -21.993 20.019 -21.993 21.009 -18.320 21.009 -18.301 21.475 -18.245 21.767 -18.245 21.786 -18.019 23.009 -18.000 23.300 -18.131 23.378 -18.301 23.534 -18.488 23.631 -18.264 23.903 -18.170 23.980 -17.963 24.369 -18.056 24.543 -17.906 24.737 -17.850 24.815 -17.831 25.009 -17.812 25.281 -17.586 25.009 -17.567 24.990 -17.511 24.796 -17.492 24.310 -17.473 24.252 -17.624 23.495 -17.492 23.223 -16.586 22.271 -16.170 22.019 -14.995 22.019 -13.700 22.000 -13.052 22.000 -12.995 22.252 -12.995 23.941 -12.804 23.903 -12.651 23.941 -12.460 24.019 -12.268 24.038 -12.211 24.000 -11.694 24.000 -11.502 24.038 -11.138 24.038 -11.119 24.019 -10.870 24.000 -11.004 23.805 -10.985 23.592 -10.966 23.398 -11.081 23.203 -11.100 23.106 -11.062 22.912 -11.100 22.718 -11.043 22.582 -11.138 22.485 -11.254 22.252 -11.234 22.252 -10.850 22.174 -10.793 22.271 -10.697 22.330 -10.678 22.330 -10.620 22.310 -10.428 22.310 -10.159 22.213 -10.005 22.194 -9.678 21.903 -9.486 21.844 -9.177 21.864 -9.120 21.844 -8.966 21.864 -8.426 21.941 -8.330 21.922 -7.944 21.767 -7.867 21.786 -7.655 21.844 -7.442 21.864 -7.287 21.786 -7.287 20.543 -7.114 20.563 -6.920 20.640 -6.920 20.407 -6.998 20.213 -6.998 19.980 -6.785 19.903 -6.592 19.747 -6.186 19.689 -6.069 19.805 -5.973 20.019 -5.838 20.116 -5.644 20.194 -5.393 20.155 -5.198 20.194 -5.005 20.155 -4.715 20.058 -4.521 20.116 -4.307 20.038 -4.288 20.058 -4.269 20.116 -4.385 20.310 -4.288 20.407 -4.288 20.446 -4.269 20.485 -4.153 20.679 -3.435 20.660 -3.028 20.757 -2.834 20.854 -2.698 20.971 -2.485 21.009 -2.504 21.281 -2.329 21.475 -2.524 21.844 -2.485 21.903 -2.388 22.038 -2.329 22.271 -1.922 22.174 -1.961 22.427 -1.805 22.640 -1.961 22.951 -1.922 23.068 -2.058 23.281 -1.922 23.767 -1.767 23.961 -1.786 24.427 -1.534 24.388 -1.398 24.213 -1.340 24.019 -0.873 23.417 -0.738 23.436 -0.641 23.631 -0.447 23.456 -0.388 23.009 -0.194 23.417 0.000 23.281 0.408 22.990 0.563 22.951 0.680 22.874 1.126 22.757 1.320 22.660 1.476 22.446 1.495 22.310 1.495 22.291 1.709 22.485 1.902 22.524 2.038 22.602 2.096 22.582 2.038 22.718 2.019 22.776 2.174 22.990 2.135 23.203 2.174 23.242 2.232 23.436 2.174 23.631 2.388 23.572 2.524 23.359 2.524 23.320 2.504 23.126 2.698 22.990 3.106 23.087 3.028 22.893 3.086 22.796 3.494 22.796 3.532 23.009 3.668 23.203 3.629 23.398 3.668 23.417 3.823 23.534 3.823 23.359 3.862 23.242 3.862 22.854 4.114 22.563 4.133 22.466 4.153 22.466 4.346 22.602 4.462 22.602 4.618 22.738 4.715 22.854 4.734 23.165 4.599 23.359 4.695 23.534 4.831 23.903 4.947 24.252 5.005 24.310 5.005 24.330 5.102 24.485 5.005 24.621 4.928 24.815 4.986 25.009 5.005 25.126 5.005 25.203 5.315 25.398 5.373 25.592 5.296 25.669 5.218 25.883 5.218 26.155 5.179 26.252 5.082 26.466 5.063 26.640 5.044 26.834 5.160 27.009 5.160 27.203 5.082 27.398 5.024 27.436 5.005 27.475 5.218 27.320 5.393 27.262 5.586 27.281 5.799 27.126 5.896 26.912 5.973 26.815 5.992 26.776 6.031 26.563 6.225 26.485 6.457 26.310 6.631 26.407 6.747 26.213 6.959 26.058 7.152 25.786 7.345 25.378 7.539 25.203 7.674 25.301 7.867 25.243 7.944 25.029 7.983 25.009 8.176 24.873 8.272 24.466 8.272 24.272 8.311 24.194 8.696 24.194 8.715 23.980 8.715 23.708 8.773 23.514 8.985 23.495 9.120 23.475 9.197 23.592 9.409 23.669 9.793 23.689 10.005 23.592 10.466 23.300 10.831 22.932 10.928 22.893 11.311 22.971 11.406 22.854 11.502 22.660 11.694 22.563 11.790 22.582 11.982 22.621 12.039 22.485 12.230 22.485 12.498 22.427 12.689 22.310 12.651 22.116 12.670 21.903 12.804 21.844 12.995 21.922 13.186 22.155 13.377 22.310 13.454 22.252 13.643 22.155 13.834 22.155 13.929 22.213 14.043 22.407 14.234 22.563 14.234 22.505 14.424 22.466 14.634 22.505 14.672 22.640 14.710 22.699 14.995 22.776 15.033 22.815 15.109 22.951 15.298 23.009 15.526 22.932 15.716 23.126 15.678 23.398 15.754 23.611 15.754 23.805 15.697 24.019 20.005 24.019 20.005 25.009 29.175 25.009 29.567 24.893 29.602 24.893 29.745 24.854 29.798 24.815 29.993 24.796 30.188 24.718 30.365 24.815 30.453 24.912 30.736 25.009 30.825 25.009 31.001 24.932 31.317 24.873 31.475 25.009 31.582 25.087 31.652 25.165 31.582 25.184 31.511 25.262 31.511 25.475 31.617 25.864 31.599 26.058 31.370 27.262 31.230 27.456 31.177 27.650 31.230 27.844 31.089 28.038 31.071 28.427 30.930 28.834 30.825 29.048 30.842 29.223 31.001 29.611 31.335 30.077 31.247 30.174 31.230 30.310 31.265 30.194 31.475 30.427 31.475 30.621 31.528 30.815 31.370 30.601 31.440 30.796 31.423 30.912 31.546 31.106 31.582 31.009 31.582 31.203 31.440 31.572 31.528 31.844 31.528 31.922 31.353 32.097 31.405 31.902 31.282 31.805 31.177 32.058 31.124 32.058 31.054 32.116 31.089 32.116 31.071 32.155 31.106 32.271 31.230 32.310 31.159 32.465 31.054 32.601 31.124 32.893 31.036 32.776 31.089 32.893 31.054 33.009 31.106 33.009 31.036 33.145 31.106 33.378 31.159 33.417 31.106 33.611 31.142 33.805 31.247 34.116 31.317 34.232 31.599 34.504 31.827 34.660 32.300 34.854 32.648 34.932 32.823 35.009 32.893 35.087 33.084 35.106 33.222 35.223 33.274 35.203 33.587 35.397 33.863 35.495 33.951 35.611 34.261 35.669 34.398 35.786 34.519 35.980 34.640 35.980 34.948 35.883 35.171 35.941 35.428 35.922 35.599 35.786 35.769 35.844 35.991 35.999 36.212 35.863 36.381 35.883 36.534 36.077 36.703 36.213 36.873 36.116 36.873 35.941 36.754 35.747 36.703 35.592 36.585 35.572 36.568 35.417 36.602 35.223 36.703 35.029 36.720 34.912 36.771 34.873 36.805 34.679 36.602 34.330 36.432 34.135 36.297 34.058 36.280 33.863 36.195 33.650 36.093 33.009 36.025 32.815 36.076 32.621 36.178 32.388 36.415 32.174 36.551 31.980 36.653 31.650 36.822 31.262 36.839 31.106 36.873 30.737 36.703 30.582 36.517 30.582 36.195 30.407 36.297 30.213 36.161 29.825 36.229 29.417 36.330 29.165 36.381 29.106 36.534 29.029 36.720 28.990 36.670 28.796 36.703 28.737 36.686 28.679 36.703 28.621 36.805 28.621 36.856 28.427 36.720 28.310 36.551 28.038 36.568 27.980 36.619 28.077 36.788 28.136 36.737 27.941 36.754 27.786 36.653 27.689 36.653 27.417 36.670 27.378 36.703 27.378 36.754 27.572 36.805 27.825 36.788 28.019 36.940 28.213 37.025 28.019 36.957 27.281 37.126 27.281 37.075 27.475 37.244 27.631 37.244 27.534 37.361 27.398 37.344 27.203 37.547 27.184 37.648 27.009 37.681 27.048 37.698 27.184 37.949 27.281 38.066 26.951 38.200 26.757 38.100 26.602 38.267 26.252 38.334 26.446 38.400 26.485 38.567 26.369 38.667 26.388 38.667 26.485 38.501 26.640 38.334 26.660 38.300 26.698 38.400 27.087 38.451 27.126 38.467 26.912 38.734 26.737 38.750 26.932 38.917 27.067 38.950 26.815 39.116 26.854 39.266 26.621 39.398 26.815 39.563 26.951 39.563 26.757 39.448 26.136 39.464 26.077 39.646 26.174 39.976 26.174 39.992 26.291 40.156 26.407 40.403 26.796 40.387 26.990 40.436 27.203 40.305 27.534 40.321 27.728 40.485 27.708 40.518 27.903 40.354 27.980 40.403 28.174 40.371 28.912 40.436 29.165 40.469 28.970 40.600 28.912 40.649 29.106 40.714 29.825 40.780 29.630 40.780 29.436 40.812 29.339 40.944 29.106 41.074 29.067 41.221 29.223 41.139 29.864 41.156 30.213 41.188 30.368 41.074 30.854 41.107 31.320 41.286 31.436 41.545 32.019 41.725 32.291 41.886 32.951 42.016 33.339 41.935 34.621 41.967 34.815 42.080 35.009 42.032 35.068 41.870 35.145 41.708 35.320 41.644 35.514 41.708 35.902 41.644 35.922 41.644 36.116 41.480 36.135 41.318 36.330 41.253 36.524 41.351 36.660 41.351 36.854 41.188 37.048 41.139 37.164 41.107 37.359 41.025 37.553 41.123 37.747 41.025 37.825 40.928 38.330 40.944 38.718 41.009 38.854 41.091 39.397 41.025 39.592 40.977 40.019 40.910 40.155 41.091 40.679 41.188 40.873 41.237 41.067 41.367 41.339 41.529 41.553 41.513 41.572 41.464 41.747 41.432 41.844 41.497 41.941 41.497 42.135 41.448 42.524 41.578 42.601 41.578 42.854 41.513 42.795 41.497 42.912 41.400 43.028 41.302 43.223 41.253 43.184 41.237 43.223 41.188 43.242 41.107 43.475 40.977 43.630 40.796 43.747 40.731 43.766 40.682 43.766 40.649 43.747 40.551 43.669 40.403 43.630 40.239 43.708 40.124 43.669 40.058 43.844 40.041 43.883 40.008 44.077 40.025 44.193 40.041 44.271 40.008 44.388 39.992 44.407 39.976 44.485 39.877 44.562 39.712 44.795 39.630 44.834 39.728 44.679 39.696 44.485 39.415 44.407 39.382 44.038 39.182 44.174 39.016 44.174 38.967 44.193 38.850 44.310 38.667 44.271 38.501 44.329 38.417 44.329 38.267 44.407 38.100 44.349 38.049 44.310 37.882 44.271 37.798 44.465 37.715 44.621 37.664 44.582 37.496 44.601 37.429 44.621 37.311 44.815 37.143 44.795 37.177 44.776 37.160 44.601 37.058 44.407 37.075 44.213 37.143 44.232 37.311 44.096 37.261 43.960 37.227 43.786 37.261 43.572 37.327 43.378 37.378 43.164 37.327 42.970 37.378 42.776 37.160 42.601 37.109 42.368 37.058 42.388 36.805 42.096 36.805 42.077 36.585 41.766 36.551 41.572 36.449 41.359 36.280 41.300 36.144 41.281 35.974 41.320 35.735 41.397 35.548 41.339 35.514 41.300 35.154 41.223 35.000 41.223 34.811 41.242 34.794 41.242 34.450 41.028 34.433 41.028 34.398 40.970 34.312 40.795 34.140 40.426 34.123 40.407 34.106 40.349 34.106 40.329 34.071 40.271 34.037 40.213 34.037 40.194 34.020 40.174 33.968 40.058 33.951 40.019 33.812 39.747 33.431 38.931 33.379 38.815 32.735 39.009 32.509 39.087 32.492 39.067 32.474 39.028 32.474 39.009 32.439 39.028 32.404 39.028 32.352 39.242 32.352 39.261 32.248 39.320 32.230 39.320 32.124 39.184 31.984 38.931 31.967 38.893 31.915 38.621 31.880 38.543 31.827 38.271 31.809 38.252 31.757 37.999 31.739 37.980 31.704 37.786 31.564 37.242 31.546 37.223 31.546 37.184 31.528 37.106 31.475 37.048 31.423 37.087 31.212 37.300 31.106 37.417 30.948 37.572 30.860 37.669 30.807 37.708 30.594 37.922 30.506 38.019 30.383 37.766 30.206 37.611 29.993 37.495 29.993 37.417 29.940 37.164 29.887 36.892 29.762 36.679 29.531 36.524 29.353 36.291 29.335 36.291 29.193 36.077 29.228 35.825 29.264 35.553 29.318 35.300 29.353 35.048 29.353 34.970 29.531 35.009 29.549 34.970 29.318 34.757 29.086 34.679 28.728 34.621 28.389 34.465 28.209 34.427 28.048 34.446 27.797 34.252 27.725 34.271 27.779 34.213 27.797 34.097 27.940 33.902 28.120 33.708 28.300 33.572 28.353 33.475 28.531 33.281 28.621 33.223 28.996 33.184 29.318 32.834 29.585 32.699 29.762 32.679 29.993 32.582 29.887 32.485 29.638 32.368 29.496 32.446 29.300 32.621 29.121 32.660 28.979 32.621 28.156 33.261 27.886 33.553 27.653 33.611 27.527 33.572 27.166 33.844 26.986 33.941 26.787 33.961 26.606 34.019 25.863 34.427 25.681 34.582 25.499 34.660 25.008 34.951 24.807 35.009 24.423 35.223 24.057 35.611 24.002 35.747 23.984 35.553 23.799 35.495 23.230 35.572 23.138 35.650 22.936 35.708 22.751 35.863 22.604 36.271 22.419 36.388 22.160 36.776 21.993 36.892 21.623 36.912 21.419 37.009 21.048 37.281 21.141 37.126 20.583 37.242 20.378 37.184 20.191 37.184 19.687 37.281 19.501 37.281 18.920 37.436 18.770 37.514 18.733 37.533 18.695 37.728 18.563 37.922 18.189 38.330 18.000 38.621 17.925 38.524 17.869 38.465 17.661 38.388 17.548 38.271 17.548 38.155 17.473 37.961 17.360 37.728 17.323 37.514 17.228 37.533 17.039 37.436 17.021 37.242 17.058 37.009 16.870 37.028 16.624 36.931 16.435 36.970 16.227 36.951 15.640 36.679 15.450 36.660 15.412 36.601 15.204 36.504 15.147 36.466 15.147 36.446 14.995 36.466 14.291 36.543 14.253 36.563 13.948 36.466 13.758 36.466 13.052 36.174 12.957 36.155 12.708 36.155 12.670 35.728 12.670 35.708 12.537 35.630 12.135 35.378 11.924 35.281 11.828 35.106 11.733 35.068 11.541 35.106 11.331 35.009 11.273 34.970 11.216 34.990 11.196 35.009 11.158 35.009 11.062 34.970 10.870 34.990 10.678 34.796 10.851 34.640 10.774 34.446 10.563 34.310 10.197 34.349 10.005 34.232 9.659 34.116 9.447 34.097 9.197 34.135 8.580 34.135 8.446 33.999 8.388 33.805 8.368 33.786 8.446 33.669 8.465 33.611 8.426 33.223 8.330 33.184 8.137 33.203 8.002 33.048 7.886 33.009 7.790 33.165 7.693 33.650 7.403 34.019 7.229 34.058 7.036 34.232 6.959 34.310 6.882 34.504 6.805 34.524 6.727 34.563 6.612 34.757 6.496 34.815 6.206 34.893 6.012 34.990 5.857 35.009 5.354 35.378 5.412 35.436 5.335 35.825 5.005 35.786 4.831 35.786 4.618 35.961 4.618 35.009 4.599 34.407 4.482 34.271 4.230 33.999 3.745 33.514 3.765 33.417 3.765 33.184 3.862 32.990 3.784 32.796 3.745 32.543 3.687 32.349 3.610 32.213 3.513 32.213 3.571 32.077 3.590 32.058 3.590 32.038 3.784 31.863 3.707 31.708 3.707 31.689 3.687 31.475 3.784 31.281 3.726 31.067 3.552 30.893 3.494 30.873 3.300 30.873 3.145 30.796 2.873 30.893 2.659 30.796 2.466 30.737 2.349 30.932 2.388 30.951 2.349 31.048 2.174 31.281 2.077 31.184 1.573 30.582 1.379 30.446 1.223 30.485 1.145 30.330 1.029 30.232 0.854 30.019 0.854 30.000 0.835 29.980 0.427 29.922 0.058 29.728 0.000 29.747 -0.078 29.728 -0.214 29.708 -0.311 29.689 -0.485 29.670 -0.563 29.689 -0.757 29.630 -0.796 29.650 -1.009 29.572 -1.165 29.592 -1.281 29.611 -1.379 29.611 -1.340 29.747 -1.320 29.844 -1.476 29.922 -1.456 30.019 -1.126 30.349 -1.067 30.388 -1.067 30.485 -1.379 30.640 -1.398 30.699 -1.456 30.757 -1.515 30.757 -1.554 30.776 -1.592 30.815 -1.650 30.834 -1.825 30.834 -1.922 30.815 -1.941 30.815 -1.961 30.834 -2.058 30.893 -2.369 30.796 -2.388 30.796 -2.369 30.776 -2.408 30.582 -2.659 30.446 -2.659 30.543 -2.756 30.446 -2.950 30.485 -2.970 30.854 -3.047 30.815 -3.106 30.834 -3.300 30.718 -3.377 30.640 -3.494 30.543 -3.551 30.465 -3.706 30.407 -3.784 30.407 -3.862 30.310 -4.056 30.194 -4.288 30.019 -4.404 29.786 -4.443 29.786 -4.443 29.670 -3.745 29.339 -3.532 29.339 -3.338 29.281 -3.338 29.223 -3.513 29.165 -4.114 29.106 -4.307 29.048 -4.211 29.262 -4.618 29.126 -4.812 29.106 -5.140 29.145 -5.335 29.203 -5.528 29.339 -5.721 29.359 -5.915 29.203 -6.090 29.223 -6.283 29.359 -6.669 29.495 -7.075 29.825 -7.152 30.019 -7.307 30.155 -7.693 30.232 -7.886 30.310 -8.021 30.504 -8.214 30.582 -8.388 30.465 -8.580 30.543 -8.561 30.737 -8.638 30.893 -8.792 31.087 -8.600 31.184 -8.600 31.378 -8.677 31.495 -8.696 31.572 -8.889 31.670 -8.927 31.747 -8.889 31.805 -9.081 31.999 -9.062 32.097 -9.177 32.504 -9.254 32.543 -9.274 32.737 -9.312 32.776 -9.332 32.776 -9.332 32.796 -9.409 32.951 -9.409 33.029 -9.562 33.417 -9.601 33.611 -9.582 33.766 -9.716 33.922 -10.005 33.980 -10.197 34.097 -10.390 34.271 -10.601 34.194 -10.793 34.232 -11.177 34.232 -11.617 34.330 -12.001 34.097 -12.249 34.038 -12.460 34.194 -12.651 34.213 -12.746 34.291 -13.148 34.349 -13.358 34.330 -13.548 34.427 -13.681 34.621 -14.082 34.563 -14.272 34.699 -14.272 34.757 -14.062 34.873 -14.158 35.009 -14.405 35.242 -14.215 35.223 -13.834 35.106 -13.719 35.009 -13.511 34.873 -13.320 34.796 -13.109 34.815 -12.919 34.757 -12.708 34.834 -12.518 34.737 -12.326 34.718 -12.135 34.776 -11.943 34.912 -11.732 34.970 -11.579 34.970 -11.579 35.417 -11.598 35.456 -11.598 35.611 -11.445 35.805 -11.598 36.174 -11.752 36.563 -11.732 36.601 -11.732 36.640 -11.579 36.834 -11.560 37.028 -11.636 37.087 -11.713 37.281 -11.732 37.475 -11.675 37.514 -11.598 37.708 -11.273 37.980 -11.254 38.116 -11.311 38.310 -11.425 38.504 -11.292 38.640 -11.177 38.931 -11.158 39.126 -11.119 39.339 -10.985 39.533 -10.812 40.019 -10.639 40.213 -10.543 40.388 -10.486 40.446 -10.563 40.524 -11.138 40.504 -11.350 40.368 -11.483 40.465 -11.675 40.446 -11.847 40.524 -12.249 40.504 -12.402 40.582 -12.594 40.562 -12.804 40.621 -12.938 40.426 -13.129 40.582 -13.511 40.543 -13.567 40.621 -13.777 40.601 -13.967 40.659 -14.158 40.562 -14.348 40.659 -14.538 40.679 -14.500 40.834 -14.691 40.854 -15.109 40.621 -15.242 40.698 -15.431 40.601 -15.620 40.426 -16.208 40.019 -16.322 39.786 -16.511 39.728 -16.737 39.339 -16.983 39.009 -17.039 38.873 -17.039 38.679 -17.134 38.543 -17.190 38.349 -17.530 37.592 -17.567 37.514 -17.756 37.203 -17.981 37.028 -17.906 36.834 -18.000 36.912 -18.207 36.854 -18.563 36.485 -18.658 36.446 -18.695 36.252 -18.864 36.271 -18.807 36.116 -18.976 35.922 -19.089 35.728 -19.463 35.397 -19.799 35.009 -19.856 34.854 -19.724 34.737 -19.613 34.543 -19.706 34.679 -19.893 34.718 -20.005 34.776 -20.397 34.660 -20.768 35.009 -20.973 35.126 -21.048 35.106 -21.419 35.145 -21.623 35.261 -22.105 35.359 -22.290 35.320 -22.474 35.417 -22.290 35.397 -22.105 35.514 -22.290 35.553 -22.733 35.514 -22.935 35.630 -23.046 35.553 -23.230 35.495 -23.965 35.359 -23.874 35.553 -24.259 35.417 -24.624 35.087 -24.789 34.699 -25.300 33.223 -25.391 33.145 -25.463 33.009 -25.626 32.815 -25.899 32.679 -25.990 32.485 -26.008 32.563 -26.190 32.699 -26.299 32.854 -26.117 32.970 -26.986 32.873 -27.725 32.640 -28.084 32.582 -28.281 32.504 -28.407 32.407 -28.549 32.388 -28.728 32.194 -28.800 31.999 -28.854 32.038 -28.943 31.844 -28.943 31.786 -29.407 31.320 -29.762 31.087 -29.886 31.067 -30.188 30.815 -30.506 30.640 -30.895 30.368 -31.300 30.019 -31.669 29.495 -32.369 28.776 -32.700 28.368 -32.806 28.155 -32.910 28.077 -33.049 27.883 -33.552 27.067 -33.777 26.446 -33.708 26.058 -33.725 25.844 -33.846 25.650 -34.020 25.728 -34.054 25.611 -34.037 25.417 -33.968 25.223 -33.968 25.009 -34.020 24.932 -34.192 24.834 -33.985 23.650 -34.020 23.436 -34.089 23.242 -34.054 23.048 -34.089 23.009 -34.037 22.815 -33.985 22.776 -34.020 22.776 -34.002 22.640 -34.054 22.505 -34.071 22.446 -34.071 22.252 -34.381 21.805 -34.415 21.223 -34.364 21.009 -34.398 20.815 -34.467 20.874 -34.450 20.602 -34.828 20.000 -34.760 19.805 -34.743 19.611 -34.605 19.417 -34.587 19.340 -34.415 19.301 -34.347 19.087 -34.364 18.932 -34.261 18.854 -34.106 18.835 -34.071 18.679 -34.089 18.524 -34.175 18.446 -34.347 18.505 -34.226 18.388 -33.985 18.349 -33.742 18.446 -33.431 18.271 -33.257 18.116 -33.188 18.136 -33.014 18.038 -32.910 17.864 -32.718 17.942 -32.788 18.136 -32.648 18.291 -32.474 18.349 -32.300 18.369 -31.880 18.271 -31.687 18.194 -31.335 17.903 -30.895 17.592 -30.365 17.301 -29.851 17.107 -29.673 17.068 -29.121 16.835 -28.764 16.582 -28.585 16.504 ; #825 3 30.577 32.271 30.559 32.310 30.594 32.310 ; #826 3 30.170 32.582 30.259 32.563 30.276 32.504 30.418 32.368 30.241 32.446 30.241 32.524 ; #827 -3 54.638 19.883 54.778 19.980 54.918 19.941 54.946 20.019 54.960 20.213 54.946 20.407 55.002 20.563 55.141 20.776 55.281 20.951 55.420 21.067 55.711 21.126 55.558 21.145 55.420 21.107 55.252 20.971 55.113 20.796 55.002 20.602 54.932 20.640 54.889 21.029 55.002 21.223 55.141 21.203 55.281 21.301 55.336 21.262 55.475 21.242 55.711 21.126 55.849 21.067 56.083 21.067 56.221 20.990 56.523 21.009 56.795 21.067 56.917 21.262 57.053 21.417 57.189 21.417 57.325 21.495 57.460 21.631 57.581 21.825 57.595 22.019 57.742 22.505 57.608 22.640 57.514 22.835 57.257 23.203 57.121 23.262 56.972 23.650 56.985 23.844 57.067 24.058 57.149 24.252 57.284 24.427 57.689 24.349 57.836 24.291 58.278 24.543 58.385 24.349 58.265 24.155 58.318 23.961 58.331 23.747 58.477 23.689 58.570 23.514 58.717 23.553 58.743 23.767 58.770 23.553 58.915 23.417 58.967 23.631 59.007 23.417 59.152 23.514 59.231 23.708 59.283 24.116 59.388 24.038 59.362 24.233 59.468 24.427 59.442 24.640 59.520 24.796 59.520 25.203 59.481 25.398 59.624 25.495 59.559 25.708 59.624 25.903 59.585 26.291 59.533 26.505 59.533 26.698 59.455 26.912 59.415 27.922 59.481 28.019 59.428 28.116 59.388 28.194 59.349 28.194 59.297 28.096 59.270 27.883 59.165 27.864 58.994 27.747 58.941 27.611 58.875 27.495 58.730 27.456 58.464 27.534 58.424 27.553 58.278 27.475 58.010 27.670 58.010 27.689 57.836 27.670 57.823 27.611 57.783 27.534 57.648 27.417 57.541 27.378 57.527 27.475 57.392 27.670 57.325 27.825 57.189 27.864 57.149 27.825 57.134 27.767 56.999 27.747 56.850 27.650 56.863 27.767 56.877 27.844 56.741 27.903 56.604 28.019 56.604 28.038 56.467 28.174 56.399 28.194 56.385 28.194 56.234 28.232 56.152 28.174 56.083 28.291 56.056 28.310 56.056 28.368 56.097 28.563 56.042 28.718 55.986 28.718 55.959 28.737 56.028 29.145 56.000 29.223 55.959 29.417 55.835 29.398 55.752 29.398 55.738 29.592 55.780 29.825 55.849 29.961 55.849 30.019 55.835 30.097 55.849 30.271 55.821 30.368 55.821 30.407 55.752 30.543 55.599 30.815 55.599 30.932 55.475 30.912 55.447 30.912 55.309 30.834 55.169 30.970 55.030 31.029 55.002 30.951 54.988 30.970 54.974 30.970 54.946 30.873 54.932 30.834 54.778 30.834 54.694 31.029 54.666 31.029 54.596 31.184 54.455 31.203 54.202 31.456 54.060 31.863 54.003 31.883 53.806 31.766 53.776 31.883 53.806 32.097 53.762 32.291 53.762 32.349 53.720 32.427 53.677 32.524 53.521 32.563 53.436 32.757 53.306 32.601 53.278 32.485 53.135 32.330 53.135 32.271 53.107 32.194 53.107 31.999 53.135 31.805 53.193 31.786 53.193 31.592 53.121 31.378 53.064 31.339 52.921 31.398 52.834 31.553 52.690 31.514 52.618 31.572 52.474 31.611 52.445 31.611 52.315 31.592 52.170 31.786 52.112 31.786 52.054 31.999 52.069 32.194 52.214 32.349 52.243 32.388 52.330 32.388 52.315 32.582 52.258 32.757 52.258 32.951 52.373 33.261 52.359 33.436 52.359 33.494 52.330 33.533 52.287 33.553 52.373 33.747 52.287 33.941 52.214 34.038 52.069 34.077 51.924 34.232 51.866 34.330 51.837 34.388 51.691 34.213 51.691 34.174 51.647 34.116 51.574 34.194 51.428 34.252 51.370 34.291 51.370 34.310 51.268 34.252 51.253 34.213 51.253 34.504 51.179 34.699 51.193 34.893 51.224 35.009 51.149 35.126 51.106 35.165 50.959 35.320 50.886 35.378 50.738 35.475 50.723 35.475 50.576 35.436 50.428 35.592 50.353 35.708 50.428 35.863 50.443 36.038 50.353 36.232 50.279 36.310 50.309 36.427 50.205 36.621 50.309 36.815 50.324 36.854 50.339 36.951 50.339 37.126 50.428 37.320 50.339 37.514 50.191 37.650 50.087 37.747 50.028 37.941 49.998 37.961 49.982 37.980 49.908 38.038 49.998 38.213 50.013 38.194 49.998 38.368 49.952 38.562 49.893 38.757 49.804 38.951 49.804 39.009 49.878 39.203 49.729 39.397 49.729 39.592 49.595 39.708 49.550 39.902 49.595 39.999 49.611 40.019 49.595 40.155 49.445 40.077 49.386 40.135 49.296 40.174 49.145 40.019 49.040 39.805 48.905 39.786 48.860 39.980 48.875 40.019 48.890 40.058 48.860 40.096 48.800 40.019 48.815 39.824 48.664 39.708 48.633 39.689 48.588 39.689 48.512 39.883 48.361 39.941 48.331 39.863 48.300 39.902 48.285 39.922 48.285 39.960 48.300 39.980 48.300 40.019 48.240 40.019 48.225 39.999 48.073 39.863 48.058 39.883 47.996 39.805 47.844 39.805 47.844 39.126 47.859 39.048 47.859 38.873 47.707 38.776 47.692 38.698 47.676 38.679 47.630 38.485 47.478 38.290 47.325 38.213 47.155 38.232 47.109 38.252 47.079 38.116 47.094 37.922 47.048 37.533 46.971 37.436 46.879 37.048 46.709 36.834 46.771 36.640 46.725 36.446 46.632 36.252 46.663 36.058 46.632 35.863 46.493 35.669 46.415 35.475 46.152 35.203 46.075 35.009 46.106 35.009 46.291 35.300 46.446 35.203 46.291 35.126 46.183 34.834 46.028 34.854 45.904 34.893 45.747 34.990 45.732 34.970 45.732 34.951 46.059 34.718 45.950 34.485 46.090 34.446 46.214 34.252 46.137 34.058 46.214 33.863 46.214 33.689 46.230 33.650 46.168 33.650 46.137 33.669 46.121 33.630 46.044 33.514 46.121 33.126 46.075 32.524 46.106 32.330 46.261 31.999 46.276 31.805 46.353 31.999 46.478 31.825 46.540 31.670 46.493 32.038 46.493 32.427 46.555 32.465 46.648 32.660 46.555 32.330 46.571 32.135 46.725 31.980 46.986 31.980 47.247 31.766 46.986 31.941 46.940 31.902 46.786 31.883 46.632 31.747 46.617 31.553 46.756 31.456 46.602 31.339 46.632 31.184 46.540 30.796 46.384 30.776 46.075 30.465 46.168 30.465 46.338 30.252 46.384 30.155 46.075 30.465 45.841 30.213 45.747 30.019 45.841 30.019 45.732 29.805 45.701 29.611 45.545 29.630 45.436 29.766 45.341 29.766 45.216 29.728 45.216 29.670 44.997 29.670 44.886 29.611 44.808 29.456 44.792 29.262 44.839 29.067 44.997 29.067 44.981 28.970 44.823 28.951 44.666 28.796 44.635 28.815 44.682 29.009 44.398 28.737 44.224 28.640 43.906 28.640 43.429 28.543 43.397 28.136 43.238 28.038 43.190 27.941 42.837 27.883 42.677 27.728 42.564 27.670 42.484 27.475 42.420 27.670 42.258 27.767 42.096 27.961 41.983 28.019 41.822 27.980 41.578 28.155 41.448 28.388 41.253 28.970 41.074 29.067 40.960 28.854 40.960 28.660 41.041 28.601 41.025 28.582 41.074 28.174 40.993 27.825 40.993 27.631 40.665 27.242 40.600 27.048 40.551 26.990 40.502 26.796 40.338 26.602 40.223 26.407 40.058 26.233 40.223 26.272 40.321 26.213 40.567 26.796 40.649 26.757 40.600 26.369 40.600 26.155 40.731 26.058 40.845 25.864 40.928 25.262 41.009 25.165 40.960 25.009 40.845 24.815 40.928 24.427 40.780 24.233 40.731 24.019 40.780 23.903 40.747 23.747 40.453 23.844 40.436 24.038 40.321 24.233 40.156 24.407 40.124 24.330 40.289 24.155 40.354 23.961 40.354 23.767 40.173 23.844 40.173 23.883 40.008 24.019 39.992 24.000 39.992 23.883 40.156 23.747 40.239 23.534 40.223 23.339 40.058 23.475 39.992 23.611 39.959 23.417 40.173 23.339 40.321 23.048 40.469 22.835 40.649 22.932 40.502 22.718 40.534 22.699 40.469 22.660 40.305 22.640 40.140 22.563 39.992 22.621 39.976 22.679 39.597 22.932 39.283 23.300 39.116 23.242 39.083 23.087 39.249 23.184 39.315 23.068 39.283 22.854 38.983 23.029 38.883 22.815 38.900 22.621 38.800 22.757 38.750 22.951 38.634 23.145 38.617 23.339 38.501 23.339 38.467 23.611 38.334 23.708 38.284 23.941 38.116 24.019 37.949 24.019 37.831 24.077 37.664 24.058 37.648 24.038 37.815 23.844 37.932 23.650 38.016 23.456 37.915 23.029 37.848 23.029 37.715 23.165 37.581 23.223 37.614 23.417 37.445 23.534 37.411 23.475 37.344 23.087 37.513 22.951 37.581 22.757 37.530 22.738 37.344 22.815 37.041 23.009 36.873 23.068 36.703 23.048 36.534 23.165 36.432 23.145 36.551 22.951 36.720 22.835 36.805 22.699 36.636 22.524 36.466 22.524 36.500 22.505 36.754 22.330 36.923 22.136 37.025 22.116 36.856 21.941 36.805 21.747 37.075 21.592 37.395 21.689 37.563 21.553 37.597 21.456 37.782 21.301 37.949 21.223 38.133 21.378 38.150 21.572 38.284 21.767 38.334 21.961 38.217 22.174 38.133 22.407 38.100 22.602 37.982 22.796 37.949 22.971 38.066 23.165 38.150 23.223 38.217 23.029 38.233 22.835 38.350 22.660 38.284 22.602 38.400 22.388 38.334 22.194 38.400 22.000 38.300 21.495 38.467 21.359 38.434 21.359 38.300 21.165 38.634 21.009 38.784 20.757 38.950 20.776 38.933 20.971 38.900 21.029 39.033 21.126 39.066 20.932 39.116 20.835 38.967 20.757 39.283 20.485 39.299 20.330 39.630 20.155 39.696 20.019 39.679 20.116 39.646 20.233 39.811 20.310 39.811 20.427 39.893 20.369 39.992 20.407 40.074 20.466 40.074 20.602 40.091 20.640 40.338 20.776 40.436 20.796 40.518 20.990 40.600 21.048 40.698 21.048 40.796 20.990 40.861 20.990 40.861 21.145 40.878 21.242 40.910 21.437 40.910 21.475 40.894 21.669 40.928 21.805 41.074 21.922 41.091 21.922 41.172 22.213 41.139 22.349 41.123 22.524 41.139 22.543 41.139 22.563 41.172 22.757 41.237 22.776 41.318 22.776 41.334 22.893 41.334 22.951 41.383 22.971 41.513 22.971 41.692 23.009 41.789 22.971 41.870 22.912 41.983 22.893 42.129 22.582 42.161 22.524 42.225 22.466 42.323 22.369 42.420 22.543 42.564 22.466 42.805 22.466 42.821 22.446 42.853 22.524 42.885 22.640 42.869 22.679 42.998 22.854 43.158 23.009 43.190 23.009 43.206 22.951 43.365 22.776 43.397 22.699 43.557 22.505 43.589 22.505 43.700 22.427 43.780 22.388 43.859 22.407 44.018 22.466 44.050 22.543 44.145 22.621 44.224 22.699 44.303 22.621 44.303 22.602 44.382 22.524 44.429 22.505 44.461 22.466 44.540 22.660 44.525 22.699 44.556 22.776 44.635 22.582 44.682 22.388 44.603 22.291 44.525 22.097 44.572 22.038 44.603 22.038 44.666 21.689 44.713 21.631 44.729 21.631 44.776 21.514 44.776 21.417 44.823 21.378 44.902 21.572 44.966 21.417 44.997 21.378 45.028 21.437 45.185 21.475 45.232 21.301 45.232 21.262 45.247 21.242 45.310 21.048 45.436 20.874 45.467 20.854 45.498 20.796 45.530 20.835 45.576 20.796 45.670 20.815 45.763 20.718 45.794 20.679 45.888 20.621 45.966 20.388 46.059 20.330 46.121 20.271 46.152 20.291 46.183 20.505 46.152 20.699 46.152 20.718 46.168 20.738 46.261 20.815 46.261 21.107 46.415 21.262 46.462 21.301 46.617 21.339 46.679 21.495 46.756 21.495 46.771 21.514 46.863 21.611 47.017 21.669 47.125 21.805 47.140 21.805 47.217 21.844 47.493 22.019 47.524 22.038 47.569 22.136 47.600 22.194 47.692 22.252 47.752 22.446 47.829 22.718 47.950 22.912 48.088 22.854 48.103 22.835 48.103 22.640 48.164 22.602 48.240 22.524 48.240 22.466 48.361 22.271 48.376 22.271 48.406 22.194 48.406 22.155 48.437 22.155 48.557 22.174 48.648 22.271 48.800 22.407 48.920 22.446 49.085 22.563 49.010 22.893 49.070 22.874 49.221 22.738 49.326 22.757 49.475 22.699 49.581 22.699 49.685 22.815 49.700 22.835 49.774 22.912 49.789 22.951 49.804 22.971 49.952 23.126 49.998 23.184 50.102 23.320 50.235 23.534 50.235 23.553 50.265 23.592 50.279 23.631 50.368 23.708 50.399 23.903 50.517 24.097 50.576 24.116 50.635 24.116 50.782 23.961 50.856 24.155 50.988 23.941 51.179 23.825 51.179 23.805 51.268 23.708 51.384 23.689 51.530 23.611 51.545 23.572 51.647 23.553 51.764 23.592 51.764 23.611 52.040 23.669 52.069 23.650 52.083 23.650 52.112 23.592 52.141 23.514 52.287 23.184 52.359 23.242 52.460 23.359 52.474 23.378 52.503 23.398 52.546 23.475 52.662 23.864 52.776 23.941 52.949 23.941 53.092 23.883 53.121 23.922 53.278 23.825 53.521 23.669 53.535 23.669 53.606 23.631 53.691 23.592 53.720 23.592 53.947 23.514 54.088 23.514 54.174 23.436 54.258 23.242 54.314 23.145 54.385 22.990 54.357 22.796 54.328 22.174 54.328 21.301 54.357 20.757 54.357 20.679 54.371 20.621 54.399 20.349 54.399 20.291 54.413 20.038 54.413 20.019 54.427 19.903 54.427 19.864 54.441 19.805 54.568 20.019 54.596 20.174 54.680 20.388 54.722 20.019 54.582 19.864 54.455 19.669 54.469 19.631 ; #828 -3 69.109 20.796 69.098 21.184 69.241 21.107 69.308 21.339 69.274 21.669 69.098 21.941 69.065 21.980 69.021 22.058 68.954 22.213 68.832 22.407 68.721 22.446 68.732 22.660 68.687 23.009 68.631 23.203 68.699 23.514 68.710 23.728 68.832 23.903 68.799 24.116 68.732 24.310 68.653 24.757 68.575 24.951 68.620 25.009 68.854 25.320 68.887 25.436 68.876 25.631 68.987 25.805 69.219 25.767 69.330 25.825 69.385 25.903 69.429 25.864 69.637 26.019 69.648 26.000 69.713 26.194 69.931 26.582 69.920 27.145 69.942 27.339 69.996 27.456 70.073 27.708 70.083 27.922 69.996 28.038 69.767 28.679 69.670 29.184 69.550 29.281 69.418 29.301 69.297 29.067 69.153 28.873 69.010 29.029 68.887 28.485 68.887 28.446 68.876 28.485 68.876 28.679 68.765 28.776 68.531 28.465 68.508 28.485 68.486 28.504 68.239 28.679 68.160 28.873 68.092 29.301 67.980 29.495 67.855 29.650 67.708 30.019 67.674 30.019 67.514 29.961 67.411 29.747 67.308 29.553 66.952 29.087 66.860 29.087 66.627 29.398 66.442 29.572 66.372 29.611 66.079 29.941 65.962 30.019 65.798 30.116 65.668 30.136 65.680 30.019 65.657 29.805 65.337 29.747 65.217 29.670 65.217 29.864 65.098 29.805 65.003 29.611 64.883 29.689 64.787 29.883 64.799 30.019 64.691 30.213 64.595 30.019 64.546 30.000 64.522 30.019 64.498 30.058 64.354 30.174 64.317 30.368 64.245 30.563 64.123 30.601 64.038 30.582 63.794 30.213 63.770 30.116 63.745 30.000 63.672 30.116 63.611 30.213 63.550 30.407 63.452 30.601 63.402 30.815 63.292 31.029 63.218 31.242 63.095 31.320 62.984 31.534 62.908 31.592 62.536 31.301 62.311 30.951 62.160 30.640 61.859 30.174 61.783 30.058 61.733 30.019 61.504 29.630 61.491 29.553 61.479 29.534 61.301 29.301 61.109 28.873 61.109 28.854 60.956 28.601 60.956 28.543 60.944 28.504 60.854 28.349 60.738 28.155 60.597 27.903 60.546 27.825 60.494 27.786 60.494 27.378 60.558 27.203 60.481 26.990 60.456 26.602 60.481 26.505 60.403 26.427 60.403 26.213 60.443 26.019 60.313 26.116 60.377 25.922 60.249 25.786 60.377 25.689 60.249 25.417 60.197 25.203 60.210 25.009 60.158 24.815 60.145 24.640 60.002 24.524 60.002 24.330 60.080 24.330 60.002 23.883 59.937 23.708 60.002 23.475 59.976 23.456 59.820 23.068 59.924 23.262 60.002 23.339 59.937 23.126 60.002 23.184 60.002 23.242 60.054 23.223 60.094 23.029 60.171 22.932 60.262 22.971 60.326 23.009 60.249 22.815 60.262 22.505 60.390 22.660 60.429 22.271 60.469 22.058 60.507 22.019 60.494 21.825 60.623 21.728 60.572 21.592 60.597 21.592 60.674 21.398 60.931 21.475 61.058 21.456 61.187 21.553 61.327 21.592 61.580 21.553 61.542 21.728 61.821 21.514 61.959 21.339 62.009 21.320 62.135 21.398 62.261 21.417 62.399 21.320 62.349 21.242 62.474 21.184 62.598 21.262 62.722 21.223 62.859 21.281 62.946 21.475 63.082 21.572 63.205 21.572 63.292 21.611 63.205 21.825 63.255 22.019 63.205 21.980 63.279 22.388 63.316 22.446 63.465 22.388 63.587 22.485 63.709 22.660 63.636 22.893 63.880 23.126 63.868 23.184 63.917 23.378 64.038 23.398 64.026 23.611 64.171 23.767 64.257 23.961 64.378 24.038 64.474 24.252 64.739 24.582 64.859 24.776 64.895 25.009 64.895 25.203 64.835 25.398 64.955 25.243 64.955 25.436 65.003 25.456 65.003 25.495 65.110 25.262 65.229 25.320 65.313 25.301 65.432 25.359 65.620 25.009 65.644 24.815 65.704 24.621 65.786 24.582 65.774 24.563 65.786 24.213 65.810 24.194 65.821 24.174 65.845 24.174 66.162 23.922 66.267 23.708 66.395 23.708 66.465 23.689 66.570 23.903 66.697 23.922 66.814 24.038 67.182 23.592 67.228 23.592 67.366 23.825 67.457 23.631 67.491 23.436 67.605 23.553 67.719 23.514 67.731 23.514 67.799 23.495 67.946 23.689 68.014 23.553 68.126 23.378 68.182 23.184 68.296 23.106 68.408 22.699 68.441 22.505 68.486 22.310 68.475 22.291 68.497 22.077 68.575 21.941 68.687 21.514 68.799 21.320 68.931 20.912 68.998 20.912 68.998 20.893 69.021 20.796 69.043 20.660 ; #829 -3 60.002 22.427 60.054 22.407 60.184 22.563 60.262 22.971 60.184 22.912 60.171 22.932 60.119 22.893 60.028 22.699 60.002 22.485 ; #830 3 36.381 22.932 36.212 23.068 36.381 22.971 ; #831 3 35.000 26.155 35.120 26.291 35.291 26.310 35.222 26.116 35.154 25.728 35.325 25.708 35.308 25.514 35.342 25.203 35.410 25.009 35.428 24.737 35.342 24.349 35.393 24.272 35.565 24.194 35.514 24.000 35.616 23.611 35.256 23.553 35.188 24.349 35.086 24.737 35.000 24.757 34.931 24.815 34.948 25.184 35.000 25.378 35.000 26.116 ; #832 3 38.834 24.679 38.933 24.485 38.767 24.582 ; #833 3 40.584 24.698 40.747 24.757 40.731 24.563 40.567 24.660 ; #834 3 37.815 24.990 37.848 24.796 37.681 24.970 ; #835 3 37.631 25.203 37.664 25.009 37.631 25.009 ; #836 3 39.976 25.048 39.811 25.165 39.827 25.359 39.992 25.456 39.992 25.126 ; #837 3 37.025 25.592 37.193 25.553 37.092 25.359 36.923 25.456 ; #838 3 40.207 25.786 40.124 25.669 40.091 25.747 40.239 25.941 ; #839 3 38.233 26.116 38.417 26.136 38.584 26.077 38.484 25.883 38.317 25.980 38.150 26.019 ; #840 3 39.033 26.621 39.382 26.310 39.299 26.097 39.132 25.903 39.099 26.116 39.182 26.310 39.016 26.233 38.967 26.427 ; #841 3 37.765 27.029 37.798 26.834 37.681 26.640 37.631 26.834 ; #842 3 36.906 27.281 36.839 27.087 36.670 26.990 ; #843 3 35.565 27.203 35.735 27.165 35.565 27.087 35.393 27.145 ; #844 3 36.093 28.096 36.432 28.213 36.381 28.019 36.263 27.825 36.093 27.747 35.923 27.728 35.991 27.922 ; #845 3 34.657 32.660 34.657 32.912 34.570 33.048 34.640 33.029 34.691 33.087 34.709 33.281 34.794 33.553 34.966 33.708 34.966 33.922 35.000 34.077 35.154 33.922 35.308 33.999 35.444 34.194 35.531 34.407 35.667 34.601 35.633 34.427 35.462 34.058 35.359 33.669 35.325 33.339 35.359 33.145 35.256 32.951 35.171 32.912 35.171 32.582 35.000 32.310 34.880 32.349 34.709 32.504 ; #846 4 70.622 23.611 70.537 23.417 70.472 23.009 70.364 22.971 70.407 23.184 70.289 23.281 70.396 23.495 70.461 23.689 70.579 23.631 ; #847 4 70.665 24.116 70.719 23.922 70.740 23.708 70.633 23.708 70.526 23.786 70.515 24.000 70.558 24.058 ; #848 4 70.932 24.155 71.028 23.961 70.985 23.941 ; #849 4 71.007 26.194 71.007 26.000 71.112 26.097 71.123 25.903 71.166 25.689 71.081 25.495 71.028 25.301 71.028 25.514 70.943 25.708 70.985 26.000 ; #850 4 69.899 30.019 69.790 29.805 69.790 30.019 69.834 30.019 ; #851 2 69.352 34.019 69.341 34.427 69.407 34.232 ; #852 2 65.003 35.863 65.063 35.883 65.193 35.747 65.122 35.533 65.003 35.728 ; #853 2 69.120 50.213 69.010 50.174 69.120 50.349 69.230 50.213 69.308 50.019 69.472 49.417 69.505 49.222 69.505 49.009 69.439 48.621 69.341 48.407 69.230 48.291 68.998 48.232 68.887 48.252 68.732 48.659 68.754 49.067 68.810 49.455 68.865 49.669 69.087 50.019 ; #854 2 68.385 50.873 68.486 51.455 68.497 51.242 68.475 51.048 68.408 50.854 ; #855 2 70.105 60.018 70.127 59.805 70.202 59.591 70.311 59.416 70.472 59.009 70.429 58.815 70.332 58.601 70.246 58.795 70.257 58.601 70.040 58.640 69.996 58.718 69.855 59.106 69.888 59.300 69.855 59.514 69.746 59.572 69.691 59.785 69.713 60.018 69.680 60.213 69.724 60.407 69.834 60.523 69.953 60.446 69.996 60.252 ; #856 2 69.252 59.125 69.297 58.931 69.131 59.261 ; #857 -4 70.375 22.505 70.386 22.640 70.353 22.835 70.246 23.029 70.257 22.835 70.257 22.640 70.321 22.505 ; #858 -4 70.364 22.427 70.375 22.505 70.321 22.505 ; #859 -4 70.698 22.505 70.698 22.660 70.654 22.854 70.762 22.796 70.675 22.990 70.740 23.203 70.846 23.339 70.804 23.534 70.762 23.456 70.526 22.854 70.547 22.660 70.504 22.505 ; #860 -4 70.494 22.446 70.483 22.252 70.590 22.271 70.579 22.058 70.698 22.466 70.698 22.505 70.504 22.505 ; #861 -3 60.184 22.912 60.262 22.971 60.171 22.932 ; #862 -3 38.634 23.495 38.767 23.300 38.834 23.106 38.834 22.912 38.967 23.106 39.033 23.300 38.867 23.456 38.750 23.650 38.684 23.844 38.684 24.038 38.517 24.233 38.350 24.233 38.183 24.310 38.150 24.505 37.982 24.563 37.949 24.524 38.033 24.330 38.367 24.058 38.400 23.669 38.467 23.611 ; #863 2 60.132 31.611 60.236 31.825 60.236 32.019 60.197 32.213 60.132 32.349 60.171 32.524 60.429 32.679 60.456 32.796 60.597 32.932 60.829 32.834 60.956 32.660 61.097 32.563 61.187 32.349 61.377 31.747 61.479 31.553 61.605 31.398 61.632 31.203 61.720 31.009 61.745 30.776 61.491 30.504 61.517 30.291 61.250 30.116 61.263 30.019 61.148 30.019 61.225 29.805 61.173 29.883 61.046 30.213 60.931 30.407 60.789 30.543 60.623 30.543 60.520 30.737 60.390 30.893 60.262 30.970 60.132 31.126 60.002 31.145 59.937 31.048 59.937 31.262 59.898 31.456 60.002 31.572 ; #864 -2 60.880 35.747 60.918 35.941 60.956 35.961 61.071 36.155 61.135 36.349 61.276 36.349 61.403 36.446 61.479 36.232 61.605 36.155 61.733 36.019 61.846 35.825 61.984 35.786 62.110 35.689 62.236 35.805 62.374 35.844 62.499 35.786 62.561 35.592 62.673 35.378 62.747 35.009 62.785 35.009 62.846 34.796 62.797 34.582 62.660 34.699 62.611 34.815 62.573 34.834 62.449 35.009 62.474 35.009 62.611 34.854 62.623 35.009 62.561 35.165 62.561 35.359 62.436 35.495 62.299 35.592 62.173 35.436 62.173 35.242 62.223 35.029 62.085 35.203 62.085 35.009 62.210 34.873 62.336 34.834 62.474 34.679 62.561 34.485 62.436 34.621 62.311 34.699 62.424 34.504 62.299 34.621 62.160 34.640 62.034 34.718 62.097 34.504 62.210 34.310 62.274 34.349 62.399 34.155 62.436 33.941 62.349 34.155 62.210 34.291 62.122 34.291 61.972 34.582 61.846 34.621 61.783 34.407 61.567 34.815 61.479 35.165 61.314 35.553 61.187 35.611 61.135 35.708 61.007 35.533 61.071 35.397 61.046 35.184 61.173 35.223 61.200 35.009 61.148 34.796 61.007 34.834 61.058 35.009 61.020 35.203 61.046 35.417 60.982 35.533 60.931 35.533 ; #865 3 46.199 31.980 46.261 31.592 46.137 32.174 ; #866 -2 -0.796 29.650 -0.757 29.630 -0.563 29.689 -0.485 29.670 -0.311 29.689 -0.214 29.708 -0.078 29.728 0.000 29.747 0.058 29.728 0.427 29.922 0.835 29.980 0.854 30.000 0.854 30.019 1.029 30.232 1.145 30.330 1.223 30.485 1.009 30.543 1.305 30.550 1.126 30.699 1.515 30.970 1.592 31.165 1.786 31.339 1.922 31.417 2.251 31.359 2.369 31.475 2.408 31.475 2.251 31.359 2.174 31.281 2.349 31.048 2.388 30.951 2.349 30.932 2.466 30.737 2.659 30.796 2.873 30.893 3.145 30.796 3.300 30.873 3.494 30.873 3.552 30.893 3.726 31.067 3.784 31.281 3.687 31.475 3.707 31.689 3.707 31.708 3.784 31.863 3.590 32.038 3.590 32.058 3.571 32.077 3.513 32.213 3.610 32.213 3.687 32.349 3.745 32.543 3.784 32.796 3.862 32.990 3.765 33.184 3.765 33.417 3.745 33.514 4.230 33.999 4.482 34.271 4.599 34.407 4.618 35.009 4.618 35.961 4.831 35.786 5.005 35.786 5.335 35.825 5.412 35.436 5.354 35.378 5.857 35.009 6.012 34.990 6.206 34.893 6.496 34.815 6.612 34.757 6.727 34.563 6.805 34.524 6.882 34.504 6.959 34.310 7.036 34.232 7.229 34.058 7.403 34.019 7.693 33.650 7.790 33.165 7.886 33.009 8.002 33.048 8.137 33.203 8.330 33.184 8.426 33.223 8.465 33.611 8.446 33.669 8.368 33.786 8.388 33.805 8.446 33.999 8.580 34.135 9.197 34.135 9.447 34.097 9.659 34.116 10.005 34.232 10.197 34.349 10.563 34.310 10.774 34.446 10.851 34.640 10.678 34.796 10.870 34.990 11.062 34.970 11.158 35.009 11.196 35.009 11.216 34.990 11.273 34.970 11.331 35.009 11.541 35.106 11.733 35.068 11.828 35.106 11.924 35.281 12.135 35.378 12.537 35.630 12.670 35.708 12.670 35.728 12.708 36.155 12.957 36.155 13.052 36.174 13.758 36.466 13.948 36.466 14.253 36.563 14.291 36.543 14.995 36.466 15.147 36.446 15.147 36.466 15.204 36.504 15.412 36.601 15.450 36.660 15.640 36.679 16.227 36.951 16.435 36.970 16.624 36.931 16.870 37.028 17.058 37.009 17.021 37.242 17.039 37.436 17.228 37.533 17.323 37.514 17.360 37.728 17.473 37.961 17.548 38.155 17.548 38.271 17.661 38.388 17.869 38.465 17.925 38.524 18.000 38.621 17.304 38.970 16.737 39.145 16.057 39.261 15.640 39.475 15.583 39.436 15.450 39.630 15.261 39.728 15.052 39.786 15.450 39.805 15.374 40.019 15.185 40.058 14.995 40.155 14.938 40.252 14.995 40.543 14.710 40.873 14.653 41.067 14.538 41.261 14.025 41.650 13.872 41.844 13.624 42.252 13.415 42.349 13.033 42.737 12.842 42.854 12.708 43.126 12.518 43.281 12.307 43.378 12.116 43.436 12.001 43.397 11.924 43.184 11.828 43.106 11.733 42.795 11.541 42.640 11.579 43.106 11.350 43.456 10.947 43.689 10.486 44.232 10.428 44.349 10.409 44.621 10.447 45.009 10.620 45.281 10.678 45.494 10.793 45.688 10.831 45.922 10.735 46.310 10.716 46.524 10.774 46.718 11.139 47.300 11.177 47.514 11.100 47.708 11.139 47.902 11.139 48.116 11.311 48.504 11.311 48.698 11.234 48.951 11.464 49.727 11.522 50.116 11.752 50.504 11.943 50.659 11.943 50.873 11.771 51.261 11.388 51.106 11.196 51.087 10.620 51.164 10.428 51.028 10.447 51.184 10.370 51.378 10.428 51.184 10.370 50.989 10.197 50.912 9.986 50.912 9.601 50.815 9.428 50.854 9.235 50.679 9.101 50.659 8.908 50.465 8.542 50.329 8.330 50.174 8.118 50.077 7.963 49.863 7.867 49.824 7.790 49.844 7.597 49.766 7.345 49.630 6.959 49.339 6.573 49.145 6.186 49.067 5.780 48.854 4.850 48.174 4.443 47.960 3.145 46.757 2.408 45.999 2.019 45.339 1.864 45.009 1.457 44.426 1.087 44.038 0.641 43.494 0.000 42.912 -0.291 42.601 -0.680 42.271 -0.912 41.960 -0.990 41.960 -1.184 41.844 -1.281 41.844 -1.864 41.417 -1.941 41.223 -1.902 41.028 -2.466 40.718 -2.543 40.524 -2.563 40.388 -2.756 40.194 -3.145 40.155 -3.416 39.960 -3.629 39.863 -3.745 39.863 -3.959 39.747 -4.036 39.689 -4.036 39.650 -4.172 39.650 -4.365 39.572 -4.560 39.436 -4.676 39.223 -4.812 39.242 -5.024 39.106 -5.218 39.087 -5.644 38.912 -5.973 38.815 -6.167 38.873 -6.360 38.873 -6.631 39.203 -6.843 39.300 -6.843 39.359 -6.998 39.553 -7.094 39.553 -7.287 39.378 -7.442 39.320 -7.828 39.261 -7.790 39.417 -8.002 39.456 -8.079 39.436 -8.272 39.300 -8.503 39.320 -8.889 39.397 -9.293 39.650 -9.486 39.669 -9.813 39.805 -10.005 39.747 -10.005 39.844 -10.197 39.980 -10.120 40.019 -10.274 40.329 -10.486 40.446 -10.543 40.388 -10.639 40.213 -10.812 40.019 -10.985 39.533 -11.119 39.339 -11.158 39.126 -11.177 38.931 -11.292 38.640 -11.425 38.504 -11.311 38.310 -11.254 38.116 -11.273 37.980 -11.598 37.708 -11.675 37.514 -11.732 37.475 -11.713 37.281 -11.636 37.087 -11.560 37.028 -11.579 36.834 -11.732 36.640 -11.732 36.601 -11.752 36.563 -11.598 36.174 -11.445 35.805 -11.598 35.611 -11.598 35.456 -11.579 35.417 -11.579 34.970 -11.388 34.893 -11.196 34.699 -11.043 34.621 -10.793 34.660 -10.601 34.640 -10.543 34.582 -10.140 34.563 -10.082 34.543 -10.043 34.543 -10.005 34.524 -9.909 34.465 -9.736 34.349 -9.582 34.155 -9.620 33.980 -9.716 33.922 -9.582 33.766 -9.601 33.611 -9.562 33.417 -9.409 33.029 -9.409 32.951 -9.332 32.796 -9.332 32.776 -9.312 32.776 -9.274 32.737 -9.254 32.543 -9.177 32.504 -9.062 32.097 -9.081 31.999 -8.889 31.805 -8.927 31.747 -8.889 31.670 -8.696 31.572 -8.677 31.495 -8.600 31.378 -8.600 31.184 -8.407 31.145 -8.214 30.970 -8.021 30.912 -7.519 30.601 -7.326 30.601 -6.920 30.524 -6.534 30.213 -6.495 30.000 -6.341 29.805 -6.128 29.728 -5.934 29.922 -5.741 29.922 -5.548 29.825 -5.354 29.786 -5.198 29.825 -5.005 29.766 -4.850 29.611 -4.443 29.670 -4.443 29.786 -4.404 29.786 -4.288 30.019 -4.056 30.194 -3.862 30.310 -3.784 30.407 -3.706 30.407 -3.551 30.465 -3.494 30.543 -3.377 30.640 -3.300 30.718 -3.106 30.834 -3.047 30.815 -2.970 30.854 -2.950 30.485 -2.756 30.446 -2.659 30.543 -2.659 30.446 -2.408 30.582 -2.369 30.776 -2.388 30.796 -2.369 30.796 -2.058 30.893 -1.961 30.834 -1.941 30.815 -1.922 30.815 -1.825 30.834 -1.650 30.834 -1.592 30.815 -1.554 30.776 -1.515 30.757 -1.456 30.757 -1.398 30.699 -1.379 30.640 -1.067 30.485 -1.067 30.388 -1.126 30.349 -1.456 30.019 -1.476 29.922 -1.320 29.844 -1.340 29.747 -1.379 29.611 -1.281 29.611 -1.165 29.592 -1.009 29.572 ; #867 -3 46.384 30.155 46.338 30.252 46.168 30.465 46.075 30.465 ; #868 -3 1.379 30.446 1.573 30.582 2.077 31.184 2.174 31.281 2.155 31.301 1.922 31.165 1.728 31.009 1.320 30.563 1.223 30.485 ; #869 -2 2.408 31.475 2.369 31.475 2.251 31.359 ; #870 -2 31.300 32.194 31.282 32.213 31.230 32.310 31.106 32.271 31.071 32.155 31.089 32.116 31.054 32.116 31.124 32.058 31.177 32.058 31.282 31.805 31.405 31.902 31.353 32.097 ; #871 -2 31.265 32.310 31.230 32.310 31.282 32.213 ; #872 -2 31.177 33.009 31.212 33.068 31.212 33.145 ; #873 -3 46.137 33.669 46.168 33.650 46.230 33.650 46.214 33.689 46.090 33.883 46.075 33.999 45.935 34.194 45.982 34.388 45.935 34.465 45.950 34.582 45.794 34.524 45.763 34.485 45.856 34.679 45.623 35.009 45.467 35.106 45.310 35.261 45.467 35.223 45.670 35.009 45.732 34.951 45.732 34.970 45.747 34.990 45.716 35.009 45.373 35.339 45.294 35.533 45.388 35.922 45.373 36.058 45.467 36.252 45.436 36.446 45.341 36.640 45.201 36.427 45.044 36.407 44.997 35.844 45.107 35.650 45.075 35.436 44.997 35.436 44.934 35.242 44.792 35.048 44.839 35.009 44.761 34.621 44.666 34.427 44.493 34.252 44.413 34.058 44.413 33.669 44.493 33.611 44.493 33.553 44.588 33.378 44.635 33.533 44.792 33.533 44.950 33.630 45.154 33.456 45.169 33.320 45.232 33.126 45.341 32.932 45.357 32.737 45.326 32.582 45.483 32.582 45.670 32.970 45.841 33.572 45.919 33.766 46.121 33.630 ; #874 -2 29.353 35.048 29.318 35.300 29.264 35.553 29.228 35.825 29.193 36.077 29.335 36.291 29.353 36.291 29.531 36.524 29.762 36.679 29.887 36.892 29.940 37.164 29.993 37.417 29.993 37.495 30.206 37.611 30.383 37.766 30.506 38.019 30.594 37.922 30.807 37.708 30.860 37.669 30.948 37.572 31.106 37.417 31.212 37.300 31.423 37.087 31.475 37.048 31.528 37.106 31.546 37.184 31.546 37.223 31.564 37.242 31.704 37.786 31.739 37.980 31.757 37.999 31.809 38.252 31.827 38.271 31.880 38.543 31.915 38.621 31.967 38.893 31.984 38.931 32.124 39.184 32.230 39.320 32.248 39.320 32.352 39.261 32.352 39.242 32.404 39.028 32.439 39.028 32.474 39.009 32.474 39.028 32.492 39.067 32.509 39.087 32.735 39.009 33.379 38.815 33.431 38.931 33.812 39.747 33.951 40.019 33.968 40.058 34.020 40.174 34.037 40.194 34.037 40.213 34.071 40.271 34.106 40.329 34.106 40.349 34.123 40.407 34.140 40.426 34.312 40.795 34.398 40.970 34.433 41.028 34.450 41.028 34.794 41.242 34.811 41.242 35.000 41.223 35.154 41.223 35.514 41.300 35.548 41.339 35.735 41.397 35.974 41.320 36.144 41.281 36.280 41.300 36.449 41.359 36.551 41.572 36.585 41.766 36.805 42.077 36.805 42.096 37.058 42.388 37.109 42.368 37.160 42.601 37.378 42.776 37.327 42.970 37.378 43.164 37.327 43.378 37.261 43.572 37.227 43.786 37.261 43.960 37.311 44.096 37.143 44.232 37.075 44.213 37.058 44.407 37.160 44.601 37.177 44.776 37.143 44.795 36.974 44.892 36.805 44.854 36.788 44.873 36.754 45.009 36.670 45.087 36.534 45.028 36.500 45.067 36.466 45.087 36.364 45.281 36.195 45.339 36.008 45.339 35.991 45.359 35.991 45.436 36.025 45.494 36.008 45.533 35.991 45.572 35.974 45.611 35.974 45.650 35.889 45.727 35.820 45.824 35.838 46.019 35.803 46.232 35.718 46.232 35.616 46.038 35.462 46.019 35.291 46.155 35.171 46.193 35.102 46.174 35.102 45.960 35.068 45.941 35.000 45.883 34.914 45.786 34.743 45.669 34.553 45.727 34.606 45.533 34.433 45.455 34.381 45.475 34.209 45.572 34.054 45.475 33.985 45.417 33.639 45.766 33.552 45.960 33.500 45.980 33.483 46.019 33.188 46.213 33.136 46.155 32.962 46.135 32.962 46.349 32.928 46.446 32.841 46.601 32.579 47.009 32.526 47.048 32.474 47.203 32.457 47.397 32.248 47.514 32.107 47.611 31.915 47.766 31.739 47.863 31.722 47.844 31.511 47.747 31.440 47.727 31.247 47.708 31.071 47.708 31.001 47.902 30.895 48.057 30.524 48.038 30.453 48.077 30.330 48.291 29.993 48.465 29.958 48.543 29.922 48.465 30.099 47.960 29.993 47.960 29.798 48.019 29.620 48.155 29.602 48.038 29.513 47.844 29.335 47.883 29.300 48.096 29.032 48.155 28.728 48.407 28.550 48.426 28.407 48.543 28.012 48.737 28.012 48.776 27.922 48.776 27.850 48.873 27.743 48.873 27.797 48.854 27.743 48.795 27.599 48.854 27.617 48.989 27.527 49.086 27.545 49.125 27.437 49.125 27.257 49.320 27.202 49.417 27.148 49.397 27.130 49.533 27.184 49.591 27.005 49.669 26.860 49.883 26.860 49.960 26.642 50.174 26.697 50.077 26.679 50.058 26.751 50.019 26.679 49.999 26.570 50.019 26.426 50.174 26.244 50.232 26.172 50.213 26.154 50.019 25.990 49.999 25.917 50.116 25.736 50.155 25.373 50.504 24.771 50.756 24.752 50.834 24.771 50.873 24.807 50.873 25.117 50.776 25.517 50.776 25.499 50.815 25.536 50.912 25.718 50.912 25.827 50.989 25.917 50.989 26.099 51.164 26.099 51.358 25.954 51.436 25.954 51.514 25.900 51.591 25.681 51.591 25.554 51.494 25.391 51.533 25.245 51.611 25.008 51.611 24.643 51.417 24.624 51.222 24.515 51.320 24.478 51.397 24.295 51.378 24.313 51.397 24.259 51.591 24.112 51.611 23.910 51.766 23.892 51.805 23.726 51.922 23.432 52.193 22.936 52.601 22.641 55.009 22.714 55.222 22.124 55.591 21.919 55.649 20.005 55.009 18.994 52.018 18.245 52.349 17.831 52.523 17.812 52.543 17.379 52.737 17.342 52.756 17.323 52.756 17.284 52.834 16.699 53.106 16.643 53.106 16.398 52.504 16.398 52.484 16.227 52.290 16.113 52.232 15.924 52.193 15.735 52.232 15.583 52.135 15.526 51.941 15.223 51.358 15.166 51.125 15.052 50.601 14.843 50.213 14.843 49.999 14.748 49.611 14.557 49.222 14.386 49.028 14.196 48.873 14.043 48.679 13.987 48.252 14.043 48.057 13.872 47.669 13.682 47.475 13.605 47.281 13.529 46.931 13.435 46.718 13.396 45.941 13.358 45.747 13.224 45.553 13.033 45.359 12.957 45.126 12.765 45.009 12.861 45.028 12.823 45.009 12.785 44.912 12.727 44.912 12.785 44.718 12.765 44.504 12.632 44.310 12.613 43.922 12.708 43.728 12.689 43.533 12.823 43.494 13.224 43.262 13.643 43.300 13.834 43.242 14.043 43.106 14.234 43.087 14.424 43.009 14.615 43.009 15.166 42.834 15.204 42.640 15.242 42.621 15.261 42.815 15.450 42.795 15.640 42.718 16.000 42.854 16.662 42.737 16.870 42.562 17.058 42.465 17.077 42.368 17.454 42.290 17.642 42.116 17.925 41.708 18.113 41.611 18.226 41.514 18.414 41.456 18.677 41.242 19.052 41.184 19.613 40.815 20.061 40.407 20.191 40.213 20.322 39.844 20.471 39.650 20.844 39.397 21.029 39.242 21.233 39.145 21.419 39.184 21.790 39.048 21.975 39.028 22.160 39.048 22.364 39.126 22.549 39.087 22.862 38.970 23.046 38.795 23.414 38.679 23.799 38.446 24.002 38.174 24.167 37.863 24.295 37.689 24.350 37.514 24.350 37.495 24.624 37.339 24.807 37.184 25.008 37.281 25.136 37.261 25.699 36.873 25.881 36.679 25.900 36.699 26.099 36.543 26.642 36.213 27.022 35.883 27.221 35.805 27.401 35.611 27.779 35.397 27.958 35.242 28.048 35.203 28.102 35.009 28.030 34.640 28.102 34.582 28.209 34.679 28.567 34.815 28.711 34.796 29.353 34.970 ; #875 2 -6.225 39.223 -6.264 39.300 -6.457 39.475 -6.418 39.572 -6.225 39.533 -6.012 39.397 -5.799 39.378 -5.876 39.281 -6.031 39.203 ; #876 2 -5.198 39.669 -5.412 39.805 -5.218 39.863 -4.908 39.883 -5.005 39.689 -5.198 39.747 ; #877 2 15.602 40.155 15.659 40.349 15.697 40.155 15.886 40.019 15.621 40.019 ; #878 2 16.680 42.174 16.775 41.786 16.643 41.980 16.567 42.174 ; #879 2 17.002 41.844 16.813 41.960 17.002 41.883 ; #880 2 -22.197 43.300 -22.382 43.281 -22.751 43.358 -22.954 43.456 -23.138 43.611 -23.322 43.630 -23.579 43.766 -23.708 43.650 -24.277 43.669 -24.643 43.941 -24.844 43.980 -25.044 44.096 -25.135 44.291 -25.282 44.504 -25.318 44.757 -25.590 45.145 -25.572 45.553 -25.391 45.844 -25.209 46.232 -25.154 46.776 -25.062 46.970 -24.880 47.145 -24.515 47.320 -24.313 47.358 -23.799 47.591 -23.616 47.611 -23.193 47.766 -22.345 47.960 -21.642 48.271 -20.397 48.621 -20.005 48.795 -19.968 48.757 -19.968 48.815 -19.201 49.048 -18.451 49.358 -18.245 49.397 -18.150 49.455 -17.981 49.455 -17.794 49.514 -17.228 49.475 -16.926 49.611 -16.529 49.863 -16.341 49.844 -16.019 49.689 -15.829 49.708 -15.640 49.669 -15.431 49.766 -15.564 49.922 -15.754 50.019 -15.924 50.155 -15.849 50.329 -15.640 50.407 -15.450 50.485 -15.261 50.504 -14.919 50.310 -14.729 50.252 -14.538 50.213 -14.329 50.232 -14.139 50.174 -13.758 50.135 -13.186 49.941 -12.995 49.922 -12.804 49.805 -12.651 49.611 -12.460 49.572 -12.268 49.417 -12.287 49.222 -12.097 49.358 -12.058 49.164 -12.249 49.145 -12.460 48.970 -12.402 48.776 -12.594 48.893 -12.785 48.951 -12.995 48.912 -13.072 48.854 -13.263 48.854 -13.435 48.659 -13.529 48.465 -13.719 48.349 -13.586 48.135 -13.586 47.941 -13.777 47.883 -13.967 48.019 -14.062 48.038 -14.234 47.922 -14.367 47.727 -14.576 47.805 -14.615 47.999 -14.767 47.999 -14.653 47.902 -14.710 47.708 -15.109 47.417 -14.710 47.514 -14.843 47.320 -15.033 47.242 -15.223 47.067 -15.412 47.242 -15.450 47.203 -15.450 47.145 -15.488 47.106 -15.412 47.028 -15.203 46.951 -15.469 46.543 -15.640 46.349 -15.829 46.329 -15.962 46.485 -15.943 46.407 -15.981 46.349 -15.905 46.291 -15.716 46.232 -15.849 46.038 -15.792 45.747 -16.094 45.359 -16.000 45.164 -16.189 44.970 -16.226 44.873 -16.189 44.679 -16.189 44.465 -16.378 44.407 -16.567 44.446 -16.737 44.407 -17.115 44.155 -17.511 43.941 -17.794 44.038 -18.000 44.019 -18.376 44.057 -18.770 44.252 -18.957 44.232 -19.145 44.271 -19.313 44.388 -19.350 44.446 -19.538 44.485 -19.650 44.426 -19.818 44.407 -19.856 44.446 -20.005 44.485 -20.061 44.465 -20.304 44.271 -20.713 44.057 -20.899 43.902 -21.085 43.864 -21.289 43.747 -21.270 43.630 -21.382 43.494 -21.568 43.475 -21.753 43.358 -22.067 43.242 ; #881 2 -11.809 43.475 -11.425 43.262 -11.809 43.262 -11.943 43.475 ; #882 2 -12.345 43.864 -12.345 43.669 -12.383 43.864 ; #883 2 -12.172 44.524 -12.230 44.329 -12.383 44.524 ; #884 2 -16.699 50.019 -16.756 49.980 -16.945 49.922 -16.756 50.019 ; #885 2 12.192 52.349 12.192 52.154 12.135 52.349 ; #886 2 12.345 54.077 12.556 54.485 12.689 54.077 12.651 53.883 12.689 53.494 12.498 53.378 12.364 53.572 12.307 53.766 ; #887 -5 43.509 40.116 43.589 40.232 43.509 40.562 43.541 40.698 43.381 41.106 43.349 41.281 43.222 41.669 43.206 41.902 43.190 42.116 43.238 42.368 43.174 42.562 43.174 42.776 43.126 42.970 42.965 43.164 42.901 43.397 42.853 43.611 42.757 43.805 42.709 43.825 42.645 43.747 42.564 43.941 42.612 44.116 42.629 44.193 42.709 44.407 42.757 44.640 42.741 44.659 42.709 44.854 42.725 45.009 42.693 45.087 42.548 45.475 42.532 45.650 42.484 45.766 42.307 45.708 42.145 45.786 42.096 45.941 41.983 46.135 41.935 46.329 41.903 46.465 41.725 46.893 41.562 47.048 41.432 47.261 41.270 47.378 41.204 47.747 41.318 47.941 41.480 48.096 41.480 48.135 41.594 48.426 41.627 48.446 41.789 48.562 41.822 48.582 41.838 48.601 41.400 49.067 41.074 49.203 40.910 49.358 40.780 49.553 40.616 49.611 40.567 49.824 40.584 50.019 40.387 50.368 40.223 50.407 40.338 50.213 40.321 50.019 40.354 49.922 40.173 49.514 39.992 49.494 39.679 49.397 39.514 49.300 39.349 49.378 39.266 49.242 39.099 49.145 39.116 48.951 38.950 48.951 38.784 48.854 38.617 48.893 38.434 48.912 38.451 48.834 38.384 48.640 38.417 48.621 38.417 48.601 38.617 48.446 38.701 48.252 38.784 48.116 38.950 48.096 38.983 48.291 39.066 48.329 39.149 48.232 39.315 48.174 39.382 48.368 39.398 48.368 39.563 48.193 39.712 47.980 39.663 47.805 39.630 47.786 39.530 47.591 39.464 47.397 39.200 47.048 39.132 46.834 39.033 46.757 38.867 46.543 38.900 46.388 38.834 46.193 38.883 46.057 38.900 45.844 38.950 45.650 38.983 45.494 39.000 45.436 39.083 45.397 39.200 45.300 39.299 45.126 39.415 45.009 39.630 44.834 39.712 44.795 39.877 44.562 39.976 44.485 39.992 44.407 40.008 44.388 40.041 44.271 40.025 44.193 40.008 44.077 40.041 43.883 40.058 43.844 40.124 43.669 40.239 43.708 40.403 43.630 40.551 43.669 40.649 43.747 40.682 43.766 40.731 43.766 40.796 43.747 40.977 43.630 41.107 43.475 41.188 43.242 41.237 43.223 41.253 43.184 41.302 43.223 41.400 43.028 41.497 42.912 41.513 42.795 41.578 42.854 41.578 42.601 41.448 42.524 41.497 42.135 41.497 41.941 41.432 41.844 41.464 41.747 41.513 41.572 41.529 41.553 41.789 41.766 41.886 41.786 42.209 41.669 42.404 41.553 42.564 41.533 42.741 41.436 42.789 41.242 42.949 41.067 43.062 40.854 43.126 40.465 43.270 40.271 43.381 40.019 43.397 39.980 ; #888 -4 50.782 41.184 50.827 41.378 50.959 41.572 51.018 41.747 51.076 41.786 51.209 41.980 51.164 42.077 51.135 42.193 51.135 42.290 51.164 42.485 51.238 42.679 51.224 42.893 51.399 42.854 51.428 42.815 51.545 42.582 51.603 42.504 51.750 42.582 51.793 42.640 52.098 42.757 52.229 42.854 52.373 42.931 52.402 43.087 52.460 43.262 52.388 43.417 52.417 43.553 52.417 43.689 52.402 43.883 52.344 44.057 52.330 44.271 52.417 44.465 52.503 44.543 52.474 44.737 52.344 45.009 52.417 45.145 52.417 45.359 52.474 45.533 52.474 45.727 52.431 45.883 52.618 46.252 52.690 46.446 52.618 46.834 52.719 46.853 52.819 46.989 52.964 46.931 53.121 46.951 53.135 46.970 53.264 46.951 53.349 46.912 53.436 46.698 53.549 46.504 53.734 46.368 53.876 46.213 53.890 46.232 53.933 46.213 54.003 46.019 53.989 45.824 54.074 45.922 54.159 46.135 54.188 46.349 54.258 46.543 54.385 46.737 54.413 46.562 54.497 46.504 54.624 46.524 54.778 46.446 54.750 46.562 54.680 46.757 54.624 46.853 54.680 47.048 54.680 47.261 54.652 47.300 54.525 47.455 54.554 47.650 54.694 47.747 54.638 47.883 54.764 48.077 54.764 48.096 54.736 48.193 54.680 48.291 54.624 48.485 54.652 48.640 54.652 48.834 54.666 48.873 54.736 48.951 54.792 49.145 54.876 49.320 54.736 49.514 54.568 49.572 54.568 49.766 54.525 49.960 54.511 50.019 54.511 50.096 54.497 50.155 54.455 50.349 54.342 50.543 54.357 50.562 54.399 50.776 54.399 50.970 54.413 51.009 54.568 51.106 54.680 51.397 54.638 51.533 54.554 51.727 54.540 51.922 54.413 52.057 54.483 52.446 54.455 52.504 54.371 52.543 54.286 52.213 54.230 52.349 54.088 52.446 53.848 52.368 53.776 52.349 53.634 52.232 53.450 52.154 53.306 52.174 53.121 52.154 52.978 51.999 52.935 51.922 52.891 51.844 52.748 51.766 52.662 51.727 52.647 51.533 52.503 51.514 52.344 51.417 52.214 51.455 52.184 51.455 52.040 51.320 51.924 51.125 51.851 50.931 51.764 50.795 51.677 50.795 51.589 50.815 51.618 50.620 51.472 50.562 51.268 50.213 51.238 50.019 51.209 49.941 51.106 49.805 51.106 49.611 51.018 49.397 50.856 49.436 50.797 49.242 50.694 49.048 50.605 48.815 50.649 48.601 50.502 48.698 50.339 48.737 50.043 48.931 49.998 48.893 49.982 48.893 49.893 48.640 49.878 48.601 49.863 48.349 49.998 48.155 50.057 48.155 50.205 47.980 50.443 47.650 50.368 47.455 50.294 47.339 49.998 47.281 49.878 46.970 49.565 46.873 49.400 46.834 49.326 46.853 49.266 46.970 49.206 47.067 49.055 47.009 48.950 46.815 48.800 46.718 48.724 46.679 48.664 46.640 48.406 46.543 48.361 46.757 48.240 47.145 48.194 47.125 47.890 47.184 47.859 47.184 47.752 47.261 47.737 47.300 47.707 47.358 47.813 47.417 47.829 47.417 47.844 47.455 47.829 47.494 47.798 47.572 47.768 47.669 47.783 48.077 47.661 48.271 47.554 48.349 47.417 48.543 47.109 48.718 46.863 48.951 46.694 48.912 46.771 48.718 46.694 48.504 46.663 48.485 46.602 48.601 46.555 48.757 46.478 48.854 46.493 48.931 46.338 49.242 46.322 49.145 46.168 49.028 46.137 48.893 46.044 48.834 46.090 48.640 45.966 48.757 45.810 48.718 45.966 48.562 45.872 48.368 45.763 48.291 45.685 47.766 45.763 47.572 45.623 47.591 45.732 47.397 45.576 47.494 45.638 47.320 45.576 46.912 45.747 46.951 45.982 47.086 45.997 47.086 46.121 47.164 46.121 47.145 46.090 46.931 46.245 46.873 46.291 46.504 46.307 46.524 46.431 46.718 46.431 46.912 46.602 46.970 46.709 47.164 46.848 47.106 47.125 46.718 47.310 46.582 47.325 46.562 47.386 46.543 47.417 46.524 47.432 46.524 47.448 46.543 47.463 46.582 47.478 46.621 47.478 46.640 47.493 46.679 47.524 46.718 47.524 46.737 47.539 46.776 47.615 46.679 47.615 46.660 47.600 46.640 47.524 46.543 47.493 46.504 47.448 46.291 47.508 46.096 47.630 45.941 48.026 45.669 48.042 45.475 48.103 45.320 48.134 45.126 48.194 45.009 48.103 44.892 48.088 44.698 48.058 44.582 48.210 44.543 48.255 44.349 48.179 44.310 48.026 44.485 47.874 44.349 47.890 44.193 47.783 43.999 47.768 43.883 47.630 43.689 47.478 43.747 47.448 43.689 47.478 43.514 47.448 43.320 47.569 43.106 47.569 43.087 47.600 42.893 47.752 42.776 47.813 42.757 47.859 42.737 48.026 42.485 48.011 42.290 48.026 42.135 48.088 42.038 48.391 42.077 48.482 42.232 48.512 42.427 48.527 42.562 48.618 42.718 48.724 42.679 48.875 42.679 48.995 42.601 49.145 42.193 49.251 42.038 49.400 42.057 49.550 42.135 49.595 42.135 49.715 42.174 49.834 41.980 49.998 41.592 50.220 41.378 50.368 41.514 50.487 41.436 50.635 41.397 50.767 41.184 ; #889 2 80.596 45.009 80.588 45.223 80.529 45.630 80.546 45.844 80.521 46.057 80.437 46.096 80.454 46.291 80.554 46.698 80.554 46.931 80.638 47.339 80.730 47.494 80.763 47.708 80.655 48.116 80.613 48.737 80.696 48.621 80.780 48.582 80.813 48.368 80.796 47.941 80.855 47.514 80.838 47.300 80.772 47.086 80.747 46.873 80.747 46.660 80.688 46.252 80.630 44.970 ; #890 2 80.082 47.844 80.125 48.252 80.108 48.465 80.192 48.504 80.142 48.931 80.235 49.048 80.277 48.834 80.370 48.795 80.370 49.650 80.403 49.844 80.487 49.766 80.521 50.174 80.529 50.815 80.546 51.028 80.630 51.261 80.630 51.455 80.663 51.669 80.739 51.455 80.780 51.242 80.755 50.834 80.755 50.620 80.714 50.407 80.796 50.485 80.829 50.931 80.913 50.892 80.855 50.252 80.855 50.058 80.896 50.271 80.913 50.077 80.896 49.863 80.846 49.650 80.780 49.048 80.730 49.242 80.704 49.436 80.722 49.630 80.638 49.650 80.647 49.417 80.563 49.261 80.521 49.048 80.496 48.834 80.513 48.621 80.563 48.407 80.529 48.193 80.537 47.999 80.454 47.397 80.470 47.805 80.462 48.038 80.420 48.252 80.412 47.805 80.353 48.019 80.311 47.805 80.311 47.203 80.361 46.989 80.327 46.776 80.243 46.834 80.167 47.067 80.235 47.475 80.243 47.669 80.243 47.883 80.201 48.096 80.175 47.883 80.125 47.689 80.099 47.650 ; #891 2 80.057 49.902 80.125 50.096 80.218 50.252 80.235 50.038 80.209 49.824 80.116 49.689 80.065 49.883 ; #892 2 79.980 50.562 79.997 50.329 79.963 50.135 79.946 50.349 79.920 51.203 79.946 51.417 79.997 51.222 80.057 51.242 80.099 51.028 80.057 50.815 79.997 50.620 ; #893 2 81.020 50.388 81.086 50.776 81.103 50.989 81.161 50.795 81.161 50.601 81.120 50.407 81.037 50.426 ; #894 2 71.144 53.203 71.261 53.203 71.250 53.009 71.366 52.834 71.271 53.028 71.377 52.873 71.366 52.465 71.271 52.271 71.198 52.679 71.081 52.815 70.975 53.009 ; #895 2 80.167 52.679 80.184 53.320 80.201 53.533 80.285 53.689 80.319 53.494 80.412 53.281 80.403 52.892 80.319 52.737 80.285 52.523 80.218 52.329 ; #896 2 80.462 53.902 80.420 54.310 80.504 54.465 80.588 54.251 80.596 54.057 80.588 53.863 80.496 53.844 ; #897 2 80.780 54.116 80.780 54.543 80.730 54.756 80.722 54.951 80.763 55.358 80.780 55.766 80.805 55.999 80.896 55.106 80.838 54.892 80.863 54.679 80.846 54.485 80.855 54.251 80.829 54.019 ; #898 2 80.996 54.465 80.954 55.106 80.963 55.300 80.905 55.514 80.888 55.708 80.846 55.902 80.813 56.523 80.688 57.145 80.739 57.553 80.829 57.611 80.905 56.795 80.979 56.582 81.037 56.135 81.012 55.708 81.012 55.475 81.053 55.281 81.111 54.620 81.020 54.446 ; #899 2 80.655 55.630 80.630 55.844 80.630 56.077 80.647 56.290 80.630 56.718 80.655 56.931 80.739 56.776 80.780 56.562 80.763 55.941 80.730 55.708 80.722 55.514 ; #900 2 81.201 55.591 81.193 55.999 81.218 56.213 81.169 56.426 81.276 57.456 81.276 57.688 81.292 57.902 81.324 57.708 81.309 57.514 81.374 57.086 81.374 56.854 81.390 56.640 81.341 56.426 81.251 56.543 81.316 55.921 81.324 55.727 81.309 55.533 81.218 55.572 ; #901 2 80.091 55.844 80.073 56.057 80.065 56.912 80.091 57.106 80.175 57.125 80.353 57.067 80.361 56.834 80.319 56.620 80.345 56.174 80.260 55.980 80.175 56.018 80.125 55.824 ; #902 2 81.070 56.290 81.029 56.737 80.963 56.951 80.954 57.164 80.880 57.378 80.846 57.785 80.929 58.213 80.963 57.785 81.029 57.591 81.053 57.164 81.095 56.756 81.103 56.116 ; #903 2 81.374 58.271 81.439 58.504 81.472 58.310 81.479 58.096 81.512 57.863 81.561 57.649 81.529 57.436 81.521 57.222 81.496 57.028 81.439 56.815 81.422 57.242 81.431 57.456 81.390 57.649 81.366 58.096 ; #904 2 70.558 57.067 70.579 56.873 70.504 57.067 ; #905 2 80.099 57.999 80.184 57.960 80.184 58.154 80.235 58.349 80.277 58.154 80.311 58.368 80.311 58.562 80.336 58.756 80.327 58.989 80.378 59.183 80.470 58.368 80.487 57.941 80.487 57.319 80.454 57.086 80.387 57.280 80.303 57.261 80.218 57.300 80.125 57.456 80.108 57.649 ; #906 2 81.144 57.183 81.128 57.611 81.153 57.805 81.234 57.921 81.218 57.514 81.177 57.106 ; #907 2 80.946 58.368 80.954 58.582 81.037 58.679 81.095 58.271 81.103 58.057 81.037 57.863 ; #908 2 80.780 57.941 80.747 58.543 80.780 58.756 80.780 58.951 80.863 58.970 80.896 58.776 80.880 58.368 80.829 57.960 ; #909 2 81.739 58.679 81.739 59.300 81.828 59.436 81.852 59.222 81.820 58.154 81.788 57.960 81.772 58.154 81.691 58.077 ; #910 2 81.324 58.485 81.300 58.698 81.284 59.106 81.366 59.300 81.399 59.106 81.399 58.892 81.341 58.485 ; #911 2 75.904 58.815 75.923 59.009 75.979 59.203 75.923 58.815 ; #912 2 79.971 59.067 79.920 59.261 79.946 59.708 79.997 59.921 80.015 59.844 80.099 59.688 80.116 59.455 80.073 59.067 79.997 58.854 ; #913 2 80.504 59.319 80.428 59.727 80.437 59.921 80.487 60.349 80.412 60.931 80.428 61.145 80.504 61.339 80.521 61.572 80.596 61.785 80.604 61.980 80.772 62.290 80.855 62.135 80.880 61.941 80.888 61.727 80.821 61.048 80.796 60.426 80.813 60.018 80.846 60.213 80.846 59.999 80.821 59.785 80.714 59.378 80.630 59.280 80.537 59.319 ; #914 2 80.971 60.154 80.938 60.368 80.913 60.989 80.938 61.183 81.029 61.591 81.120 61.591 81.120 61.145 81.095 60.737 81.045 60.310 81.004 60.116 ; #915 2 81.578 61.785 81.545 61.980 81.569 62.213 81.610 61.785 ; #916 2 81.667 62.193 81.650 62.426 81.618 62.621 81.594 63.047 81.586 63.494 81.610 63.708 81.691 63.688 81.715 63.475 81.724 63.281 81.699 62.834 81.715 62.621 81.683 62.174 ; #917 2 80.805 62.523 80.680 63.164 80.714 63.572 80.739 64.407 80.755 64.640 80.813 65.047 80.863 65.261 80.954 65.455 81.037 65.436 81.120 65.281 81.161 65.086 81.185 64.892 81.185 64.465 81.161 64.271 81.070 64.193 80.987 64.076 80.971 63.203 80.913 62.989 80.846 62.582 ; #918 4 66.581 70.077 66.710 70.018 66.756 69.746 66.721 69.533 66.791 69.339 66.791 69.145 66.768 69.339 66.686 69.533 66.570 69.610 66.500 69.805 66.500 70.018 ; #919 4 73.267 70.077 73.165 70.018 73.135 69.941 73.024 70.018 73.064 70.018 73.034 70.426 73.115 70.834 73.115 71.048 73.135 71.242 73.237 71.668 73.338 71.493 73.257 71.279 73.358 71.107 73.459 71.223 73.509 71.010 73.489 70.426 73.459 70.212 73.408 70.018 73.338 70.018 ; #920 4 66.639 70.407 66.523 70.600 66.512 70.794 66.558 71.010 66.686 70.621 ; #921 4 73.297 71.261 73.398 71.358 73.338 71.164 ; #922 4 72.943 74.290 72.891 74.484 72.860 74.697 72.973 74.659 73.074 74.716 73.085 74.932 73.125 74.524 73.125 74.309 73.024 74.114 ; #923 4 73.469 75.493 73.449 75.708 73.459 75.903 73.569 75.940 73.559 75.727 73.519 75.514 73.419 75.320 ; #924 4 73.469 76.698 73.539 76.291 73.529 76.097 ; #925 4 73.135 76.407 73.186 76.601 73.197 76.407 73.165 76.194 ; #926 4 72.285 76.990 72.295 77.804 72.379 77.998 72.420 78.211 72.533 78.349 72.584 78.136 72.626 77.726 72.584 77.494 72.410 77.087 72.347 76.892 ; #927 -2 29.975 48.135 29.922 48.213 29.816 48.077 29.638 48.174 29.709 48.368 29.851 48.310 29.975 48.193 ; #928 2 27.311 49.689 27.329 49.669 27.293 49.455 ; #929 2 29.264 50.349 29.246 50.310 29.211 50.329 ; #930 2 25.954 50.620 26.136 50.620 26.172 50.465 25.972 50.465 25.790 50.582 ; #931 5 24.149 53.922 24.240 53.863 24.130 53.805 ; #932 5 -20.881 55.533 -20.918 55.320 -21.103 55.261 -21.289 55.417 -21.364 55.611 -21.344 55.805 -21.159 55.863 -20.992 55.727 ; #933 2 26.986 56.251 26.932 55.844 26.769 55.708 26.697 55.514 26.534 55.320 26.805 56.116 26.950 56.310 ; #934 5 -20.005 57.591 -20.191 57.417 -20.378 57.378 -20.508 57.572 -20.359 57.766 -20.173 57.766 -20.005 57.688 ; #935 5 20.360 58.815 20.546 58.815 20.360 58.659 20.173 58.659 ; #936 -5 58.145 46.349 58.331 46.465 58.345 46.485 58.385 46.524 58.398 46.562 58.531 46.601 58.570 46.621 58.583 46.834 58.651 47.028 58.783 47.145 58.783 47.300 58.915 47.358 59.007 47.572 59.152 47.455 59.205 47.281 59.336 47.261 59.481 47.086 59.611 47.125 59.755 47.145 59.859 46.951 60.002 47.009 60.015 47.009 60.119 47.028 60.067 46.815 60.067 46.621 60.107 46.426 60.132 46.388 60.262 46.407 60.274 46.621 60.313 46.815 60.648 46.970 60.674 47.009 60.687 47.009 60.816 47.106 60.829 47.086 60.854 47.048 61.033 47.203 61.058 47.397 61.058 47.553 61.020 47.844 60.880 48.038 60.854 48.426 60.816 48.446 60.674 48.523 60.443 48.621 60.403 48.601 60.403 48.698 60.274 48.621 60.132 48.465 60.002 48.504 59.859 48.504 59.702 48.601 59.689 48.718 59.663 48.951 59.663 49.086 59.585 49.086 59.585 49.067 59.481 49.048 59.481 49.261 59.415 49.358 59.362 49.553 59.231 49.572 59.218 49.766 59.283 49.824 59.559 49.824 59.676 50.019 59.781 50.019 59.768 50.096 59.872 50.698 59.924 50.892 60.002 51.009 60.054 51.203 60.002 51.378 59.976 51.591 60.002 51.630 60.119 51.824 60.249 51.922 60.313 52.096 60.236 52.310 60.210 52.426 60.171 52.815 60.158 53.242 60.223 53.475 60.145 53.630 60.002 53.727 59.728 53.630 59.689 53.436 59.468 53.339 59.336 53.222 59.205 53.320 59.113 53.669 59.113 53.863 58.980 53.747 58.875 53.766 58.756 53.883 58.610 53.727 58.438 53.805 58.305 53.883 58.172 53.902 58.010 54.077 57.943 54.096 57.756 54.154 57.716 54.174 57.581 53.999 57.554 54.193 57.514 54.174 57.379 54.154 57.230 54.329 57.203 54.329 57.039 54.407 57.012 54.213 56.877 54.096 56.768 54.096 56.768 54.077 56.754 53.941 56.618 53.863 56.632 53.960 56.673 54.057 56.604 54.077 56.591 54.057 56.563 54.096 56.536 54.135 56.453 54.349 56.358 54.368 56.358 54.349 56.317 54.349 56.262 54.368 56.248 54.349 56.180 54.193 56.042 54.057 56.042 53.863 55.918 53.650 55.904 53.553 55.849 53.300 55.931 53.203 56.000 53.397 56.125 53.494 56.262 53.475 56.234 53.281 56.111 53.203 56.193 53.009 56.248 52.970 56.385 52.970 56.523 53.048 56.523 53.028 56.536 53.028 56.536 52.951 56.509 52.951 56.509 52.892 56.494 52.873 56.467 52.970 56.453 52.970 56.412 52.912 56.371 52.756 56.234 52.659 56.221 52.737 56.111 52.756 56.056 52.562 56.042 52.504 56.070 52.310 56.083 52.213 55.945 52.232 55.959 52.018 55.918 51.844 55.959 51.650 55.918 51.455 55.986 51.417 56.152 51.650 56.138 51.455 56.070 51.339 56.138 51.203 56.193 50.989 56.207 50.970 56.289 50.912 56.344 50.795 56.330 50.718 56.467 50.524 56.494 50.524 56.618 50.485 56.645 50.291 56.618 50.077 56.727 50.096 56.863 50.019 56.890 49.805 57.067 49.727 57.039 49.339 57.176 49.145 57.230 49.184 57.107 48.989 57.080 48.893 57.176 48.698 57.134 48.504 57.162 48.310 57.134 48.271 56.999 48.135 56.999 47.883 57.012 47.708 56.877 47.514 56.877 47.455 56.836 47.242 56.917 47.048 56.931 46.893 56.972 46.718 57.053 46.776 57.189 46.737 57.217 46.853 57.352 46.679 57.487 46.776 57.527 46.815 57.500 47.009 57.487 47.028 57.541 47.222 57.527 47.417 57.648 47.553 57.675 47.553 57.689 47.533 57.957 47.669 57.984 47.475 58.024 47.320 58.024 46.718 58.037 46.407 58.077 46.349 ; #937 -4 48.724 46.679 48.800 46.718 48.950 46.815 49.055 47.009 49.206 47.067 49.266 46.970 49.326 46.853 49.400 46.834 49.565 46.873 49.878 46.970 49.998 47.281 50.294 47.339 50.368 47.455 50.443 47.650 50.205 47.980 50.057 48.155 49.998 48.155 49.863 48.349 49.878 48.601 49.893 48.640 49.982 48.893 49.998 48.893 50.043 48.931 50.339 48.737 50.502 48.698 50.649 48.601 50.605 48.815 50.694 49.048 50.797 49.242 50.856 49.436 51.018 49.397 51.106 49.611 51.106 49.805 51.209 49.941 51.238 50.019 51.268 50.213 51.472 50.562 51.618 50.620 51.589 50.815 51.677 50.795 51.764 50.795 51.851 50.931 51.924 51.125 52.040 51.320 52.184 51.455 52.214 51.455 52.344 51.417 52.503 51.514 52.647 51.533 52.662 51.727 52.748 51.766 52.891 51.844 52.935 51.922 52.978 51.999 53.121 52.154 53.306 52.174 53.450 52.154 53.634 52.232 53.776 52.349 53.848 52.368 54.088 52.446 54.230 52.349 54.286 52.213 54.371 52.543 54.371 52.582 54.357 52.601 54.357 52.737 54.272 52.931 54.314 53.009 54.342 53.048 54.286 53.125 54.144 53.028 54.074 53.067 54.046 53.475 54.202 53.436 54.342 53.358 54.483 53.436 54.497 53.436 54.638 53.553 54.736 53.611 54.834 53.611 54.876 53.533 55.002 53.417 55.002 53.320 55.016 53.300 55.030 53.281 55.058 53.281 55.071 53.222 55.085 53.222 55.141 53.145 55.155 53.222 55.211 53.378 55.197 53.591 55.475 53.960 55.544 53.999 55.627 54.193 55.780 54.116 55.780 53.980 55.876 53.902 55.890 53.786 55.918 53.650 56.042 53.863 56.042 54.057 56.180 54.193 56.248 54.349 56.262 54.368 56.317 54.349 56.358 54.349 56.358 54.368 56.453 54.349 56.536 54.135 56.563 54.096 56.591 54.057 56.604 54.077 56.673 54.057 56.632 53.960 56.618 53.863 56.754 53.941 56.768 54.077 56.768 54.096 56.877 54.096 57.012 54.213 57.039 54.407 57.203 54.329 57.230 54.329 57.379 54.154 57.514 54.174 57.554 54.193 57.581 53.999 57.716 54.174 57.756 54.154 57.943 54.096 58.010 54.077 58.172 53.902 58.305 53.883 58.438 53.805 58.610 53.727 58.756 53.883 58.875 53.766 58.980 53.747 59.113 53.863 59.113 53.669 59.205 53.320 59.336 53.222 59.468 53.339 59.689 53.436 59.728 53.630 60.002 53.727 60.145 53.630 60.223 53.475 60.158 53.242 60.171 52.815 60.210 52.426 60.236 52.310 60.313 52.349 60.339 52.349 60.572 51.941 60.712 51.824 60.816 51.883 60.867 52.077 60.854 52.116 60.841 52.310 60.969 52.426 60.956 52.718 61.084 52.892 61.046 53.281 60.918 53.358 60.867 53.553 60.854 53.766 60.982 53.863 60.893 54.718 60.867 54.931 60.880 55.009 61.007 55.067 61.109 55.456 61.084 55.669 61.225 55.824 61.238 55.980 61.212 56.193 61.390 56.368 61.517 56.776 61.504 56.912 61.479 57.125 61.504 57.319 61.504 58.698 61.593 59.087 61.632 59.145 61.682 59.358 61.808 59.339 61.997 59.494 62.122 59.416 62.374 59.611 62.474 59.649 62.598 59.475 62.735 59.397 62.859 59.475 62.933 59.455 62.996 59.261 63.132 59.319 63.353 59.339 63.599 59.514 63.721 59.514 63.843 59.591 63.978 59.708 64.099 59.863 64.233 59.611 64.354 59.649 64.474 59.514 64.679 59.708 64.799 59.688 64.979 60.018 65.074 60.213 65.063 60.407 64.907 60.678 65.027 60.795 65.050 61.009 65.170 61.125 65.253 61.300 65.372 61.378 65.490 61.514 65.585 61.708 65.692 61.863 65.716 62.038 65.857 62.621 65.868 62.814 65.974 62.892 66.091 62.931 66.209 63.028 66.244 63.242 66.314 63.261 66.430 63.397 66.535 63.785 66.651 63.980 66.651 64.018 66.662 64.212 66.802 64.620 66.825 64.814 66.872 64.970 66.929 65.125 67.021 65.086 67.148 65.183 67.285 65.591 67.388 65.708 67.388 65.921 67.468 66.116 67.560 65.902 67.628 65.824 67.708 66.232 67.821 66.038 67.934 66.096 67.934 65.591 67.957 65.397 68.182 65.300 68.307 65.378 68.430 65.494 68.542 65.669 68.642 65.475 68.754 65.339 68.799 65.319 68.810 65.125 68.876 64.931 68.854 64.737 68.898 64.543 68.976 64.543 69.153 64.853 69.186 64.931 69.274 65.047 69.175 65.455 69.131 65.863 69.120 65.650 69.065 65.863 68.998 66.271 68.898 66.659 68.854 67.067 68.743 67.164 68.519 67.766 68.408 68.174 68.296 68.212 68.227 68.407 68.318 68.620 68.307 68.659 68.430 68.659 68.542 68.834 68.765 69.028 68.876 68.970 68.943 69.183 68.954 68.970 68.909 68.756 68.954 68.562 69.186 68.193 69.297 68.057 69.407 68.115 69.516 68.115 69.494 67.902 69.550 67.688 69.626 67.494 69.637 67.281 69.691 67.086 69.637 66.892 69.527 66.970 69.648 66.795 69.757 66.776 69.985 66.873 69.996 66.970 69.996 67.242 70.116 67.300 70.224 67.106 70.450 67.261 70.558 67.242 70.783 67.339 70.836 67.145 70.772 66.737 70.878 66.620 70.985 66.834 71.091 66.853 71.017 66.640 71.229 66.873 71.303 67.086 71.451 67.688 71.693 68.310 71.901 68.543 72.326 68.834 72.533 68.892 72.636 68.970 72.748 69.106 72.850 69.300 72.963 69.377 72.973 69.591 72.931 69.805 72.881 69.591 72.901 70.232 72.891 71.261 72.911 71.474 72.891 71.668 72.809 71.881 72.820 72.075 72.738 72.679 72.636 72.795 72.430 72.814 72.316 72.874 72.099 72.698 71.996 72.582 71.911 72.542 71.849 72.348 71.745 72.369 71.629 72.232 71.514 71.843 71.408 71.903 71.292 72.075 71.177 72.485 71.059 72.658 70.953 72.717 70.846 72.852 70.622 72.698 70.515 72.795 70.407 72.717 70.332 72.523 70.213 72.523 70.105 72.582 69.996 72.542 69.834 72.698 69.724 72.620 69.604 72.582 69.494 72.639 69.385 72.582 69.274 72.639 69.153 72.485 68.931 72.601 68.821 72.795 68.699 73.203 68.553 73.591 68.441 73.650 68.419 73.456 68.182 73.124 68.070 73.106 67.957 73.222 67.833 73.165 67.719 73.165 67.628 72.758 67.480 72.445 67.366 72.445 67.308 72.251 67.285 72.056 67.171 72.135 67.056 72.019 66.975 71.805 66.883 71.201 66.814 71.010 66.791 70.834 66.791 70.816 66.686 70.407 66.697 70.212 66.791 70.018 66.837 69.979 66.791 69.572 66.825 69.377 66.802 68.989 66.697 69.125 66.570 69.203 66.512 69.397 66.454 69.805 66.326 70.387 66.360 71.010 66.349 71.395 66.326 71.611 66.244 71.824 66.221 72.019 66.302 72.369 66.546 72.426 66.627 72.620 66.639 72.833 66.733 73.027 66.814 73.435 66.917 73.629 66.964 73.823 67.090 73.920 67.320 73.979 67.446 74.136 67.514 74.349 67.685 74.737 67.799 74.816 67.934 74.834 68.171 74.716 68.385 74.349 68.497 74.465 68.609 74.427 68.732 74.524 68.876 75.320 68.976 76.153 68.976 76.542 68.865 76.717 68.754 76.698 68.687 76.892 68.575 77.087 68.542 77.281 68.430 77.281 68.318 77.203 68.205 77.359 68.092 77.222 67.980 77.203 67.855 77.281 67.742 77.222 67.560 77.823 67.548 78.114 67.571 78.309 67.548 78.524 67.571 78.581 67.583 78.794 67.560 78.988 67.651 78.794 67.605 78.600 67.696 77.979 67.719 77.942 67.742 77.532 67.855 77.475 68.092 77.513 68.205 77.707 68.250 78.114 68.363 78.077 68.475 77.961 68.586 77.766 68.699 77.766 68.810 77.707 68.920 77.553 69.010 76.949 69.120 76.755 69.153 76.367 69.230 75.959 69.230 75.765 69.263 75.571 69.219 75.358 69.098 74.950 69.076 74.737 69.120 74.543 69.142 74.330 69.076 73.920 69.197 73.766 69.308 73.863 69.418 73.901 69.527 73.804 69.637 73.629 69.746 73.532 69.866 73.669 69.975 73.726 69.996 73.707 70.224 73.845 70.321 74.058 70.547 74.349 70.654 74.330 70.857 73.942 70.964 73.920 71.070 73.707 71.177 73.629 71.282 73.494 71.398 73.087 71.503 73.203 71.598 73.397 71.703 73.532 71.807 73.532 71.859 73.726 71.996 74.524 72.058 74.775 72.120 74.969 72.223 75.104 72.326 75.126 72.646 75.048 72.748 74.872 72.850 74.932 72.860 75.126 72.820 75.320 72.738 75.552 72.626 75.533 72.316 75.687 71.996 75.455 71.953 75.280 71.839 75.242 71.734 75.280 71.629 75.474 71.514 75.493 71.462 75.301 71.356 75.301 71.303 75.514 71.250 75.903 71.198 76.116 71.208 76.717 71.177 76.930 71.070 76.949 71.187 77.027 71.154 77.707 71.059 77.901 70.953 78.017 70.932 78.233 70.889 78.427 70.922 78.853 71.017 79.048 70.953 78.853 70.953 78.640 70.932 78.446 71.038 78.484 71.144 78.271 71.250 78.309 71.271 78.114 71.345 77.901 71.282 77.688 71.303 77.494 71.430 77.068 71.441 76.874 71.483 76.658 71.598 76.269 71.818 76.116 71.922 76.078 71.974 76.269 72.037 76.679 72.047 76.892 71.974 77.165 71.828 77.572 71.828 77.766 71.901 78.193 72.006 78.211 72.109 78.017 72.109 77.804 72.078 77.610 72.109 77.397 72.223 77.532 72.203 77.726 72.306 77.920 72.358 78.114 72.379 78.524 72.182 78.737 72.109 78.950 72.120 79.010 72.078 79.204 72.037 79.592 72.037 79.806 71.984 80.019 71.932 80.213 71.828 80.056 71.703 80.135 71.629 80.019 71.608 79.806 71.619 79.398 71.503 79.377 71.441 79.182 71.366 79.182 71.271 79.592 71.123 80.019 71.091 80.426 70.985 80.561 70.878 80.582 70.772 80.658 70.751 80.620 70.633 80.777 70.526 80.679 70.418 80.814 70.396 80.717 70.461 80.523 70.450 80.329 70.396 80.116 70.321 80.019 70.127 79.417 70.083 79.339 69.996 79.145 69.964 79.182 69.888 78.988 69.790 79.066 69.680 79.204 69.648 79.417 69.648 79.514 69.429 79.824 69.341 80.019 69.341 80.329 69.308 80.620 69.208 81.008 69.252 81.203 69.274 81.416 69.263 81.435 69.252 81.456 69.319 81.648 69.439 81.766 69.407 81.845 69.186 81.882 69.142 82.484 69.032 82.349 68.920 82.562 68.810 82.621 68.687 83.007 68.664 83.048 68.631 82.853 68.531 82.640 68.419 82.719 68.283 82.719 68.171 82.503 68.171 82.406 68.059 82.406 67.946 82.252 67.946 81.823 67.889 81.766 67.776 81.920 67.719 82.114 67.605 82.114 67.548 82.368 67.434 82.290 67.320 82.309 67.217 82.174 66.975 82.816 66.860 83.048 66.744 83.204 66.616 83.182 66.523 83.104 66.407 83.182 66.302 83.396 66.186 83.552 66.139 83.377 66.021 83.339 65.904 83.552 65.786 83.590 65.798 83.978 65.704 84.172 65.585 84.251 65.502 84.523 65.384 84.523 65.264 84.582 65.158 84.388 65.098 84.329 65.015 84.407 64.895 84.310 64.895 84.523 64.931 84.930 64.811 85.068 64.763 85.281 64.823 85.669 64.727 85.864 64.607 85.920 64.474 85.864 64.354 85.961 64.281 86.039 64.159 85.980 64.026 85.864 63.990 85.669 63.880 85.475 63.636 85.240 63.587 85.046 63.526 85.143 63.477 85.359 63.390 85.378 63.267 85.551 63.132 85.475 63.095 85.532 63.008 85.551 62.884 85.456 62.809 85.262 62.685 85.106 62.635 85.106 62.548 84.911 62.424 84.814 62.311 84.620 62.173 84.445 62.085 84.523 61.947 84.542 61.896 84.582 61.796 84.777 61.796 84.971 61.707 85.162 61.695 85.378 61.618 85.513 61.580 85.707 61.580 85.920 61.453 85.823 61.428 85.726 61.301 85.726 60.995 84.658 60.854 84.269 60.829 84.038 60.893 83.843 61.046 83.533 61.007 83.085 60.931 82.891 60.700 82.406 60.558 82.271 60.558 82.077 60.648 81.864 60.623 81.435 60.636 81.240 60.751 81.027 60.776 80.814 60.751 80.407 60.661 80.213 60.674 80.019 60.687 79.611 60.648 79.417 60.789 79.320 60.816 79.261 60.829 79.066 60.776 78.872 60.829 78.659 60.776 78.465 60.776 78.387 60.803 78.193 60.764 77.998 60.829 77.591 60.816 77.416 60.829 77.281 60.841 77.203 60.854 77.124 60.725 77.087 60.712 77.087 60.712 76.990 60.584 77.068 60.481 76.852 60.339 76.755 60.249 76.852 60.119 76.717 60.002 76.755 59.728 76.736 59.585 76.658 59.546 76.464 59.546 76.269 59.428 75.959 59.139 75.668 59.007 75.687 58.651 75.182 58.583 75.126 58.531 75.007 58.318 74.640 58.291 74.621 58.238 74.427 58.132 74.211 58.145 73.143 58.090 72.949 58.037 72.949 58.010 72.758 58.050 72.116 58.117 71.921 58.077 71.514 58.117 71.261 58.265 71.242 58.398 71.301 58.504 71.107 58.531 71.066 58.517 70.872 57.943 70.446 57.836 70.465 57.823 70.446 57.675 70.581 57.581 70.600 57.595 70.659 57.460 70.543 57.325 70.484 57.271 70.640 57.189 70.718 57.325 70.834 57.352 71.029 57.217 71.126 57.203 71.164 56.985 71.571 56.822 71.689 56.713 71.493 56.686 71.279 56.713 71.066 56.563 71.107 56.494 70.988 56.467 70.794 56.330 70.891 56.193 70.816 56.166 70.834 56.097 70.910 55.959 70.853 55.890 70.640 55.807 70.640 55.669 70.562 55.613 70.756 55.489 70.562 55.350 70.523 55.295 70.484 55.224 70.426 55.141 70.232 55.211 70.018 55.309 69.805 55.392 69.358 55.378 69.339 55.406 69.125 55.295 68.931 55.364 68.756 55.364 68.737 55.224 68.659 55.197 68.465 55.197 68.251 55.127 68.232 55.071 68.348 55.002 68.251 55.002 68.232 54.960 68.154 54.974 67.960 54.889 67.766 54.848 67.591 54.848 67.397 54.778 66.989 54.722 66.717 54.722 66.523 54.638 66.116 54.624 66.038 54.666 65.843 54.596 65.494 54.540 65.281 54.399 65.222 54.328 65.086 54.399 65.009 54.342 64.795 54.385 64.620 54.314 64.212 54.314 64.018 54.258 64.018 54.202 63.921 54.202 63.902 54.244 63.688 54.188 63.339 54.102 63.145 54.088 62.737 54.046 62.601 53.905 62.582 54.032 62.387 54.018 62.193 53.947 61.980 54.003 61.708 54.003 61.533 54.074 61.339 53.919 61.261 53.961 61.048 53.890 61.009 53.876 61.125 53.776 61.203 53.663 60.989 53.592 61.145 53.549 61.358 53.592 61.552 53.450 61.455 53.507 61.300 53.364 61.164 53.278 61.358 53.221 61.591 53.150 61.980 53.007 62.135 52.949 61.941 53.007 61.533 52.992 61.145 52.848 60.950 52.748 60.756 52.633 60.756 52.503 60.970 52.344 61.067 52.315 61.028 52.155 60.640 52.112 60.426 51.996 60.213 51.996 60.038 51.953 60.018 51.822 60.426 51.721 60.446 51.618 60.620 51.618 60.950 51.472 61.125 51.428 61.514 51.282 61.630 51.268 61.708 51.179 61.921 51.091 61.999 51.135 62.193 50.974 62.232 50.856 62.446 50.856 62.407 50.708 62.213 50.708 62.407 50.413 62.562 50.294 62.698 49.998 62.950 49.952 62.931 49.938 62.737 49.625 62.465 49.490 62.310 49.341 62.485 49.176 62.446 49.176 62.485 49.025 62.562 48.920 62.717 48.905 62.756 48.830 63.125 48.679 63.106 48.679 63.125 48.512 63.611 48.467 63.747 48.316 63.902 48.149 64.018 47.920 64.251 47.890 64.310 47.768 64.096 47.371 63.281 47.140 62.873 47.132 62.939 47.178 62.725 47.332 62.667 47.485 62.472 47.592 62.278 47.729 62.142 47.821 61.929 47.821 61.715 47.805 61.521 47.775 61.385 47.607 61.288 47.455 61.191 47.301 61.113 47.239 61.074 47.193 60.880 47.208 60.686 47.254 60.492 47.086 60.453 47.070 60.453 46.917 60.336 46.855 60.123 46.824 60.084 46.701 59.890 46.531 59.676 46.376 59.501 46.206 59.346 46.051 59.171 46.004 59.132 45.973 59.113 45.929 59.078 45.929 59.020 45.944 59.000 45.944 58.981 45.929 58.961 45.898 58.961 45.898 58.942 45.913 58.903 45.913 58.845 45.898 58.806 45.866 58.767 45.835 58.728 45.772 58.651 45.726 58.651 45.694 58.632 45.601 58.632 45.570 58.612 45.554 58.592 45.539 58.592 45.523 58.573 45.561 58.582 45.561 58.620 45.514 58.718 45.405 58.931 45.341 59.067 45.247 59.261 45.232 59.300 45.185 59.416 45.169 59.455 45.138 59.514 44.997 59.805 44.902 60.018 44.666 60.504 44.556 60.756 44.461 60.950 44.287 61.125 44.208 61.164 44.050 61.358 43.891 61.552 43.557 61.960 43.477 62.038 43.493 62.096 43.525 62.310 43.541 62.523 43.605 62.950 43.621 63.164 43.621 63.358 43.573 63.999 43.557 64.193 43.557 64.387 43.605 64.601 43.685 64.814 43.668 65.009 43.653 65.047 43.493 65.222 43.381 65.416 43.222 65.611 43.062 65.708 42.901 65.921 42.917 66.135 42.757 66.116 42.596 66.116 42.420 66.077 42.080 66.038 42.000 66.154 42.000 66.348 41.854 66.562 41.676 66.581 41.334 66.679 41.156 66.776 41.139 67.203 41.188 67.708 41.172 67.902 41.188 67.921 41.188 67.941 41.058 68.154 40.944 68.154 40.910 68.135 40.878 68.115 40.812 68.018 40.698 68.232 40.682 68.271 40.616 68.445 40.616 68.659 40.796 68.601 40.812 68.601 40.845 68.581 40.944 68.659 40.993 68.737 41.091 68.834 41.270 69.086 41.432 69.183 41.480 69.358 41.562 69.455 41.644 69.610 41.773 70.018 41.903 70.212 42.064 70.387 42.080 70.446 42.016 70.640 42.177 70.756 42.225 70.932 42.258 70.988 42.258 71.182 42.209 71.279 42.096 71.085 42.048 70.891 41.951 70.872 41.886 70.678 41.660 70.368 41.513 70.212 41.480 70.407 41.416 70.484 41.480 70.678 41.302 70.794 41.253 70.872 41.188 71.066 41.188 71.279 41.123 71.301 41.123 71.417 41.188 71.455 41.351 71.455 41.383 71.649 41.545 71.649 41.432 71.708 41.464 71.787 41.351 71.881 41.204 72.000 41.204 72.172 41.188 72.194 41.172 72.213 41.058 72.232 41.009 72.213 41.041 72.348 41.074 72.369 41.009 72.523 40.861 72.717 40.861 72.911 40.829 72.911 40.829 72.930 40.861 72.990 40.861 73.008 40.845 73.165 40.763 73.106 40.714 72.971 40.698 72.874 40.682 72.874 40.567 72.758 40.551 72.561 40.502 72.445 40.502 72.426 40.469 72.232 40.305 71.978 40.239 72.056 40.256 72.019 40.239 71.978 40.239 71.959 40.207 71.824 40.156 71.765 40.207 71.552 40.305 71.339 40.239 70.988 40.223 70.794 40.256 70.600 40.354 70.484 40.354 70.446 40.371 70.387 40.420 70.368 40.551 70.543 40.731 70.816 40.731 70.794 40.910 70.640 40.993 70.523 41.041 70.484 40.878 70.290 40.763 70.038 40.747 70.018 40.698 69.824 40.714 69.630 40.747 69.591 40.780 69.397 40.616 69.339 40.534 69.242 40.502 69.280 40.420 69.300 40.289 69.339 40.289 69.300 40.256 69.280 40.239 69.300 40.207 69.339 40.189 69.280 40.189 69.261 40.207 69.183 40.223 69.086 40.239 69.048 40.189 68.853 40.207 68.795 40.189 68.659 40.156 68.620 40.140 68.640 40.124 68.717 40.140 68.873 40.156 68.912 40.074 68.950 39.992 68.834 39.877 68.912 39.860 68.659 39.827 68.659 39.547 68.523 39.563 68.135 39.630 67.727 39.514 67.533 39.481 67.455 39.283 67.378 39.016 67.708 38.983 67.863 39.000 67.999 38.900 68.193 38.834 68.193 38.651 68.096 38.484 68.135 38.451 68.135 38.417 68.154 38.217 68.387 38.049 68.348 37.966 68.290 37.949 68.251 37.681 67.999 37.547 67.882 37.210 67.824 37.193 67.785 37.244 67.630 37.227 67.436 37.193 67.300 37.261 67.183 37.344 67.106 37.378 66.970 37.361 66.581 37.361 66.523 37.344 66.504 37.344 66.271 37.563 65.785 37.429 65.650 37.244 65.533 37.210 65.009 37.126 64.814 36.957 64.814 36.856 64.756 36.670 64.640 36.500 64.640 36.347 64.581 36.229 64.387 36.127 64.096 36.025 63.902 35.889 63.514 35.872 63.378 35.855 63.222 35.855 63.125 35.701 63.261 35.684 63.222 35.514 63.125 35.376 62.912 35.256 62.737 35.256 62.543 35.137 62.310 35.240 62.290 35.256 62.290 35.393 62.116 35.462 61.980 35.410 61.844 35.444 61.649 35.548 61.436 35.599 61.300 35.633 61.261 35.803 61.261 35.974 61.145 36.008 61.183 36.178 61.242 36.314 61.164 36.653 61.164 36.653 61.125 36.670 60.349 37.041 60.018 37.126 59.824 37.143 59.630 37.210 59.494 37.378 59.397 37.513 59.242 37.631 59.047 37.698 58.854 37.648 58.718 37.664 58.523 37.631 58.407 37.782 58.213 37.831 57.980 37.898 57.785 37.982 57.378 38.150 57.339 38.250 57.164 38.200 57.009 38.250 56.815 38.284 56.776 38.217 56.368 38.083 56.329 38.066 56.232 38.066 56.038 38.116 55.844 38.100 55.591 37.999 55.281 37.915 55.087 37.831 55.009 37.681 54.815 37.513 54.795 37.496 54.756 37.462 54.718 37.445 54.620 37.327 54.232 37.344 53.999 37.344 53.922 37.748 53.824 38.250 53.863 38.601 53.844 38.767 53.941 38.900 53.980 39.050 53.786 39.216 53.630 39.332 53.417 39.382 53.222 39.216 53.203 39.382 53.145 39.563 53.203 39.696 53.339 39.630 53.533 39.794 53.417 39.959 53.456 40.025 52.912 39.860 52.951 39.992 52.815 40.305 52.718 40.551 52.776 40.878 52.912 41.041 52.931 41.058 52.892 41.383 52.737 41.545 52.582 41.725 52.504 41.741 52.446 41.903 52.504 42.064 52.426 42.548 52.698 42.725 52.582 42.885 52.174 42.853 51.980 43.014 51.786 43.174 51.689 43.142 51.281 43.477 51.320 43.637 51.145 44.113 50.873 44.271 50.679 44.287 50.465 44.334 50.271 44.493 50.252 44.651 50.329 44.603 50.912 44.493 51.106 44.556 51.320 44.509 51.514 44.588 51.320 44.745 51.184 44.839 50.989 44.997 51.087 45.013 51.281 45.169 51.261 45.341 51.417 45.341 51.611 45.405 51.824 45.405 52.407 45.310 52.989 45.326 53.184 45.436 52.989 45.514 52.756 45.576 52.756 45.732 52.853 45.888 53.009 46.059 53.106 46.369 53.145 46.540 53.028 46.648 53.222 46.802 53.106 46.956 52.912 46.940 52.718 46.986 52.523 46.879 52.329 46.817 52.135 46.940 51.727 47.079 51.397 47.109 51.203 47.063 50.989 46.833 50.601 46.833 50.407 46.756 50.213 46.632 50.019 46.509 49.708 46.493 49.514 46.586 49.320 46.384 49.378 46.415 49.184 46.338 49.242 46.493 48.931 46.478 48.854 46.555 48.757 46.602 48.601 46.663 48.485 46.694 48.504 46.771 48.718 46.694 48.912 46.863 48.951 47.109 48.718 47.417 48.543 47.554 48.349 47.661 48.271 47.783 48.077 47.768 47.669 47.798 47.572 47.829 47.494 47.844 47.455 47.829 47.417 47.813 47.417 47.707 47.358 47.737 47.300 47.752 47.261 47.859 47.184 47.890 47.184 48.194 47.125 48.240 47.145 48.361 46.757 48.406 46.543 48.664 46.640 ; #938 -4 40.993 53.028 40.878 53.222 40.993 53.417 41.172 53.320 41.302 53.106 41.286 52.912 41.107 52.951 ; #939 4 39.083 53.067 38.917 53.048 38.750 53.106 ; #940 -5 24.368 51.591 24.204 51.786 24.021 51.805 23.947 51.941 24.039 52.426 24.204 52.620 24.130 52.815 24.130 53.125 24.057 53.727 24.075 53.922 24.259 54.116 24.295 54.096 24.240 54.290 24.551 54.620 24.844 54.815 24.971 55.028 25.245 55.339 25.300 55.339 25.463 55.514 25.572 55.552 25.517 55.572 25.881 56.038 26.081 56.096 26.263 56.232 26.353 56.368 26.371 56.426 26.190 56.368 26.009 56.446 25.627 56.290 25.608 56.349 25.318 56.387 25.063 56.368 24.917 56.407 24.551 56.582 24.185 56.892 24.002 57.086 23.910 57.280 23.726 57.863 23.726 58.077 23.653 58.271 23.597 58.640 23.230 58.989 23.046 59.106 22.659 59.436 22.567 59.630 22.530 59.824 22.437 59.863 22.253 59.824 21.790 59.533 21.605 59.455 21.419 59.319 21.307 59.125 21.141 58.931 20.768 58.737 20.583 58.582 20.360 58.465 20.378 58.271 20.564 58.116 20.191 57.844 20.005 57.824 19.669 57.727 19.538 57.727 19.164 57.824 18.976 57.824 18.901 57.222 18.752 56.834 18.677 56.756 18.488 56.659 18.094 56.523 17.944 56.329 17.869 55.591 17.756 55.397 17.548 55.242 17.360 55.320 17.171 55.222 17.077 55.125 16.983 54.931 16.964 54.737 17.039 54.543 17.002 54.135 17.021 54.096 16.889 53.902 16.813 53.708 16.718 53.320 16.643 53.106 16.699 53.106 17.284 52.834 17.323 52.756 17.342 52.756 17.379 52.737 17.812 52.543 17.831 52.523 18.245 52.349 18.994 52.018 20.005 55.009 21.919 55.649 22.124 55.591 22.714 55.222 22.641 55.009 22.936 52.601 23.432 52.193 23.726 51.922 23.892 51.805 23.910 51.766 24.112 51.611 24.259 51.591 ; #941 -2 73.227 53.533 73.297 53.747 73.267 54.154 73.307 54.349 73.378 54.562 73.419 54.951 73.388 55.145 73.328 55.378 73.328 55.785 73.277 55.980 73.237 56.368 73.155 56.582 73.105 56.368 73.074 55.960 73.054 56.368 73.004 56.174 72.973 55.766 72.943 55.980 72.973 56.174 72.860 56.251 72.769 56.038 72.799 55.844 72.779 55.436 72.738 55.863 72.697 55.649 72.594 55.649 72.584 55.436 72.471 55.552 72.461 55.164 72.430 55.378 72.326 55.436 72.213 55.552 72.109 55.436 72.006 55.397 71.901 55.494 71.787 55.533 71.577 55.727 71.356 56.038 71.250 56.135 70.899 56.951 70.762 57.553 70.654 57.494 70.622 57.300 70.665 57.067 70.665 56.873 70.579 57.280 70.611 56.873 70.665 56.659 70.740 56.465 70.740 56.251 70.590 56.679 70.547 56.465 70.611 56.271 70.686 55.863 70.579 56.057 70.622 55.669 70.740 55.475 70.675 55.281 70.569 55.222 70.665 54.815 70.772 54.620 70.665 54.756 70.675 54.562 70.751 54.368 70.751 54.154 70.783 53.960 70.793 53.747 70.846 53.553 70.857 53.339 70.878 53.553 70.932 53.747 71.038 53.553 71.133 53.980 71.102 54.174 71.219 54.077 71.198 53.689 71.250 53.475 71.356 53.669 71.408 53.883 71.398 53.689 71.292 53.514 71.398 53.320 71.514 53.358 71.408 52.970 71.430 52.756 71.545 52.659 71.566 52.232 71.472 52.038 71.462 51.824 71.524 51.630 71.745 51.436 71.859 51.417 71.963 51.475 72.068 51.591 72.130 51.786 72.109 51.980 72.120 52.193 72.068 52.388 72.172 52.484 72.285 52.426 72.295 52.640 72.337 52.853 72.440 52.679 72.594 53.087 72.584 52.892 72.656 53.087 72.677 52.873 72.667 52.679 72.707 52.465 72.809 52.543 72.881 52.737 72.911 52.951 72.871 53.358 72.953 53.164 73.004 53.378 73.074 53.184 73.186 53.242 73.217 53.339 ; #942 -2 73.317 54.232 73.429 54.310 73.529 54.329 73.599 54.523 73.700 55.125 73.690 54.912 73.710 54.698 73.690 54.504 73.619 54.290 73.609 54.096 73.660 53.883 73.740 53.689 73.769 53.883 73.830 54.096 73.909 54.290 73.949 54.485 73.959 54.698 74.059 54.679 74.167 55.087 74.118 55.708 74.208 55.514 74.257 55.106 74.286 55.494 74.267 55.708 74.345 55.514 74.355 55.300 74.434 55.494 74.464 56.135 74.542 55.921 74.522 55.708 74.562 55.514 74.660 55.630 74.699 56.251 74.679 56.679 74.689 56.873 74.689 56.659 74.797 56.271 74.777 56.057 74.797 55.844 74.855 56.038 74.943 56.659 74.953 56.446 75.020 56.232 74.991 56.018 75.089 55.824 75.185 55.921 75.204 56.116 75.175 56.310 75.079 56.485 75.223 56.892 75.320 56.795 75.378 56.989 75.378 57.397 75.330 57.591 75.425 57.669 75.522 57.630 75.570 58.038 75.666 57.999 75.723 58.601 75.819 58.756 75.866 58.951 75.856 59.164 75.932 59.591 75.932 59.785 75.979 60.018 75.989 60.232 76.093 60.232 76.121 60.426 76.121 60.814 76.055 60.620 76.065 61.028 76.168 60.931 76.263 61.048 76.310 61.669 76.253 62.057 76.253 62.271 76.178 62.485 76.234 62.698 76.234 63.125 76.301 63.533 76.347 63.727 76.347 63.941 76.319 64.154 76.487 64.950 76.469 65.145 76.506 65.339 76.582 65.572 76.526 65.960 76.721 65.863 76.749 66.057 76.898 66.698 76.944 67.125 77.008 67.533 77.008 67.960 76.962 68.174 76.953 68.387 76.870 68.814 76.777 68.931 76.684 68.931 76.591 68.795 76.487 68.737 76.422 68.523 76.329 68.329 76.273 68.135 76.253 67.921 76.187 67.514 76.093 67.086 76.055 66.679 75.998 66.465 75.989 66.271 75.941 66.057 75.932 65.843 75.885 65.436 75.799 65.028 75.723 64.232 75.647 63.824 75.713 63.611 75.608 63.436 75.579 63.222 75.579 63.028 75.531 62.814 75.512 62.621 75.436 62.213 75.425 62.018 75.272 61.630 75.233 61.416 75.330 61.397 75.223 61.203 75.039 60.601 75.011 60.387 75.001 60.018 74.982 60.018 74.962 60.213 74.962 60.620 74.864 60.581 74.855 60.387 74.758 60.310 74.718 60.018 74.739 59.805 74.787 59.591 74.708 59.805 74.611 59.805 74.601 59.611 74.718 59.203 74.621 59.222 74.513 59.145 74.444 58.951 74.493 58.756 74.562 58.329 74.464 58.523 74.257 58.737 74.187 58.329 74.138 58.523 74.088 58.329 74.069 58.135 73.998 57.921 74.049 57.727 74.157 57.591 74.078 57.397 74.039 57.591 73.959 57.785 73.860 57.921 73.749 57.844 73.740 57.630 73.830 57.436 73.880 56.620 73.819 57.242 73.769 57.456 73.660 57.630 73.579 57.417 73.559 57.222 73.589 57.009 73.680 56.795 73.569 56.989 73.519 57.203 73.419 57.183 73.338 56.989 73.368 56.776 73.257 56.756 73.287 56.135 73.398 56.057 73.328 55.844 73.348 55.649 73.338 55.456 73.429 55.048 73.439 54.853 73.378 54.562 ; #943 -3 51.996 60.038 51.996 60.213 52.112 60.426 52.155 60.640 52.315 61.028 52.344 61.067 52.503 60.970 52.633 60.756 52.748 60.756 52.848 60.950 52.992 61.145 53.007 61.533 52.949 61.941 53.007 62.135 53.150 61.980 53.221 61.591 53.278 61.358 53.364 61.164 53.507 61.300 53.450 61.455 53.592 61.552 53.549 61.358 53.592 61.145 53.663 60.989 53.776 61.203 53.876 61.125 53.890 61.009 53.961 61.048 53.919 61.261 54.074 61.339 54.003 61.533 54.003 61.708 53.947 61.980 54.018 62.193 54.032 62.387 53.905 62.582 54.046 62.601 54.088 62.737 54.102 63.145 54.188 63.339 54.244 63.688 54.202 63.902 54.202 63.921 54.258 64.018 54.314 64.018 54.314 64.212 54.385 64.620 54.342 64.795 54.399 65.009 54.328 65.086 54.399 65.222 54.540 65.281 54.596 65.494 54.666 65.843 54.624 66.038 54.638 66.116 54.722 66.523 54.722 66.717 54.778 66.989 54.848 67.397 54.848 67.591 54.889 67.766 54.974 67.960 54.960 68.154 55.002 68.232 55.002 68.251 55.071 68.348 55.127 68.232 55.197 68.251 55.197 68.465 55.224 68.659 55.364 68.737 55.364 68.756 55.295 68.931 55.406 69.125 55.378 69.339 55.392 69.358 55.309 69.805 55.211 70.018 55.141 70.232 55.224 70.426 55.295 70.484 55.262 70.429 55.350 70.523 55.489 70.562 55.613 70.756 55.669 70.562 55.807 70.640 55.890 70.640 55.959 70.853 56.097 70.910 56.166 70.834 56.193 70.816 56.330 70.891 56.467 70.794 56.494 70.988 56.563 71.107 56.713 71.066 56.686 71.279 56.713 71.493 56.822 71.689 56.850 71.689 56.985 71.571 57.080 71.377 57.203 71.164 57.217 71.126 57.352 71.029 57.325 70.834 57.189 70.718 57.271 70.640 57.325 70.484 57.460 70.543 57.595 70.659 57.581 70.600 57.675 70.581 57.767 70.496 57.823 70.446 57.836 70.465 57.860 70.465 57.943 70.446 58.090 70.562 58.238 70.659 58.371 70.756 58.517 70.872 58.531 71.066 58.504 71.107 58.398 71.301 58.265 71.242 58.117 71.261 58.077 71.455 58.077 71.514 58.104 71.708 58.117 71.921 58.050 72.116 58.024 72.329 58.010 72.542 58.010 72.758 58.037 72.949 58.090 72.949 58.145 73.143 58.145 73.785 58.132 73.998 58.132 74.211 58.238 74.427 58.291 74.621 58.318 74.640 58.424 74.834 58.531 75.007 58.583 75.126 58.557 75.164 58.477 75.377 58.385 75.164 58.238 75.223 58.090 75.145 58.077 75.164 58.010 75.377 57.930 75.571 57.783 75.592 57.648 75.592 57.527 75.784 57.392 76.000 57.244 76.116 57.237 76.183 57.237 76.512 57.224 76.728 57.197 76.941 57.183 77.135 57.183 77.543 57.170 77.756 57.170 77.969 57.156 78.163 57.156 78.476 57.087 78.689 57.060 78.883 57.020 79.096 56.979 79.309 56.898 79.698 56.762 79.892 56.612 80.086 56.584 80.126 56.516 80.242 56.433 80.437 56.461 80.631 56.474 80.844 56.530 81.232 56.406 81.445 56.269 81.602 56.283 81.815 56.337 82.028 56.337 82.282 56.351 82.476 56.392 82.670 56.406 82.864 56.516 83.018 56.516 83.234 56.379 83.253 56.255 83.193 56.104 83.253 56.091 83.369 56.035 83.309 55.897 83.503 55.746 83.309 55.718 83.447 55.704 83.563 55.760 83.757 55.897 83.951 55.911 83.989 56.021 84.086 56.050 84.302 56.035 84.496 55.980 84.612 55.842 84.631 55.704 84.631 55.691 84.669 55.649 84.787 55.524 84.863 55.385 84.728 55.399 84.922 55.260 84.922 55.176 84.982 55.037 85.000 54.995 84.982 54.912 85.079 54.785 85.116 54.743 85.079 54.547 85.079 54.462 85.154 54.476 85.273 54.322 85.408 54.209 85.602 54.138 85.796 54.025 86.028 54.011 86.106 53.884 86.300 53.741 86.495 53.599 86.573 53.514 86.689 53.471 86.883 53.486 86.980 53.371 87.040 53.257 86.845 53.242 86.748 53.228 86.767 53.200 86.786 53.114 86.980 53.071 87.174 52.928 87.118 52.898 87.096 52.755 87.137 52.597 87.253 52.582 87.387 52.496 87.582 52.481 87.622 52.481 87.816 52.539 88.011 52.453 88.205 52.424 88.243 52.308 88.456 52.163 88.456 52.061 88.261 51.931 88.067 51.771 87.913 51.757 88.127 51.654 88.089 51.508 87.970 51.435 88.186 51.362 88.283 51.304 88.477 51.377 88.690 51.523 88.747 51.537 88.806 51.552 88.825 51.537 88.844 51.537 88.866 51.421 89.060 51.275 89.038 51.127 89.135 51.010 89.195 50.893 89.389 50.745 89.583 50.671 89.661 50.553 89.855 50.406 89.855 50.391 89.777 50.435 89.583 50.287 89.467 50.139 89.602 49.990 89.699 49.900 89.718 49.908 89.650 49.759 89.745 49.640 89.456 49.640 89.262 49.490 89.125 49.460 89.027 49.445 88.833 49.505 88.658 49.460 88.269 49.311 88.172 49.176 87.978 49.176 87.862 49.145 87.649 49.070 87.455 49.085 87.358 49.130 87.164 49.100 86.969 48.995 86.756 48.845 86.835 48.694 86.756 48.557 86.621 48.421 86.211 48.421 85.961 48.376 85.766 48.026 85.591 47.996 85.591 47.966 85.572 47.661 85.629 47.493 85.629 47.340 85.707 47.125 85.572 46.910 85.009 46.833 84.814 46.986 84.717 46.971 84.523 47.002 84.329 46.971 84.135 46.986 84.019 47.048 83.611 47.140 83.417 47.217 83.204 47.063 83.029 46.894 82.988 46.848 82.951 46.709 82.872 46.478 82.775 46.168 82.581 45.997 82.562 45.841 82.503 45.576 82.327 45.545 82.327 45.483 82.522 45.310 82.678 45.232 82.640 45.201 82.640 45.169 82.600 45.216 82.211 45.154 82.017 45.294 81.823 45.326 81.629 45.279 81.475 45.122 80.874 45.138 80.717 45.044 80.329 45.028 80.116 44.997 80.056 44.981 80.019 44.792 80.019 44.792 80.075 44.823 80.269 44.761 80.464 44.635 80.388 44.177 80.388 43.811 80.561 43.493 80.736 43.317 80.679 43.158 80.833 43.126 80.639 43.062 80.485 42.901 80.601 42.885 80.582 42.821 80.388 42.821 80.269 42.661 80.194 42.339 80.269 42.307 80.291 42.193 80.251 42.032 80.232 42.032 80.019 41.903 79.824 41.789 79.474 41.757 79.280 41.416 78.465 41.286 78.387 41.270 78.368 41.172 78.252 41.041 78.058 41.074 77.863 41.009 77.669 40.993 77.475 41.025 77.106 41.025 76.911 40.878 76.814 40.698 76.658 40.453 76.523 40.387 76.329 40.371 76.037 40.305 75.843 40.502 75.649 40.584 75.455 40.567 75.417 40.453 75.223 40.469 75.007 40.502 74.853 40.453 74.834 40.338 74.913 40.305 74.716 40.173 74.524 40.107 74.387 40.107 74.193 39.992 73.979 39.811 73.863 39.646 73.942 39.481 73.863 39.448 73.669 39.216 73.629 39.050 73.785 39.000 73.845 38.834 73.747 38.667 73.823 38.651 73.823 38.534 73.961 38.534 74.058 38.651 74.252 38.634 74.446 38.567 74.697 38.384 74.872 38.300 74.816 38.116 74.834 37.949 74.932 37.715 74.950 37.530 75.007 37.361 75.126 37.294 75.007 37.244 74.932 37.395 74.697 37.378 74.562 37.378 74.543 37.429 74.349 37.327 74.155 37.294 74.017 37.227 73.823 37.344 73.785 37.429 73.785 37.429 73.262 37.160 72.758 37.025 72.679 36.957 72.269 36.906 72.194 36.670 71.787 36.686 71.649 36.720 71.611 37.075 71.436 37.244 71.493 37.411 71.493 37.496 71.514 37.815 71.611 37.915 71.590 37.898 71.395 38.049 71.320 38.217 71.377 38.384 71.164 38.467 70.950 38.417 70.697 38.083 70.407 37.999 70.310 37.831 70.251 37.782 70.271 37.715 70.290 37.547 70.174 37.547 70.077 37.563 70.018 37.614 69.882 37.581 69.688 37.581 69.591 37.445 69.397 37.261 69.416 37.193 69.436 37.160 69.416 37.109 69.319 37.210 69.106 37.344 68.912 37.244 68.814 37.193 68.620 37.109 68.329 37.008 68.271 36.923 68.077 36.923 68.057 36.957 67.999 37.008 67.921 37.193 67.785 37.210 67.824 37.547 67.882 37.681 67.999 37.949 68.251 37.966 68.290 38.049 68.348 38.217 68.387 38.417 68.154 38.451 68.135 38.484 68.135 38.651 68.096 38.834 68.193 38.900 68.193 39.000 67.999 38.983 67.863 39.016 67.708 39.283 67.378 39.481 67.455 39.514 67.533 39.630 67.727 39.563 68.135 39.547 68.523 39.827 68.659 39.860 68.659 39.877 68.912 39.992 68.834 40.074 68.950 40.156 68.912 40.140 68.873 40.124 68.717 40.140 68.640 40.156 68.620 40.189 68.659 40.207 68.795 40.189 68.853 40.239 69.048 40.223 69.086 40.207 69.183 40.189 69.261 40.189 69.280 40.207 69.339 40.239 69.300 40.256 69.280 40.289 69.300 40.289 69.339 40.420 69.300 40.502 69.280 40.534 69.242 40.616 69.339 40.780 69.397 40.747 69.591 40.714 69.630 40.698 69.824 40.747 70.018 40.763 70.038 40.878 70.290 41.041 70.484 40.993 70.523 40.910 70.640 40.731 70.794 40.731 70.816 40.551 70.543 40.420 70.368 40.371 70.387 40.354 70.446 40.354 70.484 40.256 70.600 40.223 70.794 40.239 70.988 40.305 71.339 40.207 71.552 40.156 71.765 40.207 71.824 40.239 71.959 40.239 71.978 40.256 72.019 40.239 72.056 40.305 71.978 40.469 72.232 40.502 72.426 40.502 72.445 40.551 72.561 40.567 72.758 40.682 72.874 40.698 72.874 40.714 72.971 40.763 73.106 40.845 73.165 40.861 73.008 40.861 72.990 40.829 72.930 40.829 72.911 40.861 72.911 40.861 72.717 41.009 72.523 41.074 72.369 41.041 72.348 41.009 72.213 41.058 72.232 41.172 72.213 41.188 72.194 41.204 72.172 41.204 72.000 41.351 71.881 41.464 71.787 41.432 71.708 41.545 71.649 41.383 71.649 41.351 71.455 41.188 71.455 41.123 71.417 41.123 71.301 41.188 71.279 41.188 71.066 41.253 70.872 41.302 70.794 41.480 70.678 41.416 70.484 41.480 70.407 41.513 70.212 41.660 70.368 41.886 70.678 41.951 70.872 42.048 70.891 42.096 71.085 42.209 71.279 42.258 71.182 42.258 70.988 42.225 70.932 42.177 70.756 42.016 70.640 42.080 70.446 42.064 70.387 41.903 70.212 41.773 70.018 41.644 69.610 41.562 69.455 41.480 69.358 41.432 69.183 41.270 69.086 41.091 68.834 40.993 68.737 40.944 68.659 40.845 68.581 40.812 68.601 40.796 68.601 40.616 68.659 40.616 68.445 40.682 68.271 40.698 68.232 40.812 68.018 40.878 68.115 40.910 68.135 40.944 68.154 41.058 68.154 41.188 67.941 41.188 67.921 41.172 67.902 41.188 67.708 41.139 67.203 41.156 66.776 41.334 66.679 41.676 66.581 41.854 66.562 42.000 66.348 42.000 66.154 42.080 66.038 42.371 66.057 42.420 66.077 42.596 66.116 42.757 66.116 42.917 66.135 42.901 65.921 43.062 65.708 43.222 65.611 43.381 65.416 43.493 65.222 43.653 65.047 43.668 65.009 43.685 64.814 43.605 64.601 43.557 64.387 43.557 64.193 43.573 63.999 43.621 63.358 43.621 63.164 43.605 62.950 43.541 62.523 43.525 62.310 43.493 62.096 43.477 62.038 43.557 61.960 43.891 61.552 44.050 61.358 44.208 61.164 44.287 61.125 44.461 60.950 44.556 60.756 44.666 60.504 44.902 60.018 44.997 59.805 45.138 59.514 45.169 59.455 45.185 59.416 45.232 59.300 45.247 59.261 45.341 59.067 45.405 58.931 45.514 58.718 45.561 58.620 45.561 58.582 45.523 58.573 45.539 58.592 45.554 58.592 45.570 58.612 45.601 58.632 45.694 58.632 45.726 58.651 45.772 58.651 45.835 58.728 45.866 58.767 45.898 58.806 45.913 58.845 45.913 58.903 45.898 58.942 45.898 58.961 45.929 58.961 45.944 58.981 45.944 59.000 45.929 59.020 45.929 59.078 45.973 59.113 46.004 59.132 46.051 59.171 46.206 59.346 46.376 59.501 46.531 59.676 46.701 59.890 46.824 60.084 46.855 60.123 46.917 60.336 47.070 60.453 47.086 60.453 47.254 60.492 47.208 60.686 47.193 60.880 47.239 61.074 47.301 61.113 47.455 61.191 47.607 61.288 47.775 61.385 47.805 61.521 47.821 61.715 47.821 61.929 47.729 62.142 47.592 62.278 47.485 62.472 47.332 62.667 47.178 62.725 47.132 62.939 47.140 62.873 47.371 63.281 47.768 64.096 47.890 64.310 47.920 64.251 48.149 64.018 48.316 63.902 48.467 63.747 48.512 63.611 48.679 63.125 48.679 63.106 48.830 63.125 48.905 62.756 48.920 62.717 49.025 62.562 49.176 62.485 49.176 62.446 49.341 62.485 49.490 62.310 49.625 62.465 49.938 62.737 49.952 62.931 49.998 62.950 50.294 62.698 50.413 62.562 50.708 62.407 50.708 62.213 50.856 62.407 50.856 62.446 50.974 62.232 51.135 62.193 51.091 61.999 51.179 61.921 51.268 61.708 51.282 61.630 51.428 61.514 51.472 61.125 51.618 60.950 51.618 60.620 51.721 60.446 51.822 60.426 51.953 60.018 ; #944 -4 29.656 61.611 29.460 62.290 29.424 62.446 29.478 63.222 29.496 63.611 29.460 63.902 29.407 64.096 29.531 64.290 29.549 64.387 29.567 64.445 29.567 64.970 29.549 65.009 29.673 65.533 29.727 65.766 29.745 65.805 29.833 66.212 29.993 66.329 30.170 66.310 30.347 66.348 30.524 66.310 30.700 66.329 30.913 66.407 30.948 66.445 31.036 66.640 31.212 66.737 31.247 66.834 31.317 67.028 31.247 67.048 31.230 67.125 31.230 67.261 31.282 67.669 31.335 67.805 31.353 67.805 31.528 67.591 31.546 67.785 31.687 68.077 31.757 68.135 31.757 68.581 31.652 68.795 31.617 68.912 31.704 69.106 31.880 69.261 31.932 69.339 32.474 69.261 32.492 69.280 32.683 69.474 32.858 69.494 32.875 69.533 33.049 69.533 33.084 69.688 33.084 69.902 33.136 70.018 33.240 70.212 33.414 70.310 33.449 70.271 33.621 70.212 33.742 70.018 33.812 69.979 33.846 69.941 34.020 69.902 34.037 69.921 34.054 70.018 33.951 70.562 33.951 70.756 34.054 71.085 34.123 71.107 34.244 71.126 34.330 71.164 34.502 70.988 34.553 71.010 34.897 71.358 34.966 71.514 35.000 71.533 35.034 71.552 35.137 71.649 35.325 71.552 35.428 71.668 35.616 71.533 35.684 71.552 35.855 71.455 35.991 71.261 36.042 71.201 36.347 71.590 36.432 71.727 36.500 71.921 36.720 72.213 36.754 72.407 36.822 72.620 36.839 73.008 36.873 73.068 36.906 73.650 36.906 73.688 36.889 73.823 36.822 74.017 36.906 74.211 37.025 74.581 37.058 74.697 37.008 74.853 36.991 75.007 36.906 75.417 36.839 75.436 36.771 75.552 36.737 75.746 36.602 75.921 36.449 76.019 36.280 76.019 36.110 75.940 36.025 75.978 35.838 76.172 35.838 76.426 35.650 76.795 35.650 76.833 35.496 77.378 35.496 77.845 35.188 77.222 35.102 77.046 35.000 77.068 34.811 76.971 34.794 76.971 34.657 76.833 34.743 76.698 34.760 76.504 34.691 76.310 34.606 76.135 34.623 76.078 34.570 75.884 34.502 75.687 34.606 75.301 34.640 75.007 34.657 74.913 34.691 74.716 34.777 74.368 34.691 74.174 34.674 73.979 34.606 73.961 34.433 73.845 34.347 73.823 34.244 74.017 34.106 73.920 34.020 74.095 34.002 74.290 33.846 74.095 33.725 73.998 33.708 73.998 33.656 74.017 33.466 74.193 33.292 74.095 33.292 74.058 33.119 74.136 33.014 74.330 32.841 74.368 32.823 74.349 32.752 74.543 32.579 74.678 32.561 74.678 32.492 74.872 32.474 75.007 32.335 75.339 32.177 75.339 32.072 75.007 32.019 74.872 31.897 74.678 31.722 74.524 31.617 74.600 31.599 74.600 31.423 74.640 31.388 74.600 31.142 74.543 31.089 74.697 31.036 74.659 31.054 74.621 31.036 74.562 31.001 74.562 30.895 74.368 30.753 74.252 30.700 74.193 30.524 74.077 30.471 73.979 30.383 73.882 30.365 73.863 30.330 73.942 30.312 73.961 30.188 73.979 30.153 73.942 29.993 73.553 29.904 73.397 29.727 73.337 29.478 73.240 29.282 73.124 29.032 72.930 28.854 72.542 28.603 72.291 28.425 72.232 28.245 72.037 28.138 71.959 27.958 71.903 27.886 71.708 27.868 71.514 27.850 71.261 27.707 70.853 27.761 70.737 27.940 70.659 27.994 70.621 28.030 70.407 27.886 70.212 27.743 70.096 27.563 70.018 27.166 69.591 26.986 69.533 26.787 69.513 26.588 69.824 26.588 70.018 26.408 70.193 26.190 70.174 26.009 70.115 25.754 70.271 25.736 70.271 25.681 70.465 25.699 70.659 25.554 70.678 25.373 70.718 25.136 70.891 25.008 70.932 24.679 71.107 24.496 71.010 24.405 71.085 24.240 70.659 24.423 70.600 24.350 70.310 24.313 70.135 24.204 70.077 24.167 70.018 24.185 69.708 24.259 69.630 24.295 69.436 24.259 69.242 24.295 69.106 24.313 68.756 23.965 68.737 23.965 68.523 23.947 68.368 23.763 68.212 23.929 68.038 23.910 67.863 23.799 67.669 23.929 67.669 23.929 67.552 24.002 67.475 24.057 67.552 24.094 67.358 24.423 67.261 24.789 67.106 24.898 66.717 25.008 66.698 25.227 66.737 25.590 66.445 25.517 66.271 25.427 66.465 25.463 66.271 25.446 66.057 25.336 65.669 25.391 65.397 25.318 65.203 25.318 64.756 25.263 64.543 25.282 64.348 25.446 64.154 25.336 63.960 25.391 63.747 25.354 63.552 25.190 63.514 25.245 63.125 25.227 62.912 25.263 62.717 25.245 62.523 25.172 62.329 25.209 62.135 25.063 61.747 25.190 61.708 25.190 61.630 25.282 61.630 25.754 61.688 25.863 61.805 26.081 61.824 26.263 61.960 26.390 62.174 26.371 62.232 26.353 62.290 26.534 62.368 26.588 62.640 26.642 62.834 26.642 63.145 26.624 63.164 27.022 63.261 27.094 63.281 27.130 63.319 27.130 63.358 27.148 63.339 27.221 63.300 27.239 63.106 27.221 62.989 27.257 62.795 27.437 62.834 27.490 62.853 28.048 62.776 28.156 62.795 28.245 62.640 28.245 62.601 28.425 62.407 28.496 62.077 28.585 61.883 28.800 61.649 28.979 61.572 28.996 61.552 29.264 61.378 29.318 61.378 29.496 61.242 29.869 60.873 ; #945 10 24.039 67.785 24.002 67.805 24.002 67.960 ; #946 -4 69.274 65.047 69.186 64.931 69.153 64.853 ; #947 4 -49.356 69.882 -49.370 70.484 -49.221 70.581 -49.055 70.407 -49.161 70.212 -49.145 70.018 -49.296 69.824 -49.266 69.630 -49.281 69.416 -49.130 69.416 -49.130 69.610 -48.980 69.610 -49.130 69.222 -49.070 69.028 -48.920 69.086 -48.770 69.203 -48.800 69.009 -48.648 69.048 -48.815 68.912 -48.965 68.912 -49.115 68.853 -49.266 68.834 -49.415 68.912 -49.565 68.814 -49.715 68.853 -49.700 69.048 -49.550 69.203 -49.640 69.591 -49.550 69.805 -49.700 69.882 -49.715 70.077 -49.685 70.271 -49.535 70.329 -49.610 70.115 -49.565 69.921 -49.415 69.727 -49.445 69.921 ; #948 4 -53.035 73.610 -52.992 73.397 -53.150 73.416 -53.178 73.610 -53.121 73.804 ; #949 3 9.081 79.708 8.966 79.921 9.101 79.765 ; #950 -4 66.791 70.834 66.814 71.010 66.814 71.048 66.883 71.242 66.894 71.436 66.768 71.552 66.651 71.590 66.686 71.377 66.581 70.988 66.639 70.794 66.756 70.756 ; #951 -5 39.481 73.863 39.646 73.942 39.811 73.863 39.992 73.979 40.107 74.193 40.107 74.387 40.173 74.524 40.305 74.716 40.338 74.913 40.453 74.834 40.502 74.853 40.469 75.007 40.453 75.223 40.567 75.417 40.584 75.455 40.502 75.649 40.305 75.843 40.371 76.037 40.387 76.329 40.453 76.523 40.698 76.658 40.878 76.814 41.025 76.911 41.025 77.106 40.993 77.475 41.009 77.669 41.074 77.863 41.041 78.058 41.172 78.252 41.270 78.368 41.286 78.387 41.416 78.465 41.757 79.280 41.789 79.474 41.903 79.824 42.032 80.019 42.032 80.232 42.193 80.251 42.307 80.291 42.339 80.269 42.661 80.194 42.821 80.269 42.821 80.388 42.885 80.582 42.901 80.601 43.062 80.485 43.126 80.639 43.158 80.833 43.317 80.679 43.493 80.736 43.811 80.561 44.177 80.388 44.635 80.388 44.761 80.464 44.823 80.269 44.792 80.075 44.792 80.019 44.981 80.019 44.997 80.056 45.028 80.116 45.044 80.329 45.138 80.717 45.122 80.874 45.279 81.475 45.326 81.629 45.294 81.823 45.154 82.017 45.216 82.211 45.169 82.600 45.201 82.640 45.232 82.640 45.310 82.678 45.483 82.522 45.545 82.327 45.576 82.327 45.841 82.503 45.997 82.562 46.168 82.581 46.478 82.775 46.709 82.872 46.848 82.951 46.894 82.988 47.063 83.029 47.217 83.204 47.140 83.417 47.048 83.611 46.986 84.019 46.971 84.135 47.002 84.329 46.971 84.523 46.986 84.717 46.833 84.814 46.910 85.009 47.125 85.572 47.340 85.707 47.493 85.629 47.661 85.629 47.966 85.572 47.996 85.591 48.026 85.591 48.376 85.766 48.421 85.961 48.421 86.211 48.557 86.621 48.694 86.756 48.845 86.835 48.995 86.756 49.100 86.969 49.130 87.164 49.085 87.358 49.070 87.455 49.145 87.649 49.176 87.862 49.176 87.978 49.311 88.172 49.460 88.269 49.505 88.658 49.445 88.833 49.460 89.027 49.490 89.125 49.640 89.262 49.640 89.456 49.759 89.745 49.908 89.650 49.982 90.017 49.998 90.039 50.117 90.230 50.191 90.425 50.220 90.619 50.205 90.659 50.428 91.048 50.458 91.261 50.472 91.455 50.708 91.843 50.694 92.075 50.723 92.270 50.871 92.388 50.752 92.601 50.723 92.795 50.797 92.990 50.664 92.990 50.635 93.027 50.605 93.222 50.620 93.416 50.576 93.842 50.576 94.252 50.517 94.328 50.220 94.406 50.087 94.600 50.043 95.007 50.028 95.029 49.998 95.048 49.952 95.242 49.952 95.436 49.908 95.514 49.893 95.552 49.952 95.746 49.998 95.803 49.998 96.135 49.938 96.329 49.908 96.717 49.893 96.911 49.819 97.106 49.729 97.300 49.789 97.494 49.923 97.610 49.998 97.998 50.043 98.114 50.339 98.309 50.472 98.349 50.561 98.252 50.679 98.036 51.062 97.883 51.164 97.939 51.311 97.961 51.457 98.077 51.457 98.252 51.574 98.271 51.721 98.349 51.764 98.562 51.851 98.738 52.141 98.951 52.200 98.835 52.344 98.697 52.489 98.738 52.518 98.756 52.503 98.813 52.647 98.951 52.805 98.932 52.848 98.872 52.949 99.261 53.092 99.067 53.150 98.969 53.150 98.756 53.092 98.368 53.221 98.290 53.249 98.077 53.364 97.883 53.378 97.726 53.450 97.532 53.592 97.338 53.634 97.106 53.734 96.911 53.634 96.698 53.663 96.582 53.806 96.388 54.102 95.978 54.244 95.687 54.385 95.727 54.399 95.940 54.554 96.056 54.540 96.251 54.568 96.329 54.525 96.582 54.568 96.561 54.722 96.601 54.862 96.717 55.002 96.639 55.030 96.620 55.281 96.814 55.420 96.871 55.516 96.852 55.656 96.774 55.807 96.852 55.876 96.990 56.028 97.027 56.097 97.222 56.097 97.454 56.125 97.454 56.234 97.610 56.385 97.688 56.509 97.901 56.795 97.745 56.822 97.494 56.958 97.494 56.985 97.454 57.012 97.435 57.039 97.357 57.379 97.610 57.406 97.629 57.742 97.883 57.823 98.077 57.809 98.271 57.796 98.756 57.729 98.969 57.769 99.164 57.796 99.436 57.930 99.512 58.064 99.668 58.050 99.825 58.077 100.019 58.077 100.075 57.930 100.116 57.796 100.288 57.662 100.367 57.514 100.523 57.419 100.736 57.446 100.930 57.460 100.949 57.473 100.968 57.608 100.852 57.742 100.893 57.890 100.833 57.877 101.009 58.010 101.162 58.145 101.241 58.225 101.378 58.291 101.591 58.424 101.707 58.464 101.901 58.517 102.193 58.651 102.346 58.743 102.543 58.783 102.581 59.047 102.446 59.192 102.543 59.192 102.697 59.244 102.872 59.270 103.067 59.231 103.261 59.087 103.339 58.980 103.533 58.915 103.727 58.901 103.900 58.770 104.057 58.756 104.251 58.730 104.251 58.597 104.464 58.610 104.601 58.730 104.893 58.862 104.814 58.967 105.009 59.047 105.203 59.179 105.338 59.297 105.222 59.428 105.241 59.455 105.009 59.572 104.893 59.702 104.814 59.768 105.009 59.820 105.028 59.859 105.144 59.833 105.338 59.872 105.494 60.002 105.513 60.132 105.454 60.274 105.475 60.287 105.281 60.287 105.065 60.403 104.677 60.533 104.601 60.674 104.561 60.803 104.483 60.944 104.580 61.007 104.620 61.148 104.796 61.238 104.990 61.377 104.930 61.415 105.125 61.491 105.319 61.632 105.648 61.644 105.842 61.770 105.939 61.871 105.999 61.997 106.212 62.072 106.406 62.160 106.425 62.286 106.387 62.399 106.581 62.511 106.716 62.635 106.697 62.685 106.484 62.809 106.465 62.846 106.446 62.946 106.231 63.070 106.231 63.119 106.425 63.316 106.503 63.304 106.697 63.439 106.619 63.501 106.522 63.513 106.522 63.599 106.678 63.721 106.678 63.843 106.813 63.965 106.716 63.965 106.835 63.917 107.029 63.953 107.242 63.856 107.436 63.868 107.590 63.990 107.687 63.990 108.075 63.978 108.116 64.087 108.310 64.208 108.232 64.221 108.038 64.245 108.251 64.293 108.445 64.171 108.561 64.075 108.580 63.941 108.736 63.819 108.736 63.794 108.542 63.806 108.426 63.672 108.289 63.587 108.504 63.575 108.717 63.513 109.106 63.390 109.281 63.365 109.281 63.243 109.454 62.996 109.475 62.871 109.629 62.747 109.494 62.598 109.397 62.474 109.338 62.424 109.532 62.411 109.939 62.286 110.017 62.160 110.017 62.085 109.901 62.047 109.883 62.022 109.864 61.997 109.842 61.896 109.648 61.896 109.629 61.707 109.629 61.669 109.726 61.567 109.842 61.441 109.864 61.314 109.823 61.289 110.017 61.160 110.193 61.173 110.387 61.046 110.484 60.995 110.484 60.867 110.309 60.738 110.290 60.674 110.077 60.648 110.115 60.507 110.017 60.249 109.804 60.107 109.707 60.080 109.726 60.002 109.764 59.872 109.669 59.728 109.513 59.598 109.494 59.572 109.435 59.442 109.300 59.310 109.300 59.283 109.532 59.020 109.804 58.994 109.901 59.007 110.017 58.980 110.212 59.034 110.406 59.126 110.600 59.165 110.581 59.257 110.794 59.179 111.183 59.257 111.318 59.231 111.706 59.283 111.922 59.362 112.038 59.494 112.232 59.362 112.289 59.310 112.405 59.310 112.561 59.179 112.483 58.941 112.464 58.954 112.639 59.074 112.601 59.205 113.357 59.585 113.688 59.859 114.309 60.002 114.581 60.132 114.619 60.184 114.813 60.300 115.067 60.429 115.202 60.481 115.396 60.507 115.590 60.494 115.803 60.456 115.881 60.377 116.270 60.377 116.464 60.339 116.658 60.274 116.736 60.184 116.931 60.054 117.046 60.002 117.338 59.963 117.125 59.833 117.241 59.702 117.222 59.624 117.162 59.494 117.357 59.481 117.551 59.507 117.688 59.442 117.883 59.572 118.055 59.598 118.231 59.442 118.619 59.310 118.832 59.179 118.697 59.034 118.757 59.007 118.873 58.941 118.813 58.809 118.910 58.677 118.873 58.531 119.007 58.398 119.123 58.225 119.123 58.225 118.929 58.185 118.735 58.212 118.541 58.318 118.368 58.358 118.290 58.385 118.152 58.398 117.764 58.345 117.551 58.291 117.475 58.158 117.591 58.064 117.397 57.970 117.397 57.836 117.222 57.635 117.181 57.365 117.357 57.311 117.475 57.311 117.667 57.176 117.667 57.134 117.629 56.999 117.688 56.863 117.591 56.836 117.416 56.877 117.222 56.782 116.987 56.741 116.796 56.754 116.580 56.822 116.386 56.822 116.213 56.850 116.019 56.944 115.825 56.958 115.746 56.822 115.609 56.686 115.533 56.591 115.512 56.481 115.706 56.289 115.706 56.248 115.728 56.207 115.765 56.056 115.784 55.918 115.922 55.821 115.862 55.683 115.862 55.406 115.941 55.378 115.959 55.350 116.154 55.364 116.289 55.224 116.483 55.085 116.815 55.002 116.852 54.834 116.949 54.694 116.852 54.525 116.736 54.469 116.542 54.497 116.367 54.497 116.173 54.427 115.728 54.328 115.533 54.159 115.183 54.018 115.007 54.003 114.988 53.806 114.387 53.734 114.231 53.720 114.036 53.620 113.823 53.563 113.883 53.364 113.883 53.221 114.055 52.964 114.328 52.834 114.252 52.690 114.115 52.633 113.901 52.474 113.513 52.474 113.319 52.402 113.106 52.344 112.912 52.330 112.717 52.243 112.504 52.229 112.367 52.243 112.057 52.112 111.862 52.011 111.746 51.895 111.512 51.808 111.104 51.589 110.832 51.501 110.638 51.574 110.406 51.603 110.017 51.457 109.688 51.355 109.300 51.472 109.144 51.443 108.912 51.472 108.717 51.413 108.523 51.311 108.445 51.224 108.426 51.076 108.542 51.047 108.348 50.915 108.289 50.827 108.270 50.782 108.135 50.752 108.075 50.723 108.116 50.502 108.698 50.413 108.289 50.309 108.154 50.265 107.959 50.161 107.803 49.998 107.784 49.982 107.765 49.938 107.997 49.774 107.997 49.625 108.057 49.550 108.154 49.460 108.367 49.341 108.561 49.341 109.319 49.236 109.610 49.206 110.017 49.176 110.212 49.251 110.406 49.145 110.678 49.161 110.872 49.341 111.339 49.430 112.094 49.430 112.154 49.535 112.601 49.535 112.639 49.505 112.833 49.595 113.028 49.700 113.144 49.848 113.319 49.998 113.572 50.131 113.958 50.235 114.174 50.279 114.368 50.250 114.562 50.250 114.775 50.205 114.910 50.161 115.007 49.998 115.220 49.923 115.377 49.908 115.590 49.878 115.746 49.998 116.075 50.028 116.270 49.998 116.348 49.952 116.542 49.834 116.736 49.670 117.125 49.625 117.357 49.625 117.376 49.520 117.842 49.505 117.883 49.611 118.077 49.729 118.271 49.819 118.484 49.923 118.581 49.952 118.757 49.982 119.048 49.982 119.123 49.998 119.183 50.161 119.358 50.191 119.358 50.309 119.377 50.368 119.183 50.576 119.299 50.723 119.493 50.959 119.590 51.106 119.765 51.268 119.822 51.326 119.922 51.501 120.019 51.647 120.116 51.866 120.504 51.953 120.696 52.025 120.717 52.184 120.774 52.330 120.639 52.431 120.696 52.575 120.601 52.618 120.407 52.575 120.210 52.733 120.057 52.834 120.232 52.935 120.367 53.207 120.755 53.207 120.796 53.278 120.990 53.264 121.203 53.321 121.435 53.321 121.494 53.422 121.902 53.407 122.036 53.450 122.231 53.450 122.757 53.492 123.164 53.549 123.358 53.549 123.552 53.492 123.725 53.464 123.922 53.349 124.116 53.364 124.213 53.235 124.405 53.135 124.774 53.193 125.028 53.178 125.222 53.007 125.707 52.762 125.999 52.618 125.999 52.561 126.174 52.417 126.328 52.258 126.425 52.243 126.368 52.127 126.560 51.982 126.465 51.967 126.484 51.677 126.716 51.384 126.929 51.340 126.891 51.135 126.929 50.959 127.067 50.812 127.221 50.590 127.377 50.443 127.318 50.294 127.377 50.250 127.493 50.205 127.609 50.057 127.512 49.998 127.512 49.848 127.533 49.625 127.803 49.595 127.960 49.535 128.154 49.535 128.348 49.581 128.542 49.565 128.639 49.581 128.755 49.460 128.931 49.341 129.144 49.371 129.279 49.416 129.494 49.386 129.551 49.266 129.745 49.161 129.823 49.161 129.842 49.055 129.920 48.995 130.018 48.875 130.212 48.875 130.638 48.724 130.600 48.557 130.638 48.482 130.776 48.331 130.854 48.164 130.757 48.026 130.735 47.874 130.929 47.722 130.951 47.676 131.067 47.676 131.105 47.737 131.318 47.737 131.512 47.676 131.784 47.692 132.173 47.737 132.367 47.707 132.523 47.859 132.677 48.011 132.931 48.103 133.125 48.073 133.513 48.119 133.570 48.255 133.764 48.255 133.977 48.331 134.077 48.346 134.231 48.391 134.425 48.376 134.444 48.361 134.581 48.270 134.757 47.950 134.600 47.890 134.678 47.813 134.697 47.661 134.735 47.539 134.638 47.325 134.193 47.094 134.212 47.033 134.134 46.848 134.055 46.632 134.018 46.602 133.958 46.540 133.920 46.369 133.939 46.230 133.861 45.966 133.689 45.872 133.532 45.607 133.454 45.576 133.435 45.514 133.241 45.420 133.144 45.107 133.106 45.028 132.968 45.060 132.852 45.232 132.016 45.247 131.997 45.279 131.803 45.216 131.784 44.997 131.512 44.934 131.318 44.918 131.123 44.855 131.007 44.556 131.164 44.398 131.202 44.382 131.202 44.303 131.239 44.034 131.280 44.018 131.261 43.541 131.202 43.477 131.299 43.317 131.299 43.158 131.239 43.014 131.123 42.853 131.045 42.869 130.854 42.821 130.735 42.789 130.541 42.564 130.638 42.420 130.619 42.532 130.541 42.564 130.541 42.612 130.387 42.709 130.271 42.725 130.271 42.773 130.250 42.885 130.271 42.965 130.018 42.965 129.883 42.693 129.764 42.596 129.764 42.436 129.667 42.404 129.570 42.404 129.319 42.387 129.300 42.209 129.222 42.096 129.028 42.032 128.871 42.000 128.464 42.016 128.464 42.032 128.308 41.983 128.076 41.854 128.094 41.725 128.173 41.708 128.173 41.562 128.308 41.400 128.210 41.432 128.038 41.448 128.016 41.448 127.941 41.416 127.844 41.416 127.649 41.448 127.436 41.497 127.280 41.644 127.067 41.789 126.910 41.676 126.697 41.660 126.619 41.497 126.581 41.448 126.522 41.432 126.522 41.156 126.290 41.139 126.271 41.009 126.115 40.894 125.920 40.861 125.726 40.747 125.629 40.649 125.435 40.633 125.357 40.600 125.222 40.453 125.028 40.453 124.968 40.436 124.871 40.124 124.426 40.107 124.405 40.091 124.405 40.091 124.386 39.992 124.367 39.827 124.154 39.827 123.746 39.778 123.339 39.663 123.145 39.547 122.757 39.365 122.347 39.216 122.152 39.050 121.999 38.933 121.610 38.800 121.416 38.717 121.222 38.900 121.162 39.050 121.551 39.216 121.610 39.365 121.823 39.415 121.939 39.365 121.551 39.514 121.454 39.514 121.260 39.613 121.454 39.613 121.532 39.778 121.494 39.910 121.688 39.992 121.902 40.289 122.115 40.453 122.271 40.616 122.174 40.682 122.193 40.763 121.999 40.928 121.842 40.993 121.883 40.829 121.688 40.829 121.570 40.928 121.376 40.910 121.181 40.861 121.106 40.698 121.009 40.665 120.871 40.502 120.696 40.338 120.580 40.156 120.310 40.058 120.019 39.992 119.922 39.893 119.590 39.728 119.377 39.563 119.299 39.398 119.280 39.165 119.007 39.149 118.813 39.182 118.619 39.066 118.425 39.216 118.036 39.149 117.823 38.767 117.591 38.601 117.570 38.434 117.648 38.250 117.861 38.133 118.055 38.133 118.387 37.982 118.600 38.150 118.678 38.166 118.775 38.016 118.970 37.848 119.123 37.681 119.026 37.496 118.970 37.311 118.970 37.261 118.989 37.160 119.202 37.126 119.396 37.143 119.706 37.244 119.900 37.411 120.019 37.479 120.173 37.698 120.407 37.782 120.620 37.815 120.815 37.748 121.009 37.581 121.203 37.614 121.397 37.445 121.551 37.462 121.958 37.411 121.980 37.547 122.115 37.411 122.309 37.411 122.387 37.344 122.581 37.160 122.581 36.991 122.541 36.856 122.406 36.839 122.212 37.008 122.193 36.889 122.055 36.906 121.883 36.788 121.494 36.703 121.357 36.585 120.968 36.653 120.852 36.585 120.774 36.602 120.871 36.415 120.852 36.330 120.658 36.144 120.717 36.076 120.523 36.093 120.329 36.263 120.329 36.212 120.135 36.144 120.116 36.042 120.191 35.923 120.191 35.889 120.116 35.718 120.019 35.616 119.862 35.582 119.668 35.410 119.571 35.000 119.220 34.880 119.183 34.709 119.220 34.743 119.396 34.587 119.590 34.467 119.822 34.416 120.019 34.295 120.270 33.309 120.677 32.962 120.912 32.788 120.871 32.614 120.890 32.474 121.222 32.335 121.416 32.159 121.454 32.037 121.707 31.880 121.861 31.687 121.883 31.880 121.357 31.845 120.949 32.019 120.833 32.072 120.696 32.089 120.483 31.932 120.210 32.002 120.019 32.317 119.822 32.352 119.630 32.265 119.687 32.177 119.630 32.230 119.706 31.949 120.019 31.897 120.251 32.019 120.523 31.984 120.736 31.809 120.755 31.704 121.106 31.493 121.338 31.212 121.764 31.036 121.861 30.860 121.883 30.825 121.494 30.683 121.300 30.524 120.968 30.347 120.852 30.330 120.796 30.400 120.580 30.347 120.386 30.241 120.251 30.294 120.445 30.312 120.639 30.117 120.658 30.064 120.815 30.117 120.736 30.294 121.278 30.206 121.473 29.958 121.688 29.940 121.823 29.833 122.018 29.762 121.883 29.585 121.745 29.478 121.454 29.407 121.532 29.531 121.726 29.513 121.920 29.335 121.939 29.157 121.861 29.246 121.786 29.300 121.591 29.121 121.435 29.050 121.610 28.782 121.648 28.693 121.454 28.711 121.357 28.836 121.162 28.675 121.300 28.675 121.494 28.513 121.551 28.335 121.473 28.192 121.278 28.353 121.222 28.282 121.084 28.174 121.106 27.994 120.912 28.012 120.774 28.102 120.580 27.994 120.736 27.797 120.774 27.617 120.677 27.581 120.601 27.383 120.561 27.184 120.426 27.239 120.232 27.130 120.426 27.112 120.270 26.787 120.135 26.606 120.019 26.534 119.844 26.715 120.019 26.787 120.019 26.787 119.571 26.606 119.590 26.552 119.784 26.353 119.765 26.353 119.960 26.281 119.765 26.117 119.571 25.972 119.455 26.136 119.104 25.972 119.261 25.936 119.377 25.972 119.455 25.972 119.474 25.881 119.630 25.608 119.493 25.554 119.590 25.373 119.493 25.499 119.455 25.481 119.242 25.354 119.220 25.172 119.280 25.154 119.086 25.190 118.989 25.008 119.026 24.789 118.638 24.588 118.697 24.570 118.387 24.624 118.193 24.460 117.980 24.460 117.804 24.405 117.861 24.405 118.055 24.222 118.055 24.039 117.902 24.057 117.688 23.874 117.610 23.781 117.416 23.799 117.397 23.561 117.125 23.653 116.931 23.396 116.833 23.322 116.639 23.175 116.620 23.212 116.601 22.972 116.523 22.936 116.426 22.899 116.116 22.936 116.038 22.880 116.075 22.843 116.019 22.807 115.825 22.843 115.609 22.641 115.571 22.751 115.377 22.770 115.280 22.825 115.220 22.678 114.988 22.585 114.775 22.788 114.716 22.659 114.522 22.641 114.600 22.456 114.522 22.549 114.484 22.585 114.425 22.549 114.231 22.456 114.347 22.271 114.309 22.327 114.174 22.512 114.055 22.456 113.883 22.751 113.767 22.751 113.688 22.936 113.629 23.028 113.648 23.028 113.532 23.101 113.648 23.120 113.842 23.120 113.648 23.064 113.513 23.083 113.416 22.936 113.435 22.899 113.222 22.880 113.319 22.788 113.494 22.733 113.454 22.751 113.397 22.567 113.572 22.179 113.572 22.197 113.435 22.234 113.397 22.567 113.184 22.364 113.281 22.179 113.319 22.216 113.125 22.124 113.028 21.938 113.028 21.956 112.833 21.771 112.620 21.882 112.426 21.956 112.405 21.882 112.405 21.697 112.310 21.882 111.922 21.716 111.922 21.716 111.765 21.531 111.630 21.568 111.415 21.438 111.261 21.494 111.220 21.456 111.164 21.401 110.910 21.401 110.716 21.438 110.775 21.401 110.697 21.233 110.638 21.215 110.446 21.383 110.387 21.196 110.425 21.029 110.193 20.844 110.193 20.825 110.406 20.731 110.425 20.750 110.349 20.508 110.522 20.322 110.425 20.266 110.231 20.266 110.017 20.434 110.017 20.601 109.823 20.955 109.707 21.029 109.707 21.233 109.785 21.419 109.939 21.494 109.961 21.586 109.764 21.494 109.785 21.605 109.669 21.660 109.475 21.475 109.475 21.438 109.281 21.475 109.260 21.456 109.046 21.642 109.087 21.753 108.930 21.642 108.736 21.882 108.639 21.864 108.483 21.919 108.483 21.845 108.464 21.771 108.504 21.568 108.504 21.679 108.386 21.568 108.191 21.549 107.997 21.660 107.803 21.642 107.746 21.605 107.630 21.586 107.512 21.660 107.493 21.605 107.377 21.660 107.358 21.716 107.202 21.808 107.048 21.919 106.951 21.975 106.929 21.975 106.716 22.197 106.678 22.382 106.581 22.474 106.581 22.474 106.600 22.493 106.600 22.585 106.735 22.770 106.835 22.807 106.794 22.880 106.697 22.936 106.543 22.880 106.484 22.862 106.290 22.954 106.252 22.991 106.077 22.936 106.017 22.936 105.920 23.046 105.688 23.101 105.591 23.175 105.551 23.285 105.416 23.377 105.338 23.267 105.203 23.193 105.009 23.175 104.990 23.175 104.912 22.972 104.852 22.936 104.871 22.917 104.871 22.825 104.677 22.733 104.464 22.678 104.367 22.733 104.270 22.825 104.288 22.788 104.135 22.530 104.019 22.512 103.997 22.493 103.978 22.678 103.784 22.788 103.668 22.585 103.533 22.770 103.417 22.788 103.377 22.604 103.183 22.493 103.104 22.493 102.932 22.678 102.716 22.770 102.484 22.567 102.368 22.493 102.290 22.401 102.155 22.437 101.961 22.382 101.901 22.419 101.864 22.493 101.804 22.493 101.785 22.345 101.669 22.271 101.591 22.216 101.572 22.030 101.629 21.827 101.785 21.642 101.804 21.586 101.842 21.438 101.767 21.233 101.864 21.178 101.804 21.141 101.745 21.178 101.707 21.233 101.435 21.215 101.281 21.401 101.241 21.568 101.184 21.568 101.162 21.771 101.143 21.679 100.912 21.568 100.796 21.456 100.601 21.456 100.542 21.494 100.483 21.456 100.251 21.438 100.232 21.642 100.154 21.679 100.075 21.697 100.019 21.790 99.978 22.049 99.978 22.030 99.843 22.067 99.784 22.105 99.590 22.087 99.377 22.160 99.183 22.327 99.261 22.493 99.396 22.807 99.417 23.064 99.533 23.064 99.512 23.101 99.242 23.101 99.145 23.193 98.951 23.469 98.910 23.524 98.835 23.671 98.854 23.856 98.716 23.984 98.697 24.167 98.910 24.112 98.775 24.075 98.619 24.130 98.446 24.130 98.252 24.075 98.058 24.039 97.998 23.947 97.864 23.856 97.669 24.002 97.629 24.185 97.767 24.222 97.745 24.350 97.707 24.533 97.572 24.734 97.572 24.807 97.688 25.008 97.745 25.063 97.745 25.263 97.883 25.300 98.077 25.391 98.114 25.409 98.155 25.590 98.174 25.627 98.193 25.572 98.387 25.809 98.522 25.845 98.716 26.136 98.640 26.462 98.756 26.606 98.794 26.805 98.794 27.094 98.738 27.275 98.738 27.472 98.697 27.653 98.581 27.689 98.271 27.761 98.252 27.976 98.155 28.156 98.155 28.353 97.939 28.335 97.823 28.513 97.629 28.407 97.494 28.228 97.357 28.317 97.241 28.353 97.046 28.335 97.046 28.442 96.736 28.460 96.620 28.442 96.582 28.496 96.388 28.800 96.620 28.889 96.561 29.068 96.523 28.979 96.194 29.086 96.172 29.211 96.367 29.246 96.329 29.353 96.194 29.460 96.097 29.389 95.903 29.389 95.881 29.300 95.709 29.032 95.415 29.157 95.007 29.139 95.007 29.175 94.835 29.318 94.640 29.086 94.230 28.979 94.155 28.836 93.980 28.800 93.939 28.728 93.804 28.675 93.610 28.657 93.416 28.603 93.241 28.425 93.165 28.371 93.125 28.264 92.949 28.192 92.795 28.066 92.680 27.886 92.580 27.815 92.251 27.797 92.116 27.725 91.922 27.761 91.806 27.761 91.668 27.940 91.687 27.994 91.493 27.994 91.455 28.084 91.242 27.976 91.048 27.976 91.029 28.030 90.969 28.066 90.581 28.066 90.484 28.084 90.368 28.264 90.327 28.317 90.133 28.317 90.017 28.156 89.629 28.084 89.553 28.066 89.532 27.850 89.359 27.599 89.143 27.419 88.971 27.383 88.971 27.311 88.930 27.383 88.852 27.454 88.795 27.545 88.777 27.725 88.874 27.904 88.874 28.066 88.755 28.030 88.542 27.976 88.348 27.868 88.154 27.904 87.903 27.815 87.708 27.815 87.436 27.850 87.396 27.833 87.201 27.940 86.988 28.084 86.775 27.958 86.543 27.940 86.524 27.994 86.330 28.084 86.114 27.886 86.077 27.994 85.980 28.012 85.980 28.084 85.942 28.335 85.748 28.282 85.532 28.282 85.319 28.335 85.124 28.407 85.124 28.603 85.222 28.585 85.009 28.550 84.852 28.693 84.658 28.925 84.251 29.068 84.213 29.246 84.075 29.264 83.862 29.157 83.668 29.335 83.474 29.478 83.377 29.478 83.320 29.585 83.280 29.691 82.853 29.993 82.446 30.082 82.252 30.347 82.039 30.365 81.823 30.418 81.629 30.383 81.435 30.153 81.378 30.064 81.300 30.046 81.124 30.206 81.046 30.471 80.601 30.577 80.213 30.630 80.232 30.789 80.097 30.860 80.019 30.878 79.959 30.983 79.765 30.948 79.571 31.019 79.514 31.089 79.417 31.106 79.417 31.212 79.301 31.405 79.164 31.353 78.969 31.282 78.891 31.458 78.775 31.599 78.853 31.774 78.697 31.827 78.737 31.845 78.737 31.915 78.756 32.072 78.659 32.248 78.484 32.422 78.484 32.544 78.406 32.579 78.640 32.631 78.737 32.614 78.794 32.439 78.835 32.370 79.029 32.387 79.126 32.509 79.261 32.561 79.417 32.648 79.514 32.666 79.533 32.841 79.474 32.997 79.377 33.170 79.398 33.222 79.204 33.326 79.010 33.414 78.950 33.552 78.950 33.742 79.029 33.760 79.029 33.794 78.988 33.863 78.950 34.037 79.145 34.020 79.377 34.089 79.493 34.261 79.592 34.398 79.552 34.416 79.630 34.416 79.727 34.450 79.784 34.570 79.843 34.657 79.959 34.657 80.019 34.777 80.116 34.948 80.213 35.120 80.213 35.462 80.407 35.514 80.329 35.531 80.291 35.548 80.213 35.514 80.019 35.599 79.843 35.769 79.649 35.838 79.649 35.957 79.455 35.957 79.261 35.940 79.242 35.923 79.029 35.906 78.872 35.769 78.484 35.650 78.252 35.496 77.863 35.496 77.378 35.650 76.833 35.650 76.795 35.838 76.426 35.838 76.172 36.025 75.978 36.110 75.940 36.280 76.019 36.449 76.019 36.602 75.921 36.737 75.746 36.771 75.552 36.839 75.436 36.906 75.417 36.991 75.007 37.008 74.853 37.058 74.697 37.025 74.581 37.092 74.503 37.261 74.678 37.294 74.775 37.244 74.932 37.294 75.007 37.361 75.126 37.530 75.007 37.715 74.950 37.949 74.932 38.116 74.834 38.300 74.816 38.384 74.872 38.567 74.697 38.634 74.446 38.651 74.252 38.534 74.058 38.534 73.961 38.651 73.823 38.667 73.823 38.834 73.747 39.000 73.845 39.050 73.785 39.216 73.629 39.448 73.669 ; #952 2 79.482 76.833 79.492 77.456 79.543 77.262 79.638 76.445 79.603 76.232 79.543 76.445 79.543 76.639 ; #953 2 80.880 79.029 80.805 79.242 80.805 79.455 80.846 80.291 80.938 80.445 80.971 79.784 80.954 79.242 ; #954 2 74.542 79.377 74.572 79.592 74.621 79.377 74.601 79.182 ; #955 2 75.503 81.961 75.397 81.979 75.378 81.766 75.387 81.572 75.282 81.648 75.320 81.864 75.223 81.901 75.320 82.058 75.320 82.271 75.425 82.058 75.493 82.174 ; #956 2 75.885 81.864 75.866 82.271 75.932 81.648 ; #957 2 77.477 82.387 77.468 82.581 77.513 82.368 77.513 82.174 ; #958 2 75.932 83.320 75.960 83.085 75.989 82.659 75.960 82.465 75.941 82.659 75.951 82.853 75.913 82.910 ; #959 -2 58.590 75.127 58.651 75.182 59.007 75.687 59.139 75.668 59.428 75.959 59.546 76.269 59.546 76.464 59.585 76.658 59.728 76.736 60.002 76.755 60.119 76.717 60.249 76.852 60.339 76.755 60.481 76.852 60.584 77.068 60.712 76.990 60.712 77.087 60.725 77.087 60.854 77.124 60.841 77.203 60.829 77.281 60.816 77.416 60.829 77.591 60.764 77.998 60.803 78.193 60.776 78.387 60.776 78.465 60.829 78.659 60.776 78.872 60.829 79.066 60.816 79.261 60.789 79.320 60.648 79.417 60.687 79.611 60.674 80.019 60.661 80.213 60.751 80.407 60.776 80.814 60.751 81.027 60.636 81.240 60.623 81.435 60.648 81.864 60.558 82.077 60.558 82.271 60.700 82.406 60.931 82.891 61.007 83.085 61.046 83.533 60.893 83.843 60.829 84.038 60.854 84.269 60.995 84.658 61.301 85.726 61.428 85.726 61.453 85.823 61.580 85.920 61.580 85.707 61.618 85.513 61.695 85.378 61.707 85.162 61.796 84.971 61.796 84.777 61.896 84.582 61.947 84.542 62.085 84.523 62.173 84.445 62.311 84.620 62.424 84.814 62.548 84.911 62.635 85.106 62.685 85.106 62.809 85.262 62.884 85.456 63.008 85.551 63.095 85.532 63.132 85.475 63.267 85.551 63.390 85.378 63.477 85.359 63.526 85.143 63.587 85.046 63.636 85.240 63.880 85.475 63.990 85.669 64.026 85.864 64.159 85.980 64.281 86.039 64.354 85.961 64.474 85.864 64.607 85.920 64.727 85.864 64.823 85.669 64.763 85.281 64.811 85.068 64.931 84.930 64.895 84.523 64.895 84.310 65.015 84.407 65.098 84.329 65.158 84.388 65.264 84.582 65.384 84.523 65.502 84.523 65.585 84.251 65.704 84.172 65.798 83.978 65.786 83.590 65.904 83.552 66.021 83.339 66.139 83.377 66.186 83.552 66.302 83.396 66.407 83.182 66.523 83.104 66.616 83.182 66.744 83.204 66.860 83.048 66.975 82.816 67.217 82.174 67.320 82.309 67.434 82.290 67.548 82.368 67.605 82.114 67.719 82.114 67.776 81.920 67.889 81.766 67.946 81.823 67.946 82.252 68.059 82.406 68.171 82.406 68.171 82.503 68.283 82.719 68.419 82.719 68.531 82.640 68.631 82.853 68.664 83.048 68.687 83.007 68.810 82.621 68.920 82.562 69.032 82.349 69.142 82.484 69.186 81.882 69.407 81.845 69.439 81.766 69.319 81.648 69.252 81.456 69.263 81.435 69.274 81.416 69.252 81.203 69.208 81.008 69.308 80.620 69.341 80.329 69.341 80.019 69.429 79.824 69.648 79.514 69.648 79.417 69.680 79.204 69.790 79.066 69.888 78.988 69.964 79.182 69.996 79.145 70.083 79.339 70.127 79.417 70.321 80.019 70.396 80.116 70.450 80.329 70.461 80.523 70.396 80.717 70.418 80.814 70.526 80.679 70.633 80.777 70.751 80.620 70.772 80.658 70.878 80.582 70.985 80.561 71.091 80.426 71.123 80.019 71.271 79.592 71.366 79.182 71.441 79.182 71.503 79.377 71.619 79.398 71.608 79.806 71.629 80.019 71.703 80.135 71.828 80.056 71.932 80.213 71.984 80.019 72.037 79.806 72.037 79.592 72.078 79.204 72.120 79.010 72.109 78.950 72.182 78.737 72.379 78.524 72.399 78.503 72.368 79.010 72.379 79.417 72.326 79.630 72.254 79.824 72.192 80.097 72.141 80.504 72.099 80.698 71.996 80.795 71.880 81.184 71.776 81.319 71.693 81.726 71.703 82.114 71.766 82.719 71.818 82.719 71.984 82.543 72.058 82.349 72.161 82.327 72.275 82.233 72.285 82.017 72.326 81.804 72.358 81.203 72.502 80.795 72.604 80.833 72.707 80.639 72.809 80.777 72.911 80.852 73.024 80.777 73.074 80.582 73.165 80.367 73.217 80.561 73.287 80.348 73.388 80.485 73.489 80.679 73.569 80.874 73.599 81.087 73.599 81.281 73.640 81.475 73.640 81.901 73.670 82.562 73.650 83.377 73.690 83.806 73.700 84.232 73.749 84.639 73.749 84.852 73.710 85.027 73.700 85.240 73.710 85.456 73.809 85.610 73.819 85.823 73.860 86.017 73.890 86.853 73.870 87.067 73.880 87.145 73.890 87.182 74.049 87.067 74.059 87.280 74.088 86.872 74.187 86.794 74.247 86.600 74.257 86.193 74.355 86.077 74.376 86.290 74.415 86.077 74.415 86.290 74.454 86.484 74.385 86.697 74.296 86.835 74.276 87.048 74.376 87.126 74.425 86.932 74.454 86.716 74.562 86.659 74.621 86.058 74.689 85.845 74.708 86.058 74.806 86.230 74.708 86.330 74.718 86.524 74.611 86.716 74.640 86.910 74.748 86.891 74.777 87.104 74.874 87.182 74.953 87.396 74.991 87.201 75.001 87.396 74.933 87.611 75.039 87.668 75.039 87.455 75.089 87.029 75.118 86.932 75.166 87.126 75.146 87.533 75.098 87.940 75.137 88.172 75.243 88.348 75.282 88.561 75.436 88.990 75.465 89.203 75.446 89.591 75.512 89.804 75.512 90.017 75.570 90.017 75.617 90.619 75.656 90.813 75.617 91.007 75.647 91.417 75.637 91.611 75.732 91.708 75.732 92.116 75.828 93.338 75.904 93.961 75.951 94.155 75.894 93.748 75.932 93.513 75.875 93.416 75.970 93.281 75.885 93.065 75.960 92.852 76.055 92.949 76.093 93.143 76.055 93.359 76.037 93.785 76.074 93.980 76.121 93.766 76.093 94.387 76.055 94.600 76.159 94.640 76.103 95.067 76.112 95.261 76.159 95.455 76.140 95.862 76.046 96.075 75.866 95.649 75.951 96.056 75.960 96.270 76.007 96.483 75.979 96.680 75.875 96.542 75.932 96.949 75.998 97.143 76.026 97.357 75.932 97.203 75.979 97.416 76.017 97.823 76.065 97.629 76.084 97.823 76.065 98.017 76.093 98.230 76.150 98.036 76.187 98.446 76.234 98.659 76.196 98.854 76.225 99.048 76.121 99.201 76.159 99.590 76.065 99.571 76.046 99.862 76.074 99.881 76.273 99.611 76.282 99.396 76.413 98.988 76.516 98.988 76.487 99.201 76.469 99.396 76.487 100.019 76.460 100.288 76.516 100.930 76.460 101.125 76.478 101.319 76.450 101.532 76.450 101.745 76.394 101.961 76.413 102.155 76.516 101.300 76.582 101.087 76.684 101.125 76.777 101.203 76.795 100.968 76.889 100.871 76.981 101.046 77.036 101.241 77.128 101.338 77.238 101.669 77.284 101.864 77.376 101.823 77.367 102.017 77.449 102.212 77.504 102.425 77.531 102.640 77.622 102.854 77.650 103.067 77.613 103.280 77.722 103.900 77.722 104.094 77.668 104.310 77.695 104.523 77.613 104.736 77.558 105.125 77.540 105.338 77.558 105.551 77.531 105.745 77.440 105.864 77.349 106.036 77.358 105.823 77.331 105.610 77.247 105.397 77.229 105.203 77.183 105.009 77.165 104.580 77.119 104.386 77.119 104.191 77.082 103.978 77.073 104.191 77.119 104.620 77.082 104.833 77.101 105.046 77.082 105.241 77.119 105.842 77.027 105.669 76.981 105.475 76.999 105.883 77.045 106.077 77.045 106.271 77.008 106.465 77.027 106.659 77.027 106.872 77.008 107.067 76.953 107.280 76.852 107.261 76.795 107.048 76.702 106.891 76.647 106.678 76.544 106.522 76.516 106.309 76.497 106.368 76.487 106.600 76.526 107.220 76.506 107.630 76.535 107.825 76.637 107.959 76.730 107.959 76.712 108.348 76.712 108.774 76.749 109.378 76.739 109.570 76.702 109.785 76.693 110.096 76.739 110.290 76.758 110.484 76.721 110.697 76.749 110.910 76.684 111.104 76.693 111.318 76.610 111.533 76.610 111.746 76.460 112.154 76.366 111.959 76.422 112.154 76.432 112.367 76.375 112.580 76.282 112.736 76.187 112.639 76.150 112.852 76.055 112.736 76.055 112.949 76.150 113.046 76.168 113.260 76.253 113.065 76.206 113.281 76.131 113.473 76.026 113.494 75.932 113.454 75.904 113.861 75.808 113.861 75.704 113.767 75.608 113.572 75.675 113.435 75.685 113.222 75.837 112.620 75.828 112.386 75.761 112.601 75.732 112.814 75.541 112.893 75.628 113.087 75.647 113.300 75.551 113.300 75.446 113.707 75.349 113.670 75.243 113.513 75.001 112.912 74.943 112.717 74.864 112.094 74.660 111.784 74.689 111.571 74.679 111.358 74.542 110.970 74.522 110.756 74.473 110.562 74.464 110.349 74.365 110.193 74.365 109.980 74.276 109.688 74.208 109.901 74.078 109.494 74.039 109.087 73.899 108.677 73.799 108.483 73.650 108.094 73.650 107.881 73.609 107.687 73.619 107.280 73.449 106.872 73.348 106.756 73.297 106.562 73.307 106.133 73.095 105.785 72.993 105.745 72.891 105.551 72.789 105.162 72.779 104.949 72.759 104.968 72.769 105.435 72.943 106.036 73.155 106.231 73.165 106.425 73.145 106.813 73.175 107.029 73.155 107.242 73.165 107.630 73.197 107.843 73.297 108.251 73.338 108.852 73.368 109.046 73.469 109.184 73.449 109.397 73.539 109.184 73.479 109.378 73.449 109.591 73.459 109.785 73.499 109.980 73.569 110.096 73.589 110.309 73.650 110.503 73.700 110.910 73.650 111.104 73.398 110.503 73.398 110.152 73.348 110.349 73.317 110.562 73.217 110.446 73.135 110.813 73.024 110.929 72.921 110.775 72.820 110.716 72.779 110.638 72.667 110.678 72.636 110.891 72.563 111.086 72.512 111.299 72.461 111.220 72.358 111.183 72.316 111.396 72.316 111.590 72.213 111.630 72.151 111.765 72.141 111.784 72.130 111.978 71.996 112.019 71.398 112.038 71.366 112.232 71.303 112.426 71.292 112.620 71.219 112.717 71.112 112.601 71.007 112.191 71.017 112.038 70.964 111.825 70.899 111.415 70.846 111.220 70.825 110.970 70.793 110.543 70.665 110.249 70.558 110.152 70.450 110.290 70.407 110.096 70.407 109.980 70.386 109.688 70.353 109.570 70.246 109.513 70.224 109.300 70.116 109.378 70.051 109.454 70.007 109.513 69.942 109.475 69.888 109.435 69.779 109.260 69.779 109.046 69.844 108.852 69.834 108.658 69.855 108.251 69.680 107.862 69.648 107.552 69.593 107.145 69.539 106.951 69.516 106.756 69.550 106.562 69.539 106.406 69.429 106.193 69.319 106.271 68.943 106.794 68.821 106.910 68.519 106.910 67.844 106.891 67.331 106.813 67.274 106.619 67.262 106.406 67.056 105.980 67.021 105.591 66.941 105.785 66.894 106.077 66.837 106.055 66.721 106.193 66.488 106.328 66.384 106.133 66.151 106.212 66.104 106.387 65.986 106.484 65.657 106.503 65.609 106.697 65.538 106.756 65.514 106.951 65.384 106.854 65.396 106.659 65.301 106.446 65.241 106.465 65.134 106.271 65.050 106.055 64.943 106.115 64.823 106.017 64.751 105.842 64.619 105.767 64.498 105.804 64.510 106.017 64.402 106.212 64.438 106.406 64.450 106.619 64.486 106.697 64.269 107.299 64.281 107.512 64.184 107.900 64.221 108.038 64.208 108.232 64.087 108.310 63.978 108.116 63.990 108.075 63.990 107.687 63.868 107.590 63.856 107.436 63.953 107.242 63.917 107.029 63.965 106.835 63.965 106.716 63.843 106.813 63.721 106.678 63.599 106.678 63.513 106.522 63.501 106.522 63.439 106.619 63.304 106.697 63.316 106.503 63.119 106.425 63.070 106.231 62.946 106.231 62.846 106.446 62.809 106.465 62.685 106.484 62.635 106.697 62.511 106.716 62.399 106.581 62.286 106.387 62.160 106.425 62.072 106.406 61.997 106.212 61.871 105.999 61.770 105.939 61.644 105.842 61.632 105.648 61.491 105.319 61.415 105.125 61.377 104.930 61.238 104.990 61.148 104.796 61.007 104.620 60.944 104.580 60.803 104.483 60.674 104.561 60.533 104.601 60.403 104.677 60.287 105.065 60.287 105.281 60.274 105.475 60.132 105.454 60.002 105.513 59.872 105.494 59.833 105.338 59.859 105.144 59.820 105.028 59.768 105.009 59.702 104.814 59.572 104.893 59.455 105.009 59.428 105.241 59.297 105.222 59.179 105.338 59.047 105.203 58.967 105.009 58.862 104.814 58.730 104.893 58.610 104.601 58.597 104.464 58.730 104.251 58.756 104.251 58.770 104.057 58.901 103.900 58.915 103.727 58.980 103.533 59.087 103.339 59.231 103.261 59.270 103.067 59.244 102.872 59.192 102.697 59.192 102.543 59.047 102.446 58.783 102.581 58.743 102.543 58.651 102.346 58.517 102.193 58.464 101.901 58.424 101.707 58.291 101.591 58.225 101.378 58.145 101.241 58.010 101.162 57.877 101.009 57.890 100.833 57.742 100.893 57.608 100.852 57.473 100.968 57.460 100.949 57.446 100.930 57.419 100.736 57.514 100.523 57.662 100.367 57.796 100.288 57.930 100.116 58.077 100.075 58.077 100.019 58.050 99.825 58.064 99.668 57.930 99.512 57.796 99.436 57.769 99.164 57.729 98.969 57.796 98.756 57.809 98.271 57.823 98.077 57.742 97.883 57.406 97.629 57.379 97.610 57.039 97.357 57.012 97.435 56.985 97.454 56.958 97.494 56.822 97.494 56.795 97.745 56.509 97.901 56.385 97.688 56.234 97.610 56.125 97.454 56.097 97.454 56.097 97.222 56.028 97.027 55.876 96.990 55.807 96.852 55.656 96.774 55.516 96.852 55.420 96.871 55.281 96.814 55.030 96.620 55.002 96.639 54.862 96.717 54.722 96.601 54.568 96.561 54.525 96.582 54.568 96.329 54.540 96.251 54.554 96.056 54.399 95.940 54.385 95.727 54.244 95.687 54.102 95.978 53.806 96.388 53.663 96.582 53.634 96.698 53.734 96.911 53.634 97.106 53.592 97.338 53.450 97.532 53.378 97.726 53.364 97.883 53.249 98.077 53.221 98.290 53.092 98.368 53.150 98.756 53.150 98.969 53.092 99.067 52.949 99.261 52.848 98.872 52.805 98.932 52.647 98.951 52.503 98.813 52.518 98.756 52.489 98.738 52.344 98.697 52.200 98.835 52.141 98.951 51.851 98.738 51.764 98.562 51.721 98.349 51.574 98.271 51.457 98.252 51.457 98.077 51.311 97.961 51.164 97.939 51.062 97.883 50.679 98.036 50.561 98.252 50.472 98.349 50.339 98.309 50.043 98.114 49.998 97.998 49.923 97.610 49.789 97.494 49.729 97.300 49.819 97.106 49.893 96.911 49.908 96.717 49.938 96.329 49.998 96.135 49.998 95.803 49.952 95.746 49.893 95.552 49.908 95.514 49.952 95.436 49.952 95.242 49.998 95.048 50.028 95.029 50.043 95.007 50.087 94.600 50.220 94.406 50.517 94.328 50.576 94.252 50.576 93.842 50.620 93.416 50.605 93.222 50.635 93.027 50.664 92.990 50.797 92.990 50.723 92.795 50.752 92.601 50.871 92.388 50.723 92.270 50.694 92.075 50.708 91.843 50.472 91.455 50.458 91.261 50.428 91.048 50.205 90.659 50.220 90.619 50.191 90.425 50.117 90.230 49.998 90.039 49.982 90.017 49.900 89.718 49.990 89.699 50.139 89.602 50.287 89.467 50.435 89.583 50.391 89.777 50.406 89.855 50.553 89.855 50.671 89.661 50.745 89.583 50.893 89.389 51.010 89.195 51.127 89.135 51.275 89.038 51.421 89.060 51.537 88.866 51.537 88.844 51.552 88.825 51.537 88.806 51.523 88.747 51.377 88.690 51.304 88.477 51.362 88.283 51.435 88.186 51.508 87.970 51.654 88.089 51.757 88.127 51.771 87.913 51.931 88.067 52.061 88.261 52.163 88.456 52.308 88.456 52.424 88.243 52.453 88.205 52.539 88.011 52.481 87.816 52.481 87.622 52.496 87.582 52.582 87.387 52.597 87.253 52.755 87.137 52.898 87.096 52.928 87.118 53.071 87.174 53.114 86.980 53.200 86.786 53.228 86.767 53.242 86.748 53.257 86.845 53.371 87.040 53.486 86.980 53.471 86.883 53.514 86.689 53.599 86.573 53.741 86.495 53.884 86.300 54.011 86.106 54.025 86.028 54.138 85.796 54.209 85.602 54.322 85.408 54.476 85.273 54.462 85.154 54.547 85.079 54.743 85.079 54.785 85.116 54.912 85.079 54.995 84.982 55.037 85.000 55.176 84.982 55.260 84.922 55.399 84.922 55.385 84.728 55.524 84.863 55.649 84.787 55.691 84.669 55.704 84.631 55.842 84.631 55.980 84.612 56.035 84.496 56.050 84.302 56.021 84.086 55.911 83.989 55.897 83.951 55.760 83.757 55.704 83.563 55.718 83.447 55.746 83.309 55.897 83.503 56.035 83.309 56.091 83.369 56.104 83.253 56.255 83.193 56.379 83.253 56.516 83.234 56.516 83.018 56.406 82.864 56.392 82.670 56.351 82.476 56.337 82.282 56.337 82.028 56.283 81.815 56.269 81.602 56.406 81.445 56.530 81.232 56.474 80.844 56.461 80.631 56.433 80.437 56.516 80.242 56.584 80.126 56.612 80.086 56.762 79.892 56.898 79.698 56.979 79.309 57.020 79.096 57.060 78.883 57.087 78.689 57.156 78.476 57.156 78.163 57.170 77.969 57.170 77.756 57.183 77.543 57.183 77.135 57.197 76.941 57.224 76.728 57.237 76.512 57.237 76.183 57.244 76.116 57.392 76.000 57.527 75.784 57.648 75.592 57.783 75.592 57.930 75.571 58.010 75.377 58.077 75.164 58.090 75.145 58.238 75.223 58.385 75.164 58.477 75.377 ; #960 2 73.630 86.503 73.589 86.697 73.690 86.910 ; #961 2 72.891 78.659 72.779 78.775 72.738 78.988 72.697 79.398 72.748 79.592 72.963 79.455 73.064 79.280 73.064 79.085 72.901 78.697 ; #962 2 74.138 82.387 74.059 82.581 74.157 82.581 ; #963 2 74.078 83.066 74.039 83.474 74.138 83.280 74.138 83.066 74.108 82.872 74.078 82.853 ; #964 2 73.979 84.194 73.959 84.407 74.008 84.194 74.029 84.000 ; #965 2 74.473 84.504 74.395 84.717 74.464 84.911 74.503 84.698 ; #966 2 74.572 85.456 74.572 85.262 74.473 85.240 74.454 85.435 74.503 85.629 74.542 85.650 ; #967 2 74.768 85.281 74.729 85.475 74.718 85.669 74.816 85.494 ; #968 2 74.503 86.096 74.572 85.864 74.473 85.669 74.444 85.864 ; #969 2 74.953 86.640 74.884 86.425 74.904 86.230 74.845 86.446 74.826 86.853 74.884 87.048 74.991 87.029 ; #970 2 77.146 88.736 77.045 88.658 77.137 88.949 ; #971 2 77.192 89.203 77.165 89.397 77.211 89.629 77.302 89.610 77.311 89.397 77.257 89.184 77.165 89.184 ; #972 2 76.215 94.562 76.187 94.775 76.263 94.969 76.253 94.775 ; #973 2 76.675 94.932 76.647 95.145 76.656 95.339 76.712 95.145 ; #974 2 76.196 96.329 76.234 96.542 76.301 96.329 76.225 96.116 76.273 95.922 76.253 95.320 76.196 95.533 76.150 95.940 76.150 96.154 76.093 96.367 ; #975 2 77.119 96.135 77.073 95.746 77.064 95.533 77.027 95.320 76.990 95.533 77.018 95.959 76.962 95.746 76.990 96.154 77.119 96.582 77.201 96.542 ; #976 2 76.702 95.474 76.647 95.668 76.675 95.668 ; #977 2 76.702 96.270 76.665 96.056 76.610 96.251 76.702 96.483 ; #978 2 76.017 96.717 75.989 96.930 76.017 97.125 76.103 97.357 ; #979 2 76.225 96.971 76.329 97.046 76.347 96.852 76.243 96.755 76.168 96.774 ; #980 2 77.395 106.659 77.449 106.872 77.468 106.659 77.385 106.446 ; #981 2 77.257 107.512 77.349 107.415 77.257 107.220 77.229 107.299 ; #982 2 76.469 112.426 76.497 112.620 76.591 112.483 76.628 112.094 76.600 112.019 ; #983 2 76.357 113.338 76.394 113.144 76.366 113.125 ; #984 2 21.790 88.097 21.679 88.154 21.864 88.154 ; #985 3 22.807 90.484 22.678 90.543 22.770 90.562 22.807 90.678 22.862 90.678 ; #986 3 22.105 90.543 21.993 90.543 22.124 90.600 ; #987 3 22.954 90.659 22.954 90.600 22.917 90.678 ; #988 -3 22.585 90.600 22.474 90.678 22.382 90.697 22.124 90.640 22.105 90.697 21.993 90.678 22.179 90.853 22.345 90.872 22.530 90.835 22.770 90.697 ; #989 3 22.271 91.201 22.456 91.085 22.087 91.048 ; #990 3 18.770 93.551 18.695 93.748 18.882 93.648 ; #991 2 16.057 94.503 15.868 94.446 16.057 94.619 16.245 94.659 ; #992 2 11.445 98.230 11.637 98.252 11.445 98.174 ; #993 2 12.364 98.406 12.556 98.328 12.364 98.328 ; #994 2 11.617 98.562 11.809 98.543 11.617 98.425 ; #995 -3 24.787 88.100 24.969 88.197 24.896 88.272 24.987 88.410 25.024 88.410 25.206 88.448 25.206 88.720 25.188 88.758 25.188 88.952 25.297 89.011 25.533 88.777 25.515 88.563 25.624 88.448 25.679 88.448 25.952 88.118 26.133 88.175 26.206 88.294 26.315 88.369 26.387 88.526 26.460 88.488 26.513 88.332 26.622 88.388 26.550 88.488 26.531 88.507 26.369 88.701 26.297 88.720 26.315 88.777 26.315 88.798 26.297 88.933 26.242 88.971 26.242 89.030 26.424 88.914 26.351 89.127 26.151 89.146 26.024 89.340 26.024 89.456 26.097 89.632 26.206 89.691 26.115 89.748 26.024 89.845 25.970 89.807 25.952 89.826 25.952 89.866 25.915 89.845 25.824 89.807 25.788 89.826 25.733 89.826 25.697 89.845 25.606 89.866 25.588 89.866 25.570 89.845 25.551 89.845 25.478 89.826 25.425 89.826 25.388 89.807 25.316 89.923 25.297 90.001 25.224 90.214 25.224 90.255 25.170 90.427 25.170 90.934 25.224 91.245 25.133 91.633 25.152 91.690 25.206 92.021 25.152 92.216 25.042 92.410 25.005 92.410 24.878 92.466 24.859 92.369 24.896 92.253 24.823 92.253 24.549 92.156 24.366 91.981 24.366 91.943 24.183 91.903 24.183 91.690 24.220 91.652 24.110 91.574 24.110 91.379 24.018 91.301 23.853 91.245 23.669 91.166 23.485 91.245 23.099 91.361 23.191 91.495 22.988 91.574 23.007 91.711 23.191 91.808 23.375 91.808 23.430 91.846 23.522 91.962 23.705 91.943 23.669 92.059 23.742 92.175 23.742 92.272 23.613 92.272 23.338 92.369 23.301 92.391 23.117 92.369 22.933 92.410 22.896 92.448 22.398 92.564 21.991 92.604 21.898 92.623 21.528 92.604 21.342 92.661 21.305 92.661 21.380 92.429 21.399 92.234 21.212 92.197 21.175 92.197 21.064 92.253 20.897 92.234 21.175 92.040 21.935 91.903 22.139 91.827 22.343 91.846 22.398 91.884 22.343 91.827 22.361 91.749 22.546 91.671 22.730 91.517 22.915 91.495 22.786 91.361 22.786 91.147 22.601 91.010 22.601 90.934 22.786 90.778 22.970 90.700 23.062 90.621 23.558 90.719 23.558 90.681 23.613 90.621 23.577 90.524 23.595 90.468 23.411 90.449 23.467 90.255 23.448 90.233 23.319 90.524 23.264 90.584 23.080 90.506 23.062 90.449 22.933 90.506 22.767 90.371 22.693 90.487 22.509 90.449 22.454 90.584 22.269 90.584 22.102 90.390 22.287 90.390 22.139 90.371 21.880 90.274 21.935 90.117 22.028 90.079 22.102 90.136 22.139 90.195 22.214 90.233 22.102 90.136 22.009 90.001 22.177 90.079 22.009 89.942 22.306 89.885 22.491 90.001 22.435 89.866 22.084 89.788 21.898 89.866 21.935 89.650 21.769 89.613 21.880 89.553 21.972 89.553 22.343 89.613 22.195 89.553 22.009 89.553 22.306 89.478 21.898 89.478 21.787 89.359 21.991 89.359 21.824 89.284 21.824 89.187 21.935 89.089 22.046 89.068 22.214 89.068 22.417 88.992 22.564 88.933 22.638 88.952 22.657 88.933 22.951 88.895 23.044 88.874 23.062 88.874 23.228 88.933 23.375 88.758 23.503 88.798 23.522 88.777 23.613 88.623 23.705 88.563 23.890 88.642 23.981 88.739 24.018 88.720 24.201 88.720 24.201 88.739 24.256 88.739 24.329 88.701 24.329 88.661 24.348 88.488 24.348 88.466 24.421 88.369 24.439 88.350 24.458 88.332 24.476 88.253 24.530 88.118 ; #996 -3 21.882 88.485 21.827 88.504 21.808 88.504 ; #997 2 81.120 89.961 81.078 90.368 81.053 91.048 81.062 91.261 81.111 91.455 81.193 91.436 81.218 91.201 81.226 90.562 81.209 90.077 ; #998 2 79.482 91.358 79.439 91.552 79.492 91.358 79.543 90.932 ; #999 2 79.912 91.320 79.878 91.104 79.827 91.299 79.809 91.514 79.801 92.135 79.750 92.348 79.707 91.940 79.672 92.135 79.655 92.367 79.697 92.990 79.750 93.203 79.817 93.610 79.878 93.804 79.938 93.610 80.023 92.893 80.015 92.680 80.057 91.784 80.049 91.377 80.065 90.969 80.023 91.164 79.997 91.201 ; #1000 2 80.023 93.416 79.997 93.648 79.997 93.804 80.039 94.077 80.057 94.309 80.108 94.503 80.142 94.910 80.142 95.126 80.201 95.746 80.218 96.154 80.226 97.027 80.251 97.241 80.319 97.435 80.403 97.222 80.571 97.068 80.663 97.143 80.647 97.338 80.671 97.532 80.663 97.745 80.696 97.961 80.788 97.842 80.829 97.629 80.872 97.222 80.938 96.796 81.012 96.601 81.103 96.426 81.243 96.000 81.292 95.668 81.276 95.242 81.243 95.048 81.218 95.493 81.218 95.261 81.120 94.813 81.095 94.212 81.062 93.998 81.004 93.143 80.921 93.106 80.905 92.911 80.838 92.698 80.755 92.680 80.772 93.087 80.796 93.319 80.730 93.125 80.688 92.930 80.596 92.795 80.513 92.755 80.513 92.348 80.446 91.940 80.387 92.561 80.387 91.900 80.370 91.708 80.285 91.630 80.303 92.019 80.294 92.426 80.319 92.874 80.311 93.065 80.260 93.300 80.303 92.874 80.269 92.194 80.218 92.388 80.201 92.580 80.159 92.777 80.184 92.561 80.184 92.348 80.167 92.154 80.150 92.601 80.099 92.990 ; #1001 2 79.379 92.251 79.422 92.464 79.449 92.270 79.414 92.075 79.414 91.843 ; #1002 2 79.075 92.620 79.136 92.213 79.127 92.194 ; #1003 2 79.912 97.823 79.997 97.939 80.082 97.939 80.142 97.745 80.167 97.551 80.167 97.162 80.133 96.949 80.108 96.542 80.108 95.514 80.023 95.320 80.073 95.126 80.049 94.910 79.997 94.716 79.963 94.484 79.894 94.271 79.809 94.697 79.766 94.096 79.715 93.882 79.629 93.688 79.543 93.281 79.552 92.874 79.517 93.087 79.439 93.300 79.517 93.494 79.535 93.707 79.474 93.920 79.449 93.726 79.431 93.939 79.474 94.155 79.405 94.349 79.319 94.368 79.223 94.446 79.188 94.659 79.101 94.738 79.065 94.951 79.040 95.164 79.092 95.377 79.092 95.590 79.004 95.668 79.004 96.097 78.987 96.504 78.996 96.736 78.873 97.162 78.820 97.572 78.785 98.425 78.812 98.640 78.829 99.493 78.926 99.881 79.022 99.881 79.109 99.727 79.179 99.512 79.232 99.280 79.301 99.085 79.267 99.512 79.309 99.709 79.578 99.746 79.664 99.843 79.758 100.019 79.827 100.019 79.904 99.825 79.929 99.611 79.997 99.396 80.049 99.085 80.039 98.659 79.997 98.465 79.955 98.503 79.861 98.368 79.904 97.961 79.809 97.785 79.741 97.572 79.732 97.378 79.766 97.591 79.852 97.629 ; #1004 2 79.980 94.193 79.997 94.193 79.997 93.980 ; #1005 2 79.292 101.980 79.362 101.767 79.327 101.551 79.240 101.475 79.223 101.259 79.136 101.106 79.048 101.125 78.987 101.513 79.031 101.106 78.970 100.893 78.882 100.796 78.785 100.968 78.759 101.184 78.785 100.561 78.706 100.367 78.520 100.191 78.431 100.038 78.334 100.019 78.145 99.571 78.046 99.436 77.948 99.571 77.966 99.784 77.957 100.019 78.118 100.990 78.181 101.184 78.208 102.406 78.226 102.619 78.181 102.813 78.243 103.029 78.235 103.242 78.262 103.862 78.342 104.504 78.351 104.698 78.334 104.893 78.511 105.513 78.599 105.551 78.776 105.378 78.846 105.162 78.855 104.968 78.793 104.774 78.978 104.542 79.048 104.135 79.136 104.019 79.144 103.806 79.109 103.417 79.057 103.201 79.057 102.988 78.882 102.678 78.882 102.465 78.970 102.619 79.240 102.910 79.327 103.104 79.387 102.891 79.422 102.465 79.422 102.271 79.327 102.155 79.240 102.252 79.257 102.036 ; #1006 2 79.603 99.922 79.655 100.232 79.697 100.019 ; #1007 2 78.271 106.522 78.306 106.309 78.217 105.920 78.190 106.115 ; #1008 2 78.092 107.590 78.181 107.455 78.154 106.425 78.101 106.640 78.083 107.048 78.092 107.261 78.046 107.396 ; #1009 2 1.612 98.835 1.418 98.794 0.447 99.145 0.252 99.164 0.233 99.339 0.000 99.727 -0.194 99.784 -0.388 99.922 -0.854 100.348 -1.242 100.445 -1.825 100.814 -2.038 100.893 -2.232 100.893 -2.485 101.027 -2.659 101.241 -2.873 101.416 -3.261 101.648 -3.668 102.252 -4.056 102.406 -4.521 102.988 -5.044 103.825 -5.432 104.116 -5.586 104.310 -5.644 104.310 -5.799 104.504 -5.915 104.561 -5.934 104.601 -5.741 104.658 -5.548 104.542 -5.548 104.736 -5.780 105.125 -5.586 105.203 -5.567 105.397 -5.683 105.591 -5.876 105.726 -5.683 105.823 -4.908 105.920 -4.502 105.920 -4.307 105.823 -4.153 105.842 -3.959 105.920 -3.571 105.864 -3.377 105.939 -3.183 106.077 -2.989 106.036 -2.911 105.842 -2.718 105.804 -2.524 105.629 -2.388 105.416 -2.349 105.222 -2.369 104.930 -2.756 104.561 -2.582 104.698 -2.388 104.736 -2.369 104.658 -2.232 104.852 -2.038 104.871 -1.980 104.658 -1.786 104.561 -1.534 104.464 -1.145 104.426 -1.009 104.019 -1.029 103.825 -0.757 103.436 -0.563 103.436 -0.447 103.396 -0.466 103.590 -0.369 103.358 -0.175 103.493 -0.019 103.709 0.000 103.825 0.117 103.784 0.524 103.417 0.485 103.220 0.330 103.029 0.194 102.640 0.252 102.446 0.252 102.716 0.330 102.910 0.466 103.104 0.660 102.970 0.718 102.775 0.718 102.581 0.854 102.387 1.048 102.212 1.262 102.155 1.457 101.999 1.631 101.804 1.650 101.610 1.728 101.416 1.922 101.338 2.135 101.203 2.290 101.009 2.213 100.814 2.019 100.912 1.825 100.949 2.058 100.774 2.155 100.580 2.349 100.386 2.543 100.329 2.524 100.135 2.718 100.019 2.814 100.019 3.125 99.784 3.222 99.590 3.552 99.201 3.726 98.813 4.075 98.425 4.269 98.271 4.327 98.290 4.521 98.174 4.715 97.980 4.908 97.901 5.044 97.707 5.257 97.513 5.140 97.222 5.257 97.009 5.277 96.814 5.218 96.620 5.218 96.426 5.257 96.232 5.354 96.038 5.548 95.824 5.625 95.630 5.644 95.436 5.490 95.242 5.296 95.223 4.715 95.533 4.346 95.903 4.017 96.291 3.823 96.445 3.707 96.833 3.532 97.027 2.931 97.416 2.853 97.610 2.659 97.669 2.446 97.669 2.251 97.842 2.232 98.036 1.999 98.446 1.806 98.640 ; #1010 2 2.563 96.329 2.659 96.135 2.853 95.940 2.834 95.746 2.640 95.803 2.485 96.194 2.369 96.329 2.369 96.504 ; #1011 2 2.116 97.357 2.193 97.162 2.058 97.357 ; #1012 2 0.641 97.901 1.029 97.939 1.165 97.726 1.359 97.572 1.534 97.378 1.398 97.184 1.009 97.416 0.835 97.610 0.621 97.707 ; #1013 2 8.176 98.309 7.963 98.290 7.770 98.328 7.963 98.406 8.156 98.349 ; #1014 2 -0.350 98.387 -0.544 98.328 -0.466 98.522 ; #1015 2 0.000 98.349 -0.194 98.446 0.000 98.406 ; #1016 2 -1.612 99.280 -1.009 98.932 -0.951 98.738 -1.145 98.640 -1.340 98.678 -1.728 98.988 -1.805 99.126 ; #1017 2 -2.193 99.765 -2.077 99.552 -2.271 99.668 -2.388 99.881 ; #1018 2 -2.776 100.019 -2.679 100.213 -2.504 100.019 -2.659 100.019 ; #1019 2 -3.125 100.483 -2.931 100.407 -2.950 100.213 -3.338 100.483 ; #1020 2 2.096 101.610 1.941 101.416 1.728 101.494 1.747 101.688 1.941 101.785 ; #1021 2 1.515 102.484 1.554 102.328 1.457 102.114 1.418 102.309 1.437 102.503 ; #1022 2 -5.373 102.387 -5.393 102.193 -5.490 102.387 ; #1023 2 1.281 102.446 1.223 102.252 1.029 102.290 1.009 102.484 1.203 102.503 ; #1024 2 0.951 102.891 1.009 102.503 0.815 102.484 0.777 103.067 ; #1025 2 0.893 103.183 1.087 102.988 1.029 102.794 0.893 102.988 0.854 103.183 ; #1026 2 1.203 104.601 1.184 104.407 0.990 104.310 1.029 104.504 0.815 104.620 1.029 104.677 ; #1027 2 -0.350 104.348 -0.544 104.348 -0.544 104.542 -0.350 104.504 ; #1028 2 0.000 104.542 -0.194 104.445 -0.291 104.833 -0.291 105.028 -0.194 104.814 0.000 104.620 ; #1029 2 -1.922 105.222 -2.116 105.300 -2.116 105.688 -2.504 105.961 -2.718 105.939 -2.853 106.133 -3.047 106.522 -3.086 106.716 -2.892 106.619 -2.698 106.697 -2.504 106.522 -2.427 106.328 -2.232 106.231 -1.844 106.155 -1.650 106.036 -1.534 105.842 -1.728 105.785 -1.534 105.572 -1.650 105.378 -1.728 105.378 ; #1030 2 -7.732 108.833 -7.770 109.046 -7.693 108.852 -7.732 109.009 -7.693 109.203 -7.886 110.058 -8.098 110.446 -8.214 110.854 -8.272 111.358 -8.330 111.552 -8.291 111.746 -8.311 112.135 -8.426 112.736 -8.407 112.930 -8.291 113.125 -8.311 113.319 -8.426 113.513 -8.580 113.920 -8.638 114.115 -8.619 114.309 -8.754 114.387 -8.792 114.600 -8.580 114.444 -8.388 114.387 -7.828 114.484 -7.635 114.096 -7.732 113.688 -7.713 113.494 -7.790 113.300 -7.539 112.774 -7.345 112.833 -7.210 112.639 -7.056 112.639 -6.882 112.445 -6.901 112.232 -6.805 111.843 -6.631 111.493 -6.708 111.299 -6.689 111.202 -6.495 111.086 -6.418 110.891 -6.515 110.697 -6.785 110.619 -6.978 110.425 -6.901 110.212 -6.940 110.017 -6.843 109.629 -6.862 109.222 -6.785 109.028 -6.824 108.912 -6.805 108.717 -6.418 108.445 -6.264 108.251 -6.321 108.057 -6.225 107.881 -6.264 107.687 -6.148 107.493 -5.953 107.299 -5.915 107.029 -6.090 107.007 -6.109 106.813 -5.973 106.349 -6.031 105.961 -6.225 105.842 -6.418 105.842 -6.495 105.648 -6.689 105.591 -6.689 105.397 -6.882 105.572 -6.824 105.961 -6.882 106.155 -6.998 106.349 -6.978 106.543 -7.384 106.425 -7.500 107.415 -7.558 107.609 -7.713 107.862 -7.770 108.116 -7.790 108.523 -7.674 108.717 -7.693 108.852 ; #1031 2 2.853 105.785 3.047 105.707 2.834 105.726 ; #1032 2 -2.756 107.649 -3.145 107.649 -3.164 107.843 -3.242 108.038 -3.047 108.232 -2.853 108.310 -2.601 108.116 -2.543 107.803 -2.563 107.727 ; #1033 2 3.668 108.213 3.843 108.407 4.036 108.348 4.230 108.232 4.056 108.038 3.843 108.075 ; #1034 2 -1.029 109.454 -1.223 109.629 -1.029 109.764 ; #1035 2 -7.017 112.755 -7.191 112.949 -7.229 113.162 -7.249 113.551 -7.114 113.745 -6.978 114.133 -6.862 113.939 -6.901 113.551 -6.901 112.949 ; #1036 2 -6.978 115.318 -6.862 115.512 -6.843 115.318 ; #1037 2 10.812 92.561 10.774 92.367 10.582 92.561 10.774 92.580 ; #1038 2 12.116 92.833 12.307 92.893 12.518 93.009 12.708 93.009 12.899 92.911 13.091 93.065 13.282 93.046 13.473 92.930 13.282 92.852 12.899 92.833 12.689 92.755 12.498 92.736 12.307 92.795 12.172 92.777 12.078 92.658 11.867 92.542 11.675 92.736 12.058 92.777 ; #1039 2 8.214 93.494 8.002 93.513 8.214 93.551 ; #1040 2 7.171 93.688 6.978 93.726 6.785 93.864 6.978 93.939 7.171 93.882 ; #1041 -2 12.172 92.777 12.307 92.795 12.307 92.893 12.116 92.833 12.058 92.777 ; #1042 -2 11.675 92.736 11.867 92.542 12.078 92.658 12.172 92.777 12.058 92.777 ; #1043 -2 12.498 92.736 12.689 92.755 12.899 92.833 12.899 92.911 12.708 93.009 12.518 93.009 12.307 92.893 12.307 92.795 ; #1044 -2 13.282 92.852 13.473 92.930 13.282 93.046 13.091 93.065 12.899 92.911 12.899 92.833 ; #1045 -2 19.201 93.920 18.994 93.980 18.957 93.785 19.089 93.669 19.276 93.551 19.238 93.804 19.257 93.882 ; #1046 -2 19.313 93.785 19.501 93.785 19.369 93.980 ; #1047 -2 18.583 97.378 18.563 97.397 18.563 97.378 ; #1048 -2 18.474 97.508 18.588 97.799 18.793 97.758 19.000 97.758 19.187 97.856 19.355 97.818 19.561 97.877 19.729 98.050 19.785 98.090 19.655 98.284 19.673 98.479 19.692 98.632 19.748 98.770 19.766 98.964 19.804 99.021 19.991 99.061 20.102 99.158 20.065 99.353 20.121 99.525 20.327 99.487 20.327 99.566 20.308 99.663 20.420 99.895 20.383 100.011 20.327 100.089 20.327 100.108 20.587 100.186 20.773 100.342 20.830 100.634 20.867 100.653 20.848 100.555 20.960 100.555 21.034 100.634 21.293 100.731 21.275 100.806 21.368 101.003 21.554 101.157 21.554 101.176 21.387 101.235 21.201 101.273 21.219 101.429 21.164 101.702 21.126 101.740 21.164 101.799 21.219 101.856 21.424 101.758 21.572 101.837 21.628 101.799 21.813 101.780 22.016 101.624 22.202 101.564 22.257 101.586 22.331 101.661 22.479 101.780 22.479 101.799 22.405 101.856 22.368 101.896 22.423 101.953 22.386 102.147 22.479 102.284 22.553 102.360 22.756 102.479 22.664 102.711 22.479 102.924 22.479 103.099 22.590 103.177 22.774 103.371 22.756 103.409 22.572 103.525 22.774 103.663 22.664 103.779 22.479 103.973 22.497 103.992 22.516 104.011 22.774 104.129 22.811 104.283 22.719 104.264 22.664 104.361 22.719 104.458 22.811 104.671 22.903 104.866 22.922 104.866 22.958 104.847 23.161 104.906 23.161 104.982 23.179 105.003 23.253 105.197 23.363 105.332 23.271 105.411 23.161 105.545 23.087 105.583 23.032 105.683 22.922 105.915 22.922 106.012 22.977 106.069 22.940 106.244 22.848 106.284 22.866 106.479 22.922 106.535 22.866 106.692 22.793 106.789 22.756 106.827 22.572 106.729 22.479 106.595 22.460 106.595 22.460 106.576 22.368 106.576 22.183 106.673 21.961 106.711 21.961 106.924 21.905 106.943 21.794 107.040 21.702 107.196 21.646 107.353 21.591 107.371 21.646 107.487 21.572 107.506 21.591 107.622 21.628 107.738 21.646 107.798 21.535 107.992 21.461 108.070 21.406 107.760 21.275 107.566 21.256 107.487 21.256 107.450 21.238 107.450 21.219 107.371 21.164 107.371 20.978 107.274 20.941 107.080 20.978 107.040 20.904 106.845 20.997 106.651 20.941 106.692 20.922 106.770 20.848 106.711 20.791 106.729 20.680 106.692 20.643 106.595 20.476 106.595 20.289 106.498 20.270 106.516 19.991 106.206 19.991 106.109 19.935 105.993 19.748 105.874 19.598 105.818 19.262 105.818 19.019 105.642 18.644 105.758 18.644 105.818 18.455 105.915 18.231 106.128 17.948 106.516 17.873 106.479 17.684 106.479 17.722 106.400 17.684 106.382 17.684 106.498 17.647 106.535 17.459 106.651 17.290 106.808 17.044 107.137 16.856 107.158 16.818 107.293 16.666 107.487 16.628 107.469 16.478 107.682 16.459 107.760 16.269 107.895 16.174 108.167 16.042 108.245 15.985 108.205 16.023 108.264 16.118 108.245 16.042 108.264 15.853 108.380 15.834 108.421 15.455 108.634 15.379 108.769 15.303 108.787 15.322 108.885 15.133 108.885 14.600 109.098 14.067 109.235 13.439 109.254 13.248 109.332 13.057 109.332 13.057 109.370 12.866 109.467 12.828 109.411 12.636 109.429 12.655 109.235 12.484 109.273 12.446 109.176 12.254 109.216 12.254 109.176 12.196 109.235 12.006 109.216 11.814 109.138 11.699 109.235 11.526 109.022 11.507 109.041 11.316 108.906 11.143 108.537 10.951 108.361 10.913 108.167 10.855 108.089 10.682 107.992 10.644 107.798 10.490 107.525 10.433 107.331 10.490 107.021 10.682 106.983 10.625 106.905 10.663 106.770 10.452 106.651 10.471 106.595 10.413 106.595 10.452 106.651 10.279 106.632 10.298 106.438 10.260 106.516 10.067 106.711 9.991 106.673 9.991 106.576 10.029 106.498 10.221 106.360 10.240 106.303 9.991 106.516 9.837 106.576 10.221 106.128 10.048 106.244 9.779 106.516 9.587 106.576 9.548 106.382 9.683 106.166 9.875 105.993 9.991 105.837 9.587 106.166 9.394 106.166 9.298 106.050 9.144 105.624 8.990 105.429 8.932 105.411 8.662 105.176 8.566 104.982 8.604 104.787 8.701 104.982 8.797 104.944 8.816 104.809 9.317 104.828 9.625 104.866 9.817 104.925 9.837 105.119 9.991 105.100 10.202 104.809 10.163 104.615 10.356 104.518 10.394 104.537 10.375 104.496 10.471 104.361 10.452 104.324 10.605 103.914 10.509 103.779 10.548 103.566 10.682 103.566 10.721 103.700 10.951 103.700 11.143 103.566 11.047 103.469 10.855 103.390 10.855 103.196 10.894 103.118 11.469 103.158 11.565 103.061 11.526 103.002 11.622 103.061 11.622 102.983 11.814 102.905 11.622 102.924 11.756 102.905 12.025 102.770 12.196 102.576 12.159 102.400 12.350 102.360 12.292 102.244 12.484 102.090 12.484 102.050 12.580 101.974 12.674 101.799 12.599 101.448 12.636 101.254 12.655 101.176 12.618 100.982 12.751 100.906 13.248 100.925 13.477 101.003 13.458 100.847 13.591 100.593 13.477 100.477 13.496 100.283 13.401 100.089 13.267 99.973 13.000 100.089 12.618 99.973 12.388 100.011 12.140 100.011 11.948 99.876 11.756 99.816 11.565 99.682 10.759 99.428 10.567 99.293 10.375 99.293 10.183 99.196 9.971 99.158 9.760 99.158 9.163 99.390 9.259 99.584 9.298 99.779 9.125 99.895 8.546 100.011 8.373 100.186 8.508 100.167 8.315 100.283 7.563 100.421 7.350 100.439 7.563 100.283 7.756 100.205 7.679 100.148 7.485 100.205 7.118 100.496 7.080 100.690 6.925 100.885 6.848 101.079 6.887 101.411 6.751 101.605 6.558 101.740 6.384 101.915 6.230 102.109 6.210 102.109 5.997 101.993 5.823 101.915 5.745 101.702 5.861 101.508 5.803 101.392 5.649 101.216 5.726 101.022 5.765 101.003 5.900 101.100 6.094 101.119 6.230 101.060 6.288 100.866 6.462 100.731 6.442 100.615 6.520 100.421 6.520 100.380 6.635 100.321 6.693 100.205 6.404 100.129 6.404 100.108 6.945 99.719 7.118 99.741 7.099 99.682 7.292 99.603 7.485 99.331 7.640 99.274 7.679 99.080 7.871 99.080 8.219 98.729 8.354 98.673 8.296 98.266 8.489 98.206 8.893 98.303 9.086 98.381 9.279 98.381 9.529 98.460 9.721 98.576 9.991 98.613 10.183 98.711 10.336 98.748 10.509 98.827 10.567 98.808 10.759 98.905 10.817 99.021 11.009 99.158 11.086 99.255 11.297 99.331 11.354 99.390 11.545 99.468 11.737 99.644 12.121 99.525 12.369 99.450 12.560 99.450 12.789 99.234 13.000 99.177 13.191 99.215 13.305 99.215 13.705 99.177 13.991 99.021 14.143 98.867 14.277 98.673 14.639 98.400 14.791 98.284 14.981 98.225 15.208 98.225 15.246 98.419 15.341 98.438 15.455 98.613 15.645 98.595 16.042 98.595 16.231 98.924 16.459 98.867 16.269 98.729 16.685 98.516 16.798 98.557 16.893 98.516 17.063 98.322 17.214 98.225 17.365 98.128 17.553 97.934 17.817 97.702 17.911 97.721 17.929 97.740 18.117 97.702 18.306 97.624 18.380 97.448 18.549 97.392 ; #1049 2 1.418 103.784 1.262 103.806 1.379 103.997 ; #1050 5 19.986 110.152 19.912 110.017 19.986 109.939 20.005 109.669 19.836 109.494 19.912 109.300 19.724 109.260 19.613 109.065 19.276 108.639 18.882 108.658 18.695 108.717 18.507 108.698 18.488 108.814 18.357 109.009 18.357 109.125 18.264 109.513 18.207 109.532 18.207 109.726 18.395 109.785 18.432 110.017 18.376 110.017 18.563 110.152 18.789 110.543 19.164 110.503 19.183 110.619 19.369 110.678 19.557 110.832 19.631 110.988 19.818 111.007 20.005 110.951 20.005 110.406 19.912 110.446 20.005 110.387 20.024 110.290 20.005 110.174 ; #1051 5 21.066 110.328 20.974 110.249 20.992 110.446 21.048 110.465 ; #1052 2 2.485 111.396 2.698 111.318 2.504 111.339 ; #1053 5 -25.772 113.087 -25.590 112.930 -25.772 112.968 -26.154 113.222 ; #1054 5 22.899 113.435 22.807 113.513 22.770 113.629 ; #1055 5 22.197 113.842 22.216 113.901 22.327 114.077 22.253 113.861 ; #1056 2 -8.291 114.522 -8.465 114.910 -8.619 115.104 -8.850 115.123 -8.850 115.220 -8.657 115.299 -8.445 115.706 -8.233 115.590 -8.118 115.396 -8.060 115.202 -8.195 114.988 -8.098 114.503 ; #1057 5 -8.368 116.154 -8.561 116.094 -8.754 116.094 -8.734 115.900 -8.869 116.094 -8.908 116.289 -8.831 116.483 -8.638 116.639 -8.445 116.717 -8.253 116.580 -8.214 116.348 ; #1058 5 -3.261 116.232 -3.455 116.075 -3.648 116.019 -4.036 116.135 -3.882 116.329 -3.474 116.329 -3.280 116.289 ; #1059 5 -3.416 116.407 -3.609 116.426 -3.416 116.445 ; #1060 5 -8.734 118.309 -8.869 118.522 -8.811 118.716 -8.850 118.910 -8.754 119.104 -8.368 119.007 -8.291 118.813 -8.503 118.716 -8.291 118.678 -8.253 118.484 -8.349 118.271 -8.156 118.174 -8.098 117.980 -8.137 117.786 -8.349 117.823 -8.580 118.212 -8.715 118.017 -8.734 117.823 -8.522 117.648 -8.388 117.260 -8.522 116.852 -8.908 116.774 -9.062 116.968 -9.100 117.162 -9.024 117.551 -8.927 117.745 -8.927 117.920 ; #1061 5 9.909 118.775 9.986 118.891 10.005 119.086 10.217 119.261 10.370 119.474 10.351 119.552 10.543 119.687 10.947 119.512 11.350 119.533 10.947 119.336 10.755 119.474 10.947 119.280 10.755 119.336 10.563 119.318 10.486 119.123 10.293 118.989 10.178 118.813 10.005 118.659 9.813 118.562 9.659 118.368 9.254 118.036 9.197 117.842 9.081 117.667 8.580 117.281 8.388 117.203 8.484 117.397 8.677 117.610 8.715 117.804 8.869 117.999 9.062 118.115 9.312 118.503 9.659 118.775 ; #1062 5 23.763 117.397 23.689 117.357 23.726 117.494 23.763 117.494 ; #1063 5 -8.156 117.688 -8.195 117.494 -8.388 117.551 ; #1064 5 4.172 117.707 4.036 117.939 4.172 117.920 ; #1065 5 3.455 117.902 3.513 117.902 3.571 117.804 ; #1066 5 -2.659 120.677 -2.659 120.871 -2.718 121.065 -2.911 121.106 -3.242 121.047 -3.455 120.890 -3.648 121.028 -3.978 121.416 -4.056 121.610 -4.211 121.629 -4.599 121.494 -4.792 121.667 -4.831 121.861 -4.695 122.055 -4.502 122.193 -4.404 122.600 -4.443 122.794 -4.327 122.716 -4.269 122.910 -4.075 122.873 -4.056 122.678 -3.862 122.522 -3.726 122.347 -3.532 122.290 -3.416 122.368 -3.435 122.406 -3.242 122.347 -3.183 122.484 -2.989 122.309 -2.213 121.745 -2.058 121.551 -1.999 121.357 -1.767 121.338 -1.922 121.551 -1.883 121.745 -1.689 121.902 -1.534 122.290 -1.398 122.503 -1.009 122.794 -0.893 122.989 -1.029 123.377 -0.835 123.474 -0.641 123.396 -0.563 123.202 -0.602 123.007 -0.777 122.813 -0.777 122.212 -0.932 122.018 -0.932 121.804 -0.815 121.610 -0.990 121.416 -1.242 121.203 -1.437 121.084 -1.359 120.755 -1.300 120.639 -1.106 120.601 -0.912 120.426 -0.835 120.232 -0.641 120.094 -0.194 120.019 0.214 120.173 0.408 120.329 0.524 120.523 0.524 120.717 0.408 120.912 0.408 121.106 0.485 121.300 0.466 121.338 0.524 121.532 0.524 121.726 0.427 121.920 0.485 122.115 0.505 123.105 0.311 123.299 0.291 123.687 0.388 124.329 0.505 124.523 0.699 124.620 1.087 124.987 1.281 125.084 1.476 125.260 1.670 125.144 1.650 124.931 1.457 124.833 1.398 124.620 1.203 124.561 1.145 124.367 0.951 124.173 0.835 123.784 0.912 123.396 0.912 123.202 0.971 123.007 0.854 122.813 1.009 122.406 1.087 121.939 1.068 121.551 1.262 121.435 1.242 121.241 1.340 121.047 1.223 120.852 1.029 120.774 0.835 120.620 0.796 120.232 0.699 120.038 0.505 120.019 0.388 119.900 0.194 119.803 0.000 119.881 0.000 119.649 -0.291 119.784 -0.485 119.765 -0.680 119.844 -0.873 119.862 -0.641 119.746 -1.223 119.336 -1.418 119.318 -1.825 119.358 -2.019 119.220 -2.213 119.164 -2.408 119.164 -2.601 118.989 -2.737 118.794 -2.931 118.891 -3.125 118.794 -3.513 118.910 -3.513 119.104 -3.435 119.318 -3.494 119.512 -3.706 119.474 -4.036 119.630 -4.424 119.630 -4.812 119.512 -5.005 119.493 -5.179 119.396 -5.296 119.377 -5.490 119.436 -5.625 119.630 -5.683 119.822 -5.586 120.019 -5.528 120.445 -5.315 120.386 -5.121 120.289 -4.928 120.329 -4.734 120.426 -3.940 120.367 -3.726 120.464 -3.338 120.426 -3.145 120.289 -2.950 120.270 ; #1067 5 -9.832 120.639 -9.639 120.483 -9.659 120.289 -9.351 120.019 -9.389 119.822 -9.351 119.630 -9.389 119.220 -9.447 119.026 -9.543 118.951 -9.678 119.048 -9.736 119.164 -9.774 119.552 -10.005 119.997 -10.217 120.173 -10.255 120.367 -10.178 120.755 -10.005 120.833 ; #1068 5 25.554 119.881 25.481 119.687 25.427 119.728 ; #1069 5 17.096 120.464 16.511 120.329 16.398 120.348 16.208 120.445 16.113 120.407 16.037 120.173 16.284 119.941 16.322 119.803 16.113 119.784 15.924 119.803 15.792 119.900 15.716 119.900 15.678 119.960 15.469 119.922 15.261 120.038 14.786 120.116 14.805 120.310 14.691 120.270 14.500 120.407 14.424 120.601 14.634 120.601 14.824 120.561 14.767 120.677 14.748 120.815 14.634 120.968 14.481 120.990 14.481 120.912 14.215 120.620 14.062 120.639 13.910 120.717 13.891 120.931 13.701 120.931 13.624 121.125 13.624 121.338 13.815 121.473 13.872 121.570 13.910 121.648 13.910 121.842 13.758 122.134 13.586 122.347 13.415 122.503 13.224 122.541 13.205 122.678 13.377 122.697 13.624 122.541 13.739 122.541 13.929 122.444 13.929 122.581 13.796 122.794 13.624 122.854 13.435 123.202 13.244 123.318 13.052 123.318 12.861 123.803 12.861 123.997 12.785 123.862 12.594 123.960 12.689 124.154 13.072 124.154 13.148 123.784 13.339 123.765 13.529 123.609 13.548 123.552 13.720 123.687 13.739 123.881 13.815 123.862 13.948 123.512 14.062 123.318 13.815 123.339 13.720 123.242 13.720 123.145 13.815 123.067 13.987 123.105 14.120 123.026 14.272 122.832 14.291 122.444 14.101 122.328 14.158 122.174 13.967 122.328 13.929 122.152 14.005 121.939 14.177 121.745 14.348 121.726 14.386 121.688 14.576 121.629 14.767 121.667 14.805 121.629 15.014 121.570 15.204 121.435 15.412 121.494 15.602 121.591 15.792 121.570 16.000 121.688 16.113 121.883 16.075 122.077 16.094 122.096 16.303 122.249 16.322 122.212 16.511 122.271 16.586 122.347 16.813 122.465 17.058 122.541 17.134 122.541 17.115 122.484 17.379 122.271 17.756 122.174 18.113 122.212 18.301 122.347 18.376 122.347 18.451 122.152 18.339 122.077 18.282 121.883 18.301 121.667 18.113 121.707 18.170 121.648 18.357 121.629 18.621 121.203 18.507 120.601 18.264 120.580 17.887 120.464 17.511 120.445 ; #1070 5 10.563 119.822 10.543 120.019 10.601 120.019 ; #1071 5 -8.773 120.154 -8.831 120.348 -8.792 120.542 -8.927 120.931 -8.927 121.338 -8.831 121.532 -8.869 121.726 -8.831 121.920 -8.734 122.115 -8.715 122.522 -8.619 122.757 -8.426 122.832 -8.330 123.026 -8.137 122.989 -8.137 122.794 -8.349 122.794 -8.407 122.600 -8.600 122.484 -8.638 122.290 -8.465 121.980 -8.484 121.786 -8.580 121.591 -8.561 121.397 -8.349 120.990 -8.272 120.407 -8.311 120.210 -8.561 119.822 -8.754 119.822 -8.811 120.019 ; #1072 5 5.140 120.232 5.335 120.210 5.238 120.019 5.044 119.881 5.140 120.019 ; #1073 5 11.905 120.019 11.982 119.900 11.771 120.019 ; #1074 5 12.078 119.960 12.001 120.019 12.001 120.348 12.192 120.270 12.230 120.057 12.268 120.019 ; #1075 5 24.478 121.861 24.880 121.861 24.971 121.958 25.117 121.804 25.263 121.513 25.117 121.300 25.044 121.084 24.935 120.990 24.661 120.852 24.442 120.620 23.653 120.135 23.303 120.154 23.083 120.094 22.512 120.348 22.308 120.639 21.938 120.717 22.124 120.890 22.419 120.931 22.604 121.028 22.954 121.319 23.138 121.416 24.112 121.648 24.295 121.786 ; #1076 5 13.758 120.310 13.834 120.116 13.662 120.289 ; #1077 5 12.670 121.570 12.746 121.513 13.129 121.494 13.301 121.376 13.492 120.912 13.473 120.717 13.511 120.523 13.454 120.329 13.415 120.483 13.224 120.601 13.129 120.717 12.919 120.815 12.727 120.815 12.708 120.871 12.498 120.949 12.268 121.125 12.211 121.260 12.326 121.357 12.307 121.416 12.498 121.454 ; #1078 5 -5.799 120.483 -6.186 120.445 -6.379 120.523 -5.992 120.580 -5.780 120.523 ; #1079 5 -7.307 120.852 -7.287 121.047 -7.268 120.852 ; #1080 5 6.012 121.300 6.090 121.106 5.915 120.912 5.857 121.300 ; #1081 5 -10.601 121.745 -10.428 121.939 -10.543 121.745 ; #1082 5 6.012 121.920 6.069 121.786 5.992 121.861 5.992 121.902 ; #1083 5 13.396 122.152 13.529 121.939 13.435 121.823 13.244 121.958 13.205 122.055 ; #1084 5 14.957 121.842 14.805 122.036 14.995 122.077 15.033 122.036 14.995 121.842 ; #1085 5 -5.102 121.883 -5.296 121.842 -5.470 122.036 -5.277 122.077 -5.082 121.999 ; #1086 5 -0.350 122.077 -0.369 121.883 -0.388 122.077 ; #1087 5 11.733 122.387 11.943 121.980 11.771 121.883 11.733 122.077 11.541 122.096 10.985 122.055 10.793 121.958 10.409 121.980 10.639 122.249 10.697 122.600 10.985 122.813 11.023 122.970 11.216 123.105 11.445 123.183 11.541 123.105 11.426 122.910 11.541 122.891 11.541 122.600 ; #1088 5 6.476 122.212 6.669 122.212 6.747 122.018 6.553 121.902 6.399 122.018 ; #1089 5 7.693 122.134 7.539 122.134 7.152 121.920 6.940 121.999 6.940 122.193 7.191 122.271 7.384 122.406 7.577 122.444 7.770 122.638 7.713 122.832 7.635 122.813 7.442 122.854 7.539 123.045 7.732 123.145 7.519 123.261 7.442 123.474 7.635 123.474 7.828 123.533 7.809 123.687 7.616 124.057 7.423 124.173 7.249 124.232 7.191 124.192 7.152 124.094 6.959 123.978 6.766 124.057 6.438 124.057 6.244 124.192 6.031 124.502 5.876 124.912 5.896 125.106 6.090 125.260 6.031 125.300 5.838 125.222 5.760 125.222 5.567 125.319 5.586 125.435 5.973 125.707 6.167 125.726 6.515 125.591 6.689 125.397 6.843 125.454 7.056 125.629 7.268 125.707 7.249 125.861 6.863 126.077 6.476 126.134 6.283 126.212 6.302 126.231 6.766 126.271 6.959 126.328 7.114 126.522 7.307 126.581 7.403 126.560 7.597 126.600 7.809 126.484 7.905 126.387 8.021 126.444 8.214 126.465 8.214 126.328 8.330 126.347 8.523 126.309 8.638 126.115 8.792 126.328 9.101 126.193 9.312 126.231 9.235 126.096 9.293 126.018 9.486 125.939 9.697 125.610 9.639 125.416 9.158 125.551 9.004 125.551 8.985 125.416 9.081 125.222 8.869 125.181 8.947 124.987 8.947 124.793 8.542 124.774 8.503 124.677 8.580 124.523 8.523 124.329 8.253 124.251 8.195 124.192 8.176 123.997 8.060 123.803 7.963 123.706 7.983 123.668 8.060 123.784 8.253 123.881 8.446 123.844 8.638 123.687 8.638 123.436 8.523 123.164 8.330 123.007 8.214 123.007 8.118 122.813 8.079 122.503 8.002 122.290 ; #1090 5 12.651 122.174 12.479 122.018 12.287 121.958 12.097 122.036 12.498 122.134 ; #1091 5 14.043 122.193 14.120 121.999 14.005 122.193 ; #1092 5 29.993 122.347 30.099 122.212 29.993 122.018 29.993 122.152 ; #1093 5 -4.734 122.522 -4.928 122.387 -5.315 122.290 -5.432 122.562 -4.850 122.775 -4.618 122.735 ; #1094 5 9.235 122.891 9.043 123.007 9.062 123.105 9.216 123.318 9.409 123.261 9.601 123.145 9.793 123.164 10.197 123.318 10.390 123.358 10.543 123.493 10.735 123.552 10.928 123.415 11.004 123.242 10.928 123.045 10.851 122.970 10.735 122.989 10.543 122.854 10.217 122.854 10.024 122.757 9.967 122.600 9.832 122.406 9.620 122.465 9.428 122.619 ; #1095 5 12.307 122.581 12.268 122.657 12.460 122.697 12.498 122.541 ; #1096 5 10.601 122.735 10.582 122.541 10.409 122.562 ; #1097 5 -4.541 122.891 -4.947 122.854 -5.140 122.794 -5.528 122.600 -5.644 122.794 -5.451 122.910 -5.412 123.105 -5.218 123.123 -5.005 122.989 -4.812 123.045 -4.618 123.220 -4.404 123.086 ; #1098 5 -1.437 123.299 -1.495 123.493 -1.300 123.571 -1.165 123.183 -1.203 122.989 -1.398 122.813 -1.592 122.891 -1.398 123.086 -1.592 123.145 -1.650 123.261 ; #1099 5 -10.908 122.910 -10.850 123.105 -10.716 123.299 -10.524 123.261 -10.716 123.067 -10.755 122.873 ; #1100 5 -8.619 122.929 -8.445 123.123 -8.522 122.929 ; #1101 5 -4.114 122.989 -4.230 123.183 -4.036 123.261 -3.978 123.067 ; #1102 5 12.880 123.299 13.091 123.086 12.899 123.164 12.689 123.396 ; #1103 5 -8.407 123.105 -8.253 123.299 -8.291 123.105 ; #1104 5 12.498 123.280 12.192 123.299 12.001 123.202 12.001 123.299 12.192 123.455 12.211 123.552 11.924 123.784 11.828 123.978 12.001 124.016 12.001 124.057 12.078 124.016 12.192 123.803 12.345 123.687 12.498 123.493 12.498 123.377 ; #1105 5 -8.465 123.318 -8.522 123.512 -8.445 123.706 -8.291 123.922 -8.253 123.706 -8.272 123.415 ; #1106 5 10.082 123.687 10.255 123.881 10.447 124.038 11.062 124.057 11.254 124.094 11.062 123.941 10.851 123.900 10.332 123.590 10.120 123.512 10.063 123.455 9.813 123.377 9.409 123.318 9.601 123.493 10.005 123.649 ; #1107 5 9.293 123.649 9.101 123.571 9.081 123.609 ; #1108 5 -10.370 123.609 -10.370 123.803 -10.178 124.192 -10.178 124.405 -9.659 124.987 -9.466 125.106 -9.293 125.376 -9.120 125.958 -9.004 126.152 -8.966 126.347 -8.773 126.735 -8.715 126.929 -8.580 127.123 -8.388 127.299 -8.368 126.910 -8.426 126.716 -8.465 126.328 -8.522 126.115 -8.484 125.920 -8.657 125.144 -8.946 124.968 -9.100 124.699 -9.235 124.289 -9.447 123.900 -9.620 123.706 -10.005 123.590 ; #1109 5 12.345 123.803 12.498 123.784 12.498 123.687 ; #1110 5 9.601 124.232 9.639 124.426 9.755 124.620 10.005 124.580 10.140 124.386 10.140 124.192 10.063 124.076 10.005 124.057 9.890 123.862 9.620 123.881 ; #1111 5 -8.426 124.016 -8.484 124.213 -8.291 124.192 -8.349 123.997 ; #1112 5 13.662 124.426 13.853 124.426 14.043 124.270 13.643 124.057 13.511 124.232 ; #1113 5 12.556 125.106 12.556 124.931 12.518 124.871 12.498 124.658 12.537 124.502 12.498 124.289 12.287 124.367 12.097 124.502 12.020 124.699 11.963 124.717 11.752 124.912 11.560 124.912 11.369 125.009 11.273 125.125 11.081 125.260 11.139 125.707 11.369 125.648 11.426 125.570 11.560 125.494 11.905 125.454 12.020 125.513 12.135 125.473 12.172 125.532 12.211 125.532 12.287 125.319 12.498 125.279 ; #1114 5 11.675 124.561 11.675 124.367 11.483 124.464 11.464 124.502 ; #1115 5 -8.253 124.542 -8.445 124.367 -8.445 124.561 -8.349 125.144 -8.156 125.084 -8.176 124.699 -8.137 124.483 ; #1116 5 10.043 124.968 10.255 125.009 10.255 125.203 10.620 125.181 10.716 125.047 11.139 125.047 11.331 124.987 11.369 124.815 11.311 124.620 11.464 124.426 11.043 124.405 10.928 124.445 10.985 124.658 10.774 124.793 10.678 124.815 10.486 124.755 10.332 124.793 10.178 124.774 ; #1117 5 -14.500 125.222 -14.557 125.144 -14.634 125.106 -14.653 125.163 ; #1118 5 5.373 125.435 5.412 125.376 5.393 125.338 5.354 125.376 ; #1119 5 10.390 125.707 10.197 125.551 10.005 125.591 10.005 125.707 ; #1120 5 10.005 126.055 9.813 125.999 9.736 126.055 9.774 126.193 10.005 126.115 ; #1121 5 4.133 126.813 4.327 126.910 4.385 126.716 4.172 126.775 3.979 126.775 ; #1122 -2 6.418 100.135 6.708 100.213 6.650 100.329 6.534 100.386 6.534 100.426 6.457 100.620 6.476 100.736 6.302 100.871 6.244 101.065 6.109 101.125 5.915 101.106 5.780 101.009 5.741 101.027 5.664 101.222 5.818 101.397 5.876 101.513 5.760 101.707 5.838 101.920 6.012 101.999 6.225 102.114 6.244 102.114 6.206 102.252 6.031 102.446 5.857 102.562 5.664 102.756 5.548 102.951 5.354 103.164 4.773 103.455 4.366 103.493 3.979 103.455 3.765 103.377 3.494 103.474 2.911 103.455 2.659 103.649 2.621 103.784 1.786 104.213 1.359 104.288 1.457 104.094 1.650 103.978 1.437 103.959 1.457 103.765 1.379 103.649 1.379 103.455 1.573 103.320 1.786 102.910 1.844 102.716 2.038 102.581 2.193 102.193 2.563 101.804 2.679 101.513 2.834 101.319 3.028 101.397 3.222 101.319 3.610 101.046 3.765 100.852 4.017 100.893 4.153 100.698 4.366 100.601 4.560 100.658 4.753 100.601 4.947 100.445 5.509 100.407 5.567 100.367 5.954 100.367 6.167 100.288 6.418 100.116 ; #1123 2 10.447 103.997 10.236 103.959 10.043 104.057 10.236 104.094 10.447 104.038 ; #1124 -4 64.823 106.017 64.943 106.115 65.050 106.055 65.134 106.271 65.241 106.465 65.301 106.446 65.396 106.659 65.384 106.854 65.514 106.951 65.538 106.756 65.609 106.697 65.657 106.503 65.986 106.484 66.104 106.387 66.151 106.212 66.384 106.133 66.488 106.328 66.721 106.193 66.837 106.055 66.894 106.077 66.941 105.785 67.021 105.591 67.056 105.980 67.262 106.406 67.274 106.619 67.331 106.813 67.844 106.891 68.519 106.910 68.821 106.910 68.943 106.794 69.319 106.271 69.429 106.193 69.539 106.406 69.550 106.562 69.516 106.756 69.539 106.951 69.593 107.145 69.648 107.552 69.680 107.862 69.855 108.251 69.834 108.658 69.844 108.852 69.779 109.046 69.779 109.260 69.888 109.435 69.942 109.475 70.007 109.513 70.051 109.454 70.116 109.378 70.224 109.300 70.246 109.513 70.353 109.570 70.386 109.688 70.407 109.980 70.407 110.096 70.450 110.290 70.558 110.152 70.665 110.249 70.793 110.543 70.825 110.970 70.846 111.220 70.899 111.415 70.964 111.825 71.017 112.038 71.007 112.191 71.112 112.601 71.219 112.717 71.292 112.620 71.303 112.426 71.366 112.232 71.398 112.038 71.996 112.019 72.130 111.978 72.141 111.784 72.151 111.765 72.213 111.630 72.316 111.590 72.316 111.396 72.358 111.183 72.461 111.220 72.512 111.299 72.563 111.086 72.636 110.891 72.667 110.678 72.779 110.638 72.820 110.716 72.921 110.775 73.024 110.929 73.135 110.813 73.217 110.446 73.317 110.562 73.348 110.349 73.398 110.152 73.398 110.503 73.650 111.104 73.700 110.910 73.759 110.891 73.860 111.299 73.830 111.377 73.759 111.590 73.700 112.075 73.690 112.289 73.710 112.717 73.749 112.912 73.949 112.949 73.880 113.144 73.680 113.454 73.469 113.222 73.358 113.397 73.247 113.513 73.247 113.572 73.348 113.999 73.348 113.804 73.408 113.610 73.519 113.629 73.579 114.036 73.599 114.854 73.690 115.261 73.690 115.881 73.660 116.289 73.670 116.483 73.579 117.513 73.579 118.541 73.559 118.735 73.459 118.970 73.459 118.757 73.479 118.562 73.408 118.368 73.307 118.387 73.207 118.484 73.095 119.086 73.064 119.493 72.993 119.687 73.014 119.803 73.004 120.135 72.983 120.542 72.931 120.949 72.931 121.144 72.963 121.357 72.953 122.249 72.973 122.444 73.024 122.619 73.004 122.832 72.931 123.045 72.931 123.261 73.044 123.358 73.155 123.396 73.155 123.609 73.257 123.533 73.368 123.377 73.469 123.415 73.569 123.377 73.670 123.436 73.710 123.630 73.609 123.746 73.660 123.941 73.769 123.978 73.720 124.192 73.779 124.386 73.650 125.222 73.539 125.241 73.559 125.435 73.529 125.648 73.429 125.570 73.469 125.786 73.529 125.980 73.429 125.920 73.519 126.134 73.539 126.347 73.439 126.387 73.459 126.193 73.408 126.387 73.358 126.425 73.378 126.581 73.429 126.775 73.529 126.910 73.539 127.123 73.479 127.455 73.479 127.862 73.429 127.919 73.358 128.113 73.358 128.329 73.257 128.251 73.237 128.445 73.257 128.658 73.217 128.852 73.115 128.871 73.064 128.815 73.115 129.009 73.014 129.047 72.973 128.852 72.931 128.639 72.921 128.483 72.901 128.464 72.860 129.065 72.809 129.260 72.789 129.047 72.799 128.852 72.759 128.774 72.718 129.181 72.677 129.222 72.677 128.949 72.533 128.774 72.553 128.386 72.533 128.386 72.482 128.580 72.461 128.793 72.471 129.203 72.410 129.260 72.368 129.473 72.337 129.494 72.275 129.376 72.233 129.570 72.130 129.279 72.130 129.473 72.089 129.279 72.068 129.065 72.099 128.658 72.172 128.580 72.233 128.210 72.182 128.192 71.963 128.445 71.870 128.639 71.766 128.774 71.734 128.968 71.787 129.163 71.891 129.125 71.996 129.028 72.006 129.084 71.901 129.241 71.797 129.338 71.714 129.551 71.755 129.338 71.714 129.144 71.703 128.949 71.598 128.871 71.598 129.065 71.514 129.260 71.398 129.376 71.292 129.532 71.208 129.726 71.102 129.823 71.081 130.018 70.922 130.425 70.868 130.638 70.932 130.832 70.825 130.910 70.730 131.123 70.772 131.318 70.857 131.512 70.975 131.668 71.059 131.725 71.059 131.822 71.070 131.862 71.028 132.057 70.922 132.192 70.804 132.113 70.698 132.113 70.590 132.154 70.483 132.094 70.375 132.135 70.375 132.523 70.353 132.718 70.311 133.065 70.202 133.144 70.094 133.144 69.996 132.949 69.920 133.144 69.812 133.163 69.757 133.357 69.670 133.397 69.659 133.203 69.571 132.987 69.461 132.815 69.286 132.815 69.230 132.599 69.120 132.426 69.043 132.232 69.032 132.094 69.032 131.493 69.010 131.299 68.887 130.854 68.787 130.660 68.787 130.463 68.821 130.271 68.898 130.055 68.876 130.018 68.887 129.823 68.754 129.435 68.732 129.222 68.787 128.833 68.799 128.639 68.843 128.426 68.754 128.038 68.776 127.844 68.776 127.609 68.787 127.202 68.754 126.813 68.710 126.581 68.609 126.775 68.508 127.183 68.396 127.048 68.374 127.067 68.340 126.678 68.216 126.581 68.104 126.638 68.081 126.716 67.957 126.716 67.844 126.581 67.731 126.659 67.628 126.813 67.617 127.007 67.491 127.183 67.262 127.067 67.194 127.067 66.952 127.105 66.837 127.026 66.721 127.299 66.686 127.358 66.604 127.765 66.477 128.154 66.523 128.232 66.593 128.426 66.535 128.833 66.500 129.260 66.535 129.454 66.477 129.861 66.512 130.018 66.395 130.174 66.279 130.231 66.162 130.368 66.068 130.541 65.962 130.929 65.798 131.337 65.786 131.415 65.727 131.609 65.609 131.668 65.550 131.649 65.479 131.552 65.420 131.747 65.063 132.094 64.823 132.289 64.691 132.251 64.607 132.405 64.619 132.620 64.498 132.755 64.366 132.834 64.257 132.736 64.135 132.620 64.014 132.561 63.880 132.405 63.843 132.308 63.721 132.135 63.709 132.329 63.526 132.620 63.402 132.755 63.365 132.834 63.353 132.834 63.353 132.852 63.095 132.755 62.884 132.561 62.499 132.386 62.523 132.580 62.511 132.677 62.374 132.639 62.249 132.736 62.122 132.890 62.085 132.890 61.947 132.987 61.833 133.181 61.896 133.397 61.859 133.591 61.859 133.707 61.833 133.902 61.846 134.115 61.821 134.171 61.707 134.368 61.580 134.406 61.453 134.541 61.339 134.250 61.352 134.055 61.314 133.570 61.301 133.357 61.263 133.163 61.135 133.106 60.956 133.125 60.816 133.125 60.623 132.736 60.674 132.542 60.597 132.464 60.456 132.348 60.326 132.289 60.223 132.154 60.094 132.076 60.002 131.978 59.950 131.765 59.820 131.668 59.546 131.649 59.402 131.628 59.139 131.822 59.113 131.978 59.126 132.154 58.862 132.210 58.796 132.405 58.836 132.464 58.888 132.599 58.756 132.599 58.477 132.426 58.491 132.232 58.345 132.232 58.198 132.057 58.064 132.154 58.077 131.941 58.158 131.747 58.172 131.552 57.930 131.747 57.662 132.076 57.608 131.978 57.554 131.784 57.419 131.590 57.311 131.609 57.244 131.531 57.311 131.280 57.298 131.239 57.230 131.123 57.149 131.318 56.850 131.725 56.768 131.803 56.494 131.687 56.536 131.571 56.426 131.377 56.481 131.358 56.426 131.164 56.289 131.123 56.152 131.007 56.111 130.970 55.821 130.891 55.683 130.951 55.613 131.142 55.613 131.531 55.656 131.668 55.613 131.862 55.697 132.270 55.683 132.464 55.572 132.658 55.433 132.755 55.364 132.968 55.336 132.677 55.197 132.561 55.197 132.367 55.071 132.426 55.002 131.997 54.848 131.900 54.764 131.687 54.722 131.493 54.638 131.299 54.497 131.221 54.300 131.086 54.300 130.891 54.244 130.697 54.046 130.503 53.890 130.522 53.890 130.660 53.834 130.854 53.790 131.239 53.762 131.396 53.478 131.512 53.207 131.571 53.221 131.765 53.150 131.960 53.221 132.154 53.235 132.348 53.249 132.696 53.221 132.890 53.292 133.084 53.335 133.181 53.478 133.357 53.492 133.551 53.521 133.570 53.464 133.764 53.464 134.152 53.592 134.484 53.592 134.678 53.436 134.929 53.292 134.929 53.050 134.813 52.891 134.678 52.819 134.638 52.676 134.776 52.561 134.657 52.417 134.581 52.460 134.368 52.575 133.667 52.676 133.397 52.604 133.260 52.460 133.260 52.315 133.416 52.258 133.454 52.184 133.241 52.155 133.047 52.184 132.852 52.040 132.561 51.895 132.445 51.793 132.308 51.750 131.900 51.677 131.628 51.677 131.434 51.530 131.474 51.516 131.474 51.457 131.512 51.340 131.474 51.340 131.280 51.238 131.086 50.871 130.873 50.782 130.757 50.635 130.697 50.649 130.891 50.531 130.989 50.383 131.007 50.428 131.142 50.368 131.299 50.294 131.337 50.146 131.493 49.998 131.318 49.908 131.512 49.759 131.512 49.715 131.377 49.550 131.512 49.430 131.512 49.236 131.415 49.251 131.221 49.100 131.067 48.995 131.026 48.980 131.007 48.965 130.813 48.905 130.678 48.875 130.638 48.875 130.212 48.995 130.018 49.055 129.920 49.161 129.842 49.161 129.823 49.266 129.745 49.386 129.551 49.416 129.494 49.371 129.279 49.341 129.144 49.460 128.931 49.581 128.755 49.565 128.639 49.581 128.542 49.535 128.348 49.535 128.154 49.595 127.960 49.625 127.803 49.848 127.533 49.998 127.512 50.057 127.512 50.205 127.609 50.250 127.493 50.294 127.377 50.443 127.318 50.590 127.377 50.812 127.221 50.959 127.067 51.135 126.929 51.340 126.891 51.384 126.929 51.677 126.716 51.967 126.484 51.982 126.465 52.127 126.560 52.243 126.368 52.258 126.425 52.417 126.328 52.561 126.174 52.618 125.999 52.762 125.999 53.007 125.707 53.178 125.222 53.193 125.028 53.135 124.774 53.235 124.405 53.364 124.213 53.349 124.116 53.464 123.922 53.492 123.725 53.549 123.552 53.549 123.358 53.492 123.164 53.450 122.757 53.450 122.231 53.407 122.036 53.422 121.902 53.321 121.494 53.321 121.435 53.264 121.203 53.278 120.990 53.207 120.796 53.207 120.755 52.935 120.367 52.834 120.232 52.733 120.057 52.575 120.210 52.618 120.407 52.575 120.601 52.431 120.696 52.330 120.639 52.184 120.774 52.025 120.717 51.953 120.696 51.866 120.504 51.647 120.116 51.501 120.019 51.326 119.922 51.268 119.822 51.106 119.765 50.959 119.590 50.723 119.493 50.576 119.299 50.368 119.183 50.309 119.377 50.191 119.358 50.161 119.358 49.998 119.183 49.982 119.123 49.982 119.048 49.952 118.757 49.923 118.581 49.819 118.484 49.729 118.271 49.611 118.077 49.505 117.883 49.520 117.842 49.625 117.376 49.625 117.357 49.670 117.125 49.834 116.736 49.952 116.542 49.998 116.348 50.028 116.270 49.998 116.075 49.878 115.746 49.908 115.590 49.923 115.377 49.998 115.220 50.161 115.007 50.205 114.910 50.250 114.775 50.250 114.562 50.279 114.368 50.235 114.174 50.131 113.958 49.998 113.572 49.848 113.319 49.700 113.144 49.595 113.028 49.505 112.833 49.535 112.639 49.535 112.601 49.430 112.154 49.430 112.094 49.341 111.339 49.161 110.872 49.145 110.678 49.251 110.406 49.176 110.212 49.206 110.017 49.236 109.610 49.341 109.319 49.341 108.561 49.460 108.367 49.550 108.154 49.625 108.057 49.774 107.997 49.938 107.997 49.982 107.765 49.998 107.784 50.161 107.803 50.265 107.959 50.309 108.154 50.413 108.289 50.502 108.698 50.723 108.116 50.752 108.075 50.782 108.135 50.827 108.270 50.915 108.289 51.047 108.348 51.076 108.542 51.224 108.426 51.311 108.445 51.413 108.523 51.472 108.717 51.443 108.912 51.472 109.144 51.355 109.300 51.457 109.688 51.603 110.017 51.574 110.406 51.501 110.638 51.589 110.832 51.808 111.104 51.895 111.512 52.011 111.746 52.112 111.862 52.243 112.057 52.229 112.367 52.243 112.504 52.330 112.717 52.344 112.912 52.402 113.106 52.474 113.319 52.474 113.513 52.633 113.901 52.690 114.115 52.834 114.252 52.964 114.328 53.221 114.055 53.364 113.883 53.563 113.883 53.620 113.823 53.720 114.036 53.734 114.231 53.806 114.387 54.003 114.988 54.018 115.007 54.159 115.183 54.328 115.533 54.427 115.728 54.497 116.173 54.497 116.367 54.469 116.542 54.525 116.736 54.694 116.852 54.834 116.949 55.002 116.852 55.085 116.815 55.224 116.483 55.364 116.289 55.350 116.154 55.378 115.959 55.406 115.941 55.683 115.862 55.821 115.862 55.918 115.922 56.056 115.784 56.207 115.765 56.248 115.728 56.289 115.706 56.481 115.706 56.591 115.512 56.686 115.533 56.822 115.609 56.958 115.746 56.944 115.825 56.850 116.019 56.822 116.213 56.822 116.386 56.754 116.580 56.741 116.796 56.782 116.987 56.877 117.222 56.836 117.416 56.863 117.591 56.999 117.688 57.134 117.629 57.176 117.667 57.311 117.667 57.311 117.475 57.365 117.357 57.635 117.181 57.836 117.222 57.970 117.397 58.064 117.397 58.158 117.591 58.291 117.475 58.345 117.551 58.398 117.764 58.385 118.152 58.358 118.290 58.318 118.368 58.212 118.541 58.185 118.735 58.225 118.929 58.225 119.123 58.398 119.123 58.531 119.007 58.677 118.873 58.809 118.910 58.941 118.813 59.007 118.873 59.034 118.757 59.179 118.697 59.310 118.832 59.442 118.619 59.598 118.231 59.572 118.055 59.442 117.883 59.507 117.688 59.481 117.551 59.494 117.357 59.624 117.162 59.702 117.222 59.833 117.241 59.963 117.125 60.002 117.338 60.054 117.046 60.184 116.931 60.274 116.736 60.339 116.658 60.377 116.464 60.377 116.270 60.456 115.881 60.494 115.803 60.507 115.590 60.481 115.396 60.429 115.202 60.300 115.067 60.184 114.813 60.132 114.619 60.002 114.581 59.859 114.309 59.585 113.688 59.205 113.357 59.074 112.601 58.954 112.639 58.941 112.464 59.179 112.483 59.310 112.561 59.310 112.405 59.362 112.289 59.494 112.232 59.362 112.038 59.283 111.922 59.231 111.706 59.257 111.318 59.179 111.183 59.257 110.794 59.165 110.581 59.126 110.600 59.034 110.406 58.980 110.212 59.007 110.017 58.994 109.901 59.020 109.804 59.283 109.532 59.310 109.300 59.442 109.300 59.572 109.435 59.598 109.494 59.728 109.513 59.872 109.669 60.002 109.764 60.080 109.726 60.107 109.707 60.249 109.804 60.507 110.017 60.648 110.115 60.674 110.077 60.738 110.290 60.867 110.309 60.995 110.484 61.046 110.484 61.173 110.387 61.160 110.193 61.289 110.017 61.314 109.823 61.441 109.864 61.567 109.842 61.669 109.726 61.707 109.629 61.896 109.629 61.896 109.648 61.997 109.842 62.022 109.864 62.047 109.883 62.085 109.901 62.160 110.017 62.286 110.017 62.411 109.939 62.424 109.532 62.474 109.338 62.598 109.397 62.747 109.494 62.871 109.629 62.996 109.475 63.243 109.454 63.365 109.281 63.390 109.281 63.513 109.106 63.575 108.717 63.587 108.504 63.672 108.289 63.806 108.426 63.794 108.542 63.819 108.736 63.941 108.736 64.075 108.580 64.171 108.561 64.293 108.445 64.245 108.251 64.221 108.038 64.184 107.900 64.281 107.512 64.269 107.299 64.486 106.697 64.450 106.619 64.438 106.406 64.402 106.212 64.510 106.017 64.498 105.804 64.619 105.767 64.751 105.842 ; #1125 4 72.820 122.757 72.809 123.145 72.769 123.339 72.769 123.552 72.830 123.358 72.871 123.145 72.871 122.929 72.943 122.328 ; #1126 -2 17.699 106.484 17.699 106.387 17.737 106.406 ; #1127 -2 10.428 106.600 10.486 106.600 10.466 106.659 ; #1128 -2 21.270 107.493 21.085 107.474 21.252 107.455 ; #1129 -2 -7.770 109.046 -7.732 108.833 -7.693 108.852 ; #1130 -5 1.999 109.669 1.806 109.823 1.689 110.017 1.728 110.522 1.612 110.484 1.573 110.678 1.437 110.697 1.554 110.891 1.398 111.086 1.340 111.396 1.398 111.202 1.592 111.026 1.631 111.220 1.825 111.123 2.116 111.261 2.155 111.396 2.135 111.202 2.329 111.220 2.349 111.512 2.543 111.436 2.737 111.533 2.834 111.668 2.892 112.075 3.145 113.028 3.765 113.473 3.921 113.670 4.307 113.980 4.599 113.999 4.618 114.368 4.715 114.562 4.966 114.872 5.005 115.067 4.889 115.026 4.812 115.048 4.792 115.086 4.966 115.242 4.966 115.436 5.005 115.493 5.198 115.590 5.315 115.396 5.412 115.415 5.528 115.668 5.548 115.862 5.760 115.941 5.799 116.019 5.992 116.135 6.186 116.191 6.573 116.561 6.785 116.658 6.978 116.852 6.785 116.871 6.573 116.796 6.747 117.009 6.940 117.046 6.805 117.241 6.612 117.357 6.631 117.551 6.418 117.745 6.302 117.745 5.896 117.648 5.934 117.842 6.031 118.036 5.838 118.133 5.683 117.958 5.683 118.152 5.799 118.387 5.393 118.951 5.412 119.086 5.296 119.280 5.082 119.145 4.966 118.757 4.947 118.562 5.024 118.368 4.889 118.152 4.695 118.290 4.541 118.484 4.346 118.562 4.346 118.368 4.230 118.017 4.327 117.823 4.366 117.629 4.172 117.610 4.075 117.494 3.882 117.629 3.687 117.823 3.629 117.629 3.629 117.435 3.571 117.300 3.571 117.260 3.552 117.260 3.532 117.222 3.319 117.416 3.125 117.454 3.066 117.648 2.911 117.551 2.756 117.804 2.563 117.883 2.369 118.077 1.980 117.883 1.786 118.036 1.437 118.425 1.340 118.619 1.145 118.813 1.048 119.007 1.009 119.007 0.912 118.970 0.815 118.775 0.796 118.581 0.874 118.193 0.990 117.980 0.777 117.999 0.796 117.804 0.194 117.513 0.000 117.532 -0.524 117.454 -0.427 117.629 -0.815 117.494 -0.854 117.397 -0.815 117.300 -1.048 117.144 -1.242 116.968 -1.184 116.774 -1.379 116.755 -1.476 116.561 -1.670 116.445 -1.805 116.251 -1.805 116.445 -1.999 116.483 -2.213 116.407 -2.310 116.601 -2.504 116.561 -2.504 116.367 -2.911 116.367 -3.008 116.173 -3.203 116.191 -3.396 116.057 -3.590 115.997 -3.784 115.609 -3.920 115.220 -4.114 114.813 -4.133 114.619 -3.940 114.638 -3.745 114.619 -3.551 114.541 -3.358 114.562 -3.435 114.328 -3.047 114.484 -2.892 114.503 -2.737 114.775 -2.543 114.872 -2.271 114.891 -2.155 115.220 -2.058 115.339 -1.670 115.552 -1.456 115.628 -1.281 115.825 -1.203 115.844 -1.009 115.687 -0.932 115.533 -0.544 115.358 -0.233 115.299 -0.019 115.358 0.000 115.183 -0.175 114.988 -0.019 115.007 0.388 115.007 0.582 115.086 0.699 114.891 0.699 114.794 0.582 114.387 0.641 114.193 0.563 113.786 0.757 113.939 0.951 113.883 1.126 114.077 1.320 114.212 1.359 114.212 1.418 114.231 1.457 114.115 1.418 113.920 1.242 113.688 1.379 113.260 1.437 113.046 1.573 113.009 1.554 112.464 1.476 112.270 1.379 112.232 1.165 112.154 1.126 111.959 1.009 111.746 0.951 111.552 1.029 111.358 1.048 111.164 0.990 110.891 0.874 110.678 0.893 110.484 1.048 110.290 1.165 110.212 1.281 110.017 1.379 109.980 1.476 109.823 1.883 109.570 2.077 109.669 2.058 109.669 ; #1131 -2 1.883 109.570 1.476 109.823 1.379 109.980 1.281 110.017 1.165 110.212 1.048 110.290 0.893 110.484 0.874 110.678 0.990 110.891 1.048 111.164 1.029 111.358 0.951 111.552 1.009 111.746 1.126 111.959 1.165 112.154 1.379 112.232 1.476 112.270 1.554 112.464 1.573 113.009 1.437 113.046 1.379 113.260 1.242 113.688 1.418 113.920 1.457 114.115 1.418 114.231 1.359 114.212 1.320 114.212 1.126 114.077 0.951 113.883 0.757 113.939 0.563 113.786 0.641 114.193 0.582 114.387 0.699 114.794 0.699 114.891 0.582 115.086 0.388 115.007 -0.019 115.007 -0.175 114.988 0.000 115.183 -0.019 115.358 -0.233 115.299 -0.544 115.358 -0.932 115.533 -1.009 115.687 -1.203 115.844 -1.281 115.825 -1.456 115.628 -1.670 115.552 -2.058 115.339 -2.155 115.220 -2.271 114.891 -2.543 114.872 -2.737 114.775 -2.892 114.503 -3.047 114.484 -3.435 114.328 -3.416 114.290 -3.222 114.368 -3.280 114.328 -3.203 114.133 -3.358 114.036 -3.455 113.842 -3.396 113.648 -3.203 113.629 -3.242 113.435 -3.164 113.241 -3.008 113.046 -3.203 112.990 -3.416 112.601 -3.319 112.232 -3.474 112.038 -3.551 111.843 -3.358 111.862 -2.950 111.803 -2.756 111.746 -2.970 111.687 -2.931 111.493 -2.950 111.299 -3.066 111.104 -3.086 110.891 -2.892 110.951 -2.950 110.813 -2.892 110.619 -2.931 110.425 -2.873 110.231 -2.485 110.212 -2.096 110.133 -1.902 110.017 -1.728 110.017 -1.476 110.077 -1.281 110.017 -1.106 109.920 -0.932 109.726 -0.873 109.532 -0.893 109.338 -0.699 109.319 -0.718 109.513 -0.447 109.125 -0.233 109.241 -0.194 109.203 0.194 109.144 0.291 108.949 0.874 108.912 1.068 108.968 1.242 109.162 1.379 109.260 1.398 109.241 1.223 109.046 1.418 109.087 1.612 109.184 2.077 109.669 ; #1132 -2 73.769 110.794 73.690 110.174 73.700 109.980 73.660 109.764 73.730 109.551 73.840 109.629 73.899 109.823 73.998 109.980 74.008 110.562 73.939 110.813 73.919 111.026 74.019 111.145 74.049 111.339 74.008 111.533 73.969 111.318 73.860 111.299 73.759 110.891 ; #1133 4 74.198 112.968 74.217 113.184 74.326 113.338 74.425 113.435 74.483 113.222 74.503 113.009 74.493 112.814 74.542 112.154 74.345 111.862 74.376 111.649 74.326 111.455 74.237 111.668 74.227 111.862 74.138 112.270 74.088 112.814 ; #1134 4 74.306 116.135 74.355 115.941 74.296 115.941 ; #1135 4 73.125 120.210 73.165 120.019 73.135 119.706 73.034 119.803 73.034 120.019 ; #1136 4 73.939 124.542 73.919 124.348 73.840 124.523 ; #1137 4 73.489 127.822 73.489 128.038 73.529 127.822 73.539 127.609 73.519 127.415 ; #1138 -5 -25.645 114.055 -25.282 113.861 -25.081 113.707 -24.898 113.670 -24.898 113.629 -24.716 113.610 -24.533 113.435 -24.332 113.416 -23.781 113.532 -23.414 113.786 -23.211 113.786 -23.028 113.842 -22.659 113.688 -22.549 113.707 -22.179 113.883 -21.975 113.939 -21.808 114.152 -22.197 114.096 -22.382 114.152 -22.493 114.347 -21.864 114.659 -21.697 114.929 -21.586 115.339 -21.456 115.533 -21.103 115.922 -20.862 116.289 -20.807 116.483 -20.676 116.699 -20.713 116.912 -20.638 117.106 -20.731 117.300 -20.676 117.688 -20.434 118.055 -20.284 118.775 -20.005 119.086 -20.005 119.415 -20.079 119.609 -20.005 119.746 -19.949 119.941 -19.856 120.407 -19.613 121.009 -19.482 121.203 -19.294 121.376 -18.920 121.610 -18.714 121.629 -18.676 121.786 -18.488 121.823 -18.414 122.018 -18.245 122.212 -18.038 122.387 -17.981 122.193 -17.794 122.212 -17.417 122.174 -17.209 122.231 -16.908 122.484 -16.793 122.697 -16.605 122.775 -16.416 122.970 -16.605 122.989 -17.548 123.590 -17.586 123.590 -17.209 123.630 -17.021 123.590 -17.134 123.803 -17.190 123.900 -17.002 123.803 -16.813 123.960 -16.870 123.765 -16.492 123.493 -16.435 123.687 -16.378 123.725 -16.189 123.571 -16.170 123.765 -16.360 123.881 -16.264 124.094 -16.397 124.289 -16.416 124.912 -16.341 124.523 -16.151 124.445 -15.943 124.620 -15.868 124.426 -15.678 124.386 -15.507 124.620 -15.317 124.717 -15.355 124.912 -15.526 125.203 -15.336 125.144 -15.336 124.931 -15.147 124.852 -15.071 125.241 -15.147 125.357 -14.938 125.203 -14.748 125.144 -14.557 125.338 -14.500 125.532 -14.519 125.610 -14.329 125.610 -14.519 125.688 -14.615 125.883 -14.424 126.036 -14.101 126.152 -14.082 126.115 -14.024 126.193 -14.215 126.250 -14.024 126.406 -14.101 126.522 -14.120 126.716 -13.948 126.873 -13.758 126.873 -13.719 126.970 -13.929 127.105 -13.948 127.299 -14.082 127.512 -14.215 127.687 -14.405 127.844 -14.710 128.232 -14.995 128.113 -15.374 128.094 -15.507 128.038 -15.393 128.094 -15.374 128.094 -15.298 128.135 -15.412 128.308 -15.033 128.232 -15.033 128.426 -14.843 128.445 -14.786 128.658 -14.881 129.028 -31.687 129.028 -32.089 128.038 -32.213 127.512 -32.300 127.145 -32.317 126.754 -32.247 126.152 -32.282 126.018 -32.352 125.823 -32.578 125.435 -32.735 125.047 -32.858 124.833 -32.927 124.639 -32.945 124.445 -33.031 124.251 -33.205 124.094 -33.570 123.978 -33.708 123.765 -33.742 123.765 -33.898 123.571 -33.898 123.358 -34.020 123.164 -33.881 122.970 -33.881 122.775 -33.968 122.581 -33.915 122.368 -34.020 122.174 -33.846 122.036 -33.898 121.842 -33.881 121.648 -33.829 121.532 -33.863 120.949 -33.950 120.348 -33.932 120.019 -33.985 119.822 -34.123 119.630 -34.484 119.377 -34.501 119.183 -34.450 118.989 -34.536 118.794 -34.691 118.581 -34.863 118.406 -35.017 118.017 -35.034 117.861 -35.102 117.861 -35.051 117.667 -35.085 117.475 -35.017 117.281 -35.051 116.871 -35.000 116.483 -34.897 116.289 -34.846 116.094 -34.501 115.706 -34.381 115.493 -34.312 115.299 -34.329 115.104 -33.985 114.988 -33.639 115.007 -33.656 115.242 -33.604 115.436 -33.257 115.728 -32.735 115.628 -32.544 115.687 -32.735 115.687 -32.213 115.765 -31.845 115.746 -31.669 115.706 -31.317 115.474 -30.594 115.104 -30.241 115.026 -30.064 114.951 -29.460 114.988 -29.104 114.854 -28.925 114.678 -28.782 114.600 -28.603 114.581 -28.245 114.328 -28.066 114.152 -27.886 114.115 -27.707 114.152 -27.329 114.036 -26.968 113.823 -26.606 113.532 -26.371 113.300 -26.190 113.184 -26.371 113.378 -26.190 113.378 -26.552 113.572 -26.588 113.767 -26.408 113.883 -26.226 113.767 -26.045 113.572 -25.681 113.416 -25.717 113.610 -25.899 113.745 -26.081 113.707 -26.172 113.726 -25.990 113.883 -26.353 113.999 -26.390 114.212 -26.190 114.193 -25.827 114.252 ; #1139 -5 3.571 117.300 3.532 117.454 3.513 117.260 3.552 117.260 ; #1140 -5 3.571 117.260 3.571 117.300 3.552 117.260 ; #1141 4 24.368 124.270 24.570 124.310 24.442 124.116 ; #1142 4 -1.864 124.348 -2.019 124.542 -1.941 124.736 -1.902 125.338 -1.689 125.163 -1.709 124.968 -1.631 124.561 -1.650 124.445 ; #1143 4 -1.883 125.435 -1.922 125.629 -1.902 126.018 -1.805 126.212 -1.786 125.435 ; #1144 4 -7.848 125.823 -8.021 125.804 -7.905 125.999 -7.944 126.387 -7.809 126.600 -7.751 126.794 -7.577 126.600 -7.674 126.406 -7.732 126.193 -7.655 125.999 ; #1145 4 -2.096 125.883 -2.485 126.077 -2.427 126.096 -2.174 125.999 -1.980 125.980 ; #1146 4 -3.784 126.910 -3.687 127.105 -3.474 127.261 -3.106 126.891 -3.066 126.697 -3.106 126.096 -3.300 126.036 -3.513 126.152 -3.668 126.347 -3.843 126.697 ; #1147 4 34.519 126.290 34.347 126.212 34.484 126.406 ; #1148 4 33.552 126.832 33.518 126.619 33.379 126.231 33.205 126.309 33.257 126.697 33.362 126.910 33.535 126.854 ; #1149 4 -0.272 127.164 -0.466 127.280 -0.272 127.261 ; #1150 4 -0.408 127.339 -0.815 127.474 -0.718 127.862 -0.699 127.668 -0.505 127.687 -0.311 127.552 ; #1151 4 -1.515 127.415 -1.709 127.474 -1.709 127.862 -1.554 128.076 -1.340 127.668 -1.437 127.474 ; #1152 4 -0.155 127.687 -0.738 128.113 -0.777 128.308 -0.388 128.057 0.000 127.900 0.155 127.941 0.350 127.919 0.447 128.113 0.252 128.890 0.350 128.696 0.563 128.677 0.602 128.483 0.699 128.289 0.912 128.386 0.990 128.580 1.184 128.717 1.398 128.755 1.573 128.561 1.476 128.367 1.320 128.173 1.126 128.173 1.029 127.978 0.835 127.919 0.854 127.725 1.048 127.725 1.165 127.919 1.379 128.016 1.573 128.038 2.155 127.919 1.767 127.609 1.379 127.512 1.184 127.415 0.990 127.533 0.777 127.609 0.582 127.552 0.194 127.706 0.000 127.706 ; #1153 4 26.444 127.881 26.642 128.270 26.824 128.329 26.697 128.135 26.679 127.941 26.498 127.900 26.136 127.668 26.081 127.687 ; #1154 4 -8.195 127.822 -8.137 128.016 -8.098 127.822 ; #1155 4 34.914 127.881 34.726 127.881 34.726 128.076 34.897 127.960 ; #1156 4 -3.648 130.463 -3.803 130.660 -3.843 130.854 -3.455 130.854 -3.338 130.660 -3.145 130.600 -3.008 130.406 -2.989 130.018 -2.931 129.920 -2.795 129.513 -2.950 129.125 -2.853 128.931 -2.834 128.542 -2.873 128.348 -2.950 128.135 -3.125 127.941 -3.513 127.960 -3.319 128.076 -3.125 128.113 -3.242 128.308 -3.455 128.445 -3.435 128.639 -3.261 128.833 -3.358 129.028 -3.416 129.435 -3.319 129.629 -3.338 129.823 -3.474 130.018 ; #1157 4 -3.726 128.057 -3.726 128.251 -3.532 128.251 -3.590 128.057 ; #1158 4 2.038 128.426 2.193 128.620 2.388 128.696 2.485 128.696 2.640 128.580 2.408 128.308 2.213 128.251 2.019 128.289 ; #1159 4 34.983 128.696 34.863 128.502 34.777 128.677 34.948 128.755 ; #1160 4 32.596 128.677 32.752 128.871 32.701 128.677 ; #1161 4 33.066 129.106 32.893 129.106 33.066 129.144 ; #1162 4 28.371 129.416 28.209 129.222 28.156 129.416 28.335 129.591 28.513 129.707 ; #1163 4 34.691 129.454 34.519 129.338 34.330 129.416 34.691 129.494 ; #1164 4 -7.925 129.610 -8.021 129.804 -7.828 129.842 -7.809 129.648 ; #1165 4 33.985 131.007 33.932 131.202 34.020 131.396 33.985 131.590 34.037 131.784 33.829 132.173 34.020 132.232 34.244 132.251 34.347 132.386 34.209 132.561 34.209 132.718 34.381 133.106 34.381 133.163 34.312 133.144 34.278 133.181 34.416 133.260 34.467 133.454 34.450 133.591 34.502 133.977 34.709 134.309 34.777 134.657 34.623 135.067 34.674 135.239 34.691 135.434 34.553 135.474 34.381 135.299 34.295 135.105 34.157 135.202 33.985 135.123 33.812 135.202 33.708 135.415 33.535 135.493 33.483 135.687 33.500 135.881 33.846 136.094 33.985 136.289 34.157 136.329 34.226 136.523 34.347 136.912 34.519 136.755 34.606 136.561 34.674 136.542 35.017 136.736 35.086 136.912 34.914 136.834 34.726 136.968 34.914 136.987 34.691 137.279 34.570 137.084 34.674 137.610 34.623 138.115 34.743 138.309 34.931 138.425 35.102 138.600 34.966 138.794 34.794 138.776 34.623 138.929 34.794 139.086 35.102 139.124 35.274 139.280 35.291 139.493 35.171 139.687 35.342 139.668 35.633 139.881 35.633 140.076 35.444 140.016 35.274 139.863 34.931 139.822 35.171 140.405 35.531 140.483 35.667 140.677 35.735 140.890 35.820 140.793 35.991 140.677 36.161 140.599 36.500 140.639 36.873 140.815 37.041 140.987 37.378 141.066 37.715 141.047 37.882 140.950 38.183 140.987 38.367 141.125 38.400 141.376 38.300 141.551 38.467 141.513 38.967 141.648 38.983 141.764 39.165 141.921 39.332 141.921 39.497 142.037 39.992 141.958 40.289 141.823 40.453 141.686 40.567 141.494 40.731 141.435 41.172 141.416 41.334 141.319 41.464 141.103 41.464 140.912 41.302 140.834 41.139 140.871 41.221 141.260 41.058 141.260 40.878 141.084 40.993 140.890 40.812 140.793 40.894 140.696 41.221 140.580 41.253 140.367 41.107 140.329 40.928 140.329 40.763 140.210 40.731 140.016 40.600 139.881 40.420 139.960 40.354 140.038 40.156 140.016 39.860 139.822 39.844 140.016 39.745 140.076 39.563 140.095 39.332 140.016 39.283 139.960 38.917 139.844 38.551 139.571 38.350 139.474 38.166 139.455 37.999 139.280 37.932 139.067 37.831 138.892 37.597 138.776 37.429 138.619 37.278 138.425 37.160 138.231 36.923 137.454 36.754 137.279 36.788 137.084 36.974 137.065 37.143 136.890 37.210 137.084 37.344 137.279 37.513 137.357 37.479 137.144 37.294 136.755 36.940 136.774 36.771 136.736 36.432 136.464 36.161 136.132 35.991 135.997 35.820 136.076 35.650 136.076 35.531 135.687 35.531 135.493 35.462 135.415 35.565 135.221 35.735 135.280 35.650 134.892 35.599 134.387 35.531 134.250 35.478 133.861 35.478 133.473 35.548 133.163 35.444 132.774 35.274 132.639 35.171 132.445 34.743 131.900 34.640 131.668 34.484 131.474 34.416 131.280 34.416 131.086 34.278 130.891 34.106 130.873 33.915 130.951 33.881 130.562 33.708 130.444 33.656 130.250 33.449 130.055 33.431 130.018 33.500 129.883 33.326 129.823 33.362 129.804 33.292 129.610 33.119 129.745 33.014 129.939 32.841 130.018 32.858 129.823 33.031 129.786 32.858 129.707 32.683 129.861 32.752 130.018 32.735 130.212 32.945 130.231 33.119 130.134 33.136 130.368 32.979 130.444 32.806 130.619 32.631 130.463 32.648 130.660 32.492 130.619 32.159 130.368 31.984 130.193 31.634 130.347 31.458 130.328 31.282 130.231 31.177 130.638 31.528 130.562 31.669 130.619 31.687 130.813 31.582 130.619 31.405 130.776 31.230 130.813 31.054 130.697 31.089 130.891 31.230 131.086 31.405 131.045 31.458 131.164 31.370 131.358 31.564 131.396 31.704 131.474 31.897 131.474 32.159 131.552 32.509 131.725 32.579 131.706 32.735 131.900 32.910 131.997 33.084 132.016 33.257 131.919 33.274 131.531 33.414 131.725 33.604 131.725 33.656 131.531 33.570 131.337 33.604 131.221 33.760 131.026 33.846 130.989 33.951 130.989 33.915 130.951 ; #1166 4 -1.941 129.823 -2.058 130.212 -1.999 130.406 -1.805 130.444 -1.747 130.250 -1.767 130.018 ; #1167 4 32.194 130.018 32.317 130.193 32.492 130.212 32.439 130.018 ; #1168 10 -11.790 130.660 -11.598 130.463 -11.388 130.387 -11.445 130.193 -11.636 130.212 -11.828 130.115 -11.790 130.309 -11.847 130.503 ; #1169 4 32.387 130.250 32.526 130.463 32.457 130.250 ; #1170 4 -0.097 130.444 -0.194 130.250 -0.311 130.638 -0.447 130.832 -0.252 130.757 -0.311 130.951 -0.311 131.337 -0.117 131.183 -0.019 130.854 ; #1171 4 30.276 130.444 30.259 130.638 30.435 130.541 ; #1172 10 -11.350 130.660 -11.216 130.463 -11.406 130.444 -11.598 130.503 -11.771 130.697 -11.867 130.891 -11.867 131.086 -11.617 131.474 -11.425 131.552 -11.254 131.358 -11.388 131.239 ; #1173 4 -0.912 130.463 -0.912 130.660 -0.777 130.854 ; #1174 4 -1.087 130.735 -1.281 130.832 -1.281 131.026 -1.087 131.086 -0.893 130.910 ; #1175 4 -8.137 131.202 -8.156 130.929 -8.349 130.776 ; #1176 4 30.825 131.045 30.648 130.970 30.453 130.989 30.648 131.086 30.825 131.086 ; #1177 4 -7.480 131.280 -7.867 131.105 -7.944 131.299 -7.577 131.668 -7.191 131.747 -7.114 131.668 ; #1178 4 -7.171 131.765 -7.152 131.960 -7.114 131.765 ; #1179 4 33.915 133.203 34.089 133.009 34.002 132.815 33.881 132.736 33.708 132.696 33.483 132.348 33.397 132.135 33.449 132.329 33.292 132.523 32.945 132.502 32.910 132.658 32.752 132.852 33.431 133.473 33.518 133.667 33.483 133.861 33.362 134.055 33.414 134.250 33.639 134.444 33.777 134.657 33.951 134.697 34.123 134.638 34.226 134.678 34.209 134.463 34.330 134.271 34.347 134.077 34.312 133.883 34.209 133.689 34.020 133.610 ; #1180 4 33.932 132.445 33.863 132.251 33.898 132.445 ; #1181 4 -5.683 132.658 -5.876 132.815 -5.683 132.755 ; #1182 4 -5.606 133.125 -5.412 133.181 -5.606 133.028 -5.992 132.852 ; #1183 4 -4.172 133.338 -4.230 133.551 -4.114 133.338 ; #1184 10 -11.617 133.454 -11.598 133.416 -11.675 133.397 ; #1185 4 -6.727 134.077 -6.920 134.212 -6.766 134.406 -6.573 134.503 -6.167 134.134 ; #1186 4 -6.148 134.134 -6.225 134.328 -6.031 134.231 ; #1187 4 -5.799 134.757 -5.606 134.716 -5.432 134.522 -5.625 134.425 -5.702 134.231 -5.895 134.347 -6.090 134.290 -6.283 134.484 -6.341 134.678 -6.148 134.757 -5.992 134.697 ; #1188 4 -6.399 134.387 -6.476 134.581 -6.283 134.463 ; #1189 4 34.587 135.026 34.450 134.832 34.278 134.678 34.244 134.697 34.226 134.892 34.398 134.929 34.536 135.026 ; #1190 4 -0.951 134.854 -1.145 134.948 -0.951 134.910 ; #1191 4 -1.534 135.142 -1.495 135.337 -1.476 135.142 ; #1192 4 -0.738 135.725 -0.777 135.512 -0.835 135.725 ; #1193 4 -1.709 135.725 -1.883 136.308 -1.902 136.502 -1.805 136.912 -1.747 136.718 -1.650 136.113 -1.612 135.531 ; #1194 4 -1.145 135.844 -1.203 136.232 -1.009 136.154 -0.815 135.960 -0.757 135.784 ; #1195 10 -14.272 136.774 -14.234 136.968 -14.196 136.774 -14.005 136.774 -13.815 136.931 -13.834 136.736 -13.796 136.542 -13.986 136.426 -14.177 136.426 -14.196 136.386 ; #1196 10 -11.445 136.561 -11.254 136.677 -11.062 136.755 -11.464 136.523 ; #1197 4 -7.500 138.193 -7.693 137.999 -7.828 137.902 -8.407 137.648 -8.388 138.444 -8.214 138.678 -8.407 138.735 -8.368 138.929 -8.176 138.832 -8.214 138.678 -8.098 138.832 -7.905 138.892 -7.713 139.026 -7.519 138.910 -7.365 138.716 -7.384 138.581 ; #1198 4 38.317 138.522 38.150 138.328 37.815 138.328 37.932 138.541 38.100 138.463 38.284 138.522 ; #1199 3 -16.718 139.337 -16.529 139.493 -16.454 139.687 -16.435 139.493 -16.473 139.299 -16.661 139.183 ; #1200 4 41.513 140.016 41.448 140.057 41.432 140.251 41.529 140.445 41.692 140.523 41.773 140.715 41.725 141.066 41.886 141.066 42.113 140.677 42.177 140.464 42.339 140.308 42.500 140.405 42.564 140.599 42.532 140.793 42.355 140.950 42.404 141.144 42.580 141.532 42.612 141.726 42.564 141.921 42.355 142.309 42.177 142.716 42.032 143.105 42.000 143.299 42.323 143.377 42.484 143.493 42.645 143.649 42.853 143.919 42.949 144.113 42.998 144.308 42.917 144.774 43.062 145.163 43.174 145.357 43.206 145.551 43.317 145.764 43.302 145.570 43.270 145.513 43.238 145.513 43.270 145.376 43.429 145.298 43.589 145.338 43.685 145.125 43.859 145.125 44.177 145.338 44.334 145.338 44.177 145.163 43.906 144.774 43.954 144.386 44.113 144.270 44.129 144.076 44.097 143.863 44.224 143.668 44.287 143.474 44.540 143.067 44.776 142.754 45.263 142.268 45.388 142.074 45.436 141.880 45.436 141.667 45.107 141.629 44.902 141.764 44.588 141.805 44.429 141.764 44.271 141.667 43.954 141.667 43.843 141.570 43.732 141.376 43.397 141.454 43.238 141.376 43.158 141.260 43.142 141.144 43.238 140.736 43.349 140.542 43.222 140.348 43.062 140.502 42.901 140.405 42.805 140.210 42.548 139.863 42.225 139.822 42.113 140.016 41.951 140.154 41.627 140.016 ; #1201 -4 40.008 124.483 40.091 124.386 40.091 124.405 40.107 124.405 40.124 124.426 40.436 124.871 40.453 124.968 40.453 125.028 40.600 125.222 40.633 125.357 40.649 125.435 40.747 125.629 40.861 125.726 40.894 125.920 41.009 126.115 41.139 126.271 41.156 126.290 41.432 126.522 41.448 126.522 41.497 126.581 41.660 126.619 41.676 126.697 41.789 126.910 41.644 127.067 41.497 127.280 41.448 127.436 41.416 127.649 41.416 127.844 41.448 127.941 41.448 128.016 41.432 128.038 41.400 128.210 41.562 128.308 41.708 128.173 41.725 128.173 41.854 128.094 41.983 128.076 42.032 128.308 42.016 128.464 42.000 128.464 42.032 128.871 42.096 129.028 42.209 129.222 42.387 129.300 42.404 129.319 42.404 129.570 42.436 129.667 42.596 129.764 42.693 129.764 42.965 129.883 42.965 130.018 42.885 130.271 42.773 130.250 42.725 130.271 42.709 130.271 42.612 130.387 42.564 130.541 42.532 130.541 42.420 130.619 42.290 130.716 42.290 130.600 42.242 130.406 41.983 130.018 41.951 130.018 41.886 129.920 41.725 129.786 41.545 129.689 41.383 129.804 41.058 129.745 40.894 129.764 40.796 129.570 40.731 129.357 40.567 129.181 40.469 129.125 40.321 128.736 40.156 128.580 40.058 128.386 39.992 127.978 39.844 127.765 39.761 127.571 39.597 127.590 39.431 127.512 39.398 127.455 39.233 127.396 39.050 127.822 38.883 127.997 38.617 128.386 38.100 128.677 37.765 128.987 37.311 129.300 37.041 129.435 36.686 129.494 36.347 129.416 36.161 129.416 35.991 129.494 35.991 129.610 35.650 129.473 35.548 129.376 35.359 129.395 35.188 129.260 35.154 129.203 35.102 128.815 35.205 128.620 35.034 128.502 34.863 128.483 34.828 128.426 34.914 128.329 34.897 128.135 35.068 128.076 34.948 127.881 34.966 127.784 34.897 127.590 34.726 127.746 34.691 127.571 34.880 127.512 34.794 127.436 34.570 127.512 34.467 127.396 34.587 127.202 34.743 127.339 34.674 127.145 34.502 126.970 34.536 126.775 34.364 126.638 34.364 126.503 34.536 126.484 34.674 126.290 34.587 126.484 34.760 126.503 34.811 126.678 34.794 126.484 35.137 126.271 35.086 126.465 35.256 126.368 35.428 126.465 35.496 126.503 35.531 126.697 35.701 126.600 35.803 126.794 35.974 126.678 36.008 126.775 36.127 126.581 36.466 126.619 36.636 126.522 36.703 126.271 36.873 126.212 36.856 126.406 36.889 126.600 36.974 126.794 36.788 126.873 36.923 127.026 37.092 126.891 37.126 126.716 37.210 126.813 37.378 126.754 37.395 126.716 37.563 126.678 37.715 126.541 37.765 126.581 37.664 126.716 37.831 126.716 37.782 126.619 37.882 126.425 37.848 126.212 37.865 126.018 38.016 125.629 37.848 125.667 37.715 125.454 37.882 125.532 37.798 125.338 37.932 125.028 38.049 125.222 38.100 124.815 38.434 124.949 38.467 125.028 38.584 125.028 38.667 125.222 38.684 125.416 38.617 125.667 38.767 125.454 38.717 125.260 38.767 125.279 38.933 125.203 39.266 125.435 39.431 125.397 39.563 125.473 39.547 125.279 39.597 125.065 39.728 124.815 39.712 124.620 39.827 124.426 39.992 124.386 ; #1202 -3 68.754 126.813 68.787 127.202 68.776 127.609 68.776 127.844 68.754 128.038 68.843 128.426 68.799 128.639 68.787 128.833 68.732 129.222 68.754 129.435 68.887 129.823 68.876 130.018 68.898 130.055 68.821 130.271 68.787 130.463 68.787 130.660 68.887 130.854 69.010 131.299 69.032 131.493 69.032 132.094 69.043 132.232 69.120 132.426 69.230 132.599 69.286 132.815 69.461 132.815 69.571 132.987 69.659 133.203 69.670 133.397 69.757 133.357 69.812 133.163 69.920 133.144 69.996 132.949 70.094 133.144 70.202 133.144 70.311 133.065 70.353 132.718 70.375 132.523 70.375 132.135 70.483 132.094 70.590 132.154 70.698 132.113 70.804 132.113 70.922 132.192 71.028 132.057 71.070 131.862 71.059 131.822 71.059 131.725 71.166 131.881 71.219 132.094 71.324 132.016 71.441 132.076 71.660 132.270 71.880 132.542 71.943 132.755 71.828 132.774 71.619 133.106 71.524 133.319 71.430 133.726 71.377 134.115 71.366 134.735 71.261 134.678 71.366 134.794 71.420 134.794 71.514 134.989 71.545 135.202 71.524 135.396 71.608 135.590 71.640 135.784 71.629 135.997 71.577 136.405 71.514 136.542 71.524 136.736 71.451 136.950 71.356 137.357 71.250 137.532 71.250 137.745 71.208 137.551 71.144 137.958 71.219 137.764 71.240 138.171 71.313 138.387 71.345 137.980 71.566 138.055 71.598 138.250 71.629 138.657 71.608 138.873 71.566 139.067 71.462 139.142 71.420 139.358 71.493 139.552 71.462 139.765 71.483 139.979 71.472 140.016 71.545 139.960 71.650 139.784 71.766 139.725 71.870 139.725 71.953 139.512 72.016 139.725 72.120 139.822 72.203 140.210 72.233 140.016 72.233 139.706 72.161 139.512 72.130 139.299 72.223 139.105 72.337 139.202 72.492 139.609 72.502 139.803 72.482 140.016 72.482 140.386 72.522 140.793 72.614 140.987 72.718 140.968 72.789 140.755 72.891 140.677 72.850 141.300 72.789 141.513 72.728 141.939 72.707 142.328 72.687 143.571 72.656 143.765 72.636 144.386 72.604 144.580 72.584 144.987 72.389 144.755 72.285 144.621 72.264 144.211 72.244 144.192 72.192 144.173 72.172 143.960 72.192 143.747 71.996 143.358 71.932 143.221 71.724 142.948 71.671 142.735 71.566 142.619 71.345 142.444 71.240 142.541 71.187 142.581 71.081 142.503 70.985 142.309 70.922 141.902 70.665 141.648 70.450 141.260 70.332 141.009 70.213 140.815 69.996 140.890 69.975 141.103 69.985 141.300 69.877 141.686 69.909 141.880 69.909 142.018 69.877 142.231 69.767 142.171 69.648 142.037 69.582 142.366 69.472 142.581 69.363 142.600 69.252 142.463 69.274 142.250 69.241 142.037 69.252 141.648 69.208 141.435 69.087 141.532 68.854 141.823 68.743 141.880 68.653 141.861 68.620 141.667 68.497 141.610 68.452 141.395 68.464 141.182 68.363 140.968 68.250 141.084 67.923 141.066 67.833 141.260 67.810 141.066 67.833 140.852 67.821 140.426 67.821 140.210 67.799 140.016 67.776 139.941 67.696 139.609 67.594 139.415 67.594 139.008 67.571 138.851 67.457 138.832 67.331 138.910 67.251 138.716 67.148 139.008 67.113 139.202 66.998 139.396 66.814 139.552 66.791 139.960 66.674 140.016 66.593 140.405 66.477 140.542 66.372 140.386 66.407 140.173 66.384 140.016 66.337 139.900 66.221 139.725 66.104 139.822 66.044 140.016 65.927 140.057 65.833 140.251 65.716 140.270 65.657 140.154 65.538 140.308 65.455 140.016 65.455 139.979 65.325 139.803 65.086 139.571 64.979 139.493 64.859 139.628 64.715 140.016 64.607 140.232 64.486 140.386 64.354 140.057 64.233 140.192 64.111 140.599 63.978 140.639 63.843 140.542 63.721 140.502 63.599 140.580 63.501 140.348 63.477 140.154 63.402 140.016 63.341 139.822 63.243 139.628 63.144 139.668 63.021 139.590 62.809 139.687 62.685 139.822 62.660 140.016 62.660 140.135 62.536 140.232 62.424 140.426 62.424 140.658 62.548 140.834 62.486 141.047 62.399 141.125 62.436 141.319 62.299 141.416 62.173 141.570 62.034 141.999 62.072 142.193 61.959 142.366 61.934 142.581 61.959 142.776 61.909 143.008 62.034 143.124 62.047 143.318 61.934 143.571 61.934 143.784 61.984 143.960 61.733 143.997 61.733 144.211 61.796 144.386 62.047 144.755 62.072 144.871 61.972 145.260 61.959 145.454 62.009 145.667 62.047 145.686 62.022 145.880 61.871 146.269 61.821 146.387 61.567 146.600 61.428 146.619 61.415 146.776 61.403 146.794 61.276 146.716 61.212 146.776 61.071 146.697 60.944 146.679 60.905 146.484 60.674 146.444 60.700 146.250 60.700 146.037 60.597 145.842 60.533 145.629 60.403 145.610 60.287 145.629 60.197 145.823 60.249 146.231 60.223 146.425 60.132 146.619 60.054 146.657 59.976 146.679 59.950 146.754 59.924 146.851 59.937 147.064 59.741 147.164 59.468 147.124 59.388 146.929 59.362 146.910 59.375 146.754 59.455 146.541 59.336 146.347 59.192 146.212 59.152 146.018 59.257 145.823 59.388 145.823 59.415 145.610 59.415 145.222 59.375 145.028 59.375 144.639 59.415 144.016 59.336 143.434 59.375 143.221 59.297 142.970 59.231 142.560 59.060 142.153 58.941 141.958 58.796 141.842 58.664 141.667 58.477 141.260 58.438 141.066 58.331 140.852 58.198 140.696 57.930 140.542 57.783 140.426 57.689 140.016 57.554 139.881 57.473 139.687 57.338 139.512 57.284 139.318 57.189 139.124 57.053 138.970 56.985 138.776 56.604 138.171 56.467 138.268 56.399 138.077 56.125 137.667 55.794 137.065 55.586 136.464 55.309 136.154 55.141 135.747 55.113 135.552 54.988 135.337 54.848 135.183 54.708 135.261 54.666 135.649 54.568 135.844 54.610 136.251 54.596 136.445 54.652 136.639 54.638 136.852 54.497 136.852 54.342 136.774 54.060 136.793 53.919 136.677 53.762 136.812 53.848 137.028 53.890 137.222 54.046 137.300 54.144 137.106 54.258 137.300 54.314 137.513 54.328 137.707 54.188 137.591 54.032 137.395 53.947 137.610 53.905 137.805 53.820 137.610 53.677 137.513 53.535 137.338 53.578 137.921 53.762 138.328 53.905 138.387 53.947 138.581 53.806 138.581 53.663 138.366 53.521 138.347 53.563 138.560 53.705 138.657 53.862 138.697 54.003 138.794 54.144 138.735 54.300 138.794 54.230 139.008 54.202 139.202 54.202 139.396 54.244 139.609 54.230 139.822 54.116 140.016 54.060 140.210 53.776 140.386 53.634 140.580 53.563 140.774 53.221 141.376 53.078 141.319 52.992 141.125 53.121 140.736 52.819 141.260 52.676 141.300 52.532 141.260 52.388 141.163 52.272 141.357 52.214 141.551 52.155 141.551 52.054 141.338 51.895 141.357 51.750 141.182 51.647 140.987 51.340 140.852 51.193 140.696 51.047 140.736 50.752 140.502 50.146 140.542 49.998 140.580 49.878 140.464 49.581 140.580 49.266 140.367 49.266 140.405 49.025 140.348 49.025 140.270 48.875 140.308 48.724 140.210 48.482 140.192 48.316 140.016 48.149 139.725 47.981 139.552 47.844 139.358 47.539 139.124 47.386 139.045 47.278 138.873 46.956 138.541 46.183 138.077 45.716 137.570 45.420 137.203 45.154 136.812 44.934 136.580 44.761 136.445 44.651 136.251 44.493 136.173 44.413 135.960 44.097 135.668 43.938 135.474 43.748 135.434 43.668 135.239 43.509 135.164 43.030 134.171 42.901 133.958 42.821 133.570 42.693 133.181 42.821 132.987 42.853 132.696 42.949 132.308 43.110 132.348 43.270 132.289 43.158 132.094 43.126 131.900 43.302 131.997 43.302 131.784 43.046 131.609 42.933 131.415 42.773 131.337 42.661 131.123 42.612 130.735 42.452 130.794 42.290 130.716 42.420 130.619 42.564 130.638 42.789 130.541 42.821 130.735 42.869 130.854 42.853 131.045 43.014 131.123 43.158 131.239 43.317 131.299 43.477 131.299 43.541 131.202 44.018 131.261 44.034 131.280 44.303 131.239 44.382 131.202 44.398 131.202 44.556 131.164 44.855 131.007 44.918 131.123 44.934 131.318 44.997 131.512 45.216 131.784 45.279 131.803 45.247 131.997 45.232 132.016 45.060 132.852 45.028 132.968 45.107 133.106 45.420 133.144 45.514 133.241 45.576 133.435 45.607 133.454 45.872 133.532 45.966 133.689 46.230 133.861 46.369 133.939 46.540 133.920 46.602 133.958 46.632 134.018 46.848 134.055 47.033 134.134 47.094 134.212 47.325 134.193 47.539 134.638 47.661 134.735 47.813 134.697 47.890 134.678 47.950 134.600 48.270 134.757 48.361 134.581 48.376 134.444 48.391 134.425 48.346 134.231 48.331 134.077 48.255 133.977 48.255 133.764 48.119 133.570 48.073 133.513 48.103 133.125 48.011 132.931 47.859 132.677 47.707 132.523 47.737 132.367 47.692 132.173 47.676 131.784 47.737 131.512 47.737 131.318 47.676 131.105 47.676 131.067 47.722 130.951 47.874 130.929 48.026 130.735 48.164 130.757 48.331 130.854 48.482 130.776 48.557 130.638 48.724 130.600 48.875 130.638 48.905 130.678 48.965 130.813 48.980 131.007 48.995 131.026 49.100 131.067 49.251 131.221 49.236 131.415 49.430 131.512 49.550 131.512 49.715 131.377 49.759 131.512 49.908 131.512 49.998 131.318 50.146 131.493 50.294 131.337 50.368 131.299 50.428 131.142 50.383 131.007 50.531 130.989 50.649 130.891 50.635 130.697 50.782 130.757 50.871 130.873 51.238 131.086 51.340 131.280 51.340 131.474 51.457 131.512 51.516 131.474 51.530 131.474 51.677 131.434 51.677 131.628 51.750 131.900 51.793 132.308 51.895 132.445 52.040 132.561 52.184 132.852 52.155 133.047 52.184 133.241 52.258 133.454 52.315 133.416 52.460 133.260 52.604 133.260 52.676 133.397 52.575 133.667 52.460 134.368 52.417 134.581 52.561 134.657 52.676 134.776 52.819 134.638 52.891 134.678 53.050 134.813 53.292 134.929 53.436 134.929 53.592 134.678 53.592 134.484 53.464 134.152 53.464 133.764 53.521 133.570 53.492 133.551 53.478 133.357 53.335 133.181 53.292 133.084 53.221 132.890 53.249 132.696 53.235 132.348 53.221 132.154 53.150 131.960 53.221 131.765 53.207 131.571 53.478 131.512 53.762 131.396 53.790 131.239 53.834 130.854 53.890 130.660 53.890 130.522 54.046 130.503 54.244 130.697 54.300 130.891 54.300 131.086 54.497 131.221 54.638 131.299 54.722 131.493 54.764 131.687 54.848 131.900 55.002 131.997 55.071 132.426 55.197 132.367 55.197 132.561 55.336 132.677 55.364 132.968 55.433 132.755 55.572 132.658 55.683 132.464 55.697 132.270 55.613 131.862 55.656 131.668 55.613 131.531 55.613 131.142 55.683 130.951 55.821 130.891 56.111 130.970 56.152 131.007 56.289 131.123 56.426 131.164 56.481 131.358 56.426 131.377 56.536 131.571 56.494 131.687 56.768 131.803 56.850 131.725 57.149 131.318 57.230 131.123 57.298 131.239 57.311 131.280 57.244 131.531 57.311 131.609 57.419 131.590 57.554 131.784 57.608 131.978 57.662 132.076 57.930 131.747 58.172 131.552 58.158 131.747 58.077 131.941 58.064 132.154 58.198 132.057 58.345 132.232 58.491 132.232 58.477 132.426 58.756 132.599 58.888 132.599 58.836 132.464 58.796 132.405 58.862 132.210 59.126 132.154 59.113 131.978 59.139 131.822 59.402 131.628 59.546 131.649 59.820 131.668 59.950 131.765 60.002 131.978 60.094 132.076 60.223 132.154 60.326 132.289 60.456 132.348 60.597 132.464 60.674 132.542 60.623 132.736 60.816 133.125 60.956 133.125 61.135 133.106 61.263 133.163 61.301 133.357 61.314 133.570 61.352 134.055 61.339 134.250 61.453 134.541 61.580 134.406 61.707 134.368 61.821 134.171 61.846 134.115 61.833 133.902 61.859 133.707 61.859 133.591 61.896 133.397 61.833 133.181 61.947 132.987 62.085 132.890 62.122 132.890 62.249 132.736 62.374 132.639 62.511 132.677 62.523 132.580 62.499 132.386 62.884 132.561 63.095 132.755 63.353 132.852 63.353 132.834 63.365 132.834 63.402 132.755 63.526 132.620 63.709 132.329 63.721 132.135 63.843 132.308 63.880 132.405 64.014 132.561 64.135 132.620 64.257 132.736 64.366 132.834 64.498 132.755 64.619 132.620 64.607 132.405 64.691 132.251 64.823 132.289 65.063 132.094 65.420 131.747 65.479 131.552 65.550 131.649 65.609 131.668 65.727 131.609 65.786 131.415 65.798 131.337 65.962 130.929 66.068 130.541 66.162 130.368 66.279 130.231 66.395 130.174 66.512 130.018 66.477 129.861 66.535 129.454 66.500 129.260 66.535 128.833 66.593 128.426 66.523 128.232 66.477 128.154 66.604 127.765 66.686 127.358 66.721 127.299 66.837 127.026 66.952 127.105 67.194 127.067 67.262 127.067 67.491 127.183 67.617 127.007 67.628 126.813 67.731 126.659 67.844 126.581 67.957 126.716 68.081 126.716 68.104 126.638 68.216 126.581 68.340 126.678 68.374 127.067 68.396 127.048 68.508 127.183 68.609 126.775 68.710 126.581 ; #1203 10 -35.923 137.648 -35.872 137.842 -35.923 138.055 -35.752 138.055 -35.820 137.861 -35.752 137.667 -35.616 137.473 -35.616 137.260 -35.684 137.065 -35.752 136.677 -35.923 136.580 -36.059 136.774 -36.008 137.357 -36.076 137.454 ; #1204 -5 -15.393 128.094 -15.507 128.038 -15.374 128.094 ; #1205 3 55.030 136.890 55.002 136.812 54.918 137.006 55.002 137.084 ; #1206 3 55.141 137.980 55.141 137.764 55.183 137.570 55.030 137.492 55.002 137.395 54.848 137.260 54.876 137.473 54.722 137.629 54.694 137.823 54.806 138.018 54.946 138.077 55.002 138.134 55.002 137.902 ; #1207 3 54.525 137.648 54.385 137.591 54.385 137.667 ; #1208 4 33.951 130.989 33.846 130.989 33.760 131.026 33.604 131.221 33.570 131.337 33.656 131.531 33.604 131.725 33.414 131.725 33.274 131.531 33.257 131.919 33.084 132.016 32.910 131.997 32.735 131.900 32.579 131.706 32.509 131.725 32.159 131.552 31.897 131.474 31.704 131.474 31.564 131.396 31.370 131.358 31.458 131.164 31.405 131.045 31.230 131.086 31.089 130.891 31.054 130.697 31.230 130.813 31.405 130.776 31.582 130.619 31.687 130.813 31.669 130.619 31.528 130.562 31.177 130.638 31.282 130.231 31.458 130.328 31.634 130.347 31.984 130.193 32.159 130.368 32.492 130.619 32.648 130.660 32.631 130.463 32.806 130.619 32.979 130.444 33.136 130.368 33.119 130.134 32.945 130.231 32.735 130.212 32.752 130.018 32.683 129.861 32.858 129.707 33.031 129.786 32.858 129.823 32.841 130.018 33.014 129.939 33.119 129.745 33.292 129.610 33.362 129.804 33.326 129.823 33.500 129.883 33.431 130.018 33.449 130.055 33.656 130.250 33.708 130.444 33.881 130.562 33.915 130.951 ; #1209 -3 74.148 135.493 74.098 135.687 73.899 136.094 73.929 136.289 74.029 136.154 74.118 135.960 74.247 135.434 ; #1210 3 75.368 135.668 75.387 135.881 75.484 135.979 75.579 136.132 75.675 135.941 75.770 135.822 75.770 135.628 75.675 135.571 75.579 135.609 75.474 135.512 75.378 135.474 ; #1211 3 76.206 138.929 76.215 138.735 76.159 138.503 76.065 138.406 76.131 138.212 76.026 138.055 75.989 137.629 75.941 137.435 75.742 137.707 75.789 137.300 75.723 137.084 75.628 137.047 75.608 137.260 75.512 137.260 75.406 137.144 75.339 137.357 75.320 136.931 75.223 137.006 75.118 137.203 75.020 137.610 74.953 137.823 74.855 137.880 74.797 138.096 74.729 138.716 74.679 138.910 74.650 139.124 74.669 139.318 74.777 139.531 74.874 139.493 74.982 139.668 74.962 139.863 74.855 140.016 74.816 140.038 74.914 141.066 74.933 141.494 74.991 141.880 74.991 142.096 74.924 142.309 74.895 142.096 74.816 142.484 74.895 142.697 74.884 143.105 74.904 143.512 75.001 143.628 75.001 143.434 75.068 143.026 75.068 142.813 75.127 142.619 75.320 142.268 75.617 142.018 75.628 142.231 75.656 142.018 75.656 142.231 75.713 142.444 75.713 142.851 75.675 143.045 75.579 142.948 75.541 142.735 75.455 142.522 75.320 142.638 75.127 143.045 75.068 143.455 75.079 143.668 75.030 144.057 75.089 144.483 75.146 144.677 75.253 144.755 75.272 144.950 75.311 144.736 75.416 144.718 75.493 145.125 75.570 145.319 75.608 145.125 75.628 144.909 75.694 144.718 75.713 144.502 75.866 143.649 75.808 143.067 75.837 142.851 75.847 142.619 75.923 142.425 76.037 142.018 76.121 141.629 76.121 141.416 76.017 141.532 76.055 141.144 75.970 140.931 75.828 140.931 75.732 140.890 75.647 141.084 75.608 140.890 75.617 140.677 75.713 140.483 75.808 140.426 75.819 140.016 75.856 139.941 75.951 139.881 76.112 139.067 ; #1212 3 71.587 137.783 71.556 137.181 71.451 137.279 71.472 137.492 71.408 137.689 71.503 137.980 ; #1213 3 73.439 139.803 73.348 139.997 73.398 140.210 73.449 140.639 73.408 141.066 73.297 141.686 73.247 142.754 73.207 143.164 73.227 143.377 73.328 143.493 73.429 143.531 73.539 143.415 73.619 143.221 73.809 142.619 73.919 141.999 73.899 141.610 73.860 141.395 73.870 141.200 73.830 140.987 73.730 140.834 73.619 140.715 73.519 140.542 73.449 140.329 73.449 140.016 ; #1214 3 73.969 140.834 73.989 141.047 74.198 141.103 74.267 140.912 74.286 140.715 74.257 140.308 74.167 140.113 74.059 140.113 73.959 140.270 73.899 140.464 ; #1215 3 74.758 149.686 74.845 150.115 74.884 150.503 74.943 150.716 75.049 150.776 75.146 150.929 75.156 150.735 75.127 150.522 75.156 150.328 75.223 150.134 75.282 149.298 75.263 149.103 75.214 148.890 75.214 148.677 75.282 148.464 75.387 148.561 75.416 148.367 75.406 148.154 75.436 147.512 75.349 147.299 75.330 147.105 75.349 146.910 75.406 146.697 75.503 146.776 75.579 146.560 75.512 146.366 75.204 146.115 75.156 146.328 75.108 146.735 75.001 147.142 74.972 147.337 74.962 147.552 74.806 148.173 74.768 148.561 74.758 149.182 ; #1216 -4 -3.319 133.689 -3.280 133.689 -3.086 133.883 -3.125 133.689 -3.280 133.689 -3.338 133.667 -3.687 133.473 -3.882 133.473 -4.075 133.260 -4.017 132.871 -3.823 132.793 -3.629 132.912 -3.435 132.834 -3.280 132.658 -3.066 132.523 -2.950 132.329 -2.950 132.135 -2.756 132.094 -2.679 132.289 -2.795 132.696 -2.737 132.852 -2.543 133.009 -2.427 133.203 -2.524 133.397 -2.601 133.786 -2.427 133.786 -2.408 133.977 -2.213 133.977 -2.174 133.764 -2.213 133.610 -2.213 133.222 -2.251 133.028 -2.290 132.968 -2.290 132.658 -2.213 132.270 -2.096 132.076 -1.902 131.960 -1.689 132.038 -1.495 131.609 -1.476 131.415 -1.534 131.221 -1.456 131.026 -1.261 131.067 -1.106 131.261 -0.815 131.318 -0.738 131.512 -0.738 131.706 -0.680 131.900 -0.505 132.094 -0.388 132.289 -0.350 132.599 -0.447 132.987 -0.544 133.181 -0.718 133.397 -0.757 133.591 -0.718 133.786 -0.796 134.055 -0.990 134.055 -1.379 134.290 -1.767 134.134 -2.369 134.212 -2.563 134.368 -2.756 134.425 -2.563 134.484 -2.756 134.678 -2.950 134.716 -3.145 134.832 -3.338 135.007 -3.396 135.358 -3.338 135.552 -2.989 135.919 -2.853 135.960 -2.679 136.076 -2.563 136.270 -2.369 136.367 -2.193 136.561 -2.251 136.755 -2.116 137.144 -1.961 137.222 -1.767 137.241 -1.554 137.629 -1.495 137.823 -1.495 137.921 -1.612 138.115 -1.805 138.716 -1.961 138.910 -2.019 139.105 -2.369 139.881 -2.446 140.599 -2.640 140.736 -2.601 141.028 -6.341 141.028 -6.360 140.987 -6.553 140.931 -6.708 140.871 -6.901 141.028 -9.120 141.028 -9.004 140.834 -8.503 140.386 -8.214 140.016 -8.098 140.016 -7.905 140.154 -8.079 140.016 -8.137 139.628 -8.214 139.434 -8.002 139.261 -8.176 139.067 -8.195 138.873 -7.597 139.105 -7.249 138.754 -7.210 138.948 -7.249 139.164 -7.152 139.261 -7.210 139.067 -7.152 138.873 -7.017 138.678 -6.862 138.873 -6.978 139.202 -6.785 138.813 -6.592 138.697 -6.418 138.503 -5.992 138.328 -5.838 138.425 -5.838 138.231 -5.683 138.387 -5.741 138.115 -5.702 138.077 -5.412 138.077 -5.373 137.880 -5.102 137.492 -4.928 137.084 -4.928 136.871 -4.889 136.755 -4.676 136.348 -4.618 136.154 -4.502 135.960 -4.502 135.765 -4.443 135.434 -4.462 135.239 -4.269 134.832 -4.172 134.735 -3.978 134.697 -3.959 134.892 -3.920 134.697 -3.998 134.503 -3.978 134.309 -3.784 134.193 -3.862 133.999 -3.764 133.958 -3.668 133.745 -3.474 133.648 -3.338 133.667 ; #1217 -4 -3.280 133.689 -3.319 133.689 -3.338 133.667 ; #1218 -4 -3.125 133.689 -3.086 133.883 -3.280 133.689 ; #1219 3 -8.657 143.649 -8.522 143.455 -8.484 143.261 -8.734 143.649 ; #1220 3 -8.368 143.590 -8.426 143.396 -8.503 143.590 ; #1221 3 -40.124 143.960 -40.008 144.154 -39.844 144.135 -39.663 143.960 -39.827 143.881 -40.008 143.900 ; #1222 3 13.567 144.834 13.435 144.639 13.224 144.736 ; #1223 3 -41.172 146.387 -41.107 146.074 -41.041 145.880 -40.927 145.686 -40.796 145.298 -40.812 145.084 -40.698 144.696 -40.878 144.718 -41.041 144.658 -41.692 144.931 -42.032 145.260 -42.193 145.260 -42.307 145.454 -42.468 145.492 -42.307 145.338 -42.468 145.260 -42.949 145.513 -43.110 145.707 -43.269 145.842 -43.333 146.037 -43.317 146.231 -43.349 146.037 -43.525 146.055 -43.493 146.250 -43.573 146.657 -43.653 146.851 -43.333 147.008 -43.174 146.989 -43.269 147.183 -43.110 147.280 -42.949 147.358 -42.789 147.280 -42.773 147.299 -42.917 147.493 -42.901 147.687 -43.014 147.881 -42.949 147.687 -43.110 147.765 -43.206 147.960 -42.885 147.997 -42.564 147.919 -42.387 148.016 -42.225 148.057 -42.064 148.154 -42.225 148.289 -42.064 148.327 -40.910 148.308 -40.780 148.095 -40.878 147.900 -40.861 147.706 -40.977 147.512 -40.960 147.318 -41.025 146.910 -41.172 146.970 -41.074 146.776 -41.155 146.579 -41.155 146.484 ; #1224 3 -18.357 146.328 -18.301 146.134 -18.488 146.309 ; #1225 3 -1.999 147.221 -1.961 146.832 -2.019 146.619 -2.213 146.560 -2.232 146.579 -2.135 146.776 -2.193 146.989 -2.193 147.183 -2.058 147.377 -1.961 147.415 ; #1226 3 -5.257 147.221 -5.257 147.026 -5.451 147.164 ; #1227 3 -43.174 147.358 -43.508 147.164 -43.429 147.377 -43.269 147.377 ; #1228 3 -5.760 148.076 -5.567 148.016 -5.664 147.803 -5.857 148.016 ; #1229 3 -40.272 148.154 -40.173 148.348 -40.008 148.308 -39.943 148.192 -39.778 148.038 -39.844 147.841 -40.008 147.919 ; #1230 3 -40.469 148.424 -40.305 148.367 -40.453 148.173 -40.502 148.367 ; #1231 3 -6.050 150.910 -5.992 151.105 -5.857 151.299 -5.741 151.434 -5.548 151.571 -5.548 151.960 -5.393 152.154 -5.198 152.035 -5.005 152.132 -4.908 152.327 -4.715 152.424 -4.521 152.367 -4.346 152.367 -4.211 152.154 -4.327 151.960 -4.211 151.766 -4.365 151.571 -4.753 151.687 -4.947 151.668 -4.947 151.377 -5.102 151.183 -5.490 150.892 -5.548 150.697 -5.451 150.522 -5.567 150.328 -5.451 150.134 -5.063 150.037 -5.257 150.018 -5.315 149.958 -5.509 149.939 -5.567 149.745 -5.548 149.551 -5.586 149.532 -5.586 149.338 -5.528 149.144 -5.490 148.737 -5.606 148.348 -5.799 148.502 -5.857 148.696 -6.069 149.066 -6.109 149.260 -6.090 149.454 -6.283 149.629 -6.283 150.406 -6.186 150.600 -6.148 150.795 ; #1232 3 -1.476 149.745 -1.476 149.551 -1.612 149.745 ; #1233 3 -2.679 150.269 -2.659 150.484 -2.466 150.406 -2.369 150.212 -2.466 150.018 -2.504 150.018 ; #1234 3 -9.274 150.347 -9.389 150.153 -9.524 150.347 ; #1235 3 -9.659 150.948 -9.447 150.832 -9.409 150.638 -9.447 150.444 -9.639 150.463 -9.659 150.679 -9.716 150.873 ; #1236 3 -3.668 152.521 -3.338 152.132 -3.203 151.941 -3.125 151.747 -2.970 151.552 -2.659 150.948 -2.718 150.754 -2.776 150.967 -2.873 151.164 -3.435 151.941 -3.494 152.132 -3.629 152.327 -4.017 152.618 -4.211 152.715 -4.599 152.737 -4.792 152.890 -4.637 153.066 -4.249 153.144 -4.056 152.987 -3.901 152.793 -3.862 152.696 ; #1237 3 -10.120 151.045 -10.197 151.240 -10.005 151.299 -10.005 151.067 -9.909 151.008 -9.813 150.813 -10.005 150.929 -10.005 151.008 ; #1238 3 -8.638 151.142 -8.445 151.067 -8.831 151.164 ; #1239 3 -23.671 151.280 -23.597 151.086 -23.781 151.240 ; #1240 3 -10.639 152.774 -10.639 152.561 -10.716 152.755 ; #1241 3 -9.197 152.969 -9.004 152.853 -9.062 152.658 -9.235 152.853 ; #1242 3 -25.608 153.125 -25.062 153.376 -24.862 153.298 -25.062 153.241 -25.209 153.047 -25.391 153.066 -25.572 152.969 -25.772 153.047 -25.790 153.103 ; #1243 3 -11.598 153.802 -11.406 153.395 -11.369 153.200 -11.560 153.395 -11.636 153.589 ; #1244 3 -27.725 153.473 -27.545 153.435 -27.725 153.435 ; #1245 3 -5.277 154.735 -5.063 154.581 -5.257 154.581 -5.470 154.657 ; #1246 3 -6.553 155.183 -6.747 155.377 -6.843 155.571 -6.805 155.784 -6.727 155.979 -6.534 155.938 -6.341 155.784 -6.225 155.571 -5.973 155.396 -5.780 155.183 -5.586 155.086 -5.548 154.892 -5.451 154.697 -5.644 154.754 -5.838 154.754 -6.031 154.832 -6.399 155.240 -6.515 155.183 ; #1247 -3 -16.529 138.018 -16.718 138.212 -16.775 138.425 -16.775 138.638 -16.870 138.832 -16.908 139.026 -17.096 139.164 -17.284 139.221 -17.360 139.318 -17.417 139.512 -17.548 139.706 -17.567 139.784 -17.717 140.016 -17.680 140.405 -17.530 140.755 -17.323 140.912 -16.945 141.028 -16.699 141.222 -16.075 141.454 -15.886 141.416 -15.488 141.494 -15.014 141.686 -14.634 141.570 -14.443 141.551 -14.253 141.610 -14.062 141.589 -13.872 141.494 -13.662 141.513 -13.472 141.589 -13.358 141.686 -12.957 141.610 -12.765 141.805 -12.727 141.999 -12.575 141.805 -12.518 141.629 -12.116 141.805 -12.058 141.999 -11.847 141.977 -11.464 142.115 -11.062 142.171 -10.889 142.366 -10.755 142.444 -10.755 142.638 -10.947 142.522 -10.985 142.716 -11.177 142.832 -11.752 142.892 -11.924 143.086 -11.982 143.261 -12.172 143.105 -12.556 143.337 -12.746 143.396 -12.938 143.531 -13.339 143.550 -13.529 143.590 -13.719 143.550 -13.910 143.609 -14.139 143.725 -14.329 143.765 -14.500 143.960 -14.310 144.348 -14.177 144.542 -14.367 144.580 -14.557 144.696 -14.615 144.890 -14.805 145.047 -14.938 145.357 -15.147 145.260 -15.336 145.298 -15.526 145.279 -15.716 145.376 -15.905 145.376 -16.094 145.473 -16.473 145.435 -16.851 145.764 -16.945 145.783 -16.889 145.977 -17.077 145.902 -17.642 146.153 -18.226 146.037 -18.414 146.212 -18.545 146.347 -18.733 146.309 -18.920 146.328 -19.089 146.522 -19.313 146.910 -19.426 147.299 -19.426 147.493 -19.780 147.650 -19.706 147.841 -19.893 147.941 -19.930 148.132 -20.005 148.289 -20.191 148.424 -20.191 148.618 -20.266 148.812 -20.452 148.890 -20.564 148.696 -20.750 148.793 -21.029 149.182 -21.215 149.222 -21.270 149.298 -21.456 149.319 -21.549 149.513 -21.919 149.492 -22.290 149.610 -22.474 149.708 -22.456 149.899 -22.604 150.018 -22.493 150.018 -22.308 149.939 -22.160 150.018 -22.345 150.212 -22.604 150.600 -22.401 150.560 -22.456 150.754 -22.567 150.735 -22.751 150.832 -22.954 150.754 -23.138 150.776 -23.506 150.892 -23.506 150.832 -23.561 151.026 -23.744 151.164 -24.002 151.455 -24.002 151.725 -24.149 151.919 -24.478 152.057 -24.679 152.229 -24.752 152.424 -24.898 152.521 -25.081 152.580 -25.263 152.737 -25.391 152.950 -25.590 152.909 -25.772 152.987 -25.827 153.028 -25.936 153.222 -26.299 153.084 -26.860 153.163 -27.040 153.222 -27.221 153.144 -27.419 153.200 -27.779 153.416 -27.958 153.416 -28.156 153.532 -28.192 153.589 -28.371 153.610 -28.549 153.589 -28.728 153.629 -28.907 153.589 -29.086 153.454 -29.282 153.376 -29.816 153.319 -30.010 153.241 -30.665 153.028 -31.019 153.066 -31.370 152.969 -31.739 152.834 -32.089 152.561 -32.439 152.561 -32.561 152.348 -32.735 152.211 -32.927 151.822 -33.274 151.552 -33.449 151.474 -33.639 151.318 -33.777 151.318 -33.968 151.202 -34.140 151.164 -34.312 150.967 -34.657 150.892 -34.828 150.776 -35.000 150.813 -35.017 150.776 -35.188 150.716 -35.308 150.503 -35.991 150.171 -36.161 150.134 -36.330 150.153 -36.805 149.958 -36.991 149.939 -37.160 150.018 -37.261 150.018 -37.344 149.977 -37.513 149.999 -37.765 149.532 -37.798 149.338 -37.815 148.424 -37.848 148.211 -37.966 147.822 -38.200 147.434 -38.684 146.851 -38.684 146.638 -38.734 146.444 -38.717 146.250 -38.883 146.290 -38.800 146.484 -39.149 146.406 -38.817 146.096 -38.817 145.902 -38.667 145.707 -38.567 145.513 -38.400 145.551 -38.233 145.473 -38.250 145.279 -38.417 145.241 -38.500 145.047 -38.384 144.871 -38.200 145.106 -38.033 145.106 -37.882 144.968 -38.049 144.580 -38.166 144.386 -38.284 144.580 -38.317 144.386 -38.717 143.747 -38.867 143.550 -38.767 143.318 -38.500 142.716 -38.384 142.522 -38.384 142.134 -38.284 141.939 -38.267 141.726 -38.400 141.532 -38.133 141.144 -38.066 140.987 -26.008 140.987 -26.008 138.018 ; #1248 -2 67.331 138.910 67.457 138.832 67.571 138.851 67.594 139.008 67.594 139.415 67.696 139.609 67.776 139.941 67.799 140.016 67.821 140.210 67.821 140.426 67.833 140.852 67.810 141.066 67.833 141.260 67.923 141.066 68.250 141.084 68.363 140.968 68.464 141.182 68.452 141.395 68.497 141.610 68.620 141.667 68.653 141.861 68.743 141.880 68.854 141.823 69.087 141.532 69.208 141.435 69.252 141.648 69.241 142.037 69.274 142.250 69.252 142.463 69.363 142.600 69.472 142.581 69.582 142.366 69.648 142.037 69.767 142.171 69.877 142.231 69.909 142.018 69.909 141.880 69.877 141.686 69.985 141.300 69.975 141.103 69.996 140.890 70.213 140.815 70.332 141.009 70.450 141.260 70.665 141.648 70.922 141.902 70.985 142.309 71.081 142.503 71.187 142.581 71.240 142.541 71.345 142.444 71.566 142.619 71.671 142.735 71.724 142.948 71.932 143.221 71.996 143.358 72.192 143.747 72.172 143.960 72.192 144.173 72.244 144.192 72.203 144.289 72.172 144.483 72.213 144.696 72.254 145.106 72.306 146.347 72.306 146.948 71.996 146.366 71.849 145.977 71.953 145.999 72.058 146.193 72.161 146.193 72.120 145.977 72.223 145.842 72.244 145.648 71.932 145.823 71.880 145.435 71.922 145.222 71.901 145.028 71.797 145.144 71.693 144.950 71.693 145.144 71.660 145.338 71.724 145.551 71.724 145.745 71.818 146.153 71.891 146.366 72.068 146.638 72.326 147.240 72.326 148.057 72.306 148.464 72.233 149.066 72.130 149.686 71.932 150.074 71.818 149.939 71.766 149.745 71.859 149.473 71.839 149.279 71.766 149.084 71.787 148.871 71.671 148.931 71.693 149.125 71.640 149.745 71.566 149.958 71.462 149.880 71.514 150.212 71.514 150.425 71.420 150.638 71.324 150.444 71.282 150.250 71.208 150.037 71.271 150.287 71.303 150.503 71.292 150.697 71.366 150.892 71.387 151.086 71.345 151.280 71.335 151.493 71.261 151.687 71.049 152.095 70.985 152.076 70.985 151.668 70.878 152.270 70.836 152.677 70.868 153.473 70.846 153.686 70.964 154.290 71.091 155.919 71.081 157.338 71.049 157.940 70.964 158.541 70.793 159.377 70.643 159.766 70.537 159.938 70.407 160.057 70.300 160.114 70.191 160.016 70.105 159.822 70.051 159.882 70.019 159.900 69.942 159.803 69.888 159.706 69.767 159.822 69.757 160.016 69.648 160.327 69.680 160.424 69.637 160.812 69.539 161.182 69.637 161.570 69.659 161.805 69.626 161.977 69.670 162.444 69.582 162.385 69.505 162.366 69.274 162.657 69.164 162.716 69.109 162.522 68.998 162.560 68.954 162.697 68.832 162.813 68.754 162.619 68.642 162.716 68.564 162.697 68.452 162.619 68.340 162.503 68.329 162.288 68.352 162.096 68.408 161.473 68.385 161.260 68.296 160.871 68.272 160.639 68.283 160.016 68.160 158.989 68.126 158.484 68.081 158.287 67.957 158.212 67.844 158.074 67.833 158.287 67.776 158.328 67.719 158.134 67.731 157.940 67.617 157.745 67.503 157.783 67.468 157.764 67.354 157.805 67.251 158.018 67.113 158.406 67.079 158.619 66.987 158.813 66.872 158.892 66.756 158.851 66.733 158.773 66.500 158.503 66.384 158.503 66.360 158.541 66.302 158.754 66.232 159.202 66.115 159.183 65.880 158.948 65.751 158.929 65.727 159.027 65.597 159.647 65.526 159.841 65.526 160.016 65.170 160.521 65.146 160.618 65.170 161.028 65.146 161.219 65.074 161.414 65.050 161.551 64.943 161.745 64.823 161.842 64.763 162.250 64.727 162.638 64.655 162.832 64.643 163.027 64.775 163.161 64.655 163.240 64.534 163.221 64.414 163.415 64.208 163.202 64.196 163.008 64.123 162.813 64.026 162.911 63.905 162.892 63.770 162.754 63.685 162.870 63.550 162.989 63.427 162.892 63.365 162.697 63.329 162.754 63.181 162.754 63.132 162.541 63.033 162.347 62.996 162.309 62.747 162.638 62.685 162.851 62.635 162.795 62.386 162.795 62.274 162.600 62.249 162.425 62.122 162.366 62.034 162.560 61.984 162.541 61.921 162.347 61.796 162.482 61.669 162.522 61.669 162.503 61.593 162.309 61.466 162.115 61.365 161.899 61.212 161.513 61.071 161.319 60.880 160.909 60.751 160.755 60.738 160.542 60.674 160.348 60.661 160.154 60.789 160.230 60.918 160.367 61.046 160.424 61.046 160.230 60.995 160.016 61.020 159.900 61.148 159.960 61.289 159.822 61.390 160.016 61.390 160.057 61.783 160.386 61.909 160.211 61.707 159.744 61.657 159.550 61.796 159.434 61.921 159.258 61.909 159.064 61.821 158.870 61.821 158.463 61.796 158.269 61.733 158.074 61.783 157.880 61.796 157.492 61.657 157.085 61.542 156.890 61.479 156.677 61.212 156.658 61.187 156.445 60.969 156.057 60.700 155.822 60.636 155.609 60.533 155.415 60.377 155.008 60.262 154.813 60.132 154.638 60.002 154.522 59.872 154.482 59.885 154.290 59.755 154.250 59.624 154.328 59.533 154.134 59.468 154.328 59.442 154.522 59.507 154.716 59.481 154.929 59.388 155.124 59.257 155.202 59.192 154.989 59.179 154.581 59.205 154.387 59.100 154.193 59.074 153.977 59.179 153.783 59.244 153.376 59.100 153.338 59.087 153.144 58.967 152.931 58.901 152.737 59.020 152.327 58.980 152.132 58.888 151.941 58.836 151.337 59.113 151.105 59.113 151.318 59.152 151.512 59.139 151.725 59.179 152.132 59.283 151.919 59.297 151.725 59.428 151.668 59.533 151.474 59.572 151.280 59.585 151.067 59.455 150.910 59.442 150.716 59.494 150.522 59.546 150.716 59.559 150.522 59.650 150.309 59.663 150.115 59.702 150.018 59.768 149.648 59.755 149.454 59.702 149.260 59.611 149.066 59.481 149.066 59.546 148.852 59.415 148.715 59.283 148.812 59.257 148.618 59.270 148.424 59.402 148.327 59.402 148.113 59.388 147.900 59.270 147.706 59.244 147.512 59.323 147.318 59.362 146.910 59.388 146.929 59.468 147.124 59.741 147.164 59.937 147.064 59.924 146.851 59.950 146.754 59.976 146.679 60.054 146.657 60.132 146.619 60.223 146.425 60.249 146.231 60.197 145.823 60.287 145.629 60.403 145.610 60.533 145.629 60.597 145.842 60.700 146.037 60.700 146.250 60.674 146.444 60.905 146.484 60.944 146.679 61.071 146.697 61.212 146.776 61.276 146.716 61.403 146.794 61.415 146.776 61.428 146.619 61.567 146.600 61.821 146.387 61.871 146.269 62.022 145.880 62.047 145.686 62.009 145.667 61.959 145.454 61.972 145.260 62.072 144.871 62.047 144.755 61.796 144.386 61.733 144.211 61.733 143.997 61.984 143.960 61.934 143.784 61.934 143.571 62.047 143.318 62.034 143.124 61.909 143.008 61.959 142.776 61.934 142.581 61.959 142.366 62.072 142.193 62.034 141.999 62.173 141.570 62.299 141.416 62.436 141.319 62.399 141.125 62.486 141.047 62.548 140.834 62.424 140.658 62.424 140.426 62.536 140.232 62.660 140.135 62.660 140.016 62.685 139.822 62.809 139.687 63.021 139.590 63.144 139.668 63.243 139.628 63.341 139.822 63.402 140.016 63.477 140.154 63.501 140.348 63.599 140.580 63.721 140.502 63.843 140.542 63.978 140.639 64.111 140.599 64.233 140.192 64.354 140.057 64.486 140.386 64.607 140.232 64.715 140.016 64.859 139.628 64.979 139.493 65.086 139.571 65.325 139.803 65.455 139.979 65.455 140.016 65.538 140.308 65.657 140.154 65.716 140.270 65.833 140.251 65.927 140.057 66.044 140.016 66.104 139.822 66.221 139.725 66.337 139.900 66.384 140.016 66.407 140.173 66.372 140.386 66.477 140.542 66.593 140.405 66.674 140.016 66.791 139.960 66.814 139.552 66.998 139.396 67.113 139.202 67.148 139.008 67.251 138.716 ; #1249 2 68.998 161.532 69.120 161.414 69.230 161.357 69.450 161.395 69.494 161.201 69.385 161.125 69.263 161.163 69.153 161.144 69.043 161.357 68.931 161.473 ; #1250 2 69.429 161.610 69.539 161.629 69.593 161.435 69.483 161.435 69.407 161.395 ; #1251 3 52.417 141.745 52.214 141.667 51.924 141.686 51.764 141.842 51.618 141.880 51.487 142.074 51.179 142.250 51.032 142.268 50.886 142.153 50.590 142.074 50.131 142.193 49.535 142.153 49.010 142.037 48.709 141.880 48.542 141.977 48.391 142.115 48.088 142.193 47.935 142.193 47.630 141.999 47.463 141.977 47.310 141.999 47.155 142.074 47.002 142.055 46.679 141.880 46.524 141.842 46.059 141.939 45.935 142.037 46.106 142.231 46.261 142.268 46.571 142.444 46.709 142.638 46.602 142.832 46.571 143.221 46.415 143.358 46.106 143.434 46.261 143.550 46.431 143.590 46.740 143.531 46.786 143.337 46.786 143.142 47.247 143.026 47.569 142.657 47.752 142.560 48.073 142.581 48.830 142.948 49.145 143.045 49.221 143.142 49.326 143.590 49.311 143.396 49.341 143.609 49.266 143.997 49.161 144.192 48.890 144.580 48.739 144.677 48.890 144.677 48.995 144.483 49.145 144.367 49.998 144.016 50.294 143.803 51.193 143.571 51.340 143.396 51.487 143.474 51.793 143.299 51.851 143.221 52.141 143.124 52.287 143.183 52.445 143.202 52.590 143.261 52.445 143.280 52.733 143.358 52.877 143.318 53.021 143.142 53.321 143.105 53.164 143.261 52.848 143.358 53.135 143.318 53.278 143.261 53.563 143.008 53.862 142.948 54.159 142.989 54.300 142.832 54.314 142.638 54.258 142.425 54.116 142.522 54.003 142.657 53.848 142.735 53.563 142.522 53.422 142.541 53.364 142.347 53.507 142.250 53.393 141.861 53.150 141.842 53.007 141.939 52.863 141.880 52.561 141.842 ; #1252 2 44.018 145.707 43.891 145.513 43.732 145.454 44.001 145.842 44.161 146.018 44.366 146.425 44.509 146.171 ; #1253 2 43.859 146.851 43.700 146.697 43.859 146.892 ; #1254 2 45.467 148.618 45.341 148.424 45.263 148.232 45.279 148.016 45.201 147.822 44.792 147.221 44.635 147.142 44.588 146.948 44.429 146.851 44.556 147.240 44.713 147.396 44.855 147.590 45.028 147.997 45.154 148.192 45.310 148.599 45.310 148.793 45.467 148.871 45.514 148.812 ; #1255 2 45.888 149.842 45.794 149.648 45.638 149.513 45.638 149.708 45.779 149.899 45.919 150.212 46.090 150.387 46.199 150.581 46.214 150.387 46.090 150.171 46.044 150.018 ; #1256 2 46.863 151.822 46.894 152.035 47.048 152.192 47.125 152.229 ; #1257 2 48.830 154.193 48.770 153.996 48.739 153.996 ; #1258 -2 49.296 154.813 49.445 154.813 49.595 154.911 49.460 154.716 49.296 154.619 ; #1259 2 50.161 155.590 50.176 155.784 50.339 155.979 50.635 156.132 50.767 156.035 50.605 155.882 50.458 155.784 50.309 155.377 50.161 155.280 49.998 155.396 ; #1260 2 50.782 156.502 50.812 156.308 50.664 156.251 50.620 156.424 ; #1261 -3 -6.360 140.987 -6.341 141.028 -2.601 141.028 -2.621 141.144 -2.776 141.532 -3.066 142.115 -3.261 142.716 -3.435 143.531 -3.706 143.919 -3.803 144.135 -3.803 144.367 -3.843 144.561 -3.998 144.599 -4.114 144.890 -4.346 145.066 -4.385 145.279 -4.502 145.473 -4.889 145.823 -5.277 145.783 -5.470 145.842 -5.490 146.037 -5.606 146.425 -5.818 146.813 -5.838 146.929 -5.973 147.124 -5.953 147.318 -5.992 147.512 -6.341 147.841 -6.534 147.863 -6.727 147.765 -6.766 147.571 -6.727 147.183 -6.747 146.989 -6.882 146.970 -7.075 147.086 -7.461 147.221 -7.558 147.415 -7.944 147.803 -8.002 147.997 -8.060 148.038 -8.137 148.173 -8.580 148.270 -8.715 148.483 -8.908 148.542 -9.100 148.715 -9.004 149.125 -9.120 149.319 -9.312 149.241 -9.505 149.279 -9.601 149.473 -9.639 150.018 -9.736 150.018 -9.813 149.764 -10.005 149.880 -10.082 150.018 -10.274 150.657 -10.255 150.873 -10.409 150.463 -10.601 150.619 -10.697 150.425 -10.697 150.212 -10.563 150.018 -10.524 150.018 -10.466 150.096 -10.332 149.708 -10.370 149.551 -10.255 149.163 -10.274 148.968 -10.140 148.774 -10.178 148.580 -10.178 148.367 -10.082 148.173 -10.159 147.997 -10.005 147.687 -9.909 147.571 -9.716 147.474 -9.524 147.299 -9.447 147.064 -9.254 146.910 -9.062 147.008 -9.024 146.989 -9.062 146.794 -8.985 146.600 -8.792 146.579 -8.600 146.406 -8.368 146.290 -8.214 146.171 -8.041 145.977 -7.925 145.764 -7.944 145.570 -7.770 144.871 -7.577 144.871 -7.655 144.755 -7.519 144.561 -7.519 144.424 -7.674 144.464 -7.674 144.367 -7.635 144.289 -7.732 144.251 -7.770 144.192 -7.751 144.076 -7.655 143.881 -7.442 143.668 -7.597 143.784 -8.002 143.960 -8.041 143.765 -8.002 143.571 -7.944 143.455 -8.137 143.609 -8.253 143.531 -8.330 142.948 -8.272 142.754 -8.195 142.366 -8.176 142.347 -8.233 142.153 -8.195 142.366 -8.330 142.541 -8.349 142.560 -8.330 142.754 -8.484 143.142 -8.677 143.337 -8.850 143.415 -9.043 143.261 -9.100 143.045 -9.332 142.657 -9.158 142.231 -9.235 141.629 -9.158 141.435 -9.235 141.222 -9.120 141.028 -6.901 141.028 -6.708 140.871 -6.553 140.931 ; #1262 -3 -8.233 142.153 -8.176 142.347 -8.195 142.366 ; #1263 3 76.656 148.737 76.656 149.144 76.749 149.298 76.758 149.103 76.730 148.677 76.684 148.502 76.637 148.424 ; #1264 -2 72.584 144.987 72.563 145.338 72.430 146.347 72.389 146.560 72.326 146.754 72.347 146.560 72.347 145.745 72.358 145.338 72.410 145.144 72.430 144.950 72.389 144.755 ; #1265 2 -7.268 157.066 -7.423 157.454 -7.017 157.144 -6.611 156.561 -6.805 156.561 -7.114 156.871 ; #1266 2 -7.713 156.793 -7.751 156.599 -7.944 156.715 ; #1267 2 -8.079 157.222 -7.886 157.163 -8.021 156.969 -8.156 157.163 ; #1268 2 -8.484 157.435 -8.542 157.241 -8.677 157.357 ; #1269 -2 -8.368 157.861 -8.233 157.667 -8.041 157.629 -8.021 157.416 -8.214 157.260 -8.388 157.648 -8.580 157.805 ; #1270 2 -8.715 158.096 -8.522 158.115 -8.580 157.921 -8.773 158.018 ; #1271 2 -8.407 159.706 -8.561 159.919 -8.368 159.822 -8.176 159.647 -7.983 159.415 -7.944 159.221 -7.848 159.027 -7.674 158.832 -7.577 158.638 -7.770 158.619 -8.118 159.124 ; #1272 2 -9.312 159.822 -9.312 159.628 -9.505 159.647 -9.697 159.744 -9.832 160.016 -9.813 160.211 -9.928 160.618 -9.890 160.812 -9.697 160.677 -9.505 160.483 -9.428 160.289 -9.447 160.016 ; #1273 2 -11.656 160.211 -11.790 160.405 -11.809 160.599 -11.656 160.405 -11.464 160.016 -11.579 160.016 ; #1274 2 -9.505 161.279 -9.120 161.241 -8.927 161.144 -8.734 160.969 -8.542 160.950 -8.349 160.793 -8.330 160.599 -8.522 160.737 -8.715 160.696 -9.158 160.890 ; #1275 2 -9.601 161.570 -9.409 161.395 -9.601 161.414 -9.793 161.570 ; #1276 2 -10.812 162.250 -10.620 162.231 -10.486 162.037 -10.447 161.842 -10.217 161.454 -10.409 161.513 -10.620 161.629 -10.755 161.861 ; #1277 2 -20.862 164.483 -20.955 164.677 -21.085 164.812 -21.289 164.950 -21.382 165.144 -21.568 165.298 -21.623 165.492 -21.679 165.511 -21.771 165.708 -21.753 165.764 -21.938 165.958 -21.975 166.153 -22.160 166.250 -22.179 166.444 -22.382 166.754 -22.401 166.948 -22.216 167.027 -22.030 166.870 -21.938 166.676 -21.716 166.444 -21.456 166.056 -21.419 165.861 -21.364 165.842 -21.289 165.648 -21.103 165.454 -20.768 165.241 -20.694 165.006 -20.266 164.424 -20.266 164.211 -20.117 164.016 -20.322 164.173 -20.508 164.192 -20.694 164.367 ; #1278 2 -10.678 166.115 -10.678 165.921 -10.870 165.899 ; #1279 2 -14.938 167.008 -15.052 166.813 -14.862 166.754 -14.691 166.560 -14.881 166.560 -15.261 166.676 -15.450 166.676 -15.620 166.870 -15.602 167.064 -15.507 167.259 -15.317 167.221 -15.128 167.124 ; #1280 2 -20.992 167.415 -20.807 167.299 -20.713 167.105 -21.085 167.183 -21.177 167.377 ; #1281 2 -16.511 167.706 -16.322 167.744 -16.170 167.550 -15.981 167.377 -16.019 167.183 -16.189 167.377 -16.567 167.474 -16.586 167.512 ; #1282 2 -21.475 168.154 -21.364 167.957 -21.568 167.900 -21.660 168.016 ; #1283 2 -16.170 168.230 -16.189 168.035 -16.360 168.173 ; #1284 2 -15.393 168.192 -15.203 168.211 -15.014 168.114 -15.393 168.154 ; #1285 2 -15.811 168.270 -15.620 168.154 -16.000 168.230 ; #1286 2 -16.605 168.173 -16.813 168.289 -16.851 168.483 ; #1287 2 -17.717 168.599 -17.548 168.405 -17.642 168.211 -17.831 168.405 ; #1288 2 -18.957 169.219 -18.770 169.298 -18.620 169.085 -18.826 169.028 ; #1289 -5 51.193 156.737 51.340 156.542 51.487 156.502 51.793 156.521 52.083 156.483 52.373 156.367 52.532 156.424 52.633 156.229 52.791 156.154 53.806 155.960 54.088 155.882 54.230 155.803 54.806 155.668 54.946 155.609 55.378 155.571 55.656 155.650 55.918 155.668 56.618 155.960 56.890 156.308 56.999 156.521 57.053 156.715 57.460 157.006 57.608 156.969 57.742 156.774 57.836 156.969 57.769 157.163 57.783 157.376 57.850 157.513 57.877 157.570 58.024 157.686 57.984 157.880 57.984 158.074 58.050 158.287 58.265 158.676 58.424 159.086 58.677 159.453 58.954 159.784 59.087 159.822 59.402 160.405 59.533 160.502 59.624 160.890 59.859 161.279 60.002 161.435 60.171 161.842 60.300 161.940 60.443 161.996 60.648 162.773 60.776 162.967 60.803 163.377 60.931 163.766 61.058 163.571 61.289 163.960 61.415 163.998 61.504 163.803 61.644 163.882 61.733 164.076 61.997 164.076 62.249 164.114 62.436 164.521 62.474 164.715 62.424 164.909 62.424 165.122 62.349 165.319 62.474 165.260 62.449 165.667 62.486 165.454 62.511 165.066 62.698 164.464 62.598 163.647 62.561 163.453 62.486 163.240 62.349 163.377 62.299 163.161 62.173 163.124 62.034 163.143 61.783 163.008 61.758 163.202 61.618 163.183 61.555 162.967 61.695 162.929 61.605 162.716 61.669 162.522 61.796 162.482 61.921 162.347 61.984 162.541 62.034 162.560 62.122 162.366 62.249 162.425 62.274 162.600 62.386 162.795 62.635 162.795 62.685 162.851 62.747 162.638 62.996 162.309 63.033 162.347 63.132 162.541 63.181 162.754 63.329 162.754 63.365 162.697 63.427 162.892 63.550 162.989 63.685 162.870 63.770 162.754 63.905 162.892 64.026 162.911 64.123 162.813 64.196 163.008 64.208 163.202 64.414 163.415 64.534 163.221 64.655 163.240 64.775 163.161 64.643 163.027 64.655 162.832 64.727 162.638 64.763 162.250 64.823 161.842 64.943 161.745 65.050 161.551 65.074 161.414 65.146 161.219 65.170 161.028 65.146 160.618 65.170 160.521 65.526 160.016 65.526 159.841 65.597 159.647 65.727 159.027 65.751 158.929 65.880 158.948 66.115 159.183 66.232 159.202 66.302 158.754 66.360 158.541 66.384 158.503 66.500 158.503 66.733 158.773 66.756 158.851 66.872 158.892 66.987 158.813 67.079 158.619 67.113 158.406 67.251 158.018 67.354 157.805 67.468 157.764 67.503 157.783 67.617 157.745 67.731 157.940 67.719 158.134 67.776 158.328 67.833 158.287 67.844 158.074 67.957 158.212 68.081 158.287 68.126 158.484 68.160 158.989 68.283 160.016 68.272 160.639 68.296 160.871 68.385 161.260 68.408 161.473 68.352 162.096 68.329 162.288 68.340 162.503 68.452 162.619 68.564 162.697 68.642 162.716 68.754 162.619 68.832 162.813 68.954 162.697 68.998 162.560 69.109 162.522 69.164 162.716 69.274 162.657 69.505 162.366 69.582 162.385 69.670 162.444 69.680 162.522 69.659 162.716 69.713 163.356 69.680 163.550 69.691 163.744 69.746 163.960 69.724 164.154 69.648 164.348 69.604 164.561 69.582 164.950 69.593 165.667 69.571 165.880 69.516 166.074 69.516 166.676 69.494 166.892 69.604 167.299 69.767 167.706 69.735 167.900 69.615 168.035 69.561 168.251 69.330 168.251 69.219 168.405 69.197 168.812 69.098 169.219 69.010 169.435 68.887 169.454 68.776 169.608 68.810 170.425 68.754 170.638 68.876 170.522 68.810 170.735 68.943 170.735 69.032 171.143 69.142 170.989 69.263 170.948 69.604 170.579 69.593 170.385 69.670 170.190 69.779 170.579 70.137 170.522 70.105 170.716 70.051 171.531 69.996 171.938 69.964 172.658 69.899 172.853 69.866 173.066 69.779 173.260 69.844 173.473 69.931 173.279 69.953 173.473 69.855 173.880 69.877 174.288 69.855 174.503 69.844 175.337 69.888 175.550 69.899 175.957 69.877 176.173 69.767 176.367 69.735 176.561 69.670 176.756 69.637 176.969 69.615 177.357 69.461 178.172 69.472 178.366 69.450 178.579 69.407 178.773 69.319 178.989 69.274 178.792 69.274 179.202 69.131 179.628 69.021 179.803 69.076 179.609 68.987 179.803 68.976 -179.983 68.909 -179.633 68.920 -179.420 68.810 -179.304 68.765 -178.896 68.687 -178.702 68.586 -178.508 68.631 -178.721 68.519 -178.605 68.497 -178.392 68.419 -178.004 68.296 -177.888 68.340 -177.691 68.531 -178.295 68.283 -177.478 68.272 -177.691 68.182 -177.615 68.250 -177.421 68.205 -177.208 67.765 -175.614 67.651 -175.304 67.457 -175.188 67.343 -175.341 67.354 -175.147 67.434 -174.934 67.320 -174.759 67.205 -174.896 67.079 -174.934 66.848 -174.740 66.733 -174.856 66.604 -174.837 66.581 -174.643 66.349 -174.373 66.465 -174.176 66.442 -173.963 66.326 -174.023 66.209 -174.004 66.395 -173.769 66.512 -173.907 66.581 -174.273 66.639 -174.082 66.756 -173.985 66.872 -174.041 66.998 -174.157 67.090 -174.565 67.102 -173.537 67.056 -173.130 66.952 -173.324 66.837 -173.324 66.860 -173.130 66.987 -173.186 66.929 -172.992 66.906 -172.798 66.975 -172.604 66.998 -172.798 67.056 -173.014 67.033 -172.663 66.998 -172.469 67.010 -172.663 66.964 -172.275 66.952 -171.867 66.929 -171.673 66.814 -171.614 66.710 -171.420 66.546 -171.012 66.488 -170.799 66.384 -170.605 66.314 -170.411 66.232 -170.605 66.302 -170.411 66.256 -170.198 66.139 -170.179 66.151 -169.985 66.186 -169.985 66.115 -169.672 65.986 -169.769 66.033 -169.985 66.021 -170.101 65.951 -170.314 65.833 -170.508 65.716 -170.508 65.609 -170.605 65.620 -170.799 65.739 -171.207 65.763 -171.401 65.644 -171.207 65.597 -171.012 65.479 -171.091 65.526 -171.304 65.514 -171.692 65.526 -171.905 65.561 -172.099 65.550 -172.312 65.668 -172.410 65.704 -172.625 65.680 -172.820 65.550 -172.410 65.432 -172.334 65.479 -172.140 65.348 -172.237 65.229 -172.215 65.264 -172.312 65.217 -172.507 65.217 -172.294 65.098 -172.118 64.979 -172.294 64.919 -172.488 64.871 -172.898 64.787 -173.089 64.835 -172.898 64.715 -172.838 64.655 -173.033 64.631 -172.820 64.546 -172.431 64.426 -172.275 64.402 -172.488 64.402 -172.876 64.281 -172.973 64.257 -173.167 64.366 -173.402 64.486 -173.283 64.619 -173.381 64.522 -173.343 64.402 -173.440 64.342 -173.634 64.438 -174.060 64.571 -174.138 64.655 -174.254 64.667 -174.430 64.775 -174.837 64.787 -175.244 64.931 -175.654 65.027 -175.849 65.146 -175.751 65.278 -175.886 65.396 -175.905 65.479 -176.099 65.490 -176.312 65.538 -176.507 65.597 -176.917 65.597 -177.111 65.490 -177.518 65.479 -177.712 65.479 -178.333 65.514 -178.546 65.632 -178.468 65.751 -178.527 65.833 -178.721 65.951 -178.856 66.079 -178.662 66.314 -178.468 66.279 -178.683 66.174 -178.878 66.232 -179.072 66.349 -179.072 66.291 -179.266 66.174 -179.244 66.127 -179.460 66.127 -179.654 65.997 -179.789 65.868 -179.770 65.751 -179.614 65.668 -179.401 65.538 -179.285 65.443 -179.498 65.443 -179.692 65.396 -179.983 65.325 -179.983 65.384 -179.770 65.396 -179.576 65.278 -179.517 65.146 -179.633 65.086 -179.827 65.050 179.957 64.847 179.550 64.775 179.162 64.643 178.754 64.619 178.560 64.691 178.754 64.655 178.328 64.703 177.921 64.703 177.727 64.799 177.530 64.919 177.454 64.943 177.260 65.050 177.047 65.074 176.853 65.027 176.637 65.039 176.443 65.003 176.637 65.039 176.831 65.003 177.047 64.907 177.241 64.787 177.201 64.787 177.006 64.847 176.793 64.835 176.599 64.859 176.405 64.919 176.192 64.907 175.979 64.895 176.114 64.799 176.308 64.679 176.405 64.607 176.211 64.667 176.599 64.583 176.793 64.703 177.006 64.775 177.395 64.655 177.473 64.522 177.395 64.402 177.511 64.293 177.727 64.233 177.921 64.269 178.134 64.342 178.328 64.099 178.541 63.978 178.560 63.856 178.716 63.721 178.773 63.599 178.754 63.611 178.560 63.526 178.347 63.575 178.560 63.513 178.754 63.378 178.735 63.513 178.814 63.378 178.948 63.292 178.967 63.169 179.375 63.045 179.299 62.908 179.318 62.871 179.512 62.747 179.609 62.499 179.318 62.449 179.124 62.324 179.162 62.548 177.959 62.573 177.764 62.573 177.551 62.673 177.338 62.797 177.357 62.735 177.163 62.859 177.006 62.685 176.950 62.561 177.122 62.536 176.928 62.536 176.715 62.311 176.308 62.236 175.882 62.135 175.474 62.147 175.259 62.022 175.221 61.934 174.814 61.972 174.619 61.846 174.676 61.808 174.482 61.821 174.328 61.783 174.134 61.695 173.921 61.707 173.727 61.657 173.532 61.403 173.182 61.441 172.969 61.403 172.774 61.276 172.909 61.314 172.715 61.187 172.658 61.212 172.464 61.135 172.270 61.007 172.386 61.020 172.192 60.893 172.114 60.854 172.035 60.829 171.841 60.738 171.628 60.712 171.415 60.572 171.240 60.494 170.832 60.403 170.638 60.262 170.522 60.002 170.425 59.924 170.328 60.107 169.940 60.249 169.940 60.326 169.745 60.469 169.589 60.494 169.473 60.623 169.279 60.572 169.085 60.546 168.696 60.597 168.502 60.584 168.289 60.558 168.076 60.416 167.453 60.352 167.259 60.390 167.064 60.249 166.948 59.846 166.328 59.859 166.134 60.080 166.172 60.210 166.309 60.481 166.231 60.429 166.018 60.313 165.824 60.094 165.222 60.080 165.028 60.002 165.222 59.833 164.987 59.859 164.793 60.002 164.696 60.080 164.580 59.976 164.289 59.872 164.076 60.002 164.114 60.028 164.054 60.054 163.863 60.002 163.669 59.885 163.706 59.872 163.493 59.741 163.377 59.611 163.396 59.559 163.202 59.428 163.318 59.297 163.299 59.270 163.105 59.139 163.086 59.126 162.892 58.994 163.045 58.928 162.851 58.796 162.676 58.704 162.463 58.424 162.153 58.158 161.996 58.010 161.977 57.877 162.115 57.796 162.309 57.756 162.503 57.903 162.503 57.970 162.697 57.836 163.105 57.729 163.299 57.595 163.202 57.352 162.795 57.012 162.832 56.877 162.795 56.741 162.870 56.741 163.064 56.686 163.280 56.550 163.259 56.275 163.356 56.138 163.221 56.028 163.008 56.083 162.813 56.221 162.619 56.358 162.735 56.412 162.948 56.550 163.027 56.467 162.813 56.440 162.619 56.371 162.425 56.234 162.503 56.125 162.172 55.711 161.824 55.558 161.745 55.281 161.764 55.127 161.824 54.848 162.172 54.708 162.056 54.596 161.842 54.525 161.648 54.497 161.435 54.568 161.241 54.582 161.028 54.554 160.834 54.371 160.424 54.130 160.016 53.862 159.882 53.705 159.863 53.563 159.979 53.422 159.882 53.249 160.035 53.107 160.016 53.235 159.706 53.235 159.512 53.107 159.105 52.921 158.716 53.064 158.541 52.921 158.463 52.848 158.657 52.561 158.541 52.417 158.560 52.112 158.328 51.967 158.309 51.677 157.958 51.559 157.764 51.487 157.551 51.457 157.513 51.340 157.395 51.193 157.182 50.900 156.677 51.047 156.755 ; #1290 5 70.932 160.561 70.815 160.502 70.815 160.737 ; #1291 5 58.583 163.609 58.822 164.211 58.862 164.405 58.875 164.618 59.007 164.696 59.139 164.640 59.192 164.445 59.100 164.230 59.047 164.035 59.034 163.841 58.756 163.725 58.624 163.571 58.557 163.415 ; #1292 5 55.336 166.074 55.309 165.861 55.169 166.056 55.016 166.153 54.876 166.328 54.820 166.522 54.680 166.676 54.820 166.657 54.960 166.463 55.099 166.328 55.252 166.250 55.322 166.269 ; #1293 5 54.722 167.647 54.638 167.863 54.525 168.057 54.680 167.882 54.862 167.493 54.862 167.453 ; #1294 5 70.019 168.270 69.996 168.173 69.931 167.957 69.823 167.785 69.691 168.192 69.648 168.386 69.582 168.793 69.571 169.182 69.801 169.454 69.899 169.241 69.909 169.047 69.996 168.464 ; #1295 5 70.953 -179.654 70.899 -179.460 70.910 -179.226 70.975 -178.586 71.017 -178.370 71.049 -177.944 71.081 -177.712 71.166 -177.518 71.282 -177.518 71.324 -177.712 71.483 -178.101 71.545 -178.333 71.598 -178.953 71.556 -179.382 71.566 -179.770 71.451 179.628 71.303 179.240 71.250 179.027 71.049 178.638 70.836 178.814 70.878 179.202 70.889 179.628 70.996 -179.983 ; #1296 5 64.715 -172.450 64.763 -172.256 64.847 -172.469 64.727 -172.663 ; #1297 5 -50.546 166.134 -50.842 165.977 -50.723 166.172 -50.576 166.309 ; #1298 5 -50.871 166.190 -50.900 165.996 -50.900 166.190 ; #1299 5 -44.588 167.841 -44.666 167.647 -44.950 167.434 -44.934 167.221 -45.091 167.064 -45.263 167.027 -45.436 167.161 -45.325 166.948 -45.451 166.754 -45.514 166.967 -45.607 166.754 -45.607 166.967 -45.701 166.773 -45.701 166.967 -45.794 166.579 -45.966 166.482 -45.997 166.503 -45.919 166.698 -46.075 166.600 -46.028 166.795 -46.199 166.698 -46.245 167.240 -46.152 167.453 -46.199 167.647 -46.353 167.744 -46.338 168.057 -46.446 168.308 -46.602 168.346 -46.602 168.580 -46.571 168.737 -46.648 168.950 -46.632 169.298 -46.509 169.705 -46.353 169.802 -46.245 170.018 -45.935 170.366 -45.904 170.579 -45.747 170.638 -45.420 170.832 -45.263 170.870 -44.934 171.161 -44.776 171.202 -44.603 171.183 -44.287 171.356 -44.129 171.628 -43.859 172.367 -43.795 173.144 -43.621 172.969 -43.557 172.774 -43.381 172.715 -43.285 172.756 -43.126 172.890 -43.046 173.085 -42.901 173.317 -42.468 173.570 -42.161 173.959 -42.113 173.959 -41.935 174.093 -41.773 174.269 -41.594 174.190 -41.432 174.056 -41.237 174.231 -41.269 174.037 -41.221 174.018 -41.188 174.212 -41.025 174.269 -41.025 174.056 -41.188 174.018 -41.253 173.824 -41.204 173.880 -41.025 173.824 -40.894 174.018 -41.041 173.608 -41.237 173.317 -41.237 173.122 -41.074 173.047 -40.944 173.085 -40.763 173.025 -40.796 172.831 -40.665 172.696 -40.485 172.853 -40.584 172.658 -40.633 172.464 -40.763 172.251 -40.910 172.132 -41.253 172.151 -41.480 171.998 -41.644 171.822 -41.773 171.493 -42.274 171.318 -42.452 171.221 -42.548 171.161 -42.709 170.967 -42.853 170.851 -42.965 170.638 -43.030 170.444 -43.222 170.212 -43.413 169.824 -43.589 169.629 -43.621 169.414 -43.938 168.853 -44.001 168.464 -44.145 168.270 -44.319 168.114 -44.429 167.919 ; #1300 5 -46.725 168.016 -46.679 167.803 -47.017 167.744 -47.171 167.571 -47.171 167.766 -47.109 168.173 -46.940 168.211 -46.940 168.016 -46.894 167.998 ; #1301 5 -52.445 169.241 -52.546 169.028 -52.474 169.241 ; #1302 5 -36.839 174.676 -36.805 174.754 -36.670 174.773 -36.618 174.814 -36.449 174.795 -36.280 174.832 -36.144 174.657 -35.786 174.366 -35.855 174.560 -35.514 174.503 -35.342 174.385 -35.274 174.190 -35.120 173.996 -35.017 173.802 -34.931 173.589 -34.846 173.201 -34.501 172.950 -34.433 172.715 -34.983 173.163 -35.325 173.219 -35.514 173.357 -35.359 173.551 -35.531 173.395 -36.263 173.996 -36.110 173.996 -36.229 174.190 -36.144 174.406 -36.263 174.482 -36.314 174.269 -36.483 174.444 -36.432 174.250 -36.466 174.212 -36.873 174.463 -37.024 174.851 -37.193 174.735 -37.327 174.795 -37.496 174.773 -37.681 174.832 -37.848 174.795 -38.016 174.814 -38.417 174.638 -38.701 174.638 -38.867 174.541 -38.967 174.347 -39.049 174.056 -39.165 173.843 -39.349 173.783 -39.481 173.861 -39.563 174.056 -39.613 174.269 -39.761 174.463 -39.844 174.657 -39.877 174.911 -40.008 175.086 -40.173 175.221 -40.289 175.259 -40.649 175.202 -40.878 175.046 -41.041 174.892 -41.107 174.911 -41.237 174.695 -41.253 174.814 -41.416 174.911 -41.367 175.161 -41.529 175.221 -41.562 175.415 -41.367 175.841 -41.188 176.017 -40.828 176.289 -40.763 176.308 -40.518 176.561 -40.338 176.677 -40.173 176.853 -39.778 177.047 -39.448 176.890 -39.282 177.006 -39.116 177.220 -39.049 177.454 -39.049 177.764 -39.182 177.959 -39.000 177.899 -38.701 177.959 -38.684 178.093 -38.517 178.309 -38.334 178.366 -37.982 178.385 -37.815 178.425 -37.664 178.560 -37.547 178.172 -37.698 177.745 -37.915 177.570 -37.982 177.376 -37.999 177.122 -37.732 176.405 -37.681 176.173 -37.597 175.998 -37.428 175.979 -37.244 175.901 -37.075 175.919 -36.889 175.860 -36.737 175.669 -36.636 175.474 -36.805 175.453 -37.160 175.550 -37.176 175.356 -36.923 175.143 -36.889 174.948 ; #1303 5 -36.059 175.396 -36.229 175.512 -36.042 175.415 ; #1304 5 -17.492 177.589 -17.869 177.279 -18.056 177.317 -18.170 177.511 -18.150 177.551 -18.264 177.940 -18.245 178.134 -18.094 178.522 -18.112 178.579 -17.906 178.619 -17.717 178.600 -17.342 178.288 -17.398 177.783 ; #1305 5 -19.051 178.231 -18.938 178.425 -18.976 178.231 -19.164 178.115 ; #1306 5 -16.189 179.919 -16.208 179.744 -16.284 179.550 -16.416 179.356 -16.473 178.967 -16.624 178.773 -16.624 178.579 -17.002 178.735 -16.851 178.930 -16.813 179.124 -16.813 179.512 -16.699 179.919 -16.511 179.901 -16.661 179.706 -16.718 179.512 -16.529 179.628 -16.264 179.919 -16.132 -179.946 ; #1307 4 -21.177 -175.128 -21.159 -175.323 -21.270 -175.128 ; #1308 3 52.848 173.414 52.992 173.025 53.007 172.831 52.921 172.637 52.891 172.831 52.748 172.950 ; #1309 3 52.489 173.686 52.388 173.473 52.344 173.686 ; #1310 3 51.895 177.376 51.953 177.589 52.098 177.589 51.967 177.395 51.822 177.338 ; #1311 -3 51.384 179.453 51.413 179.259 51.618 178.870 51.618 178.676 51.574 178.870 51.472 179.083 51.340 179.278 ; #1312 3 51.691 -177.788 51.837 -177.731 51.924 -177.925 51.837 -178.120 51.735 -177.925 51.589 -177.888 ; #1313 3 51.677 -177.302 51.793 -177.111 51.938 -177.149 51.793 -177.227 51.750 -177.421 51.706 -177.499 ; #1314 3 51.603 -176.760 51.691 -176.566 51.982 -176.528 51.880 -176.722 51.735 -176.857 51.589 -176.917 ; #1315 3 52.098 -174.683 52.112 -174.878 52.025 -175.072 52.011 -175.266 51.996 -175.072 52.040 -174.878 52.069 -174.468 52.112 -174.273 52.112 -174.060 52.258 -174.023 52.402 -174.120 52.344 -174.314 52.200 -174.333 52.127 -174.527 ; #1316 3 52.040 -173.459 52.098 -173.070 52.098 -173.459 52.127 -173.672 52.054 -173.866 52.054 -173.672 52.011 -173.478 ; #1317 -2 60.390 -172.372 60.403 -172.566 60.469 -172.779 60.572 -172.973 60.443 -172.857 60.352 -172.663 60.339 -172.450 60.300 -172.256 ; #1318 4 -13.511 -172.722 -13.700 -172.585 -13.796 -172.391 -13.796 -172.178 -13.586 -172.178 -13.472 -172.372 -13.511 -172.566 ; #1319 4 -13.986 -171.420 -13.872 -171.614 -13.815 -171.808 -13.929 -172.021 -14.005 -171.808 -14.062 -171.420 ; #1320 2 63.439 -170.934 63.390 -170.527 63.316 -170.333 63.193 -170.179 63.156 -169.985 63.156 -169.944 63.082 -169.750 63.058 -169.537 63.156 -169.343 63.193 -168.760 63.316 -168.798 63.341 -168.992 63.316 -169.186 63.353 -169.381 63.427 -169.596 63.501 -170.041 63.624 -170.138 63.685 -170.333 63.672 -170.527 63.575 -170.915 63.611 -171.109 63.611 -171.323 63.672 -171.517 63.770 -171.711 63.513 -171.827 63.390 -171.730 63.341 -171.538 63.341 -171.344 63.402 -171.128 63.427 -170.934 63.365 -170.527 ; #1321 3 52.877 -169.769 52.834 -169.985 52.805 -169.985 ; #1322 2 56.604 -169.556 56.604 -169.750 56.536 -169.556 ; #1323 -2 53.264 -168.178 53.121 -168.372 53.021 -168.566 52.921 -168.779 52.863 -168.973 53.007 -168.838 53.150 -168.779 53.264 -168.566 53.249 -168.372 53.393 -168.391 53.535 -168.196 53.578 -167.905 53.592 -167.808 53.378 -167.808 53.349 -167.905 ; #1324 -2 65.080 -83.347 64.961 -83.212 64.912 -83.017 64.781 -82.746 64.733 -82.532 64.757 -82.338 64.685 -82.143 64.480 -81.736 64.360 -81.736 64.117 -81.639 63.996 -81.813 64.020 -81.619 64.081 -81.406 63.996 -81.017 64.093 -80.804 63.996 -80.610 63.874 -80.648 63.849 -80.454 63.727 -80.299 63.691 -80.493 63.445 -81.076 63.556 -81.483 63.617 -81.872 63.691 -82.066 63.666 -82.279 63.678 -82.474 63.923 -82.415 63.971 -82.823 64.056 -83.037 64.177 -83.037 64.117 -83.231 64.117 -83.444 64.020 -83.639 63.899 -83.600 63.776 -83.697 63.703 -83.891 63.593 -84.085 63.593 -84.279 63.470 -84.435 63.347 -84.532 63.187 -84.920 63.138 -85.134 63.113 -85.328 63.125 -85.522 63.261 -85.619 63.384 -85.639 63.630 -85.580 63.764 -85.697 63.703 -85.775 63.691 -85.988 63.642 -86.182 63.666 -86.590 63.568 -86.784 63.544 -86.978 63.593 -87.192 63.715 -87.173 63.849 -86.978 63.947 -86.784 64.044 -86.396 64.153 -86.202 64.287 -86.338 64.649 -86.338 64.900 -86.144 65.021 -86.202 65.140 -86.124 65.259 -86.163 65.508 -86.085 65.745 -85.949 65.851 -85.755 65.921 -85.561 65.721 -85.173 65.603 -85.037 65.485 -85.192 65.390 -84.998 65.270 -84.940 65.307 -84.746 65.437 -84.629 65.354 -84.221 65.223 -84.144 65.164 -83.755 65.152 -83.541 ; #1325 3 -7.504 73.008 -7.401 73.008 -7.247 72.874 -7.447 72.905 ; #1326 -3 27.311 88.930 27.383 88.971 27.419 88.971 27.599 89.143 27.850 89.359 28.066 89.532 28.084 89.553 28.156 89.629 28.317 90.017 28.317 90.133 28.264 90.327 28.084 90.368 28.066 90.484 28.066 90.581 28.030 90.969 27.976 91.029 27.976 91.048 28.084 91.242 27.994 91.455 27.994 91.493 27.940 91.687 27.761 91.668 27.581 91.630 27.490 91.687 27.454 91.922 27.329 92.116 27.166 92.038 26.914 92.135 26.860 92.094 26.805 91.900 26.805 91.727 26.878 91.493 26.769 91.299 26.824 91.104 26.787 90.988 26.787 90.969 26.769 90.775 26.842 90.503 26.860 90.309 26.733 90.114 26.733 89.901 26.715 89.864 26.697 89.845 26.769 89.650 26.787 89.610 26.860 89.378 26.824 89.241 26.932 89.046 26.968 88.893 27.148 88.777 ; #1327 -2 57.648 27.417 57.783 27.534 57.823 27.611 57.836 27.670 58.010 27.689 58.010 27.670 58.278 27.475 58.424 27.553 58.464 27.534 58.730 27.456 58.875 27.495 58.941 27.611 58.994 27.747 59.165 27.864 59.270 27.883 59.297 28.096 59.349 28.194 59.388 28.194 59.428 28.116 59.481 28.019 59.611 28.077 59.741 28.019 59.728 28.213 59.676 28.407 59.807 28.446 59.820 28.640 59.781 28.834 59.859 29.029 60.002 29.184 59.872 30.213 59.911 30.232 60.002 30.174 60.015 30.019 60.145 29.883 60.197 29.689 60.184 29.475 60.184 29.067 60.377 28.640 60.507 28.504 60.456 28.699 60.584 28.679 60.700 28.737 60.738 28.679 60.572 28.271 60.520 28.058 60.546 27.825 60.597 27.903 60.738 28.155 60.854 28.349 60.944 28.504 60.956 28.543 60.956 28.601 61.109 28.854 61.109 28.873 61.301 29.301 61.479 29.534 61.491 29.553 61.504 29.630 61.733 30.019 61.783 30.058 61.859 30.174 62.160 30.640 62.311 30.951 62.536 31.301 62.908 31.592 62.984 31.534 63.095 31.320 63.218 31.242 63.292 31.029 63.402 30.815 63.452 30.601 63.550 30.407 63.611 30.213 63.672 30.116 63.745 30.000 63.770 30.116 63.794 30.213 64.038 30.582 64.123 30.601 64.245 30.563 64.317 30.368 64.354 30.174 64.498 30.058 64.522 30.019 64.546 30.000 64.595 30.019 64.691 30.213 64.799 30.019 64.787 29.883 64.883 29.689 65.003 29.611 65.098 29.805 65.217 29.864 65.217 29.670 65.337 29.747 65.657 29.805 65.680 30.019 65.668 30.136 65.798 30.116 65.962 30.019 66.079 29.941 66.372 29.611 66.442 29.572 66.627 29.398 66.860 29.087 66.952 29.087 67.308 29.553 67.411 29.747 67.514 29.961 67.674 30.019 67.708 30.019 67.855 29.650 67.980 29.495 68.092 29.301 68.160 28.873 68.239 28.679 68.486 28.504 68.508 28.485 68.531 28.465 68.765 28.776 68.876 28.679 68.876 28.485 68.887 28.446 68.887 28.485 69.010 29.029 69.010 29.106 69.120 29.320 69.308 29.398 69.319 29.611 69.363 29.805 69.396 30.019 69.604 30.252 69.615 30.252 69.648 30.232 69.648 30.252 69.571 30.446 69.539 30.660 69.539 30.854 69.648 30.951 69.757 30.893 69.801 30.873 69.724 31.398 69.615 31.301 69.691 31.514 69.735 31.708 69.844 31.883 69.823 32.077 69.942 31.922 69.931 32.116 69.877 32.330 69.801 32.524 69.779 32.932 69.702 33.126 69.593 32.932 69.637 32.330 69.746 32.135 69.637 32.019 69.539 32.407 69.450 32.368 69.494 32.582 69.407 32.776 69.418 32.990 69.308 32.893 69.396 33.087 69.429 33.281 69.352 33.475 69.263 33.281 69.274 33.494 69.164 33.436 69.098 33.242 69.065 33.048 68.954 33.029 69.065 33.184 69.098 33.378 69.197 33.592 69.308 33.592 69.330 33.980 69.308 34.407 69.230 34.796 69.208 35.009 69.263 35.223 69.252 35.436 69.197 35.844 69.131 36.058 69.109 36.252 69.032 36.446 69.010 36.640 68.810 37.242 68.710 37.630 68.642 37.844 68.352 38.446 68.385 38.640 68.104 39.456 68.059 39.650 68.137 39.863 68.014 40.019 67.912 40.310 67.787 40.407 67.810 40.621 67.719 40.815 67.708 41.009 67.468 41.067 67.354 41.145 67.228 41.300 67.113 41.397 66.998 41.300 66.941 41.320 66.825 41.203 66.395 40.407 66.349 40.213 66.267 40.019 66.197 39.572 66.139 39.378 66.104 39.164 66.104 38.970 66.044 38.562 66.079 37.941 66.151 37.514 66.221 37.320 66.256 37.126 66.302 36.407 66.407 35.417 66.604 34.873 66.558 34.679 66.639 34.465 66.674 34.271 66.697 33.863 66.802 33.669 66.733 33.456 66.791 33.261 66.975 32.873 67.090 32.834 67.125 32.640 67.148 32.155 67.125 31.941 67.125 32.213 67.056 32.349 66.998 32.563 66.883 32.485 66.825 32.699 66.710 32.873 66.686 33.068 66.627 33.261 66.581 32.873 66.570 33.087 66.593 33.203 66.535 33.397 66.558 33.184 66.512 33.009 66.535 33.223 66.372 33.630 66.349 33.533 66.314 33.320 66.302 33.689 66.232 33.883 66.244 34.077 66.162 34.291 66.115 34.485 66.021 34.679 65.904 34.699 65.821 34.912 65.704 34.893 65.798 34.699 65.561 34.757 65.443 34.621 65.360 34.427 65.253 34.621 65.003 34.757 64.979 34.718 64.871 34.912 64.751 34.815 64.775 35.009 64.655 34.951 64.534 34.834 64.438 35.009 64.317 35.417 64.342 35.805 64.221 35.980 64.196 36.174 64.075 36.271 63.978 36.466 63.929 36.737 63.929 36.931 63.893 37.145 63.806 37.359 63.819 37.553 63.917 37.766 63.941 37.999 64.062 38.097 64.184 37.980 64.305 38.019 64.378 37.825 64.366 37.417 64.390 37.223 64.739 36.660 64.859 36.504 65.003 36.854 65.122 36.873 65.205 37.087 65.063 37.669 64.883 37.961 64.847 38.174 64.859 38.368 64.775 38.155 64.655 38.077 64.727 38.271 64.739 38.485 64.775 38.679 64.751 38.873 64.655 39.281 64.583 39.475 64.558 39.689 64.631 40.019 64.558 40.213 64.534 40.524 64.558 40.543 64.691 40.446 64.811 40.446 64.931 40.388 65.003 40.291 65.086 40.096 65.420 39.708 65.538 39.766 65.644 39.960 65.774 40.407 65.986 40.795 65.997 41.009 66.033 41.203 66.079 41.397 66.256 41.805 66.500 42.135 66.512 42.349 66.477 42.543 66.395 42.757 66.430 43.164 66.326 43.553 66.209 43.650 66.151 43.456 66.033 43.378 66.151 43.592 66.174 43.805 66.115 43.999 65.986 44.057 65.857 44.193 65.974 44.135 66.104 44.155 66.221 44.096 66.337 44.155 66.488 44.349 66.733 44.426 66.848 44.504 66.975 44.465 67.090 44.368 67.159 44.174 67.205 43.786 67.331 43.766 67.446 43.844 67.685 44.077 67.799 44.135 67.923 44.271 68.036 44.291 68.149 44.213 68.272 44.252 68.329 44.174 68.408 43.960 68.452 43.766 68.597 43.358 68.653 43.572 68.620 43.766 68.553 43.960 68.531 44.174 68.575 44.970 68.564 45.417 68.464 46.019 68.340 46.038 68.239 46.232 68.182 46.426 68.070 46.562 67.833 46.737 67.821 46.329 67.753 45.514 67.708 45.320 67.594 45.320 67.560 45.126 67.514 45.009 67.388 44.931 67.320 45.009 67.171 45.630 67.044 45.688 66.929 45.805 66.825 46.057 66.860 46.465 66.744 46.388 66.814 46.582 66.917 47.397 66.883 47.591 67.010 47.747 67.240 47.805 67.366 47.824 67.480 47.941 67.594 47.863 67.651 48.057 67.674 48.252 67.662 48.465 67.708 48.679 67.696 48.873 67.628 49.067 67.731 48.873 67.844 48.795 67.867 49.203 67.968 49.611 68.092 49.999 68.047 50.019 68.160 50.213 68.283 50.620 68.363 50.815 68.352 51.009 68.374 51.222 68.486 51.630 68.497 51.824 68.575 52.232 68.464 52.310 68.340 52.213 68.340 52.407 68.408 52.601 68.631 52.659 68.597 52.465 68.710 52.640 68.887 53.339 68.965 53.766 68.998 54.174 68.998 54.387 68.943 54.174 68.931 53.766 68.876 53.960 68.642 53.727 68.531 53.883 68.419 53.941 68.374 53.747 68.352 53.339 68.250 53.261 68.250 53.650 68.239 53.844 68.216 53.922 68.250 54.116 68.205 54.232 68.272 54.426 68.171 54.834 68.283 54.931 68.396 54.951 68.430 55.009 68.553 55.417 68.597 55.824 68.653 56.018 68.609 56.232 68.631 56.620 68.542 57.009 68.553 57.222 68.586 57.417 68.699 57.572 68.765 57.980 68.876 58.154 68.765 58.329 68.876 58.290 68.943 58.485 68.976 58.698 68.998 58.892 68.998 59.106 68.931 58.892 68.909 59.106 68.832 59.300 68.710 59.436 68.710 59.242 68.586 59.067 68.475 59.087 68.385 59.300 68.352 59.494 68.340 59.708 68.396 59.902 68.519 59.960 68.631 59.766 68.710 59.980 68.687 60.213 68.710 60.426 68.765 60.640 68.876 60.795 68.998 60.950 69.109 60.931 69.098 60.717 69.330 60.523 69.439 60.349 69.561 60.232 69.670 60.290 69.670 60.504 69.724 60.698 69.834 60.756 69.855 60.970 69.779 61.572 69.746 61.980 69.746 62.407 69.691 63.222 69.516 64.271 69.352 64.853 69.241 64.795 69.153 64.853 68.976 64.543 68.898 64.543 68.854 64.737 68.876 64.931 68.810 65.125 68.799 65.319 68.754 65.339 68.642 65.475 68.542 65.669 68.430 65.494 68.307 65.378 68.182 65.300 67.957 65.397 67.934 65.591 67.934 66.096 67.821 66.038 67.708 66.232 67.628 65.824 67.560 65.902 67.468 66.116 67.388 65.921 67.388 65.708 67.285 65.591 67.148 65.183 67.021 65.086 66.929 65.125 66.872 64.970 66.825 64.814 66.802 64.620 66.662 64.212 66.651 64.018 66.651 63.980 66.535 63.785 66.430 63.397 66.314 63.261 66.244 63.242 66.209 63.028 66.091 62.931 65.974 62.892 65.868 62.814 65.857 62.621 65.716 62.038 65.692 61.863 65.585 61.708 65.490 61.514 65.372 61.378 65.253 61.300 65.170 61.125 65.050 61.009 65.027 60.795 64.907 60.678 65.063 60.407 65.074 60.213 64.979 60.018 64.799 59.688 64.679 59.708 64.474 59.514 64.354 59.649 64.233 59.611 64.099 59.863 63.978 59.708 63.843 59.591 63.721 59.514 63.599 59.514 63.353 59.339 63.132 59.319 62.996 59.261 62.933 59.455 62.859 59.475 62.735 59.397 62.598 59.475 62.474 59.649 62.374 59.611 62.122 59.416 61.997 59.494 61.808 59.339 61.682 59.358 61.632 59.145 61.593 59.087 61.504 58.698 61.504 57.319 61.479 57.125 61.504 56.912 61.517 56.776 61.390 56.368 61.212 56.193 61.238 55.980 61.225 55.824 61.084 55.669 61.109 55.456 61.007 55.067 60.880 55.009 60.867 54.931 60.893 54.718 60.982 53.863 60.854 53.766 60.867 53.553 60.918 53.358 61.046 53.281 61.084 52.892 60.956 52.718 60.969 52.426 60.841 52.310 60.854 52.116 60.867 52.077 60.816 51.883 60.712 51.824 60.572 51.941 60.339 52.349 60.313 52.349 60.236 52.310 60.313 52.096 60.249 51.922 60.119 51.824 60.002 51.630 59.976 51.591 60.002 51.378 60.054 51.203 60.002 51.009 59.924 50.892 59.872 50.698 59.768 50.096 59.781 50.019 59.676 50.019 59.559 49.824 59.283 49.824 59.218 49.766 59.231 49.572 59.362 49.553 59.415 49.358 59.481 49.261 59.481 49.048 59.585 49.067 59.585 49.086 59.663 49.086 59.663 48.951 59.689 48.718 59.702 48.601 59.859 48.504 60.002 48.504 60.132 48.465 60.274 48.621 60.403 48.698 60.403 48.601 60.443 48.621 60.674 48.523 60.816 48.446 60.854 48.426 60.880 48.038 61.020 47.844 61.058 47.553 61.058 47.397 61.033 47.203 60.854 47.048 60.829 47.086 60.816 47.106 60.687 47.009 60.674 47.009 60.648 46.970 60.313 46.815 60.274 46.621 60.262 46.407 60.132 46.388 60.107 46.426 60.067 46.621 60.067 46.815 60.119 47.028 60.015 47.009 60.002 47.009 59.859 46.951 59.755 47.145 59.611 47.125 59.481 47.086 59.336 47.261 59.205 47.281 59.152 47.455 59.007 47.572 58.915 47.358 58.783 47.300 58.783 47.145 58.651 47.028 58.583 46.834 58.570 46.621 58.531 46.601 58.398 46.562 58.385 46.524 58.345 46.485 58.331 46.465 58.145 46.349 58.077 46.349 58.037 46.407 58.024 46.718 58.024 47.320 57.984 47.475 57.957 47.669 57.689 47.533 57.675 47.553 57.648 47.553 57.527 47.417 57.541 47.222 57.487 47.028 57.500 47.009 57.527 46.815 57.487 46.776 57.352 46.679 57.217 46.853 57.189 46.737 57.053 46.776 56.972 46.718 56.931 46.893 56.917 47.048 56.836 47.242 56.877 47.455 56.877 47.514 57.012 47.708 56.999 47.883 56.999 48.135 57.134 48.271 57.162 48.310 57.134 48.504 57.176 48.698 57.080 48.893 57.107 48.989 57.230 49.184 57.176 49.145 57.039 49.339 57.067 49.727 56.890 49.805 56.863 50.019 56.727 50.096 56.618 50.077 56.645 50.291 56.618 50.485 56.494 50.524 56.467 50.524 56.330 50.718 56.344 50.795 56.289 50.912 56.207 50.970 56.193 50.989 56.138 51.203 56.070 51.339 56.138 51.455 56.152 51.650 55.986 51.417 55.918 51.455 55.959 51.650 55.918 51.844 55.959 52.018 55.945 52.232 56.083 52.213 56.070 52.310 56.042 52.504 56.056 52.562 56.111 52.756 56.221 52.737 56.234 52.659 56.371 52.756 56.412 52.912 56.453 52.970 56.467 52.970 56.494 52.873 56.509 52.892 56.509 52.951 56.536 52.951 56.536 53.028 56.523 53.028 56.523 53.048 56.385 52.970 56.248 52.970 56.193 53.009 56.111 53.203 56.234 53.281 56.262 53.475 56.125 53.494 56.000 53.397 55.931 53.203 55.849 53.300 55.904 53.553 55.918 53.650 55.890 53.786 55.876 53.902 55.780 53.980 55.780 54.116 55.627 54.193 55.544 53.999 55.475 53.960 55.197 53.591 55.211 53.378 55.155 53.222 55.141 53.145 55.085 53.222 55.071 53.222 55.058 53.281 55.030 53.281 55.016 53.300 55.002 53.320 55.002 53.417 54.876 53.533 54.834 53.611 54.736 53.611 54.638 53.553 54.497 53.436 54.483 53.436 54.342 53.358 54.202 53.436 54.046 53.475 54.074 53.067 54.144 53.028 54.286 53.125 54.342 53.048 54.314 53.009 54.272 52.931 54.357 52.737 54.357 52.601 54.371 52.582 54.371 52.543 54.455 52.504 54.483 52.446 54.413 52.057 54.540 51.922 54.554 51.727 54.638 51.533 54.680 51.397 54.568 51.106 54.413 51.009 54.399 50.970 54.399 50.776 54.357 50.562 54.342 50.543 54.455 50.349 54.497 50.155 54.511 50.096 54.511 50.019 54.525 49.960 54.568 49.766 54.568 49.572 54.736 49.514 54.876 49.320 54.792 49.145 54.736 48.951 54.666 48.873 54.652 48.834 54.652 48.640 54.624 48.485 54.680 48.291 54.736 48.193 54.764 48.096 54.764 48.077 54.638 47.883 54.694 47.747 54.554 47.650 54.525 47.455 54.652 47.300 54.680 47.261 54.680 47.048 54.624 46.853 54.680 46.757 54.750 46.562 54.778 46.446 54.624 46.524 54.497 46.504 54.413 46.562 54.385 46.737 54.258 46.543 54.188 46.349 54.159 46.135 54.074 45.922 53.989 45.824 54.003 46.019 53.933 46.213 53.890 46.232 53.876 46.213 53.734 46.368 53.549 46.504 53.436 46.698 53.349 46.912 53.264 46.951 53.135 46.970 53.121 46.951 52.964 46.931 52.819 46.989 52.719 46.853 52.618 46.834 52.690 46.446 52.618 46.252 52.431 45.883 52.474 45.727 52.474 45.533 52.417 45.359 52.417 45.145 52.344 45.009 52.474 44.737 52.503 44.543 52.417 44.465 52.330 44.271 52.344 44.057 52.402 43.883 52.417 43.689 52.417 43.553 52.388 43.417 52.460 43.262 52.402 43.087 52.373 42.931 52.229 42.854 52.098 42.757 51.793 42.640 51.750 42.582 51.603 42.504 51.545 42.582 51.428 42.815 51.399 42.854 51.224 42.893 51.238 42.679 51.164 42.485 51.135 42.290 51.135 42.193 51.164 42.077 51.209 41.980 51.076 41.786 51.018 41.747 50.959 41.572 50.827 41.378 50.782 41.184 50.767 41.184 50.635 41.397 50.487 41.436 50.368 41.514 50.220 41.378 49.998 41.592 49.834 41.980 49.715 42.174 49.595 42.135 49.550 42.135 49.400 42.057 49.251 42.038 49.145 42.193 48.995 42.601 48.875 42.679 48.724 42.679 48.618 42.718 48.527 42.562 48.512 42.427 48.482 42.232 48.391 42.077 48.088 42.038 48.026 42.135 48.011 42.290 48.026 42.485 47.859 42.737 47.813 42.757 47.752 42.776 47.600 42.893 47.569 43.087 47.569 43.106 47.448 43.320 47.478 43.514 47.448 43.689 47.478 43.747 47.630 43.689 47.768 43.883 47.783 43.999 47.890 44.193 47.874 44.349 48.026 44.485 48.179 44.310 48.255 44.349 48.210 44.543 48.058 44.582 48.088 44.698 48.103 44.892 48.194 45.009 48.134 45.126 48.103 45.320 48.042 45.475 48.026 45.669 47.630 45.941 47.508 46.096 47.448 46.291 47.493 46.504 47.524 46.543 47.600 46.640 47.615 46.660 47.615 46.679 47.539 46.776 47.524 46.737 47.524 46.718 47.493 46.679 47.478 46.640 47.478 46.621 47.463 46.582 47.448 46.543 47.432 46.524 47.417 46.524 47.386 46.543 47.325 46.562 47.310 46.582 47.125 46.718 46.848 47.106 46.709 47.164 46.602 46.970 46.431 46.912 46.431 46.718 46.307 46.524 46.291 46.504 46.245 46.873 46.090 46.931 46.121 47.145 46.121 47.164 45.997 47.086 45.982 47.086 45.747 46.951 45.576 46.912 45.638 47.320 45.576 47.494 45.483 47.514 44.997 47.222 44.966 47.203 44.918 47.009 44.745 46.893 44.635 46.737 44.461 46.698 44.382 46.893 44.240 47.106 44.097 47.300 43.938 47.417 43.780 47.514 43.621 47.417 43.557 47.475 43.716 47.514 43.875 47.708 43.716 47.591 43.557 47.533 43.381 47.494 43.222 47.514 43.062 47.475 42.901 47.630 42.741 47.727 42.258 48.193 42.080 48.329 41.919 48.407 41.838 48.601 41.822 48.582 41.789 48.562 41.627 48.446 41.594 48.426 41.480 48.135 41.480 48.096 41.318 47.941 41.204 47.747 41.270 47.378 41.432 47.261 41.562 47.048 41.725 46.893 41.903 46.465 41.935 46.329 41.983 46.135 42.096 45.941 42.145 45.786 42.307 45.708 42.484 45.766 42.532 45.650 42.548 45.475 42.693 45.087 42.725 45.009 42.709 44.854 42.741 44.659 42.757 44.640 42.709 44.407 42.629 44.193 42.612 44.116 42.564 43.941 42.645 43.747 42.709 43.825 42.757 43.805 42.853 43.611 42.901 43.397 42.965 43.164 43.126 42.970 43.174 42.776 43.174 42.562 43.238 42.368 43.190 42.116 43.206 41.902 43.222 41.669 43.349 41.281 43.381 41.106 43.541 40.698 43.509 40.562 43.589 40.232 43.509 40.116 43.397 39.980 43.653 39.611 43.811 39.436 44.082 39.048 44.319 38.640 44.382 38.252 44.698 37.883 44.651 37.689 44.682 37.495 44.997 37.164 45.107 36.757 45.201 36.718 45.247 36.912 45.341 36.679 45.420 36.873 45.326 37.145 45.310 37.397 45.341 37.592 45.498 37.708 45.654 37.611 45.732 37.805 46.044 38.038 45.888 38.077 46.044 38.174 46.075 38.368 46.028 38.562 46.338 38.194 46.400 37.999 46.540 37.805 46.679 38.194 46.648 38.582 46.709 38.388 46.863 38.485 46.863 38.679 47.017 39.087 47.002 39.281 47.109 39.397 47.125 39.281 47.247 39.261 47.278 39.067 47.171 38.873 47.140 38.679 47.186 38.543 47.247 38.737 47.217 38.543 47.125 38.330 47.109 38.252 47.155 38.232 47.325 38.213 47.478 38.290 47.630 38.485 47.676 38.679 47.692 38.698 47.707 38.776 47.859 38.873 47.859 39.048 47.844 39.126 47.844 39.805 47.996 39.805 48.058 39.883 48.073 39.863 48.225 39.999 48.240 40.019 48.300 40.019 48.300 39.980 48.285 39.960 48.285 39.922 48.300 39.902 48.331 39.863 48.361 39.941 48.512 39.883 48.588 39.689 48.633 39.689 48.664 39.708 48.815 39.824 48.800 40.019 48.860 40.096 48.890 40.058 48.875 40.019 48.860 39.980 48.905 39.786 49.040 39.805 49.145 40.019 49.296 40.174 49.386 40.135 49.445 40.077 49.595 40.155 49.611 40.019 49.595 39.999 49.550 39.902 49.595 39.708 49.729 39.592 49.729 39.397 49.878 39.203 49.804 39.009 49.804 38.951 49.893 38.757 49.952 38.562 49.998 38.368 50.013 38.194 49.998 38.213 49.908 38.038 49.982 37.980 49.998 37.961 50.028 37.941 50.087 37.747 50.191 37.650 50.339 37.514 50.428 37.320 50.339 37.126 50.339 36.951 50.324 36.854 50.309 36.815 50.205 36.621 50.309 36.427 50.279 36.310 50.353 36.232 50.443 36.038 50.428 35.863 50.353 35.708 50.428 35.592 50.576 35.436 50.723 35.475 50.738 35.475 50.886 35.378 50.959 35.320 51.106 35.165 51.149 35.126 51.224 35.009 51.193 34.893 51.179 34.699 51.253 34.504 51.253 34.213 51.268 34.252 51.370 34.310 51.370 34.291 51.428 34.252 51.574 34.194 51.647 34.116 51.691 34.174 51.691 34.213 51.837 34.388 51.866 34.330 51.924 34.232 52.069 34.077 52.214 34.038 52.287 33.941 52.373 33.747 52.287 33.553 52.330 33.533 52.359 33.494 52.359 33.436 52.373 33.261 52.258 32.951 52.258 32.757 52.315 32.582 52.330 32.388 52.243 32.388 52.214 32.349 52.069 32.194 52.054 31.999 52.112 31.786 52.170 31.786 52.315 31.592 52.445 31.611 52.474 31.611 52.618 31.572 52.690 31.514 52.834 31.553 52.921 31.398 53.064 31.339 53.121 31.378 53.193 31.592 53.193 31.786 53.135 31.805 53.107 31.999 53.107 32.194 53.135 32.271 53.135 32.330 53.278 32.485 53.306 32.601 53.436 32.757 53.521 32.563 53.677 32.524 53.720 32.427 53.762 32.349 53.762 32.291 53.806 32.097 53.776 31.883 53.806 31.766 54.003 31.883 54.060 31.863 54.202 31.456 54.455 31.203 54.596 31.184 54.666 31.029 54.694 31.029 54.778 30.834 54.932 30.834 54.946 30.873 54.974 30.970 54.988 30.970 55.002 30.951 55.030 31.029 55.169 30.970 55.309 30.834 55.447 30.912 55.475 30.912 55.599 30.932 55.599 30.815 55.752 30.543 55.821 30.407 55.821 30.368 55.849 30.271 55.835 30.097 55.849 30.019 55.849 29.961 55.780 29.825 55.738 29.592 55.752 29.398 55.835 29.398 55.959 29.417 56.000 29.223 56.028 29.145 55.959 28.737 55.986 28.718 56.042 28.718 56.097 28.563 56.056 28.368 56.056 28.310 56.083 28.291 56.152 28.174 56.234 28.232 56.385 28.194 56.399 28.194 56.467 28.174 56.604 28.038 56.604 28.019 56.741 27.903 56.877 27.844 56.863 27.767 56.850 27.650 56.999 27.747 57.134 27.767 57.149 27.825 57.189 27.864 57.325 27.825 57.392 27.670 57.527 27.475 57.541 27.378 ; #1328 -2 56.207 -89.999 56.822 -88.989 56.782 -88.775 56.577 -88.387 56.440 -87.979 56.166 -87.707 56.000 -87.610 56.014 -87.494 55.959 -87.280 55.904 -86.892 55.807 -86.484 55.725 -86.290 55.697 -86.096 55.669 -85.882 55.613 -85.688 55.475 -85.494 55.378 -85.300 55.238 -85.222 55.099 -85.397 54.988 -85.416 55.127 -85.319 55.281 -85.106 55.252 -84.523 55.295 -84.329 55.267 -84.135 55.322 -83.921 55.211 -83.727 55.252 -83.533 55.197 -83.144 55.099 -82.950 55.141 -82.892 55.155 -82.698 55.141 -82.309 54.792 -82.212 54.371 -82.426 54.230 -82.426 54.088 -82.271 53.933 -82.173 53.790 -82.135 53.649 -82.193 53.492 -82.193 53.349 -82.135 53.207 -82.251 52.964 -82.290 52.906 -82.173 52.474 -81.591 52.330 -81.513 52.243 -81.863 52.184 -81.882 52.229 -81.688 52.229 -81.475 52.083 -81.280 52.054 -81.086 51.909 -80.911 51.808 -80.717 51.501 -80.484 51.355 -80.426 51.282 -80.640 51.032 -81.008 51.209 -80.620 51.326 -80.426 51.268 -80.018 50.959 -79.533 50.723 -79.339 50.871 -79.416 51.135 -79.727 51.282 -79.688 51.428 -79.611 51.457 -79.552 51.603 -79.416 51.472 -79.028 51.179 -78.911 51.164 -78.834 51.311 -78.892 51.487 -78.678 51.721 -78.989 52.170 -78.542 52.243 -78.406 52.388 -78.523 52.532 -78.581 52.590 -78.698 52.733 -78.814 52.891 -78.873 52.978 -78.814 53.121 -78.931 53.264 -78.892 53.705 -79.106 53.820 -78.892 53.905 -79.106 54.046 -79.028 54.074 -79.222 54.230 -79.319 54.371 -79.475 54.511 -79.533 54.652 -79.649 54.750 -79.455 54.806 -79.261 54.834 -79.047 54.946 -78.659 55.002 -78.542 55.044 -78.329 55.141 -78.135 55.267 -77.785 55.613 -77.183 55.752 -77.067 56.014 -76.698 56.303 -76.542 56.440 -76.523 57.094 -76.523 57.648 -76.795 58.050 -77.203 58.265 -77.610 58.371 -77.999 58.451 -78.076 58.610 -78.465 58.743 -78.504 58.875 -78.523 58.915 -78.329 59.047 -78.290 59.270 -77.882 59.362 -77.805 59.494 -77.863 59.624 -77.727 59.663 -77.533 59.559 -77.339 59.676 -77.533 59.781 -77.339 59.911 -77.416 60.002 -77.242 60.067 -77.630 60.119 -77.436 60.390 -77.727 60.520 -77.552 60.584 -77.746 60.712 -77.688 60.751 -77.882 60.829 -77.882 60.803 -78.076 60.931 -78.057 61.046 -77.844 61.173 -77.746 61.314 -77.746 61.441 -77.785 61.466 -77.591 61.593 -77.572 61.669 -77.766 61.695 -77.960 62.009 -78.135 62.274 -78.154 62.399 -77.960 62.536 -77.552 62.561 -77.358 62.536 -76.950 62.349 -75.960 62.299 -75.766 62.173 -75.863 62.160 -75.824 62.299 -75.436 62.299 -75.241 62.261 -74.989 62.110 -74.601 62.236 -74.717 62.249 -74.523 62.336 -74.115 62.424 -73.921 62.474 -73.727 62.386 -73.533 62.349 -73.339 62.223 -73.144 62.160 -72.931 62.147 -72.737 62.009 -72.601 61.884 -72.698 61.833 -72.795 61.808 -72.601 61.934 -72.620 61.871 -72.212 61.733 -72.212 61.682 -71.999 61.618 -72.212 61.605 -71.999 61.682 -71.805 61.618 -71.610 61.529 -71.805 61.491 -71.785 61.403 -71.591 61.377 -71.785 61.238 -71.591 61.160 -71.397 61.122 -71.009 61.058 -70.814 61.033 -70.620 61.020 -70.426 61.071 -70.232 60.841 -69.999 60.905 -69.805 61.033 -69.650 60.995 -69.455 60.854 -69.377 60.738 -69.591 60.481 -69.785 60.352 -69.727 60.223 -69.610 60.080 -69.630 60.067 -69.824 60.002 -69.766 60.002 -70.601 60.067 -71.028 59.963 -70.504 59.963 -69.805 59.872 -69.610 59.611 -69.533 59.520 -69.727 59.388 -69.669 59.323 -69.281 58.928 -69.455 58.796 -69.591 58.928 -69.669 59.047 -69.863 58.915 -69.805 58.809 -69.999 58.783 -70.193 58.770 -70.251 58.756 -70.057 58.690 -69.921 58.664 -69.727 58.875 -69.319 58.901 -69.125 58.875 -68.931 58.901 -68.737 58.862 -68.543 58.730 -68.368 58.597 -68.348 58.464 -68.212 58.185 -68.329 58.050 -68.445 57.930 -68.970 57.917 -69.048 57.850 -69.242 57.769 -69.358 57.930 -68.970 57.997 -68.562 58.050 -68.445 58.077 -68.368 58.345 -68.193 58.477 -68.174 58.570 -67.979 58.305 -67.863 58.158 -68.057 58.238 -67.863 58.371 -67.824 58.225 -67.650 57.957 -67.727 57.917 -67.708 58.198 -67.591 58.345 -67.183 58.438 -66.989 58.491 -66.640 58.756 -66.484 58.796 -66.290 58.677 -66.096 58.544 -65.980 58.411 -65.980 58.318 -66.057 58.451 -65.921 58.583 -65.844 58.717 -66.038 58.862 -66.019 58.836 -65.824 58.849 -65.805 58.980 -65.883 58.928 -65.688 59.060 -65.533 59.034 -65.339 59.100 -65.533 59.205 -65.727 59.257 -65.533 59.388 -65.436 59.468 -65.242 59.375 -65.047 59.468 -65.222 59.468 -65.242 59.559 -65.436 59.689 -65.514 59.820 -65.378 59.768 -64.989 59.820 -65.183 60.002 -65.106 60.002 -64.853 59.963 -64.853 59.898 -64.659 59.872 -64.776 59.611 -64.795 59.468 -64.756 59.494 -64.543 59.481 -64.348 59.349 -64.523 58.980 -64.465 59.020 -64.581 59.047 -64.776 58.915 -64.853 58.928 -64.640 58.888 -64.484 58.875 -64.290 58.743 -64.135 58.822 -63.941 58.875 -63.785 58.849 -63.591 58.704 -63.630 58.704 -63.824 58.651 -64.057 58.517 -64.038 58.451 -63.824 58.358 -64.096 58.225 -64.232 58.104 -64.426 58.064 -64.348 57.957 -64.193 57.823 -64.096 57.783 -63.902 57.742 -63.902 57.608 -63.727 57.541 -63.747 57.406 -63.708 57.107 -63.785 57.012 -63.883 56.877 -63.883 56.768 -64.077 56.713 -64.116 56.440 -63.883 56.426 -64.077 56.426 -64.174 56.152 -64.018 56.070 -63.844 56.028 -63.650 56.028 -63.436 55.945 -63.669 55.807 -63.669 55.669 -63.475 55.558 -63.358 55.461 -63.164 55.309 -63.106 55.295 -63.164 55.141 -63.533 55.002 -63.455 54.722 -63.591 54.596 -63.805 54.638 -63.980 54.750 -64.407 54.750 -64.426 54.722 -64.620 54.750 -64.814 54.708 -65.028 54.708 -65.222 54.736 -65.319 54.736 -65.708 54.876 -65.844 54.932 -65.980 55.002 -66.251 55.267 -66.620 55.336 -66.795 55.197 -66.679 55.058 -66.737 55.002 -66.659 54.974 -66.659 54.932 -66.717 54.792 -66.601 54.764 -66.795 54.876 -67.009 55.002 -67.261 55.002 -67.436 54.876 -67.358 54.736 -67.222 54.624 -67.028 54.596 -67.222 54.511 -67.611 54.371 -67.591 54.230 -67.475 54.144 -67.669 54.003 -67.727 53.862 -67.591 53.776 -67.436 53.634 -67.494 53.563 -67.319 53.521 -67.125 53.378 -66.950 53.349 -66.912 53.207 -66.989 53.050 -66.970 52.906 -67.067 52.705 -67.086 52.690 -67.048 52.733 -66.853 52.805 -66.659 52.877 -66.659 53.035 -66.484 52.891 -66.290 52.834 -66.387 52.546 -66.426 52.431 -66.387 52.287 -66.465 52.141 -66.329 52.258 -66.212 52.200 -66.057 52.054 -65.902 52.098 -65.688 52.054 -65.552 52.214 -65.378 52.184 -65.164 52.069 -64.970 51.924 -64.834 51.851 -64.659 51.706 -64.698 51.559 -64.581 51.735 -64.271 51.837 -64.348 51.982 -64.290 52.141 -64.154 52.170 -64.116 52.315 -64.116 52.604 -64.174 52.877 -64.116 52.978 -63.921 53.107 -63.824 53.064 -63.630 52.921 -63.533 52.776 -63.591 52.647 -63.455 52.618 -63.844 52.503 -64.038 52.359 -63.980 52.330 -63.766 52.040 -63.650 51.996 -63.747 50.220 -63.397 50.220 -63.416 50.309 -63.824 50.265 -64.213 50.324 -64.445 50.265 -64.834 50.309 -65.358 50.250 -65.766 50.279 -65.960 50.191 -66.154 50.161 -66.543 50.176 -66.640 50.028 -66.776 49.998 -66.912 49.848 -67.009 49.700 -67.164 49.386 -67.300 49.326 -67.514 49.266 -68.096 49.191 -68.290 49.191 -68.426 48.890 -68.795 48.739 -69.067 48.588 -69.145 48.285 -69.475 48.134 -69.688 48.270 -69.999 48.300 -70.193 48.376 -70.387 48.467 -70.989 48.437 -71.067 48.421 -70.873 48.346 -70.659 48.346 -70.465 48.240 -70.077 48.240 -69.999 48.134 -69.785 47.981 -69.805 47.813 -69.902 47.707 -69.999 47.600 -70.193 47.448 -70.387 47.293 -70.562 47.140 -70.679 47.048 -70.892 46.925 -71.086 46.740 -71.300 46.848 -71.106 46.879 -70.989 47.017 -70.504 47.155 -70.329 47.463 -70.038 47.615 -69.805 47.768 -69.630 47.920 -69.514 48.300 -68.912 48.452 -68.523 48.648 -68.135 48.800 -67.708 48.950 -67.125 49.085 -66.737 49.206 -66.154 49.266 -65.416 49.221 -65.203 49.191 -64.814 49.010 -64.407 48.890 -64.213 48.860 -64.426 48.830 -64.484 48.785 -64.387 48.770 -64.426 48.770 -64.387 48.648 -64.193 48.497 -64.213 48.406 -64.407 48.331 -64.698 48.179 -64.892 48.011 -65.300 48.088 -65.688 48.149 -65.844 48.103 -66.232 48.119 -66.445 47.996 -66.834 47.981 -66.892 47.981 -66.912 47.920 -67.106 47.890 -67.436 47.996 -67.630 47.996 -68.018 47.966 -68.115 47.920 -68.310 47.768 -68.368 47.615 -68.368 47.478 -68.484 47.371 -68.717 47.293 -69.048 47.186 -68.892 47.356 -68.251 47.171 -67.941 47.155 -67.941 47.063 -67.785 46.384 -67.785 46.152 -67.766 45.841 -67.747 45.763 -67.805 45.623 -67.611 45.592 -67.416 45.561 -67.397 45.247 -67.436 45.154 -67.358 45.201 -67.261 45.185 -67.203 45.091 -67.106 44.886 -67.009 44.729 -67.106 44.713 -67.300 44.651 -67.494 44.509 -67.708 44.509 -67.902 44.429 -68.096 44.477 -68.154 44.413 -68.543 44.240 -68.523 44.413 -68.795 44.572 -68.795 44.445 -68.989 44.287 -69.009 44.113 -69.086 43.954 -69.203 44.001 -69.397 43.843 -69.494 43.859 -69.552 44.018 -69.533 43.859 -69.591 43.922 -69.785 44.082 -69.766 43.970 -69.863 43.875 -69.785 43.716 -69.824 43.748 -69.999 43.875 -69.999 43.716 -70.232 43.397 -70.407 43.078 -70.737 43.046 -70.698 42.821 -70.853 42.580 -70.717 42.452 -70.912 42.290 -71.028 42.274 -70.834 42.113 -70.659 41.789 -70.504 41.741 -70.387 41.741 -70.193 41.806 -69.999 41.919 -69.999 41.919 -70.057 42.080 -70.193 41.983 -69.999 41.822 -69.960 41.660 -69.999 41.676 -70.057 41.644 -70.251 41.578 -70.446 41.578 -70.640 41.741 -70.620 41.545 -70.931 41.513 -71.183 41.676 -71.183 41.757 -71.378 41.432 -71.455 41.351 -71.649 41.318 -71.843 41.351 -71.941 41.302 -72.348 41.253 -72.853 41.009 -73.649 40.829 -73.805 40.763 -73.999 40.977 -73.882 41.139 -73.863 41.302 -73.960 41.156 -73.902 40.928 -73.921 40.763 -74.018 40.682 -74.115 40.682 -74.154 40.502 -74.251 40.338 -73.960 39.992 -74.038 39.992 -74.096 39.926 -74.135 39.761 -74.174 39.597 -74.271 39.514 -74.407 39.349 -74.426 39.315 -74.620 39.132 -74.679 38.967 -74.814 39.016 -74.931 39.182 -74.970 39.233 -75.164 39.332 -75.358 39.497 -75.533 39.630 -75.533 39.794 -75.397 39.844 -75.241 39.860 -75.222 39.811 -75.416 39.646 -75.591 39.481 -75.572 39.315 -75.436 39.149 -75.397 38.800 -75.164 38.617 -75.125 38.451 -75.047 38.451 -75.086 37.664 -75.572 37.496 -75.746 37.160 -75.960 37.278 -76.018 37.445 -75.960 37.798 -75.727 37.966 -75.649 37.932 -75.863 38.100 -75.824 38.267 -75.960 38.284 -76.096 38.451 -76.290 38.617 -76.232 38.567 -76.038 38.684 -76.115 38.767 -76.329 38.767 -76.135 38.933 -76.251 38.950 -76.348 39.016 -76.154 39.066 -76.213 39.233 -76.213 39.398 -76.018 39.563 -75.941 39.563 -76.077 39.448 -76.213 39.365 -76.368 39.349 -76.329 39.182 -76.504 38.684 -76.504 38.334 -76.445 38.501 -76.639 38.667 -76.678 38.517 -76.659 38.501 -76.639 38.350 -76.504 38.183 -76.426 38.233 -76.620 38.367 -76.814 38.267 -76.853 38.417 -77.067 38.467 -77.261 38.634 -77.106 38.767 -77.047 38.784 -77.028 38.800 -77.028 38.867 -77.008 38.900 -77.067 38.800 -77.028 38.767 -77.047 38.684 -77.125 38.651 -77.125 38.534 -77.280 38.417 -77.300 38.334 -77.242 38.350 -77.144 38.200 -76.892 38.150 -76.601 37.982 -76.426 37.898 -76.232 37.831 -76.309 37.664 -76.407 37.932 -76.795 38.100 -76.950 38.166 -77.125 38.066 -76.931 37.898 -76.814 37.429 -76.232 37.278 -76.387 37.344 -76.581 37.429 -76.717 37.261 -76.523 37.177 -76.329 37.008 -76.309 37.058 -76.504 37.227 -76.659 37.311 -76.853 37.294 -77.047 37.344 -77.242 37.294 -77.203 37.294 -77.008 37.210 -76.814 37.041 -76.620 36.839 -76.290 36.889 -76.309 36.923 -76.174 36.889 -75.979 36.212 -75.746 35.855 -75.591 36.212 -75.766 36.551 -75.882 36.551 -76.018 36.432 -75.979 36.263 -75.863 36.093 -75.824 36.297 -76.213 36.127 -76.135 36.093 -76.329 36.008 -76.504 36.110 -76.717 36.280 -76.698 36.110 -76.737 35.940 -76.678 35.974 -76.232 35.889 -76.038 35.718 -75.999 35.889 -75.979 35.923 -75.785 35.752 -75.727 35.582 -75.785 35.514 -75.979 35.342 -76.154 35.359 -76.407 35.531 -76.465 35.428 -76.659 35.428 -76.853 35.342 -76.659 35.171 -76.562 35.000 -76.717 35.000 -76.970 34.966 -76.931 34.914 -76.737 35.000 -76.542 35.000 -76.309 34.863 -76.368 34.726 -76.562 34.743 -76.756 34.623 -77.377 34.450 -77.533 34.312 -77.727 34.140 -77.863 33.968 -77.902 34.140 -77.941 33.968 -77.960 33.915 -78.154 33.863 -78.542 33.881 -78.562 33.777 -78.737 33.326 -79.280 33.014 -79.416 32.979 -79.611 32.788 -79.746 32.858 -79.940 32.596 -79.999 32.579 -80.115 32.492 -80.309 32.492 -80.504 32.300 -80.484 32.300 -80.678 32.474 -80.814 32.213 -80.775 32.019 -80.892 31.897 -80.931 31.862 -81.125 31.687 -81.125 31.564 -81.319 31.388 -81.261 31.317 -81.300 31.370 -81.494 31.212 -81.300 31.071 -81.494 30.559 -81.494 30.383 -81.397 29.745 -81.242 29.389 -81.067 29.032 -80.892 28.585 -80.581 28.228 -80.601 27.868 -80.445 28.066 -80.562 28.245 -80.620 28.425 -80.601 28.603 -80.640 28.728 -80.834 28.550 -80.795 28.371 -80.737 27.581 -80.348 27.202 -80.251 27.202 -80.232 27.130 -80.135 26.932 -80.096 26.878 -80.057 26.697 -80.037 25.954 -80.115 25.772 -80.193 25.718 -80.251 25.300 -80.387 25.154 -80.775 25.136 -80.970 25.263 -81.164 25.300 -80.970 25.446 -81.164 25.809 -81.339 25.954 -81.727 25.972 -81.707 26.154 -81.804 26.534 -81.921 26.715 -81.785 26.588 -82.057 26.950 -82.076 27.005 -82.271 26.824 -82.154 26.914 -82.368 27.202 -82.504 27.419 -82.601 27.599 -82.562 27.671 -82.504 27.850 -82.542 28.030 -82.678 27.868 -82.601 27.671 -82.737 27.868 -82.853 27.976 -82.795 28.156 -82.775 28.531 -82.640 28.889 -82.640 29.068 -82.756 29.300 -83.144 29.389 -83.203 29.531 -83.397 29.887 -83.649 30.082 -83.999 30.099 -84.193 29.993 -84.387 29.993 -84.465 29.904 -84.484 29.727 -84.970 29.709 -85.183 29.745 -85.086 29.780 -85.047 29.993 -85.047 30.011 -85.086 30.082 -85.144 30.435 -85.008 30.524 -84.989 30.630 -84.911 30.700 -84.873 30.718 -84.873 30.789 -84.911 30.913 -84.970 30.983 -84.989 31.001 -85.008 31.001 -84.989 31.036 -84.989 31.089 -85.028 31.142 -85.047 31.282 -85.106 31.599 -85.047 31.634 -85.067 31.704 -85.106 31.880 -85.125 32.054 -85.067 32.124 -85.047 32.248 -84.911 32.422 -84.970 32.439 -84.970 32.509 -84.989 32.526 -84.989 32.526 -85.008 32.544 -85.008 32.875 -85.183 32.910 -85.183 32.997 -85.202 33.031 -85.202 33.049 -85.222 33.222 -85.241 33.535 -85.300 33.673 -85.338 33.742 -85.338 33.951 -85.377 33.968 -85.377 34.209 -85.435 34.261 -85.455 34.691 -85.552 35.000 -85.630 35.000 -85.513 35.034 -85.435 35.102 -85.397 35.120 -85.416 35.667 -85.008 35.786 -84.892 35.923 -84.659 36.093 -84.833 36.280 -84.853 36.381 -84.640 36.619 -84.775 36.788 -84.601 36.974 -84.678 36.974 -84.853 37.126 -84.989 37.193 -85.067 37.244 -85.067 37.227 -85.261 37.210 -85.377 37.344 -85.474 37.411 -85.688 37.429 -85.902 37.513 -86.096 37.681 -86.232 37.882 -86.290 38.033 -86.523 37.999 -86.523 37.848 -86.640 37.982 -86.834 38.166 -86.814 38.217 -87.028 38.434 -87.086 38.534 -87.300 38.501 -87.533 38.434 -87.746 38.517 -87.649 38.684 -87.533 38.834 -87.533 39.000 -87.591 39.182 -87.610 39.349 -87.533 40.747 -87.533 40.747 -87.105 40.928 -86.969 41.221 -86.931 41.270 -86.814 41.400 -86.678 41.594 -86.484 41.708 -86.523 41.757 -86.523 41.757 -86.834 41.854 -86.678 42.177 -86.426 42.516 -86.251 42.837 -86.212 43.222 -86.290 43.254 -86.251 43.413 -86.445 43.573 -86.523 43.906 -86.445 44.066 -86.523 44.382 -86.251 44.713 -86.251 44.871 -86.076 44.997 -85.785 45.154 -85.649 44.839 -85.649 44.997 -85.513 44.839 -85.533 44.997 -85.397 45.310 -85.319 45.388 -85.106 45.373 -84.989 45.436 -84.989 45.592 -85.106 45.763 -84.795 45.670 -84.329 45.561 -84.135 45.357 -83.552 45.201 -83.377 45.044 -83.261 44.997 -83.455 44.839 -83.300 44.682 -83.280 44.413 -83.319 44.097 -83.571 43.986 -83.766 43.827 -83.940 43.668 -83.882 43.605 -83.649 43.748 -83.455 43.906 -83.397 44.050 -82.989 44.018 -82.795 43.859 -82.659 43.206 -82.504 43.046 -82.445 43.014 -82.406 43.062 -82.212 43.286 -81.824 43.461 -81.707 44.097 -81.727 44.588 -81.300 44.745 -81.280 44.902 -81.358 45.107 -81.513 45.216 -81.727 45.247 -81.533 45.154 -81.319 44.997 -81.242 44.997 -81.183 44.966 -81.164 44.966 -80.970 44.808 -80.989 44.619 -80.581 44.540 -80.387 44.509 -80.193 44.556 -79.999 44.855 -79.999 44.808 -79.882 44.839 -79.766 44.997 -79.921 45.028 -79.999 45.185 -80.018 45.341 -80.173 45.452 -80.387 45.919 -80.775 45.982 -81.183 45.997 -81.571 46.121 -81.611 46.106 -81.824 46.137 -82.212 46.183 -82.406 46.168 -82.989 46.230 -83.397 46.384 -84.115 46.540 -84.154 46.524 -84.387 46.586 -84.562 46.756 -84.562 46.910 -84.387 46.940 -84.581 47.017 -84.775 47.325 -84.601 47.478 -84.795 47.585 -84.989 47.661 -84.989 47.813 -84.911 47.966 -84.989 47.966 -85.202 47.920 -85.397 47.950 -85.785 48.088 -85.979 48.240 -86.115 48.542 -86.251 48.694 -86.368 48.815 -86.969 48.785 -87.164 48.800 -87.358 48.905 -87.746 48.995 -88.251 48.694 -88.115 48.648 -88.309 48.497 -88.484 48.800 -88.329 48.785 -88.542 48.633 -88.542 48.331 -88.872 48.482 -88.833 48.512 -89.028 48.406 -89.222 48.255 -89.261 48.103 -89.397 47.996 -89.571 48.011 -89.649 48.026 -89.999 ; #1329 -4 -49.415 -73.513 -49.311 -73.300 -49.281 -73.106 -49.251 -73.164 -49.100 -73.086 -48.950 -72.892 -48.920 -72.737 -48.890 -72.698 -48.739 -72.543 -48.482 -72.601 -48.391 -72.407 -48.225 -72.290 -48.073 -72.329 -47.950 -72.523 -47.768 -72.465 -47.615 -72.329 -47.463 -72.348 -47.401 -72.154 -47.293 -72.038 -47.278 -72.018 -47.201 -71.863 -47.048 -71.999 -46.802 -71.921 -46.725 -71.727 -46.571 -71.669 -46.540 -71.669 -46.338 -71.746 -46.307 -71.746 -46.152 -71.902 -46.028 -71.669 -45.935 -71.610 -45.904 -71.630 -45.856 -71.746 -45.716 -71.785 -45.561 -71.746 -45.529 -71.552 -45.388 -71.417 -45.325 -71.300 -45.153 -71.455 -44.997 -71.552 -44.950 -71.863 -44.886 -72.077 -44.776 -71.979 -44.761 -71.572 -44.776 -71.417 -44.713 -71.222 -44.556 -71.106 -44.525 -71.125 -44.429 -71.319 -44.398 -71.708 -44.366 -71.843 -44.050 -71.746 -43.954 -71.649 -43.922 -71.649 -43.764 -71.805 -43.605 -71.688 -43.589 -71.708 -43.573 -71.766 -43.413 -71.921 -43.301 -71.746 -43.174 -71.727 -43.126 -71.921 -43.030 -72.115 -42.885 -72.096 -42.548 -72.115 -42.420 -72.057 -42.242 -72.096 -42.145 -71.863 -42.000 -71.766 -41.838 -71.805 -41.676 -71.902 -41.545 -71.863 -41.383 -71.902 -41.107 -71.843 -41.009 -71.863 -40.731 -71.941 -40.551 -71.843 -40.338 -71.669 -40.173 -71.805 -40.041 -71.669 -40.008 -71.649 -39.811 -71.669 -39.646 -71.708 -39.596 -71.649 -39.596 -71.494 -39.266 -71.397 -39.132 -71.397 -38.967 -71.417 -38.850 -71.281 -38.684 -70.853 -38.517 -70.834 -38.350 -70.970 -38.250 -71.009 -38.150 -70.989 -37.765 -71.145 -37.428 -71.125 -37.293 -71.183 -37.126 -71.106 -36.957 -71.125 -36.940 -71.125 -36.906 -71.145 -36.737 -71.125 -36.483 -71.028 -36.398 -70.892 -36.432 -70.756 -36.381 -70.698 -36.212 -70.620 -36.144 -70.426 -36.008 -70.387 -35.769 -70.368 -35.599 -70.407 -35.205 -70.504 -35.205 -70.465 -35.034 -70.368 -34.708 -70.251 -34.295 -70.038 -34.278 -69.999 -34.106 -69.843 -33.968 -69.882 -33.794 -69.902 -33.500 -69.824 -33.326 -69.785 -33.309 -69.999 -33.118 -70.096 -33.049 -70.096 -32.910 -69.999 -32.875 -69.999 -32.823 -70.077 -32.806 -70.096 -32.631 -70.174 -32.457 -70.174 -32.369 -70.232 -32.317 -70.232 -32.213 -70.329 -32.037 -70.368 -31.880 -70.329 -31.704 -70.484 -31.528 -70.581 -31.458 -70.562 -31.282 -70.543 -31.106 -70.465 -31.124 -70.368 -30.718 -70.271 -30.524 -70.212 -30.400 -69.999 -30.152 -69.824 -30.010 -69.921 -29.709 -69.921 -29.460 -69.999 -29.264 -69.999 -29.121 -69.805 -28.907 -69.766 -28.728 -69.746 -28.549 -69.650 -28.407 -69.650 -28.066 -69.319 -27.886 -69.145 -27.779 -69.125 -27.365 -68.892 -27.184 -68.853 -27.130 -68.543 -27.040 -68.348 -26.878 -68.290 -26.497 -68.581 -26.317 -68.562 -26.135 -68.407 -26.063 -68.426 -25.590 -68.562 -25.409 -68.581 -25.300 -68.543 -25.172 -68.484 -25.008 -68.426 -24.825 -68.562 -24.606 -68.484 -24.478 -68.290 -24.460 -68.271 -24.332 -68.077 -24.149 -67.630 -24.130 -67.572 -24.039 -67.378 -23.744 -67.242 -23.726 -67.242 -22.991 -67.009 -22.825 -67.183 -22.714 -67.125 -22.364 -66.756 -22.234 -66.737 -22.124 -66.348 -21.790 -66.212 -21.919 -65.980 -22.087 -65.785 -22.105 -65.591 -22.087 -65.591 -22.105 -65.183 -22.105 -65.164 -22.087 -64.989 -22.179 -64.659 -22.530 -64.445 -22.714 -64.407 -22.880 -64.329 -22.512 -64.213 -22.437 -64.154 -22.345 -64.116 -22.160 -64.018 -22.012 -63.805 -22.049 -63.708 -22.030 -63.688 -21.993 -62.795 -22.234 -62.640 -22.327 -62.581 -22.456 -62.387 -22.474 -62.329 -22.512 -62.252 -22.714 -62.193 -22.899 -62.018 -23.064 -61.921 -23.248 -61.727 -23.469 -61.319 -23.597 -61.125 -23.818 -60.989 -23.874 -60.776 -24.020 -60.329 -24.020 -60.310 -24.039 -59.999 -24.259 -59.630 -24.533 -59.261 -24.624 -59.048 -24.771 -58.815 -24.898 -58.426 -24.990 -58.349 -25.008 -58.135 -25.081 -57.941 -25.245 -57.727 -25.282 -57.708 -25.300 -57.669 -25.481 -57.552 -25.663 -57.688 -25.845 -57.805 -26.026 -57.902 -26.117 -58.038 -26.299 -58.154 -26.462 -58.174 -26.606 -58.174 -26.896 -58.349 -27.184 -58.659 -27.311 -58.601 -27.293 -58.504 -27.293 -57.883 -27.437 -57.300 -27.472 -57.048 -27.454 -56.640 -27.454 -56.523 -27.545 -56.329 -27.329 -56.154 -27.329 -55.960 -27.437 -55.786 -27.383 -55.689 -27.202 -55.591 -27.005 -55.436 -26.950 -55.242 -26.968 -55.203 -26.787 -54.989 -26.661 -54.795 -26.462 -54.718 -26.244 -54.659 -25.808 -54.601 -25.663 -54.640 -25.590 -54.601 -25.427 -54.601 -25.245 -54.485 -25.008 -54.446 -24.368 -54.251 -24.259 -54.290 -24.075 -54.271 -24.057 -54.232 -24.002 -54.174 -23.874 -54.057 -23.542 -53.980 -23.414 -53.922 -23.359 -53.786 -23.285 -53.708 -23.248 -53.689 -23.230 -53.689 -23.009 -53.630 -22.880 -53.572 -22.714 -53.145 -22.530 -52.989 -22.382 -52.795 -22.142 -52.387 -22.105 -52.368 -21.790 -52.135 -21.771 -52.135 -21.586 -52.077 -21.512 -51.980 -21.326 -51.844 -21.196 -51.863 -20.955 -51.689 -20.862 -51.611 -20.787 -51.611 -20.583 -51.533 -20.397 -51.358 -20.304 -51.145 -20.098 -50.989 -20.005 -51.009 -19.669 -51.009 -19.482 -50.951 -19.350 -51.028 -19.276 -51.242 -19.164 -51.436 -19.126 -51.669 -18.714 -52.465 -18.714 -52.543 -18.695 -52.853 -18.658 -52.892 -18.469 -52.776 -18.395 -52.989 -18.207 -53.048 -18.019 -53.048 -17.642 -53.242 -17.436 -53.222 -17.342 -53.184 -17.134 -53.145 -16.945 -53.048 -16.756 -52.815 -16.567 -52.659 -16.284 -52.659 -16.000 -52.310 -15.905 -52.252 -15.886 -52.252 -15.886 -52.232 -15.868 -52.019 -15.735 -51.824 -15.697 -51.824 -15.280 -51.650 -15.090 -51.533 -14.995 -51.417 -14.995 -51.222 -14.900 -51.087 -14.786 -51.048 -14.500 -50.970 -14.310 -50.970 -14.139 -50.912 -14.082 -50.834 -13.700 -50.834 -13.662 -50.776 -13.282 -50.582 -12.842 -50.485 -12.804 -50.601 -12.594 -50.640 -12.307 -50.620 -12.097 -50.679 -11.943 -50.660 -11.752 -50.718 -11.579 -50.679 -11.369 -50.718 -11.081 -50.601 -10.659 -50.601 -10.466 -50.485 -10.005 -50.291 -9.851 -50.232 -9.736 -52.213 -9.716 -52.620 -9.601 -52.484 -9.659 -52.291 -9.274 -52.019 -9.081 -52.038 -8.889 -52.155 -8.715 -52.271 -8.368 -52.659 -8.176 -52.679 -8.002 -52.756 -7.809 -52.776 -7.616 -52.737 -7.210 -52.582 -6.998 -52.427 -6.959 -52.232 -6.862 -52.019 -6.650 -51.999 -6.573 -52.155 -6.437 -52.329 -6.031 -52.543 -5.838 -52.543 -5.586 -52.679 -5.393 -52.853 -5.005 -52.912 -4.599 -52.698 -4.172 -52.640 -3.862 -52.601 -3.706 -52.407 -3.494 -52.232 -3.300 -52.155 -3.377 -51.999 -3.571 -51.902 -3.513 -51.708 -3.145 -51.611 -3.086 -51.805 -2.873 -51.941 -2.446 -52.038 -2.213 -52.174 -1.999 -52.232 -1.689 -52.252 -1.554 -51.863 -1.398 -51.669 -1.398 -51.611 -1.029 -51.028 -0.990 -50.815 -1.398 -50.795 -1.456 -50.776 -1.476 -50.776 -1.534 -50.737 -1.592 -50.718 -1.805 -50.679 -1.805 -50.601 -1.961 -50.388 -1.922 -50.193 -1.825 -49.999 -1.883 -49.863 -2.077 -49.824 -1.883 -49.669 -1.767 -49.475 -1.747 -49.281 -2.349 -49.494 -2.563 -49.494 -2.485 -49.436 -2.077 -49.281 -1.883 -49.145 -1.805 -48.951 -1.612 -48.795 -1.456 -48.601 -1.670 -48.426 -1.515 -48.368 -1.476 -48.174 -1.418 -48.485 -1.223 -48.310 -0.912 -48.252 -0.718 -48.057 -0.699 -47.708 -0.641 -47.591 -0.815 -47.397 -0.621 -47.320 -0.777 -47.184 -0.757 -46.990 -1.009 -46.582 -1.009 -46.193 -1.203 -46.077 -1.340 -45.397 -1.534 -45.436 -1.340 -45.300 -1.534 -45.358 -1.728 -45.262 -1.515 -45.184 -1.495 -44.990 -1.592 -44.990 -1.612 -44.795 -1.999 -44.485 -2.193 -44.621 -2.290 -44.815 -2.271 -44.621 -2.155 -44.426 -2.349 -44.368 -2.524 -44.562 -2.911 -44.679 -3.106 -44.659 -3.300 -44.795 -3.319 -44.757 -3.106 -44.601 -2.931 -44.407 -2.543 -44.349 -2.485 -44.232 -2.485 -44.038 -2.679 -44.213 -2.873 -44.193 -2.795 -44.057 -2.679 -44.038 -2.563 -43.844 -2.485 -43.456 -2.369 -43.456 -2.388 -43.262 -2.504 -42.854 -2.737 -42.465 -2.756 -42.271 -2.814 -42.155 -2.853 -41.941 -2.776 -41.844 -2.892 -41.630 -3.028 -41.242 -2.873 -41.223 -2.892 -41.028 -2.814 -40.524 -2.853 -40.135 -2.853 -39.999 -3.261 -39.242 -3.687 -38.640 -3.726 -38.446 -3.920 -38.330 -4.114 -38.135 -4.288 -37.941 -4.404 -37.747 -4.599 -37.630 -4.637 -37.495 -4.657 -37.436 -4.928 -37.126 -4.966 -36.873 -5.102 -36.679 -5.082 -35.863 -5.102 -35.669 -5.179 -35.456 -5.373 -35.320 -5.586 -35.223 -6.109 -35.106 -6.515 -34.951 -6.689 -34.951 -6.920 -34.854 -7.133 -34.912 -7.056 -34.834 -7.249 -34.796 -7.442 -34.796 -7.539 -34.893 -7.558 -34.834 -7.770 -34.873 -7.867 -34.815 -8.079 -34.873 -8.407 -35.009 -8.522 -35.009 -8.908 -35.145 -9.274 -35.359 -9.678 -35.708 -9.659 -35.728 -9.736 -35.844 -9.813 -35.844 -10.313 -36.291 -10.505 -36.407 -10.543 -36.543 -10.831 -36.931 -10.755 -37.126 -10.985 -37.068 -11.023 -37.281 -11.216 -37.184 -11.330 -37.378 -11.521 -37.475 -11.541 -37.417 -11.694 -37.495 -12.116 -37.689 -12.689 -38.097 -12.880 -38.271 -12.938 -38.466 -12.727 -38.524 -12.689 -38.718 -12.746 -38.912 -13.033 -38.795 -13.396 -39.048 -13.605 -39.087 -13.492 -39.028 -13.681 -38.951 -13.872 -39.067 -14.082 -38.931 -14.272 -38.990 -14.710 -39.048 -15.678 -38.931 -15.868 -38.854 -16.397 -39.028 -17.171 -39.203 -17.737 -39.164 -18.094 -39.553 -18.320 -39.669 -18.695 -39.747 -19.257 -39.689 -19.463 -39.708 -19.650 -39.805 -19.743 -39.999 -20.005 -40.135 -20.284 -40.232 -20.247 -40.368 -20.434 -40.310 -20.620 -40.407 -20.807 -40.582 -20.899 -40.776 -21.085 -40.834 -21.419 -41.009 -21.864 -40.990 -22.049 -41.048 -22.271 -41.630 -22.419 -41.825 -22.622 -41.980 -22.807 -41.922 -22.991 -42.019 -22.954 -42.038 -22.935 -42.446 -22.991 -42.931 -22.899 -43.126 -22.678 -43.087 -22.862 -43.223 -22.880 -43.164 -22.991 -43.203 -23.101 -43.999 -23.028 -43.611 -22.972 -43.708 -22.917 -43.902 -23.028 -44.096 -22.954 -44.310 -23.120 -44.698 -23.303 -44.524 -23.414 -44.990 -23.469 -45.028 -23.579 -45.223 -23.652 -45.417 -23.855 -45.494 -23.781 -45.689 -23.763 -45.883 -23.837 -46.096 -24.002 -46.271 -23.947 -46.349 -23.910 -46.388 -24.020 -46.388 -24.094 -46.601 -24.204 -46.795 -24.533 -47.184 -24.734 -47.591 -24.880 -47.786 -25.062 -47.960 -25.026 -48.019 -25.227 -47.999 -25.318 -48.077 -25.282 -48.446 -25.463 -48.524 -25.481 -48.718 -25.517 -48.524 -25.590 -48.465 -25.608 -48.407 -25.790 -48.524 -25.990 -48.582 -26.172 -48.757 -26.426 -48.640 -26.661 -48.679 -27.022 -48.562 -27.922 -48.601 -28.120 -48.621 -28.299 -48.679 -28.478 -48.757 -28.425 -48.795 -28.442 -48.834 -28.567 -48.795 -28.961 -49.378 -29.424 -49.786 -29.816 -50.038 -30.365 -50.252 -30.559 -50.368 -31.054 -50.718 -31.405 -51.048 -31.722 -51.436 -32.019 -52.038 -31.845 -51.960 -31.704 -51.572 -31.511 -51.417 -31.440 -51.222 -31.265 -51.145 -31.071 -51.164 -31.071 -50.970 -30.895 -50.931 -30.807 -50.737 -30.630 -50.679 -30.453 -50.562 -30.241 -50.582 -30.294 -50.776 -30.400 -50.970 -30.223 -51.164 -30.046 -51.222 -30.046 -51.281 -30.223 -51.300 -30.382 -51.087 -30.577 -51.281 -30.930 -51.475 -31.106 -51.533 -31.265 -51.727 -31.265 -51.805 -31.423 -51.999 -31.774 -52.213 -31.880 -52.193 -32.054 -52.096 -32.578 -52.407 -32.771 -52.446 -32.893 -52.504 -33.118 -52.620 -33.292 -52.776 -33.742 -53.378 -33.863 -53.475 -34.037 -53.533 -34.209 -53.708 -34.398 -53.766 -34.484 -53.960 -34.657 -54.135 -34.914 -54.795 -34.931 -54.989 -34.897 -55.164 -34.811 -55.378 -34.777 -55.630 -34.811 -55.824 -34.931 -56.154 -34.794 -56.368 -34.708 -56.776 -34.450 -57.164 -34.450 -57.630 -34.501 -57.824 -34.381 -57.902 -34.054 -58.271 -33.881 -58.407 -33.777 -58.426 -33.431 -58.387 -33.118 -58.271 -33.101 -58.213 -33.084 -58.213 -33.014 -58.077 -32.457 -58.193 -32.561 -58.213 -32.927 -58.135 -33.084 -58.213 -33.118 -58.271 -33.136 -58.407 -33.309 -58.426 -33.483 -58.523 -33.656 -58.543 -33.898 -58.446 -34.020 -58.446 -34.209 -58.387 -34.244 -58.407 -34.295 -58.562 -34.587 -58.368 -34.743 -58.174 -34.880 -57.785 -35.068 -57.456 -35.239 -57.261 -35.410 -57.125 -35.752 -57.358 -35.889 -57.378 -36.059 -57.320 -36.246 -57.164 -36.347 -56.970 -36.314 -56.756 -36.330 -56.737 -36.585 -56.659 -36.923 -56.679 -37.092 -56.834 -37.428 -57.067 -37.782 -57.416 -37.949 -57.533 -38.116 -57.552 -38.250 -57.747 -38.451 -58.213 -38.684 -59.009 -38.867 -59.999 -38.967 -60.756 -39.000 -61.145 -38.983 -61.339 -39.016 -61.533 -38.967 -61.727 -38.967 -61.941 -38.833 -62.135 -38.933 -62.329 -39.099 -62.349 -39.282 -62.252 -39.415 -62.057 -39.349 -62.252 -39.514 -62.057 -39.844 -62.154 -39.844 -62.290 -40.239 -62.426 -40.403 -62.446 -40.567 -62.252 -40.731 -62.252 -40.894 -62.368 -41.123 -62.970 -41.172 -63.378 -41.172 -63.766 -41.058 -63.960 -40.878 -64.543 -40.780 -64.737 -40.780 -64.931 -40.861 -65.125 -41.025 -65.164 -41.188 -65.145 -41.513 -64.989 -42.016 -65.067 -42.193 -64.853 -42.274 -64.465 -42.436 -64.504 -42.436 -64.096 -42.258 -64.077 -42.225 -64.290 -42.193 -64.077 -42.113 -63.883 -42.177 -63.688 -42.339 -63.591 -42.500 -63.591 -42.661 -63.611 -42.837 -63.747 -42.869 -63.960 -42.853 -64.154 -42.693 -64.213 -42.532 -64.368 -42.516 -64.562 -42.677 -64.970 -42.837 -64.814 -43.062 -64.426 -43.174 -64.834 -43.301 -65.028 -43.445 -65.106 -43.605 -65.281 -43.764 -65.319 -44.082 -65.222 -44.256 -65.261 -44.413 -65.319 -44.572 -65.455 -44.682 -65.650 -44.839 -65.688 -44.997 -65.591 -45.028 -65.630 -44.981 -66.038 -44.997 -66.232 -45.138 -66.465 -45.201 -66.659 -45.216 -66.853 -45.372 -67.048 -45.685 -67.339 -45.997 -67.572 -46.106 -67.611 -46.276 -67.591 -46.431 -67.514 -46.586 -67.378 -46.848 -66.970 -47.002 -66.795 -47.094 -66.212 -47.063 -66.019 -47.171 -65.805 -47.325 -65.727 -47.630 -65.805 -47.752 -65.999 -47.829 -66.193 -47.859 -66.387 -47.890 -66.348 -47.783 -65.960 -47.935 -65.785 -48.103 -65.960 -48.194 -66.174 -48.346 -66.329 -48.406 -66.523 -48.679 -67.125 -48.830 -67.242 -48.935 -67.436 -48.980 -67.494 -49.085 -67.611 -49.251 -67.669 -49.400 -67.650 -49.848 -67.766 -49.998 -67.921 -50.087 -68.077 -50.131 -68.290 -49.998 -68.484 -49.774 -68.640 -49.729 -68.737 -49.774 -68.659 -49.848 -68.620 -49.967 -68.679 -49.982 -68.873 -50.013 -69.009 -50.013 -68.931 -49.982 -68.873 -49.998 -68.543 -50.220 -68.484 -50.339 -68.873 -50.487 -69.028 -50.635 -69.106 -50.944 -69.203 -51.032 -69.319 -51.062 -69.377 -51.091 -69.397 -51.032 -69.319 -50.974 -69.183 -51.413 -69.009 -51.559 -69.009 -51.588 -69.203 -51.574 -69.417 -51.632 -69.610 -51.588 -69.377 -51.691 -69.183 -51.632 -68.970 -51.938 -68.756 -52.229 -68.465 -52.373 -68.407 -52.388 -68.445 -52.330 -68.504 -52.330 -68.581 -52.301 -68.640 -52.272 -68.834 -52.141 -69.222 -52.141 -69.377 -52.127 -69.533 -51.996 -69.999 -51.996 -71.902 -51.851 -71.960 -51.735 -72.154 -51.706 -72.271 -51.559 -72.426 -51.399 -72.310 -51.282 -72.290 -51.267 -72.251 -51.120 -72.387 -50.959 -72.251 -50.812 -72.271 -50.708 -72.329 -50.605 -72.523 -50.664 -72.892 -50.767 -73.086 -50.620 -73.203 -50.472 -73.261 -50.324 -73.280 -50.176 -73.475 -49.998 -73.475 -49.565 -73.552 ; #1330 -5 69.659 -141.008 69.593 -140.406 69.615 -139.998 69.604 -139.803 69.516 -139.182 69.418 -138.988 69.352 -138.774 69.241 -138.600 69.230 -138.444 69.120 -138.037 69.010 -137.435 68.943 -137.241 68.954 -137.046 68.898 -136.852 68.876 -136.639 68.898 -136.445 68.898 -136.425 67.674 -136.425 67.617 -136.231 67.377 -136.114 67.217 -136.153 67.056 -136.212 66.998 -136.173 67.010 -134.969 66.998 -133.901 66.883 -133.881 66.848 -133.843 66.733 -133.843 66.604 -133.707 66.442 -133.668 66.314 -133.823 66.302 -133.610 66.174 -133.551 66.056 -133.707 66.056 -133.668 65.951 -133.454 66.021 -133.066 65.997 -132.911 65.962 -132.328 65.892 -132.542 65.657 -132.212 65.561 -132.212 65.443 -132.328 65.360 -132.522 65.193 -132.775 65.193 -132.581 65.086 -132.386 64.967 -132.503 64.931 -132.503 64.811 -132.600 64.727 -132.212 64.643 -131.998 64.583 -131.920 64.546 -131.726 64.426 -131.804 64.366 -131.609 64.450 -131.415 64.426 -131.221 64.342 -131.027 64.208 -130.949 64.135 -130.949 63.929 -130.561 63.819 -130.289 63.697 -130.328 63.697 -130.134 63.624 -129.998 63.501 -129.843 63.378 -129.920 63.341 -129.998 63.230 -129.998 63.107 -129.843 63.082 -129.629 62.908 -129.726 62.772 -129.668 62.586 -129.435 62.511 -129.221 62.261 -129.280 62.223 -129.221 62.060 -128.833 62.122 -128.600 62.009 -128.386 61.884 -128.231 61.808 -128.037 61.733 -127.998 61.529 -127.610 61.491 -127.221 61.352 -127.066 61.225 -127.027 61.097 -127.085 61.033 -127.066 60.905 -126.930 60.776 -126.891 60.751 -126.716 60.816 -126.503 60.776 -126.309 60.867 -126.114 60.803 -125.998 60.867 -125.804 60.789 -125.416 60.854 -125.124 60.854 -124.930 60.956 -124.736 60.841 -124.522 60.700 -124.619 60.572 -124.464 60.469 -124.231 60.339 -124.212 60.080 -123.979 60.041 -124.018 60.002 -123.823 60.002 -119.998 57.392 -119.998 57.338 -120.270 57.352 -121.338 57.352 -121.629 57.284 -122.367 57.189 -122.600 57.121 -122.658 56.152 -122.561 56.125 -122.561 55.876 -122.522 55.586 -122.600 55.516 -122.561 55.503 -122.542 55.489 -122.095 55.113 -121.746 54.889 -121.493 54.694 -121.182 54.638 -121.047 54.328 -120.309 54.174 -120.115 53.806 -119.998 53.705 -119.804 53.592 -119.920 53.450 -119.784 53.364 -119.532 53.135 -119.047 53.178 -118.853 53.050 -118.717 52.877 -118.620 52.848 -118.620 52.762 -118.717 52.776 -118.950 52.748 -119.163 52.431 -118.930 52.258 -118.755 52.098 -118.522 51.501 -117.493 51.487 -117.474 51.268 -117.144 50.752 -116.697 50.399 -116.522 49.998 -116.425 49.625 -116.056 49.430 -115.920 49.251 -115.959 49.221 -115.959 48.995 -116.056 48.088 -116.056 47.920 -115.979 47.646 -115.688 47.493 -115.649 47.463 -115.726 47.340 -115.532 47.263 -115.319 47.140 -115.202 46.971 -115.008 46.925 -114.930 46.879 -114.930 46.725 -114.736 46.648 -114.542 46.648 -114.503 46.632 -114.328 46.307 -114.425 46.075 -114.464 45.919 -114.406 45.888 -114.386 45.732 -114.503 45.561 -114.542 45.498 -114.639 45.405 -114.717 45.514 -115.008 45.576 -115.202 45.388 -115.513 45.452 -115.726 45.452 -115.920 45.405 -116.212 45.561 -116.289 45.670 -116.270 45.825 -116.289 45.982 -116.445 46.013 -116.581 45.856 -116.775 45.779 -116.581 45.623 -116.445 45.514 -116.542 45.357 -116.658 45.185 -116.697 45.044 -116.833 44.997 -116.853 44.839 -116.891 44.682 -117.066 44.540 -117.144 44.366 -117.202 44.303 -117.202 44.303 -117.338 44.429 -117.591 44.429 -117.862 44.350 -118.056 44.145 -118.212 43.126 -118.212 42.677 -118.192 42.500 -118.115 42.500 -117.008 42.000 -117.008 42.000 -114.037 36.212 -114.037 36.042 -114.134 36.127 -114.328 36.161 -114.542 36.076 -114.736 36.008 -114.736 35.616 -114.639 35.428 -114.639 35.342 -114.581 35.000 -114.619 34.983 -114.619 34.811 -114.561 34.743 -114.484 34.726 -114.484 34.709 -114.464 34.536 -114.367 34.312 -114.134 34.140 -114.309 33.968 -114.503 33.898 -114.503 33.725 -114.484 33.604 -114.542 33.500 -114.581 33.326 -114.717 33.136 -114.678 33.101 -114.697 33.014 -114.503 32.893 -114.464 32.735 -114.542 32.735 -114.619 32.718 -114.717 32.701 -114.717 32.509 -114.814 32.492 -114.833 32.492 -114.911 32.474 -114.930 32.404 -114.969 32.317 -115.008 32.265 -115.027 32.177 -114.969 32.159 -114.969 31.897 -114.930 31.932 -115.008 31.967 -115.027 31.897 -115.008 31.722 -114.814 31.194 -114.872 31.019 -114.833 30.825 -114.697 30.648 -114.697 30.471 -114.619 30.294 -114.639 29.993 -114.542 29.816 -114.386 29.745 -114.192 29.300 -113.649 29.121 -113.552 28.943 -113.532 28.657 -113.144 28.282 -112.872 27.994 -112.755 27.994 -114.192 28.174 -114.056 28.371 -114.056 28.567 -114.154 28.925 -114.542 29.335 -114.911 29.424 -115.105 29.424 -115.183 29.727 -115.649 29.922 -115.726 29.993 -115.804 30.188 -115.804 30.365 -115.843 30.435 -115.920 30.630 -116.037 30.807 -116.056 30.948 -116.251 31.212 -116.328 31.528 -116.639 31.880 -116.678 32.054 -116.872 32.248 -116.911 32.422 -117.086 32.561 -117.124 32.735 -117.260 32.910 -117.260 33.101 -117.319 33.274 -117.435 33.449 -117.629 33.691 -118.017 33.777 -118.212 33.708 -118.289 33.898 -118.406 34.054 -118.600 34.002 -118.794 34.071 -119.008 34.157 -119.202 34.330 -119.396 34.416 -119.590 34.467 -119.979 34.467 -120.406 34.553 -120.600 34.897 -120.639 35.068 -120.600 35.205 -120.794 35.376 -120.833 35.667 -121.221 35.838 -121.377 36.008 -121.474 36.178 -121.668 36.297 -121.862 36.466 -121.901 36.737 -121.746 36.906 -121.823 36.957 -122.037 37.075 -122.231 37.244 -122.387 37.411 -122.406 37.581 -122.503 37.765 -122.484 37.597 -122.289 37.479 -122.095 37.664 -122.134 37.831 -122.309 37.999 -122.348 38.049 -121.920 38.016 -121.726 38.066 -121.532 38.150 -121.668 38.066 -121.882 38.083 -122.076 38.049 -122.115 38.133 -122.309 37.966 -122.484 37.898 -122.678 38.033 -122.872 38.217 -122.949 38.467 -123.124 38.933 -123.707 39.099 -123.687 39.266 -123.765 39.613 -123.765 39.778 -123.823 39.943 -123.920 40.156 -124.173 40.338 -124.328 40.502 -124.348 40.649 -124.289 40.812 -124.153 40.977 -124.115 41.139 -124.134 41.302 -124.076 41.545 -124.056 41.870 -124.192 42.000 -124.192 42.161 -124.348 42.323 -124.406 42.596 -124.386 42.757 -124.503 42.917 -124.503 43.254 -124.367 43.461 -124.192 43.621 -124.212 43.716 -124.056 43.875 -124.134 44.839 -124.056 45.436 -123.920 46.059 -123.920 46.230 -123.959 46.214 -123.551 46.152 -123.357 46.199 -123.163 46.214 -123.357 46.276 -123.551 46.307 -123.959 46.462 -124.037 46.632 -124.056 46.478 -123.998 46.632 -123.940 46.725 -124.037 46.894 -124.115 46.971 -123.804 47.017 -123.998 47.171 -124.173 47.325 -124.270 47.356 -124.251 47.508 -124.328 47.676 -124.367 47.829 -124.464 47.981 -124.639 48.134 -124.678 48.285 -124.658 48.391 -124.716 48.361 -124.522 48.285 -124.328 48.179 -123.920 48.134 -123.338 48.179 -123.144 48.119 -122.949 48.149 -122.755 47.996 -122.697 47.829 -122.697 47.524 -123.047 47.371 -123.144 47.386 -122.949 47.524 -123.027 47.661 -122.814 47.813 -122.678 47.829 -122.484 47.661 -122.600 47.508 -122.503 47.325 -122.561 47.186 -122.755 47.340 -122.775 47.186 -122.969 47.063 -122.872 47.109 -122.678 47.263 -122.542 47.356 -122.348 47.661 -122.406 47.829 -122.367 47.981 -122.251 48.134 -122.367 48.300 -122.387 48.482 -122.697 48.452 -122.503 48.603 -122.445 48.754 -122.522 48.830 -122.717 48.995 -122.755 49.070 -122.949 48.995 -123.027 48.995 -123.085 49.145 -123.047 49.191 -123.124 49.296 -123.008 49.326 -123.163 49.475 -123.241 49.625 -123.202 49.550 -123.396 49.400 -123.513 49.475 -123.901 49.625 -124.056 49.640 -123.649 49.700 -123.532 49.655 -123.726 49.759 -123.920 49.908 -123.882 49.998 -123.940 50.146 -123.823 49.998 -123.998 49.848 -123.920 49.789 -124.115 49.759 -124.309 49.789 -124.503 49.998 -124.794 49.998 -124.678 50.146 -124.639 50.294 -124.658 50.428 -124.464 50.428 -124.658 50.309 -124.852 50.324 -125.066 50.472 -125.066 50.576 -124.872 50.886 -124.794 50.930 -124.852 50.782 -124.949 50.635 -124.911 50.502 -125.105 50.458 -125.299 50.458 -125.493 50.605 -125.532 50.458 -125.629 50.531 -125.823 50.472 -126.017 50.502 -126.231 50.605 -126.017 50.590 -126.231 50.635 -126.270 50.664 -125.862 50.738 -125.668 50.886 -125.532 51.032 -125.551 50.738 -125.726 50.679 -125.920 50.679 -126.134 50.827 -126.192 50.856 -126.386 50.915 -126.192 50.930 -126.386 50.900 -126.580 50.900 -126.988 50.930 -127.182 50.871 -126.969 50.871 -127.182 50.915 -127.377 51.076 -127.493 51.062 -127.299 51.047 -127.105 51.062 -126.891 51.106 -126.697 51.076 -126.891 51.062 -127.299 51.120 -127.687 51.268 -127.629 51.282 -127.299 51.370 -127.105 51.297 -127.318 51.326 -127.707 51.530 -127.513 51.647 -127.318 51.647 -126.736 51.793 -126.658 51.677 -126.872 51.677 -127.260 51.822 -127.338 51.706 -127.551 51.632 -127.551 51.472 -127.629 51.589 -127.823 51.793 -127.881 51.938 -127.804 52.083 -127.629 52.083 -127.435 52.229 -127.338 52.315 -127.144 52.258 -126.949 52.112 -126.814 52.258 -126.911 52.373 -126.775 52.344 -127.124 52.489 -127.221 52.618 -127.027 52.776 -126.949 52.474 -127.260 52.200 -127.862 52.344 -127.901 52.503 -127.862 52.359 -127.940 52.503 -128.017 52.359 -128.211 52.503 -128.231 52.834 -128.134 52.805 -128.347 52.949 -128.503 53.092 -128.503 53.292 -128.872 53.436 -128.891 53.464 -128.697 53.378 -128.503 53.464 -128.289 53.436 -128.095 53.292 -127.959 53.436 -128.076 53.436 -128.095 53.478 -128.270 53.436 -128.522 53.563 -128.716 53.705 -128.775 53.848 -128.678 53.834 -128.483 53.890 -128.678 54.032 -128.600 54.003 -128.678 53.862 -128.833 53.790 -129.027 53.649 -129.202 53.378 -129.280 53.478 -129.474 53.862 -129.998 54.018 -130.076 54.159 -130.037 54.018 -129.804 54.159 -129.920 54.230 -129.474 54.230 -129.881 54.188 -129.998 54.202 -130.212 54.244 -130.270 54.385 -130.250 54.342 -130.445 54.624 -130.445 54.342 -130.076 54.314 -129.998 54.469 -130.056 54.483 -129.998 54.511 -129.998 54.483 -130.192 54.624 -130.367 54.694 -130.153 54.722 -130.192 54.974 -129.998 55.002 -129.629 55.002 -129.823 55.141 -129.901 55.281 -129.745 55.433 -129.648 55.572 -129.784 55.295 -129.823 55.141 -129.920 55.085 -129.998 55.336 -129.998 55.766 -130.114 55.918 -129.998 55.904 -130.017 56.056 -130.037 56.097 -130.250 56.193 -130.445 56.275 -130.639 56.371 -130.852 56.399 -131.047 56.481 -131.260 56.550 -131.454 56.604 -131.668 56.659 -131.823 56.795 -131.862 56.850 -132.076 56.999 -132.037 57.067 -132.250 57.203 -132.231 57.352 -132.347 57.487 -132.522 57.621 -132.658 57.756 -132.794 57.890 -132.911 58.024 -133.085 58.172 -133.182 58.291 -133.376 58.411 -133.396 58.544 -133.610 58.570 -133.648 58.730 -133.823 58.796 -134.037 58.862 -134.250 58.994 -134.386 59.126 -134.464 59.179 -134.658 59.270 -134.872 59.402 -135.046 59.546 -135.007 59.624 -135.105 59.715 -135.318 59.794 -135.512 59.728 -135.726 59.663 -135.959 59.650 -136.153 59.598 -136.347 59.468 -136.309 59.336 -136.464 59.192 -136.541 59.165 -136.755 59.113 -136.949 59.034 -137.163 58.954 -137.357 59.100 -137.532 59.231 -137.590 59.349 -137.804 59.442 -137.979 59.455 -138.017 59.559 -138.211 59.676 -138.425 59.768 -138.619 59.911 -138.697 59.963 -138.891 60.002 -139.046 60.145 -139.163 60.274 -139.085 60.352 -139.299 60.339 -139.493 60.326 -139.707 60.223 -139.920 60.197 -139.998 60.249 -140.211 60.300 -140.425 60.236 -140.639 60.274 -140.833 60.429 -141.008 62.971 -141.008 ; #1331 3 5.934 80.561 5.973 80.736 6.031 80.833 6.109 81.027 6.109 81.106 6.186 81.319 6.186 81.338 6.341 81.532 6.496 81.726 6.515 81.748 6.727 81.823 6.901 81.882 7.094 81.882 7.287 81.901 7.442 81.845 7.461 81.823 7.442 81.823 7.461 81.785 7.519 81.785 7.713 81.726 7.751 81.726 7.944 81.591 8.060 81.494 8.253 81.435 8.465 81.262 8.542 81.262 8.715 81.184 8.908 81.046 8.966 80.930 9.101 80.911 9.293 80.814 9.447 80.658 9.582 80.464 9.716 80.269 9.813 80.075 9.813 80.019 9.678 80.019 9.582 80.213 9.639 80.232 9.524 80.407 9.524 80.426 9.486 80.485 9.486 80.426 9.505 80.426 9.524 80.251 9.582 80.075 9.389 80.056 9.197 80.135 9.177 80.116 8.985 80.019 8.947 79.940 8.812 79.940 8.754 79.959 8.561 79.921 8.484 79.884 8.291 79.843 8.233 79.806 8.041 79.824 7.983 79.843 7.983 79.765 8.176 79.708 7.983 79.727 7.790 79.784 7.597 79.806 7.461 79.824 7.268 79.843 7.171 79.824 6.978 79.884 6.920 79.862 6.727 79.903 6.592 79.959 6.438 80.000 6.380 80.019 6.225 80.056 6.031 80.194 5.954 80.388 ; #1332 3 9.101 79.746 9.081 79.708 8.966 79.903 8.966 79.921 9.101 79.765 ; #1333 -1 54.322 52.471 54.279 52.277 54.223 52.413 54.081 52.510 53.982 52.471 53.841 52.432 53.769 52.413 53.628 52.296 53.585 52.277 53.443 52.219 53.300 52.238 53.257 52.238 53.114 52.219 52.971 52.063 52.928 51.986 52.884 51.908 52.741 51.830 52.654 51.791 52.640 51.597 52.496 51.578 52.337 51.481 52.207 51.519 52.177 51.519 52.032 51.383 51.916 51.189 51.844 50.995 51.757 50.859 51.902 50.801 51.974 50.607 52.018 50.432 52.018 50.335 52.148 50.121 52.192 50.082 52.192 49.888 52.337 49.713 52.380 49.597 52.380 49.403 52.467 49.422 52.481 49.228 52.481 49.170 52.409 48.975 52.554 48.820 52.640 48.762 52.683 48.568 52.669 48.529 52.683 48.432 52.712 48.432 52.769 48.509 52.855 48.665 52.971 48.587 52.957 48.548 52.971 48.412 52.985 48.393 53.128 48.276 53.157 48.218 53.185 48.179 53.328 48.043 53.400 48.082 53.443 48.276 53.443 48.393 53.585 48.451 53.599 48.412 53.656 48.432 53.656 48.568 53.684 48.587 53.755 48.529 53.727 48.742 53.713 48.937 53.813 49.053 53.855 49.131 53.855 49.150 53.827 49.325 53.855 49.519 53.813 49.713 53.869 49.849 53.813 50.063 53.813 50.082 53.968 50.082 54.025 50.277 54.166 50.296 54.209 50.315 54.322 50.315 54.420 50.238 54.504 50.160 54.497 50.155 54.455 50.349 54.342 50.543 54.357 50.562 54.413 50.776 54.399 50.776 54.399 50.970 54.413 51.009 54.568 51.106 54.638 51.320 54.680 51.397 54.638 51.533 54.554 51.727 54.540 51.922 54.413 52.057 54.441 52.252 54.483 52.446 54.455 52.504 ; #1334 8 28.228 97.357 28.317 97.241 28.353 97.046 28.335 97.046 28.442 96.736 28.460 96.620 28.442 96.582 28.496 96.388 28.800 96.620 28.889 96.561 29.068 96.523 28.979 96.194 29.086 96.172 29.211 96.367 29.246 96.329 29.353 96.194 29.460 96.097 29.389 95.903 29.389 95.881 29.300 95.709 29.032 95.415 29.157 95.007 29.139 95.007 29.175 94.835 29.318 94.640 29.086 94.230 28.979 94.155 28.836 93.980 28.800 93.939 28.728 93.804 28.675 93.610 28.657 93.416 28.603 93.241 28.425 93.165 28.371 93.125 28.264 92.949 28.192 92.795 28.066 92.680 27.886 92.580 27.815 92.251 27.797 92.116 27.725 91.922 27.761 91.806 27.761 91.668 27.581 91.630 27.490 91.687 27.454 91.922 27.329 92.116 27.166 92.038 26.914 92.135 26.860 92.094 26.805 91.900 26.805 91.727 26.878 91.493 26.769 91.299 26.824 91.104 26.787 90.988 26.787 90.969 26.769 90.775 26.842 90.503 26.860 90.309 26.733 90.114 26.733 89.901 26.715 89.864 26.697 89.845 26.769 89.650 26.787 89.610 26.860 89.378 26.824 89.241 26.932 89.046 26.968 88.893 27.148 88.777 27.311 88.930 27.383 88.852 27.454 88.795 27.545 88.777 27.725 88.874 27.904 88.874 28.066 88.755 28.030 88.542 27.976 88.348 27.868 88.154 27.904 87.903 27.815 87.708 27.815 87.436 27.850 87.396 27.833 87.201 27.940 86.988 28.084 86.775 27.958 86.543 27.940 86.524 27.994 86.330 28.084 86.114 27.886 86.077 27.994 85.980 28.012 85.980 28.084 85.942 28.335 85.748 28.282 85.532 28.282 85.319 28.335 85.124 28.407 85.124 28.603 85.222 28.585 85.009 28.550 84.852 28.693 84.658 28.925 84.251 29.068 84.213 29.246 84.075 29.264 83.862 29.157 83.668 29.335 83.474 29.478 83.377 29.478 83.320 29.585 83.280 29.691 82.853 29.993 82.446 30.082 82.252 30.347 82.039 30.365 81.823 30.418 81.629 30.383 81.435 30.153 81.378 30.064 81.300 30.046 81.124 30.206 81.046 30.471 80.601 30.577 80.213 30.630 80.232 30.789 80.097 30.860 80.019 30.878 79.959 30.983 79.765 30.948 79.571 31.019 79.514 31.089 79.417 31.106 79.417 31.212 79.301 31.405 79.164 31.353 78.969 31.282 78.891 31.458 78.775 31.599 78.853 31.774 78.697 31.827 78.737 31.845 78.737 31.915 78.756 32.072 78.659 32.248 78.484 32.422 78.484 32.544 78.406 32.579 78.640 32.631 78.737 32.614 78.794 32.439 78.835 32.370 79.029 32.387 79.126 32.509 79.261 32.561 79.417 32.648 79.514 32.666 79.533 32.841 79.474 32.997 79.377 33.170 79.398 33.222 79.204 33.326 79.010 33.414 78.950 33.552 78.950 33.742 79.029 33.760 79.029 33.794 78.988 33.863 78.950 34.037 79.145 34.020 79.377 34.089 79.493 34.261 79.592 34.398 79.552 34.416 79.630 34.416 79.727 34.450 79.784 34.570 79.843 34.657 79.959 34.657 80.019 34.777 80.116 34.948 80.213 35.120 80.213 35.462 80.407 35.514 80.329 35.531 80.291 35.548 80.213 35.514 80.019 35.599 79.843 35.769 79.649 35.838 79.649 35.957 79.455 35.957 79.261 35.940 79.242 35.923 79.029 35.906 78.872 35.769 78.484 35.650 78.252 35.496 77.863 35.102 77.046 35.000 77.068 34.811 76.971 34.794 76.971 34.657 76.833 34.743 76.698 34.760 76.504 34.691 76.310 34.606 76.135 34.623 76.078 34.570 75.884 34.502 75.687 34.606 75.301 34.640 75.007 34.657 74.913 34.691 74.716 34.777 74.368 34.691 74.174 34.674 73.979 34.606 73.961 34.433 73.845 34.347 73.823 34.244 74.017 34.106 73.920 34.020 74.095 34.002 74.290 33.846 74.095 33.725 73.998 33.708 73.998 33.656 74.017 33.466 74.193 33.292 74.095 33.292 74.058 33.119 74.136 33.014 74.330 32.841 74.368 32.823 74.349 32.752 74.543 32.579 74.678 32.561 74.678 32.492 74.872 32.474 75.007 32.335 75.339 32.177 75.339 32.072 75.007 32.019 74.872 31.897 74.678 31.722 74.524 31.617 74.600 31.599 74.600 31.564 74.621 31.388 74.600 31.317 74.581 31.142 74.543 31.089 74.697 31.036 74.659 31.054 74.621 31.036 74.562 31.001 74.562 30.948 74.524 30.878 74.330 30.700 74.193 30.648 74.114 30.471 73.979 30.383 73.882 30.365 73.863 30.330 73.942 30.312 73.961 30.188 73.979 30.153 73.942 30.046 73.747 29.993 73.553 29.904 73.397 29.727 73.337 29.549 73.281 29.371 73.165 29.193 73.046 29.014 72.892 28.925 72.698 28.818 72.504 28.675 72.310 28.478 72.251 28.300 72.116 28.120 71.940 27.940 71.843 27.868 71.649 27.868 71.455 27.850 71.261 27.779 71.066 27.707 70.853 27.815 70.697 27.994 70.621 28.030 70.407 27.886 70.212 27.743 70.096 27.563 70.018 27.383 69.843 27.221 69.650 27.040 69.533 26.860 69.513 26.679 69.708 26.588 69.902 26.588 70.018 26.479 70.193 26.281 70.193 26.099 70.115 25.917 70.135 25.736 70.271 25.699 70.290 25.681 70.484 25.554 70.678 25.373 70.718 25.190 70.872 25.008 70.932 24.862 70.988 24.679 71.107 24.588 70.988 24.405 71.107 24.332 70.910 24.240 70.718 24.423 70.523 24.313 70.135 24.204 70.077 24.167 70.018 24.167 69.824 24.185 69.708 24.259 69.630 24.295 69.436 24.259 69.242 24.295 69.106 24.313 68.950 24.313 68.756 24.149 68.756 23.965 68.562 23.947 68.368 23.763 68.212 23.579 68.251 23.726 68.465 23.837 68.659 23.856 68.795 23.744 68.620 23.616 68.426 23.432 68.484 23.248 68.620 23.193 68.640 23.064 68.834 22.843 69.222 22.807 69.416 22.751 69.610 22.843 69.824 22.899 70.018 22.954 70.212 22.936 70.407 23.120 70.484 22.991 70.523 22.972 70.504 22.788 70.329 22.585 70.212 22.549 70.018 22.419 69.824 22.345 69.630 22.327 69.436 22.271 69.242 22.456 69.086 22.345 68.970 22.160 69.048 21.975 69.222 21.808 69.416 21.623 69.610 21.623 69.630 21.456 69.824 21.401 69.863 21.215 70.018 21.048 70.193 20.899 70.387 20.807 70.562 20.713 70.756 20.713 70.950 20.768 71.145 20.844 71.358 20.955 71.552 21.029 71.746 21.122 71.940 21.122 71.978 21.307 72.135 21.383 72.172 21.568 72.291 21.753 72.213 21.827 72.019 22.012 72.135 22.067 72.329 22.253 72.232 22.271 72.194 22.364 72.407 22.253 72.523 22.253 72.717 22.271 72.930 22.216 72.930 22.179 72.736 22.105 72.542 21.901 72.542 21.993 72.736 21.808 72.561 21.679 72.601 21.660 72.814 21.697 73.008 21.697 73.027 21.679 73.008 21.642 72.874 21.512 72.679 21.326 72.601 21.141 72.736 21.066 72.717 21.122 72.814 20.937 72.874 20.750 72.930 20.564 72.911 20.378 72.833 20.304 72.776 20.266 72.758 20.079 72.717 20.005 72.717 19.912 72.679 19.724 72.698 19.538 72.852 19.519 72.833 19.332 72.852 19.313 72.911 19.276 73.027 19.220 73.068 19.257 73.008 19.294 72.911 19.313 72.852 19.164 72.833 18.976 72.874 19.052 72.949 19.070 73.008 18.994 73.027 18.808 72.892 18.733 72.874 18.545 72.990 18.339 72.949 18.150 72.990 17.963 73.027 17.775 73.124 17.586 73.203 17.398 73.184 17.284 73.222 17.096 73.281 16.889 73.300 16.775 73.319 16.586 73.337 16.398 73.397 16.208 73.456 16.000 73.494 15.811 73.650 15.716 73.707 15.697 73.688 15.507 73.845 15.450 73.804 15.261 73.920 15.071 73.942 14.881 74.095 14.843 74.155 14.824 74.155 14.710 74.211 14.653 74.290 14.462 74.387 14.272 74.446 14.234 74.524 14.253 74.465 14.234 74.446 14.043 74.503 13.853 74.621 13.662 74.678 13.643 74.697 13.605 74.678 13.415 74.697 13.224 74.756 13.033 74.794 12.842 74.853 12.823 74.872 12.823 74.853 12.765 74.872 12.632 74.932 12.441 75.007 12.402 75.048 12.211 75.145 12.020 75.280 12.001 75.280 11.943 75.339 11.943 75.358 11.924 75.358 11.828 75.417 11.637 75.571 11.598 75.571 11.541 75.592 11.350 75.765 11.158 75.805 10.966 75.884 10.774 75.940 10.582 76.019 10.390 76.116 10.178 76.232 10.005 76.232 10.005 76.291 9.967 76.291 9.870 76.388 9.678 76.388 9.870 76.310 9.909 76.310 9.947 76.291 9.851 76.269 9.659 76.310 9.524 76.310 9.332 76.388 9.120 76.464 8.927 76.542 8.927 76.563 8.869 76.582 8.850 76.620 8.657 76.776 8.465 76.930 8.272 77.124 8.253 77.143 8.118 77.338 8.079 77.532 8.176 77.726 8.291 77.920 8.465 78.114 8.657 78.136 8.812 78.193 8.985 78.290 9.120 78.484 9.177 78.678 9.235 78.872 9.254 79.066 9.254 79.261 9.139 79.455 9.139 79.474 9.312 79.339 9.293 79.145 9.409 78.950 9.601 78.969 9.813 79.107 10.005 79.261 10.082 79.261 10.274 79.339 10.332 79.533 10.313 79.687 10.409 79.884 10.620 79.862 11.139 79.862 11.292 79.687 11.311 79.708 11.502 79.784 11.713 79.784 11.752 79.806 11.771 79.806 11.809 79.824 11.828 79.824 11.963 79.862 12.001 79.884 12.039 79.884 12.230 80.019 12.249 80.019 12.441 80.153 12.460 80.172 12.651 80.232 12.861 80.269 13.052 80.291 13.244 80.329 13.435 80.348 13.473 80.269 13.511 80.135 13.511 80.116 13.624 80.153 13.511 80.291 13.529 80.310 13.720 80.251 13.910 80.213 14.101 80.153 14.291 80.172 14.481 80.194 14.557 80.153 14.634 80.172 14.824 80.097 15.014 80.075 15.204 80.116 15.393 80.153 15.583 80.251 15.773 80.388 15.868 80.601 15.886 80.795 16.019 80.893 15.830 80.949 15.773 81.027 15.962 81.143 16.170 81.203 16.360 81.319 16.360 81.513 16.322 81.707 16.322 81.726 16.378 81.920 16.398 81.961 16.492 82.155 16.586 82.309 16.624 82.309 16.813 82.387 17.002 82.309 17.190 82.484 17.304 82.678 17.398 82.872 17.511 83.085 17.642 83.280 17.680 83.261 17.699 83.301 17.887 83.474 18.056 83.668 18.131 83.784 18.226 83.978 18.339 84.135 18.526 84.329 18.714 84.485 18.901 84.639 19.089 84.795 19.108 84.795 19.294 84.990 19.463 85.184 19.594 85.378 19.687 85.572 19.594 85.378 19.575 85.359 19.613 85.338 19.631 85.397 19.669 85.397 19.650 85.319 19.501 85.124 19.706 85.222 19.856 85.416 19.706 85.532 19.687 85.475 19.724 85.669 19.836 86.058 19.893 86.252 20.005 86.309 20.135 86.174 20.005 86.368 20.005 86.406 20.191 86.524 20.266 86.716 20.304 86.716 20.490 86.756 20.620 86.951 20.657 87.007 20.694 86.951 20.768 86.891 20.955 86.910 21.141 86.853 21.326 86.951 21.512 87.145 21.568 87.339 21.549 87.377 21.605 87.493 21.642 87.687 21.753 87.881 21.938 88.038 22.124 88.194 22.364 87.940 22.234 88.097 22.049 88.232 21.864 88.172 21.716 88.213 21.605 88.232 21.586 88.251 21.549 88.269 21.642 88.310 21.716 88.348 21.697 88.407 21.605 88.445 21.790 88.485 21.827 88.504 21.882 88.485 21.697 88.523 21.642 88.542 21.586 88.523 21.531 88.561 21.568 88.561 21.623 88.601 21.771 88.601 21.956 88.620 22.105 88.620 22.197 88.679 22.197 88.698 22.012 88.679 22.124 88.777 22.049 88.755 21.864 88.717 21.716 88.698 21.642 88.795 21.679 88.833 21.734 88.874 21.753 88.874 21.642 88.949 21.827 89.046 21.882 89.009 21.938 88.930 21.975 88.930 21.975 88.949 22.142 89.065 22.124 89.087 22.046 89.068 22.214 89.068 22.417 88.992 22.564 88.933 22.638 88.952 22.657 88.933 22.951 88.895 23.044 88.874 23.062 88.874 23.228 88.933 23.375 88.758 23.503 88.798 23.522 88.777 23.613 88.623 23.705 88.563 23.890 88.642 23.981 88.739 24.018 88.720 24.201 88.720 24.201 88.739 24.256 88.739 24.329 88.701 24.329 88.661 24.348 88.488 24.348 88.466 24.421 88.369 24.439 88.350 24.458 88.332 24.476 88.253 24.530 88.118 24.787 88.100 24.969 88.197 24.896 88.272 24.987 88.410 25.024 88.410 25.206 88.448 25.206 88.720 25.188 88.758 25.188 88.952 25.297 89.011 25.533 88.777 25.515 88.563 25.624 88.448 25.679 88.448 25.952 88.118 26.133 88.175 26.206 88.294 26.315 88.369 26.387 88.526 26.460 88.488 26.513 88.332 26.622 88.388 26.550 88.488 26.531 88.507 26.369 88.701 26.297 88.720 26.315 88.777 26.315 88.798 26.297 88.933 26.242 88.971 26.242 89.030 26.424 88.914 26.351 89.127 26.151 89.146 26.024 89.340 26.024 89.456 26.097 89.632 26.206 89.691 26.115 89.748 26.024 89.845 25.970 89.807 25.952 89.826 25.952 89.866 25.915 89.845 25.824 89.807 25.788 89.826 25.733 89.826 25.697 89.845 25.606 89.866 25.588 89.866 25.570 89.845 25.551 89.845 25.478 89.826 25.425 89.826 25.388 89.807 25.316 89.923 25.297 90.001 25.224 90.214 25.224 90.255 25.170 90.427 25.170 90.934 25.224 91.245 25.133 91.633 25.152 91.690 25.206 92.021 25.152 92.216 25.042 92.410 25.005 92.410 24.878 92.466 24.859 92.369 24.896 92.253 24.823 92.253 24.549 92.156 24.366 91.981 24.366 91.943 24.183 91.903 24.183 91.690 24.220 91.652 24.110 91.574 24.110 91.379 24.018 91.301 23.853 91.245 23.669 91.166 23.485 91.245 23.099 91.361 23.191 91.495 22.988 91.574 23.007 91.711 23.191 91.808 23.375 91.808 23.430 91.846 23.522 91.962 23.705 91.943 23.669 92.059 23.742 92.175 23.742 92.272 23.613 92.272 23.338 92.369 23.301 92.391 23.117 92.369 22.933 92.410 22.896 92.448 22.398 92.564 21.991 92.604 22.105 92.814 22.067 92.852 22.030 93.009 22.197 93.184 22.382 93.203 22.567 93.143 22.751 93.125 22.788 93.106 22.972 93.143 23.046 93.338 23.083 93.359 23.285 93.397 23.469 93.416 23.653 93.435 23.671 93.454 23.781 93.416 23.856 93.397 24.039 93.338 23.965 93.551 24.002 93.748 23.947 93.939 23.856 94.133 23.837 94.155 24.039 94.252 24.222 94.290 24.240 94.309 24.442 94.406 24.624 94.522 24.716 94.600 24.825 94.640 25.008 94.738 25.190 94.600 25.373 94.640 25.446 94.678 25.572 94.891 25.590 94.910 25.736 95.007 25.827 95.048 26.009 95.164 26.190 95.126 26.371 95.104 26.552 95.164 26.679 95.261 26.715 95.455 26.733 95.474 26.896 95.687 27.005 95.881 27.184 96.056 27.257 96.154 27.293 96.367 27.311 96.561 27.365 96.755 27.184 96.893 27.094 97.068 27.112 97.162 27.293 97.068 27.472 96.911 27.653 96.949 27.743 97.068 27.904 97.259 27.994 97.397 28.120 97.338 28.228 97.357 ; #1335 -7 9.928 98.600 10.005 98.619 10.197 98.716 10.351 98.756 10.159 98.659 10.005 98.581 9.986 98.562 10.005 98.543 10.197 98.503 10.390 98.543 10.524 98.503 10.735 98.484 10.870 98.600 11.062 98.738 11.273 98.775 11.464 98.775 11.656 98.756 11.828 98.835 11.713 98.640 11.905 98.659 12.097 98.659 12.211 98.738 12.307 98.697 12.345 98.716 12.441 98.619 12.651 98.678 12.708 98.716 12.708 98.678 12.899 98.619 13.091 98.600 13.301 98.503 13.454 98.446 13.643 98.328 13.834 98.271 14.025 98.230 14.062 98.212 14.025 98.193 13.853 98.212 13.662 98.193 13.853 98.114 14.043 98.096 14.234 98.058 14.348 98.017 14.538 97.961 14.729 98.017 14.881 97.804 14.995 97.823 15.052 97.804 15.242 97.767 15.431 97.785 15.621 97.767 15.716 97.745 15.905 97.707 16.094 97.629 16.208 97.648 16.398 97.648 16.548 97.707 16.567 97.745 16.567 97.688 16.530 97.648 16.530 97.551 16.605 97.357 16.793 97.259 16.945 97.203 17.134 97.203 17.265 97.046 17.454 96.893 17.304 96.930 17.134 96.871 17.077 96.911 16.889 96.833 16.775 96.833 16.586 96.658 16.492 96.464 16.662 96.270 16.813 96.291 16.793 96.251 16.775 96.232 16.756 96.194 16.718 96.213 16.605 96.251 16.548 96.270 16.360 96.213 16.378 96.019 16.245 95.903 16.208 95.746 16.132 95.746 15.943 95.668 15.754 95.474 15.754 95.299 15.962 95.377 16.151 95.377 16.113 95.339 16.094 95.339 16.000 95.280 15.830 95.126 16.037 95.145 16.132 95.201 16.132 95.183 16.151 95.145 15.981 95.085 15.792 95.007 15.849 94.872 16.037 94.932 16.057 94.891 16.245 95.007 16.170 94.872 15.962 94.697 16.151 94.813 16.019 94.640 16.208 94.697 16.322 94.716 16.511 94.756 16.511 94.716 16.530 94.697 16.435 94.697 16.245 94.543 16.057 94.425 16.019 94.230 16.208 94.252 16.398 94.271 16.605 94.349 16.793 94.425 16.983 94.465 17.190 94.465 17.265 94.522 17.454 94.581 17.605 94.600 17.812 94.503 18.000 94.465 18.189 94.446 18.282 94.406 18.470 94.309 18.658 94.252 18.770 94.212 18.957 94.058 19.145 94.036 19.332 94.077 19.350 94.058 19.201 93.920 19.388 93.998 19.519 93.864 19.706 93.842 19.687 93.726 19.875 93.610 20.005 93.416 20.079 93.397 20.098 93.359 20.061 93.319 20.061 93.222 20.005 93.184 20.005 93.143 19.818 93.184 20.005 93.065 20.191 93.125 20.210 93.143 20.191 93.009 20.378 93.125 20.378 93.087 20.360 93.065 20.471 93.065 20.546 93.087 20.490 93.065 20.360 93.027 20.173 92.930 20.266 92.833 20.341 92.893 20.415 92.852 20.601 92.717 20.490 92.736 20.304 92.717 20.490 92.601 20.676 92.426 20.862 92.329 21.048 92.270 20.881 92.251 20.955 92.213 21.159 92.056 21.344 92.138 21.399 92.234 21.380 92.429 21.305 92.661 21.342 92.661 21.528 92.604 21.898 92.623 21.991 92.604 22.105 92.814 22.067 92.852 22.030 93.009 22.197 93.184 22.382 93.203 22.567 93.143 22.751 93.125 22.788 93.106 22.972 93.143 23.046 93.338 23.083 93.359 23.285 93.397 23.469 93.416 23.653 93.435 23.671 93.454 23.781 93.416 23.856 93.397 24.039 93.338 23.965 93.551 24.002 93.748 23.947 93.939 23.856 94.133 23.837 94.155 24.039 94.252 24.222 94.290 24.240 94.309 24.442 94.406 24.624 94.522 24.716 94.600 24.825 94.640 25.008 94.738 25.190 94.600 25.373 94.640 25.446 94.678 25.572 94.891 25.590 94.910 25.736 95.007 25.827 95.048 26.009 95.164 26.190 95.126 26.371 95.104 26.552 95.164 26.679 95.261 26.715 95.455 26.733 95.474 26.896 95.687 27.005 95.881 27.184 96.056 27.257 96.154 27.293 96.367 27.311 96.561 27.365 96.755 27.184 96.893 27.094 97.068 27.112 97.162 27.293 97.068 27.472 96.911 27.653 96.949 27.743 97.068 27.904 97.259 27.994 97.397 28.120 97.338 28.228 97.357 28.407 97.494 28.513 97.629 28.335 97.823 28.353 97.939 28.156 98.155 27.976 98.155 27.761 98.252 27.689 98.271 27.653 98.581 27.472 98.697 27.275 98.738 27.094 98.738 26.805 98.794 26.606 98.794 26.462 98.756 26.136 98.640 25.845 98.716 25.809 98.522 25.572 98.387 25.627 98.193 25.590 98.174 25.409 98.155 25.391 98.114 25.300 98.077 25.263 97.883 25.063 97.745 25.008 97.745 24.807 97.688 24.734 97.572 24.533 97.572 24.350 97.707 24.222 97.745 24.185 97.767 24.002 97.629 23.856 97.669 23.947 97.864 24.039 97.998 24.075 98.058 24.130 98.252 24.130 98.446 24.075 98.619 24.112 98.775 24.167 98.910 23.984 98.697 23.856 98.716 23.671 98.854 23.524 98.835 23.469 98.910 23.193 98.951 23.101 99.145 23.101 99.242 23.064 99.512 23.064 99.533 22.807 99.417 22.493 99.396 22.327 99.261 22.160 99.183 22.087 99.377 22.105 99.590 22.067 99.784 22.030 99.843 22.049 99.978 21.790 99.978 21.697 100.019 21.679 100.075 21.642 100.154 21.438 100.232 21.456 100.251 21.494 100.483 21.456 100.542 21.456 100.601 21.568 100.796 21.679 100.912 21.771 101.143 21.568 101.162 21.568 101.184 21.572 101.837 21.424 101.758 21.219 101.856 21.164 101.799 21.126 101.740 21.164 101.702 21.219 101.429 21.201 101.273 21.387 101.235 21.554 101.176 21.554 101.157 21.368 101.003 21.275 100.806 21.293 100.731 21.034 100.634 20.960 100.555 20.848 100.555 20.867 100.653 20.830 100.634 20.773 100.342 20.587 100.186 20.327 100.108 20.327 100.089 20.383 100.011 20.420 99.895 20.308 99.663 20.327 99.566 20.327 99.487 20.121 99.525 20.065 99.353 20.102 99.158 19.991 99.061 19.804 99.021 19.766 98.964 19.748 98.770 19.692 98.632 19.673 98.479 19.655 98.284 19.785 98.090 19.729 98.050 19.561 97.877 19.355 97.818 19.187 97.856 19.000 97.758 18.793 97.758 18.588 97.799 18.474 97.508 18.549 97.392 18.380 97.448 18.306 97.624 18.117 97.702 17.929 97.740 17.911 97.721 17.817 97.702 17.553 97.934 17.365 98.128 17.214 98.225 17.063 98.322 16.893 98.516 16.798 98.557 16.685 98.516 16.269 98.729 16.459 98.867 16.231 98.924 16.042 98.595 15.645 98.595 15.455 98.613 15.341 98.438 15.246 98.419 15.208 98.225 14.981 98.225 14.791 98.284 14.639 98.400 14.277 98.673 14.143 98.867 13.991 99.021 13.705 99.177 13.305 99.215 13.191 99.215 13.000 99.177 12.789 99.234 12.560 99.450 12.369 99.450 12.121 99.525 11.737 99.644 11.545 99.468 11.354 99.390 11.297 99.331 11.086 99.255 11.009 99.158 10.817 99.021 10.759 98.905 10.567 98.808 10.509 98.827 10.336 98.748 10.183 98.711 9.991 98.613 ; #1336 -2 1.320 30.563 1.728 31.009 1.922 31.165 2.155 31.301 2.174 31.281 2.251 31.359 1.922 31.417 1.786 31.339 1.592 31.165 1.515 30.970 1.126 30.699 1.048 30.563 1.009 30.543 1.223 30.485 ; #1337 4 66.256 -122.891 66.139 -123.008 66.115 -123.202 66.162 -123.396 66.104 -123.998 66.174 -124.212 66.151 -124.600 66.033 -124.561 66.033 -124.755 65.915 -124.794 66.021 -124.988 66.139 -125.124 66.256 -125.085 66.256 -124.872 66.279 -124.678 66.244 -124.483 66.360 -124.289 66.326 -124.095 66.337 -123.901 66.465 -123.299 66.465 -123.105 66.546 -122.911 66.546 -122.503 66.570 -122.309 66.639 -121.920 66.697 -121.707 66.710 -121.513 66.872 -121.124 66.860 -120.911 66.894 -120.697 66.952 -120.503 66.952 -120.289 67.021 -119.998 67.044 -119.784 66.964 -119.590 66.906 -119.202 66.894 -118.989 66.674 -119.784 66.651 -119.998 66.546 -120.192 66.465 -120.406 66.384 -120.212 66.384 -120.018 66.337 -119.804 66.302 -119.590 66.337 -119.396 66.314 -119.202 66.326 -118.600 66.372 -118.386 66.442 -118.192 66.558 -118.115 66.662 -117.707 66.546 -117.726 66.419 -117.882 66.454 -117.493 66.337 -117.668 66.221 -117.726 66.151 -117.920 66.033 -117.765 66.056 -117.979 65.939 -118.173 65.821 -118.192 65.810 -117.998 65.857 -117.804 65.786 -117.998 65.727 -117.804 65.727 -117.998 65.668 -118.115 65.668 -118.697 65.786 -118.891 65.798 -119.687 65.680 -119.765 65.609 -119.998 65.573 -119.998 65.479 -119.804 65.455 -119.590 65.325 -119.474 65.337 -119.882 65.170 -120.192 65.098 -120.406 65.003 -120.600 64.931 -121.008 64.823 -121.202 64.811 -121.357 64.931 -121.513 64.979 -121.105 65.098 -121.008 65.253 -120.600 65.372 -120.406 65.490 -120.328 65.597 -120.542 65.609 -120.736 65.573 -120.930 65.514 -121.144 65.432 -121.338 65.384 -121.551 65.264 -121.629 65.146 -121.610 65.015 -121.804 64.979 -121.998 64.979 -122.192 65.015 -122.406 65.063 -123.008 65.146 -123.474 65.217 -123.280 65.217 -123.066 65.253 -122.872 65.384 -122.755 65.502 -122.794 65.632 -122.387 65.739 -122.192 65.857 -122.270 65.892 -122.464 65.962 -122.658 66.009 -122.270 65.986 -122.056 65.927 -121.862 65.927 -121.454 65.997 -121.260 66.104 -121.474 66.244 -121.882 66.256 -122.697 ; #1338 4 62.034 -113.163 62.022 -113.105 62.060 -112.522 62.122 -112.328 62.324 -111.940 62.374 -111.746 62.747 -111.338 62.822 -111.144 62.921 -110.736 62.946 -110.542 62.946 -109.998 62.884 -109.629 62.822 -109.047 62.698 -108.989 62.660 -109.183 62.735 -109.396 62.747 -109.590 62.797 -109.804 62.822 -110.095 62.822 -110.503 62.760 -110.697 62.747 -110.891 62.660 -111.280 62.548 -111.493 62.424 -111.590 62.623 -111.202 62.635 -110.988 62.673 -110.794 62.660 -110.600 62.772 -110.387 62.772 -109.998 62.722 -109.804 62.735 -110.212 62.685 -110.406 62.673 -109.998 62.611 -109.804 62.561 -109.998 62.561 -110.406 62.499 -110.600 62.511 -110.406 62.449 -110.600 62.499 -110.387 62.486 -110.192 62.523 -109.998 62.499 -109.998 62.361 -110.387 62.349 -110.581 62.399 -110.969 62.198 -111.377 62.135 -111.571 62.009 -111.552 61.707 -112.134 61.580 -112.328 61.504 -112.522 61.441 -112.736 61.415 -113.008 61.466 -113.027 61.466 -113.241 61.339 -113.590 61.301 -113.668 61.238 -113.707 61.097 -113.629 60.982 -113.824 60.969 -114.017 61.007 -114.212 60.905 -114.619 60.918 -114.814 60.829 -115.396 60.854 -115.804 60.841 -115.959 60.931 -116.348 61.020 -116.561 61.058 -117.144 61.122 -117.319 61.250 -117.493 61.301 -117.687 61.263 -117.435 61.187 -117.241 61.148 -117.047 61.200 -116.833 61.327 -116.639 61.276 -116.445 61.276 -116.251 61.200 -116.056 61.301 -115.843 61.428 -115.920 61.504 -115.726 61.632 -115.668 61.758 -115.474 61.770 -115.280 61.733 -115.066 61.770 -114.872 61.884 -114.678 62.009 -114.814 62.085 -115.008 62.210 -115.124 62.236 -115.338 62.361 -115.299 62.486 -115.338 62.474 -115.552 62.648 -115.940 62.772 -115.998 62.772 -115.920 62.660 -115.726 62.611 -115.319 62.499 -115.124 62.461 -114.911 62.374 -114.717 62.361 -114.522 62.411 -114.328 62.399 -114.251 62.274 -114.115 62.210 -113.921 62.085 -113.746 62.009 -113.552 61.997 -113.357 ; #1339 2 -2.621 31.863 -2.213 31.670 -1.825 31.708 -1.242 31.863 -1.048 31.883 -1.009 31.805 -0.738 31.728 -0.524 31.844 -0.311 32.019 -0.117 31.980 -0.078 32.174 0.000 32.213 0.039 32.582 0.233 32.640 0.272 32.679 0.078 32.699 0.194 32.893 0.175 33.087 0.369 33.281 0.427 33.203 0.466 33.301 0.311 33.494 0.233 33.436 0.233 33.630 0.155 33.825 0.233 33.961 0.233 34.019 0.058 33.961 0.000 34.019 -0.019 33.999 -0.214 34.194 -0.291 34.388 -0.136 34.601 -0.194 34.796 -0.291 34.854 -0.330 34.563 -0.524 34.446 -0.427 34.252 -0.621 34.077 -0.912 34.155 -1.242 33.883 -1.437 33.805 -1.515 33.961 -1.476 33.766 -1.670 33.708 -1.844 33.514 -1.805 33.456 -1.844 33.339 -1.961 33.533 -2.019 33.339 -2.096 33.223 -2.174 33.611 -2.116 33.805 -2.135 33.825 -2.329 33.630 -2.466 33.436 -2.563 33.436 -2.524 33.242 -2.388 33.048 -2.563 32.912 -2.911 32.834 -2.718 32.873 -2.524 32.834 -2.427 32.640 -2.466 32.446 -2.271 32.310 -2.369 32.116 -2.563 31.999 -2.756 32.038 -2.698 31.863 ; #1340 3 44.997 74.017 45.044 74.039 45.216 73.942 45.530 73.591 45.685 73.532 45.841 73.610 45.997 73.747 46.137 73.650 46.230 73.766 46.276 73.961 46.431 74.114 46.478 74.309 46.586 74.503 46.740 74.600 46.833 74.988 46.771 75.007 46.725 75.398 46.786 75.805 46.756 76.000 46.802 76.194 46.648 76.388 46.632 76.949 46.555 77.143 46.617 77.338 46.663 77.882 46.478 78.271 46.740 78.678 46.617 78.872 46.771 78.950 46.802 79.145 46.648 79.261 46.602 79.126 46.524 79.085 46.369 78.932 46.400 78.543 46.307 78.136 46.400 77.942 46.400 77.748 46.478 77.338 46.462 77.008 46.509 76.814 46.540 76.426 46.524 75.746 46.462 75.552 46.617 75.417 46.462 75.398 46.384 75.007 46.384 74.891 46.230 74.834 46.059 74.659 46.044 74.465 45.935 74.252 45.607 74.271 45.498 74.077 45.341 74.077 45.310 74.174 44.997 74.114 ; #1341 5 51.472 104.814 51.487 104.445 51.618 103.862 51.750 104.057 51.793 104.445 51.778 104.658 51.866 104.852 51.866 105.009 51.909 105.222 52.112 105.610 52.417 105.901 52.532 106.096 52.662 106.484 52.805 106.640 52.949 106.854 53.092 106.854 53.221 107.067 53.393 107.455 53.677 107.765 53.876 108.154 54.159 108.348 54.300 108.504 54.441 108.561 54.540 108.698 54.694 108.814 54.974 108.968 55.141 109.162 55.281 109.222 55.420 109.203 55.558 109.241 55.766 109.629 55.738 109.823 55.780 109.629 55.766 109.842 55.711 109.920 55.558 109.864 55.420 109.864 55.141 109.745 55.002 109.745 54.722 109.648 54.568 109.532 54.286 109.494 54.144 109.570 54.003 109.454 53.876 109.260 53.734 109.222 53.634 109.028 53.776 109.046 53.806 108.852 53.521 108.561 53.563 108.774 53.549 108.968 53.422 109.009 53.278 108.814 53.278 108.620 53.150 108.407 53.007 108.329 52.762 107.922 52.705 107.727 52.690 107.533 52.546 107.145 52.460 106.951 52.315 106.835 52.373 106.600 52.344 106.387 52.301 106.309 52.229 106.271 52.155 106.309 51.866 106.096 51.721 105.883 51.545 105.009 ; #1342 2 44.445 -75.902 44.382 -75.999 44.177 -76.775 44.161 -77.377 44.113 -77.572 44.113 -77.300 44.050 -77.086 44.050 -76.892 43.891 -77.028 43.954 -77.436 44.034 -77.630 43.843 -79.008 43.557 -79.591 43.397 -79.688 43.238 -79.649 43.206 -79.455 43.222 -79.261 43.317 -78.892 43.381 -78.484 43.381 -78.096 43.317 -77.708 43.254 -77.494 43.333 -76.717 43.525 -76.426 43.557 -76.232 43.716 -76.213 43.875 -76.271 44.001 -76.057 43.970 -76.271 44.129 -76.348 44.319 -75.960 44.429 -75.844 44.572 -75.727 ; #1343 2 42.307 -82.620 42.355 -82.426 42.516 -82.562 42.548 -82.640 42.629 -82.640 42.596 -82.795 42.436 -82.873 42.307 -83.067 42.225 -83.144 42.064 -83.203 41.741 -83.455 41.708 -83.435 41.692 -83.280 41.529 -82.892 41.513 -82.698 41.432 -82.892 41.464 -82.698 41.400 -82.504 41.497 -82.096 41.497 -81.707 41.741 -81.319 41.967 -80.523 42.323 -79.630 42.548 -79.242 42.869 -78.873 43.030 -78.892 43.094 -79.067 42.917 -78.911 42.869 -79.047 42.885 -79.242 42.837 -79.804 42.757 -80.251 42.596 -80.426 42.548 -80.212 42.661 -81.028 42.661 -81.222 42.612 -81.416 42.516 -81.611 42.258 -81.999 42.113 -82.406 41.951 -82.523 42.032 -82.717 41.983 -82.911 42.145 -83.105 42.307 -83.067 ; #1344 -2 47.996 -89.513 47.996 -89.571 48.103 -89.397 48.255 -89.261 48.406 -89.222 48.512 -89.028 48.482 -88.833 48.331 -88.872 48.633 -88.542 48.785 -88.542 48.800 -88.329 48.497 -88.484 48.648 -88.309 48.694 -88.115 48.995 -88.251 48.905 -87.746 48.800 -87.358 48.785 -87.164 48.815 -86.969 48.694 -86.368 48.542 -86.251 48.240 -86.115 48.088 -85.979 47.950 -85.785 47.920 -85.397 47.966 -85.202 47.966 -84.989 47.813 -84.911 47.661 -84.989 47.585 -84.989 47.478 -84.795 47.325 -84.601 47.017 -84.775 46.940 -84.581 46.910 -84.387 46.756 -84.562 46.586 -84.562 46.524 -84.387 46.540 -84.154 46.384 -84.115 46.230 -83.397 46.168 -82.989 46.183 -82.406 46.137 -82.212 46.106 -81.824 46.121 -81.611 45.997 -81.571 45.982 -81.183 45.919 -80.775 45.452 -80.387 45.341 -80.173 45.185 -80.018 45.028 -79.999 44.997 -79.921 44.839 -79.766 44.808 -79.882 44.855 -79.999 44.556 -79.999 44.509 -80.193 44.540 -80.387 44.619 -80.581 44.808 -80.989 44.966 -80.970 44.966 -81.164 44.997 -81.183 44.997 -81.242 45.154 -81.319 45.247 -81.533 45.216 -81.727 45.107 -81.513 44.902 -81.358 44.745 -81.280 44.588 -81.300 44.097 -81.727 43.461 -81.707 43.286 -81.824 43.062 -82.212 43.014 -82.406 43.046 -82.445 43.206 -82.504 43.859 -82.659 44.018 -82.795 44.050 -82.989 43.906 -83.397 43.748 -83.455 43.605 -83.649 43.668 -83.882 43.827 -83.940 43.986 -83.766 44.097 -83.571 44.413 -83.319 44.682 -83.280 44.839 -83.300 44.997 -83.455 45.044 -83.261 45.201 -83.377 45.357 -83.552 45.561 -84.135 45.670 -84.329 45.763 -84.795 45.592 -85.106 45.436 -84.989 45.373 -84.989 45.388 -85.106 45.310 -85.319 44.997 -85.397 44.839 -85.533 44.997 -85.513 44.839 -85.649 45.154 -85.649 44.997 -85.785 44.871 -86.076 44.713 -86.251 44.382 -86.251 44.066 -86.523 43.906 -86.445 43.573 -86.523 43.413 -86.445 43.254 -86.251 43.222 -86.290 42.837 -86.212 42.516 -86.251 42.177 -86.426 41.854 -86.678 41.757 -86.834 41.773 -87.067 41.757 -87.241 42.484 -87.222 43.557 -87.202 44.997 -86.504 45.247 -86.271 45.420 -86.678 45.452 -86.873 45.452 -87.105 45.561 -87.241 45.872 -86.969 45.701 -86.911 45.856 -86.736 45.872 -86.542 45.716 -86.562 45.810 -86.348 45.966 -86.193 45.950 -85.999 45.982 -85.804 46.106 -85.397 46.013 -84.989 45.919 -84.892 45.982 -84.698 45.997 -84.484 45.982 -83.902 46.152 -84.038 46.199 -84.232 46.353 -84.212 46.509 -84.368 46.462 -84.795 46.493 -84.989 46.571 -85.028 46.771 -84.989 46.771 -85.222 46.709 -85.416 46.663 -86.193 46.462 -86.581 46.540 -86.989 46.509 -87.183 46.524 -87.377 46.848 -87.669 46.910 -87.863 46.910 -88.465 47.063 -88.503 47.125 -88.542 47.063 -88.368 47.340 -87.979 47.401 -87.921 47.432 -87.727 47.478 -87.921 47.417 -88.309 47.293 -88.523 47.140 -88.562 47.217 -88.620 47.140 -88.814 47.002 -89.008 46.848 -89.397 46.833 -89.804 46.802 -89.843 47.293 -89.960 ; #1345 -2 47.615 -90.795 47.692 -90.600 47.829 -89.999 47.996 -89.571 47.996 -89.513 47.293 -89.960 46.802 -89.843 46.694 -90.018 46.586 -90.406 46.602 -90.542 46.663 -90.736 46.632 -90.931 46.786 -90.853 46.940 -90.931 46.756 -91.513 46.694 -91.902 46.771 -92.115 47.201 -91.358 47.356 -91.183 ; #1346 -2 43.238 -87.902 43.732 -87.707 43.891 -87.727 44.066 -87.649 44.224 -87.494 44.382 -87.513 44.540 -87.474 44.713 -87.358 44.871 -87.474 44.792 -87.669 44.635 -87.824 44.619 -88.018 44.950 -87.824 44.997 -87.630 45.232 -87.513 45.561 -87.241 45.452 -87.105 45.452 -86.873 45.420 -86.678 45.247 -86.271 44.997 -86.504 43.557 -87.202 42.484 -87.222 41.757 -87.241 41.773 -87.067 41.757 -86.834 41.627 -87.222 41.660 -87.436 41.708 -87.513 41.725 -87.513 42.000 -87.649 42.161 -87.766 42.323 -87.824 42.741 -87.766 43.078 -87.863 ; #1347 -3 53.748 -98.037 53.834 -98.251 53.862 -98.445 53.848 -98.639 53.890 -98.853 53.876 -98.930 53.436 -99.086 53.292 -99.202 53.178 -99.241 53.050 -99.047 53.050 -98.523 52.978 -98.717 52.834 -98.872 52.676 -98.756 52.561 -98.561 52.417 -98.465 52.301 -98.270 52.155 -98.134 52.011 -98.037 51.953 -98.037 51.880 -97.843 52.025 -97.746 52.141 -97.532 51.982 -97.610 52.040 -97.416 51.895 -97.261 51.750 -97.241 51.589 -97.299 51.443 -97.280 51.589 -97.125 51.706 -96.911 51.603 -96.717 51.311 -96.911 51.370 -96.717 51.224 -96.756 51.076 -96.930 50.767 -96.969 50.472 -96.930 50.383 -96.795 50.428 -96.581 50.576 -96.581 50.723 -96.523 50.620 -96.329 50.620 -96.290 51.062 -96.406 51.224 -96.251 51.370 -96.445 51.662 -96.678 51.778 -96.678 51.924 -96.833 52.214 -97.066 52.359 -97.027 52.647 -97.183 52.805 -97.338 52.949 -97.435 53.007 -97.319 53.150 -97.416 53.306 -97.591 53.450 -97.668 53.592 -97.804 53.748 -97.843 53.919 -97.940 54.018 -97.746 54.088 -97.727 53.961 -98.134 54.116 -98.154 54.230 -97.960 54.371 -97.921 54.413 -98.018 54.272 -98.134 53.975 -98.309 53.748 -97.921 ; #1348 5 53.193 107.358 53.150 107.145 53.007 106.988 53.078 107.396 53.264 107.784 53.407 107.765 ; #1349 2 -2.096 33.165 -1.961 33.106 -1.902 32.912 -2.096 32.970 -2.174 33.165 ; #1350 2 45.670 -81.669 45.841 -81.669 45.950 -82.057 45.919 -82.251 45.919 -82.465 45.841 -82.659 45.997 -82.814 45.935 -83.203 45.841 -83.009 45.763 -82.620 45.561 -82.018 45.685 -81.824 45.530 -81.902 45.514 -81.843 ; #1351 2 46.245 -83.824 46.291 -84.038 46.137 -83.979 46.090 -83.882 ; #1352 2 46.090 -83.727 45.935 -83.707 45.950 -83.513 46.106 -83.630 ; #1353 2 48.149 -88.581 48.011 -88.989 47.859 -89.067 47.966 -88.853 48.011 -88.659 48.164 -88.465 ; #1354 3 44.839 -87.261 45.138 -87.086 45.294 -87.047 45.154 -87.241 44.997 -87.358 ; #1355 7 51.542 -55.764 51.545 -56.082 51.405 -56.489 51.201 -56.786 50.970 -56.984 50.672 -57.258 50.450 -57.462 50.177 -57.615 49.906 -57.791 49.540 -57.879 49.383 -58.192 49.116 -58.011 49.061 -58.319 48.693 -58.747 48.585 -59.077 48.483 -58.560 48.288 -58.753 48.090 -59.071 47.861 -59.335 47.595 -59.165 47.608 -58.681 47.680 -58.313 47.652 -57.890 47.611 -57.456 47.567 -57.049 47.586 -56.670 47.696 -56.198 47.831 -55.863 47.735 -55.802 47.545 -55.956 47.498 -55.753 47.592 -55.423 47.652 -55.115 47.611 -54.907 47.408 -55.209 47.173 -55.467 47.038 -55.857 46.879 -55.725 46.948 -55.319 47.159 -55.071 47.424 -54.659 47.463 -54.451 47.768 -54.258 47.779 -54.038 47.474 -53.890 47.245 -53.989 46.953 -54.159 46.860 -53.978 47.096 -53.670 47.033 -53.566 46.761 -53.527 46.695 -53.137 46.973 -52.896 47.228 -52.813 47.603 -52.714 47.493 -53.060 47.603 -53.203 48.009 -53.005 47.927 -53.330 47.622 -53.599 47.792 -53.808 48.068 -53.791 48.233 -53.516 48.499 -53.126 48.519 -53.434 48.436 -53.835 48.568 -53.791 48.756 -53.929 48.995 -53.769 49.249 -53.566 49.430 -53.995 49.405 -54.401 49.359 -54.769 49.287 -55.192 49.414 -55.462 49.471 -55.874 49.618 -56.000 49.882 -55.703 50.031 -56.071 49.920 -56.407 49.670 -56.731 49.755 -56.808 50.023 -56.703 50.317 -56.462 50.540 -56.247 50.805 -56.066 51.033 -55.791 51.237 -55.967 51.344 -55.835 51.498 -55.511 ; #1356 1 -69.566 75.665 -69.641 75.049 -69.742 74.374 -69.859 73.599 -70.038 72.940 -70.314 72.753 -70.554 72.511 -70.758 71.890 -71.034 71.484 -71.329 71.308 -71.607 71.253 -71.883 70.874 -72.082 70.176 -72.293 69.571 -72.407 68.714 -72.263 67.852 -72.024 67.478 -71.699 67.736 -71.470 67.852 -71.236 68.363 -71.015 68.934 -70.739 69.203 -70.421 69.187 -70.606 68.571 -70.474 68.044 -70.240 67.725 -69.958 68.033 -69.958 68.731 -69.748 69.187 -69.499 68.945 -69.351 69.407 -69.183 69.571 -68.926 69.566 -68.661 69.764 -68.425 70.005 -68.152 69.714 -67.831 69.632 -67.825 69.044 -67.844 68.280 -67.795 67.522 -67.759 66.769 -67.713 66.005 -67.652 65.247 -67.597 64.505 -67.517 63.780 -67.567 63.049 -67.583 62.368 -67.509 61.577 -67.449 60.918 -67.386 60.203 -67.394 59.445 -67.276 58.934 -67.133 58.291 -67.032 57.615 -66.927 56.918 -66.735 57.005 -66.542 57.165 -66.396 56.489 -66.218 55.967 -65.994 55.500 -65.895 54.830 -65.881 54.115 -65.876 53.418 -65.936 52.720 -65.989 52.016 -66.168 51.451 -66.341 50.896 -66.506 50.330 -66.793 50.247 -67.056 50.560 -67.188 50.467 -67.076 49.769 -66.982 49.121 -67.114 48.418 -67.350 48.852 -67.504 48.643 -67.644 47.995 -67.649 47.308 -67.411 47.198 -67.301 46.555 -67.534 46.275 -67.699 45.665 -67.765 44.940 -67.952 44.341 -68.028 43.604 -68.100 42.841 -68.318 42.313 -68.453 41.604 -68.604 40.951 -68.778 40.313 -68.978 39.802 -69.307 39.742 -69.577 39.593 -69.848 38.819 -69.619 38.599 -69.793 38.253 -69.663 37.489 -69.406 37.830 -69.351 37.368 -69.619 36.808 -69.467 36.280 -69.248 36.148 -69.086 35.473 -68.863 34.940 -68.582 34.670 -68.499 33.978 -68.693 33.396 -68.967 33.247 -69.243 32.896 -69.450 32.308 -69.608 31.621 -69.775 30.929 -69.815 30.088 -69.870 29.275 -70.001 28.527 -70.115 27.736 -70.156 26.907 -70.259 26.104 -70.336 25.286 -70.429 24.473 -70.515 23.643 -70.532 22.780 -70.421 21.962 -70.388 21.110 -70.286 20.302 -70.173 19.511 -70.088 18.687 -69.996 17.890 -70.104 17.049 -70.211 16.258 -70.281 15.429 -70.228 14.593 -70.206 13.813 -70.286 12.956 -70.485 12.396 -70.701 11.857 -70.675 10.940 -70.480 10.324 -70.270 9.747 -70.088 9.027 -70.233 8.896 -70.421 8.538 -70.206 7.791 -70.383 7.187 -70.579 6.621 -70.612 5.753 -70.653 4.885 -70.728 4.049 -70.821 3.220 -70.915 2.396 -71.067 1.637 -71.194 0.824 -71.389 0.181 -71.607 -0.418 -71.389 -0.951 -71.421 -1.714 -71.301 -2.275 -71.271 -2.967 -71.318 -3.852 -71.323 -4.753 -71.409 -5.670 -71.241 -6.115 -70.993 -5.698 -70.747 -5.742 -70.821 -6.500 -71.039 -7.082 -71.301 -7.500 -71.618 -7.538 -71.749 -8.418 -71.451 -8.786 -71.175 -9.082 -70.963 -9.687 -71.075 -10.225 -71.348 -10.511 -71.607 -11.077 -71.378 -11.797 -71.577 -12.187 -71.803 -11.626 -72.074 -11.346 -72.337 -11.703 -72.544 -12.313 -72.729 -13.082 -72.787 -14.044 -72.950 -14.022 -73.161 -14.242 -73.209 -15.209 -73.368 -16.077 -73.714 -16.511 -73.907 -16.560 -74.054 -16.291 -73.990 -15.280 -73.885 -14.280 -74.081 -14.258 -74.242 -15.110 -74.457 -15.813 -74.650 -16.604 -74.885 -17.214 -75.159 -17.577 -75.410 -18.126 -75.717 -18.132 -75.793 -19.341 -75.874 -20.324 -75.951 -21.374 -75.984 -22.484 -76.048 -23.626 -76.128 -24.786 -76.288 -25.890 -76.417 -26.775 -76.542 -27.907 -76.715 -28.907 -76.925 -29.775 -77.103 -30.786 -77.318 -31.676 -77.459 -32.852 -77.620 -33.769 -77.863 -34.500 -78.104 -35.258 -78.371 -35.896 -78.655 -36.247 -78.946 -36.044 -79.131 -34.846 -79.338 -33.797 -79.414 -32.374 -79.277 -30.967 -79.131 -29.621 -79.027 -27.797 -79.173 -28.016 -79.391 -29.027 -79.673 -29.791 -79.904 -28.484 -80.178 -28.148 -80.387 -29.214 -80.507 -30.885 -80.662 -32.346 -80.769 -34.027 -80.906 -35.621 -81.019 -37.313 -81.198 -38.852 -81.340 -40.511 -81.539 -41.962 -81.823 -42.648 -81.920 -44.434 -81.866 -46.434 -81.906 -48.440 -81.991 -50.368 -82.119 -52.242 -82.264 -54.077 -82.484 -55.555 -82.743 -56.599 -83.045 -58.071 -82.885 -58.956 -82.589 -59.291 -82.381 -60.874 -82.176 -62.484 -81.977 -63.973 -81.769 -65.434 -81.550 -66.835 -81.354 -68.302 -81.184 -69.863 -81.070 -71.599 -80.906 -73.148 -80.710 -74.549 -80.458 -75.357 -80.201 -76.302 -80.039 -78.896 -80.017 -77.758 -79.836 -76.505 -79.563 -76.143 -79.307 -76.791 -79.254 -78.242 -79.234 -79.841 -79.468 -80.495 -79.414 -81.038 -79.150 -81.830 -78.965 -82.912 -78.674 -83.390 -78.382 -83.885 -78.295 -83.049 -78.546 -82.132 -78.733 -81.022 -78.794 -79.566 -78.703 -78.159 -78.457 -77.577 -78.217 -78.368 -78.096 -79.659 -77.929 -81.000 -77.708 -81.033 -77.716 -79.934 -77.827 -78.643 -77.890 -77.302 -77.974 -75.989 -78.076 -74.687 -77.901 -73.538 -77.620 -73.000 -77.503 -73.962 -77.495 -75.324 -77.301 -76.242 -77.059 -76.967 -76.806 -77.577 -76.550 -78.126 -76.288 -78.440 -76.014 -77.791 -76.078 -76.703 -76.329 -76.192 -76.542 -75.434 -76.608 -74.220 -76.649 -72.978 -76.674 -71.725 -76.682 -70.429 -76.434 -69.797 -76.280 -68.868 -76.166 -67.775 -76.056 -66.648 -75.904 -65.648 -75.725 -64.720 -75.545 -63.786 -75.311 -63.802 -75.061 -63.544 -74.761 -63.154 -74.885 -62.522 -74.788 -61.945 -74.506 -61.802 -74.250 -61.451 -74.023 -61.385 -73.907 -61.209 -73.692 -60.753 -73.490 -61.346 -73.242 -61.659 -73.267 -60.885 -73.209 -60.209 -72.950 -60.165 -72.699 -60.780 -72.530 -61.407 -72.351 -61.000 -72.093 -61.126 -72.024 -62.275 -71.902 -62.049 -71.809 -61.148 -71.618 -61.484 -71.470 -61.434 -71.252 -61.082 -70.952 -61.280 -70.816 -61.918 -70.623 -61.775 -70.399 -62.209 -70.151 -62.066 -69.870 -62.484 -69.572 -62.478 -69.346 -62.918 -69.136 -63.423 -68.813 -63.527 -68.593 -63.786 -68.406 -63.137 -68.348 -63.467 -68.483 -64.220 -68.715 -64.104 -68.737 -64.423 -68.687 -65.187 -68.436 -65.357 -68.177 -64.989 -68.064 -65.385 -67.743 -65.467 -67.499 -65.516 -67.312 -65.000 -67.034 -64.775 -66.837 -64.049 -66.542 -63.940 -66.292 -63.566 -66.580 -62.720 -66.292 -62.632 -66.325 -61.841 -66.237 -61.247 -66.049 -60.709 -65.986 -61.154 -66.102 -61.819 -65.895 -62.368 -65.592 -61.973 -65.386 -62.055 -65.173 -61.709 -64.984 -61.126 -64.766 -60.692 -64.556 -60.242 -64.427 -59.626 -64.468 -59.022 -64.314 -58.830 -64.022 -58.665 -63.796 -58.297 -63.623 -57.747 -63.546 -57.066 -63.292 -57.027 -63.259 -57.599 -63.407 -58.132 -63.537 -58.764 -63.744 -59.247 -63.854 -59.758 -63.948 -60.308 -64.096 -60.890 -64.358 -61.198 -64.534 -61.665 -64.708 -62.324 -64.856 -62.725 -65.055 -63.170 -65.096 -63.896 -65.402 -63.956 -65.603 -64.099 -65.813 -64.495 -65.989 -64.813 -66.102 -65.368 -66.305 -65.824 -66.550 -66.198 -66.793 -66.462 -66.982 -66.879 -67.120 -67.440 -67.460 -67.522 -67.512 -66.747 -67.704 -66.797 -67.952 -67.038 -68.235 -66.907 -68.494 -67.055 -68.789 -67.209 -69.000 -66.868 -69.276 -67.165 -69.329 -67.951 -69.412 -68.555 -69.701 -68.385 -69.985 -68.434 -70.245 -68.060 -70.521 -67.797 -70.799 -67.593 -71.081 -67.429 -71.373 -67.505 -71.657 -67.291 -71.919 -66.940 -72.211 -66.923 -72.484 -67.011 -72.729 -67.473 -72.924 -68.154 -73.101 -68.956 -73.228 -69.863 -73.280 -70.841 -73.382 -71.758 -73.463 -72.764 -73.603 -73.637 -73.686 -74.637 -73.733 -75.604 -73.825 -76.632 -73.659 -76.780 -73.537 -77.352 -73.640 -78.434 -73.468 -78.885 -73.234 -79.495 -73.076 -80.302 -73.209 -80.615 -73.407 -80.956 -73.678 -81.148 -73.880 -81.703 -73.844 -82.588 -73.714 -83.522 -73.667 -84.495 -73.556 -85.473 -73.195 -85.846 -73.267 -86.555 -73.234 -87.429 -73.167 -88.324 -72.800 -88.896 -73.024 -89.390 -73.167 -90.165 -73.275 -91.055 -73.186 -92.088 -73.181 -93.060 -73.261 -93.995 -73.228 -94.984 -73.275 -95.989 -73.247 -96.962 -73.115 -97.918 -72.983 -98.648 -73.016 -99.648 -73.043 -100.621 -73.035 -101.720 -72.924 -102.418 -72.743 -103.011 -72.930 -103.516 -73.220 -103.253 -73.327 -102.401 -73.341 -101.407 -73.374 -100.390 -73.564 -99.527 -73.700 -99.912 -73.719 -100.945 -73.611 -101.901 -73.659 -102.835 -73.913 -102.484 -74.073 -101.725 -74.385 -101.418 -74.484 -100.511 -74.745 -100.451 -74.913 -100.060 -75.128 -99.632 -75.258 -100.533 -75.258 -101.643 -75.071 -102.462 -75.039 -103.665 -75.071 -104.786 -75.167 -105.874 -75.311 -106.852 -75.272 -107.951 -75.159 -109.011 -75.205 -110.390 -74.921 -110.500 -74.658 -110.022 -74.340 -110.154 -74.200 -111.060 -74.385 -111.544 -74.672 -111.538 -74.841 -112.170 -74.716 -112.962 -74.493 -113.258 -74.214 -113.346 -73.968 -113.791 -74.032 -114.621 -74.354 -114.731 -74.471 -115.610 -74.534 -116.637 -74.407 -117.659 -74.498 -118.429 -74.623 -119.291 -74.680 -120.368 -74.723 -121.467 -74.686 -122.555 -74.723 -123.621 -74.680 -124.725 -74.658 -125.819 -74.650 -126.912 -74.702 -127.973 -74.805 -128.989 -74.827 -130.077 -74.783 -131.176 -74.745 -132.264 -74.819 -133.368 -74.628 -134.269 -74.606 -135.308 -74.745 -136.363 -74.974 -137.011 -75.079 -138.055 -75.123 -139.209 -75.363 -139.890 -75.501 -140.824 -75.501 -141.978 -75.592 -142.929 -75.717 -144.071 -75.888 -144.857 -75.968 -146.022 -76.329 -145.819 -76.305 -146.879 -76.150 -148.022 -76.329 -149.132 -76.475 -148.473 -76.450 -147.291 -76.608 -146.302 -76.840 -145.709 -77.059 -145.874 -77.338 -146.049 -77.338 -146.984 -77.495 -148.192 -77.608 -149.192 -77.620 -150.181 -77.459 -151.148 -77.423 -152.269 -77.379 -153.132 -77.189 -154.060 -77.112 -155.286 -77.249 -156.198 -77.213 -157.368 -77.451 -157.764 -77.672 -158.005 -77.946 -157.890 -78.182 -156.714 -78.123 -155.357 -78.142 -154.060 -78.429 -154.137 -78.566 -155.522 -78.772 -155.445 -78.996 -154.445 -79.119 -153.088 -79.254 -151.775 -79.445 -150.538 -79.586 -149.126 -79.737 -147.764 -79.949 -146.582 -80.223 -145.918 -80.517 -145.626 -80.769 -146.522 -81.008 -147.555 -81.300 -148.379 -81.391 -149.901 -81.224 -151.495 -81.122 -153.192 -81.044 -155.000 -81.198 -156.637 -81.391 -155.868 -81.605 -154.335 -81.891 -154.665 -82.191 -154.071 -82.441 -152.819 -82.711 -151.907 -82.996 -152.566 -83.290 -153.005 -83.597 -152.956 -83.881 -153.099 -84.180 -152.874 -84.453 -151.703 -84.674 -149.731 -84.822 -147.077 -84.949 -144.121 -85.038 -141.088 -85.216 -138.995 -85.402 -140.857 -85.309 -144.258 -85.286 -147.808 -85.546 -150.170 -85.521 -153.445 -85.569 -157.176 -85.498 -160.632 -85.309 -163.346 -85.125 -166.005 -84.949 -168.132 -84.757 -170.769 -84.635 -173.533 -84.612 -176.599 -84.512 -179.049 -84.314 178.758 -84.161 176.368 -83.993 174.033 -83.845 172.198 -83.614 171.000 -83.509 168.560 -83.375 168.159 -83.110 167.863 -82.900 166.824 -82.652 165.615 -82.424 164.357 -82.191 163.643 -81.906 162.742 -81.618 161.258 -81.325 161.621 -81.081 160.665 -80.807 160.593 -80.539 160.489 -80.447 159.055 -80.257 158.599 -79.994 159.907 -79.737 159.934 -79.445 160.511 -79.161 160.324 -78.965 161.220 -78.845 162.544 -78.663 163.725 -78.546 164.951 -78.546 166.753 -78.429 166.374 -78.142 165.423 -78.020 164.610 -77.681 164.275 -77.501 163.747 -77.265 163.544 -77.026 162.835 -76.848 162.769 -76.583 162.841 -76.280 162.709 -76.014 162.813 -75.763 162.995 -75.485 162.830 -75.189 162.571 -75.017 163.357 -74.753 163.901 -74.672 164.797 -74.471 165.181 -74.177 164.918 -74.087 165.797 -73.913 165.885 -73.692 166.670 -73.482 167.456 -73.523 168.132 -73.468 168.846 -73.201 169.192 -72.977 169.703 -72.671 170.088 -72.402 170.192 -72.156 170.066 -71.968 170.632 -71.724 170.841 -71.487 170.308 -71.426 169.407 -71.230 168.753 -71.034 168.005 -70.786 167.659 -70.701 166.747 -70.653 165.967 -70.568 165.170 -70.496 164.308 -70.573 163.511 -70.372 162.846 -70.303 162.033 -70.228 161.258 -70.082 160.549 -69.859 160.137 -69.646 159.571 -69.489 158.896 -69.304 158.297 -69.108 157.385 -69.172 156.742 -69.194 155.995 -69.108 155.209 -68.910 154.511 -68.656 154.555 -68.420 153.940 -68.609 153.797 -68.888 153.599 -68.830 152.797 -68.830 152.088 -68.874 151.198 -68.499 151.011 -68.442 150.269 -68.332 149.560 -68.301 148.731 -68.042 148.434 -67.880 147.995 -68.042 147.220 -67.916 146.989 -67.682 146.462 -67.578 145.604 -67.320 145.698 -67.100 145.549 -67.153 144.797 -67.056 144.148 -66.914 143.511 -66.988 142.725 -66.831 142.110 -66.793 141.363 -66.738 140.654 -66.660 139.984 -66.561 139.291 -66.522 138.571 -66.421 137.890 -66.336 137.214 -66.325 136.505 -66.201 135.824 -66.065 135.126 -65.815 135.099 -65.529 135.258 -65.248 135.093 -65.033 134.764 -65.041 134.231 -65.339 134.132 -65.630 134.181 -65.906 134.390 -66.141 134.132 -66.082 133.368 -66.152 132.676 -66.201 131.989 -66.237 131.286 -66.220 130.560 -66.363 129.940 -66.602 129.516 -66.875 129.313 -67.103 128.956 -67.051 128.231 -66.963 127.538 -66.787 126.978 -66.487 126.852 -66.322 126.225 -66.473 125.549 -66.710 125.132 -66.621 124.621 -66.564 124.016 -66.704 123.368 -66.671 122.846 -66.583 122.088 -66.704 121.401 -66.826 120.758 -66.861 120.011 -66.927 119.313 -66.933 118.544 -66.971 117.841 -66.870 117.132 -66.632 116.742 -66.415 116.264 -66.382 115.560 -66.479 114.824 -66.253 114.473 -66.021 114.033 -65.796 113.555 -65.780 112.956 -65.887 112.308 -65.936 111.610 -66.065 110.973 -66.325 110.742 -66.555 110.407 -66.690 109.780 -66.779 108.956 -66.638 108.368 -66.446 107.797 -66.421 107.055 -66.349 106.368 -66.270 105.687 -66.160 105.011 -66.054 104.357 -66.002 103.670 -65.934 102.995 -65.936 102.291 -66.019 101.615 -66.113 100.956 -66.344 100.505 -66.525 99.951 -66.787 99.418 -66.676 98.962 -66.542 98.412 -66.646 97.665 -66.594 96.989 -66.652 96.253 -66.665 95.495 -66.580 94.797 -66.646 94.082 -66.602 93.363 -66.621 92.621 -66.555 91.918 -66.564 91.181 -66.646 90.489 -66.710 89.780 -66.735 88.984 -66.487 88.758 -66.152 88.445 -66.270 88.181 -66.575 88.082 -66.812 87.698 -66.982 87.093 -67.051 86.390 -67.164 85.736 -67.158 84.984 -67.153 84.247 -67.164 83.500 -67.312 82.824 -67.293 82.159 -67.537 81.753 -67.688 81.516 -67.850 80.868 -67.927 80.126 -68.042 79.418 -68.207 78.797 -68.431 78.280 -68.681 77.956 -68.967 77.901 -69.166 77.407 -69.307 76.681 -69.450 76.060 ; #1357 1 -72.704 -72.396 -72.660 -71.791 -72.660 -70.813 -72.607 -69.885 -72.465 -69.148 -72.236 -68.516 -71.957 -68.286 -71.668 -68.121 -71.378 -68.203 -71.086 -68.247 -70.799 -68.346 -70.515 -68.511 -70.245 -68.896 -69.974 -69.159 -69.690 -69.346 -69.412 -69.593 -69.177 -70.016 -68.868 -70.187 -68.819 -70.852 -68.937 -71.582 -69.152 -72.137 -69.428 -71.929 -69.685 -71.692 -69.974 -71.775 -70.270 -71.610 -70.485 -72.286 -70.689 -71.945 -70.791 -71.143 -71.081 -70.929 -71.158 -71.890 -71.122 -72.753 -71.318 -72.709 -71.373 -73.231 -71.498 -73.582 -71.547 -74.137 -71.638 -74.791 -71.749 -75.363 -72.000 -75.165 -72.142 -74.341 -71.963 -73.742 -71.919 -73.192 -71.749 -72.516 -71.809 -72.016 -71.994 -71.341 -72.156 -71.621 -72.255 -70.923 -72.363 -70.857 -72.396 -71.791 -72.358 -72.813 -72.574 -72.819 ; #1358 1 -80.945 -52.703 -80.894 -51.478 -80.795 -49.775 -80.698 -48.082 -80.599 -46.418 -80.432 -44.945 -80.189 -44.302 -79.971 -43.643 -79.650 -43.352 -79.349 -44.055 -79.078 -43.808 -78.823 -44.978 -78.593 -44.077 -78.284 -44.055 -78.057 -44.940 -77.910 -46.154 -77.918 -47.500 -78.096 -48.626 -78.323 -49.527 -78.585 -50.121 -78.873 -50.467 -79.173 -50.626 -79.468 -50.643 -79.749 -51.181 -80.017 -52.027 -80.212 -53.198 -80.421 -54.335 -80.710 -54.824 -80.932 -53.863 ; #1359 1 -72.206 -102.258 -72.250 -101.544 -72.299 -100.626 -72.396 -99.588 -72.497 -98.830 -72.505 -97.819 -72.549 -96.912 -72.479 -96.104 -72.263 -96.104 -72.206 -96.747 -72.049 -96.604 -71.883 -96.951 -72.068 -97.445 -72.063 -98.082 -71.869 -98.621 -72.000 -99.060 -72.063 -99.566 -72.000 -100.308 -71.974 -101.225 -72.068 -102.247 ; #1360 1 -80.831 -61.588 -80.614 -60.582 -80.327 -60.253 -80.028 -60.198 -79.715 -60.264 -79.695 -61.319 -79.994 -61.725 -80.235 -62.478 -80.293 -64.170 -80.189 -66.407 -80.458 -66.022 -80.492 -64.330 -80.721 -63.055 ; #1361 1 -79.783 -158.714 -79.510 -158.885 -79.254 -159.687 -79.015 -160.621 -78.772 -161.489 -78.764 -162.824 -79.038 -163.632 -79.330 -163.593 -79.574 -162.720 -79.760 -161.473 -79.847 -159.940 ; #1362 1 -73.852 -118.742 -73.782 -119.676 -73.755 -120.703 -73.667 -121.687 -73.645 -122.808 -73.893 -122.588 -74.200 -122.527 -74.362 -122.005 -74.285 -120.984 -74.200 -119.984 -74.081 -119.055 ; #1363 1 -79.574 -71.659 -79.586 -70.698 -79.330 -69.797 -79.057 -69.137 -78.814 -68.280 -78.526 -67.495 -78.476 -68.407 -78.663 -69.571 -78.865 -70.676 -79.108 -71.538 -79.391 -71.824 ; #1364 1 -74.067 -123.797 -73.788 -124.121 -73.659 -124.907 -73.415 -125.560 -73.242 -126.346 -73.346 -127.220 -73.603 -127.005 -73.774 -126.214 -73.990 -125.505 -74.128 -124.593 ; #1365 1 -67.583 -69.198 -67.710 -68.764 -67.493 -68.148 -67.262 -67.912 -67.021 -67.857 -66.735 -67.731 -66.676 -67.973 -66.908 -68.418 -67.172 -68.698 -67.430 -69.022 ; #1366 1 -71.186 -76.148 -71.103 -75.319 -71.015 -74.473 -70.838 -73.742 -70.658 -74.159 -70.758 -74.874 -70.879 -75.764 -71.034 -76.495 ; #1367 1 -72.905 -74.412 -72.891 -75.335 -73.134 -75.852 -73.401 -75.659 -73.584 -74.714 -73.393 -74.429 -73.109 -74.275 ; #1368 1 -73.115 -78.775 -72.924 -77.901 -72.699 -77.522 -72.516 -77.901 -72.470 -79.016 -72.666 -78.995 -72.950 -79.225 ; #1369 1 -77.628 167.703 -77.572 168.989 -77.423 168.951 -77.371 167.571 -77.293 166.610 -77.600 166.555 -77.763 166.835 ; #1370 1 -64.441 -57.896 -64.369 -57.462 -64.124 -57.214 -63.931 -57.742 -64.030 -58.242 -64.322 -58.110 ; #1371 1 -64.714 -64.236 -64.785 -63.841 -64.623 -63.104 -64.383 -63.181 -64.361 -63.632 -64.571 -64.049 ; #1372 1 -63.435 -56.346 -63.350 -55.956 -63.344 -55.324 -63.199 -55.231 -63.133 -55.830 -63.289 -56.407 ; #1373 1 -78.616 -37.643 -78.555 -38.566 -78.526 -40.929 -78.585 -39.951 -78.616 -38.533 ; #1374 1 -74.863 -20.198 -74.702 -20.170 -74.291 -20.505 -74.462 -21.231 -74.739 -20.544 ; #1375 1 -62.221 -58.918 -62.164 -58.467 -62.012 -57.846 -61.949 -58.264 -62.092 -58.780 ; #1376 1 -72.544 -91.165 -72.718 -91.500 -73.016 -91.379 -73.016 -91.038 -72.737 -90.846 ; #1377 1 -72.680 -100.802 -72.762 -100.231 -72.748 -99.236 -72.593 -99.451 -72.574 -100.434 ; #1378 1 -71.015 -2.610 -70.810 -2.280 -70.680 -3.192 -70.957 -3.110 ; #1379 1 -70.156 -75.357 -70.055 -74.709 -69.842 -75.214 -70.001 -75.747 ; #1380 1 -62.640 -60.852 -62.670 -60.192 -62.530 -60.181 -62.541 -60.885 ; #1381 1 -65.681 100.511 -65.667 100.890 -65.455 101.077 -65.542 100.396 ; #1382 1 -70.151 16.137 -69.996 16.258 -69.914 15.621 -70.137 15.681 ; #1383 1 -69.690 -62.060 -69.318 -62.055 -69.521 -62.170 ; #1384 1 -64.471 -62.538 -64.176 -62.203 -64.287 -62.511 ; #1385 1 -73.907 -116.060 -74.067 -116.907 -74.100 -116.308 ; #1386 1 -65.463 103.423 -65.215 103.077 -65.367 103.077 ; #1387 1 -77.112 -149.115 -76.941 -149.967 -77.095 -149.857 ; #1388 1 -74.449 -130.786 -74.349 -131.571 -74.506 -131.396 ; #1389 1 -65.881 -66.099 -65.662 -65.775 -65.733 -66.060 ; #1390 1 -74.506 -127.077 -74.327 -127.593 -74.498 -127.604 ; #1391 1 -70.584 72.121 -70.383 72.005 -70.410 71.742 ; #1392 1 -61.253 -55.341 -61.175 -54.951 -61.120 -55.264 ; #1393 1 -73.062 -90.341 -72.991 -89.736 -72.919 -90.077 ; #1394 1 -67.770 -67.742 -67.735 -67.357 -67.644 -67.577 ; #1395 1 -64.534 -57.467 -64.468 -57.060 -64.432 -57.258 ; #1396 1 -67.490 -91.687 -67.490 -91.121 -67.408 -91.335 ; #1397 1 -66.944 178.308 -66.944 178.874 -66.380 178.874 -66.380 178.308 ; #1398 -10 37.323 74.848 37.155 74.591 37.025 74.531 36.906 74.211 36.822 74.017 36.889 73.823 36.906 73.688 36.906 73.650 36.873 73.068 36.839 73.008 36.822 72.620 36.754 72.407 36.720 72.213 36.500 71.921 36.432 71.727 36.347 71.590 36.042 71.201 35.991 71.261 35.855 71.455 35.684 71.552 35.616 71.533 35.428 71.668 35.325 71.552 35.137 71.649 35.034 71.552 35.000 71.533 34.966 71.514 34.897 71.358 34.553 71.010 34.502 70.988 34.330 71.164 34.244 71.126 34.123 71.107 34.054 71.085 33.951 70.756 33.951 70.562 34.054 70.018 34.037 69.921 34.020 69.902 33.846 69.941 33.812 69.979 33.742 70.018 33.621 70.212 33.449 70.271 33.414 70.310 33.240 70.212 33.136 70.018 33.084 69.902 33.084 69.688 33.049 69.533 32.875 69.533 32.858 69.494 32.683 69.474 32.492 69.280 32.474 69.261 31.932 69.339 31.880 69.261 31.704 69.106 31.617 68.912 31.652 68.795 31.757 68.581 31.757 68.135 31.687 68.077 31.546 67.785 31.528 67.591 31.353 67.805 31.335 67.805 31.282 67.669 31.230 67.261 31.230 67.125 31.247 67.048 31.317 67.028 31.247 66.834 31.212 66.737 31.036 66.640 30.948 66.445 30.913 66.407 30.700 66.329 30.524 66.310 30.347 66.348 30.170 66.310 29.993 66.329 29.833 66.212 29.745 65.805 29.727 65.766 29.673 65.533 29.549 65.009 29.567 64.970 29.567 64.445 29.549 64.387 29.531 64.290 29.407 64.096 29.460 63.902 29.496 63.611 29.478 63.222 29.424 62.446 29.460 62.290 29.656 61.611 29.869 60.873 29.993 61.009 30.099 61.125 30.276 61.281 30.807 61.805 30.948 61.824 30.983 61.844 31.071 61.844 31.247 61.785 31.335 61.766 31.353 61.747 31.388 61.688 31.388 61.630 31.405 61.572 31.423 61.436 31.423 61.378 31.458 61.183 31.458 61.125 31.475 61.048 31.599 60.834 31.949 60.834 32.124 60.853 32.300 60.853 32.492 60.795 32.666 60.717 32.841 60.659 33.014 60.601 33.188 60.620 33.362 60.776 33.535 60.950 33.552 60.776 33.552 60.737 33.656 60.543 33.829 60.562 33.881 60.562 34.071 60.523 34.106 60.523 34.278 60.678 34.381 60.873 34.553 60.814 34.726 60.989 34.811 61.087 34.983 61.125 35.171 61.125 35.342 61.203 35.514 61.281 35.599 61.300 35.633 61.261 35.599 61.300 35.548 61.436 35.444 61.649 35.410 61.844 35.462 61.980 35.393 62.116 35.256 62.290 35.240 62.290 35.137 62.310 35.256 62.543 35.256 62.737 35.376 62.912 35.514 63.125 35.684 63.222 35.701 63.261 35.855 63.125 35.855 63.222 35.872 63.378 35.889 63.514 36.025 63.902 36.127 64.096 36.229 64.387 36.347 64.581 36.500 64.640 36.670 64.640 36.856 64.756 36.957 64.814 37.126 64.814 37.210 65.009 37.244 65.533 37.429 65.650 37.563 65.785 37.344 66.271 37.344 66.504 37.361 66.523 37.361 66.581 37.378 66.970 37.344 67.106 37.261 67.183 37.193 67.300 37.227 67.436 37.244 67.630 37.193 67.785 37.008 67.921 36.957 67.999 36.923 68.057 36.923 68.077 37.008 68.271 37.109 68.329 37.193 68.620 37.244 68.814 37.344 68.912 37.210 69.106 37.109 69.319 37.160 69.416 37.193 69.436 37.261 69.416 37.445 69.397 37.581 69.591 37.581 69.688 37.614 69.882 37.563 70.018 37.547 70.077 37.547 70.174 37.715 70.290 37.782 70.271 37.831 70.251 37.999 70.310 38.083 70.407 38.417 70.697 38.467 70.950 38.384 71.164 38.217 71.377 38.049 71.320 37.898 71.395 37.915 71.590 37.815 71.611 37.496 71.514 37.411 71.493 37.244 71.493 37.075 71.436 36.720 71.611 36.686 71.649 36.670 71.787 36.906 72.194 36.957 72.269 37.025 72.679 37.160 72.758 37.429 73.262 37.429 73.785 37.344 73.785 37.227 73.823 37.294 74.017 37.327 74.155 37.429 74.349 ; #1399 -9 37.344 53.922 37.344 53.999 37.327 54.232 37.445 54.620 37.462 54.718 37.496 54.756 37.513 54.795 37.681 54.815 37.831 55.009 37.915 55.087 37.999 55.281 38.100 55.591 38.116 55.844 38.066 56.038 38.066 56.232 38.083 56.329 38.217 56.368 38.284 56.776 38.250 56.815 38.200 57.009 38.250 57.164 38.150 57.339 37.982 57.378 37.898 57.785 37.831 57.980 37.782 58.213 37.631 58.407 37.664 58.523 37.648 58.718 37.698 58.854 37.631 59.047 37.513 59.242 37.378 59.397 37.210 59.494 37.143 59.630 37.126 59.824 37.041 60.018 36.670 60.349 36.653 61.125 36.653 61.164 36.314 61.164 36.178 61.242 36.008 61.183 35.974 61.145 35.803 61.261 35.633 61.261 35.599 61.300 35.514 61.281 35.342 61.203 35.171 61.125 34.983 61.125 34.811 61.087 34.726 60.989 34.553 60.814 34.381 60.873 34.278 60.678 34.106 60.523 34.071 60.523 33.881 60.562 33.829 60.562 33.656 60.543 33.552 60.737 33.552 60.776 33.535 60.950 33.362 60.776 33.188 60.620 33.014 60.601 32.841 60.659 32.666 60.717 32.492 60.795 32.300 60.853 32.124 60.853 31.949 60.834 31.599 60.834 31.475 61.048 31.458 61.125 31.458 61.183 31.423 61.378 31.423 61.436 31.405 61.572 31.388 61.630 31.388 61.688 31.353 61.747 31.335 61.766 31.247 61.785 31.071 61.844 30.983 61.844 30.948 61.824 30.807 61.805 30.276 61.281 30.099 61.125 29.993 61.009 29.869 60.873 29.709 61.028 29.531 61.203 29.353 61.378 29.175 61.436 28.996 61.552 28.979 61.572 28.961 61.572 28.782 61.669 28.603 61.863 28.496 62.057 28.442 62.252 28.371 62.446 28.245 62.640 28.156 62.795 28.048 62.776 27.958 62.776 27.761 62.834 27.581 62.834 27.401 62.814 27.221 62.950 27.239 63.145 27.148 63.339 27.130 63.358 27.130 63.319 27.094 63.281 27.022 63.261 27.005 63.261 26.824 63.222 26.624 63.164 26.642 63.145 26.642 62.950 26.624 62.756 26.570 62.562 26.534 62.368 26.353 62.290 26.390 62.174 26.263 61.960 26.081 61.824 25.936 61.805 25.754 61.688 25.572 61.688 25.391 61.669 25.190 61.630 25.209 61.514 25.099 61.319 25.190 61.125 25.209 60.912 25.263 60.717 25.446 60.562 25.318 60.465 25.373 60.252 25.373 60.018 25.409 59.824 25.391 59.611 25.463 59.416 25.427 59.261 25.391 59.067 25.536 58.873 25.554 58.679 25.572 58.485 25.554 58.290 25.554 58.096 25.681 57.902 25.627 57.785 25.736 57.591 25.772 57.397 25.954 57.261 26.136 57.203 26.335 57.145 26.516 57.106 26.697 57.086 26.878 57.009 27.058 56.873 27.130 56.815 27.148 56.620 27.184 56.426 27.166 56.213 27.076 56.018 27.005 55.844 27.005 55.785 26.914 55.591 26.896 55.572 26.751 55.456 26.787 55.261 26.642 55.067 26.624 55.009 26.498 54.815 26.516 54.620 26.588 54.407 26.697 54.213 26.733 54.019 26.697 53.824 26.769 53.611 26.950 53.475 26.968 53.456 27.040 53.261 27.094 53.048 27.221 52.853 27.329 52.698 27.509 52.601 27.635 52.407 27.707 52.193 27.833 51.999 27.850 51.786 27.850 51.591 27.994 51.397 28.156 51.281 28.317 51.222 28.496 51.106 28.585 51.087 28.782 51.048 28.961 50.912 29.139 50.834 29.157 50.640 29.246 50.698 29.424 50.679 29.602 50.504 29.620 50.485 29.638 50.446 29.816 50.271 29.833 50.271 29.993 50.155 30.028 50.155 30.206 50.058 30.223 50.019 30.188 49.902 30.082 49.708 30.064 49.514 30.099 49.514 30.153 49.417 30.241 49.203 30.330 49.009 30.506 49.106 30.506 49.086 30.489 48.951 30.312 48.873 30.206 48.951 30.028 48.893 30.028 48.737 30.046 48.659 29.993 48.679 29.940 48.621 29.958 48.562 29.958 48.543 29.922 48.465 29.958 48.543 29.993 48.465 30.330 48.291 30.453 48.077 30.524 48.038 30.895 48.057 31.001 47.902 31.071 47.708 31.247 47.708 31.440 47.727 31.511 47.747 31.722 47.844 31.739 47.863 31.915 47.766 32.107 47.611 32.248 47.514 32.457 47.397 32.474 47.203 32.526 47.048 32.579 47.009 32.841 46.601 32.928 46.446 32.962 46.349 32.962 46.135 33.136 46.155 33.188 46.213 33.483 46.019 33.500 45.980 33.552 45.960 33.639 45.766 33.985 45.417 34.054 45.475 34.209 45.572 34.381 45.475 34.433 45.455 34.606 45.533 34.553 45.727 34.743 45.669 34.914 45.786 35.000 45.883 35.068 45.941 35.102 45.960 35.102 46.174 35.171 46.193 35.291 46.155 35.462 46.019 35.616 46.038 35.718 46.232 35.803 46.232 35.838 46.019 35.820 45.824 35.889 45.727 35.974 45.650 35.974 45.611 35.991 45.572 36.008 45.533 36.025 45.494 35.991 45.436 35.991 45.359 36.008 45.339 36.195 45.339 36.364 45.281 36.466 45.087 36.500 45.067 36.534 45.028 36.670 45.087 36.754 45.009 36.788 44.873 36.805 44.854 36.974 44.892 37.143 44.795 37.177 44.776 37.160 44.601 37.058 44.407 37.075 44.213 37.160 44.601 37.177 44.776 37.143 44.795 37.311 44.815 37.429 44.621 37.496 44.601 37.664 44.582 37.715 44.621 37.798 44.465 37.882 44.271 38.049 44.310 38.100 44.349 38.267 44.407 38.417 44.329 38.501 44.329 38.667 44.271 38.850 44.310 38.967 44.193 39.016 44.174 39.182 44.174 39.382 44.038 39.415 44.407 39.696 44.485 39.728 44.679 39.630 44.834 39.415 45.009 39.299 45.126 39.200 45.300 39.083 45.397 39.000 45.436 38.983 45.494 38.950 45.650 38.900 45.844 38.883 46.057 38.834 46.193 38.900 46.388 38.867 46.543 39.033 46.757 39.132 46.834 39.200 47.048 39.464 47.397 39.530 47.591 39.630 47.786 39.663 47.805 39.712 47.980 39.563 48.193 39.398 48.368 39.382 48.368 39.315 48.174 39.149 48.232 39.066 48.329 38.983 48.291 38.950 48.096 38.784 48.116 38.701 48.252 38.617 48.446 38.417 48.601 38.417 48.621 38.384 48.640 38.451 48.834 38.434 48.912 38.284 48.893 38.100 48.912 37.932 48.951 37.765 49.009 37.597 49.203 37.513 49.397 37.479 49.591 37.462 49.786 37.445 49.960 37.429 50.019 37.411 50.058 37.261 50.271 37.092 50.426 36.974 50.620 36.940 50.679 36.856 50.873 36.737 51.067 36.670 51.455 36.636 51.591 36.602 51.786 36.585 51.980 36.619 52.174 36.670 52.368 36.703 52.582 36.737 52.776 36.771 52.970 36.805 53.067 36.839 53.164 36.839 53.222 36.873 53.436 36.889 53.630 36.906 53.824 36.906 54.019 36.873 53.824 36.856 53.630 36.805 53.824 36.822 54.019 36.991 53.999 37.160 53.980 37.327 53.922 ; #1400 -10 -14.881 129.028 -15.071 129.203 -14.881 129.241 -14.919 129.435 -15.109 129.610 -15.203 129.745 -15.128 129.707 -14.938 129.648 -14.862 129.842 -14.691 129.648 -14.500 129.473 -14.310 129.416 -14.120 129.513 -14.062 129.551 -14.005 129.745 -13.815 129.786 -13.624 129.823 -13.529 130.018 -13.377 130.212 -13.358 130.347 -13.167 130.134 -12.976 130.134 -12.957 130.250 -12.765 130.368 -12.670 130.562 -12.479 130.619 -12.518 130.813 -12.460 130.873 -12.383 131.067 -12.192 131.026 -12.211 131.221 -12.268 131.415 -12.287 131.609 -12.268 131.803 -12.287 131.997 -12.230 132.192 -12.211 132.386 -12.211 132.405 -12.097 132.599 -11.905 132.658 -11.713 132.677 -11.521 132.542 -11.445 132.348 -11.521 132.154 -11.350 131.960 -11.311 131.844 -11.158 132.038 -11.369 132.173 -11.177 132.173 -11.138 132.367 -11.330 132.523 -11.350 132.580 -11.502 132.774 -11.369 132.968 -11.502 133.065 -11.694 133.163 -11.694 133.376 -11.771 133.570 -11.771 133.764 -11.752 133.958 -11.905 134.152 -12.078 134.503 -11.982 134.697 -12.135 134.892 -12.268 135.086 -12.230 135.280 -12.116 135.474 -12.058 135.687 -11.847 135.863 -12.058 135.803 -12.249 135.706 -12.154 135.919 -12.345 136.016 -12.441 136.132 -12.402 136.329 -12.211 136.367 -12.020 136.386 -11.924 136.580 -12.135 136.620 -12.172 136.812 -12.383 136.987 -12.537 136.793 -12.727 136.620 -12.842 136.502 -13.033 136.542 -13.224 136.502 -13.167 136.308 -13.224 136.113 -13.339 135.919 -13.529 135.881 -13.719 135.900 -13.662 136.094 -13.853 136.016 -14.062 135.941 -14.253 135.803 -14.443 135.649 -14.634 135.552 -14.729 135.396 -14.919 135.455 -15.052 135.668 -15.166 135.863 -15.298 136.057 -15.412 136.251 -15.602 136.348 -15.716 136.542 -15.754 136.639 -15.924 136.834 -15.886 137.028 -16.000 137.222 -16.132 137.416 -16.189 137.610 -16.341 137.823 -16.529 138.018 -26.008 138.018 -26.008 140.987 -38.066 140.987 -38.066 140.793 -38.016 140.580 -37.898 140.386 -37.732 140.289 -37.547 140.154 -37.496 140.016 -37.344 139.881 -37.176 139.765 -37.008 139.747 -36.839 139.863 -36.788 139.881 -36.618 139.863 -36.449 139.784 -36.280 139.706 -36.110 139.609 -35.940 139.434 -35.769 139.239 -35.616 139.045 -35.752 139.239 -35.906 139.434 -36.076 139.590 -36.178 139.687 -36.008 139.590 -35.838 139.396 -35.701 139.202 -35.531 139.105 -35.548 139.318 -35.376 139.377 -35.325 139.221 -35.393 139.026 -35.565 138.892 -35.565 138.697 -35.650 138.503 -35.650 138.290 -35.667 138.193 -35.496 138.268 -35.342 138.463 -35.171 138.484 -35.000 138.522 -34.811 138.503 -34.640 138.463 -34.467 138.290 -34.295 138.231 -34.278 138.037 -34.450 137.939 -34.623 137.921 -34.657 137.921 -34.828 137.861 -35.000 137.783 -35.171 137.648 -35.120 137.454 -35.274 136.871 -35.085 136.987 -34.914 137.084 -34.914 137.279 -34.828 137.473 -34.657 137.513 -34.484 137.492 -34.433 137.454 -34.261 137.513 -34.071 137.570 -33.898 137.648 -33.725 137.764 -33.570 137.980 -33.379 137.902 -33.205 137.861 -33.101 138.055 -32.927 137.958 -32.752 137.939 -32.578 137.842 -32.648 137.764 -32.823 137.823 -32.997 137.745 -33.101 137.551 -33.274 137.416 -33.449 137.376 -33.621 137.260 -33.725 137.065 -33.898 136.677 -34.020 136.483 -34.140 136.367 -34.312 136.251 -34.484 136.094 -34.640 135.881 -34.811 135.822 -34.846 136.016 -35.017 135.979 -34.880 135.844 -34.948 135.649 -34.777 135.512 -34.623 135.318 -34.433 135.221 -34.484 135.415 -34.312 135.377 -34.140 135.280 -33.968 135.239 -33.932 135.221 -33.760 135.026 -33.587 134.873 -33.414 134.854 -33.240 134.657 -33.153 134.463 -33.101 134.271 -32.910 134.077 -32.735 134.231 -32.735 134.290 -32.561 134.271 -32.457 134.077 -32.457 133.883 -32.282 133.861 -32.107 133.667 -32.194 133.473 -32.230 133.279 -32.019 132.890 -31.949 132.774 -31.932 132.580 -32.019 132.386 -32.002 132.192 -31.845 131.997 -31.722 131.784 -31.546 131.396 -31.475 131.202 -31.564 131.007 -31.617 130.813 -31.599 130.619 -31.599 130.406 -31.582 130.212 -31.617 129.823 -31.687 129.028 ; #1401 50 45.492 58.554 45.476 58.534 45.445 58.534 45.414 58.554 45.398 58.534 45.366 58.515 45.350 58.495 45.335 58.476 45.288 58.437 45.272 58.418 45.241 58.398 45.210 58.398 45.178 58.379 45.131 58.379 45.116 58.359 45.085 58.359 45.053 58.321 45.022 58.321 44.990 58.301 44.959 58.282 44.928 58.262 44.895 58.223 44.833 58.223 44.785 58.243 44.754 58.262 44.723 58.282 44.676 58.301 44.660 58.321 44.628 58.340 44.597 58.340 44.597 58.321 44.566 58.301 44.534 58.262 44.423 58.262 44.391 58.301 44.359 58.321 44.344 58.340 44.328 58.398 44.312 58.476 44.296 58.534 44.281 58.632 44.281 58.787 44.296 58.864 44.296 58.923 44.312 58.981 44.312 59.020 44.296 59.059 44.265 59.078 44.249 59.059 44.218 59.039 44.154 59.039 44.122 59.098 44.107 59.136 44.091 59.156 44.091 59.175 44.059 59.194 44.028 59.175 43.963 59.175 43.948 59.214 43.979 59.233 43.995 59.233 44.028 59.253 44.059 59.253 44.075 59.292 44.044 59.447 44.044 59.466 44.075 59.583 44.059 59.603 44.059 59.719 44.044 59.758 44.044 59.796 44.028 59.835 44.044 59.874 44.044 60.010 44.059 60.068 44.091 60.107 44.107 60.165 44.138 60.205 44.154 60.224 44.202 60.282 44.233 60.301 44.265 60.321 44.296 60.321 44.312 60.340 44.312 60.379 44.328 60.418 44.344 60.457 44.375 60.496 44.391 60.515 44.423 60.534 44.454 60.554 44.502 60.573 44.534 60.554 44.597 60.554 44.613 60.573 44.628 60.612 44.628 60.671 44.644 60.690 44.644 60.709 44.660 60.709 44.691 60.729 44.723 60.729 44.770 60.709 44.817 60.671 44.848 60.632 44.880 60.593 44.911 60.554 44.928 60.534 44.959 60.515 44.990 60.476 45.069 60.379 45.116 60.379 45.147 60.418 45.178 60.457 45.225 60.476 45.319 60.476 45.350 60.457 45.382 60.437 45.429 60.418 45.445 60.399 45.507 60.399 45.492 60.418 45.507 60.457 45.523 60.457 45.539 60.437 45.539 60.399 45.570 60.379 45.585 60.360 45.601 60.340 45.601 60.263 45.617 60.185 45.617 60.107 45.601 60.088 45.585 60.049 45.570 59.991 45.554 59.932 45.554 59.835 45.570 59.777 45.570 59.758 45.679 59.758 45.679 59.855 45.694 59.932 45.710 59.971 45.710 60.107 45.694 60.165 45.679 60.205 45.664 60.263 45.664 60.340 45.679 60.340 45.694 60.360 45.710 60.360 45.741 60.340 45.741 60.301 45.757 60.282 45.772 60.301 45.804 60.263 45.819 60.205 45.819 60.185 45.804 60.146 45.835 60.146 45.850 60.165 45.866 60.185 45.835 60.263 45.835 60.340 45.850 60.360 45.898 60.301 45.929 60.282 45.929 60.146 45.913 60.127 45.913 60.068 45.944 60.049 45.960 60.068 45.960 60.185 45.975 60.205 45.991 60.243 45.975 60.282 45.975 60.301 45.991 60.301 46.022 60.282 46.037 60.321 46.053 60.321 46.068 60.301 46.068 60.263 46.084 60.205 46.099 60.146 46.099 60.088 46.084 60.030 46.068 59.991 46.053 59.952 46.053 59.932 46.037 59.874 46.022 59.835 46.022 59.796 46.037 59.777 46.053 59.796 46.084 59.816 46.099 59.835 46.130 59.816 46.177 59.816 46.223 59.796 46.254 59.777 46.270 59.758 46.285 59.699 46.270 59.641 46.285 59.583 46.301 59.544 46.285 59.505 46.270 59.486 46.239 59.525 46.208 59.544 46.177 59.583 46.146 59.622 46.115 59.661 46.084 59.680 46.053 59.699 46.037 59.680 46.022 59.661 46.007 59.680 45.991 59.699 45.944 59.680 45.913 59.680 45.881 59.661 45.835 59.641 45.804 59.622 45.804 59.603 45.788 59.583 45.741 59.583 45.757 59.564 45.757 59.544 45.772 59.564 45.772 59.544 45.757 59.525 45.726 59.486 45.710 59.486 45.726 59.466 45.741 59.447 45.741 59.350 45.726 59.311 45.726 59.253 45.741 59.233 45.819 59.233 45.850 59.253 45.866 59.272 45.881 59.311 45.898 59.330 45.913 59.350 45.960 59.350 45.975 59.330 45.975 59.253 45.944 59.214 45.929 59.194 45.929 59.020 45.944 59.000 45.944 58.981 45.929 58.961 45.898 58.961 45.898 58.942 45.913 58.903 45.913 58.845 45.898 58.806 45.866 58.767 45.835 58.728 45.772 58.651 45.726 58.651 45.694 58.632 45.601 58.632 45.570 58.612 45.554 58.592 45.539 58.592 45.523 58.573 ; #1402 50 49.818 31.451 49.676 31.599 49.501 31.951 49.334 32.308 49.158 32.687 49.025 33.082 48.992 33.495 48.836 33.841 48.687 34.220 48.530 34.582 48.423 35.011 48.142 35.121 47.858 35.104 47.592 34.995 47.567 34.544 47.545 34.126 47.336 33.940 47.069 33.692 46.846 33.478 46.717 32.890 46.745 33.077 46.816 33.533 46.984 33.753 47.300 34.071 47.438 34.242 47.493 34.659 47.427 35.093 47.592 35.264 47.875 35.143 48.148 35.154 48.489 35.187 48.497 35.033 48.568 34.604 48.761 34.242 48.899 33.956 49.025 33.505 49.169 33.132 49.427 32.753 49.447 32.390 49.559 31.967 49.703 31.582 ; #1403 50 8.969 0.231 8.785 0.170 8.483 0.121 8.228 0.154 7.923 0.033 8.123 -0.225 8.225 -0.352 8.282 -0.588 8.527 -0.758 8.662 -0.835 8.947 -1.104 8.785 -1.115 8.719 -1.495 8.719 -1.379 8.634 -1.110 8.502 -0.868 8.228 -0.720 8.090 -0.571 8.027 -0.341 7.796 -0.170 7.609 -0.489 7.593 -0.181 7.485 -0.066 7.254 0.099 6.991 0.082 6.773 -0.038 6.746 -0.297 6.801 -0.571 6.727 -0.560 6.600 -0.291 6.438 -0.011 6.279 0.088 6.304 0.110 6.642 0.236 6.878 0.247 7.150 0.280 7.480 0.275 7.796 0.247 8.000 0.170 8.299 0.214 8.549 0.137 8.824 0.209 ; #1404 50 56.211 102.225 56.200 101.907 56.004 101.566 55.834 101.654 55.519 101.863 55.470 102.154 55.186 102.242 55.214 102.319 55.495 102.330 55.694 102.027 55.955 101.973 56.093 102.363 56.109 102.797 55.850 103.027 55.574 103.176 55.294 103.297 55.021 103.214 54.756 103.110 54.456 103.176 54.206 103.011 53.848 103.077 53.721 103.170 53.318 103.374 53.536 103.593 53.721 103.401 53.988 103.170 54.247 103.275 54.475 103.291 54.743 103.159 55.021 103.258 55.302 103.330 55.585 103.231 55.850 103.093 56.184 102.934 56.285 102.473 ; #1405 50 54.704 48.962 54.877 49.038 55.071 49.434 55.244 49.813 55.352 50.297 55.429 50.775 55.440 51.242 55.629 51.747 55.724 51.544 55.541 51.357 55.470 50.824 55.445 50.330 55.396 49.852 55.401 49.280 55.200 49.192 54.953 48.885 54.680 48.703 54.475 48.407 54.167 48.456 53.966 48.808 53.704 48.874 53.421 49.077 53.310 48.879 53.277 48.923 53.421 49.571 53.498 49.247 53.737 49.220 54.084 49.500 54.021 49.165 54.081 48.797 54.324 48.538 54.548 48.923 ; #1406 50 48.651 44.555 48.921 44.780 49.180 44.984 49.458 45.104 49.714 45.313 50.006 45.429 50.199 45.753 50.232 46.203 50.300 46.280 50.400 45.890 50.711 45.819 50.953 46.038 51.232 45.901 51.493 46.082 51.697 46.412 51.804 46.681 51.636 46.181 51.405 45.890 51.135 45.841 50.882 45.945 50.647 45.681 50.361 45.764 50.119 45.484 49.849 45.324 49.562 45.093 49.315 44.978 49.050 44.830 48.803 44.610 48.579 44.473 ; #1407 50 61.109 27.901 61.090 28.181 61.316 28.571 61.580 28.709 61.631 29.121 61.806 29.593 62.095 29.692 62.456 29.610 62.253 29.258 62.239 28.791 62.269 28.198 62.590 27.896 62.489 28.484 62.640 28.330 62.945 28.209 63.014 27.714 63.179 27.324 63.463 27.165 63.421 27.137 63.124 27.214 62.857 27.571 62.546 27.495 62.456 27.533 62.294 27.885 62.084 28.264 61.925 28.698 61.795 28.505 61.597 28.187 61.636 27.923 61.644 27.533 61.448 27.319 61.226 27.813 ; #1408 50 54.724 -64.407 54.503 -64.390 54.214 -64.418 54.198 -64.885 54.542 -65.165 54.437 -65.187 54.095 -65.011 54.013 -65.330 54.203 -65.769 54.486 -66.198 54.663 -66.313 54.964 -66.462 54.864 -66.522 54.594 -66.577 54.283 -66.445 54.387 -66.374 54.363 -66.148 54.131 -65.780 53.944 -65.445 53.567 -65.302 53.701 -65.231 53.859 -65.044 54.046 -64.604 53.952 -64.170 53.914 -63.654 54.032 -63.280 54.103 -63.473 54.150 -63.846 54.363 -64.159 54.627 -64.330 ; #1409 50 23.846 32.846 23.603 32.758 23.485 32.802 23.276 32.808 23.004 32.626 22.757 32.489 22.732 32.236 22.694 31.962 22.529 31.736 22.275 31.522 22.049 31.352 21.788 31.203 21.667 31.170 22.008 31.390 22.251 31.604 22.402 31.824 22.617 32.005 22.617 32.291 22.784 32.560 22.982 32.747 23.043 32.940 23.345 32.967 23.620 32.962 23.898 32.901 ; #1410 50 63.089 25.577 62.950 25.830 62.670 25.769 62.415 25.868 62.144 25.643 61.900 25.412 61.653 25.308 61.363 25.308 61.104 25.456 61.182 26.016 61.281 25.753 61.517 25.621 61.806 25.665 62.067 25.824 62.395 26.253 62.500 26.736 62.720 26.967 62.926 26.830 62.736 26.566 62.516 26.225 62.497 25.962 62.725 26.110 62.962 26.044 ; #1411 50 59.170 -110.302 58.980 -110.692 58.763 -111.115 58.578 -110.973 58.669 -110.473 58.917 -110.132 59.049 -109.637 59.107 -109.104 59.129 -108.538 59.203 -107.962 59.310 -107.533 59.272 -106.918 59.261 -106.291 59.283 -106.423 59.324 -106.956 59.385 -107.511 59.446 -108.082 59.416 -108.615 59.498 -108.962 59.578 -109.489 59.379 -109.868 ; #1412 50 47.716 84.297 47.861 84.407 48.057 84.137 48.285 83.736 48.453 83.637 48.748 83.489 48.957 83.742 49.124 84.253 49.326 84.071 49.582 83.830 49.604 83.577 49.452 83.692 49.290 84.060 49.086 84.011 48.959 83.599 48.709 83.429 48.417 83.467 48.233 83.187 48.071 83.297 47.963 83.698 47.803 84.060 ; #1413 50 13.050 15.110 13.121 14.912 13.242 14.648 13.196 14.363 13.349 14.187 13.371 13.995 13.476 13.797 13.763 13.830 13.947 13.599 13.824 13.308 13.522 13.368 13.275 13.511 13.105 13.736 12.968 13.835 12.726 13.852 12.504 14.088 12.631 14.286 12.803 14.527 12.885 14.775 12.940 15.082 ; #1414 50 46.690 -100.769 46.525 -100.621 46.230 -100.610 45.969 -100.555 45.685 -100.484 45.427 -100.473 45.329 -100.462 45.093 -100.374 44.859 -100.588 44.782 -100.995 44.741 -100.962 44.537 -100.582 44.664 -100.566 44.931 -100.374 45.165 -100.269 45.465 -100.341 45.726 -100.346 45.974 -100.467 46.254 -100.560 46.563 -100.577 ; #1415 50 74.570 103.137 74.686 104.115 74.783 105.203 74.854 105.269 74.952 104.198 74.680 103.302 74.636 102.269 74.658 101.198 74.885 100.571 75.009 100.302 74.601 100.418 74.413 99.758 74.354 99.643 74.277 100.670 73.995 101.044 73.921 101.374 74.263 101.143 74.407 101.203 74.349 102.044 74.506 102.527 ; #1416 50 56.709 -124.791 56.511 -124.582 56.151 -124.341 56.001 -124.170 55.809 -123.868 55.599 -123.500 55.291 -123.225 55.363 -123.198 55.602 -123.440 55.847 -123.725 56.018 -123.555 56.031 -123.033 56.076 -122.434 56.134 -122.555 56.060 -123.060 56.034 -123.527 56.170 -124.022 56.351 -124.346 56.602 -124.599 ; #1417 50 4.604 36.038 4.369 35.918 4.078 35.896 3.797 35.846 3.519 35.912 3.264 36.044 3.018 36.176 2.807 36.385 2.497 36.571 2.697 36.698 2.903 36.582 3.098 36.368 3.352 36.242 3.649 36.225 3.933 36.209 4.224 36.220 4.519 36.198 ; #1418 50 61.727 30.780 61.511 30.407 61.261 30.016 61.041 30.203 60.799 30.500 60.529 30.720 60.272 30.956 59.977 31.253 60.157 31.643 60.193 32.176 60.291 32.599 60.540 32.775 60.826 32.786 61.082 32.533 61.281 32.060 61.457 31.610 61.650 31.192 ; #1419 50 49.389 43.648 49.166 43.841 48.937 43.753 48.712 43.484 48.486 43.143 48.225 42.951 47.990 42.835 47.902 42.434 47.705 42.209 47.619 42.478 47.757 42.945 47.900 43.099 48.164 43.176 48.439 43.445 48.665 43.604 48.913 43.769 49.155 43.907 49.375 43.670 ; #1420 50 -17.912 27.104 -17.697 27.269 -17.515 27.500 -17.256 27.676 -17.089 27.929 -16.929 28.104 -16.810 28.396 -16.670 28.808 -16.522 28.571 -16.610 28.275 -16.796 28.044 -16.927 27.769 -17.119 27.593 -17.384 27.390 -17.606 27.264 -17.846 27.093 ; #1421 50 59.234 56.209 58.996 55.962 58.782 56.082 58.600 55.621 58.580 55.632 58.531 56.088 58.243 56.319 57.887 56.742 58.127 56.830 58.245 56.555 58.553 56.264 58.853 56.456 59.126 56.280 59.346 56.632 59.625 56.610 59.752 56.571 59.374 56.495 ; #1422 50 56.296 -103.242 56.420 -103.005 56.597 -102.544 56.805 -102.297 57.069 -102.016 57.359 -102.000 57.783 -101.709 58.013 -101.901 57.956 -102.198 57.706 -102.588 57.408 -102.863 57.175 -102.709 56.778 -102.687 56.597 -102.962 56.751 -103.077 56.657 -103.165 56.450 -103.275 ; #1423 50 54.644 90.956 54.423 91.220 54.150 91.434 53.870 91.445 53.897 91.604 54.046 91.599 54.360 91.495 54.597 91.110 54.866 90.995 55.043 91.319 55.106 91.786 55.330 92.396 55.294 92.143 55.164 91.720 55.076 91.242 54.883 90.940 ; #1424 50 53.145 -100.544 53.101 -100.896 52.911 -100.984 52.875 -100.648 52.754 -100.280 52.576 -100.027 52.308 -100.143 51.917 -100.038 51.694 -99.813 51.815 -99.725 52.098 -99.802 52.366 -99.747 52.642 -99.670 52.908 -99.775 53.077 -100.220 ; #1425 50 -21.503 -45.544 -21.382 -45.747 -21.111 -45.879 -20.842 -46.049 -20.751 -45.868 -20.974 -45.593 -21.076 -45.330 -21.002 -45.412 -20.723 -45.610 -20.643 -45.780 -20.676 -46.121 -20.834 -46.148 -21.076 -46.055 -21.334 -46.071 -21.382 -45.945 -21.481 -45.687 ; #1426 50 51.788 -99.170 51.711 -99.357 51.575 -99.363 51.303 -99.022 51.088 -98.901 50.841 -98.791 50.568 -98.610 50.270 -98.495 50.259 -98.093 50.491 -98.011 50.730 -98.269 50.912 -98.643 51.154 -98.654 51.512 -98.857 51.652 -99.060 ; #1427 50 48.129 -103.192 48.098 -103.588 48.049 -103.604 48.093 -103.176 48.074 -102.758 47.839 -102.560 47.597 -102.302 47.490 -101.868 47.556 -101.308 47.586 -101.500 47.556 -101.907 47.812 -102.275 47.905 -102.571 48.134 -102.786 ; #1428 50 -15.371 -69.544 -15.292 -69.714 -15.533 -69.857 -15.721 -69.989 -15.872 -69.819 -15.991 -69.560 -16.186 -69.407 -16.158 -69.115 -16.382 -68.962 -16.324 -68.692 -16.092 -68.830 -15.886 -68.978 -15.677 -69.198 -15.484 -69.407 ; #1429 50 -15.653 30.780 -15.691 30.945 -15.757 31.231 -15.713 31.533 -15.713 31.835 -15.677 32.132 -15.588 32.522 -15.539 32.390 -15.583 32.093 -15.605 31.808 -15.613 31.495 -15.664 31.209 -15.642 30.912 ; #1430 50 11.365 4.137 11.214 4.313 11.071 4.566 10.815 4.687 10.598 4.522 10.340 4.440 10.024 4.533 10.096 4.599 10.365 4.659 10.629 4.681 10.923 4.703 11.148 4.505 11.277 4.247 ; #1431 50 54.217 -100.269 53.952 -100.341 53.715 -100.363 53.498 -100.698 53.277 -100.484 53.115 -100.088 53.115 -99.610 53.214 -99.396 53.280 -99.681 53.373 -99.940 53.657 -100.088 53.900 -99.725 53.903 -99.978 54.120 -100.038 ; #1432 50 51.336 -73.005 51.267 -73.319 51.071 -73.676 50.882 -73.901 50.494 -73.989 50.179 -73.995 50.322 -73.830 50.546 -73.797 50.805 -73.610 51.069 -73.280 50.912 -73.335 50.978 -73.159 51.176 -72.830 51.207 -72.907 51.259 -72.951 ; #1433 50 12.089 -85.846 11.897 -85.912 11.633 -85.857 11.359 -85.720 11.200 -85.484 11.109 -85.203 11.060 -84.901 11.266 -84.813 11.496 -84.973 11.716 -85.170 11.889 -85.407 12.053 -85.637 ; #1434 50 1.063 30.604 1.266 30.769 1.496 30.956 1.638 31.203 1.872 31.368 2.254 31.412 2.185 31.275 1.993 31.060 1.820 30.830 1.619 30.621 1.388 30.445 1.159 30.484 ; #1435 50 59.115 38.132 59.021 37.632 58.853 37.918 58.623 37.890 58.719 37.313 58.611 37.374 58.374 37.769 58.141 38.242 58.152 38.648 58.396 38.956 58.608 38.632 58.837 38.280 ; #1436 50 -33.580 -53.516 -33.446 -53.456 -33.137 -53.363 -32.931 -53.159 -32.843 -52.967 -32.785 -52.703 -32.359 -52.692 -32.496 -52.951 -32.710 -53.225 -32.928 -53.385 -33.145 -53.604 -33.446 -53.566 ; #1437 50 49.981 -94.593 49.810 -94.610 49.567 -94.907 49.317 -94.978 49.094 -95.225 48.921 -95.115 48.891 -94.681 49.119 -94.225 49.328 -94.593 49.364 -94.187 49.588 -94.308 49.818 -94.495 ; #1438 50 25.445 -97.500 25.299 -97.659 25.000 -97.692 24.747 -97.692 24.478 -97.769 24.024 -97.747 24.162 -97.725 24.453 -97.681 24.736 -97.615 25.016 -97.538 25.299 -97.445 ; #1439 50 42.706 77.929 42.671 77.626 42.646 77.236 42.580 76.857 42.416 76.379 42.245 76.703 42.163 77.060 42.171 77.467 42.328 77.813 42.613 78.154 ; #1440 50 53.900 81.236 53.980 81.346 54.217 81.725 54.379 82.121 54.542 82.533 54.724 83.066 54.800 82.901 54.619 82.456 54.409 82.088 54.247 81.703 54.040 81.341 ; #1441 50 59.343 13.852 59.352 13.335 59.063 13.137 58.961 12.654 58.765 12.495 58.490 12.445 58.416 12.615 58.558 13.099 58.678 13.632 58.889 13.962 59.129 14.033 ; #1442 50 -46.926 -72.808 -46.725 -72.511 -46.563 -72.176 -46.516 -71.764 -46.580 -71.330 -46.450 -71.319 -46.337 -71.769 -46.484 -72.115 -46.563 -72.555 -46.626 -72.698 -46.879 -72.846 ; #1443 50 56.891 54.242 57.033 54.725 57.232 55.121 57.356 55.533 57.662 55.434 57.720 55.313 57.403 55.363 57.271 54.978 57.097 54.654 56.957 54.176 56.805 54.093 ; #1444 50 46.136 33.791 46.026 34.099 45.897 34.478 45.781 34.747 45.399 35.192 45.572 35.099 45.825 34.879 46.076 34.604 46.180 34.236 46.200 33.901 ; #1445 50 51.790 -68.434 51.692 -68.780 51.763 -69.143 51.644 -69.214 51.355 -69.148 51.118 -68.907 50.832 -68.742 50.857 -68.692 51.107 -68.456 51.342 -68.242 51.622 -68.242 ; #1446 50 38.194 45.137 37.999 45.121 37.758 45.198 37.484 45.286 37.188 45.445 37.335 45.775 37.610 45.747 37.793 45.500 38.087 45.473 ; #1447 50 47.493 -107.962 47.597 -107.632 47.652 -107.198 47.683 -106.813 47.707 -106.368 47.894 -106.390 47.779 -106.813 47.694 -107.170 47.663 -107.571 47.551 -107.912 ; #1448 50 8.079 -5.538 7.870 -5.681 7.640 -5.731 7.337 -5.775 7.081 -5.500 7.392 -5.401 7.370 -5.538 7.441 -5.632 7.739 -5.582 7.961 -5.544 ; #1449 50 38.475 42.324 38.472 42.527 38.414 42.885 38.370 43.192 38.623 43.203 38.878 43.489 38.922 43.231 38.796 43.038 38.768 42.659 38.601 42.412 ; #1450 50 37.892 -110.374 37.769 -110.462 37.517 -110.698 37.297 -110.846 37.072 -111.308 37.059 -111.132 37.215 -110.769 37.492 -110.637 37.739 -110.429 ; #1451 50 13.226 103.703 13.025 103.753 12.836 103.945 12.679 104.154 12.478 104.505 12.600 104.473 12.786 104.247 13.042 104.088 13.218 103.874 ; #1452 50 59.790 -153.890 59.790 -154.181 59.749 -154.758 59.644 -155.275 59.548 -155.802 59.338 -155.670 59.419 -155.088 59.523 -154.604 59.702 -154.137 ; #1453 50 41.671 -112.764 41.565 -112.912 41.282 -112.863 41.035 -112.654 40.790 -112.396 40.925 -112.159 41.087 -112.176 41.274 -112.462 41.510 -112.714 ; #1454 50 50.201 -88.368 50.201 -88.714 49.893 -88.956 49.667 -88.989 49.534 -88.714 49.447 -88.357 49.593 -88.143 49.923 -88.121 50.157 -88.225 ; #1455 50 36.498 -114.368 36.155 -114.626 36.081 -114.374 36.105 -114.027 35.935 -113.725 35.963 -113.720 36.152 -114.022 36.133 -114.313 36.424 -114.341 ; #1456 50 37.188 100.214 37.191 99.907 36.957 99.736 36.729 99.857 36.638 100.198 36.603 100.577 36.831 100.665 37.064 100.407 ; #1457 50 61.388 -117.703 61.525 -118.104 61.377 -118.505 61.256 -119.066 61.300 -119.714 61.264 -119.659 61.229 -119.071 61.325 -118.495 61.399 -117.967 ; #1458 50 63.025 -102.110 62.882 -101.901 62.766 -101.396 62.857 -101.000 63.174 -101.011 63.399 -100.703 63.477 -101.005 63.399 -101.522 63.141 -102.033 ; #1459 50 32.931 118.115 32.934 118.330 33.112 118.637 33.454 118.637 33.341 118.335 33.096 118.385 33.112 118.225 33.121 118.027 33.110 117.907 32.994 118.154 ; #1460 50 51.449 100.412 51.270 100.319 50.959 100.275 50.595 100.214 50.628 100.440 50.904 100.604 51.184 100.742 51.506 100.637 ; #1461 50 64.623 -70.440 64.799 -70.495 65.074 -70.835 65.306 -71.500 65.157 -71.610 64.884 -71.791 64.650 -71.643 64.714 -71.088 64.659 -70.648 ; #1462 50 43.967 -99.352 43.788 -99.401 43.546 -99.346 43.328 -99.088 43.111 -98.747 43.155 -98.769 43.345 -99.071 43.563 -99.319 43.804 -99.368 ; #1463 50 45.192 132.780 45.285 132.588 45.310 132.187 45.099 132.033 44.812 132.082 44.600 132.313 44.768 132.632 45.041 132.808 ; #1464 50 58.840 14.929 58.686 14.665 58.432 14.418 57.983 14.220 58.160 14.549 58.427 14.791 58.669 14.918 ; #1465 50 57.378 42.824 57.130 43.016 56.841 43.159 56.751 43.280 57.091 43.209 57.394 43.297 57.546 43.352 57.452 42.846 ; #1466 50 50.667 92.863 50.551 92.615 50.369 92.302 50.078 92.456 50.036 92.846 50.289 93.225 50.554 92.995 ; #1467 50 1.366 32.703 1.377 32.885 1.294 33.209 1.430 33.231 1.652 33.363 1.647 33.203 1.561 32.912 1.506 32.637 ; #1468 50 63.834 34.324 63.645 34.341 63.413 34.659 63.045 34.879 63.135 34.945 63.405 35.093 63.529 35.060 63.771 34.659 ; #1469 50 52.806 5.159 52.576 5.110 52.335 5.159 52.346 5.637 52.573 5.786 52.831 5.549 53.019 5.401 ; #1470 50 49.320 117.654 49.150 117.412 48.924 117.110 48.676 117.082 48.634 117.275 48.849 117.544 49.036 117.857 49.153 117.802 ; #1471 50 11.625 37.352 11.759 37.445 12.012 37.560 12.267 37.429 12.217 37.121 11.924 37.033 11.757 37.258 ; #1472 50 -50.631 -72.940 -50.428 -72.890 -50.243 -72.297 -50.177 -72.604 -50.075 -73.143 -50.248 -73.137 -50.513 -73.000 ; #1473 50 60.446 -133.231 60.311 -133.066 60.107 -132.665 59.752 -132.242 59.884 -132.280 60.118 -132.599 60.322 -133.022 ; #1474 50 36.987 -88.253 36.809 -88.159 36.526 -88.077 36.174 -88.016 36.284 -87.951 36.564 -88.033 36.839 -88.132 ; #1475 50 15.963 -3.896 15.897 -4.060 15.735 -4.275 15.490 -4.280 15.327 -4.170 15.746 -4.253 15.886 -4.038 ; #1476 50 -48.880 -72.934 -49.039 -72.489 -48.896 -72.440 -48.560 -72.588 -48.701 -72.637 -48.508 -72.857 -48.653 -72.923 -48.808 -73.044 ; #1477 50 52.065 47.769 52.198 48.104 52.437 48.198 52.721 48.445 52.708 48.346 52.456 48.148 52.201 47.923 ; #1478 50 54.944 -96.703 54.911 -96.978 54.789 -97.445 54.671 -97.912 54.611 -97.808 54.726 -97.374 54.864 -96.967 ; #1479 50 -18.845 -45.033 -18.664 -45.165 -18.355 -45.275 -18.517 -45.385 -18.777 -45.275 -18.944 -45.330 -18.961 -45.225 ; #1480 50 31.140 119.929 30.945 120.154 31.002 120.473 31.123 120.434 31.425 120.280 31.392 119.995 ; #1481 50 68.888 27.082 68.778 27.500 68.852 28.121 69.238 28.451 69.199 28.060 68.989 27.412 ; #1482 50 -30.890 -62.659 -30.835 -62.396 -30.666 -62.242 -30.540 -62.495 -30.633 -62.857 -30.821 -62.841 ; #1483 50 52.724 -119.104 52.598 -118.962 52.209 -118.462 52.385 -118.654 52.614 -118.929 ; #1484 50 4.986 -55.077 4.793 -55.220 4.560 -55.264 4.598 -54.962 4.846 -54.874 ; #1485 50 32.702 119.165 32.777 119.341 33.082 119.313 33.085 119.011 33.077 119.181 32.882 119.176 ; #1486 50 -49.733 -72.143 -49.585 -72.379 -49.471 -72.835 -49.629 -72.901 -49.709 -72.445 ; #1487 50 38.475 33.538 38.626 33.648 38.931 33.445 38.801 33.198 38.562 33.390 ; #1488 50 27.189 -80.813 27.041 -80.989 26.838 -80.973 26.770 -80.714 27.068 -80.659 ; #1489 50 1.603 32.385 1.641 32.495 1.798 32.879 1.778 32.692 1.674 32.423 ; #1490 50 47.680 -76.538 47.520 -76.736 47.198 -76.577 47.311 -76.462 47.537 -76.571 ; #1491 50 50.746 -117.731 50.614 -117.912 50.243 -117.874 50.339 -117.857 50.628 -117.846 ; #1492 50 34.802 -87.615 34.775 -87.363 34.648 -87.049 34.684 -87.038 34.808 -87.352 ; #1493 50 15.363 -89.313 15.418 -89.154 15.658 -88.923 15.655 -88.995 15.498 -89.297 ; #1494 50 51.215 30.511 51.063 30.396 50.733 30.434 50.791 30.544 51.085 30.566 ; #1495 50 57.975 -156.720 57.742 -156.198 57.813 -156.016 58.005 -156.308 ; #1496 50 -20.619 -46.593 -20.509 -46.687 -20.341 -46.929 -20.407 -46.940 -20.531 -46.775 ; #1497 50 46.301 6.258 46.411 6.725 46.497 6.593 46.362 6.247 ; #1498 50 11.381 34.676 11.636 34.418 11.474 34.516 ; #1499 50 12.379 -86.473 12.215 -86.236 12.355 -86.192 ; #1500 50 59.854 39.093 59.608 39.560 59.740 39.379 ; #1501 50 47.518 9.632 47.713 9.253 47.595 9.313 ; #1502 50 55.230 -97.275 55.073 -97.709 55.084 -97.451 ; #1503 50 49.621 -118.110 49.474 -118.071 49.777 -118.104 ; #1504 50 26.564 -99.148 26.838 -99.275 26.671 -99.242 ; #1505 50 56.285 -95.863 56.175 -96.324 56.159 -96.071 ; #1506 50 48.532 -118.137 48.406 -118.181 48.668 -118.093 ; #1507 50 -4.141 15.527 -4.180 15.357 -4.320 15.445 ; #1508 50 56.395 -94.802 56.436 -95.236 56.357 -95.071 ; #1509 50 66.812 -125.533 66.724 -125.099 66.894 -125.214 ; #1510 50 34.967 97.615 34.810 97.725 34.975 97.797 ; #1511 50 32.006 -85.099 31.770 -85.121 31.816 -85.082 ; #1512 50 52.239 104.352 52.049 104.566 52.131 104.527 ; #1513 50 44.598 -92.577 44.488 -92.313 44.537 -92.363 ; #1514 50 29.466 -101.192 29.501 -101.000 29.548 -101.176 ; #1515 50 30.391 32.330 30.246 32.456 30.292 32.484 ; #1516 50 53.644 -103.412 53.572 -103.698 53.547 -103.571 ; #1517 50 -21.533 -44.434 -21.401 -44.473 -21.384 -44.555 ; #1518 50 46.648 -111.692 46.484 -111.582 46.516 -111.538 ; #1519 50 34.510 -114.379 34.373 -114.214 34.411 -114.242 ; #1520 50 34.400 -83.918 34.268 -84.016 34.301 -83.885 ; #1521 50 -29.974 24.725 -30.117 24.852 -30.070 24.857 ; #1522 50 57.392 -4.341 57.262 -4.527 57.268 -4.495 ; #1523 50 35.437 3.934 35.437 4.500 35.605 4.231 ; #1524 50 33.748 -2.247 33.748 -1.687 33.844 -1.962 ; #1525 50 0.302 29.126 0.000 29.247 0.560 29.247 ; #1526 50 -1.688 28.687 -1.688 28.907 -1.603 28.791 ; #1527 0 -19.127 -67.500 -18.561 -67.500 -18.561 -68.060 ; #1528 0 -29.243 136.687 -29.243 137.247 -28.680 137.808 -28.118 137.808 -27.555 137.247 -27.555 136.687 -28.118 136.687 -28.680 136.687 ; #1529 0 -18.561 15.187 -19.127 15.747 -18.561 16.308 -18.561 16.874 -18.000 16.874 -18.000 16.308 -18.000 15.747 ; #1530 0 -24.758 129.934 -24.758 130.500 -24.758 131.060 -24.195 131.060 -24.195 130.500 -24.195 129.934 ; #1531 0 -30.931 139.500 -30.931 140.060 -30.367 140.060 -29.803 140.060 -30.367 139.500 ; #1532 0 49.496 135.560 49.496 136.121 50.058 136.121 50.058 135.560 ; #1533 0 50.623 136.264 50.623 136.687 51.187 136.687 51.187 136.264 ; #1534 0 29.243 53.434 29.803 53.434 29.803 52.874 29.803 52.308 ; #1535 0 -23.631 122.621 -23.631 123.187 -23.067 123.187 -23.067 122.621 ; #1536 0 -29.243 139.500 -29.243 140.060 -28.680 139.500 -28.680 138.934 ; % Time zone limits % Set internal flag flag 5 % Fill small rectangles at bottom to indicate main timezones #1537 4 -88.500 172.521 -90.000 172.521 -90.000 -172.469 -88.500 -172.469 ; #1538 3 -88.500 -172.469 -90.000 -172.469 -90.000 -157.512 -88.500 -157.512 ; #1539 2 -88.500 -157.512 -90.000 -157.512 -90.000 -142.503 -88.500 -142.503 ; #1540 1 -88.500 -142.503 -90.000 -142.503 -90.000 -127.493 -88.500 -127.493 ; #1541 4 -88.500 -127.493 -90.000 -127.493 -90.000 -112.503 -88.500 -112.503 ; #1542 3 -88.500 -112.503 -90.000 -112.503 -90.000 -97.494 -88.500 -97.494 ; #1543 2 -88.500 -97.494 -90.000 -97.494 -90.000 -82.504 -88.500 -82.504 ; #1544 1 -88.500 -82.504 -90.000 -82.504 -90.000 -67.494 -88.500 -67.494 ; #1545 4 -88.500 -67.494 -90.000 -67.494 -90.000 -52.504 -88.500 -52.504 ; #1546 3 -88.500 -52.504 -90.000 -52.504 -90.000 -37.495 -88.500 -37.495 ; #1547 2 -88.500 -37.495 -90.000 -37.495 -90.000 -22.485 -88.500 -22.485 ; #1548 1 -88.500 -22.485 -90.000 -22.485 -90.000 -7.495 -88.500 -7.495 ; #1549 4 -88.500 -7.495 -90.000 -7.495 -90.000 7.514 -88.500 7.514 ; #1550 3 -88.500 7.514 -90.000 7.514 -90.000 22.505 -88.500 22.505 ; #1551 2 -88.500 22.505 -90.000 22.505 -90.000 37.514 -88.500 37.514 ; #1552 1 -88.500 37.514 -90.000 37.514 -90.000 52.504 -88.500 52.504 ; #1553 4 -88.500 52.504 -90.000 52.504 -90.000 67.514 -88.500 67.514 ; #1554 3 -88.500 67.514 -90.000 67.514 -90.000 82.522 -88.500 82.522 ; #1555 2 -88.500 82.522 -90.000 82.522 -90.000 97.513 -88.500 97.513 ; #1556 1 -88.500 97.513 -90.000 97.513 -90.000 112.523 -88.500 112.523 ; #1557 4 -88.500 112.523 -90.000 112.523 -90.000 127.512 -88.500 127.512 ; #1558 3 -88.500 127.512 -90.000 127.512 -90.000 142.522 -88.500 142.522 ; #1559 2 -88.500 142.522 -90.000 142.522 -90.000 157.513 -88.500 157.513 ; #1560 1 -88.500 157.513 -90.000 157.513 -90.000 172.521 -88.500 172.521 ; % Fill mode = draw open curves fillmode 0 opencurves #1561 13 90.000 -157.512 70.964 -157.512 ; #1562 13 90.000 -142.503 79.997 -142.503 69.972 -142.503 ; #1563 13 90.000 -112.503 79.997 -112.503 78.697 -112.503 78.661 -112.717 78.626 -112.950 78.582 -113.163 78.546 -113.377 78.511 -113.610 78.475 -113.824 78.466 -113.901 78.378 -114.367 78.334 -114.619 78.289 -114.853 78.271 -114.911 78.235 -115.124 78.190 -115.338 78.154 -115.532 78.110 -115.746 78.074 -115.959 78.056 -116.037 78.011 -116.289 77.957 -116.542 77.911 -116.794 77.858 -117.047 77.813 -117.299 77.794 -117.396 77.758 -117.610 77.713 -117.823 77.668 -118.056 77.632 -118.270 77.585 -118.503 77.540 -118.717 77.494 -118.969 77.449 -119.202 77.395 -119.396 77.331 -119.610 77.275 -119.804 77.220 -119.998 76.767 -121.629 76.702 -121.882 76.572 -122.348 76.516 -122.581 76.450 -122.814 76.338 -123.047 76.234 -123.163 76.121 -123.280 76.017 -123.396 75.866 -123.551 75.675 -123.746 75.579 -123.843 75.484 -123.940 75.339 -124.095 75.194 -124.231 74.904 -124.542 74.758 -124.678 74.621 -124.833 74.473 -124.988 74.355 -125.066 74.257 -125.144 74.148 -125.202 74.049 -125.260 73.949 -125.318 73.850 -125.396 73.749 -125.454 73.640 -125.513 73.539 -125.571 73.439 -125.649 73.338 -125.707 73.237 -125.765 73.135 -125.823 72.830 -126.017 72.728 -126.076 72.594 -126.173 72.461 -126.250 72.337 -126.328 72.203 -126.406 72.068 -126.503 72.027 -126.522 71.891 -126.600 71.755 -126.678 71.629 -126.755 71.493 -126.852 71.366 -126.930 71.240 -127.008 71.102 -127.085 70.975 -127.163 70.836 -127.241 70.708 -127.318 70.622 -127.377 70.418 -127.493 79.997 -127.493 90.000 -127.493 ; #1564 13 76.017 -67.494 70.547 -67.494 70.289 -67.999 69.996 -67.999 62.210 -67.999 61.921 -67.805 61.871 -67.766 61.796 -67.688 61.618 -67.552 61.491 -67.494 60.002 -67.494 ; #1565 13 76.347 -64.368 76.460 -64.504 76.563 -64.659 76.675 -64.795 76.777 -64.950 76.889 -65.086 76.990 -65.242 77.101 -65.397 77.201 -65.533 77.311 -65.688 77.413 -65.824 77.522 -65.980 77.632 -66.115 77.731 -66.271 77.840 -66.426 77.948 -66.562 78.056 -66.717 78.164 -66.853 78.271 -67.009 78.378 -67.145 78.591 -67.455 78.680 -67.572 78.793 -67.727 78.899 -67.883 79.013 -68.038 79.075 -68.115 ; #1566 13 79.136 -67.494 79.997 -67.494 80.125 -67.494 80.209 -67.533 80.303 -67.533 80.395 -67.494 80.938 -67.494 ; #1567 13 77.686 -22.038 77.603 -22.291 77.477 -22.563 77.340 -22.699 77.211 -22.776 77.082 -22.835 76.907 -22.912 76.767 -22.971 76.600 -22.990 76.385 -22.951 76.234 -22.854 76.074 -22.679 75.904 -22.388 75.828 -22.136 75.742 -21.611 75.685 -20.932 75.675 -20.505 ; #1568 13 74.306 -22.466 74.483 -24.349 74.513 -25.048 74.483 -25.436 74.405 -25.922 74.267 -26.466 74.177 -26.757 74.078 -27.029 73.850 -27.495 73.700 -27.708 73.328 -28.135 72.891 -28.524 72.203 -28.951 71.514 -29.223 71.102 -29.320 70.878 -29.339 70.719 -29.378 70.332 -29.398 69.996 -29.417 ; #1569 13 68.898 -136.425 68.787 -136.445 67.719 -136.445 67.674 -136.425 67.617 -136.231 67.491 -136.173 67.377 -136.114 67.262 -136.134 67.217 -136.153 67.102 -136.212 67.056 -136.212 66.998 -136.173 67.010 -135.940 67.010 -134.114 66.998 -133.901 66.883 -133.881 66.848 -133.843 66.733 -133.843 66.604 -133.707 66.488 -133.668 66.442 -133.668 66.314 -133.823 66.302 -133.610 66.174 -133.551 66.056 -133.707 66.056 -133.668 65.951 -133.454 65.997 -133.260 66.021 -133.066 65.997 -132.911 65.986 -132.716 65.974 -132.503 65.962 -132.328 65.892 -132.542 65.774 -132.386 65.657 -132.212 65.561 -132.212 65.443 -132.328 65.360 -132.522 65.241 -132.697 65.193 -132.775 65.193 -132.581 65.086 -132.386 64.967 -132.503 64.931 -132.503 64.811 -132.600 64.775 -132.406 64.727 -132.212 64.655 -132.017 64.643 -131.998 64.583 -131.920 64.546 -131.726 64.426 -131.804 64.366 -131.609 64.450 -131.415 64.426 -131.221 64.342 -131.027 64.208 -130.949 64.135 -130.949 64.038 -130.755 63.929 -130.561 63.831 -130.347 63.819 -130.289 63.697 -130.328 63.697 -130.134 63.624 -129.998 63.501 -129.843 63.378 -129.920 63.341 -129.998 63.230 -129.998 63.107 -129.843 63.082 -129.629 62.959 -129.707 62.908 -129.726 62.772 -129.668 62.648 -129.532 62.586 -129.435 62.511 -129.221 62.386 -129.241 62.261 -129.280 62.223 -129.221 62.135 -129.027 62.060 -128.833 62.122 -128.639 62.122 -128.600 62.034 -128.406 62.009 -128.386 61.884 -128.231 61.808 -128.037 61.733 -127.998 61.618 -127.804 61.529 -127.610 61.504 -127.416 61.491 -127.221 61.352 -127.066 61.225 -127.027 61.097 -127.085 61.033 -127.066 60.905 -126.930 60.776 -126.891 60.751 -126.716 60.816 -126.503 60.776 -126.309 60.867 -126.114 60.803 -125.998 60.867 -125.804 60.829 -125.610 60.789 -125.416 60.829 -125.202 60.854 -125.124 60.854 -124.930 60.956 -124.736 60.867 -124.542 60.841 -124.522 60.700 -124.619 60.572 -124.464 60.481 -124.270 60.469 -124.231 60.339 -124.212 60.210 -124.095 60.080 -123.979 60.041 -124.018 60.015 -123.823 60.002 -123.823 60.002 -119.998 57.392 -119.998 57.338 -120.270 57.352 -121.202 57.352 -121.629 57.325 -121.920 57.298 -122.153 57.284 -122.367 57.189 -122.600 57.121 -122.658 56.673 -122.620 56.371 -122.581 56.180 -122.581 56.152 -122.561 56.125 -122.561 55.876 -122.522 55.725 -122.561 55.586 -122.600 55.516 -122.561 55.503 -122.542 55.489 -122.328 55.489 -122.095 55.267 -121.882 55.113 -121.746 54.889 -121.493 54.694 -121.182 54.638 -121.047 54.554 -120.833 54.427 -120.542 54.328 -120.309 54.174 -120.115 54.018 -120.056 53.806 -119.998 53.705 -119.804 53.592 -119.920 53.450 -119.784 53.378 -119.590 53.364 -119.532 53.264 -119.338 53.135 -119.047 53.178 -118.853 53.050 -118.717 52.891 -118.639 52.877 -118.620 52.848 -118.620 52.762 -118.717 52.776 -118.950 52.748 -119.163 52.618 -119.066 52.431 -118.930 52.258 -118.755 52.098 -118.522 52.054 -118.445 51.909 -118.212 51.764 -117.959 51.647 -117.746 51.501 -117.493 51.487 -117.474 51.413 -117.338 51.268 -117.144 51.091 -116.969 50.900 -116.814 50.752 -116.697 50.590 -116.620 50.399 -116.522 50.161 -116.484 49.998 -116.425 49.967 -116.386 49.789 -116.231 49.625 -116.056 49.430 -115.920 49.251 -115.959 49.221 -115.959 49.145 -115.979 48.995 -116.056 48.088 -116.056 47.920 -115.979 47.768 -115.824 47.646 -115.688 47.493 -115.649 47.463 -115.726 47.340 -115.532 47.263 -115.319 47.140 -115.202 46.986 -115.047 46.971 -115.008 46.925 -114.930 46.879 -114.930 46.725 -114.736 46.648 -114.542 46.648 -114.503 46.632 -114.328 46.478 -114.367 46.307 -114.425 46.245 -114.445 46.075 -114.464 45.919 -114.406 45.888 -114.386 45.732 -114.503 45.561 -114.542 45.498 -114.639 45.405 -114.717 45.467 -114.911 45.514 -115.008 45.576 -115.202 45.467 -115.396 45.388 -115.513 45.452 -115.726 45.452 -115.920 45.405 -116.212 45.561 -116.289 45.670 -116.270 45.825 -116.289 45.982 -116.445 46.013 -116.581 45.856 -116.775 45.779 -116.581 45.623 -116.445 45.514 -116.542 45.357 -116.658 45.185 -116.697 45.044 -116.833 44.997 -116.853 44.839 -116.891 44.682 -117.066 44.540 -117.144 44.382 -117.202 44.303 -117.202 44.303 -117.338 44.429 -117.591 44.429 -117.862 44.350 -118.056 44.319 -118.095 44.145 -118.212 43.014 -118.212 42.837 -118.192 42.677 -118.192 42.500 -118.115 42.500 -117.008 42.000 -117.008 42.000 -115.008 42.000 -114.037 39.992 -114.037 36.212 -114.037 36.042 -114.134 36.127 -114.328 36.161 -114.542 36.076 -114.736 36.008 -114.736 35.838 -114.697 35.667 -114.658 35.616 -114.639 35.428 -114.639 35.342 -114.581 35.171 -114.581 35.000 -114.619 34.983 -114.619 34.811 -114.561 34.743 -114.484 34.726 -114.484 34.709 -114.464 34.536 -114.367 34.364 -114.192 34.312 -114.134 34.140 -114.309 33.968 -114.503 33.898 -114.503 33.725 -114.484 33.604 -114.542 33.500 -114.581 33.326 -114.717 33.136 -114.678 33.101 -114.697 33.014 -114.503 32.893 -114.464 32.735 -114.542 32.735 -114.619 32.718 -114.717 32.701 -114.717 32.526 -114.794 32.509 -114.814 32.492 -114.833 32.492 -114.911 32.474 -114.930 32.404 -114.969 32.317 -115.008 32.265 -115.027 32.177 -114.969 32.159 -114.969 31.984 -114.930 31.897 -114.930 ; #1570 13 90.000 -97.494 82.892 -97.494 81.045 -97.494 81.004 -97.707 81.004 -101.299 80.996 -101.513 80.996 -101.921 80.872 -101.999 80.563 -101.999 79.997 -101.999 69.996 -101.999 60.094 -101.999 60.002 -102.037 60.002 -105.008 60.002 -109.998 48.995 -109.998 48.995 -104.037 48.527 -104.037 48.376 -104.018 47.829 -104.018 47.829 -103.940 47.692 -103.746 47.661 -103.746 47.508 -103.591 47.615 -103.396 47.615 -103.241 47.600 -103.047 47.600 -102.853 47.539 -102.659 47.524 -102.464 47.524 -102.425 47.600 -102.192 47.524 -101.940 47.524 -101.688 47.554 -101.494 47.493 -101.396 47.340 -101.358 47.293 -101.163 47.278 -101.008 47.109 -100.930 46.986 -100.930 46.986 -101.202 46.863 -101.086 46.817 -101.086 46.786 -100.814 46.709 -100.775 46.540 -100.581 46.353 -100.542 46.183 -100.620 46.121 -100.620 46.121 -100.659 45.950 -100.756 45.935 -100.756 45.935 -100.484 45.935 -100.484 45.779 -100.348 45.623 -100.425 45.561 -100.484 45.388 -100.290 45.201 -100.290 45.044 -100.328 44.997 -100.425 44.823 -100.464 44.823 -100.678 44.792 -100.736 44.635 -100.639 44.461 -100.542 44.445 -100.387 44.382 -100.367 44.350 -100.348 44.224 -100.464 44.034 -100.639 43.875 -100.678 43.700 -100.659 43.732 -100.601 43.716 -100.387 43.589 -100.193 43.397 -100.173 43.381 -100.154 43.190 -100.154 42.998 -100.134 42.998 -100.872 42.933 -100.872 42.773 -100.814 42.661 -100.853 42.436 -100.775 42.274 -100.756 42.048 -100.794 41.967 -100.794 41.741 -100.930 41.725 -101.144 41.725 -101.377 41.562 -101.377 41.383 -101.222 41.107 -101.222 40.960 -101.202 40.780 -101.202 40.600 -101.299 40.420 -101.299 40.338 -101.280 39.992 -101.280 39.992 -102.018 39.580 -102.018 39.580 -101.513 39.365 -101.338 39.132 -101.338 38.983 -101.435 38.900 -101.435 38.701 -101.455 38.484 -101.532 38.267 -101.532 38.033 -101.513 37.932 -101.513 37.748 -101.494 37.748 -102.018 36.991 -102.018 36.991 -103.008 36.500 -103.008 36.415 -103.047 35.000 -103.047 33.414 -103.047 33.257 -103.066 32.054 -103.066 32.002 -103.125 32.002 -104.892 31.757 -104.892 31.582 -104.911 30.736 -104.911 30.612 -104.969 30.683 -105.008 30.789 -105.202 30.860 -105.397 30.930 -105.474 31.106 -105.649 31.265 -105.823 31.388 -106.037 31.493 -106.231 31.528 -106.231 31.704 -106.348 31.757 -106.445 31.757 -106.484 31.774 -106.523 31.774 -107.998 31.739 -108.212 31.528 -108.212 31.335 -108.348 31.335 -108.969 31.300 -108.969 31.106 -109.008 30.807 -109.047 30.665 -108.833 30.559 -108.639 30.365 -108.561 30.099 -108.542 30.028 -108.542 29.993 -108.561 29.816 -108.581 29.620 -108.600 29.424 -108.600 29.246 -108.678 29.104 -108.659 28.907 -108.639 28.675 -108.620 28.496 -108.600 28.407 -108.561 28.264 -108.775 28.282 -109.008 28.048 -109.086 27.833 -108.892 27.743 -108.853 27.563 -108.697 27.365 -108.659 27.184 -108.678 27.005 -108.484 26.986 -108.464 27.005 -108.445 27.022 -108.426 27.058 -108.387 26.986 -108.212 26.914 -108.018 26.787 -107.979 26.606 -107.843 26.570 -107.843 26.371 -107.804 26.190 -107.746 26.154 -107.532 26.063 -107.338 25.863 -107.260 25.809 -107.144 25.645 -106.930 25.517 -107.047 25.318 -107.105 25.190 -107.125 24.990 -107.066 24.880 -106.950 24.716 -106.756 24.624 -106.717 24.423 -106.600 24.387 -106.600 24.295 -106.406 24.387 -106.192 24.204 -105.998 24.094 -105.959 23.874 -105.921 23.799 -105.901 23.597 -105.843 23.561 -105.823 23.542 -105.765 23.359 -105.707 23.248 -105.630 23.212 -105.610 23.157 -105.397 23.028 -105.397 23.028 -105.202 22.954 -105.008 22.770 -104.911 22.549 -105.008 22.604 -104.892 22.622 -104.659 22.437 -104.523 22.419 -104.484 22.419 -104.464 22.437 -104.328 22.327 -104.309 22.271 -104.328 22.067 -104.406 21.993 -104.290 21.771 -104.095 21.697 -104.134 21.494 -104.173 21.383 -103.979 21.383 -103.940 21.196 -104.076 21.178 -104.231 21.048 -104.212 20.974 -104.212 20.787 -104.290 20.713 -104.290 20.844 -104.484 20.899 -104.523 20.918 -104.542 20.918 -104.620 21.011 -104.814 20.918 -105.008 20.787 -105.202 20.731 -105.241 20.713 -105.261 20.694 -105.261 ; #1571 13 29.691 -85.222 29.745 -85.086 29.780 -85.047 29.816 -85.028 29.993 -85.047 30.011 -85.086 30.082 -85.144 30.259 -85.067 30.435 -85.008 30.524 -84.989 30.630 -84.911 30.700 -84.873 30.718 -84.873 30.789 -84.911 30.913 -84.970 30.983 -84.989 31.001 -85.008 31.001 -84.989 31.036 -84.989 31.089 -85.028 31.142 -85.047 31.282 -85.106 31.423 -85.067 31.599 -85.047 31.634 -85.067 31.704 -85.106 31.880 -85.125 32.054 -85.067 32.124 -85.047 32.177 -84.989 32.248 -84.911 32.422 -84.970 32.439 -84.970 32.509 -84.989 32.526 -84.989 32.526 -85.008 32.544 -85.008 32.701 -85.106 32.875 -85.183 32.910 -85.183 32.997 -85.202 33.031 -85.202 33.049 -85.222 33.222 -85.241 33.362 -85.261 33.535 -85.300 33.673 -85.338 33.742 -85.338 33.777 -85.358 33.951 -85.377 33.968 -85.377 34.037 -85.397 34.209 -85.435 34.261 -85.455 34.330 -85.474 34.502 -85.513 34.691 -85.552 34.828 -85.571 35.000 -85.630 35.000 -85.513 35.034 -85.435 35.102 -85.397 35.120 -85.416 35.308 -85.280 35.478 -85.144 35.667 -85.008 35.786 -84.892 35.923 -84.659 36.093 -84.833 36.280 -84.853 36.381 -84.640 36.619 -84.775 36.788 -84.601 36.974 -84.678 36.974 -84.853 37.126 -84.989 37.193 -85.067 37.244 -85.067 37.227 -85.261 37.210 -85.377 37.344 -85.474 37.411 -85.688 37.429 -85.902 37.513 -86.096 37.681 -86.232 37.882 -86.290 38.033 -86.523 37.999 -86.523 37.848 -86.640 37.982 -86.834 38.166 -86.814 38.217 -87.028 38.434 -87.086 38.534 -87.300 38.501 -87.533 38.434 -87.746 38.517 -87.649 38.684 -87.533 38.834 -87.533 39.000 -87.591 39.016 -87.591 39.182 -87.610 39.349 -87.533 39.464 -87.533 39.992 -87.533 40.747 -87.533 40.747 -87.105 40.928 -86.969 41.139 -86.931 41.221 -86.931 41.270 -86.814 41.400 -86.678 41.562 -86.504 41.594 -86.484 41.708 -86.523 41.757 -86.523 41.757 -86.834 41.773 -87.067 41.757 -87.241 42.484 -87.222 43.557 -87.202 44.997 -86.504 45.247 -86.271 45.341 -86.465 45.420 -86.678 45.452 -86.873 45.452 -87.105 45.561 -87.241 45.576 -87.261 45.701 -87.338 45.763 -87.338 45.935 -87.377 46.013 -87.591 46.168 -87.630 46.261 -87.843 46.261 -88.076 46.431 -88.135 46.431 -88.931 46.353 -89.125 46.353 -89.183 46.509 -89.358 46.509 -89.610 46.555 -89.707 46.740 -89.843 46.802 -89.843 46.986 -89.882 47.171 -89.940 47.293 -89.960 47.493 -89.824 47.859 -89.591 47.996 -89.513 47.996 -89.571 48.011 -89.649 48.011 -89.804 48.026 -89.999 56.207 -89.999 56.317 -89.804 56.440 -89.591 56.563 -89.397 56.822 -88.989 56.836 -88.969 56.985 -88.969 57.134 -88.989 60.002 -88.989 62.499 -88.989 62.660 -88.853 62.834 -88.698 63.156 -88.387 63.329 -88.232 63.489 -88.096 63.660 -87.940 63.819 -87.785 63.990 -87.630 64.147 -87.474 64.317 -87.338 64.486 -87.183 64.643 -87.028 64.811 -86.873 64.979 -86.717 65.146 -86.581 65.313 -86.426 65.360 -86.368 65.526 -86.212 65.692 -86.076 65.857 -85.921 66.021 -85.766 66.091 -85.533 66.162 -85.280 66.244 -85.047 66.256 -84.989 82.483 -84.989 ; #1572 13 60.300 -64.523 60.287 -64.659 60.236 -64.853 60.223 -64.853 60.107 -64.659 60.002 -64.853 59.963 -64.853 59.898 -64.659 59.872 -64.776 59.741 -64.795 59.611 -64.795 59.468 -64.756 59.468 -64.737 59.494 -64.543 59.481 -64.348 59.349 -64.523 59.257 -64.504 59.126 -64.484 58.980 -64.465 59.020 -64.581 59.047 -64.776 58.915 -64.853 58.928 -64.640 58.888 -64.484 58.875 -64.290 58.743 -64.135 58.822 -63.941 58.875 -63.785 58.849 -63.591 58.704 -63.630 58.704 -63.863 58.651 -64.057 58.517 -64.038 58.451 -63.824 58.438 -63.902 58.358 -64.096 58.225 -64.232 58.104 -64.426 58.064 -64.348 57.957 -64.193 57.823 -64.096 57.783 -63.902 57.742 -63.902 57.608 -63.727 57.541 -63.747 57.406 -63.708 57.379 -63.708 57.244 -63.747 57.107 -63.785 57.012 -63.883 56.877 -63.883 56.768 -64.077 56.713 -64.116 56.577 -63.980 56.440 -63.883 56.426 -64.077 56.426 -64.174 56.289 -64.116 56.152 -64.018 56.070 -63.844 56.028 -63.650 56.028 -63.436 56.000 -63.475 55.945 -63.669 55.807 -63.669 55.669 -63.475 55.558 -63.358 55.461 -63.164 55.309 -63.106 55.295 -63.164 55.224 -63.339 55.141 -63.533 55.002 -63.455 54.862 -63.533 54.722 -63.591 54.596 -63.805 54.638 -63.980 54.750 -64.368 54.750 -64.426 54.722 -64.620 54.750 -64.814 54.708 -65.028 54.708 -65.222 54.736 -65.319 54.736 -65.708 54.876 -65.844 54.932 -65.980 54.974 -66.174 55.002 -66.251 55.141 -66.426 55.267 -66.620 55.336 -66.795 55.197 -66.679 55.058 -66.737 55.002 -66.659 54.974 -66.659 54.932 -66.717 54.792 -66.601 54.764 -66.795 54.764 -66.814 54.876 -67.009 54.904 -67.067 55.002 -67.261 55.002 -67.436 54.876 -67.358 54.736 -67.222 54.624 -67.028 54.596 -67.222 54.511 -67.611 54.371 -67.591 54.230 -67.475 54.144 -67.669 54.003 -67.727 53.862 -67.591 53.776 -67.436 53.634 -67.494 53.563 -67.319 53.521 -67.125 53.378 -66.950 53.349 -66.912 53.207 -66.989 53.050 -66.970 52.906 -67.067 52.863 -67.067 52.705 -67.086 52.690 -67.048 52.733 -66.853 52.805 -66.659 52.877 -66.659 53.035 -66.484 52.891 -66.290 52.834 -66.387 52.690 -66.426 52.546 -66.426 52.431 -66.387 52.287 -66.465 52.141 -66.329 52.258 -66.212 52.200 -66.057 52.054 -65.902 52.098 -65.688 52.054 -65.552 52.214 -65.378 52.214 -65.358 52.184 -65.164 52.069 -64.970 51.924 -64.834 51.851 -64.659 51.706 -64.698 51.559 -64.581 51.632 -64.484 51.735 -64.271 51.837 -64.348 51.982 -64.290 52.141 -64.154 52.170 -64.116 52.315 -64.116 52.460 -64.135 52.604 -64.174 52.719 -64.154 52.877 -64.116 52.978 -63.921 53.107 -63.824 53.064 -63.630 52.921 -63.533 52.776 -63.591 52.647 -63.455 52.633 -63.650 52.618 -63.844 52.503 -64.038 52.359 -63.980 52.359 -63.960 52.330 -63.766 52.184 -63.688 52.040 -63.650 51.996 -63.747 51.837 -63.708 51.662 -63.688 51.501 -63.650 51.326 -63.611 51.164 -63.591 50.988 -63.552 50.827 -63.514 50.664 -63.494 50.487 -63.455 50.324 -63.416 50.220 -63.397 49.998 -63.358 48.467 -63.358 48.346 -63.611 48.225 -64.116 48.149 -64.387 47.966 -65.145 47.890 -65.416 47.935 -65.669 47.996 -65.921 48.026 -66.076 48.042 -66.290 48.073 -66.484 47.996 -66.737 47.996 -66.834 47.981 -66.892 47.981 -66.912 47.920 -67.106 47.890 -67.300 47.890 -67.436 47.996 -67.630 47.996 -68.018 47.966 -68.115 47.920 -68.310 47.768 -68.368 47.615 -68.368 47.478 -68.484 47.386 -68.698 47.371 -68.717 47.325 -68.912 47.293 -69.048 47.186 -68.892 47.232 -68.679 47.310 -68.484 47.356 -68.290 47.356 -68.251 47.247 -68.057 47.171 -67.941 47.155 -67.941 47.063 -67.785 46.384 -67.785 46.230 -67.766 45.997 -67.766 45.841 -67.747 45.763 -67.805 45.623 -67.611 45.592 -67.416 45.561 -67.397 45.405 -67.416 45.247 -67.436 45.154 -67.358 45.201 -67.261 45.185 -67.203 45.028 -67.048 44.997 -67.028 44.934 -66.989 44.761 -66.931 44.603 -67.145 44.429 -67.358 44.240 -67.494 39.992 -67.494 35.786 -67.494 20.005 -67.494 20.005 -69.999 20.005 -71.863 19.968 -71.863 19.706 -71.746 19.519 -71.708 19.482 -71.688 19.294 -71.746 19.089 -71.669 18.976 -71.843 18.938 -71.843 18.882 -71.727 18.695 -71.766 18.658 -71.805 18.451 -71.902 18.414 -71.843 18.226 -71.746 18.038 -71.766 17.944 -71.746 17.869 -71.746 17.624 -71.708 17.454 -71.688 17.360 -71.669 17.115 -71.649 17.039 -71.630 16.775 -71.591 16.624 -71.572 16.398 -71.533 16.170 -71.513 16.019 -71.494 15.773 -71.455 15.545 -71.417 15.374 -71.397 15.166 -71.378 15.147 -71.378 15.052 -71.358 14.976 -71.339 14.005 -71.203 13.548 -71.145 13.415 -71.125 13.167 -71.086 12.995 -71.067 12.785 -71.028 12.460 -70.989 12.326 -70.970 11.847 -70.717 11.847 -71.319 11.809 -71.397 11.752 -71.610 11.694 -71.824 11.579 -72.018 11.388 -72.135 11.350 -72.135 11.158 -72.290 11.158 -72.310 11.062 -72.523 10.870 -72.659 10.812 -72.698 10.620 -72.776 10.428 -72.912 10.390 -72.892 10.197 -72.931 10.005 -72.970 9.793 -72.989 9.601 -73.086 9.544 -73.144 9.351 -73.280 9.177 -73.377 9.177 -73.183 9.274 -72.989 9.197 -72.950 9.101 -72.756 9.081 -72.795 8.889 -72.717 8.677 -72.679 8.638 -72.659 8.426 -72.465 8.388 -72.426 8.388 -72.407 8.195 -72.348 8.002 -72.407 7.963 -72.446 7.809 -72.446 7.616 -72.465 7.423 -72.426 7.403 -72.387 7.384 -72.193 7.249 -72.154 7.056 -72.057 7.017 -71.921 7.036 -71.727 7.017 -71.533 7.017 -71.339 6.978 -71.145 6.998 -71.125 7.036 -70.931 7.094 -70.756 7.075 -70.562 6.959 -70.348 6.978 -70.154 6.978 -70.115 6.824 -69.999 6.766 -69.941 6.573 -69.785 6.360 -69.630 6.225 -69.514 6.109 -69.417 6.090 -69.222 6.206 -69.028 6.206 -68.989 6.186 -68.795 6.148 -68.601 6.186 -68.484 6.167 -68.290 6.225 -68.096 6.225 -67.941 6.302 -67.747 6.244 -67.552 6.186 -67.475 6.186 -67.455 6.090 -67.475 5.973 -67.436 5.780 -67.630 5.722 -67.630 5.528 -67.611 5.373 -67.805 5.179 -67.805 5.063 -67.785 5.005 -67.805 4.928 -67.824 4.734 -67.824 4.541 -67.883 4.443 -67.805 4.249 -67.805 4.075 -67.727 4.036 -67.708 3.843 -67.630 3.668 -67.455 3.474 -67.358 3.280 -67.378 3.261 -67.378 3.106 -67.591 2.911 -67.785 2.795 -67.843 2.795 -67.650 2.621 -67.475 2.427 -67.261 2.290 -67.203 2.096 -67.106 2.019 -67.106 1.825 -67.028 1.631 -66.970 1.554 -66.950 1.359 -66.892 1.223 -66.873 1.165 -67.067 1.379 -67.086 1.573 -67.067 1.650 -67.086 1.844 -67.183 2.058 -67.319 2.096 -67.319 2.096 -67.514 1.902 -67.688 1.747 -67.883 1.864 -68.077 1.844 -68.271 1.786 -68.232 1.728 -68.426 1.728 -69.377 1.767 -69.572 1.709 -69.766 1.709 -69.843 1.068 -69.843 1.068 -69.436 1.048 -69.377 0.893 -69.183 0.738 -69.164 0.621 -69.203 0.699 -69.397 0.680 -69.572 0.621 -69.766 0.602 -69.979 0.582 -69.999 0.388 -70.038 0.194 -70.057 0.000 -70.057 -0.039 -70.057 -0.233 -69.999 -0.388 -69.805 -0.505 -69.610 -0.699 -69.591 -0.893 -69.533 -0.932 -69.514 -1.029 -69.436 -1.087 -69.436 -1.300 -69.377 -1.418 -69.436 -1.534 -69.455 -1.728 -69.494 -1.922 -69.514 -2.116 -69.552 -2.174 -69.572 -2.369 -69.610 -2.563 -69.630 -2.776 -69.669 -2.834 -69.688 -2.873 -69.688 -3.066 -69.727 -3.261 -69.766 -3.474 -69.805 -3.532 -69.805 -3.726 -69.843 -3.920 -69.882 -4.114 -69.921 -4.191 -69.941 -4.211 -69.941 -4.230 -69.960 -4.307 -69.960 -4.327 -69.999 -4.327 -70.038 -4.346 -70.193 -4.462 -70.115 -4.657 -69.999 -4.676 -69.979 -5.005 -69.785 -5.063 -69.766 -5.490 -69.494 -5.721 -69.358 -5.915 -69.222 -6.302 -68.989 -6.495 -68.873 -6.727 -68.717 -6.959 -68.581 -7.210 -68.445 -7.442 -68.310 -7.519 -68.251 -7.944 -67.979 -8.156 -67.863 -8.368 -67.727 -8.792 -67.455 -8.985 -67.339 -9.081 -67.281 -9.312 -67.145 -9.562 -67.009 -9.620 -66.950 -9.832 -66.834 -9.851 -66.795 -9.928 -66.640 -10.005 -66.776 -10.024 -66.795 -10.178 -66.970 -10.332 -67.164 -10.332 -67.319 -10.466 -67.475 -10.620 -67.669 -10.697 -67.708 -10.697 -67.766 -10.659 -67.805 -10.659 -68.018 -10.850 -68.193 -11.004 -68.387 -11.100 -68.581 -11.004 -68.737 -11.004 -68.795 -10.985 -68.989 -10.966 -69.164 -10.927 -69.377 -10.947 -69.572 -11.023 -69.533 -11.216 -69.417 -11.292 -69.358 -11.483 -69.242 -11.675 -69.125 -11.886 -68.989 -11.924 -68.970 -12.307 -68.776 -12.498 -68.679 -12.670 -68.737 -12.842 -68.931 -13.033 -68.950 -13.109 -68.970 -13.320 -68.950 -13.511 -68.950 -13.700 -69.067 -13.891 -68.989 -14.062 -68.892 -14.253 -69.009 -14.424 -69.028 -14.576 -69.222 -14.615 -69.242 -14.805 -69.358 -14.995 -69.358 -15.147 -69.222 -15.298 -69.203 -15.488 -69.339 -15.526 -69.358 -15.716 -69.377 -15.924 -69.300 -16.037 -69.261 -16.226 -69.106 -16.226 -69.067 -16.208 -68.950 -16.378 -68.873 -16.567 -69.028 -16.586 -69.028 -16.643 -68.989 -16.661 -69.009 -16.813 -69.203 -17.002 -69.377 -17.096 -69.475 -17.284 -69.650 -17.398 -69.494 -17.511 -69.494 -17.567 -69.572 -17.624 -69.650 -17.699 -69.843 -17.906 -69.805 -18.075 -69.824 -18.282 -69.999 -18.320 -70.096 -18.320 -70.329 -18.357 -70.407 ; #1573 13 65.193 -52.504 60.002 -52.504 49.998 -52.504 48.194 -52.504 39.992 -52.504 20.005 -52.504 10.005 -52.504 5.044 -52.504 ; #1574 13 65.868 -37.495 60.002 -37.495 39.992 -37.495 20.005 -37.495 10.005 -37.495 7.558 -37.495 0.000 -37.495 -0.563 -37.495 -4.637 -37.495 ; #1575 13 62.996 -22.485 60.002 -22.485 40.993 -22.485 40.993 -31.864 40.812 -31.999 39.992 -31.999 35.991 -31.999 35.991 -22.524 35.838 -22.485 20.005 -22.485 19.052 -22.485 18.994 -23.203 18.994 -26.912 18.752 -26.990 18.357 -26.990 14.139 -26.990 14.005 -26.737 14.005 -22.485 0.000 -22.485 -20.005 -22.485 -30.010 -22.485 -49.998 -22.485 -90.000 -22.485 ; #1576 13 55.281 -7.495 60.002 -7.495 62.896 -7.495 62.996 -7.728 62.996 -10.000 62.996 -20.000 62.996 -24.990 66.825 -24.990 66.998 -24.835 66.998 -20.000 66.998 -10.000 66.998 -7.573 67.113 -7.495 69.996 -7.495 79.997 -7.495 90.000 -7.495 ; #1577 13 69.975 -22.485 66.998 -22.485 ; #1578 13 51.880 -169.324 52.200 -168.450 52.258 -168.237 52.402 -167.827 ; #1579 13 52.330 -167.978 52.373 -167.823 52.431 -167.570 52.474 -167.376 52.590 -166.910 52.705 -166.483 52.762 -166.269 52.805 -166.036 52.863 -165.823 52.877 -165.745 52.935 -165.512 52.992 -165.279 53.064 -165.046 53.121 -164.813 53.235 -164.347 53.292 -164.094 53.705 -162.405 53.762 -162.192 53.820 -161.959 53.876 -161.745 53.890 -161.706 53.947 -161.473 54.003 -161.260 54.060 -161.027 54.116 -160.813 54.286 -160.114 54.300 -160.075 54.314 -159.998 54.371 -159.745 54.441 -159.493 54.497 -159.240 54.568 -158.988 54.638 -158.677 54.680 -158.522 54.736 -158.308 54.792 -158.095 54.834 -157.900 54.876 -157.706 54.932 -157.512 54.988 -157.279 55.099 -156.813 55.169 -156.580 55.336 -155.881 55.392 -155.648 55.503 -155.221 55.558 -154.969 55.627 -154.716 55.683 -154.464 55.752 -154.211 55.849 -153.784 55.918 -153.551 55.973 -153.337 56.028 -153.104 56.070 -152.891 56.125 -152.697 56.180 -152.483 56.234 -152.289 56.275 -152.075 56.385 -151.687 56.426 -151.473 56.481 -151.279 56.536 -151.066 56.563 -150.930 56.673 -150.502 56.741 -150.250 56.795 -149.998 56.795 -149.978 56.836 -149.823 56.863 -149.706 56.877 -149.668 56.931 -149.435 56.985 -149.221 57.039 -148.988 57.107 -148.735 57.176 -148.483 57.189 -148.406 57.244 -148.192 57.298 -147.998 57.352 -147.784 57.392 -147.590 57.460 -147.337 57.527 -147.085 57.581 -146.833 57.648 -146.580 57.716 -146.328 57.769 -146.075 57.836 -145.823 57.890 -145.570 57.943 -145.376 57.997 -145.143 58.064 -144.891 58.117 -144.658 58.185 -144.425 58.238 -144.172 58.305 -143.939 58.358 -143.706 58.424 -143.454 58.477 -143.221 58.544 -142.988 58.597 -142.736 58.664 -142.503 49.998 -142.503 29.993 -142.503 10.005 -142.503 -6.998 -142.503 -6.998 -139.998 -6.998 -137.008 -10.005 -137.008 -12.995 -137.008 -12.995 -139.998 -12.995 -142.347 -12.823 -142.503 -9.832 -142.503 ; #1580 13 54.932 -157.512 53.848 -157.512 49.998 -157.512 29.993 -157.512 29.993 -159.998 29.993 -168.215 ; #1581 13 69.648 -141.008 60.403 -141.008 60.274 -140.794 60.236 -140.580 60.287 -140.367 60.236 -140.153 60.197 -139.998 60.274 -139.803 60.339 -139.571 60.352 -139.377 60.352 -139.182 60.210 -139.124 60.067 -139.163 60.002 -139.046 59.950 -138.852 59.820 -138.658 59.689 -138.444 59.572 -138.231 59.468 -138.037 59.455 -138.017 59.442 -137.979 59.336 -137.784 59.205 -137.571 59.060 -137.512 58.915 -137.512 58.980 -137.318 59.060 -137.105 59.113 -136.949 59.165 -136.755 59.205 -136.541 59.336 -136.464 59.468 -136.464 59.455 -136.367 59.585 -136.328 59.650 -136.114 59.676 -135.920 59.741 -135.707 59.807 -135.474 59.715 -135.279 59.676 -135.221 59.624 -135.163 59.624 -135.105 59.481 -135.027 59.349 -135.027 59.257 -134.814 59.152 -134.619 59.074 -134.425 58.994 -134.386 58.862 -134.250 58.796 -134.037 58.730 -133.823 58.583 -133.668 58.570 -133.648 58.464 -133.454 58.411 -133.396 58.278 -133.338 58.145 -133.143 57.997 -133.066 57.903 -132.930 57.769 -132.794 57.635 -132.658 57.487 -132.542 57.473 -132.503 57.338 -132.347 57.203 -132.231 57.067 -132.231 56.917 -132.076 56.904 -132.095 56.809 -131.881 56.673 -131.823 56.659 -131.823 56.604 -131.609 56.536 -131.415 56.467 -131.202 56.385 -131.008 56.371 -130.852 56.275 -130.639 56.207 -130.445 56.097 -130.250 56.070 -130.056 55.904 -130.017 55.766 -130.134 55.627 -130.114 55.475 -130.076 55.378 -130.037 55.322 -129.998 55.267 -129.998 55.113 -130.153 54.974 -130.270 54.834 -130.464 54.820 -130.503 54.708 -130.600 54.680 -130.600 54.652 -130.658 54.680 -130.775 54.736 -130.988 54.764 -131.047 54.666 -131.260 54.652 -131.279 54.525 -131.512 54.497 -131.571 54.441 -131.823 54.357 -132.056 54.413 -132.445 54.427 -132.736 54.483 -132.969 54.497 -133.143 54.497 -133.279 54.371 -133.745 54.300 -133.978 54.258 -134.153 54.130 -134.017 54.088 -133.978 53.905 -133.784 53.734 -133.590 53.549 -133.415 53.378 -133.221 53.035 -132.872 52.992 -132.833 52.949 -132.775 52.877 -132.697 52.834 -132.658 52.647 -132.464 52.604 -132.406 52.417 -132.231 52.243 -132.037 52.069 -131.862 51.880 -131.629 51.837 -131.551 51.706 -131.318 51.677 -131.279 51.559 -131.066 51.428 -130.852 51.311 -130.639 51.224 -130.503 51.076 -130.250 50.930 -129.998 50.812 -129.784 50.782 -129.726 50.664 -129.512 50.546 -129.299 50.472 -129.163 50.353 -128.949 50.235 -128.716 50.117 -128.522 49.998 -128.309 49.982 -128.270 49.967 -128.231 49.893 -128.134 49.878 -128.095 49.804 -127.959 49.759 -127.862 49.700 -127.765 49.670 -127.707 49.550 -127.493 39.992 -127.493 29.993 -127.493 10.005 -127.493 -10.005 -127.493 -10.524 -127.493 -10.755 -127.513 -17.624 -127.513 -17.869 -127.532 -21.993 -127.532 -21.993 -123.008 -25.772 -123.008 -25.808 -123.008 -26.008 -123.144 -26.008 -126.037 -26.008 -127.493 -30.010 -127.493 -49.998 -127.493 -90.000 -127.493 ; #1582 13 52.243 -52.504 52.243 -54.989 51.938 -55.630 51.822 -55.844 51.721 -56.057 51.618 -56.251 51.516 -56.465 51.399 -56.679 50.988 -57.533 50.871 -57.747 50.767 -57.941 50.146 -59.223 50.028 -59.417 49.998 -59.494 46.586 -59.494 46.493 -59.358 46.493 -56.737 ; #1583 13 46.493 -52.504 46.493 -55.999 46.802 -55.999 47.140 -55.999 47.247 -56.213 47.247 -56.620 47.140 -56.737 46.493 -56.737 46.493 -55.999 ; #1584 13 29.993 -168.215 29.993 -172.469 14.995 -172.469 14.995 -168.178 ; #1585 13 14.995 -167.978 14.995 -159.998 14.995 -157.667 14.786 -157.512 10.005 -157.512 7.539 -157.512 7.500 -157.570 7.500 -159.998 7.500 -163.862 7.249 -163.997 5.005 -163.997 5.005 -161.803 ; #1586 13 29.335 -112.386 29.157 -112.600 28.979 -112.639 28.048 -112.639 27.994 -112.658 27.994 -114.192 28.030 -114.251 28.282 -114.639 28.407 -114.853 28.496 -115.066 28.496 -117.008 24.002 -117.008 24.002 -112.581 23.929 -112.503 20.005 -112.503 10.005 -112.503 -10.005 -112.503 -30.010 -112.503 -35.974 -112.503 -49.998 -112.503 -90.000 -112.503 ; #1587 13 27.166 -82.504 23.579 -82.504 23.506 -82.698 23.506 -85.999 21.085 -85.999 20.992 -85.804 20.992 -82.504 20.005 -82.504 17.963 -82.504 10.005 -82.504 9.620 -82.504 9.562 -82.562 9.505 -82.601 9.601 -82.775 9.562 -82.873 9.505 -82.834 9.293 -82.931 9.062 -82.931 8.966 -82.737 8.947 -82.737 8.908 -82.717 8.850 -82.834 8.773 -82.911 8.735 -82.911 8.542 -82.834 8.465 -82.834 8.426 -82.892 8.407 -82.931 8.272 -82.970 8.272 -82.950 8.214 -82.931 8.021 -82.892 7.963 -82.814 7.905 -82.756 7.674 -82.504 5.335 -82.504 0.000 -82.504 -10.005 -82.504 -30.010 -82.504 -49.998 -82.504 -90.000 -82.504 ; #1588 13 15.943 -97.494 10.005 -97.494 0.000 -97.494 -10.005 -97.494 -25.008 -97.494 -25.008 -99.998 -25.008 -110.794 -25.154 -111.008 -28.782 -111.008 -28.996 -110.833 -28.996 -99.998 -28.996 -97.727 -29.104 -97.494 -30.010 -97.494 -49.998 -97.494 -90.000 -97.494 ; #1589 13 -10.005 -147.998 -6.998 -147.998 -5.373 -148.677 -3.494 -149.473 -3.396 -149.532 -3.183 -149.609 -2.950 -149.706 -2.737 -149.804 -2.621 -149.842 -2.408 -149.939 -2.193 -150.037 -1.980 -150.114 -1.747 -150.211 -1.534 -150.308 -1.320 -150.405 -1.087 -150.483 -0.660 -150.677 -0.447 -150.774 -0.214 -150.852 0.000 -150.949 0.117 -151.007 0.350 -151.085 0.563 -151.182 1.262 -151.473 1.476 -151.571 1.941 -151.765 2.174 -151.862 2.388 -151.959 2.601 -152.036 2.814 -152.133 3.028 -152.231 3.242 -152.328 3.474 -152.405 3.687 -152.502 3.901 -152.600 4.133 -152.697 4.346 -152.774 4.560 -152.871 4.773 -152.969 5.005 -153.066 5.005 -159.998 5.005 -161.298 4.812 -161.221 4.599 -161.143 4.404 -161.046 4.192 -160.968 3.979 -160.871 3.784 -160.794 3.571 -160.696 3.358 -160.619 3.145 -160.522 2.931 -160.444 2.737 -160.347 2.524 -160.269 2.504 -160.250 2.310 -160.172 2.096 -160.095 1.902 -159.998 1.806 -159.959 1.767 -159.959 1.554 -159.862 1.340 -159.764 1.126 -159.667 0.893 -159.590 0.796 -159.531 0.582 -159.454 0.524 -159.434 0.330 -159.337 0.233 -159.298 0.117 -159.260 -0.097 -159.162 -0.252 -159.104 -0.447 -159.007 -0.466 -159.007 -0.505 -158.988 -0.699 -158.910 -1.398 -158.619 -1.612 -158.522 -2.310 -158.231 -2.524 -158.133 -2.756 -158.036 -2.834 -158.017 -3.028 -157.939 -3.242 -157.842 -3.668 -157.648 -3.901 -157.570 -4.114 -157.473 -4.327 -157.376 -4.443 -157.337 -4.657 -157.240 -4.870 -157.143 -5.102 -157.065 -5.315 -156.968 -5.528 -156.871 -5.760 -156.774 -5.973 -156.697 -6.186 -156.600 -6.418 -156.502 -7.191 -156.172 -7.944 -155.862 -8.484 -155.629 -9.543 -155.182 -10.005 -154.988 -10.217 -154.910 -10.428 -154.813 -10.639 -154.716 -10.850 -154.638 -11.081 -154.541 -11.292 -154.444 -11.502 -154.366 -11.713 -154.269 -11.924 -154.172 -12.001 -154.153 -12.001 -148.075 -11.905 -147.998 -10.005 -147.998 ; #1590 13 5.005 -161.823 5.005 -161.842 -8.002 -161.842 -8.002 -167.007 -10.005 -167.007 -11.311 -167.007 -11.502 -166.988 -11.598 -167.007 -17.002 -167.007 -17.209 -166.774 -17.567 -166.405 -17.756 -166.192 -17.963 -165.978 -18.150 -165.764 -18.357 -165.551 -18.545 -165.318 -18.751 -165.104 -18.957 -164.891 -19.145 -164.677 -19.350 -164.463 -19.538 -164.250 -19.799 -163.978 -19.912 -163.842 -20.098 -163.648 -20.284 -163.454 -20.452 -163.279 -20.638 -163.065 -20.844 -162.852 -21.029 -162.638 -21.233 -162.444 -21.419 -162.230 -21.623 -162.017 -21.808 -161.803 -22.012 -161.590 -22.142 -161.434 -22.345 -161.221 -22.567 -160.988 -22.788 -160.735 -23.506 -159.978 ; #1591 13 -10.005 -142.503 -8.619 -142.503 -6.998 -142.503 ; #1592 13 5.490 -57.242 5.451 -57.261 5.257 -57.222 5.218 -57.203 5.024 -57.281 5.024 -57.339 5.005 -57.494 5.005 -57.552 4.928 -57.747 4.734 -57.863 4.541 -57.883 4.346 -57.941 4.153 -58.057 3.959 -57.999 3.765 -57.844 3.571 -57.708 3.552 -57.688 3.358 -57.630 3.339 -57.514 3.358 -57.320 3.222 -57.281 3.028 -57.203 2.834 -57.203 2.737 -57.087 2.524 -56.970 2.329 -56.873 2.232 -56.795 2.019 -56.679 2.019 -56.659 1.941 -56.465 1.922 -56.368 1.902 -56.290 1.844 -56.096 1.902 -55.902 2.077 -55.941 2.251 -56.135 2.349 -56.057 2.485 -55.863 2.427 -55.747 2.427 -55.358 2.524 -55.184 2.601 -54.989 2.427 -54.795 2.446 -54.776 2.251 -54.718 2.058 -54.756 2.038 -54.795 1.844 -54.756 1.767 -54.562 1.747 -54.504 1.728 -54.290 1.612 -54.116 1.437 -53.902 1.379 -53.824 1.379 -53.630 1.320 -53.553 1.281 -53.533 1.087 -53.456 0.971 -53.417 0.777 -53.222 0.602 -53.125 0.408 -53.125 0.214 -53.028 0.078 -53.009 0.000 -52.989 -0.175 -52.815 -0.214 -52.776 -0.427 -52.620 -0.621 -52.562 -0.796 -52.523 -0.893 -52.368 -1.087 -52.310 -1.106 -52.291 -1.165 -52.096 -1.165 -51.902 -1.437 -52.038 -1.495 -52.232 -1.689 -52.252 -1.786 -52.252 -1.999 -52.232 -2.213 -52.174 -2.446 -52.038 -2.679 -51.999 -2.873 -51.941 -3.086 -51.805 -3.145 -51.611 -3.319 -51.669 -3.513 -51.708 -3.571 -51.902 -3.377 -51.999 -3.300 -52.155 -3.494 -52.232 -3.706 -52.407 -3.862 -52.601 -3.978 -52.601 -4.172 -52.640 -4.211 -52.640 -4.404 -52.679 -4.599 -52.698 -4.812 -52.815 -5.005 -52.912 -5.198 -52.873 -5.393 -52.853 -5.586 -52.679 -5.799 -52.582 -5.838 -52.543 -6.031 -52.543 -6.244 -52.427 -6.437 -52.329 -6.573 -52.155 -6.650 -51.999 -6.862 -52.019 -6.959 -52.232 -6.998 -52.427 -7.191 -52.582 -7.210 -52.582 -7.423 -52.659 -7.616 -52.737 -7.809 -52.776 -8.002 -52.756 -8.176 -52.679 -8.368 -52.659 -8.561 -52.465 -8.715 -52.271 -8.889 -52.155 -9.081 -52.038 -9.274 -52.019 -9.486 -52.155 -9.659 -52.291 -9.601 -52.484 -9.716 -52.620 -9.736 -52.427 -9.736 -52.213 -9.755 -52.116 -9.755 -51.902 -9.774 -51.689 -9.774 -51.494 -9.793 -51.300 -9.793 -51.087 -9.813 -50.892 -9.813 -50.853 -9.832 -50.640 -9.832 -50.446 -9.851 -50.232 -10.005 -50.291 -10.197 -50.388 -10.390 -50.465 -10.466 -50.485 -10.659 -50.601 -10.850 -50.620 -10.889 -50.601 -11.081 -50.601 -11.273 -50.679 -11.369 -50.718 -11.579 -50.679 -11.752 -50.718 -11.943 -50.660 -12.097 -50.679 -12.307 -50.620 -12.498 -50.620 -12.594 -50.640 -12.804 -50.601 -12.842 -50.485 -13.033 -50.543 -13.243 -50.562 -13.282 -50.582 -13.472 -50.698 -13.662 -50.776 -13.700 -50.834 -14.082 -50.834 -14.139 -50.912 -14.310 -50.970 -14.500 -50.970 -14.691 -51.028 -14.786 -51.048 -14.900 -51.087 -14.995 -51.222 -14.995 -51.300 -14.995 -51.417 -15.090 -51.533 -15.280 -51.650 -15.317 -51.669 -15.507 -51.727 -15.697 -51.824 -15.735 -51.824 -15.868 -52.019 -15.886 -52.232 -15.886 -52.252 -15.905 -52.252 -16.000 -52.310 -16.132 -52.465 -16.284 -52.659 -16.378 -52.679 -16.567 -52.659 -16.756 -52.815 -16.775 -52.853 -16.945 -53.048 -17.134 -53.145 -17.342 -53.184 -17.436 -53.222 -17.642 -53.242 -17.831 -53.125 -18.019 -53.048 -18.207 -53.048 -18.395 -52.989 -18.469 -52.776 -18.658 -52.892 -18.695 -52.853 -18.714 -52.737 -18.714 -52.465 -18.807 -52.271 -18.938 -52.058 -19.014 -51.863 -19.126 -51.669 -19.126 -51.630 -19.164 -51.436 -19.276 -51.242 -19.350 -51.028 -19.482 -50.951 -19.669 -51.009 -20.005 -51.009 -20.098 -50.989 -20.304 -51.145 -20.397 -51.358 -20.583 -51.533 -20.787 -51.611 -20.862 -51.611 -20.955 -51.689 -21.011 -51.747 -21.196 -51.863 -21.326 -51.844 -21.512 -51.980 -21.586 -52.077 -21.771 -52.135 -21.790 -52.135 -21.919 -52.232 -22.105 -52.368 -22.142 -52.387 -22.271 -52.601 -22.382 -52.795 -22.401 -52.795 -22.530 -52.989 -22.714 -53.145 -22.788 -53.358 -22.880 -53.553 -22.880 -53.572 -23.009 -53.630 -23.193 -53.689 -23.248 -53.689 -23.285 -53.708 -23.359 -53.786 -23.414 -53.922 -23.542 -53.980 -23.726 -54.038 -23.874 -54.057 -24.002 -54.174 -24.057 -54.232 -24.075 -54.271 -24.259 -54.290 -24.368 -54.251 -24.551 -54.310 -24.734 -54.349 -24.807 -54.387 -25.008 -54.446 -25.044 -54.446 -25.245 -54.485 -25.427 -54.601 -25.590 -54.601 -25.663 -54.640 -25.808 -54.601 -25.863 -54.601 -26.063 -54.640 -26.244 -54.659 -26.281 -54.659 -26.462 -54.718 -26.479 -54.737 -26.661 -54.795 -26.787 -54.989 -26.968 -55.203 -26.950 -55.242 -27.005 -55.436 -27.184 -55.591 -27.202 -55.591 -27.383 -55.689 -27.437 -55.786 -27.329 -55.960 -27.329 -56.154 -27.509 -56.310 -27.545 -56.329 -27.454 -56.523 -27.454 -56.834 -27.472 -57.028 -27.472 -57.048 -27.454 -57.242 -27.437 -57.300 -27.383 -57.514 -27.329 -57.708 -27.293 -57.883 -27.275 -58.096 -27.275 -58.290 -27.293 -58.485 -27.293 -58.504 -27.311 -58.601 ; #1593 13 -23.506 -159.998 -23.506 -157.512 -30.010 -157.512 -49.998 -157.512 -90.000 -157.512 ; #1594 13 -12.995 -137.008 -13.224 -136.930 -13.435 -136.833 -13.643 -136.755 -13.872 -136.677 -14.082 -136.600 -14.310 -136.522 -14.519 -136.425 -14.729 -136.347 -14.957 -136.270 -15.166 -136.192 -15.374 -136.114 -15.602 -136.037 -15.811 -135.940 -16.037 -135.862 -16.245 -135.784 -16.473 -135.707 -16.661 -135.629 -16.870 -135.551 -17.077 -135.474 -17.284 -135.396 -17.473 -135.318 -17.680 -135.241 -17.887 -135.163 -18.094 -135.085 -18.245 -135.027 -18.469 -134.949 -18.714 -134.852 -18.864 -134.794 -19.089 -134.716 -19.332 -134.639 -19.388 -134.600 -19.650 -134.503 -19.799 -134.445 -20.042 -134.367 -20.304 -134.270 -20.471 -134.192 -20.694 -134.114 -20.918 -134.037 -21.122 -134.114 -21.307 -134.309 -21.438 -134.425 -21.623 -134.619 -21.808 -134.814 -21.882 -134.891 -21.919 -134.910 -22.049 -135.046 -22.253 -135.241 -22.456 -135.454 -22.530 -135.532 -22.622 -135.629 -22.862 -135.862 -23.083 -136.095 -23.322 -136.309 -23.542 -136.541 -23.781 -136.774 -24.002 -137.008 -24.002 -139.998 -24.002 -142.347 -24.222 -142.503 -30.010 -142.503 -49.998 -142.503 -90.000 -142.503 ; #1595 13 -25.008 -70.465 -25.008 -74.329 -25.008 -79.999 -25.008 -81.416 -25.099 -81.494 -30.010 -81.494 -34.811 -81.494 -35.000 -81.397 -35.000 -79.999 -35.000 -72.193 ; #1596 13 -11.713 -37.495 -20.005 -37.495 -30.010 -37.495 -49.998 -37.495 -52.848 -37.495 -52.992 -37.572 -52.992 -37.786 -52.992 -39.378 -53.007 -39.572 -53.007 -39.999 -53.007 -42.990 -55.002 -42.990 -55.002 -39.999 -55.002 -37.611 -55.099 -37.495 -90.000 -37.495 ; #1597 13 -27.293 -58.601 -27.184 -58.659 -27.058 -58.543 -26.896 -58.349 -26.787 -58.290 -26.606 -58.174 -26.462 -58.174 -26.299 -58.154 -26.117 -58.038 -26.026 -57.902 -25.845 -57.805 -25.663 -57.688 -25.481 -57.552 -25.300 -57.669 -25.282 -57.708 -25.245 -57.727 -25.227 -57.727 -25.081 -57.941 -25.008 -58.135 -24.990 -58.135 -24.990 -58.349 -24.898 -58.426 -24.825 -58.620 -24.771 -58.815 -24.734 -58.854 -24.624 -59.048 -24.533 -59.261 -24.387 -59.436 -24.259 -59.630 -24.149 -59.785 -24.039 -59.999 -24.039 -60.193 -24.020 -60.310 -24.020 -60.329 -23.874 -60.718 -23.874 -60.776 -23.818 -60.989 -23.634 -61.106 -23.597 -61.125 -23.487 -61.319 -23.469 -61.319 -23.377 -61.514 -23.248 -61.727 -23.064 -61.921 -22.899 -62.018 -22.714 -62.193 -22.530 -62.252 -22.512 -62.252 -22.474 -62.329 -22.456 -62.387 -22.327 -62.581 -22.234 -62.640 -22.179 -62.698 -21.993 -62.795 -21.993 -63.067 -22.012 -63.281 -22.012 -63.475 -22.030 -63.688 -22.049 -63.708 -22.012 -63.805 -22.160 -64.018 -22.345 -64.116 -22.437 -64.154 -22.512 -64.213 -22.696 -64.271 -22.880 -64.329 -22.714 -64.407 -22.530 -64.445 -22.364 -64.562 -22.179 -64.659 -22.142 -64.795 -22.087 -64.989 -22.105 -65.164 -22.105 -65.397 -22.087 -65.591 -22.105 -65.591 -22.087 -65.785 -21.919 -65.980 -21.790 -66.193 -21.790 -66.212 -21.975 -66.271 -22.124 -66.348 -22.179 -66.543 -22.234 -66.737 -22.364 -66.756 -22.530 -66.950 -22.714 -67.125 -22.825 -67.183 -22.991 -67.009 -23.175 -67.067 -23.359 -67.145 -23.542 -67.183 -23.726 -67.242 -23.744 -67.242 -23.855 -67.281 -24.039 -67.378 -24.130 -67.572 -24.149 -67.630 -24.167 -67.669 -24.240 -67.883 -24.332 -68.077 -24.460 -68.271 -24.478 -68.290 -24.606 -68.484 -24.643 -68.504 -24.825 -68.562 -25.008 -68.426 -25.172 -68.484 -25.300 -68.543 -25.409 -68.581 -25.590 -68.562 -25.699 -68.523 -25.881 -68.465 -26.063 -68.426 -26.135 -68.407 -26.317 -68.562 -26.497 -68.581 -26.516 -68.581 -26.697 -68.426 -26.878 -68.290 -27.040 -68.348 -27.130 -68.543 -27.130 -68.640 -27.184 -68.853 -27.365 -68.892 -27.419 -68.931 -27.779 -69.125 -27.886 -69.145 -28.066 -69.319 -28.227 -69.475 -28.407 -69.650 -28.549 -69.650 -28.728 -69.746 -28.907 -69.766 -28.943 -69.785 -29.121 -69.805 -29.264 -69.999 -29.282 -70.018 -29.460 -69.999 -29.531 -69.960 -29.709 -69.921 -29.816 -69.902 -30.010 -69.921 -30.152 -69.824 -30.223 -69.863 -30.400 -69.999 -30.524 -70.212 -30.718 -70.271 -30.772 -70.290 -30.948 -70.329 -31.124 -70.368 -31.106 -70.465 -31.282 -70.543 -31.458 -70.562 -31.528 -70.581 -31.704 -70.484 -31.880 -70.329 -32.037 -70.368 -32.213 -70.329 -32.317 -70.232 -32.369 -70.232 -32.457 -70.174 -32.631 -70.174 -32.806 -70.096 -32.823 -70.077 -32.875 -69.999 -32.910 -69.999 -33.049 -70.096 -33.118 -70.096 -33.309 -69.999 -33.326 -69.785 -33.500 -69.824 -33.621 -69.863 -33.794 -69.902 -33.968 -69.882 -34.106 -69.843 -34.278 -69.999 -34.295 -70.038 -34.467 -70.115 -34.640 -70.232 -34.708 -70.251 -34.880 -70.310 -35.034 -70.368 -35.205 -70.465 -35.205 -70.504 -35.376 -70.465 -35.548 -70.407 -35.599 -70.407 -35.769 -70.368 -35.940 -70.387 -36.008 -70.387 -36.144 -70.426 -36.212 -70.620 -36.381 -70.698 -36.432 -70.756 -36.398 -70.892 -36.483 -71.028 -36.551 -71.048 -36.737 -71.125 -36.906 -71.145 -36.940 -71.125 -36.957 -71.125 -37.126 -71.106 -37.293 -71.183 -37.428 -71.125 -37.597 -71.125 -37.765 -71.145 -37.815 -71.125 -37.982 -71.048 -38.150 -70.989 -38.250 -71.009 -38.350 -70.970 -38.517 -70.834 -38.684 -70.853 -38.701 -70.873 -38.767 -71.086 -38.850 -71.281 -38.967 -71.417 -39.132 -71.397 -39.266 -71.397 -39.431 -71.455 -39.596 -71.494 -39.596 -71.649 -39.646 -71.708 -39.811 -71.669 -39.827 -71.669 -40.008 -71.649 -40.041 -71.669 -40.173 -71.805 -40.338 -71.669 -40.387 -71.688 -40.551 -71.843 -40.731 -71.941 -40.845 -71.902 -41.009 -71.863 -41.107 -71.843 -41.221 -71.863 -41.383 -71.902 -41.545 -71.863 -41.676 -71.902 -41.838 -71.805 -42.000 -71.766 -42.145 -71.863 -42.177 -71.902 -42.242 -72.096 -42.420 -72.057 -42.548 -72.115 -42.725 -72.115 -42.885 -72.096 -43.030 -72.115 -43.126 -71.921 -43.174 -71.727 -43.301 -71.746 -43.413 -71.921 -43.573 -71.766 -43.589 -71.708 -43.605 -71.688 -43.764 -71.805 -43.922 -71.649 -43.954 -71.649 -44.050 -71.746 -44.208 -71.785 -44.366 -71.843 -44.398 -71.708 -44.413 -71.513 -44.429 -71.319 -44.525 -71.125 -44.556 -71.106 -44.713 -71.222 -44.776 -71.417 -44.761 -71.572 -44.761 -71.766 -44.776 -71.979 -44.886 -72.077 -44.950 -71.863 -44.981 -71.669 -44.997 -71.552 -45.153 -71.455 -45.325 -71.300 -45.388 -71.417 -45.529 -71.552 -45.561 -71.746 -45.716 -71.785 -45.856 -71.746 -45.904 -71.630 -45.935 -71.610 -45.997 -71.649 -46.028 -71.669 -46.059 -71.708 -46.152 -71.902 -46.307 -71.746 -46.369 -71.746 -46.540 -71.669 -46.571 -71.669 -46.725 -71.727 -46.802 -71.921 -46.894 -71.941 -47.048 -71.999 -47.201 -71.863 -47.278 -72.018 -47.293 -72.038 -47.401 -72.154 -47.417 -72.154 -47.463 -72.348 -47.615 -72.329 -47.768 -72.465 -47.798 -72.465 -47.950 -72.523 -48.073 -72.329 -48.225 -72.290 -48.240 -72.290 -48.391 -72.407 -48.482 -72.601 -48.588 -72.581 -48.739 -72.543 -48.890 -72.698 -48.920 -72.737 -48.950 -72.892 -49.100 -73.086 -49.251 -73.164 -49.281 -73.106 -49.311 -73.300 -49.415 -73.513 -49.565 -73.552 -49.700 -73.513 -49.848 -73.513 -49.998 -73.475 -50.176 -73.475 -50.324 -73.280 -50.472 -73.261 -50.620 -73.203 -50.767 -73.086 -50.664 -72.892 -50.635 -72.717 -50.605 -72.523 -50.708 -72.329 -50.812 -72.271 -50.959 -72.251 -51.120 -72.387 -51.267 -72.251 -51.282 -72.290 -51.399 -72.310 -51.559 -72.426 -51.706 -72.271 -51.735 -72.154 -51.851 -71.960 -51.996 -71.902 -51.996 -69.999 -52.011 -69.941 -52.069 -69.746 -52.127 -69.533 -52.141 -69.377 -52.141 -69.222 -52.200 -69.028 -52.272 -68.834 -52.301 -68.640 -52.388 -68.445 ; #1598 13 -32.875 -52.504 -40.008 -52.504 -49.998 -52.504 -90.000 -52.504 ; #1599 13 -49.998 -67.494 -53.947 -67.494 ; #1600 13 -90.000 -67.494 -55.931 -67.494 ; #1601 13 -52.647 -68.620 -54.554 -68.620 -54.694 -68.640 -54.889 -68.640 -54.904 -68.445 -54.876 -68.251 -54.876 -68.057 -54.889 -67.863 -54.904 -67.650 -54.904 -67.416 -54.918 -67.222 -54.918 -67.203 -54.960 -66.989 -55.016 -66.795 -55.085 -66.601 -55.127 -66.407 ; #1602 13 90.000 82.522 81.747 82.522 81.747 75.104 81.667 75.007 79.997 75.007 74.029 75.007 74.029 80.019 74.059 80.075 74.148 80.291 74.237 80.504 74.503 81.143 74.592 81.359 74.679 81.553 74.777 81.766 74.864 81.979 74.895 82.058 74.982 82.271 75.068 82.484 75.156 82.678 75.253 82.891 75.425 83.320 75.522 83.533 75.608 83.746 75.694 83.959 75.789 84.153 75.875 84.367 75.960 84.582 76.055 84.795 76.140 85.009 76.234 85.222 76.319 85.435 76.413 85.650 76.497 85.845 76.591 86.058 76.684 86.271 76.767 86.484 76.861 86.697 76.953 86.910 77.036 87.126 77.128 87.320 77.220 87.533 77.302 87.746 77.395 87.959 77.668 88.601 77.749 88.795 77.840 89.009 79.997 89.009 81.496 89.009 81.496 90.017 81.496 112.523 90.000 112.523 ; #1603 13 90.000 52.504 84.642 52.504 82.499 52.504 82.499 70.057 74.208 70.057 70.932 65.009 ; #1604 13 90.000 22.505 81.029 22.505 81.029 37.514 ; #1605 13 90.000 37.514 79.997 37.514 75.503 37.514 75.503 30.019 75.503 22.718 75.436 22.505 70.257 22.505 ; #1606 13 90.000 7.514 79.997 7.514 69.996 7.514 62.908 7.514 ; #1607 13 65.810 24.194 65.821 24.174 65.845 24.174 65.915 24.136 66.033 24.038 66.162 23.922 66.267 23.708 66.395 23.708 66.465 23.689 66.570 23.903 66.697 23.922 66.814 24.038 66.825 24.038 66.941 23.903 67.056 23.728 67.182 23.592 67.228 23.592 67.262 23.631 67.366 23.825 67.457 23.631 67.491 23.436 67.605 23.553 67.719 23.514 67.731 23.514 67.799 23.495 67.946 23.689 68.014 23.553 68.126 23.378 68.182 23.184 68.296 23.106 68.352 22.912 68.408 22.699 68.441 22.505 68.486 22.310 68.475 22.291 68.497 22.077 68.575 21.941 68.642 21.728 68.687 21.514 68.799 21.320 68.876 21.107 68.931 20.912 68.998 20.912 68.998 20.893 69.021 20.796 69.043 20.660 69.109 20.796 69.098 21.184 69.241 21.107 69.308 21.339 69.274 21.669 69.098 21.941 69.065 21.980 69.021 22.058 68.954 22.213 68.832 22.407 68.721 22.446 68.732 22.660 68.687 23.009 68.631 23.203 68.699 23.514 68.710 23.728 68.832 23.903 68.799 24.116 68.732 24.310 68.699 24.543 68.653 24.757 68.575 24.951 68.620 25.009 68.743 25.184 68.854 25.320 68.887 25.436 68.876 25.631 68.987 25.805 69.109 25.786 69.219 25.767 69.330 25.825 69.385 25.903 69.429 25.864 69.539 25.941 69.637 26.019 69.648 26.000 69.713 26.194 69.823 26.388 69.931 26.582 69.931 26.776 69.920 26.990 69.920 27.145 69.942 27.339 69.996 27.456 70.019 27.495 70.073 27.708 70.083 27.922 69.996 28.038 69.866 28.407 69.767 28.679 69.724 28.932 69.680 29.165 69.670 29.184 69.550 29.281 69.418 29.301 69.297 29.067 69.153 28.873 69.021 29.009 69.010 29.029 69.010 29.106 69.120 29.320 69.175 29.359 69.308 29.398 69.319 29.611 69.363 29.805 69.396 30.019 69.516 30.174 69.604 30.252 69.615 30.252 69.648 30.232 69.648 30.252 69.571 30.446 69.539 30.660 69.539 30.854 69.648 30.951 69.757 30.893 69.790 30.873 ; #1608 13 74.029 78.503 72.399 78.503 72.379 78.524 72.285 78.640 72.182 78.737 72.109 78.950 72.120 79.010 72.078 79.204 72.037 79.592 72.037 79.806 71.984 80.019 71.932 80.213 71.828 80.056 71.724 80.116 71.703 80.135 71.629 80.019 71.608 79.806 71.608 79.592 71.619 79.398 71.503 79.377 71.441 79.182 71.366 79.182 71.313 79.398 71.271 79.592 71.198 79.784 71.133 79.978 71.123 80.019 71.102 80.213 71.091 80.426 70.985 80.561 70.878 80.582 70.772 80.658 70.751 80.620 70.633 80.777 70.526 80.679 70.418 80.814 70.396 80.717 70.461 80.523 70.450 80.329 70.396 80.116 70.321 80.019 70.268 79.824 70.191 79.630 70.127 79.417 70.083 79.339 70.007 79.145 69.996 79.145 69.964 79.182 69.888 78.988 69.790 79.066 69.680 79.204 69.648 79.417 69.648 79.514 69.539 79.649 69.429 79.824 69.341 80.019 69.352 80.116 69.341 80.329 69.330 80.407 69.308 80.620 69.263 80.814 69.208 81.008 69.252 81.203 69.274 81.416 69.263 81.435 69.252 81.456 69.319 81.648 69.319 81.629 69.439 81.766 69.407 81.845 69.297 81.864 69.186 81.882 69.175 82.077 69.153 82.290 69.142 82.484 69.032 82.349 68.920 82.562 68.810 82.621 68.743 82.816 68.687 83.007 68.664 83.048 68.631 82.853 68.531 82.640 68.419 82.719 68.283 82.719 68.171 82.503 68.171 82.406 68.059 82.406 67.946 82.252 67.957 82.039 67.946 81.823 67.889 81.766 67.776 81.920 67.719 82.114 67.605 82.114 67.594 82.174 67.548 82.368 67.434 82.290 67.320 82.309 67.217 82.174 67.148 82.387 67.044 82.621 66.975 82.816 66.964 82.853 66.860 83.048 66.744 83.204 66.616 83.182 66.523 83.104 66.407 83.182 66.302 83.396 66.186 83.552 66.139 83.377 66.021 83.339 65.904 83.552 65.786 83.590 65.798 83.784 65.798 83.978 65.704 84.172 65.585 84.251 65.573 84.329 65.502 84.523 65.384 84.523 65.264 84.582 65.158 84.388 65.098 84.329 65.015 84.407 64.895 84.310 64.895 84.523 64.919 84.717 64.931 84.930 64.811 85.068 64.763 85.281 64.799 85.475 64.823 85.669 64.727 85.864 64.607 85.920 64.474 85.864 64.354 85.961 64.281 86.039 64.159 85.980 64.026 85.864 63.990 85.669 63.880 85.475 63.758 85.359 63.636 85.240 63.587 85.046 63.526 85.143 63.477 85.359 63.390 85.378 63.267 85.551 63.132 85.475 63.095 85.532 63.008 85.551 62.884 85.456 62.809 85.262 62.685 85.106 62.635 85.106 62.548 84.911 62.424 84.814 62.311 84.620 62.173 84.445 62.085 84.523 61.947 84.542 61.896 84.582 61.796 84.777 61.796 84.971 61.707 85.162 61.695 85.378 61.618 85.513 61.580 85.707 61.580 85.920 61.453 85.823 61.428 85.726 61.301 85.726 61.250 85.532 61.122 85.106 61.058 84.893 60.995 84.658 60.931 84.464 60.854 84.269 60.854 84.251 60.829 84.038 60.893 83.843 60.944 83.727 61.046 83.533 61.033 83.320 61.007 83.085 60.893 82.794 60.803 82.600 60.700 82.406 60.558 82.271 60.558 82.077 60.648 81.864 60.623 81.435 60.636 81.240 60.751 81.027 60.764 81.008 60.776 80.814 60.764 80.620 60.751 80.407 60.661 80.213 60.674 80.019 60.687 79.806 60.687 79.611 60.648 79.417 60.789 79.320 60.816 79.261 60.829 79.066 60.776 78.872 60.829 78.659 60.776 78.465 60.776 78.387 60.803 78.193 60.764 77.998 60.803 77.785 60.829 77.591 60.816 77.416 60.829 77.281 60.841 77.203 60.854 77.124 60.725 77.087 60.712 77.087 60.712 76.990 60.584 77.068 60.481 76.852 60.339 76.755 60.249 76.852 60.119 76.717 60.002 76.755 59.859 76.755 59.728 76.736 59.585 76.658 59.546 76.464 59.546 76.269 59.455 76.056 59.428 75.959 59.270 75.784 59.139 75.668 59.007 75.687 58.875 75.514 58.743 75.301 58.651 75.182 58.583 75.126 ; #1609 13 70.007 109.513 70.116 109.378 70.224 109.300 70.246 109.513 70.353 109.570 70.386 109.688 70.396 109.901 70.407 109.980 70.407 110.096 70.450 110.290 70.558 110.152 70.665 110.249 70.708 110.349 70.793 110.543 70.815 110.735 70.825 110.970 70.836 111.007 70.846 111.220 70.899 111.415 70.943 111.630 70.964 111.825 71.017 112.038 71.007 112.191 71.059 112.405 71.112 112.601 71.219 112.717 71.292 112.620 71.303 112.426 71.366 112.232 71.398 112.038 71.514 112.019 72.006 112.019 72.130 111.978 72.141 111.784 72.151 111.765 72.213 111.630 72.316 111.590 72.316 111.396 72.358 111.183 72.461 111.220 72.512 111.299 72.563 111.086 72.636 110.891 72.667 110.678 72.779 110.638 72.820 110.716 72.921 110.775 73.024 110.929 73.135 110.813 73.175 110.659 73.217 110.446 73.317 110.562 73.348 110.349 73.398 110.152 73.398 110.503 73.479 110.697 73.569 110.910 73.650 111.104 73.700 110.910 73.759 110.891 73.769 110.910 73.819 111.104 73.860 111.299 73.870 111.339 73.909 111.552 73.959 111.746 73.979 111.941 74.078 111.900 74.098 111.706 74.118 111.552 74.148 111.358 74.187 111.145 74.227 110.929 74.247 110.735 74.306 110.522 74.365 110.716 74.415 110.929 74.483 111.183 74.513 111.396 74.553 111.590 74.582 111.803 74.611 112.019 74.650 112.232 74.679 112.426 74.739 112.852 74.777 113.065 74.806 113.260 74.835 113.473 74.874 113.688 74.904 113.883 74.933 114.096 74.972 114.309 75.001 114.522 77.840 114.522 77.840 120.019 77.911 120.270 77.993 120.523 78.056 120.755 78.127 120.990 78.190 121.222 78.262 121.454 78.324 121.688 78.395 121.920 78.458 122.174 78.528 122.406 78.591 122.638 78.661 122.873 78.706 123.026 78.776 123.261 78.838 123.493 78.978 123.960 79.040 124.192 79.065 124.270 79.101 124.405 79.161 124.599 79.214 124.793 79.275 124.987 79.379 125.376 79.439 125.570 79.492 125.764 79.552 125.958 79.603 126.152 79.664 126.347 79.715 126.541 79.835 126.929 79.886 127.123 79.946 127.318 79.997 127.512 90.000 127.512 ; #1610 13 48.875 130.638 48.905 130.678 48.965 130.813 48.980 131.007 48.995 131.026 49.100 131.067 49.251 131.221 49.236 131.415 49.281 131.434 49.430 131.512 49.550 131.512 49.715 131.377 49.759 131.512 49.908 131.512 49.998 131.318 50.146 131.493 50.294 131.337 50.368 131.299 50.428 131.142 50.383 131.007 50.531 130.989 50.649 130.891 50.635 130.697 50.782 130.757 50.871 130.873 51.018 130.951 51.179 131.045 51.238 131.086 51.340 131.280 51.340 131.474 51.457 131.512 51.516 131.474 51.530 131.474 51.677 131.434 51.677 131.628 51.721 131.822 51.750 131.900 51.764 132.113 51.793 132.308 51.895 132.445 52.040 132.561 52.127 132.755 52.184 132.852 52.155 133.047 52.184 133.241 52.258 133.454 52.315 133.416 52.460 133.260 52.604 133.260 52.676 133.397 52.618 133.591 52.575 133.667 52.532 133.861 52.503 134.077 52.474 134.271 52.460 134.368 52.417 134.581 52.561 134.657 52.676 134.776 52.819 134.638 52.891 134.678 53.050 134.813 53.193 134.873 53.292 134.929 53.436 134.929 53.549 134.735 53.592 134.678 53.592 134.484 53.521 134.290 53.464 134.152 53.450 133.958 53.464 133.764 53.521 133.570 53.492 133.551 53.478 133.357 53.335 133.181 53.292 133.084 53.221 132.890 53.249 132.696 53.235 132.483 53.235 132.348 53.221 132.154 53.150 131.960 53.221 131.765 53.207 131.571 53.364 131.531 53.478 131.512 53.620 131.474 53.762 131.396 53.790 131.239 53.806 131.045 53.834 130.854 53.890 130.660 53.890 130.522 54.046 130.503 54.188 130.619 54.244 130.697 54.300 130.891 54.300 131.086 54.441 131.202 54.497 131.221 54.638 131.299 54.722 131.493 54.764 131.687 54.848 131.900 55.002 131.978 55.002 131.997 55.044 132.192 55.058 132.386 55.071 132.426 55.197 132.367 55.197 132.561 55.336 132.677 55.350 132.871 55.364 132.968 55.420 132.774 55.433 132.755 55.572 132.658 55.683 132.464 55.697 132.270 55.656 132.076 55.613 131.862 55.656 131.668 55.613 131.531 55.613 131.142 55.683 130.951 55.821 130.891 55.959 130.929 56.111 130.970 56.152 131.007 56.289 131.123 56.426 131.164 56.481 131.358 56.426 131.377 56.536 131.571 56.494 131.687 56.632 131.725 56.768 131.803 56.850 131.725 56.985 131.552 57.121 131.337 57.149 131.318 57.230 131.123 57.298 131.239 57.311 131.280 57.257 131.474 57.244 131.531 57.311 131.609 57.419 131.590 57.554 131.784 57.608 131.978 57.662 132.076 57.796 131.919 57.930 131.747 58.037 131.668 58.172 131.552 58.158 131.747 58.145 131.747 58.077 131.941 58.064 132.154 58.198 132.057 58.212 132.076 58.345 132.232 58.491 132.232 58.477 132.426 58.477 132.445 58.610 132.523 58.756 132.599 58.888 132.599 58.836 132.464 58.796 132.405 58.862 132.210 58.994 132.173 59.126 132.154 59.113 131.978 59.139 131.822 59.402 131.628 59.546 131.649 59.559 131.668 59.689 131.649 59.820 131.668 59.950 131.765 60.002 131.978 60.094 132.076 60.223 132.154 60.326 132.289 60.456 132.348 60.597 132.464 60.674 132.542 60.623 132.736 60.725 132.931 60.816 133.125 61.007 133.125 61.135 133.106 61.263 133.163 61.301 133.357 61.314 133.570 61.314 133.648 61.339 133.842 61.352 134.055 61.339 134.250 61.453 134.541 61.580 134.406 61.707 134.368 61.821 134.171 61.846 134.115 61.833 133.902 61.859 133.707 61.859 133.591 61.896 133.397 61.833 133.181 61.947 132.987 62.085 132.890 62.122 132.890 62.249 132.736 62.374 132.639 62.511 132.677 62.523 132.580 62.499 132.386 62.635 132.464 62.760 132.523 62.884 132.561 62.971 132.639 63.095 132.755 63.230 132.815 63.353 132.852 63.353 132.834 63.365 132.834 63.402 132.755 63.526 132.620 63.709 132.329 63.721 132.135 63.843 132.308 63.880 132.405 64.014 132.561 64.135 132.620 64.257 132.736 64.366 132.834 64.498 132.755 64.619 132.620 64.607 132.405 64.691 132.251 64.823 132.289 64.943 132.210 65.063 132.094 65.301 131.862 65.420 131.747 65.479 131.552 65.550 131.649 65.609 131.668 65.727 131.609 65.786 131.415 65.798 131.337 65.892 131.123 65.962 130.929 66.009 130.735 66.068 130.541 66.162 130.368 66.279 130.231 66.395 130.174 66.512 130.018 66.477 129.861 66.500 129.648 66.535 129.454 66.500 129.260 66.500 129.241 66.512 129.047 66.535 128.833 66.570 128.620 66.593 128.426 66.523 128.232 66.477 128.154 66.546 127.960 66.604 127.765 66.639 127.552 66.686 127.358 66.721 127.299 66.744 127.221 66.837 127.026 66.952 127.105 67.067 127.105 67.194 127.067 67.262 127.067 67.377 127.145 67.491 127.183 67.617 127.007 67.628 126.813 67.731 126.659 67.844 126.581 67.957 126.716 68.081 126.716 68.104 126.638 68.216 126.581 68.340 126.678 68.363 126.873 68.374 127.067 68.396 127.048 68.508 127.183 68.553 126.970 68.609 126.775 68.710 126.581 68.721 126.600 68.754 126.813 68.765 127.007 68.787 127.202 68.787 127.415 68.776 127.609 68.776 127.844 68.754 128.038 68.787 128.232 68.843 128.426 68.799 128.639 68.787 128.833 68.754 129.028 68.732 129.222 68.754 129.435 68.832 129.629 68.887 129.823 68.876 130.018 68.898 130.055 68.821 130.271 68.787 130.463 68.787 130.660 68.887 130.854 68.898 130.891 68.954 131.105 69.010 131.299 69.032 131.493 69.032 132.094 69.043 132.232 69.120 132.426 69.230 132.599 69.286 132.815 69.352 132.834 69.461 132.815 69.571 132.987 69.659 133.203 69.670 133.397 69.757 133.357 69.812 133.163 69.920 133.144 69.996 132.949 70.094 133.144 70.202 133.144 70.311 133.065 70.343 132.871 70.353 132.718 70.375 132.523 70.364 132.329 70.375 132.135 70.483 132.094 70.590 132.154 70.698 132.113 70.804 132.113 70.922 132.192 71.028 132.057 71.070 131.862 71.059 131.822 71.059 131.725 76.852 131.725 76.953 131.919 77.027 132.192 77.174 132.696 77.192 132.774 77.257 132.987 77.320 133.181 77.376 133.397 77.440 133.610 77.494 133.823 77.622 134.250 77.677 134.463 77.740 134.657 77.804 134.873 77.858 135.086 77.938 135.337 78.002 135.590 78.074 135.803 78.136 136.038 78.199 136.251 78.262 136.483 78.324 136.696 78.395 136.931 78.458 137.144 78.502 137.319 78.565 137.532 78.626 137.764 78.697 137.980 78.750 138.171 78.812 138.387 78.829 138.444 78.890 138.657 78.943 138.851 79.065 139.280 79.136 139.512 79.205 139.765 79.240 139.881 79.284 140.016 79.405 140.445 79.466 140.677 79.672 141.376 79.741 141.629 79.809 141.861 79.835 141.958 79.955 142.387 79.997 142.522 90.000 142.522 ; #1611 13 60.002 146.679 60.132 146.619 60.223 146.425 60.249 146.231 60.223 146.018 60.197 145.823 60.287 145.629 60.403 145.610 60.533 145.629 60.597 145.842 60.687 146.037 60.700 146.037 60.700 146.250 60.674 146.444 60.803 146.484 60.905 146.484 60.944 146.679 61.071 146.697 61.212 146.776 61.276 146.716 61.403 146.794 61.415 146.776 61.428 146.619 61.567 146.600 61.695 146.484 61.821 146.387 61.871 146.269 61.947 146.074 62.022 145.880 62.047 145.686 62.009 145.667 61.959 145.454 61.972 145.260 62.009 145.066 62.072 144.871 62.047 144.755 61.921 144.561 61.796 144.386 61.733 144.211 61.733 143.997 61.859 143.960 61.984 143.960 61.934 143.784 61.934 143.571 62.022 143.377 62.047 143.318 62.034 143.124 61.909 143.008 61.947 142.813 61.959 142.776 61.934 142.581 61.959 142.366 62.072 142.193 62.034 141.999 62.085 141.805 62.160 141.589 62.173 141.570 62.299 141.416 62.436 141.319 62.399 141.125 62.486 141.047 62.548 140.834 62.424 140.658 62.424 140.426 62.536 140.232 62.660 140.135 62.660 140.016 62.685 139.822 62.809 139.687 62.933 139.628 63.021 139.590 63.144 139.668 63.243 139.628 63.341 139.822 63.402 140.016 63.477 140.154 63.501 140.348 63.501 140.367 63.599 140.580 63.721 140.502 63.843 140.542 63.978 140.639 64.111 140.599 64.171 140.386 64.233 140.192 64.354 140.057 64.414 140.192 64.486 140.386 64.607 140.232 64.715 140.016 64.799 139.822 64.859 139.628 64.979 139.493 65.086 139.571 65.205 139.687 65.325 139.803 65.455 139.979 65.455 140.016 65.479 140.095 65.538 140.308 65.657 140.154 65.716 140.270 65.833 140.251 65.927 140.057 66.044 140.016 66.104 139.822 66.221 139.725 66.337 139.900 66.384 140.016 66.407 140.173 66.372 140.386 66.477 140.542 66.593 140.405 66.639 140.210 66.674 140.016 66.791 139.960 66.802 139.765 66.814 139.552 66.929 139.434 66.998 139.396 67.113 139.202 67.148 139.008 67.228 138.794 67.251 138.716 67.331 138.910 67.457 138.832 67.571 138.851 67.594 139.008 67.583 139.221 67.594 139.415 67.696 139.609 67.742 139.822 67.799 140.016 67.821 140.210 67.821 140.445 67.833 140.658 67.833 140.852 67.810 141.066 67.833 141.260 67.923 141.066 68.025 141.084 68.137 141.066 68.250 141.084 68.363 140.968 68.374 140.987 68.464 141.182 68.452 141.395 68.497 141.610 68.620 141.667 68.653 141.861 68.743 141.880 68.854 141.823 68.976 141.648 69.087 141.532 69.098 141.513 69.208 141.435 69.252 141.648 69.252 141.842 69.241 142.037 69.274 142.250 69.274 142.268 69.252 142.463 69.363 142.600 69.472 142.581 69.582 142.366 69.615 142.250 69.648 142.037 69.767 142.171 69.877 142.231 69.909 142.018 69.909 141.880 69.877 141.686 69.920 141.494 69.985 141.300 69.975 141.103 69.996 140.890 70.105 140.852 70.213 140.815 70.332 141.009 70.429 141.222 70.450 141.260 70.569 141.454 70.665 141.648 70.783 141.764 70.889 141.861 70.922 141.902 70.953 142.096 70.985 142.309 71.081 142.503 71.187 142.581 71.240 142.541 71.345 142.444 71.462 142.541 71.566 142.619 71.671 142.735 71.714 142.929 71.724 142.948 71.828 143.067 71.932 143.221 71.996 143.358 72.099 143.550 72.192 143.747 72.172 143.960 72.192 144.173 72.244 144.192 72.264 144.211 72.275 144.424 72.285 144.621 72.492 144.890 72.584 144.987 73.247 144.987 73.247 151.512 75.998 151.512 75.998 147.026 78.002 147.026 78.002 157.513 79.997 157.513 90.000 157.513 ; #1612 13 57.823 157.513 60.002 157.513 60.002 160.016 60.067 160.173 60.184 160.405 60.390 160.871 60.507 161.103 60.610 161.357 60.712 161.589 60.829 161.824 60.931 162.056 61.046 162.288 61.148 162.522 61.669 162.522 61.796 162.482 61.921 162.347 61.984 162.541 62.034 162.560 62.122 162.366 62.249 162.425 62.274 162.600 62.386 162.795 62.511 162.773 62.635 162.795 62.685 162.851 62.747 162.638 62.871 162.482 62.996 162.309 63.033 162.347 63.132 162.541 63.181 162.754 63.304 162.773 63.329 162.754 63.365 162.697 63.427 162.892 63.550 162.989 63.685 162.870 63.770 162.754 63.905 162.892 64.026 162.911 64.123 162.813 64.196 163.008 64.208 163.202 64.329 163.337 64.414 163.415 64.534 163.221 64.655 163.240 64.775 163.161 64.643 163.027 64.655 162.832 64.727 162.638 64.751 162.444 64.763 162.250 64.787 162.037 64.823 161.842 64.943 161.745 65.050 161.551 65.074 161.414 65.146 161.219 65.170 161.028 65.158 160.812 65.146 160.618 65.170 160.521 65.289 160.348 65.408 160.192 65.526 160.016 65.526 159.841 65.597 159.647 65.644 159.434 65.680 159.221 65.727 159.027 65.751 158.929 65.880 158.948 65.997 159.045 66.115 159.183 66.232 159.202 66.232 159.161 66.267 158.948 66.302 158.754 66.360 158.541 66.384 158.503 66.500 158.503 66.616 158.657 66.733 158.773 66.756 158.851 66.872 158.892 66.987 158.813 67.079 158.619 67.113 158.406 67.182 158.212 67.251 158.018 67.354 157.805 67.468 157.764 67.503 157.783 67.617 157.745 67.731 157.940 67.719 158.134 67.776 158.328 67.833 158.287 67.844 158.074 67.957 158.212 68.081 158.287 68.126 158.484 68.137 158.581 68.149 158.773 68.160 158.989 68.171 159.027 68.194 159.221 68.216 159.434 68.239 159.628 68.283 160.016 68.272 160.230 68.272 160.639 68.283 160.834 68.296 160.871 68.329 161.066 68.385 161.260 68.408 161.473 68.385 161.667 68.374 161.880 68.363 162.074 68.352 162.096 68.329 162.288 68.340 162.503 68.452 162.619 68.564 162.697 68.642 162.716 68.754 162.619 68.832 162.813 68.954 162.697 68.998 162.560 69.109 162.522 69.164 162.716 69.274 162.657 69.385 162.522 69.505 162.366 69.582 162.385 69.670 162.444 69.920 162.444 69.996 162.231 69.996 160.270 71.870 160.270 71.996 160.348 71.996 172.521 76.413 172.521 79.997 172.521 90.000 172.521 ; #1613 13 69.010 29.029 68.965 28.815 68.920 28.621 68.887 28.485 68.887 28.446 68.876 28.485 68.876 28.679 68.765 28.776 68.642 28.621 68.531 28.465 68.508 28.485 68.486 28.504 68.363 28.582 68.239 28.679 68.160 28.873 68.092 29.301 67.980 29.495 67.855 29.650 67.753 29.883 67.708 30.019 67.674 30.019 67.640 30.000 67.514 29.961 67.411 29.747 67.308 29.553 67.194 29.398 67.067 29.223 66.952 29.087 66.860 29.087 66.744 29.262 66.627 29.398 66.570 29.456 66.442 29.572 66.372 29.611 66.314 29.670 66.079 29.941 65.962 30.019 65.833 30.097 65.798 30.116 65.668 30.136 65.680 30.019 65.657 29.805 65.526 29.786 65.408 29.747 65.337 29.747 65.217 29.670 65.217 29.864 65.098 29.805 65.003 29.611 64.883 29.689 64.787 29.883 64.799 30.019 64.691 30.213 64.595 30.019 64.546 30.000 64.534 30.019 ; #1614 13 60.546 27.825 60.597 27.903 60.623 27.941 60.738 28.155 60.751 28.155 60.854 28.349 60.944 28.504 60.956 28.543 60.956 28.601 60.982 28.660 61.109 28.854 61.109 28.873 61.122 28.893 61.212 29.106 61.301 29.301 61.339 29.339 61.479 29.534 61.491 29.553 61.504 29.630 61.605 29.825 61.733 30.019 61.783 30.058 61.859 30.174 61.909 30.252 62.034 30.446 62.160 30.640 62.223 30.757 62.311 30.951 62.536 31.301 62.660 31.398 62.785 31.475 62.908 31.592 62.984 31.534 63.095 31.320 63.218 31.242 63.292 31.029 63.304 31.009 63.402 30.815 63.452 30.601 63.550 30.407 63.611 30.213 63.624 30.213 63.733 30.019 ; #1615 13 63.745 30.019 63.794 30.213 63.917 30.388 64.038 30.582 64.123 30.601 64.245 30.563 64.317 30.368 64.354 30.174 64.474 30.097 64.498 30.058 64.522 30.019 ; #1616 13 60.002 51.630 60.119 51.824 60.249 51.922 60.313 52.096 60.249 52.310 60.236 52.310 60.210 52.426 60.184 52.620 60.171 52.815 60.158 53.028 60.158 53.242 60.223 53.475 60.145 53.630 60.002 53.727 59.872 53.689 59.728 53.630 59.689 53.436 59.559 53.397 59.468 53.339 59.336 53.222 59.205 53.320 59.139 53.533 59.113 53.669 59.113 53.863 58.980 53.747 58.875 53.766 58.756 53.883 58.610 53.727 58.477 53.786 58.438 53.805 58.305 53.883 58.172 53.902 58.024 54.038 58.010 54.077 57.943 54.096 57.809 54.154 57.756 54.154 57.716 54.174 57.581 53.999 57.554 54.193 57.514 54.174 57.379 54.154 57.230 54.329 57.203 54.329 57.067 54.407 57.039 54.407 57.012 54.213 56.877 54.096 56.768 54.096 56.768 54.077 56.754 53.941 56.618 53.863 56.632 53.960 56.673 54.057 56.604 54.077 56.591 54.057 56.563 54.096 56.536 54.135 56.453 54.349 56.358 54.368 56.358 54.349 56.317 54.349 56.262 54.368 56.248 54.349 56.180 54.193 56.042 54.057 56.042 53.844 55.918 53.650 55.904 53.553 55.890 53.514 55.849 53.300 55.931 53.203 56.000 53.397 56.125 53.494 56.262 53.475 56.234 53.281 56.111 53.203 56.193 53.009 56.248 52.970 56.385 52.970 56.523 53.048 56.523 53.028 56.536 53.028 56.536 52.951 56.509 52.951 56.509 52.892 56.494 52.873 56.467 52.970 56.453 52.970 56.412 52.912 56.371 52.756 56.234 52.659 56.221 52.737 56.111 52.756 56.056 52.562 56.042 52.504 56.070 52.310 56.083 52.213 55.945 52.232 55.959 52.018 55.918 51.844 55.959 51.650 55.918 51.455 55.986 51.417 56.014 51.455 56.152 51.650 56.138 51.455 56.070 51.339 56.138 51.203 56.193 50.989 56.207 50.970 56.289 50.912 56.344 50.795 56.330 50.718 56.467 50.524 56.494 50.524 56.618 50.485 56.645 50.291 56.618 50.077 56.727 50.096 56.863 50.019 56.890 49.805 57.026 49.727 57.067 49.727 57.067 49.533 57.039 49.339 57.176 49.145 57.230 49.184 57.107 48.989 57.080 48.893 57.176 48.698 57.134 48.504 57.162 48.310 57.134 48.271 56.999 48.135 56.999 47.883 57.012 47.708 56.877 47.514 56.877 47.455 56.836 47.242 56.917 47.048 56.931 46.893 56.972 46.718 57.053 46.776 57.189 46.737 57.217 46.853 57.352 46.679 57.487 46.776 57.527 46.815 57.500 47.009 57.487 47.028 57.541 47.222 57.527 47.417 57.648 47.553 57.675 47.553 57.689 47.533 57.823 47.611 57.957 47.669 57.984 47.475 58.024 47.320 58.024 46.621 58.037 46.407 58.077 46.349 58.145 46.349 58.198 46.388 58.331 46.465 58.345 46.485 58.385 46.524 58.398 46.562 58.531 46.601 58.570 46.621 58.583 46.834 58.651 47.028 58.783 47.145 58.783 47.300 58.915 47.358 59.007 47.572 59.152 47.455 59.205 47.281 59.336 47.261 59.481 47.086 59.611 47.125 59.755 47.145 59.859 46.951 60.002 47.009 60.015 47.009 60.119 47.028 60.067 46.815 60.067 46.621 60.107 46.426 60.132 46.388 60.262 46.407 60.274 46.621 60.313 46.815 60.390 46.834 60.520 46.912 60.648 46.970 60.674 47.009 60.687 47.009 60.816 47.106 60.829 47.086 60.854 47.048 60.905 47.106 61.033 47.203 61.058 47.397 61.058 47.553 61.046 47.650 61.020 47.844 60.880 48.038 60.867 48.232 60.854 48.426 60.816 48.446 60.803 48.465 60.674 48.523 60.572 48.562 60.443 48.621 60.403 48.601 60.403 48.698 60.274 48.621 60.132 48.465 60.002 48.504 59.833 48.504 59.702 48.601 59.689 48.718 59.676 48.757 59.663 48.951 59.663 49.086 59.585 49.086 59.585 49.067 59.481 49.048 59.481 49.261 59.415 49.358 59.362 49.553 59.231 49.572 59.218 49.766 59.283 49.824 59.559 49.824 59.676 50.019 59.715 50.019 59.781 50.019 59.768 50.096 59.807 50.310 59.846 50.504 59.872 50.698 59.924 50.892 60.002 51.009 60.054 51.203 60.002 51.378 59.963 51.591 59.976 51.591 60.002 51.630 ; #1617 13 60.236 52.310 60.313 52.349 60.339 52.349 60.469 52.135 60.572 51.941 60.712 51.824 60.816 51.883 60.867 52.077 60.854 52.116 60.841 52.310 60.969 52.426 60.956 52.620 60.956 52.718 61.084 52.892 61.071 53.087 61.046 53.281 60.918 53.358 60.867 53.553 60.854 53.766 60.982 53.863 60.969 54.057 60.918 54.485 60.893 54.679 60.893 54.718 60.867 54.931 60.880 55.009 61.007 55.067 61.071 55.261 61.109 55.456 61.084 55.669 61.225 55.824 61.238 55.980 61.212 56.193 61.352 56.349 61.390 56.368 61.453 56.562 61.517 56.776 61.504 56.912 61.479 57.106 61.479 57.125 61.504 57.319 61.504 58.698 61.542 58.892 61.593 59.087 61.632 59.145 61.682 59.339 61.682 59.358 61.808 59.339 61.934 59.455 61.997 59.494 62.122 59.416 62.249 59.494 62.374 59.611 62.474 59.649 62.598 59.475 62.735 59.397 62.859 59.475 62.933 59.455 62.996 59.261 63.132 59.319 63.255 59.339 63.353 59.339 63.477 59.416 63.599 59.514 63.721 59.514 63.843 59.591 63.978 59.708 64.099 59.863 64.196 59.669 64.233 59.611 64.354 59.649 64.474 59.514 64.595 59.611 64.679 59.708 64.799 59.688 64.895 59.883 64.979 60.018 65.074 60.213 65.063 60.407 64.943 60.601 64.907 60.678 65.027 60.795 65.050 61.009 65.170 61.125 65.253 61.300 65.372 61.378 65.490 61.514 65.585 61.708 65.692 61.863 65.716 62.038 65.810 62.426 65.857 62.621 65.868 62.814 65.974 62.892 66.091 62.931 66.209 63.028 66.244 63.242 66.314 63.261 66.430 63.397 66.477 63.591 66.535 63.785 66.651 63.980 66.651 64.018 66.662 64.212 66.721 64.407 66.802 64.620 66.825 64.814 66.872 64.970 66.929 65.125 67.021 65.086 67.148 65.183 67.205 65.378 67.285 65.591 67.388 65.708 67.388 65.921 67.468 66.116 67.560 65.902 67.628 65.824 67.674 66.038 67.708 66.232 67.821 66.038 67.934 66.096 67.946 65.883 67.923 65.688 67.934 65.591 67.957 65.397 68.070 65.339 68.182 65.300 68.296 65.358 68.307 65.378 68.430 65.475 68.430 65.494 68.542 65.669 68.642 65.475 68.754 65.339 68.799 65.319 68.810 65.125 68.876 64.931 68.854 64.737 68.898 64.543 68.976 64.543 69.087 64.717 69.153 64.853 69.186 64.931 69.274 65.047 69.996 65.047 70.878 65.047 70.964 64.989 ; #1618 13 50.043 95.007 50.028 95.029 49.998 95.048 49.952 95.242 49.952 95.436 49.908 95.514 49.893 95.552 49.952 95.746 49.998 95.803 49.998 95.940 49.998 96.075 49.998 96.135 49.938 96.329 49.908 96.717 49.893 96.911 49.819 97.106 49.729 97.300 49.789 97.494 49.923 97.610 49.967 97.804 49.998 97.998 50.043 98.114 50.191 98.230 50.339 98.309 50.472 98.349 50.561 98.252 50.679 98.036 50.752 97.998 50.915 97.961 51.062 97.883 51.164 97.939 51.311 97.961 51.457 98.077 51.457 98.252 51.574 98.271 51.721 98.349 51.764 98.562 51.851 98.738 51.996 98.835 52.141 98.951 52.200 98.835 52.344 98.697 52.489 98.738 52.518 98.756 52.503 98.813 52.647 98.951 52.805 98.932 52.848 98.872 52.891 99.067 52.949 99.261 53.092 99.067 53.150 98.969 53.150 98.756 53.107 98.562 53.092 98.368 53.221 98.290 53.249 98.077 53.364 97.883 53.378 97.726 53.450 97.532 53.592 97.338 53.592 97.300 53.634 97.106 53.734 96.911 53.634 96.698 53.663 96.582 53.806 96.388 53.834 96.367 53.961 96.172 54.102 95.978 54.159 95.881 54.244 95.687 54.385 95.727 54.399 95.940 54.413 95.959 54.554 96.056 54.540 96.251 54.568 96.329 54.554 96.388 54.525 96.582 54.568 96.561 54.722 96.601 54.862 96.717 55.002 96.639 55.030 96.620 55.141 96.698 55.281 96.814 55.420 96.871 55.516 96.852 55.656 96.774 55.807 96.852 55.876 96.990 56.028 97.027 56.097 97.222 56.097 97.454 56.125 97.454 56.234 97.610 56.385 97.688 56.385 97.707 56.509 97.901 56.659 97.804 56.795 97.745 56.809 97.688 56.822 97.494 56.958 97.494 56.985 97.454 57.012 97.435 57.039 97.357 57.094 97.397 57.244 97.494 57.379 97.610 57.406 97.629 57.446 97.669 57.595 97.767 57.742 97.883 57.823 98.077 57.809 98.271 57.809 98.368 57.796 98.562 57.796 98.756 57.729 98.969 57.769 99.164 57.769 99.242 57.796 99.436 57.930 99.512 58.064 99.668 58.050 99.825 58.077 100.019 58.077 100.075 58.064 100.097 57.930 100.116 57.796 100.288 57.662 100.367 57.648 100.367 57.514 100.523 57.419 100.736 57.446 100.930 57.460 100.949 57.473 100.968 57.608 100.852 57.742 100.893 57.890 100.833 57.877 101.009 58.010 101.162 58.145 101.241 58.225 101.378 58.291 101.591 58.424 101.707 58.464 101.901 58.491 101.999 58.517 102.193 58.651 102.346 58.743 102.543 58.783 102.581 58.915 102.522 59.047 102.446 59.192 102.543 59.192 102.697 59.244 102.872 59.270 103.067 59.231 103.261 59.218 103.261 59.087 103.339 58.980 103.533 58.915 103.727 58.901 103.900 58.770 104.057 58.756 104.251 58.730 104.251 58.597 104.464 58.610 104.601 58.651 104.677 58.730 104.893 58.862 104.814 58.967 105.009 59.047 105.203 59.179 105.338 59.297 105.222 59.428 105.241 59.455 105.046 59.455 105.009 59.572 104.893 59.702 104.814 59.768 105.009 59.820 105.028 59.859 105.144 59.833 105.338 59.872 105.494 60.002 105.513 60.132 105.454 60.274 105.475 60.287 105.281 60.287 105.065 60.339 104.871 60.403 104.677 60.533 104.601 60.546 104.580 60.674 104.561 60.803 104.483 60.944 104.580 61.007 104.620 61.148 104.796 61.238 104.990 61.377 104.930 61.415 105.125 61.491 105.319 61.542 105.454 61.632 105.648 61.644 105.842 61.770 105.939 61.871 105.999 61.997 106.212 62.072 106.406 62.160 106.425 62.286 106.387 62.399 106.581 62.511 106.716 62.635 106.697 62.685 106.484 62.809 106.465 62.846 106.446 62.946 106.231 63.070 106.231 63.119 106.425 63.193 106.446 63.316 106.503 63.304 106.697 63.439 106.619 63.501 106.522 63.513 106.522 63.599 106.678 63.721 106.678 63.843 106.813 63.965 106.716 63.965 106.835 63.917 107.029 63.953 107.242 63.856 107.436 63.868 107.590 63.990 107.687 63.990 108.075 63.978 108.116 64.087 108.310 64.208 108.232 64.221 108.038 64.245 108.251 64.293 108.445 64.171 108.561 64.075 108.580 63.941 108.736 63.819 108.736 63.794 108.542 63.806 108.426 63.672 108.289 63.587 108.483 63.587 108.504 63.575 108.717 63.538 108.912 63.513 109.106 63.390 109.281 63.365 109.281 63.243 109.454 63.119 109.475 62.996 109.475 62.871 109.629 62.747 109.494 62.623 109.397 62.598 109.397 62.474 109.338 62.424 109.532 62.411 109.726 62.411 109.939 62.286 110.017 62.185 110.017 62.160 110.017 62.085 109.901 62.047 109.883 62.022 109.864 61.997 109.842 61.896 109.648 61.896 109.629 61.884 109.610 61.745 109.629 61.707 109.629 61.669 109.726 61.567 109.842 61.441 109.864 61.314 109.823 61.289 110.017 61.160 110.193 61.173 110.387 61.046 110.484 60.995 110.484 60.867 110.309 60.738 110.290 60.674 110.077 60.648 110.115 60.507 110.036 60.507 110.017 60.377 109.901 60.249 109.804 60.107 109.707 60.080 109.726 60.002 109.764 59.872 109.669 59.728 109.513 59.598 109.494 59.572 109.435 59.442 109.300 59.310 109.300 59.297 109.513 59.283 109.532 59.152 109.648 59.020 109.804 58.994 109.901 59.007 110.017 58.980 110.212 59.034 110.406 59.126 110.600 59.165 110.581 59.257 110.794 59.218 110.988 59.179 111.183 59.257 111.318 59.257 111.512 59.231 111.706 59.283 111.922 59.362 112.038 59.494 112.232 59.362 112.289 59.310 112.405 59.310 112.561 59.179 112.483 59.047 112.483 58.941 112.464 58.954 112.639 59.074 112.601 59.100 112.793 59.139 112.990 59.165 113.184 59.205 113.357 59.336 113.494 59.468 113.572 59.585 113.688 59.676 113.883 59.741 114.077 59.833 114.271 59.859 114.309 59.963 114.503 60.002 114.581 60.132 114.619 60.184 114.813 60.262 115.007 60.300 115.067 60.429 115.202 60.481 115.396 60.507 115.590 60.494 115.803 60.456 115.881 60.416 116.075 60.377 116.270 60.377 116.464 60.339 116.658 60.274 116.736 60.184 116.931 60.054 117.046 60.015 117.260 60.002 117.338 59.963 117.125 59.833 117.241 59.702 117.222 59.624 117.162 59.494 117.357 59.481 117.551 59.507 117.688 59.442 117.883 59.572 118.055 59.598 118.231 59.507 118.425 59.442 118.619 59.310 118.813 59.310 118.832 59.179 118.697 59.034 118.757 59.007 118.873 58.941 118.813 58.809 118.910 58.677 118.873 58.531 119.007 58.398 119.123 58.265 119.145 58.225 119.123 58.225 118.929 58.185 118.735 58.212 118.541 58.318 118.368 58.358 118.290 58.385 118.152 58.398 117.958 58.398 117.764 58.345 117.551 58.291 117.475 58.158 117.591 58.064 117.397 57.970 117.397 57.836 117.222 57.702 117.181 57.635 117.181 57.500 117.281 57.365 117.357 57.311 117.475 57.311 117.667 57.176 117.667 57.134 117.629 56.999 117.688 56.863 117.591 56.836 117.416 56.877 117.222 56.809 117.028 56.782 116.987 56.741 116.796 56.754 116.580 56.822 116.386 56.822 116.213 56.850 116.019 56.944 115.825 56.958 115.746 56.822 115.609 56.686 115.533 56.591 115.512 56.481 115.706 56.289 115.706 56.248 115.728 56.207 115.765 56.056 115.784 55.918 115.922 55.821 115.862 55.683 115.862 55.530 115.900 55.406 115.941 55.378 115.959 55.350 116.154 55.364 116.289 55.224 116.483 55.127 116.699 55.085 116.815 55.002 116.852 54.974 116.852 54.834 116.949 54.694 116.852 54.680 116.833 54.525 116.736 54.469 116.542 54.497 116.367 54.497 116.173 54.483 116.116 54.469 115.922 54.427 115.728 54.328 115.533 54.258 115.377 54.159 115.183 54.018 115.007 54.003 114.988 53.989 114.970 53.933 114.775 53.862 114.581 53.806 114.387 53.734 114.231 53.720 114.036 53.620 113.823 53.563 113.883 53.507 113.901 53.364 113.883 53.221 114.055 53.107 114.152 52.964 114.328 52.834 114.252 52.690 114.115 52.633 113.901 52.618 113.901 52.474 113.513 52.474 113.300 52.402 113.106 52.344 112.912 52.330 112.717 52.243 112.504 52.229 112.367 52.243 112.270 52.243 112.057 52.112 111.862 52.011 111.746 51.982 111.706 51.895 111.512 51.851 111.299 51.808 111.104 51.735 111.026 51.589 110.832 51.501 110.638 51.501 110.600 51.574 110.406 51.589 110.212 51.603 110.017 51.516 109.823 51.457 109.688 51.413 109.494 51.355 109.300 51.472 109.144 51.443 108.949 51.443 108.912 51.472 108.717 51.413 108.523 51.311 108.445 51.224 108.426 51.076 108.542 51.047 108.348 50.915 108.289 50.827 108.270 50.782 108.135 50.752 108.075 50.723 108.116 50.635 108.310 50.590 108.504 50.517 108.698 50.502 108.698 50.443 108.483 50.413 108.289 50.309 108.154 50.265 107.959 50.161 107.803 50.013 107.803 49.998 107.784 49.982 107.765 49.967 107.803 49.938 107.997 49.774 107.997 49.625 108.057 49.550 108.154 49.460 108.367 49.341 108.561 49.341 109.319 49.311 109.416 49.236 109.610 49.221 109.823 49.206 110.017 49.176 110.212 49.251 110.406 49.161 110.600 49.145 110.678 49.161 110.872 49.236 111.067 49.326 111.261 49.341 111.339 49.356 111.552 49.400 111.746 49.400 111.941 49.430 112.094 49.430 112.154 49.490 112.348 49.535 112.542 49.535 112.639 49.505 112.833 49.595 113.028 49.700 113.144 49.848 113.319 49.967 113.513 49.998 113.572 50.072 113.767 50.131 113.958 50.235 114.152 50.235 114.174 50.279 114.368 50.250 114.562 50.250 114.775 50.205 114.910 50.161 115.007 50.013 115.202 49.998 115.220 49.923 115.377 49.908 115.571 49.908 115.590 49.878 115.746 49.952 115.941 49.998 116.075 50.028 116.270 49.998 116.348 49.952 116.542 49.834 116.736 49.745 116.931 49.670 117.125 49.625 117.319 49.625 117.376 49.595 117.570 49.535 117.764 49.520 117.842 49.505 117.883 49.611 118.077 49.729 118.271 49.819 118.484 49.923 118.581 49.952 118.757 49.982 118.970 49.982 119.123 49.998 119.183 50.146 119.358 50.191 119.358 50.309 119.377 50.368 119.183 50.517 119.280 50.576 119.299 50.723 119.493 50.871 119.552 50.959 119.590 51.106 119.765 51.253 119.822 51.268 119.822 51.326 119.922 51.472 119.997 51.501 120.019 51.647 120.116 51.750 120.310 51.866 120.504 51.953 120.696 52.025 120.717 52.184 120.774 52.330 120.639 52.431 120.696 52.575 120.601 52.618 120.407 52.575 120.210 52.733 120.057 52.834 120.232 52.935 120.367 53.064 120.561 53.207 120.755 53.207 120.796 53.278 120.990 53.264 121.203 53.321 121.397 53.321 121.494 53.378 121.688 53.422 121.902 53.407 122.036 53.450 122.231 53.436 122.444 53.450 122.638 53.450 122.757 53.478 122.970 53.492 123.164 53.549 123.358 53.549 123.552 53.492 123.725 53.464 123.922 53.349 124.116 53.364 124.213 53.235 124.405 53.193 124.599 53.135 124.774 53.178 124.987 53.193 125.028 53.178 125.222 53.107 125.416 53.050 125.610 53.007 125.707 52.863 125.861 52.762 125.999 52.618 125.999 52.561 126.174 52.417 126.328 52.258 126.425 52.243 126.368 52.127 126.560 51.982 126.465 51.967 126.484 51.822 126.600 51.677 126.716 51.530 126.832 51.384 126.929 51.340 126.891 51.179 126.910 51.135 126.929 50.988 127.026 50.959 127.067 50.812 127.221 50.664 127.318 50.590 127.377 50.443 127.318 50.294 127.377 50.250 127.493 50.205 127.609 50.057 127.512 49.998 127.512 49.848 127.533 49.700 127.706 49.625 127.803 49.595 127.960 49.535 128.154 49.535 128.348 49.581 128.542 49.565 128.639 49.581 128.755 49.460 128.931 49.341 129.144 49.371 129.279 49.416 129.494 49.386 129.551 49.266 129.745 49.161 129.823 49.161 129.842 49.055 129.920 48.995 130.018 48.875 130.212 48.890 130.406 48.860 130.619 48.875 130.638 48.724 130.600 48.557 130.638 48.482 130.776 48.331 130.832 48.331 130.854 48.164 130.757 48.026 130.735 47.874 130.929 47.722 130.951 47.676 131.067 47.676 131.105 47.737 131.318 47.737 131.512 47.692 131.706 47.676 131.784 47.676 131.978 47.692 132.173 47.737 132.367 47.707 132.523 47.859 132.677 47.981 132.871 48.011 132.931 48.103 133.125 48.103 133.319 48.073 133.513 48.119 133.570 48.255 133.764 48.255 133.977 48.331 134.077 48.346 134.231 48.391 134.425 48.376 134.444 48.361 134.581 48.270 134.757 48.119 134.697 47.950 134.600 47.890 134.678 47.813 134.697 47.661 134.735 47.539 134.638 47.432 134.444 47.340 134.250 47.325 134.193 47.171 134.212 47.094 134.212 47.033 134.134 46.879 134.055 46.848 134.055 46.694 134.036 46.632 134.018 46.602 133.958 46.540 133.920 46.369 133.939 46.230 133.861 46.075 133.745 45.966 133.689 45.872 133.532 45.716 133.473 45.607 133.454 45.576 133.435 45.514 133.241 45.420 133.144 45.263 133.125 45.107 133.106 45.028 132.968 45.060 132.852 45.091 132.658 45.185 132.270 45.232 132.076 45.232 132.016 45.247 131.997 45.279 131.803 45.216 131.784 45.060 131.609 44.997 131.512 44.934 131.318 44.918 131.123 44.855 131.007 44.698 131.105 44.556 131.164 44.398 131.202 44.382 131.202 44.303 131.239 44.145 131.280 44.034 131.280 44.018 131.261 43.859 131.239 43.700 131.221 43.541 131.202 43.477 131.299 43.317 131.299 43.158 131.239 43.014 131.123 42.853 131.045 42.869 130.854 42.821 130.735 42.789 130.541 42.612 130.619 42.564 130.638 42.420 130.619 ; #1619 13 69.996 109.513 69.888 109.435 69.779 109.260 69.779 109.046 69.844 108.852 69.834 108.658 69.855 108.445 69.855 108.251 69.680 107.862 69.670 107.668 69.648 107.552 69.615 107.358 69.593 107.145 69.539 106.951 69.516 106.756 69.550 106.562 69.539 106.406 69.429 106.193 69.319 106.271 69.197 106.446 69.065 106.619 68.943 106.794 68.821 106.910 68.519 106.910 68.396 106.891 68.283 106.891 68.149 106.910 68.025 106.891 67.844 106.891 67.696 106.854 67.583 106.835 67.457 106.835 67.343 106.813 67.331 106.813 67.274 106.619 67.262 106.406 67.182 106.212 67.079 106.017 67.056 105.980 67.033 105.785 67.021 105.591 66.941 105.785 66.906 105.980 66.894 106.077 66.837 106.055 66.721 106.193 66.593 106.252 66.488 106.328 66.384 106.133 66.267 106.155 66.151 106.212 66.104 106.387 65.986 106.484 65.868 106.503 65.751 106.484 65.657 106.503 65.609 106.697 65.538 106.756 65.514 106.951 65.384 106.854 65.396 106.659 65.301 106.446 65.241 106.465 65.134 106.271 65.050 106.055 64.943 106.115 64.823 106.017 64.751 105.842 64.619 105.767 64.498 105.804 64.510 106.017 64.402 106.212 64.438 106.406 64.450 106.619 64.486 106.697 64.414 106.910 64.342 107.104 64.269 107.299 64.269 107.493 64.281 107.512 64.245 107.706 64.184 107.900 64.221 108.038 ; #1620 13 37.210 -7.398 37.227 -7.398 37.261 -7.417 37.361 -7.437 37.530 -7.495 37.547 -7.515 37.597 -7.495 37.765 -7.379 37.932 -7.243 37.966 -7.243 37.999 -7.204 38.033 -6.990 38.200 -6.932 38.183 -7.087 38.217 -7.107 38.384 -7.243 38.434 -7.320 38.467 -7.301 38.484 -7.320 38.501 -7.301 38.667 -7.262 38.750 -7.204 38.834 -7.068 38.883 -7.029 38.917 -7.029 39.033 -6.951 39.033 -6.971 39.116 -7.029 39.099 -7.107 39.266 -7.243 39.283 -7.223 39.365 -7.301 39.464 -7.282 39.497 -7.379 39.663 -7.534 39.663 -7.048 39.679 -7.010 39.811 -6.971 39.827 -6.971 39.827 -6.932 39.992 -6.874 40.173 -7.010 40.256 -6.932 40.272 -6.854 40.436 -6.835 40.584 -6.815 40.763 -6.815 40.861 -6.796 40.993 -6.893 41.009 -6.913 41.025 -6.913 41.041 -6.815 41.204 -6.679 41.270 -6.485 41.302 -6.466 41.464 -6.291 41.480 -6.253 41.562 -6.194 41.676 -6.388 41.741 -6.544 41.903 -6.563 41.967 -6.757 41.951 -6.932 41.967 -6.971 41.983 -7.184 41.886 -7.204 41.822 -7.398 41.806 -7.417 41.886 -7.612 41.886 -7.806 41.870 -7.883 41.822 -8.039 41.822 -8.155 41.870 -8.175 41.870 -8.194 42.032 -8.077 42.145 -8.194 42.080 -8.388 42.064 -8.582 42.048 -8.641 41.951 -8.738 41.870 -8.874 41.627 -9.204 41.578 -9.262 41.480 -9.359 41.318 -9.553 41.286 -9.573 41.204 -9.650 40.894 -10.000 40.780 -10.116 40.420 -10.505 40.207 -10.738 39.992 -10.951 39.877 -11.087 39.811 -11.146 39.778 -11.204 39.696 -11.282 39.514 -11.475 39.332 -11.670 39.149 -11.864 38.967 -12.058 38.800 -12.252 38.734 -12.330 38.551 -12.524 38.350 -12.738 38.233 -12.873 38.049 -13.068 37.848 -13.262 37.664 -13.456 37.631 -13.495 37.411 -13.728 37.227 -13.942 37.075 -14.097 36.991 -14.194 36.788 -14.427 36.585 -14.640 36.398 -14.835 36.280 -14.951 36.025 -15.242 35.786 -15.495 35.735 -15.553 35.599 -15.689 35.514 -15.786 35.308 -16.000 35.120 -16.213 34.931 -16.407 34.897 -16.466 34.880 -16.466 34.794 -16.563 34.606 -16.757 34.416 -16.971 34.364 -17.029 34.312 -17.068 33.985 -17.437 33.968 -17.437 33.932 -17.495 33.881 -17.553 33.656 -17.786 33.431 -18.019 33.222 -18.252 32.997 -18.485 29.993 -18.485 27.076 -18.485 27.005 -18.291 27.005 -13.437 ; #1621 13 52.098 -7.495 49.998 -7.495 44.997 -7.495 43.716 -7.495 ; #1622 13 58.024 7.514 55.002 7.514 53.677 7.514 ; #1623 13 54.469 19.631 54.455 19.669 54.441 19.805 54.427 19.864 54.427 19.903 54.413 20.019 54.413 20.038 54.399 20.233 54.399 20.349 54.385 20.543 54.371 20.621 54.357 20.679 54.357 20.951 54.342 21.145 54.328 21.301 54.328 22.174 54.342 22.369 54.342 22.563 54.357 22.757 54.357 22.796 54.385 22.990 54.314 23.145 54.258 23.242 54.174 23.436 54.088 23.514 53.947 23.514 53.806 23.553 53.720 23.592 53.691 23.592 53.606 23.631 53.535 23.669 53.521 23.669 53.378 23.767 53.278 23.825 53.121 23.922 53.092 23.883 52.949 23.941 52.776 23.941 52.662 23.864 52.546 23.475 52.503 23.398 52.474 23.378 52.460 23.359 52.359 23.242 52.287 23.184 52.200 23.378 52.141 23.514 52.112 23.592 52.083 23.650 52.069 23.650 52.040 23.669 51.895 23.631 51.764 23.611 51.764 23.592 51.647 23.553 51.545 23.572 51.530 23.611 51.384 23.689 51.268 23.708 51.179 23.805 51.179 23.825 51.032 23.922 50.988 23.941 50.856 24.136 50.856 24.155 50.782 23.961 50.635 24.116 50.576 24.116 50.517 24.097 50.399 23.903 50.368 23.708 50.279 23.631 50.265 23.592 50.235 23.553 50.235 23.534 50.117 23.339 50.102 23.320 49.998 23.184 49.952 23.126 49.804 22.971 49.789 22.951 49.774 22.912 49.700 22.835 49.685 22.815 49.581 22.699 49.475 22.699 49.326 22.757 49.221 22.738 49.070 22.874 49.010 22.893 49.040 22.699 49.085 22.563 48.920 22.446 48.800 22.407 48.648 22.271 48.557 22.174 48.437 22.155 48.406 22.155 48.406 22.174 48.406 22.194 48.376 22.271 48.361 22.271 48.240 22.466 48.240 22.524 48.164 22.602 48.103 22.640 48.103 22.835 48.088 22.854 47.950 22.912 47.829 22.718 47.783 22.524 47.752 22.446 47.692 22.252 47.600 22.194 47.569 22.136 47.524 22.038 47.493 22.019 47.217 21.844 47.140 21.805 47.125 21.805 47.017 21.669 46.863 21.611 46.771 21.514 46.756 21.495 46.679 21.495 46.617 21.339 46.462 21.301 46.415 21.262 46.261 21.107 46.261 20.815 46.168 20.738 46.152 20.718 46.152 20.699 46.183 20.505 46.152 20.291 46.121 20.271 46.059 20.330 45.966 20.388 45.904 20.602 45.888 20.621 45.794 20.679 45.763 20.718 45.670 20.815 45.576 20.796 45.530 20.835 45.498 20.796 45.467 20.854 45.436 20.874 45.310 21.048 45.247 21.242 45.232 21.262 45.232 21.301 45.185 21.475 45.028 21.437 44.997 21.378 44.966 21.417 44.902 21.572 44.823 21.378 44.776 21.417 44.776 21.514 44.729 21.631 44.713 21.631 44.666 21.689 44.651 21.844 44.603 22.038 44.572 22.038 44.525 22.097 44.603 22.291 44.682 22.388 44.635 22.582 44.556 22.776 44.525 22.699 44.540 22.660 44.461 22.466 44.429 22.505 44.382 22.524 44.303 22.602 44.303 22.621 44.224 22.699 44.145 22.621 44.050 22.543 44.018 22.466 43.859 22.407 43.780 22.388 43.700 22.427 43.589 22.505 43.557 22.505 43.397 22.699 43.365 22.776 43.206 22.951 43.190 23.009 43.158 23.009 42.998 22.854 42.869 22.679 42.885 22.640 42.853 22.524 42.821 22.446 42.805 22.466 42.564 22.466 42.420 22.543 42.323 22.369 42.225 22.466 42.161 22.524 42.129 22.582 42.064 22.699 41.983 22.893 41.870 22.912 41.789 22.971 41.692 23.009 41.513 22.971 41.383 22.971 41.334 22.951 41.334 22.893 41.318 22.776 41.237 22.776 41.172 22.757 41.156 22.757 41.139 22.563 41.139 22.543 41.123 22.524 41.139 22.349 41.172 22.213 41.139 22.116 41.091 21.922 41.074 21.922 40.928 21.805 40.894 21.669 40.910 21.475 40.910 21.437 40.878 21.242 40.861 21.145 40.861 21.126 40.861 20.990 40.796 20.990 40.698 21.048 40.600 21.048 40.518 20.990 40.436 20.796 40.338 20.776 40.256 20.718 40.091 20.640 40.074 20.602 40.074 20.466 39.992 20.407 39.893 20.369 39.811 20.427 39.811 20.310 39.646 20.233 39.679 20.116 39.696 20.019 ; #1624 13 59.481 28.019 59.388 28.194 59.349 28.194 59.297 28.096 59.270 27.883 59.165 27.864 59.126 27.825 58.994 27.747 58.941 27.611 58.875 27.495 58.730 27.456 58.597 27.495 58.464 27.534 58.424 27.553 58.278 27.475 58.145 27.553 58.010 27.670 58.010 27.689 57.970 27.689 57.836 27.670 57.823 27.611 57.783 27.534 57.648 27.417 57.541 27.378 57.527 27.475 57.392 27.670 57.325 27.825 57.189 27.864 57.149 27.825 57.134 27.767 56.999 27.747 56.863 27.650 56.850 27.650 56.863 27.767 56.877 27.844 56.741 27.903 56.604 28.019 56.604 28.038 56.467 28.174 56.399 28.194 56.385 28.194 56.234 28.232 56.152 28.174 56.083 28.291 56.056 28.310 56.056 28.368 56.097 28.563 56.042 28.718 55.986 28.718 55.959 28.737 56.000 28.932 56.028 29.145 56.000 29.223 55.959 29.417 55.835 29.398 55.752 29.398 55.738 29.592 55.780 29.786 55.780 29.825 55.849 29.961 55.849 30.019 55.835 30.097 55.849 30.271 55.821 30.368 55.821 30.407 55.752 30.543 55.656 30.737 55.599 30.815 55.599 30.932 55.475 30.912 55.447 30.912 55.309 30.834 55.169 30.970 55.030 31.029 55.002 30.951 54.988 30.970 54.974 30.970 54.946 30.873 54.932 30.834 54.778 30.834 54.694 31.029 54.666 31.029 54.596 31.184 54.455 31.203 54.342 31.320 54.202 31.456 54.188 31.456 54.116 31.670 54.060 31.863 54.003 31.883 53.947 31.863 53.806 31.766 53.776 31.883 53.806 32.097 53.762 32.291 53.762 32.349 53.720 32.427 53.677 32.524 53.521 32.563 53.436 32.757 53.306 32.601 53.278 32.485 53.135 32.330 53.135 32.271 53.107 32.194 53.107 31.999 53.135 31.805 53.193 31.786 53.193 31.592 53.121 31.378 53.064 31.339 52.921 31.398 52.834 31.553 52.690 31.514 52.618 31.572 52.474 31.611 52.445 31.611 52.315 31.592 52.170 31.786 52.112 31.786 52.054 31.999 52.069 32.194 52.083 32.252 52.229 32.368 52.243 32.388 52.330 32.388 52.315 32.582 52.258 32.757 52.258 32.951 52.330 33.145 52.359 33.203 52.373 33.261 52.359 33.436 52.359 33.494 52.330 33.533 52.287 33.553 52.373 33.747 52.287 33.941 52.258 33.961 52.214 34.038 52.069 34.077 51.953 34.194 51.866 34.330 51.837 34.388 51.691 34.213 51.691 34.174 51.647 34.116 51.574 34.194 51.428 34.252 51.370 34.291 51.370 34.310 51.268 34.252 51.253 34.252 51.253 34.504 51.179 34.699 51.193 34.893 51.209 34.951 51.224 35.009 51.149 35.126 51.062 35.320 50.988 35.300 50.959 35.320 50.812 35.397 50.738 35.475 50.590 35.436 50.472 35.514 50.428 35.592 50.353 35.708 50.428 35.863 50.428 36.058 50.353 36.232 50.279 36.310 50.294 36.504 50.250 36.679 50.309 36.815 50.324 36.854 50.339 36.951 50.339 37.126 50.428 37.320 50.353 37.514 50.191 37.650 50.057 37.844 50.028 37.941 49.998 37.961 49.982 37.980 49.908 38.038 49.998 38.213 50.013 38.194 49.998 38.368 49.952 38.562 49.893 38.757 49.804 38.951 49.878 39.145 49.878 39.203 49.729 39.397 49.729 39.572 49.595 39.708 49.550 39.902 49.595 39.999 49.611 40.019 ; #1625 13 55.918 53.650 55.890 53.786 55.876 53.902 55.780 53.980 55.780 54.116 55.627 54.193 55.544 53.999 55.475 53.960 55.336 53.766 55.197 53.591 55.211 53.378 55.155 53.222 55.141 53.145 55.085 53.222 55.071 53.222 55.058 53.281 55.030 53.281 55.016 53.300 55.002 53.320 55.002 53.417 54.876 53.533 54.834 53.611 54.736 53.611 54.638 53.553 54.497 53.436 54.483 53.436 54.342 53.358 54.202 53.436 54.046 53.475 54.074 53.261 54.074 53.067 54.144 53.028 54.286 53.125 54.342 53.048 54.314 53.009 54.272 52.931 54.357 52.737 54.357 52.601 54.371 52.582 54.371 52.543 54.455 52.504 54.483 52.446 54.441 52.252 54.413 52.057 54.540 51.922 54.554 51.727 54.638 51.533 54.680 51.397 54.638 51.320 54.568 51.106 54.413 51.009 54.399 50.970 54.399 50.776 54.413 50.776 54.357 50.562 54.342 50.543 54.455 50.349 54.497 50.155 54.511 50.096 54.511 50.019 54.525 49.960 54.568 49.766 54.568 49.572 54.708 49.514 54.736 49.514 54.876 49.320 54.792 49.145 54.736 48.951 54.666 48.873 54.652 48.834 54.652 48.640 54.624 48.485 54.680 48.291 54.736 48.193 54.764 48.096 54.764 48.077 54.638 47.883 54.694 47.747 54.554 47.650 54.525 47.455 54.652 47.300 54.680 47.261 54.680 47.048 54.624 46.853 54.680 46.757 54.736 46.562 54.750 46.562 54.778 46.446 54.624 46.524 54.497 46.504 54.413 46.562 54.385 46.737 54.258 46.543 54.188 46.349 54.159 46.155 54.159 46.135 54.074 45.922 53.989 45.824 54.003 46.019 53.933 46.213 53.890 46.232 53.876 46.213 53.734 46.368 53.592 46.485 53.549 46.504 53.436 46.698 53.349 46.912 53.264 46.951 53.135 46.970 53.121 46.951 52.964 46.931 52.819 46.989 52.719 46.853 52.618 46.834 52.662 46.640 52.690 46.446 52.618 46.252 52.518 46.038 52.431 45.883 52.474 45.727 52.474 45.533 52.417 45.359 52.417 45.145 52.344 45.009 52.373 44.931 52.474 44.737 52.503 44.543 52.417 44.465 52.330 44.271 52.344 44.057 52.402 43.883 52.417 43.689 52.417 43.553 52.388 43.417 52.460 43.262 52.402 43.087 52.373 42.931 52.229 42.854 52.098 42.757 51.953 42.698 51.793 42.640 51.750 42.582 51.603 42.504 51.545 42.582 51.530 42.621 51.428 42.815 51.399 42.854 51.384 42.873 51.224 42.893 51.238 42.679 51.164 42.485 51.135 42.290 51.135 42.193 51.164 42.077 51.209 41.980 51.076 41.786 51.018 41.747 50.959 41.572 50.827 41.378 50.782 41.184 50.767 41.184 50.752 41.203 50.635 41.397 50.487 41.436 50.368 41.514 50.220 41.378 50.146 41.436 49.998 41.592 49.923 41.786 49.834 41.980 49.715 42.174 49.595 42.135 49.550 42.135 49.400 42.057 49.251 42.038 49.145 42.193 49.055 42.407 48.995 42.601 48.875 42.679 48.724 42.679 48.618 42.718 48.527 42.562 48.512 42.427 48.482 42.232 48.391 42.077 48.240 42.057 48.088 42.038 48.026 42.135 48.011 42.290 48.026 42.485 47.890 42.679 47.859 42.737 47.813 42.757 47.752 42.776 47.600 42.893 47.569 43.087 47.569 43.106 47.448 43.320 47.478 43.514 47.448 43.689 47.478 43.747 47.630 43.689 47.768 43.883 47.783 43.999 47.890 44.193 47.874 44.349 48.026 44.485 48.179 44.310 48.255 44.349 48.210 44.543 48.058 44.582 48.088 44.698 48.103 44.892 48.194 45.009 48.134 45.126 48.103 45.320 48.042 45.475 48.026 45.669 47.950 45.727 47.798 45.805 47.630 45.941 47.508 46.096 47.448 46.291 47.493 46.504 47.524 46.543 47.600 46.640 47.615 46.660 47.615 46.679 47.539 46.776 47.524 46.737 47.524 46.718 47.493 46.679 47.478 46.640 47.478 46.621 47.463 46.582 47.448 46.543 47.432 46.524 47.417 46.524 47.386 46.543 47.325 46.562 47.310 46.582 47.278 46.601 47.125 46.718 46.986 46.912 46.848 47.106 46.709 47.164 46.602 46.970 46.431 46.912 46.431 46.718 46.307 46.524 46.291 46.504 46.261 46.660 46.245 46.873 46.090 46.931 46.121 47.145 46.121 47.164 45.997 47.086 45.982 47.086 45.904 47.028 45.747 46.951 45.576 46.912 45.607 47.125 45.638 47.320 45.576 47.494 ; #1626 13 57.244 76.116 57.392 76.000 57.527 75.784 57.648 75.592 57.783 75.592 57.930 75.571 58.010 75.377 58.077 75.164 58.090 75.145 58.238 75.223 58.385 75.164 58.477 75.377 58.557 75.164 58.583 75.126 58.531 75.007 58.424 74.834 58.318 74.640 58.291 74.621 58.238 74.427 58.132 74.211 58.132 73.998 58.145 73.785 58.145 73.143 58.090 72.949 58.037 72.949 58.010 72.758 58.010 72.542 58.024 72.329 58.050 72.116 58.117 71.921 58.104 71.708 58.077 71.514 58.077 71.455 58.117 71.261 58.265 71.242 58.398 71.301 58.504 71.107 58.531 71.066 58.517 70.872 58.371 70.756 58.238 70.659 58.090 70.562 57.943 70.446 57.836 70.465 57.823 70.446 57.675 70.581 57.581 70.600 57.595 70.659 57.460 70.543 57.325 70.484 57.271 70.640 57.189 70.718 57.325 70.834 57.352 71.029 57.217 71.126 57.203 71.164 57.080 71.377 56.985 71.571 56.850 71.689 56.822 71.689 56.713 71.493 56.686 71.279 56.713 71.066 56.563 71.107 56.494 70.988 56.467 70.794 56.330 70.891 56.193 70.816 56.166 70.834 56.097 70.910 55.959 70.853 55.890 70.640 55.807 70.640 55.669 70.562 55.613 70.756 55.489 70.562 55.350 70.523 55.295 70.484 55.224 70.426 55.141 70.232 55.211 70.018 55.309 69.805 55.350 69.610 55.392 69.397 55.392 69.358 55.378 69.339 55.406 69.125 55.295 68.931 55.364 68.756 55.364 68.737 55.224 68.659 55.197 68.465 55.197 68.251 55.127 68.232 55.071 68.348 55.002 68.251 55.002 68.232 54.960 68.154 54.974 67.960 54.889 67.766 54.848 67.591 54.848 67.397 54.806 67.203 54.778 66.989 54.778 66.931 54.722 66.717 54.722 66.523 54.680 66.329 54.638 66.116 54.624 66.038 54.666 65.843 54.624 65.650 54.596 65.494 54.540 65.281 54.399 65.222 54.328 65.086 54.399 65.009 54.357 64.814 54.342 64.795 54.385 64.620 54.342 64.407 54.314 64.212 54.314 64.018 54.258 64.018 54.202 63.921 54.202 63.902 54.244 63.688 54.202 63.494 54.188 63.339 54.102 63.145 54.088 62.931 54.088 62.737 54.046 62.601 53.905 62.582 54.032 62.387 54.018 62.193 53.947 61.980 53.989 61.785 54.003 61.708 54.003 61.533 54.074 61.339 53.919 61.261 53.961 61.048 53.890 61.009 53.876 61.125 53.776 61.203 53.663 60.989 53.592 61.145 53.549 61.358 53.592 61.552 53.450 61.455 53.507 61.300 53.364 61.164 53.278 61.358 53.221 61.572 53.221 61.591 53.178 61.785 53.150 61.980 53.007 62.135 52.949 61.941 52.978 61.747 53.007 61.533 52.992 61.339 52.992 61.145 52.848 60.950 52.748 60.756 52.633 60.756 52.503 60.970 52.344 61.067 52.315 61.028 52.229 60.834 52.155 60.640 52.112 60.426 51.996 60.232 51.996 60.038 51.953 60.018 51.880 60.213 51.822 60.426 51.721 60.446 51.618 60.620 51.618 60.950 51.472 61.125 51.443 61.319 51.428 61.514 51.282 61.630 51.268 61.708 51.268 61.727 51.179 61.921 51.091 61.999 51.135 62.193 50.974 62.232 50.856 62.446 50.856 62.407 50.708 62.213 50.708 62.193 50.708 62.407 50.561 62.465 50.413 62.562 50.294 62.698 50.146 62.814 49.998 62.950 49.952 62.931 49.938 62.737 49.774 62.601 49.625 62.465 49.490 62.310 49.341 62.485 49.176 62.446 49.176 62.485 49.025 62.562 48.920 62.717 48.905 62.756 48.875 62.931 48.830 63.125 48.679 63.106 48.679 63.125 48.648 63.222 48.588 63.416 48.512 63.611 48.467 63.747 48.316 63.902 48.149 64.018 48.073 64.076 47.920 64.251 47.890 64.310 47.768 64.096 47.661 63.902 47.554 63.688 47.463 63.475 47.371 63.281 47.247 63.067 47.140 62.873 ; #1627 13 50.057 95.007 50.043 95.007 50.057 94.988 50.057 94.794 50.087 94.600 50.220 94.406 50.517 94.328 50.576 94.252 50.576 93.823 50.590 93.629 50.620 93.416 50.605 93.222 50.635 93.027 50.664 92.990 50.797 92.990 50.723 92.795 50.752 92.601 50.767 92.580 50.871 92.388 50.723 92.270 50.694 92.075 50.708 92.038 50.708 91.843 50.605 91.649 50.472 91.455 50.458 91.261 50.458 91.242 50.428 91.048 50.309 90.853 50.205 90.659 50.220 90.619 50.191 90.425 50.117 90.230 49.998 90.039 49.982 90.017 49.952 89.823 49.908 89.650 49.759 89.745 49.670 89.553 49.640 89.456 49.640 89.262 49.490 89.125 49.460 89.027 49.445 88.833 49.505 88.658 49.475 88.464 49.460 88.269 49.311 88.172 49.176 87.978 49.176 87.862 49.145 87.649 49.070 87.455 49.085 87.358 49.130 87.164 49.100 86.969 48.995 86.775 48.995 86.756 48.845 86.835 48.694 86.756 48.557 86.621 48.497 86.425 48.421 86.211 48.437 86.017 48.421 85.961 48.376 85.766 48.225 85.688 48.073 85.610 48.026 85.591 47.996 85.591 47.966 85.572 47.813 85.591 47.661 85.629 47.493 85.629 47.340 85.707 47.186 85.591 47.125 85.572 47.048 85.378 46.986 85.184 46.910 85.009 46.833 84.814 46.986 84.717 46.971 84.523 47.002 84.329 46.971 84.135 46.986 84.019 47.017 83.824 47.048 83.611 47.140 83.417 47.201 83.223 47.217 83.204 47.063 83.029 46.894 82.988 46.848 82.951 46.709 82.872 46.555 82.816 46.478 82.775 46.322 82.697 46.168 82.581 46.013 82.562 45.997 82.562 45.841 82.503 45.685 82.387 45.576 82.327 45.545 82.327 45.483 82.522 45.310 82.678 45.232 82.640 45.201 82.640 45.169 82.600 45.185 82.406 45.216 82.211 45.154 82.017 45.294 81.823 45.326 81.629 45.279 81.475 45.232 81.281 45.169 81.087 45.122 80.874 45.138 80.717 45.107 80.523 45.044 80.329 45.028 80.116 44.997 80.056 44.981 80.019 ; #1628 13 59.989 146.657 59.924 146.851 59.937 147.064 59.807 147.124 59.741 147.164 59.611 147.142 59.468 147.124 59.388 146.929 59.362 146.910 57.997 146.910 54.770 146.773 45.232 145.872 ; #1629 13 51.384 157.513 49.998 157.513 49.998 160.016 49.998 165.511 50.117 165.745 50.265 165.958 50.413 166.190 50.561 166.406 50.590 166.463 50.752 166.698 50.842 166.832 50.974 167.027 51.120 167.221 51.209 167.356 51.370 167.609 51.545 167.841 51.677 168.057 51.735 168.114 51.895 168.367 51.982 168.502 52.025 168.561 52.170 168.774 52.301 168.969 52.388 169.103 52.532 169.317 52.762 169.629 52.863 169.783 52.877 169.824 52.935 169.899 53.021 170.018 ; #1630 13 54.003 171.453 54.003 179.531 54.003 -169.362 49.998 -169.362 49.998 176.230 ; #1631 13 51.793 172.521 49.998 172.521 46.261 172.521 39.992 172.521 20.005 172.521 20.005 160.016 0.000 160.016 -1.495 160.016 -1.495 169.028 -1.495 170.018 -1.495 172.521 -20.005 172.521 -30.010 172.521 -30.205 172.367 -30.400 172.211 -30.612 172.076 -30.807 171.919 -30.842 171.901 -31.036 171.744 -31.230 171.590 -31.440 171.453 -31.634 171.299 -31.827 171.143 -31.862 171.124 -32.054 170.967 -32.439 170.698 -32.771 170.444 -32.875 170.366 -33.118 170.190 -33.188 170.134 -33.397 169.977 -33.518 169.880 -33.725 169.727 -33.915 169.589 -34.071 169.473 -34.123 169.414 -34.261 169.338 -34.467 169.163 -34.570 169.085 -34.708 168.987 -34.897 168.853 -34.966 168.793 -35.085 168.715 -35.291 168.561 -35.478 168.405 -35.701 168.251 -35.923 168.076 -36.144 167.919 -36.364 167.744 -36.551 167.609 -36.923 167.337 -37.109 167.183 -37.411 166.948 -37.547 166.870 -37.732 166.735 -37.898 166.600 -38.033 166.503 -38.434 166.190 -38.634 166.056 -38.817 165.899 -39.016 165.764 -39.216 165.608 -39.415 165.454 -39.613 165.319 -39.811 165.163 -40.008 165.028 -49.998 165.028 -52.848 165.028 -53.007 165.085 -53.007 172.521 -90.000 172.521 ; #1632 13 46.121 33.630 46.137 33.669 46.168 33.650 46.230 33.650 46.214 33.689 46.183 33.883 46.106 34.077 46.090 34.135 46.059 34.330 45.950 34.485 45.982 34.582 45.904 34.776 45.763 34.893 45.732 34.970 45.747 34.990 ; #1633 13 48.800 40.019 48.815 39.824 48.664 39.708 48.633 39.689 48.588 39.689 48.512 39.883 48.376 39.922 48.361 39.941 48.331 39.863 48.300 39.902 48.285 39.922 48.285 39.960 48.300 39.980 48.300 40.019 ; #1634 13 48.240 40.019 48.225 39.999 48.073 39.863 48.058 39.883 47.996 39.805 47.844 39.805 47.844 39.126 47.859 39.048 47.859 38.873 47.707 38.776 47.692 38.698 47.676 38.679 47.630 38.485 47.508 38.290 47.356 38.252 47.247 38.310 47.155 38.232 47.109 38.252 ; #1635 13 49.145 40.019 49.040 39.805 48.965 39.728 48.905 39.786 48.860 39.980 48.875 40.019 ; #1636 13 -10.716 142.522 -10.005 142.522 -9.947 142.290 -9.947 142.231 -9.890 141.999 -9.870 141.861 -9.813 141.610 -9.697 141.103 -9.678 141.028 -6.901 141.028 -6.708 140.871 -6.553 140.931 -6.360 140.987 -6.341 141.028 -2.601 141.028 -2.485 141.028 -2.388 141.084 -2.232 141.163 -2.155 141.222 -2.058 141.279 -1.902 141.376 -1.437 141.648 -1.320 141.726 -1.087 141.861 -1.029 141.902 -0.970 141.939 -0.582 142.171 -0.388 142.290 0.000 142.522 5.277 142.522 5.490 142.425 5.490 140.016 5.490 136.192 5.741 136.016 11.752 136.016 18.826 136.016 20.005 136.016 28.996 136.016 28.996 142.503 29.050 142.522 29.993 142.522 39.398 142.522 39.992 142.522 40.091 142.657 40.239 142.873 40.371 143.086 40.665 143.512 40.796 143.706 40.928 143.900 41.009 144.038 41.074 144.135 41.107 144.192 41.545 144.834 41.676 145.047 42.258 145.902 42.420 146.134 42.516 146.290 42.564 146.347 42.709 146.600 42.869 146.832 43.030 147.064 43.062 147.105 43.222 147.358 43.270 147.434 43.429 147.668 43.573 147.881 43.732 148.113 43.875 148.348 44.034 148.561 44.082 148.639 44.240 148.871 44.398 149.103 44.556 149.338 44.588 149.395 44.761 149.667 44.918 149.880 44.997 150.018 45.154 150.250 45.279 150.425 45.436 150.657 45.576 150.892 45.732 151.124 45.763 151.164 45.904 151.377 46.059 151.609 46.152 151.747 46.199 151.822 46.431 152.173 46.694 152.561 46.848 152.793 47.017 153.047 47.171 153.279 47.201 153.319 47.340 153.532 47.478 153.726 47.554 153.861 47.722 154.096 47.874 154.328 47.981 154.482 48.164 154.776 48.467 155.221 48.573 155.377 48.709 155.571 48.845 155.784 48.965 155.979 49.100 156.173 49.236 156.386 49.371 156.580 49.505 156.774 49.640 156.987 49.774 157.182 49.908 157.395 49.998 157.513 29.993 157.513 20.005 157.513 10.159 157.513 10.005 157.298 10.005 153.921 0.350 153.921 0.000 153.940 0.000 157.513 -5.838 157.513 -5.934 157.316 -6.050 157.125 -6.109 157.006 -6.225 156.812 -6.264 156.737 -6.341 156.599 -6.399 156.502 -6.437 156.424 -6.553 156.229 -6.592 156.154 -6.785 155.998 -6.843 155.960 -6.843 155.938 -6.901 155.766 -6.920 155.687 -7.017 155.493 -7.075 155.396 -7.094 155.356 -7.152 155.261 -7.210 155.183 -7.229 155.142 -7.268 155.045 -7.287 155.008 -7.345 155.067 -7.423 155.164 -7.519 155.280 -7.539 155.280 -7.655 155.415 -7.828 155.609 -7.848 155.650 -7.905 155.725 -8.060 155.882 -8.079 155.900 -8.118 155.938 -8.233 156.076 -8.426 156.308 -8.465 156.327 -8.484 156.367 -8.503 156.386 -8.542 156.445 -8.580 156.483 -8.638 156.542 -8.715 156.618 -8.811 156.737 -8.946 156.890 -8.985 156.931 -9.004 156.950 -9.062 157.006 -9.254 157.241 -9.466 157.473 -9.505 157.513 -10.005 157.513 -20.005 157.513 -30.010 157.513 -40.008 157.513 -49.998 157.513 -90.000 157.513 ; #1637 13 42.564 146.347 42.741 146.231 42.949 146.115 43.046 146.055 43.158 145.977 43.254 145.921 43.286 145.902 43.317 145.902 43.461 145.764 43.525 145.648 43.637 145.435 43.732 145.376 43.906 145.357 43.938 145.376 44.034 145.454 44.050 145.473 44.382 145.589 44.603 145.667 44.761 145.707 45.075 145.823 45.232 145.880 45.263 145.648 45.294 145.395 45.310 145.260 45.326 145.047 45.357 144.834 45.373 144.755 45.388 144.523 45.405 144.464 45.420 144.229 45.483 143.765 45.483 143.668 45.514 143.434 45.545 143.221 45.561 142.989 45.592 142.754 45.623 142.541 45.638 142.309 45.654 142.231 45.670 142.037 45.685 141.939 45.716 141.745 45.779 141.513 45.825 141.357 45.904 141.125 45.919 141.066 45.997 140.852 45.888 140.774 45.841 140.715 45.670 140.580 45.514 140.445 45.341 140.308 45.169 140.173 45.013 140.038 44.997 140.016 44.934 139.960 44.839 139.844 44.666 139.649 44.619 139.590 44.382 139.299 44.350 139.280 44.224 139.124 44.050 138.910 43.859 138.716 43.685 138.503 43.509 138.309 43.429 138.231 43.317 138.096 43.126 137.861 42.773 137.473 42.612 137.260 42.436 137.065 42.307 136.912 42.307 134.757 42.290 134.522 42.290 130.716 42.420 130.619 42.532 130.541 42.564 130.541 42.612 130.387 42.709 130.271 42.725 130.271 42.773 130.250 42.885 130.271 42.901 130.212 42.965 130.018 42.965 129.883 42.869 129.842 42.693 129.764 42.596 129.764 42.436 129.667 42.404 129.570 42.404 129.513 42.404 129.319 42.387 129.300 42.371 129.279 42.209 129.222 42.096 129.028 42.032 128.871 42.016 128.677 42.000 128.464 42.016 128.464 42.032 128.308 42.032 128.270 41.983 128.076 41.854 128.094 41.725 128.173 41.708 128.173 41.562 128.308 41.400 128.210 41.432 128.038 41.448 128.016 41.448 127.941 41.416 127.844 41.416 127.649 41.448 127.436 41.497 127.280 41.644 127.067 41.789 126.910 41.773 126.891 41.676 126.697 41.660 126.619 41.497 126.581 41.448 126.522 41.432 126.522 41.318 126.425 41.156 126.290 41.139 126.271 41.009 126.115 40.993 126.115 40.894 125.920 40.861 125.726 40.747 125.629 40.649 125.435 40.633 125.357 40.600 125.222 40.453 125.028 40.453 124.968 40.436 124.871 40.289 124.677 40.173 124.483 40.107 124.405 40.091 124.405 40.091 124.386 39.992 124.386 39.827 124.173 39.646 124.192 29.993 124.192 27.184 124.192 27.005 124.116 27.005 122.619 26.914 122.522 23.138 122.522 22.991 122.581 22.991 127.436 22.936 127.512 20.005 127.512 14.995 127.512 12.498 127.512 10.005 127.512 2.446 127.512 2.388 127.455 1.961 127.105 1.747 126.951 1.534 126.775 1.320 126.600 1.165 126.465 0.971 126.309 0.602 125.999 0.388 125.823 0.136 125.629 0.000 125.513 -0.155 125.397 -0.350 125.222 -0.544 125.065 -0.796 124.871 -0.990 124.699 -1.048 124.658 -1.320 124.445 -1.437 124.329 -1.476 124.310 -1.534 124.251 -1.573 124.232 -1.786 124.135 -1.980 124.173 -2.135 124.192 -2.213 124.213 -2.251 124.213 -2.329 124.232 -2.466 124.251 -2.563 124.270 -2.718 124.310 -2.950 124.348 -3.183 124.386 -3.338 124.405 -3.551 124.445 -3.706 124.483 -3.843 124.502 -4.017 124.542 -4.269 124.580 -4.521 124.620 -4.773 124.677 -5.024 124.717 -5.140 124.736 -5.218 124.755 -5.412 124.793 -5.509 124.793 -5.528 124.815 -5.721 124.852 -5.895 124.871 -6.128 124.912 -6.186 124.931 -6.264 124.931 -6.476 124.987 -6.553 124.987 -6.669 125.009 -6.747 125.028 -6.959 125.065 -7.133 125.106 -7.365 125.144 -7.519 125.163 -7.577 125.181 -7.655 125.181 -7.905 125.241 -8.041 125.260 -8.253 125.300 -8.272 125.300 -8.349 125.319 -8.407 125.319 -8.426 125.338 -8.445 125.338 -8.426 125.357 -8.426 125.435 -8.407 125.648 -8.388 125.804 -8.349 126.036 -8.330 126.271 -8.311 126.444 -8.233 126.910 -8.233 126.929 -8.214 127.086 -8.214 127.202 -8.176 127.436 -8.195 127.512 -10.005 127.512 -14.062 127.512 ; #1638 13 41.529 41.553 41.513 41.572 41.464 41.747 41.432 41.844 41.497 41.941 41.497 42.135 41.480 42.329 41.448 42.524 41.578 42.601 41.578 42.621 41.594 42.640 41.578 42.834 41.578 42.854 41.513 42.795 41.497 42.912 41.400 43.028 41.302 43.223 41.253 43.184 41.237 43.223 41.188 43.242 41.172 43.281 41.107 43.475 40.977 43.630 40.812 43.728 40.796 43.747 40.731 43.766 40.682 43.766 40.649 43.747 40.551 43.669 40.403 43.630 40.239 43.708 40.124 43.669 40.058 43.844 40.041 43.883 40.008 44.077 40.025 44.193 40.041 44.271 40.008 44.388 39.992 44.407 39.976 44.485 39.877 44.562 39.728 44.757 39.712 44.795 39.630 44.834 ; #1639 13 43.429 40.019 43.589 40.232 43.541 40.426 43.509 40.562 43.541 40.698 43.461 40.912 43.381 41.106 43.349 41.281 43.222 41.669 43.206 41.864 43.206 41.902 43.190 42.096 43.190 42.116 43.238 42.310 43.238 42.368 43.174 42.562 43.174 42.776 43.126 42.970 42.965 43.164 42.901 43.358 42.901 43.397 42.853 43.611 42.757 43.805 42.709 43.825 42.645 43.747 42.564 43.941 42.612 44.116 42.629 44.193 42.709 44.407 42.757 44.601 42.757 44.640 42.741 44.659 42.709 44.854 42.725 45.009 42.612 45.281 42.548 45.475 42.532 45.650 42.484 45.766 42.307 45.708 42.145 45.786 42.096 45.941 41.983 46.135 41.935 46.329 41.903 46.465 41.822 46.660 41.741 46.853 41.725 46.893 41.562 47.048 41.448 47.242 41.432 47.261 41.270 47.378 41.221 47.572 41.204 47.747 41.318 47.941 41.480 48.096 41.480 48.135 41.562 48.349 41.594 48.426 41.627 48.446 41.789 48.562 41.822 48.582 41.854 48.601 ; #1640 13 42.420 66.077 42.420 66.057 42.242 66.038 42.080 66.038 42.000 66.154 42.000 66.348 41.854 66.562 41.676 66.581 41.513 66.640 41.334 66.679 41.156 66.776 41.139 66.989 41.139 67.203 41.156 67.300 41.156 67.514 41.188 67.708 41.172 67.902 41.188 67.921 41.188 67.941 41.172 67.960 41.058 68.154 40.944 68.154 40.910 68.135 40.878 68.115 40.812 68.018 40.698 68.232 40.682 68.271 40.616 68.445 40.600 68.465 40.616 68.659 40.796 68.601 40.812 68.601 40.845 68.581 40.944 68.659 40.993 68.737 41.091 68.834 41.123 68.892 41.270 69.086 41.432 69.183 41.480 69.358 41.562 69.455 41.644 69.610 41.708 69.824 41.773 70.018 41.903 70.212 42.064 70.387 42.080 70.446 42.016 70.640 42.177 70.756 42.225 70.932 42.258 70.988 42.258 71.182 42.209 71.279 42.096 71.085 42.048 70.891 41.951 70.872 41.886 70.678 41.725 70.484 41.660 70.368 41.513 70.212 41.480 70.407 41.416 70.484 41.480 70.678 41.302 70.794 41.253 70.872 41.188 71.066 41.188 71.279 41.123 71.301 41.123 71.417 41.188 71.455 41.351 71.455 41.367 71.649 41.545 71.649 41.432 71.708 41.464 71.787 41.351 71.881 41.204 72.000 41.204 72.172 41.188 72.194 41.172 72.213 41.058 72.232 41.009 72.213 41.041 72.348 41.074 72.369 41.009 72.523 40.861 72.717 40.861 72.911 40.829 72.911 40.829 72.930 40.861 72.990 40.861 73.008 40.845 73.165 40.763 73.106 40.714 72.971 40.698 72.874 40.682 72.874 40.567 72.758 40.551 72.561 40.502 72.426 40.502 72.445 40.469 72.232 40.338 72.037 40.305 71.978 40.239 72.056 40.256 72.019 40.239 71.978 40.239 71.959 40.207 71.824 40.156 71.765 40.207 71.552 40.305 71.358 40.305 71.339 40.239 70.988 40.223 70.794 40.256 70.600 40.354 70.484 40.354 70.446 40.371 70.387 40.420 70.368 40.551 70.543 40.665 70.737 40.731 70.816 40.731 70.794 40.910 70.640 40.993 70.523 41.041 70.484 40.878 70.290 40.796 70.096 40.763 70.038 40.747 70.018 40.698 69.824 40.714 69.630 40.747 69.591 40.780 69.397 40.616 69.339 40.534 69.242 40.502 69.280 40.420 69.300 40.289 69.339 40.289 69.300 40.256 69.280 40.239 69.300 40.207 69.339 40.189 69.280 40.189 69.261 40.207 69.183 40.223 69.086 40.239 69.048 40.189 68.853 40.207 68.795 40.189 68.659 40.156 68.620 40.140 68.640 40.124 68.717 40.140 68.873 40.156 68.912 40.074 68.950 39.992 68.834 39.877 68.912 39.877 68.853 39.860 68.659 39.827 68.659 39.778 68.640 39.547 68.523 39.547 68.329 39.563 68.135 39.563 68.115 39.630 67.727 39.514 67.533 39.481 67.455 39.448 67.455 39.283 67.378 39.165 67.514 39.016 67.708 38.983 67.863 39.000 67.999 38.900 68.193 38.834 68.193 38.651 68.096 38.484 68.135 38.451 68.135 38.417 68.154 38.384 68.193 38.217 68.387 38.049 68.348 37.966 68.290 37.949 68.251 37.848 68.135 37.681 67.999 37.547 67.882 37.378 67.843 37.210 67.824 37.193 67.785 37.008 67.921 36.957 67.999 36.923 68.057 36.923 68.077 37.008 68.271 37.109 68.329 37.160 68.523 37.193 68.620 37.244 68.814 37.344 68.912 37.210 69.106 37.109 69.300 37.109 69.319 37.160 69.416 37.193 69.436 37.261 69.416 37.445 69.397 37.581 69.591 37.581 69.688 37.614 69.882 37.563 70.018 37.547 70.077 37.547 70.174 37.715 70.290 37.782 70.271 37.831 70.251 37.999 70.310 38.083 70.407 38.233 70.543 38.417 70.697 38.417 70.756 38.467 70.950 38.384 71.164 38.367 71.182 38.217 71.377 38.049 71.320 37.898 71.395 37.915 71.590 37.815 71.611 37.681 71.552 37.496 71.514 37.411 71.493 37.244 71.493 37.075 71.436 37.058 71.455 36.889 71.514 36.720 71.611 36.686 71.649 36.670 71.787 36.788 71.978 36.906 72.194 36.957 72.269 36.991 72.485 37.025 72.679 37.160 72.758 37.227 72.852 37.311 73.068 37.429 73.262 37.445 73.397 37.445 73.591 37.429 73.785 37.344 73.785 37.227 73.823 37.294 74.017 37.327 74.155 37.429 74.349 37.378 74.543 37.378 74.562 37.395 74.697 37.378 74.737 37.244 74.932 ; #1641 13 44.792 80.019 44.792 80.075 44.823 80.269 44.761 80.464 44.635 80.388 44.477 80.367 44.319 80.388 44.177 80.388 44.018 80.445 43.859 80.542 43.811 80.561 43.653 80.639 43.493 80.736 43.333 80.679 43.317 80.679 43.158 80.833 43.126 80.639 43.062 80.485 42.901 80.601 42.885 80.582 42.821 80.388 42.821 80.269 42.661 80.194 42.484 80.251 42.339 80.269 42.307 80.291 42.193 80.251 42.032 80.232 42.032 80.019 41.903 79.824 41.854 79.630 41.789 79.474 41.757 79.280 41.676 79.066 41.594 78.872 41.578 78.853 41.480 78.659 41.416 78.465 41.286 78.387 41.270 78.368 41.172 78.252 41.041 78.058 41.074 77.863 41.009 77.669 40.993 77.475 41.009 77.281 41.025 77.106 41.025 76.911 40.878 76.814 40.698 76.658 40.534 76.563 40.453 76.523 40.387 76.329 40.387 76.135 40.371 76.037 40.305 75.843 40.485 75.668 40.502 75.649 40.584 75.455 40.567 75.417 40.453 75.223 40.453 75.029 40.469 75.007 40.502 74.853 40.453 74.834 40.338 74.913 40.305 74.716 40.173 74.524 40.107 74.387 40.107 74.193 39.992 73.979 39.976 73.979 39.811 73.863 39.646 73.942 39.481 73.863 39.448 73.669 39.382 73.669 39.216 73.629 39.050 73.785 39.000 73.845 38.834 73.747 38.667 73.823 38.651 73.823 38.534 73.961 38.534 74.058 38.651 74.252 38.634 74.446 38.617 74.484 38.567 74.697 38.384 74.872 38.300 74.816 38.116 74.834 37.949 74.932 37.882 74.950 37.715 74.950 37.530 75.007 37.361 75.126 37.294 75.007 37.244 74.932 37.294 74.775 37.261 74.678 37.092 74.503 37.025 74.581 37.058 74.697 37.008 74.853 36.991 75.007 36.957 75.223 36.906 75.417 36.839 75.436 36.771 75.552 36.737 75.746 36.602 75.921 36.449 76.019 36.280 76.019 36.110 75.940 36.025 75.978 35.838 76.172 35.820 76.367 35.838 76.426 35.752 76.620 35.650 76.795 35.650 76.833 35.582 77.046 35.531 77.240 35.496 77.378 35.478 77.572 35.496 77.766 35.496 77.845 35.496 77.863 35.565 78.058 35.650 78.252 35.752 78.446 35.769 78.484 35.906 78.872 35.923 79.029 35.940 79.223 35.940 79.242 35.957 79.261 35.957 79.455 35.838 79.649 35.769 79.649 35.599 79.843 35.514 80.019 35.548 80.213 35.531 80.291 35.514 80.329 35.462 80.407 35.291 80.291 35.120 80.213 35.000 80.213 34.948 80.213 34.777 80.116 34.657 80.019 34.657 79.959 34.570 79.843 34.450 79.784 34.416 79.727 34.416 79.630 34.398 79.552 34.261 79.592 34.089 79.493 34.020 79.377 34.020 79.358 34.037 79.145 33.863 78.950 33.794 78.988 33.760 79.029 33.725 79.029 33.552 78.950 33.414 78.950 33.326 79.010 33.222 79.204 33.170 79.398 32.997 79.377 32.841 79.474 32.666 79.533 32.648 79.514 32.561 79.417 32.509 79.261 32.387 79.126 32.370 79.029 32.439 78.835 32.614 78.794 32.631 78.737 32.579 78.640 32.561 78.600 32.544 78.406 32.422 78.484 32.248 78.484 32.072 78.659 31.915 78.756 31.845 78.737 31.827 78.737 31.774 78.697 31.599 78.853 31.458 78.775 31.282 78.891 31.353 78.969 31.405 79.164 31.388 79.182 31.212 79.301 31.106 79.417 31.089 79.417 31.019 79.514 30.948 79.571 30.983 79.765 30.878 79.959 30.860 80.019 30.789 80.097 30.630 80.232 30.577 80.213 30.524 80.407 30.471 80.601 30.453 80.639 30.312 80.852 30.206 81.046 ; #1642 13 35.086 -2.194 35.000 -2.136 34.931 -2.019 34.794 -1.825 34.777 -1.806 34.657 -1.786 34.484 -1.670 34.467 -1.689 34.278 -1.709 34.106 -1.650 34.071 -1.650 33.881 -1.709 33.708 -1.728 33.673 -1.650 33.570 -1.592 33.397 -1.650 33.205 -1.612 33.049 -1.476 32.875 -1.495 32.701 -1.281 32.579 -1.126 32.404 -1.185 32.230 -1.243 32.159 -1.281 32.159 -1.262 32.107 -1.185 32.089 -1.204 32.107 -1.379 32.107 -1.709 32.124 -1.903 32.124 -1.961 32.142 -2.175 32.159 -2.369 32.124 -2.563 32.089 -2.738 32.019 -2.932 31.845 -2.971 31.809 -3.068 31.757 -3.243 31.704 -3.437 31.704 -3.631 31.669 -3.825 31.599 -3.825 31.405 -3.728 31.230 -3.786 31.142 -3.670 30.966 -3.650 30.930 -3.767 30.913 -3.961 30.772 -4.155 30.736 -4.213 30.736 -4.233 30.630 -4.427 30.630 -4.524 30.612 -4.602 30.541 -4.796 30.418 -4.990 30.365 -5.029 30.188 -5.146 30.170 -5.146 29.993 -5.340 29.975 -5.379 29.904 -5.592 29.887 -5.631 29.869 -5.825 29.833 -6.039 29.798 -6.233 29.816 -6.427 29.833 -6.466 29.745 -6.466 29.567 -6.621 29.602 -6.815 29.602 -6.932 29.620 -7.126 29.478 -7.320 29.407 -7.417 29.389 -7.612 29.246 -7.806 29.228 -7.845 29.086 -8.039 28.996 -8.233 28.961 -8.272 28.818 -8.466 28.711 -8.660 27.671 -8.660 27.293 -8.660 27.166 -8.446 27.148 -8.388 27.022 -8.194 26.914 -8.000 26.787 -7.786 26.679 -7.592 26.570 -7.398 26.444 -7.204 26.353 -7.048 26.244 -6.854 26.136 -6.660 26.009 -6.466 25.900 -6.253 25.772 -6.058 25.663 -5.864 25.536 -5.650 25.517 -5.650 25.481 -5.592 25.354 -5.379 25.245 -5.184 25.117 -4.990 25.008 -4.796 ; #1643 13 36.398 22.505 35.000 22.505 32.788 22.505 ; #1644 13 37.143 44.795 37.311 44.815 37.429 44.621 37.496 44.601 37.664 44.582 37.715 44.621 37.798 44.465 37.882 44.271 38.049 44.310 38.100 44.349 38.267 44.407 38.417 44.329 38.501 44.329 38.667 44.271 38.850 44.310 38.967 44.193 39.016 44.174 39.182 44.174 39.349 44.077 39.382 44.038 39.398 44.252 39.415 44.407 39.580 44.446 39.696 44.485 39.728 44.679 39.630 44.834 39.464 44.951 39.415 45.009 39.299 45.126 39.200 45.300 39.083 45.397 39.000 45.436 38.983 45.494 38.950 45.650 38.900 45.844 38.883 46.057 38.834 46.193 38.900 46.388 38.867 46.543 39.033 46.757 39.132 46.834 39.182 47.028 39.200 47.048 39.365 47.242 39.464 47.397 39.530 47.591 39.630 47.786 39.663 47.805 39.712 47.980 39.563 48.193 39.398 48.368 39.382 48.368 39.315 48.174 39.149 48.232 39.066 48.329 38.983 48.291 38.950 48.096 38.784 48.116 38.701 48.252 38.617 48.446 38.451 48.582 38.417 48.601 38.417 48.621 38.384 48.640 38.451 48.834 38.434 48.893 38.267 48.893 38.100 48.912 37.932 48.951 37.915 48.951 37.748 49.028 37.581 49.222 37.547 49.281 37.479 49.475 37.479 49.689 37.462 49.786 37.445 49.980 37.445 49.960 37.429 50.019 37.378 50.213 37.210 50.291 37.092 50.426 36.974 50.620 36.873 50.815 36.771 51.009 36.720 51.164 36.686 51.358 36.670 51.455 36.636 51.650 36.585 51.844 36.585 52.057 36.602 52.135 36.653 52.329 36.686 52.523 36.720 52.737 36.737 52.776 36.771 52.970 36.805 53.067 36.839 53.164 36.873 53.358 36.889 53.572 36.906 53.766 36.906 53.863 36.873 53.669 36.873 53.611 36.805 53.805 36.805 54.019 36.974 54.019 36.991 53.999 37.160 53.980 37.327 53.922 37.344 53.922 37.344 54.038 37.327 54.232 37.378 54.426 37.445 54.620 37.462 54.718 37.496 54.756 37.513 54.795 37.681 54.815 37.831 55.009 37.915 55.087 37.999 55.281 38.049 55.397 38.100 55.591 38.100 55.630 38.116 55.844 38.066 56.038 38.066 56.232 38.083 56.329 38.217 56.368 38.267 56.582 38.284 56.776 38.250 56.815 38.200 57.009 38.250 57.164 38.150 57.339 37.982 57.378 37.966 57.397 37.898 57.785 37.831 57.980 37.831 57.999 37.782 58.213 37.631 58.407 37.664 58.523 37.648 58.718 37.698 58.854 37.631 59.047 37.513 59.242 37.378 59.397 37.210 59.494 37.143 59.630 37.126 59.824 37.041 60.018 36.873 60.174 36.703 60.310 36.670 60.349 36.653 60.543 36.653 61.164 36.483 61.183 36.314 61.164 36.178 61.242 36.008 61.183 35.974 61.145 35.803 61.261 35.633 61.261 35.599 61.300 35.548 61.436 35.444 61.649 35.410 61.844 35.462 61.980 35.393 62.116 35.256 62.290 35.240 62.290 35.137 62.310 35.000 62.329 ; #1645 13 29.958 48.543 29.993 48.465 30.153 48.388 30.330 48.291 30.453 48.077 30.524 48.038 30.718 48.038 30.895 48.057 31.001 47.902 31.071 47.708 31.247 47.708 31.440 47.727 31.511 47.747 31.546 47.766 31.722 47.844 31.739 47.863 31.915 47.766 32.107 47.611 32.248 47.514 32.282 47.494 32.457 47.397 32.474 47.203 32.526 47.048 32.579 47.009 32.701 46.815 32.841 46.601 32.928 46.446 32.962 46.349 32.962 46.135 33.136 46.155 33.188 46.213 33.292 46.135 33.483 46.019 33.500 45.980 33.552 45.960 33.639 45.766 33.812 45.611 33.985 45.417 34.054 45.475 34.209 45.572 34.381 45.475 34.433 45.455 34.606 45.533 34.553 45.727 34.570 45.727 34.743 45.669 34.914 45.786 35.000 45.883 35.068 45.941 35.102 45.960 35.102 46.174 35.171 46.193 35.291 46.155 35.462 46.019 35.616 46.038 35.718 46.232 35.803 46.232 35.838 46.019 35.820 45.824 35.889 45.727 35.974 45.650 35.974 45.611 35.991 45.572 36.008 45.533 36.025 45.494 35.991 45.436 35.991 45.359 36.008 45.339 36.195 45.339 36.364 45.281 36.466 45.087 36.500 45.067 36.534 45.028 36.670 45.087 36.754 45.009 36.788 44.873 36.805 44.854 36.974 44.892 37.143 44.795 37.177 44.776 37.160 44.601 37.058 44.407 37.075 44.213 37.143 44.232 37.311 44.096 37.261 43.960 37.227 43.786 37.261 43.572 37.327 43.378 37.327 43.358 37.378 43.164 37.327 42.970 37.378 42.776 37.327 42.737 37.160 42.601 37.143 42.562 37.109 42.368 37.058 42.388 36.805 42.096 36.805 42.077 36.703 41.960 36.585 41.766 36.551 41.572 36.449 41.359 36.280 41.300 36.144 41.281 35.974 41.320 35.906 41.359 35.735 41.397 35.548 41.339 35.514 41.300 35.342 41.261 35.154 41.223 35.000 41.223 34.828 41.242 34.794 41.242 34.623 41.126 34.450 41.028 34.433 41.028 34.398 40.970 34.312 40.795 34.226 40.601 34.140 40.426 34.123 40.407 34.106 40.349 34.106 40.329 34.071 40.271 34.037 40.213 34.037 40.194 34.020 40.174 33.968 40.058 33.951 40.019 33.915 39.941 33.812 39.747 33.812 39.728 33.725 39.533 33.621 39.339 33.535 39.145 33.431 38.931 33.379 38.815 33.240 38.854 32.997 38.931 32.735 39.009 32.683 39.028 32.509 39.087 32.492 39.067 32.474 39.028 32.474 39.009 32.439 39.028 32.404 39.028 32.352 39.242 32.352 39.261 32.248 39.320 32.230 39.320 32.124 39.184 32.002 38.990 31.984 38.931 31.967 38.893 31.932 38.698 31.915 38.621 31.880 38.543 31.845 38.349 31.827 38.271 31.809 38.252 31.774 38.058 31.757 37.999 31.739 37.980 31.704 37.786 31.687 37.708 31.634 37.514 31.617 37.436 31.564 37.242 31.546 37.223 31.546 37.184 31.528 37.106 31.475 37.048 31.423 37.087 31.388 37.126 31.212 37.300 31.106 37.417 30.948 37.572 30.860 37.669 30.807 37.708 30.772 37.747 30.594 37.922 30.506 38.019 30.471 37.961 30.383 37.766 30.206 37.611 30.170 37.611 29.993 37.495 29.993 37.417 29.958 37.223 29.940 37.164 29.904 36.970 29.887 36.892 29.780 36.699 29.762 36.679 29.585 36.563 29.531 36.524 29.371 36.330 29.353 36.291 29.335 36.291 29.193 36.097 29.193 36.077 29.228 35.883 29.228 35.825 29.264 35.630 29.264 35.553 29.300 35.359 29.318 35.300 29.335 35.106 29.353 35.048 29.353 35.009 29.353 34.970 ; #1646 13 35.599 61.300 35.410 61.222 35.342 61.203 35.171 61.125 35.000 61.125 34.828 61.087 34.811 61.087 34.726 60.989 34.553 60.814 34.416 60.853 34.278 60.659 34.157 60.543 34.071 60.523 33.881 60.562 33.829 60.562 33.656 60.543 33.552 60.737 33.552 60.776 33.535 60.950 33.362 60.776 33.188 60.620 32.997 60.620 32.823 60.678 32.701 60.717 32.526 60.776 32.352 60.834 32.230 60.873 32.054 60.834 31.880 60.814 31.722 60.834 31.546 60.853 31.475 61.048 31.458 61.125 31.458 61.183 31.423 61.378 31.423 61.436 31.405 61.572 31.388 61.630 31.388 61.688 31.353 61.747 31.335 61.766 31.247 61.785 31.071 61.844 30.983 61.844 30.948 61.824 30.807 61.805 30.630 61.630 30.276 61.281 30.259 61.261 30.099 61.125 29.993 61.009 29.869 60.873 29.798 61.067 29.745 61.281 29.691 61.475 29.656 61.611 29.602 61.805 29.549 61.999 29.496 62.193 29.460 62.290 29.424 62.446 29.424 62.640 29.442 62.834 29.460 63.028 29.478 63.222 29.496 63.416 29.496 63.611 29.460 63.805 29.460 63.902 29.407 64.096 29.531 64.290 29.549 64.387 29.567 64.445 29.585 64.640 29.567 64.834 29.567 64.970 29.549 65.009 29.585 65.203 29.638 65.397 29.673 65.533 29.709 65.727 29.727 65.766 29.745 65.805 29.780 66.019 29.833 66.212 29.993 66.329 30.170 66.310 30.347 66.348 30.524 66.310 30.700 66.329 30.878 66.387 30.913 66.407 30.948 66.445 31.036 66.640 31.212 66.737 31.247 66.834 31.317 67.028 31.247 67.048 31.230 67.125 31.230 67.261 31.247 67.475 31.282 67.669 31.335 67.805 31.353 67.805 31.493 67.611 31.528 67.591 31.546 67.785 31.634 67.979 31.687 68.077 31.757 68.135 31.774 68.329 31.739 68.523 31.757 68.581 31.669 68.776 31.652 68.795 31.617 68.912 31.704 69.106 31.880 69.242 31.880 69.261 31.932 69.339 32.107 69.300 32.282 69.300 32.474 69.261 32.492 69.280 32.683 69.474 32.858 69.494 32.875 69.533 33.049 69.533 33.084 69.688 33.084 69.902 33.136 70.018 33.240 70.212 33.414 70.310 33.449 70.271 33.621 70.212 33.742 70.018 33.812 69.979 33.846 69.941 34.020 69.902 34.037 69.921 34.054 70.018 34.002 70.212 33.968 70.407 33.951 70.562 33.951 70.756 34.002 70.950 34.054 71.085 34.123 71.107 34.244 71.126 34.330 71.164 34.502 70.988 34.553 71.010 34.726 71.182 34.897 71.358 34.966 71.514 35.000 71.533 35.034 71.552 35.137 71.649 35.325 71.552 35.428 71.668 35.616 71.533 35.684 71.552 35.855 71.455 35.991 71.261 36.042 71.201 36.059 71.201 36.212 71.395 36.347 71.590 36.432 71.727 36.500 71.921 36.568 72.019 36.720 72.213 36.754 72.407 36.754 72.426 36.822 72.620 36.839 72.814 36.839 73.008 36.873 73.068 36.873 73.262 36.889 73.456 36.906 73.650 36.906 73.688 36.889 73.823 36.822 74.017 36.906 74.211 36.974 74.387 37.025 74.581 ; #1647 13 35.137 62.310 35.171 62.349 35.256 62.543 35.256 62.737 35.376 62.912 35.376 62.931 35.514 63.125 35.684 63.222 35.701 63.261 35.855 63.125 35.855 63.222 35.872 63.378 35.889 63.514 35.974 63.708 36.025 63.902 36.127 64.096 36.161 64.174 36.229 64.387 36.347 64.581 36.500 64.640 36.670 64.640 36.856 64.756 36.957 64.814 37.126 64.814 37.210 65.009 37.227 65.203 37.244 65.416 37.244 65.533 37.429 65.650 37.563 65.785 37.462 65.999 37.361 66.193 37.344 66.271 37.327 66.465 37.344 66.504 37.361 66.523 37.361 66.776 37.378 66.970 37.344 67.106 37.261 67.183 37.193 67.300 37.227 67.436 37.244 67.630 37.193 67.785 ; #1648 13 35.496 77.845 35.393 77.629 35.291 77.435 35.188 77.240 35.188 77.222 35.102 77.046 35.000 77.068 34.983 77.046 34.811 76.971 34.794 76.971 34.657 76.833 34.743 76.698 34.760 76.504 34.691 76.310 34.606 76.135 34.623 76.078 34.570 75.884 34.502 75.687 34.536 75.493 34.606 75.301 34.623 75.223 34.640 75.007 34.657 74.913 34.691 74.716 34.743 74.524 34.777 74.368 34.691 74.174 34.674 73.979 34.606 73.961 34.433 73.845 34.347 73.823 34.244 74.017 34.106 73.920 34.020 74.095 34.002 74.290 33.846 74.095 33.725 73.998 33.708 73.998 33.656 74.017 33.466 74.193 33.292 74.095 33.292 74.058 33.119 74.136 33.014 74.330 32.841 74.368 32.823 74.349 32.752 74.543 32.579 74.678 32.561 74.678 32.492 74.872 32.474 75.007 32.422 75.145 32.335 75.339 32.177 75.339 32.124 75.201 32.072 75.007 32.019 74.872 31.897 74.678 31.722 74.524 31.617 74.600 31.599 74.600 31.423 74.640 31.388 74.600 31.194 74.543 31.142 74.543 31.089 74.697 31.036 74.659 31.054 74.621 31.036 74.562 31.001 74.562 30.895 74.368 30.753 74.252 30.700 74.193 30.524 74.077 30.471 73.979 30.383 73.882 30.365 73.863 30.330 73.942 30.312 73.961 30.188 73.979 30.153 73.942 30.064 73.766 29.993 73.553 29.904 73.397 29.727 73.337 29.656 73.319 29.478 73.240 29.282 73.124 29.211 73.068 29.032 72.930 28.961 72.736 28.854 72.542 28.800 72.466 28.603 72.291 28.425 72.232 28.245 72.037 28.138 71.959 27.958 71.903 27.886 71.708 27.868 71.514 27.868 71.455 27.850 71.261 27.779 71.066 27.707 70.853 27.761 70.737 27.940 70.659 27.994 70.621 28.030 70.407 27.886 70.212 27.743 70.096 27.563 70.018 27.166 69.591 26.986 69.533 26.787 69.513 26.715 69.610 26.588 69.824 26.588 70.018 26.408 70.193 26.226 70.174 26.190 70.174 26.009 70.115 25.827 70.212 25.754 70.271 25.736 70.271 25.681 70.465 25.699 70.659 25.554 70.678 25.373 70.718 25.190 70.872 25.136 70.891 25.008 70.932 24.807 71.029 24.679 71.107 24.496 71.010 24.405 71.085 24.332 70.891 24.240 70.697 24.240 70.659 24.423 70.600 24.368 70.407 24.350 70.310 24.313 70.135 24.204 70.077 24.167 70.018 24.167 69.902 24.185 69.708 24.259 69.630 24.295 69.436 24.259 69.242 24.295 69.106 24.313 68.950 24.313 68.756 24.149 68.756 23.965 68.737 23.965 68.523 23.947 68.368 23.763 68.212 23.653 68.154 23.451 67.960 23.248 67.746 23.046 67.552 22.843 67.514 20.005 67.514 18.808 67.514 10.005 67.514 0.000 67.514 -2.310 67.514 -10.005 67.514 -30.010 67.514 -49.998 67.514 -90.000 67.514 ; #1649 13 31.652 25.165 31.582 25.087 31.475 25.009 31.317 24.873 31.177 24.893 31.001 24.932 30.825 25.009 30.736 25.009 30.648 24.990 30.453 24.912 30.365 24.815 30.188 24.718 29.993 24.796 29.975 24.815 29.798 24.815 29.745 24.854 29.602 24.893 29.531 24.893 29.175 25.009 28.996 25.009 25.008 25.009 20.005 25.009 20.005 24.019 15.697 24.019 15.754 23.805 15.754 23.611 15.678 23.398 15.697 23.203 15.716 23.126 15.526 22.932 15.336 23.009 15.298 23.009 15.109 22.951 15.033 22.815 14.995 22.776 14.919 22.757 14.710 22.699 14.672 22.640 14.634 22.505 14.634 22.485 14.424 22.466 14.234 22.505 14.234 22.563 14.043 22.407 13.929 22.213 13.834 22.155 13.643 22.155 13.454 22.252 13.377 22.310 13.186 22.155 13.167 22.116 12.995 21.922 12.804 21.844 12.670 21.903 12.670 21.922 12.651 22.116 12.689 22.310 12.498 22.427 12.422 22.427 12.230 22.485 12.039 22.485 11.982 22.621 11.790 22.582 11.694 22.563 11.502 22.660 11.406 22.854 11.311 22.971 11.120 22.951 10.928 22.893 10.831 22.932 10.639 23.106 10.466 23.300 10.390 23.359 10.197 23.475 10.005 23.592 9.793 23.689 9.601 23.669 9.409 23.669 9.197 23.592 9.120 23.475 8.985 23.495 8.773 23.514 8.715 23.708 8.715 23.980 8.696 24.174 8.696 24.194 8.311 24.194 8.272 24.272 8.272 24.466 8.214 24.660 8.176 24.854 8.176 24.873 7.983 25.009 7.944 25.029 7.867 25.243 7.674 25.301 7.539 25.203 7.345 25.378 7.249 25.592 7.152 25.786 7.114 25.864 6.959 26.058 6.747 26.213 6.631 26.407 6.457 26.310 6.438 26.330 6.225 26.485 6.031 26.563 5.992 26.776 5.973 26.815 5.896 26.912 5.799 27.126 5.586 27.281 5.393 27.262 5.218 27.320 5.005 27.475 5.024 27.436 5.082 27.398 5.160 27.203 5.160 27.009 5.044 26.834 5.063 26.640 5.082 26.466 5.179 26.252 5.218 26.155 5.218 25.883 5.296 25.669 5.373 25.592 5.315 25.398 5.198 25.320 5.005 25.203 5.005 25.165 5.005 25.126 4.986 25.009 4.928 24.815 5.005 24.621 5.102 24.485 5.005 24.330 5.005 24.310 4.947 24.252 4.908 24.097 4.831 23.903 4.773 23.747 4.695 23.534 4.599 23.359 4.734 23.165 4.734 23.048 4.715 22.854 4.618 22.738 4.462 22.602 4.346 22.602 4.153 22.466 4.133 22.466 4.114 22.563 4.036 22.660 3.862 22.854 3.862 23.242 3.823 23.359 3.823 23.534 3.668 23.417 3.629 23.398 3.668 23.203 3.532 23.009 3.494 22.796 3.280 22.776 3.086 22.796 3.028 22.893 3.106 23.087 2.911 23.029 2.698 22.990 2.504 23.126 2.524 23.320 2.524 23.378 2.388 23.572 2.174 23.631 2.232 23.436 2.174 23.242 2.135 23.203 2.174 22.990 2.155 22.990 2.019 22.776 2.038 22.718 2.096 22.582 2.038 22.602 1.902 22.524 1.709 22.485 1.495 22.291 1.495 22.310 1.476 22.446 1.476 22.466 1.320 22.660 1.126 22.757 1.068 22.776 0.874 22.835 0.680 22.874 0.563 22.951 0.408 22.990 0.194 23.126 0.000 23.281 -0.194 23.417 -0.291 23.203 -0.388 23.009 -0.427 23.223 -0.447 23.417 -0.447 23.456 -0.641 23.631 -0.738 23.436 -0.873 23.417 -1.009 23.611 -1.184 23.825 -1.340 24.019 -1.398 24.213 -1.534 24.388 -1.728 24.427 -1.786 24.427 -1.767 24.233 -1.767 23.961 -1.922 23.767 -1.999 23.553 -2.038 23.339 -2.058 23.281 -1.922 23.068 -1.961 22.951 -1.844 22.757 -1.805 22.640 -1.961 22.427 -1.922 22.233 -1.922 22.174 -2.116 22.233 -2.329 22.271 -2.369 22.077 -2.388 22.038 -2.485 21.903 -2.524 21.844 -2.427 21.631 -2.329 21.475 -2.504 21.281 -2.504 21.087 -2.485 21.009 -2.698 20.971 -2.834 20.854 -3.028 20.757 -3.222 20.699 -3.435 20.660 -3.648 20.660 -3.862 20.679 -4.153 20.679 -4.269 20.485 -4.288 20.446 -4.288 20.407 -4.385 20.310 -4.269 20.116 -4.288 20.058 -4.307 20.038 -4.521 20.116 -4.715 20.058 -4.908 20.116 -5.005 20.155 -5.198 20.194 -5.393 20.155 -5.451 20.155 -5.644 20.194 -5.838 20.116 -5.973 20.019 -6.069 19.805 -6.186 19.689 -6.399 19.708 -6.592 19.747 -6.785 19.903 -6.978 19.980 -6.998 19.980 -6.998 20.019 -6.998 20.213 -6.920 20.407 -6.920 20.640 -7.114 20.563 -7.287 20.543 -7.287 21.786 -7.442 21.864 -7.655 21.844 -7.674 21.825 -7.867 21.786 -7.944 21.767 -8.137 21.844 -8.330 21.922 -8.426 21.941 -8.580 21.922 -8.773 21.903 -8.966 21.864 -9.120 21.844 -9.177 21.864 -9.293 21.844 -9.486 21.844 -9.678 21.903 -9.813 22.000 -10.005 22.194 -10.159 22.213 -10.217 22.252 -10.428 22.310 -10.620 22.310 -10.678 22.330 -10.697 22.330 -10.793 22.271 -10.850 22.174 -11.043 22.233 -11.234 22.252 -11.254 22.252 -11.254 22.291 -11.138 22.485 -11.043 22.582 -11.100 22.718 -11.062 22.912 -11.100 23.106 -11.081 23.203 -10.966 23.398 -10.985 23.592 -11.004 23.805 -10.870 24.000 -10.927 24.000 -11.119 24.019 -11.138 24.038 -11.502 24.038 -11.694 24.000 -11.828 24.019 -12.020 24.000 -12.211 24.000 -12.268 24.038 -12.460 24.019 -12.651 23.941 -12.804 23.903 -12.995 23.941 -12.995 22.252 -13.052 22.000 -13.777 22.000 -13.986 22.019 -14.995 22.019 -16.170 22.019 -16.360 22.136 -16.548 22.233 -16.586 22.271 -16.756 22.466 -16.945 22.640 -17.134 22.835 -17.304 23.048 -17.492 23.223 -17.605 23.436 -17.624 23.495 -17.548 23.883 -17.511 24.097 -17.473 24.252 -17.492 24.310 -17.511 24.505 -17.492 24.698 -17.511 24.796 -17.567 24.990 -17.586 25.009 -17.756 25.203 -17.812 25.281 -17.831 25.087 -17.831 25.009 -17.850 24.815 -17.906 24.737 -18.056 24.543 -17.963 24.369 -18.056 24.174 -18.170 23.980 -18.264 23.903 -18.432 23.689 -18.488 23.631 -18.301 23.534 -18.131 23.378 -18.000 23.300 -18.000 23.262 -18.019 23.009 -18.112 22.505 -18.150 22.271 -18.207 22.019 -18.245 21.786 -18.245 21.767 -18.301 21.475 -18.320 21.242 -18.320 21.009 -20.005 21.009 -21.993 21.009 -21.993 20.019 -22.197 20.000 -23.303 20.000 -23.506 20.019 -25.008 20.019 -26.008 20.019 -26.588 20.019 -26.751 20.000 -26.932 20.019 -27.130 20.019 -27.329 20.000 -28.425 20.000 -28.425 20.019 ; #1650 13 27.311 88.930 27.383 88.852 27.454 88.795 27.545 88.777 27.725 88.874 27.904 88.874 28.066 88.755 28.030 88.542 27.976 88.348 27.868 88.154 27.689 88.172 27.509 88.056 27.454 88.075 27.257 88.056 27.239 88.038 27.202 88.038 27.022 88.097 26.842 88.194 26.824 88.194 26.642 88.172 26.534 88.116 26.444 87.922 26.462 87.824 26.408 87.668 26.426 87.474 26.390 87.280 26.408 87.201 26.588 87.085 26.534 86.969 26.516 86.951 26.479 86.910 26.444 86.835 26.479 86.640 26.552 86.446 26.570 86.425 26.588 86.211 26.606 86.155 26.606 85.823 26.787 85.748 26.824 85.551 26.787 85.475 26.751 85.378 26.878 85.184 26.896 85.009 26.986 84.893 27.130 84.698 27.239 84.698 27.365 84.504 27.401 84.310 27.509 84.135 27.454 83.940 27.437 83.881 27.401 83.862 27.347 83.881 27.347 83.862 27.454 83.668 27.472 83.474 27.472 83.455 27.401 83.261 27.454 83.066 27.472 82.969 27.527 82.775 27.707 82.697 27.689 82.543 27.671 82.465 27.797 82.271 27.922 82.077 27.922 82.017 27.904 81.823 28.012 81.629 28.066 81.513 28.174 81.319 28.371 81.203 28.407 81.068 28.442 80.949 28.567 80.755 28.675 80.542 28.639 80.523 28.567 80.523 28.818 80.135 28.979 80.116 28.996 80.135 29.104 80.153 29.104 80.172 29.121 80.251 29.139 80.269 29.318 80.291 29.496 80.329 29.567 80.388 29.656 80.426 29.816 80.523 29.993 80.717 30.011 80.755 30.170 80.874 30.206 81.046 30.046 81.124 30.064 81.300 30.153 81.378 30.170 81.397 30.383 81.435 30.418 81.629 30.365 81.823 30.347 82.039 30.259 82.114 30.082 82.252 29.993 82.446 29.851 82.659 29.691 82.853 29.620 83.066 29.585 83.280 29.478 83.320 29.478 83.377 29.335 83.474 29.157 83.668 29.264 83.862 29.246 84.075 29.068 84.213 28.925 84.251 28.800 84.464 28.693 84.658 28.550 84.852 28.585 85.009 28.603 85.222 28.407 85.124 28.335 85.124 28.282 85.319 28.282 85.532 28.335 85.748 28.156 85.901 28.084 85.942 28.012 85.980 27.994 85.980 27.886 86.077 28.084 86.114 27.994 86.330 27.940 86.524 27.958 86.543 28.084 86.775 27.940 86.988 27.833 87.201 27.850 87.396 27.815 87.436 27.815 87.708 27.904 87.903 27.886 88.097 27.868 88.154 ; #1651 13 25.190 61.630 25.391 61.669 25.572 61.688 25.754 61.688 25.863 61.805 26.063 61.824 26.081 61.824 26.263 61.960 26.390 62.174 26.371 62.232 26.353 62.290 26.534 62.368 26.588 62.562 26.588 62.640 26.642 62.834 26.642 63.145 26.624 63.164 26.824 63.222 27.005 63.261 27.022 63.261 27.094 63.281 27.130 63.319 27.130 63.358 27.148 63.339 27.221 63.300 27.239 63.106 27.221 62.989 27.257 62.795 27.437 62.834 27.490 62.853 27.671 62.834 27.868 62.814 28.048 62.776 28.156 62.795 28.245 62.640 28.245 62.601 28.425 62.407 28.442 62.271 28.496 62.077 28.585 61.883 28.621 61.844 28.800 61.649 28.979 61.572 28.996 61.552 29.086 61.514 29.264 61.378 29.318 61.378 29.496 61.242 29.673 61.067 29.869 60.873 ; #1652 13 22.124 89.087 22.197 89.087 22.216 89.065 22.401 89.009 22.549 88.949 22.622 88.971 22.641 88.949 22.751 88.949 22.936 88.911 23.028 88.893 23.046 88.893 23.212 88.949 23.359 88.777 23.487 88.814 23.506 88.795 23.597 88.639 23.689 88.582 23.874 88.658 23.965 88.755 24.002 88.736 24.185 88.736 24.185 88.755 24.240 88.755 24.313 88.717 24.313 88.679 24.332 88.504 24.332 88.485 24.405 88.385 24.423 88.367 24.442 88.348 24.460 88.269 24.515 88.135 24.570 88.116 24.771 88.116 24.953 88.213 24.880 88.291 24.971 88.426 25.008 88.426 25.190 88.464 25.190 88.736 25.172 88.777 25.172 88.971 25.282 89.027 25.463 88.852 25.517 88.795 25.499 88.582 25.608 88.464 25.663 88.464 25.809 88.269 25.936 88.135 26.117 88.194 26.190 88.310 26.299 88.385 26.371 88.542 26.444 88.504 26.498 88.348 26.606 88.407 26.534 88.504 26.516 88.523 26.353 88.717 26.281 88.736 26.299 88.795 26.299 88.814 26.281 88.949 26.226 88.990 26.226 89.046 26.408 88.930 26.335 89.143 26.154 89.165 26.136 89.165 26.009 89.359 26.009 89.475 26.081 89.650 26.190 89.707 26.099 89.766 26.009 89.864 25.954 89.823 25.936 89.845 25.936 89.882 25.900 89.864 25.809 89.823 25.772 89.845 25.718 89.845 25.681 89.864 25.590 89.882 25.572 89.882 25.554 89.864 25.536 89.864 25.463 89.845 25.409 89.845 25.373 89.823 25.300 89.939 25.282 90.017 25.209 90.212 25.209 90.271 25.154 90.446 25.172 90.640 25.154 90.853 25.154 90.951 25.190 91.145 25.209 91.261 25.154 91.455 25.117 91.649 25.136 91.708 25.172 91.900 25.190 92.038 25.136 92.232 25.026 92.426 25.008 92.426 24.990 92.426 24.862 92.485 24.844 92.388 24.880 92.270 24.807 92.270 24.624 92.213 24.533 92.172 24.350 92.000 24.350 91.959 24.167 91.922 24.149 91.727 24.167 91.708 24.204 91.668 24.094 91.590 24.094 91.396 24.002 91.320 23.837 91.261 23.653 91.183 23.469 91.261 23.285 91.320 23.083 91.358 23.083 91.377 23.175 91.514 22.991 91.571 22.972 91.590 22.991 91.727 23.175 91.824 23.359 91.824 23.414 91.862 23.506 91.978 23.689 91.959 23.653 92.075 23.726 92.194 23.726 92.291 23.597 92.291 23.414 92.367 23.322 92.388 23.285 92.407 23.101 92.388 22.917 92.426 22.880 92.464 22.696 92.523 22.512 92.561 22.382 92.580 22.197 92.601 21.993 92.620 21.975 92.620 21.882 92.639 21.697 92.620 21.512 92.620 21.326 92.680 21.289 92.680 21.364 92.485 21.364 92.445 21.383 92.251 21.196 92.213 21.159 92.213 21.048 92.270 ; #1653 13 27.761 91.668 27.940 91.687 27.994 91.493 27.994 91.455 28.012 91.436 28.084 91.242 27.976 91.048 27.976 91.029 28.030 90.969 28.066 90.775 28.066 90.484 28.084 90.368 28.264 90.327 28.317 90.133 28.317 90.017 28.228 89.823 28.156 89.629 28.084 89.553 28.066 89.532 27.886 89.397 27.850 89.359 27.671 89.184 27.599 89.143 27.419 88.971 27.383 88.971 27.311 88.930 27.148 88.777 26.968 88.893 26.932 89.046 26.824 89.241 26.860 89.378 26.805 89.572 26.787 89.610 26.769 89.650 26.697 89.845 26.715 89.864 26.733 89.901 26.733 90.017 26.733 90.114 26.860 90.309 26.842 90.503 26.805 90.581 26.769 90.775 26.787 90.969 26.787 90.988 26.824 91.104 26.769 91.299 26.878 91.493 26.860 91.533 26.805 91.727 26.805 91.900 26.860 92.094 26.914 92.135 26.986 92.116 27.166 92.038 27.329 92.116 27.454 91.922 27.454 91.881 27.490 91.687 27.581 91.630 27.761 91.668 27.761 91.806 27.725 91.922 27.797 92.116 27.815 92.251 27.850 92.445 27.886 92.580 28.066 92.680 28.192 92.795 28.264 92.949 28.371 93.125 28.425 93.165 28.603 93.241 28.657 93.416 28.675 93.610 28.728 93.804 28.800 93.939 28.836 93.980 28.979 94.155 29.086 94.230 29.211 94.425 29.300 94.640 29.318 94.640 29.175 94.835 29.139 95.007 29.121 95.007 29.157 95.007 29.175 94.988 29.157 95.007 29.104 95.223 29.032 95.415 29.300 95.709 29.389 95.881 29.389 95.903 29.460 96.097 29.353 96.194 29.246 96.329 29.211 96.367 29.086 96.172 28.979 96.194 29.032 96.407 29.068 96.523 28.889 96.561 28.800 96.620 28.621 96.464 28.496 96.388 28.442 96.582 28.460 96.620 28.442 96.736 28.371 96.930 28.335 97.046 28.353 97.046 28.317 97.241 28.228 97.357 ; #1654 13 21.975 92.620 22.012 92.658 22.067 92.852 22.030 93.009 22.197 93.184 22.290 93.222 22.419 93.203 22.604 93.143 22.788 93.106 22.862 93.125 23.046 93.165 23.083 93.359 23.175 93.397 23.303 93.378 23.487 93.416 23.671 93.454 23.781 93.416 23.856 93.397 24.039 93.338 24.039 93.454 24.021 93.648 24.002 93.766 23.947 93.961 23.837 94.155 23.874 94.174 24.057 94.252 24.240 94.309 24.332 94.349 24.515 94.446 24.716 94.600 24.825 94.640 25.008 94.738 25.063 94.756 25.263 94.600 25.446 94.678 25.463 94.697 25.590 94.910 25.736 95.007 25.827 95.048 26.009 95.164 26.190 95.126 26.208 95.126 26.390 95.104 26.570 95.164 26.624 95.201 26.679 95.261 26.715 95.455 26.733 95.474 26.896 95.687 27.005 95.843 27.184 96.056 27.257 96.154 27.293 96.367 27.311 96.561 27.347 96.698 27.257 96.893 27.094 97.068 27.112 97.162 27.293 97.068 27.472 96.911 27.653 96.949 27.743 97.068 27.904 97.259 27.994 97.397 28.120 97.338 28.228 97.357 28.407 97.494 28.513 97.629 28.335 97.823 28.353 97.939 28.174 98.114 28.156 98.155 27.976 98.155 27.797 98.230 27.761 98.252 27.689 98.271 27.671 98.484 27.653 98.581 27.472 98.697 27.293 98.738 27.094 98.738 26.914 98.775 26.805 98.794 26.606 98.794 26.462 98.756 26.263 98.678 26.136 98.640 25.954 98.678 25.845 98.716 25.809 98.522 25.627 98.406 25.572 98.387 25.627 98.193 25.590 98.174 25.409 98.155 25.391 98.114 25.300 98.077 25.263 97.883 25.081 97.745 25.008 97.745 24.807 97.688 24.734 97.572 24.533 97.572 24.350 97.726 24.350 97.707 24.222 97.745 24.185 97.767 24.002 97.629 23.856 97.669 23.947 97.864 24.039 97.998 24.075 98.058 24.130 98.252 24.130 98.446 24.075 98.619 24.112 98.775 24.167 98.910 23.984 98.697 23.856 98.716 23.671 98.854 23.524 98.835 23.469 98.910 23.267 98.932 23.193 98.951 23.101 99.145 23.101 99.242 23.083 99.436 23.064 99.512 23.064 99.533 22.880 99.455 22.807 99.417 22.622 99.396 22.493 99.396 22.327 99.261 22.160 99.183 22.087 99.377 22.105 99.571 22.105 99.590 22.067 99.784 22.030 99.843 22.049 99.978 21.864 99.959 21.790 99.978 21.697 100.019 21.679 100.075 21.642 100.154 21.623 100.154 21.438 100.232 21.456 100.251 21.456 100.270 21.494 100.483 21.456 100.542 21.456 100.601 21.568 100.796 21.679 100.912 21.679 100.949 21.771 101.143 21.753 101.143 21.568 101.162 21.383 101.009 21.289 100.814 21.307 100.736 21.122 100.677 21.048 100.639 20.974 100.561 20.862 100.561 20.881 100.658 20.844 100.639 20.825 100.445 20.787 100.348 20.601 100.191 20.415 100.135 20.341 100.116 20.341 100.097 20.397 100.019 20.434 99.903 20.397 99.862 20.322 99.668 20.341 99.571 20.341 99.493 20.135 99.533 20.079 99.358 20.117 99.164 20.005 99.067 19.818 99.029 19.780 98.969 19.762 98.775 19.706 98.640 19.687 98.484 19.669 98.290 19.799 98.096 19.743 98.058 19.575 97.883 19.369 97.823 19.201 97.864 19.014 97.767 18.808 97.767 18.602 97.804 18.526 97.591 18.488 97.513 18.563 97.378 18.583 97.378 18.395 97.454 18.320 97.629 18.131 97.707 17.944 97.745 17.925 97.726 17.831 97.707 17.642 97.864 17.379 98.133 17.228 98.230 17.077 98.328 16.908 98.522 16.813 98.562 16.699 98.522 16.511 98.640 16.322 98.697 16.284 98.738 16.473 98.872 16.284 98.932 16.245 98.932 16.132 98.738 16.057 98.600 15.868 98.619 15.678 98.600 15.659 98.600 15.469 98.619 15.355 98.446 15.261 98.425 15.223 98.230 15.033 98.252 14.995 98.230 14.805 98.290 14.653 98.406 14.462 98.562 14.291 98.678 14.158 98.872 14.005 99.029 13.815 99.145 13.720 99.183 13.529 99.201 13.339 99.223 13.205 99.223 13.014 99.183 12.823 99.242 12.804 99.242 12.613 99.396 12.575 99.455 12.383 99.455 12.192 99.512 12.135 99.533 11.943 99.611 11.752 99.649 11.560 99.474 11.369 99.396 11.311 99.339 11.100 99.261 11.023 99.164 10.831 99.029 10.774 98.910 10.582 98.813 10.524 98.835 10.351 98.756 10.159 98.678 10.005 98.600 9.909 98.543 9.813 98.349 9.716 98.290 9.524 98.155 9.544 97.961 9.447 97.823 9.312 97.610 9.177 97.416 9.043 97.203 8.927 97.009 8.792 96.814 8.657 96.601 8.523 96.407 8.388 96.194 8.272 96.000 8.137 95.803 8.060 95.687 7.905 95.436 7.751 95.201 7.597 94.969 7.442 94.756 7.307 94.522 ; #1655 13 24.990 -4.796 24.734 -4.369 24.606 -4.175 24.478 -3.961 24.332 -3.748 24.204 -3.534 24.075 -3.340 24.021 -3.243 24.002 -3.223 23.874 -3.029 23.726 -2.815 23.597 -2.602 23.469 -2.408 23.322 -2.194 23.193 -2.000 23.064 -1.786 22.917 -1.592 22.788 -1.379 22.641 -1.185 22.512 -0.990 22.364 -0.777 22.234 -0.583 22.087 -0.388 22.067 -0.330 21.919 -0.136 21.845 -0.019 21.827 0.000 21.716 0.175 21.605 0.369 21.475 0.583 21.344 0.777 21.233 0.971 21.103 1.184 21.011 1.204 20.937 1.204 20.750 1.301 20.731 1.320 20.620 1.515 20.490 1.670 20.304 1.806 20.304 1.864 20.228 2.058 20.266 2.252 20.191 2.330 20.024 2.524 20.005 2.718 19.968 2.912 19.949 2.971 19.836 3.184 19.650 3.223 19.575 3.223 19.388 3.281 19.183 3.146 19.164 3.126 18.994 3.320 18.976 3.340 19.014 3.534 19.052 3.748 19.070 3.806 19.089 4.000 19.127 4.194 19.145 4.252 17.096 4.252 16.908 4.233 16.699 4.214 16.416 4.214 16.227 4.058 16.037 4.000 16.000 4.019 15.811 3.922 15.697 3.884 15.659 3.845 15.545 3.650 15.355 3.495 15.374 3.437 15.393 3.320 15.393 3.243 15.431 3.029 15.336 2.874 15.355 2.680 15.336 2.466 15.336 2.272 15.317 2.058 15.317 1.903 15.298 1.709 15.298 1.515 15.280 1.320 15.185 1.204 14.995 1.010 14.976 0.796 14.957 0.757 14.938 0.719 14.995 0.524 14.976 0.330 14.995 0.252 ; #1656 13 24.240 37.514 24.313 37.514 ; #1657 13 24.259 51.591 24.112 51.611 23.910 51.766 23.892 51.805 23.726 51.922 23.616 52.018 23.432 52.193 23.230 52.349 22.936 52.601 22.899 52.912 22.880 53.145 22.843 53.358 22.825 53.572 22.770 54.019 22.751 54.232 22.714 54.504 22.641 55.009 22.714 55.222 22.493 55.358 22.124 55.591 21.919 55.649 21.494 55.514 20.992 55.339 20.490 55.184 20.005 55.009 19.743 54.251 19.669 54.019 19.332 53.009 19.257 52.776 18.994 52.018 18.245 52.349 17.831 52.523 17.812 52.543 17.379 52.737 17.342 52.756 17.323 52.756 17.284 52.834 17.002 52.951 16.699 53.106 16.680 53.106 ; #1658 13 21.568 101.162 21.568 101.184 21.401 101.241 21.215 101.281 21.233 101.435 21.233 101.513 21.178 101.707 21.141 101.745 21.178 101.804 21.233 101.864 21.252 101.864 21.438 101.767 21.586 101.842 21.642 101.804 21.827 101.785 21.845 101.767 22.030 101.629 22.216 101.572 22.271 101.591 22.345 101.669 22.493 101.785 22.493 101.804 22.419 101.864 22.382 101.901 22.437 101.961 22.401 102.155 22.493 102.290 22.567 102.368 22.585 102.368 22.770 102.484 22.770 102.522 22.678 102.716 22.678 102.738 22.493 102.932 22.493 103.104 22.604 103.183 22.788 103.377 22.770 103.417 22.585 103.533 22.585 103.552 22.788 103.668 22.678 103.784 22.493 103.978 22.512 103.997 22.530 104.019 22.604 104.038 22.788 104.135 22.825 104.288 22.733 104.270 22.678 104.367 22.733 104.464 22.751 104.483 22.825 104.677 22.917 104.871 22.936 104.871 22.972 104.852 23.175 104.912 23.175 104.990 23.193 105.009 23.267 105.203 23.377 105.338 23.285 105.416 23.175 105.551 23.101 105.591 23.046 105.688 23.046 105.726 22.936 105.920 22.936 106.017 22.991 106.077 22.954 106.252 22.862 106.290 22.880 106.484 22.936 106.543 22.880 106.697 22.807 106.794 22.770 106.835 22.585 106.735 22.493 106.600 22.474 106.600 22.474 106.581 22.382 106.581 22.197 106.678 22.160 106.697 21.975 106.716 21.975 106.929 21.919 106.951 21.808 107.048 21.716 107.202 21.660 107.358 21.605 107.377 21.660 107.493 21.586 107.512 21.605 107.630 21.642 107.746 21.660 107.803 21.531 107.997 21.549 107.997 21.456 108.135 20.005 108.135 17.058 108.135 17.021 108.213 16.926 108.426 16.813 108.639 16.530 109.281 16.416 109.494 16.189 109.999 16.151 110.077 ; #1659 13 18.000 38.621 17.869 38.465 17.661 38.388 17.548 38.271 17.548 38.155 17.473 37.961 17.436 37.922 17.360 37.728 17.323 37.514 17.228 37.533 17.039 37.436 17.021 37.242 17.021 37.203 17.058 37.009 16.870 37.028 16.813 37.009 16.624 36.931 16.435 36.970 16.416 36.970 16.227 36.951 16.037 36.854 15.849 36.796 15.640 36.679 15.450 36.660 15.412 36.601 15.204 36.504 15.147 36.466 15.147 36.446 14.995 36.466 14.900 36.485 14.691 36.504 14.500 36.524 14.291 36.543 14.253 36.563 14.158 36.524 13.948 36.466 13.758 36.466 13.643 36.427 13.454 36.330 13.244 36.232 13.052 36.174 12.957 36.155 12.708 36.155 12.689 36.135 12.708 35.941 12.670 35.728 12.670 35.708 12.537 35.630 12.326 35.495 12.135 35.378 11.924 35.281 11.828 35.106 11.733 35.068 11.541 35.106 11.331 35.009 11.273 34.970 11.216 34.990 11.196 35.009 11.158 35.009 11.062 34.970 10.870 34.990 10.678 34.796 10.851 34.640 10.774 34.446 10.563 34.310 10.409 34.330 10.197 34.349 10.005 34.232 9.851 34.194 9.659 34.116 9.447 34.097 9.409 34.116 9.197 34.135 8.580 34.135 8.446 33.999 8.388 33.805 8.368 33.786 8.446 33.669 8.465 33.611 8.446 33.417 8.426 33.223 8.330 33.184 8.137 33.203 8.002 33.048 7.886 33.009 7.790 33.165 7.770 33.261 7.751 33.456 7.693 33.650 7.558 33.825 7.403 34.019 7.229 34.058 7.036 34.232 6.959 34.310 6.882 34.504 6.805 34.524 6.727 34.563 6.612 34.757 6.496 34.815 6.399 34.834 6.206 34.893 6.012 34.990 5.857 35.009 5.760 35.068 5.567 35.223 5.354 35.378 5.412 35.436 5.373 35.630 5.335 35.825 5.198 35.825 5.005 35.786 4.831 35.786 4.618 35.961 4.618 35.009 4.618 34.427 4.599 34.407 4.482 34.271 4.288 34.077 4.230 33.999 3.745 33.514 3.765 33.417 3.765 33.184 3.862 32.990 3.784 32.796 3.745 32.601 3.745 32.543 3.687 32.349 3.610 32.213 3.513 32.213 3.571 32.077 3.590 32.058 3.590 32.038 3.784 31.863 3.707 31.708 3.707 31.689 3.687 31.475 3.784 31.281 3.726 31.087 3.726 31.067 3.552 30.893 3.494 30.873 3.300 30.873 3.145 30.796 2.950 30.873 2.873 30.893 2.659 30.796 2.466 30.737 2.349 30.932 2.388 30.951 2.349 31.048 2.213 31.242 2.174 31.281 2.155 31.301 1.961 31.203 1.922 31.165 1.728 31.009 1.573 30.815 1.379 30.601 1.320 30.563 1.223 30.485 1.145 30.330 1.029 30.232 0.874 30.038 0.854 30.019 0.854 30.000 0.835 29.980 0.815 29.980 0.621 29.941 0.427 29.922 0.252 29.844 0.058 29.728 0.000 29.747 -0.078 29.728 -0.214 29.708 -0.311 29.689 -0.485 29.670 -0.563 29.689 -0.757 29.630 -0.796 29.650 -1.009 29.572 -1.165 29.592 -1.281 29.611 -1.379 29.611 -1.340 29.747 -1.320 29.844 -1.476 29.922 -1.456 30.019 -1.126 30.349 -1.067 30.388 -1.067 30.485 -1.184 30.524 -1.379 30.640 -1.398 30.699 -1.456 30.757 -1.515 30.757 -1.554 30.776 -1.592 30.815 -1.650 30.834 -1.825 30.834 -1.922 30.815 -1.941 30.815 -1.961 30.834 -2.058 30.893 -2.174 30.873 -2.369 30.796 -2.388 30.796 -2.369 30.776 -2.408 30.582 -2.466 30.543 -2.659 30.446 -2.659 30.543 -2.756 30.446 -2.950 30.485 -2.950 30.660 -2.970 30.854 -3.047 30.815 -3.106 30.834 -3.300 30.718 -3.377 30.640 -3.494 30.543 -3.551 30.465 -3.706 30.407 -3.784 30.407 -3.862 30.310 -4.056 30.194 -4.094 30.174 -4.288 30.019 -4.288 30.000 -4.404 29.786 -4.443 29.786 -4.443 29.436 -4.462 29.436 -4.618 29.417 -4.812 29.359 -5.005 29.378 -5.044 29.398 -5.121 29.417 -5.315 29.514 -5.509 29.572 -5.586 29.611 -5.799 29.630 -5.992 29.514 -6.090 29.514 -6.283 29.553 -6.476 29.670 -6.495 29.689 -6.689 29.805 -6.805 30.019 -6.843 30.077 -7.036 30.252 -7.229 30.368 -7.423 30.446 -7.616 30.485 -7.713 30.543 -7.905 30.679 -8.098 30.757 -8.156 30.776 -8.195 30.776 -8.388 30.873 -8.580 31.029 -8.580 31.048 -8.600 31.184 -8.600 31.378 -8.677 31.495 -8.696 31.572 -8.889 31.670 -8.927 31.747 -8.889 31.805 -9.081 31.999 -9.062 32.097 -9.139 32.310 -9.177 32.504 -9.254 32.543 -9.274 32.737 -9.312 32.776 -9.332 32.776 -9.332 32.796 -9.409 32.951 -9.409 33.029 -9.486 33.242 -9.562 33.417 -9.601 33.611 -9.582 33.766 -9.716 33.922 -9.620 33.980 -9.582 34.155 -9.736 34.349 -9.909 34.465 -10.005 34.524 -10.043 34.543 -10.140 34.563 -10.351 34.582 -10.543 34.582 -10.601 34.640 -10.793 34.660 -10.870 34.660 -11.062 34.621 -11.254 34.737 -11.388 34.893 -11.579 34.970 -11.579 35.009 -11.579 35.417 -11.598 35.456 -11.598 35.611 -11.445 35.805 -11.502 35.980 -11.598 36.174 -11.694 36.368 -11.752 36.563 -11.732 36.601 -11.732 36.640 -11.579 36.834 -11.560 37.028 -11.636 37.087 -11.713 37.281 -11.732 37.475 -11.675 37.514 -11.598 37.708 -11.464 37.825 -11.273 37.980 -11.254 38.116 -11.311 38.310 -11.425 38.504 -11.292 38.640 -11.254 38.718 -11.177 38.931 -11.158 39.126 -11.138 39.145 -11.119 39.339 -10.985 39.533 -10.966 39.630 -10.889 39.824 -10.812 40.019 -10.639 40.213 -10.543 40.388 -10.486 40.446 ; #1660 13 16.416 52.504 14.215 52.504 14.005 52.698 14.005 54.834 13.815 55.009 11.004 55.009 11.004 52.523 10.947 52.504 10.005 52.504 0.000 52.504 -8.002 52.504 -8.002 45.242 -8.060 45.009 -10.005 45.009 -10.793 45.009 -11.004 45.164 -11.004 50.019 -11.004 52.290 -11.023 52.504 -20.005 52.504 -30.010 52.504 -44.997 52.504 ; #1661 13 10.005 74.017 10.005 71.533 10.197 71.514 12.498 71.514 12.498 74.017 10.005 74.017 ; #1662 13 17.209 82.522 10.005 82.522 0.000 82.522 -10.005 82.522 -22.714 82.522 -30.010 82.522 -49.998 82.522 -90.000 82.522 ; #1663 13 16.170 110.017 16.151 110.077 16.057 110.290 15.830 110.756 15.735 110.951 15.640 111.145 15.545 111.377 15.431 111.609 15.317 111.825 15.223 112.057 15.109 112.289 15.071 112.367 14.862 112.523 10.005 112.523 6.496 112.523 6.244 112.504 6.244 109.999 6.244 102.114 6.206 102.114 6.012 101.999 5.838 101.920 5.818 101.901 5.760 101.707 5.876 101.513 5.818 101.397 5.664 101.222 5.741 101.027 5.780 101.009 5.915 101.106 6.109 101.125 6.244 101.065 6.302 100.871 6.476 100.736 6.457 100.620 6.534 100.426 6.534 100.386 6.650 100.329 6.708 100.213 6.612 100.191 6.418 100.135 6.438 100.019 6.496 99.825 6.457 99.630 6.418 99.474 5.992 98.193 5.954 98.036 5.451 98.309 5.005 98.659 4.657 99.007 3.998 99.727 3.784 99.941 3.707 100.019 2.853 101.027 2.679 101.241 2.251 101.785 2.077 102.017 1.922 102.230 1.320 103.086 1.165 103.533 1.165 103.571 1.145 103.746 1.145 103.784 1.165 103.825 1.262 104.057 1.262 104.796 1.320 104.990 4.792 104.990 5.005 105.046 5.005 109.475 4.966 109.669 2.058 109.669 ; #1664 13 11.886 2.408 12.001 2.330 12.058 2.291 12.268 2.136 12.460 2.272 12.651 2.155 12.689 2.155 12.708 2.058 12.613 1.845 12.632 1.631 12.632 1.592 12.785 1.398 12.842 1.340 13.014 1.126 13.033 1.010 13.091 0.990 13.282 0.990 13.320 1.126 13.320 1.184 13.358 1.301 13.415 1.146 13.586 0.951 13.682 0.738 13.739 0.621 13.777 0.621 13.948 0.486 14.139 0.369 14.329 0.350 14.424 0.233 14.634 0.214 14.843 0.194 14.881 0.252 14.919 0.252 14.995 0.233 ; #1665 13 11.905 2.408 11.867 2.408 11.675 2.330 11.656 2.291 11.483 2.097 11.426 2.019 11.426 1.903 11.445 1.864 11.426 1.825 11.388 1.631 11.445 1.437 11.388 1.379 11.292 1.359 11.196 1.165 11.158 1.165 11.043 0.971 10.985 0.971 11.004 0.932 10.908 0.893 10.716 0.816 10.582 0.816 10.390 0.796 10.370 0.796 10.217 1.010 10.101 1.184 10.063 1.262 10.005 1.359 9.909 1.359 9.716 1.379 9.486 1.379 9.428 1.398 9.293 1.437 9.274 1.456 9.081 1.612 8.889 1.631 8.368 1.631 8.176 1.650 7.616 1.650 7.519 1.670 7.403 1.650 6.998 1.650 6.998 1.553 6.901 1.592 6.708 1.592 6.573 1.670 6.380 1.786 6.283 1.806 6.244 1.631 6.225 1.650 ; #1666 13 10.005 94.522 13.834 94.522 13.834 92.019 10.005 92.019 7.307 92.019 6.496 92.019 6.496 94.503 6.631 94.522 10.005 94.522 ; #1667 13 4.346 -7.495 0.000 -7.495 -6.920 -7.495 -6.998 -7.748 -6.998 -15.495 -8.927 -15.495 -9.004 -15.281 -9.004 -7.495 -10.005 -7.495 -30.010 -7.495 -34.794 -7.495 -35.000 -7.573 -35.000 -12.777 -35.051 -14.990 -42.821 -14.990 -42.998 -14.854 -42.998 -7.748 -43.030 -7.495 -49.998 -7.495 -90.000 -7.495 ; #1668 13 4.560 7.514 2.563 7.514 2.504 7.747 2.504 8.000 0.000 8.000 -1.009 8.000 -1.009 5.010 -1.922 5.010 -1.999 5.029 -1.999 7.417 -2.213 7.514 -10.005 7.514 -24.606 7.514 -30.010 7.514 -49.998 7.514 -90.000 7.514 ; #1669 13 6.496 92.019 6.302 92.194 5.876 92.542 5.683 92.717 5.567 92.814 5.432 92.911 5.198 93.106 4.966 93.319 4.462 93.748 4.211 93.961 3.959 94.174 3.823 94.290 3.590 94.465 3.571 94.484 3.358 94.678 3.145 94.853 3.086 94.891 2.989 94.988 2.718 95.201 2.582 95.320 2.388 95.493 2.174 95.668 2.116 95.727 1.554 96.194 0.951 96.717 0.815 96.833 0.350 97.222 0.272 97.281 0.097 97.435 0.000 97.513 -10.005 97.513 -30.010 97.513 -49.998 97.513 -90.000 97.513 ; #1670 13 1.281 110.017 1.165 110.212 1.048 110.290 0.893 110.484 0.874 110.678 0.990 110.891 1.009 110.970 1.048 111.164 1.029 111.358 0.951 111.552 1.009 111.746 1.009 111.765 1.126 111.959 1.165 112.154 1.184 112.154 1.379 112.232 1.476 112.270 1.554 112.464 1.573 112.620 1.554 112.814 1.573 113.009 1.437 113.046 1.379 113.260 1.379 113.300 1.300 113.494 1.242 113.688 1.262 113.726 1.418 113.920 1.457 114.115 1.418 114.231 1.359 114.212 1.320 114.212 1.126 114.077 0.951 113.883 0.757 113.939 0.563 113.786 0.602 113.999 0.641 114.193 0.582 114.387 0.621 114.581 0.699 114.794 0.699 114.891 0.582 115.086 0.388 115.007 0.194 114.988 -0.019 115.007 -0.175 114.988 0.000 115.183 -0.019 115.358 -0.039 115.358 -0.233 115.299 -0.330 115.299 -0.544 115.358 -0.738 115.436 -0.932 115.533 -1.009 115.687 -1.203 115.844 -1.281 115.825 -1.456 115.628 -1.670 115.552 -1.864 115.436 -2.058 115.339 -2.155 115.220 -2.213 115.104 -2.271 114.891 -2.349 114.891 -2.543 114.872 -2.737 114.775 -2.756 114.716 -2.892 114.503 -3.047 114.484 -3.242 114.387 -3.435 114.328 -3.648 114.252 -3.920 114.212 -4.153 114.174 -4.365 114.152 -4.579 114.115 -4.870 114.036 -5.082 113.980 -5.412 113.861 -5.702 113.745 -5.741 113.823 -5.838 114.133 -5.953 114.465 -6.069 114.813 -6.167 115.086 -6.283 115.415 -6.360 115.628 -6.457 115.844 -6.631 116.135 -6.785 116.367 -6.998 116.580 -7.152 116.445 -7.210 116.386 -7.500 116.038 -7.500 114.775 -7.809 114.600 -8.098 114.444 -8.368 114.484 -8.503 114.638 -8.792 114.832 -9.004 114.832 -9.004 112.755 -9.081 112.523 -10.005 112.523 -20.005 112.523 -30.010 112.523 -40.008 112.523 -49.998 112.523 -56.426 112.523 -90.000 112.523 ; #1671 13 -8.002 71.765 -8.002 73.008 -6.901 73.008 -6.747 72.874 -6.747 71.805 -6.824 71.765 -8.002 71.765 ; #1672 13 90.000 67.514 82.499 67.514 ; #1673 13 -12.746 97.513 -12.746 96.348 -12.518 96.270 -11.502 96.270 -11.502 97.513 ; #1674 13 -14.881 129.028 -20.005 129.028 -26.008 129.028 -30.010 129.028 -31.687 129.028 ; #1675 13 -16.548 138.018 -20.005 138.018 -26.008 138.018 -26.008 140.016 -26.008 140.755 -26.045 141.028 -30.010 141.028 -34.020 141.028 -33.985 140.987 -35.256 140.987 ; #1676 13 -17.586 37.514 -20.005 37.514 -25.008 37.514 -30.010 37.514 -46.986 37.514 -49.998 37.514 -90.000 37.514 ; #1677 13 -27.994 169.511 -30.010 169.511 -30.010 167.086 -29.745 167.027 -27.994 167.027 -27.994 169.511 ; #1678 13 -28.425 20.000 -28.496 19.805 -28.531 19.611 -28.531 19.573 -28.710 19.476 -28.728 19.320 -28.907 19.301 -28.925 19.223 -28.925 19.029 -28.854 18.835 -28.854 18.660 -28.889 18.466 -28.889 18.271 -28.871 18.077 -28.782 17.883 -28.782 17.670 -28.710 17.456 -28.531 17.378 -28.496 17.340 -28.317 17.378 -28.156 17.204 -28.102 17.184 -28.066 16.990 -28.209 16.854 -28.389 16.776 -28.460 16.679 -28.585 16.504 ; #1679 13 -34.037 22.505 -40.008 22.505 -49.998 22.505 -90.000 22.505 ; #1680 13 -44.997 53.009 -46.863 53.009 -47.002 52.756 -47.002 49.086 -46.848 49.009 -45.060 49.009 -44.997 49.242 -44.997 53.009 ; #1681 13 -47.002 52.504 -49.998 52.504 -90.000 52.504 ; #1682 13 -32.230 127.512 -40.008 127.512 -49.998 127.512 -90.000 127.512 ; #1683 13 -38.384 142.522 -40.008 142.522 -49.998 142.522 -90.000 142.522 ; #1684 13 -38.066 140.987 -35.291 140.987 ; #1685 13 -31.001 159.512 -31.932 159.512 -32.002 159.280 -32.002 158.619 -31.827 158.522 -31.036 158.522 -31.001 158.619 -31.001 159.512 ; #1686 13 90.000 -82.504 82.507 -82.504 ; #1687 13 90.000 -67.494 82.954 -67.494 ; #1688 13 90.000 -52.504 82.672 -52.504 ; #1689 13 90.000 -37.495 83.494 -37.495 ; #1690 13 90.000 -22.485 82.782 -22.485 ; #1691 13 82.324 -22.485 82.078 -22.485 ; #1692 13 81.341 -22.485 81.095 -22.485 ; #1693 13 90.000 97.513 81.496 97.513 ; #1694 13 -44.271 -177.537 -43.110 -177.537 -43.110 -175.053 -44.902 -175.053 -44.902 -177.478 -44.666 -177.537 -44.271 -177.537 ; #1695 13 90.000 -172.469 70.515 -172.469 ; #1696 13 -44.918 -172.469 -90.000 -172.469 ; #1697 13 -15.033 -172.469 -15.033 -177.518 -23.542 -177.518 -23.542 -172.469 ; #1698 13 81.496 112.523 77.840 114.581 ; #1699 13 54.504 50.160 54.420 50.238 54.322 50.315 54.209 50.315 54.166 50.296 54.025 50.277 53.968 50.082 53.813 50.082 53.813 50.063 53.869 49.849 53.813 49.713 53.855 49.519 53.827 49.325 53.855 49.150 53.855 49.131 53.813 49.053 53.713 48.937 53.727 48.742 53.755 48.529 53.684 48.587 53.656 48.568 53.656 48.432 53.599 48.412 53.585 48.451 53.443 48.393 53.443 48.276 53.400 48.082 53.328 48.043 53.185 48.179 53.157 48.218 53.128 48.276 52.985 48.393 52.971 48.412 52.957 48.548 52.971 48.587 52.855 48.665 52.769 48.509 52.712 48.432 52.683 48.432 52.669 48.529 52.683 48.568 52.640 48.762 52.554 48.820 52.409 48.975 52.481 49.170 52.481 49.228 52.467 49.422 52.380 49.403 52.380 49.597 52.337 49.713 52.192 49.888 52.192 50.082 52.148 50.121 52.018 50.335 52.018 50.432 51.974 50.607 51.902 50.801 51.757 50.859 51.844 50.995 51.916 51.189 52.032 51.383 52.177 51.519 52.207 51.519 52.337 51.481 52.496 51.578 52.640 51.597 52.654 51.791 52.741 51.830 52.884 51.908 52.928 51.986 52.971 52.063 53.114 52.219 53.257 52.238 53.300 52.238 53.443 52.219 53.585 52.277 53.628 52.296 53.769 52.413 53.841 52.432 53.982 52.471 54.081 52.510 54.223 52.413 54.279 52.277 54.322 52.471 54.364 52.607 ; #1700 13 45.523 58.573 45.539 58.592 45.554 58.592 45.570 58.612 45.601 58.632 45.694 58.632 45.726 58.651 45.772 58.651 45.835 58.728 45.866 58.767 45.898 58.806 45.913 58.845 45.913 58.903 45.898 58.942 45.898 58.961 45.929 58.961 45.944 58.981 45.944 59.000 45.929 59.020 45.929 59.078 45.973 59.113 46.004 59.132 46.051 59.171 46.206 59.346 46.376 59.501 46.531 59.676 46.701 59.890 46.824 60.084 46.855 60.123 46.917 60.336 47.070 60.453 47.086 60.453 47.254 60.492 47.208 60.686 47.193 60.880 47.239 61.074 47.301 61.113 47.455 61.191 47.607 61.288 47.775 61.385 47.805 61.521 47.821 61.715 47.821 61.929 47.729 62.142 47.592 62.278 47.485 62.472 47.332 62.667 47.178 62.725 47.132 62.939 ; #1701 13 42.371 66.057 42.420 66.077 42.596 66.116 42.757 66.116 42.917 66.135 42.901 65.921 43.062 65.708 43.222 65.611 43.381 65.416 43.493 65.222 43.653 65.047 43.668 65.009 43.685 64.814 43.605 64.601 43.557 64.387 43.557 64.193 43.573 63.999 43.621 63.358 43.621 63.164 43.605 62.950 43.541 62.523 43.525 62.310 43.493 62.096 43.477 62.038 43.557 61.960 43.891 61.552 44.050 61.358 44.208 61.164 44.287 61.125 44.461 60.950 44.556 60.756 44.666 60.504 44.902 60.018 44.997 59.805 45.138 59.514 45.169 59.455 45.185 59.416 45.232 59.300 45.247 59.261 45.341 59.067 45.405 58.931 45.514 58.718 45.561 58.620 45.561 58.582 ; #1702 13 49.900 89.718 49.990 89.699 50.139 89.602 50.287 89.467 50.435 89.583 50.391 89.777 50.406 89.855 50.553 89.855 50.671 89.661 50.745 89.583 50.893 89.389 51.010 89.195 51.127 89.135 51.275 89.038 51.421 89.060 51.537 88.866 51.537 88.844 51.552 88.825 51.537 88.806 51.523 88.747 51.377 88.690 51.304 88.477 51.362 88.283 51.435 88.186 51.508 87.970 51.654 88.089 51.757 88.127 51.771 87.913 51.931 88.067 52.061 88.261 52.163 88.456 52.308 88.456 52.424 88.243 52.453 88.205 52.539 88.011 52.481 87.816 52.481 87.622 52.496 87.582 52.582 87.387 52.597 87.253 52.755 87.137 52.898 87.096 52.928 87.118 53.071 87.174 53.114 86.980 53.200 86.786 53.228 86.767 53.242 86.748 53.257 86.845 53.371 87.040 53.486 86.980 53.471 86.883 53.514 86.689 53.599 86.573 53.741 86.495 53.884 86.300 54.011 86.106 54.025 86.028 54.138 85.796 54.209 85.602 54.322 85.408 54.476 85.273 54.462 85.154 54.547 85.079 54.743 85.079 54.785 85.116 54.912 85.079 54.995 84.982 55.037 85.000 55.176 84.982 55.260 84.922 55.399 84.922 55.385 84.728 55.524 84.863 55.649 84.787 55.691 84.669 55.704 84.631 55.842 84.631 55.980 84.612 56.035 84.496 56.050 84.302 56.021 84.086 55.911 83.989 55.897 83.951 55.760 83.757 55.704 83.563 55.718 83.447 55.746 83.309 55.897 83.503 56.035 83.309 56.091 83.369 56.104 83.253 56.255 83.193 56.379 83.253 56.516 83.234 56.516 83.018 56.406 82.864 56.392 82.670 56.351 82.476 56.337 82.282 56.337 82.028 56.283 81.815 56.269 81.602 56.406 81.445 56.530 81.232 56.474 80.844 56.461 80.631 56.433 80.437 56.516 80.242 56.584 80.126 56.612 80.086 56.762 79.892 56.898 79.698 56.979 79.309 57.020 79.096 57.060 78.883 57.087 78.689 57.156 78.476 57.156 78.163 57.170 77.969 57.170 77.756 57.183 77.543 57.183 77.135 57.197 76.941 57.224 76.728 57.237 76.512 57.237 76.183 ; #1703 12 -90.000 -179.983 -51.003 -179.983 -50.487 -179.304 -49.998 -178.643 -49.475 -177.982 -49.176 -177.594 -49.085 -177.478 -48.770 -177.089 -48.134 -176.275 -48.119 -176.275 -47.966 -176.081 -47.890 -175.983 -47.646 -175.673 -47.448 -175.441 -47.432 -175.420 -46.261 -173.985 -45.935 -173.596 -44.997 -172.469 -15.014 -172.469 -14.976 -172.488 -14.748 -172.663 -14.691 -172.722 -14.386 -172.954 -14.005 -173.246 -13.301 -173.769 -13.205 -173.847 -13.033 -173.985 -12.613 -174.295 -12.556 -174.333 -12.498 -174.373 -12.460 -174.411 -12.383 -174.468 -12.268 -174.565 -12.058 -174.702 -12.039 -174.721 -12.001 -174.759 -11.713 -174.975 -11.694 -174.975 -10.966 -175.517 -10.793 -175.673 -10.774 -175.673 -10.332 -176.021 -9.947 -176.312 -9.909 -176.334 -9.409 -176.701 -9.332 -176.760 -9.120 -176.917 -8.002 -177.750 -7.751 -177.925 -7.693 -177.982 -6.843 -178.605 -6.495 -178.878 -5.953 -179.266 -5.644 -179.498 -5.005 -179.983 47.996 -179.983 48.331 179.396 48.633 178.814 48.770 178.541 48.785 178.503 48.980 178.134 49.040 178.018 49.236 177.648 49.281 177.570 49.505 177.122 49.998 176.151 50.057 176.017 50.797 174.560 50.930 174.288 50.959 174.212 51.062 174.018 51.559 173.025 52.069 171.960 52.184 171.706 52.272 171.531 52.330 171.415 52.417 171.221 52.518 171.027 52.618 170.832 52.662 170.735 52.776 170.482 52.848 170.328 52.992 170.037 53.064 170.115 53.235 170.347 53.335 170.503 53.378 170.560 53.492 170.735 53.578 170.851 53.705 171.027 54.046 171.512 54.130 171.647 54.385 172.017 54.525 172.230 54.582 172.289 55.071 173.025 55.392 173.511 55.738 174.018 56.000 174.425 56.207 174.735 56.385 175.027 56.890 175.803 57.026 176.017 57.230 176.346 57.662 177.025 57.997 177.551 58.291 178.018 58.411 178.209 58.464 178.309 58.862 178.967 58.994 179.183 59.494 -179.983 59.663 -179.711 59.846 -179.382 59.963 -179.188 60.002 -179.128 60.094 -178.975 60.300 -178.643 60.584 -178.176 60.712 -177.944 60.880 -177.672 60.995 -177.478 61.276 -176.973 61.859 -175.965 61.997 -175.692 62.160 -175.420 62.399 -174.975 62.573 -174.662 62.921 -173.985 63.033 -173.769 63.439 -172.973 63.660 -172.585 64.002 -171.965 64.269 -171.460 64.595 -170.837 64.799 -170.430 64.991 -169.963 65.181 -169.634 65.372 -169.227 65.490 -168.973 65.502 -168.954 67.957 -168.954 68.115 -169.130 68.272 -169.343 68.430 -169.537 68.597 -169.769 68.754 -169.963 68.754 -169.985 68.998 -170.314 69.153 -170.546 69.352 -170.818 69.461 -170.975 69.637 -171.225 69.812 -171.498 70.007 -171.770 70.137 -171.983 70.364 -172.294 70.686 -172.760 71.007 -173.246 71.535 -174.082 71.787 -174.489 72.089 -174.994 72.379 -175.479 72.430 -175.576 72.677 -175.983 72.809 -176.197 73.004 -176.488 73.115 -176.663 73.338 -177.052 73.599 -177.478 73.789 -177.809 73.909 -178.023 74.088 -178.333 74.247 -178.624 74.483 -179.050 74.729 -179.517 74.826 -179.673 74.924 -179.886 74.953 -179.946 90.000 -179.946 ; % Normal time zones flag 9 label 1704 14 0 -87.000 0.000 0 ; label 1705 14 0 -87.000 15.000 +1 ; label 1706 14 0 -87.000 30.000 +2 ; label 1707 14 0 -87.000 45.000 +3 ; label 1708 14 0 -87.000 60.000 +4 ; label 1709 14 0 -87.000 75.000 +5 ; label 1710 14 0 -87.000 90.000 +6 ; label 1711 14 0 -87.000 105.000 +7 ; label 1712 14 0 -87.000 120.000 +8 ; label 1713 14 0 -87.000 135.000 +9 ; label 1714 14 0 -87.000 150.000 +10 ; label 1715 14 0 -87.000 165.000 +11 ; label 1716 14 0 -87.000 176.500 +12 ; label 1717 14 0 -87.000 -15.000 -1 ; label 1718 14 0 -87.000 -30.000 -2 ; label 1719 14 0 -87.000 -45.000 -3 ; label 1720 14 0 -87.000 -60.000 -4 ; label 1721 14 0 -87.000 -75.000 -5 ; label 1722 14 0 -87.000 -90.000 -6 ; label 1723 14 0 -87.000 -105.000 -7 ; label 1724 14 0 -87.000 -120.000 -8 ; label 1725 14 0 -87.000 -135.000 -9 ; label 1726 14 0 -87.000 -150.000 -10 ; label 1727 14 0 -87.000 -165.000 -11 ; label 1728 14 0 -87.000 -177.000 -12 ; % Exceptional time zones flag 17 label 1729 14 0 31.000 54.000 +3:30 ; label 1730 14 0 34.000 67.000 +4:30 ; label 1731 14 0 22.000 78.000 +5:30 ; label 1732 14 0 28.000 83.000 +5:45 ; label 1733 14 0 21.000 96.000 +6:30 ; label 1734 14 0 -21.000 133.000 +9:30 ; label 1735 14 0 50.000 -54.000 -3:30 ; end sunclock-3.57/vmf/countries.vmf0000644000000000000000001156251110445325475013521 0ustar %!VMF % Vector Map Format for Sunclock % % List of colors #CCFCF0 % 0 #FFFFFF % 1 #FFFF7E % 2 #66FFFF % 3 #B3CC33 % 4 #FFCC33 % 5 #00CCCC % 6 #FFA699 % 7 #B3997E % 8 #CCFF33 % 9 #99FFB5 % 10 #4BFF7E % 11 #7EFF33 % 12 #E6667E % 13 #D3BE7E % 14 #FFD9B3 % 15 #7ECCCC % 16 #666666 % 17 #686868 % 18 #000000 % 19 #000066 % 20 #660000 % 21 #0000AA % 22 #000066 % 23 #000066 % 24 #000066 % 25 #000066 % 26 ; % Default color 0 % Palette (possibly several codes for each color: ci j1 j2 j3 ... ) c0 0 c1 1 c2 2 c3 3 c4 4 c5 5 c6 6 c7 7 c8 8 c9 9 c10 10 c11 11 c12 12 c13 13 c14 14 c15 15 c16 16 c17 17 c18 18 c19 19 c20 20 c21 21 c22 22 c23 23 c24 24 c25 25 c26 26 ; % Background value 1 % Coordinate range (latitude, longitude) range -90 90 -180 180 % List of closed curves of land areas & lakes % Set internal flag flag 2 % Fill mode = fill areas within closed curves fillmode 2 closedcurves #0 1 -76.435 -150.090 -76.425 -149.851 -76.414 -149.667 -76.425 -149.551 -76.459 -149.480 -76.524 -149.844 -76.600 -149.853 -76.634 -149.768 -76.613 -149.501 -76.624 -149.358 -76.655 -149.254 -76.700 -149.107 -76.734 -149.023 -76.765 -148.944 -76.810 -148.871 -76.855 -148.814 -76.875 -149.095 -76.865 -149.225 -76.844 -149.374 -76.844 -149.834 -76.823 -149.938 -76.791 -150.060 -76.757 -150.214 -76.747 -150.331 -76.737 -150.406 -76.726 -150.536 -76.715 -150.693 -76.737 -150.931 -76.849 -151.048 -76.925 -151.057 -76.936 -150.927 -76.881 -150.642 -76.870 -150.413 -76.948 -150.600 -76.948 -150.442 -76.991 -150.290 -77.024 -150.148 -77.058 -150.032 -77.069 -149.875 -77.090 -149.783 -77.111 -150.065 -77.101 -150.281 -77.079 -150.442 -77.079 -150.601 -77.069 -150.760 -77.048 -150.892 -77.038 -151.023 -77.017 -151.185 -76.983 -151.312 -76.972 -151.487 -77.084 -151.676 -77.119 -151.693 -77.150 -151.559 -77.150 -151.096 -77.171 -150.948 -77.226 -150.887 -77.247 -150.795 -77.268 -150.691 -77.289 -150.501 -77.310 -150.351 -77.355 -150.118 -77.388 -150.002 -77.430 -149.805 -77.465 -149.675 -77.498 -149.530 -77.520 -149.426 -77.520 -149.151 -77.475 -148.864 -77.443 -148.929 -77.433 -149.063 -77.412 -149.156 -77.347 -149.191 -77.347 -149.005 -77.357 -148.860 -77.378 -148.639 -77.367 -148.368 -77.255 -148.256 -77.223 -147.886 -77.223 -147.714 -77.168 -147.272 -77.079 -147.207 -77.101 -147.018 -77.079 -146.819 -76.980 -146.757 -77.001 -146.623 -77.043 -146.487 -77.077 -146.400 -77.098 -146.267 -77.132 -146.207 -77.176 -146.158 -77.221 -146.066 -77.153 -145.712 -77.064 -145.650 -77.029 -145.780 -76.975 -145.903 -76.852 -145.640 -76.818 -145.843 -76.797 -145.964 -76.742 -145.998 -76.752 -145.822 -76.773 -145.632 -76.773 -145.391 -76.804 -145.224 -76.804 -145.080 -76.760 -145.115 -76.718 -145.155 -76.684 -145.230 -76.684 -145.431 -76.674 -145.561 -76.629 -145.680 -76.595 -145.780 -76.584 -145.610 -76.519 -145.193 -76.498 -145.310 -76.477 -145.473 -76.446 -145.682 -76.425 -145.845 -76.393 -145.994 -76.372 -146.086 -76.341 -146.165 -76.307 -146.264 -76.286 -146.383 -76.252 -146.455 -76.231 -146.573 -76.220 -146.746 -76.231 -146.955 -76.220 -147.085 -76.210 -147.229 -76.200 -147.458 -76.210 -147.771 -76.275 -148.101 -76.265 -148.259 -76.254 -148.489 -76.234 -148.723 -76.234 -148.866 -76.212 -149.054 -76.234 -149.251 -76.299 -149.583 -76.320 -149.837 -76.443 -150.119 ; #1 1 -75.346 -145.454 -75.411 -145.752 -75.422 -145.959 -75.443 -146.150 -75.566 -146.308 -75.576 -146.191 -75.566 -145.998 -75.610 -145.909 -75.610 -145.767 -75.621 -145.612 -75.642 -145.538 -75.642 -145.498 -75.652 -145.327 -75.652 -144.806 -75.642 -144.639 -75.610 -144.409 -75.610 -144.211 -75.532 -143.843 -75.443 -143.840 -75.388 -143.567 -75.353 -143.276 -75.343 -143.085 -75.343 -142.849 -75.353 -142.676 -75.364 -142.521 -75.322 -142.241 -75.243 -142.237 -75.223 -142.342 -75.254 -142.569 -75.254 -142.710 -75.243 -142.851 -75.223 -142.884 -75.202 -143.002 -75.223 -143.217 -75.267 -143.503 -75.257 -143.619 -75.235 -143.735 -75.235 -143.903 -75.215 -144.049 -75.194 -144.179 -75.205 -144.385 -75.194 -144.526 -75.205 -144.731 -75.205 -144.911 -75.293 -145.110 -75.327 -145.026 -75.348 -144.921 -75.382 -144.836 -75.414 -144.758 -75.448 -145.077 -75.427 -145.207 -75.396 -145.298 -75.374 -145.414 -75.353 -145.458 ; #2 1 -74.842 -138.894 -74.832 -138.792 -74.823 -138.621 -74.813 -138.338 -74.804 -138.154 -74.813 -137.922 -74.813 -137.629 -74.773 -137.757 -74.754 -137.940 -74.734 -138.122 -74.715 -138.262 -74.696 -138.432 -74.686 -138.634 -74.696 -138.819 -74.808 -138.975 -74.849 -138.918 -74.849 -138.905 ; #3 1 -73.937 -113.002 -74.009 -113.187 -74.131 -113.278 -74.213 -113.248 -74.232 -113.127 -74.181 -112.893 -74.191 -112.732 -74.303 -112.928 -74.416 -113.279 -74.454 -113.203 -74.464 -113.067 -74.454 -112.911 -74.454 -112.747 -74.445 -112.579 -74.445 -112.440 -74.475 -112.339 -74.588 -112.456 -74.607 -112.279 -74.607 -111.877 -74.548 -111.572 -74.548 -111.407 -74.466 -111.097 -74.447 -111.244 -74.418 -111.404 -74.368 -111.475 -74.265 -111.417 -74.234 -111.189 -74.193 -111.274 -74.143 -111.331 -74.092 -111.402 -74.002 -111.432 -73.983 -111.565 -73.963 -111.697 -73.963 -111.836 -73.954 -111.984 -73.954 -112.123 -73.935 -112.297 -73.925 -112.458 -73.925 -112.622 -73.944 -112.791 -73.944 -113.010 ; #4 1 -74.351 -109.763 -74.433 -109.839 -74.536 -109.797 -74.617 -110.122 -74.729 -110.414 -74.789 -110.332 -74.902 -110.597 -74.933 -110.493 -74.952 -110.330 -74.993 -110.173 -75.037 -110.045 -74.984 -109.810 -74.964 -109.557 -74.882 -109.273 -74.873 -109.105 -74.873 -108.617 -74.892 -108.494 -74.933 -108.393 -74.952 -108.258 -74.962 -108.077 -74.952 -107.854 -74.962 -107.689 -75.003 -107.603 -75.058 -107.523 -75.037 -107.306 -75.026 -107.120 -75.037 -106.905 -75.068 -106.764 -75.013 -106.513 -75.013 -106.108 -74.909 -105.776 -74.859 -105.503 -74.849 -105.281 -74.849 -105.073 -74.840 -104.917 -74.799 -104.689 -74.799 -104.299 -74.779 -104.129 -74.779 -103.892 -74.789 -103.742 -74.789 -103.533 -74.758 -103.638 -74.739 -103.817 -74.720 -104.080 -74.710 -104.328 -74.701 -104.547 -74.681 -104.683 -74.662 -104.849 -74.624 -104.984 -74.583 -105.087 -74.533 -105.187 -74.502 -105.359 -74.502 -105.537 -74.512 -105.692 -74.615 -105.826 -74.686 -106.103 -74.626 -106.188 -74.555 -106.215 -74.442 -106.150 -74.401 -106.281 -74.332 -106.338 -74.229 -106.355 -74.198 -106.471 -74.148 -106.612 -74.129 -106.789 -74.119 -106.938 -74.119 -107.102 -74.129 -107.269 -74.129 -107.433 -74.148 -107.614 -74.179 -107.840 -74.311 -107.800 -74.423 -107.938 -74.526 -108.019 -74.564 -107.873 -74.574 -107.736 -74.593 -107.626 -74.612 -107.436 -74.643 -107.320 -74.675 -107.522 -74.675 -107.661 -74.713 -107.861 -74.794 -107.850 -74.825 -107.748 -74.844 -107.570 -74.895 -107.870 -74.885 -108.020 -74.835 -108.136 -74.763 -108.243 -74.703 -108.327 -74.653 -108.467 -74.612 -108.636 -74.574 -108.770 -74.543 -109.012 -74.524 -109.189 -74.504 -109.310 -74.475 -109.442 -74.414 -109.508 -74.385 -109.640 -74.366 -109.774 ; #5 1 -72.484 -98.832 -72.433 -98.852 -72.403 -98.957 -72.393 -99.078 -72.393 -99.226 -72.403 -99.413 -72.422 -99.576 -72.403 -99.722 -72.362 -99.877 -72.371 -100.052 -72.362 -100.198 -72.381 -100.399 -72.493 -100.697 -72.525 -100.581 -72.544 -100.435 -72.575 -100.196 -72.594 -99.980 -72.604 -99.616 -72.613 -99.467 -72.604 -99.306 -72.575 -99.091 -72.484 -98.826 ; #6 1 -73.961 -101.515 -73.970 -101.680 -73.999 -101.899 -74.040 -102.152 -74.110 -102.395 -74.181 -102.351 -74.232 -102.262 -74.344 -102.292 -74.385 -102.159 -74.395 -101.967 -74.404 -101.761 -74.414 -101.611 -74.433 -101.474 -74.452 -101.364 -74.502 -101.286 -74.615 -101.302 -74.718 -101.443 -74.799 -101.718 -74.818 -101.844 -74.890 -101.799 -74.950 -101.724 -74.981 -101.549 -75.000 -101.314 -75.011 -101.136 -75.032 -100.810 -75.042 -100.590 -74.935 -100.255 -74.955 -100.063 -74.974 -99.854 -74.993 -99.673 -74.911 -99.400 -74.799 -99.260 -74.749 -99.340 -74.708 -99.445 -74.670 -99.542 -74.660 -99.722 -74.660 -99.861 -74.670 -100.070 -74.639 -100.245 -74.620 -100.382 -74.548 -100.454 -74.548 -100.315 -74.538 -100.148 -74.507 -99.924 -74.469 -100.020 -74.459 -100.170 -74.430 -100.267 -74.358 -100.022 -74.268 -100.122 -74.217 -100.199 -74.198 -100.348 -74.208 -100.568 -74.258 -100.836 -74.277 -101.029 -74.258 -101.178 -74.208 -101.242 -74.126 -101.273 -74.054 -101.344 -74.016 -101.425 -73.954 -101.497 ; #7 1 -72.163 -79.019 -72.276 -79.228 -72.357 -79.174 -72.367 -79.050 -72.376 -78.926 -72.417 -78.838 -72.467 -78.747 -72.536 -78.680 -72.639 -78.837 -72.680 -79.046 -72.699 -79.204 -72.790 -79.161 -72.840 -79.071 -72.860 -79.015 -72.910 -78.924 -72.929 -78.811 -72.939 -78.673 -72.939 -78.648 -72.826 -78.380 -72.766 -78.175 -72.726 -77.979 -72.694 -77.795 -72.685 -77.649 -72.685 -77.513 -72.572 -77.409 -72.470 -77.386 -72.379 -77.295 -72.309 -77.351 -72.268 -77.441 -72.249 -77.554 -72.240 -77.703 -72.352 -77.939 -72.362 -78.097 -72.343 -78.211 -72.324 -78.337 -72.304 -78.450 -72.254 -78.539 -72.194 -78.631 -72.166 -78.733 -72.156 -78.869 -72.166 -79.015 ; #8 1 -69.929 -74.514 -69.967 -74.499 -70.047 -74.449 -70.118 -74.382 -70.188 -74.313 -70.238 -74.210 -70.279 -74.110 -70.320 -73.997 -70.358 -73.893 -70.399 -73.793 -70.408 -73.686 -70.427 -73.563 -70.468 -73.448 -70.571 -73.425 -70.684 -73.623 -70.684 -73.610 -70.703 -73.473 -70.744 -73.373 -70.813 -73.314 -70.844 -73.201 -70.863 -73.076 -70.873 -72.942 -70.901 -72.814 -70.882 -72.649 -70.892 -72.514 -70.882 -72.371 -70.863 -72.206 -70.925 -71.981 -70.925 -71.848 -70.935 -71.725 -70.954 -71.600 -70.954 -71.455 -70.945 -71.312 -70.842 -71.180 -70.801 -70.993 -70.820 -70.868 -70.890 -70.807 -70.930 -70.704 -70.949 -70.578 -70.847 -70.472 -70.777 -70.546 -70.736 -70.649 -70.695 -70.764 -70.592 -70.803 -70.564 -70.906 -70.533 -71.030 -70.514 -71.156 -70.494 -71.279 -70.475 -71.404 -70.475 -71.549 -70.485 -71.691 -70.465 -71.815 -70.446 -71.927 -70.437 -72.062 -70.418 -72.186 -70.367 -72.265 -70.264 -72.210 -70.183 -71.981 -70.183 -71.706 -70.114 -71.491 -70.082 -71.327 -69.981 -71.237 -69.952 -71.353 -69.915 -71.450 -69.857 -71.551 -69.791 -71.621 -69.783 -71.613 -69.706 -71.673 -69.609 -71.546 -69.503 -71.523 -69.455 -71.610 -69.437 -71.657 -69.455 -71.777 -69.474 -71.925 -69.541 -72.130 -69.550 -72.281 -69.541 -72.416 -69.541 -72.455 -69.579 -72.540 -69.645 -72.744 -69.674 -72.915 -69.683 -73.054 -69.692 -73.193 -69.683 -73.328 -69.683 -73.459 -69.674 -73.593 -69.683 -73.733 -69.692 -73.884 -69.701 -74.024 -69.719 -74.172 -69.746 -74.341 -69.776 -74.238 -69.823 -74.415 -69.920 -74.508 ; #9 1 -71.383 -74.694 -71.455 -74.614 -71.474 -74.501 -71.474 -74.355 -71.483 -74.232 -71.414 -74.290 -71.354 -74.303 -71.354 -74.368 -71.363 -74.524 -71.383 -74.692 ; #10 1 -71.230 -73.914 -71.260 -73.801 -71.301 -73.687 -71.383 -73.641 -71.414 -73.540 -71.433 -73.416 -71.320 -73.344 -71.280 -73.459 -71.210 -73.517 -71.201 -73.508 -71.201 -73.731 -71.230 -73.908 ; #11 1 -71.107 -73.274 -71.117 -73.151 -71.127 -73.017 -71.155 -72.901 -71.186 -72.801 -71.227 -72.699 -71.208 -72.545 -71.148 -72.336 -71.078 -72.395 -71.059 -72.533 -71.040 -72.659 -71.021 -72.796 -71.002 -72.921 -70.983 -72.993 -70.973 -73.049 -71.014 -73.237 -71.117 -73.281 ; #12 1 -71.941 -73.744 -71.941 -73.475 -71.960 -73.336 -71.979 -73.222 -72.048 -73.162 -72.079 -73.049 -72.099 -72.909 -72.118 -72.795 -72.086 -72.626 -72.086 -72.467 -72.096 -72.342 -72.127 -72.228 -72.147 -72.114 -72.147 -71.803 -72.166 -71.688 -72.185 -71.548 -72.185 -71.237 -72.194 -71.100 -72.194 -70.940 -72.185 -70.782 -72.082 -70.568 -71.969 -70.425 -71.969 -70.559 -72.029 -70.756 -72.060 -70.937 -72.079 -71.104 -72.070 -71.242 -72.060 -71.366 -72.029 -71.481 -72.010 -71.595 -72.000 -71.745 -71.991 -71.870 -71.931 -71.659 -71.881 -71.459 -71.881 -71.165 -71.871 -71.007 -71.840 -70.841 -71.780 -70.925 -71.799 -71.080 -71.799 -71.226 -71.790 -71.351 -71.730 -71.435 -71.730 -71.581 -71.711 -71.695 -71.661 -71.802 -71.610 -71.895 -71.550 -71.978 -71.469 -72.038 -71.437 -72.138 -71.529 -72.369 -71.632 -72.532 -71.722 -72.775 -71.732 -72.932 -71.732 -73.079 -71.713 -73.218 -71.672 -73.308 -71.653 -73.422 -71.643 -73.570 -71.615 -73.673 -71.718 -73.637 -71.768 -73.545 -71.818 -73.465 -71.921 -73.682 -71.941 -73.741 ; #13 1 -67.649 -65.482 -67.756 -65.484 -67.783 -65.367 -67.880 -65.562 -67.977 -65.668 -67.977 -65.528 -67.967 -65.392 -67.977 -65.271 -67.959 -65.116 -67.862 -64.960 -67.900 -64.852 -67.927 -64.734 -68.033 -64.885 -68.042 -65.021 -68.069 -65.172 -68.107 -65.345 -68.164 -65.534 -68.231 -65.450 -68.249 -65.336 -68.240 -65.188 -68.249 -65.067 -68.335 -65.280 -68.344 -65.417 -68.430 -65.360 -68.495 -65.274 -68.524 -65.170 -68.524 -65.017 -68.542 -64.903 -68.534 -64.755 -68.542 -64.633 -68.542 -64.479 -68.524 -64.336 -68.562 -64.239 -68.590 -64.120 -68.619 -63.991 -68.637 -63.864 -68.646 -63.809 -68.599 -63.911 -68.581 -64.037 -68.542 -64.159 -68.542 -64.017 -68.465 -64.082 -68.437 -64.211 -68.398 -64.320 -68.301 -64.188 -68.225 -63.996 -68.195 -63.843 -68.177 -63.675 -68.168 -63.539 -68.168 -63.258 -68.159 -63.110 -68.168 -62.977 -68.186 -62.851 -68.204 -62.725 -68.281 -62.928 -68.225 -63.024 -68.206 -63.137 -68.198 -63.259 -68.216 -63.426 -68.254 -63.586 -68.263 -63.735 -68.369 -63.909 -68.434 -63.834 -68.452 -63.708 -68.461 -63.587 -68.470 -63.543 -68.497 -63.424 -68.527 -63.308 -68.565 -63.185 -68.574 -63.334 -68.556 -63.461 -68.538 -63.575 -68.644 -63.624 -68.673 -63.507 -68.770 -63.563 -68.808 -63.465 -68.818 -63.331 -68.923 -63.407 -69.020 -63.578 -69.020 -63.436 -68.944 -63.231 -68.971 -63.123 -69.164 -63.024 -69.138 -62.872 -69.147 -62.725 -69.164 -62.597 -69.233 -62.510 -69.250 -62.396 -69.356 -62.407 -69.453 -62.399 -69.559 -62.446 -69.656 -62.514 -69.674 -62.374 -69.721 -62.282 -69.769 -62.178 -69.816 -62.061 -69.873 -61.965 -69.949 -61.884 -70.016 -62.096 -70.006 -62.231 -69.987 -62.358 -70.099 -62.384 -70.169 -62.303 -70.219 -62.206 -70.279 -62.129 -70.298 -62.002 -70.288 -61.848 -70.269 -61.688 -70.269 -61.556 -70.260 -61.416 -70.372 -61.542 -70.362 -61.677 -70.465 -61.847 -70.465 -61.980 -70.475 -62.121 -70.516 -62.014 -70.628 -62.053 -70.669 -61.945 -70.679 -61.797 -70.567 -61.734 -70.547 -61.584 -70.578 -61.455 -70.578 -61.323 -70.691 -61.281 -70.763 -61.201 -70.801 -61.091 -70.851 -60.991 -70.901 -60.892 -70.951 -61.070 -71.024 -60.991 -71.093 -60.908 -71.112 -61.084 -71.093 -61.199 -71.165 -61.119 -71.193 -61.291 -71.244 -61.470 -71.304 -61.659 -71.407 -61.872 -71.437 -61.754 -71.407 -61.580 -71.378 -61.420 -71.306 -61.195 -71.347 -61.100 -71.397 -60.999 -71.437 -60.902 -71.540 -61.049 -71.643 -61.290 -71.643 -61.437 -71.634 -61.575 -71.643 -61.730 -71.653 -61.873 -71.672 -62.037 -71.682 -62.193 -71.682 -62.474 -71.732 -62.386 -71.741 -62.236 -71.782 -62.409 -71.833 -62.337 -71.823 -62.181 -71.823 -62.034 -71.814 -61.891 -71.794 -61.739 -71.804 -61.588 -71.844 -61.454 -71.895 -61.366 -71.804 -61.122 -71.814 -60.997 -71.775 -60.802 -71.878 -60.806 -71.907 -60.980 -71.957 -60.879 -71.998 -60.756 -72.039 -60.941 -72.089 -60.840 -72.201 -61.063 -72.192 -61.214 -72.182 -61.353 -72.163 -61.470 -72.254 -61.394 -72.314 -61.315 -72.417 -61.275 -72.457 -61.177 -72.398 -60.987 -72.379 -60.821 -72.379 -60.673 -72.419 -60.562 -72.510 -60.510 -72.613 -60.552 -72.726 -60.576 -72.716 -60.431 -72.726 -60.304 -72.745 -60.174 -72.633 -59.992 -72.613 -59.894 -72.594 -59.890 -72.532 -59.981 -72.472 -60.075 -72.369 -60.116 -72.256 -60.014 -72.153 -59.986 -72.113 -60.097 -72.084 -60.206 -72.021 -60.295 -72.021 -60.320 -71.941 -60.381 -71.941 -60.394 -71.828 -60.382 -71.725 -60.301 -71.622 -60.208 -71.519 -60.193 -71.416 -60.205 -71.354 -60.295 -71.251 -60.280 -71.160 -60.331 -71.057 -60.303 -70.995 -60.392 -70.913 -60.452 -70.810 -60.449 -70.801 -60.585 -70.782 -60.725 -70.741 -60.821 -70.638 -60.765 -70.628 -60.692 -70.525 -60.716 -70.413 -60.719 -70.413 -60.851 -70.394 -60.966 -70.332 -61.054 -70.229 -60.858 -70.219 -60.717 -70.179 -60.733 -70.076 -60.784 -70.016 -60.862 -69.967 -60.965 -69.920 -61.070 -69.855 -61.148 -69.758 -61.186 -69.719 -61.193 -69.758 -61.237 -69.758 -61.392 -69.672 -61.271 -69.586 -61.238 -69.480 -61.267 -69.383 -61.319 -69.278 -61.337 -69.221 -61.421 -69.124 -61.473 -69.027 -61.355 -68.921 -61.372 -68.824 -61.318 -68.718 -61.092 -68.621 -61.038 -68.536 -60.840 -68.509 -60.948 -68.452 -60.774 -68.470 -60.713 -68.432 -60.620 -68.432 -60.479 -68.405 -60.316 -68.423 -60.189 -68.432 -60.067 -68.335 -60.066 -68.353 -59.951 -68.315 -59.871 -68.209 -59.862 -68.112 -59.849 -68.015 -59.785 -67.909 -59.727 -67.812 -59.738 -67.756 -59.822 -67.738 -59.960 -67.719 -60.032 -67.719 -60.160 -67.711 -60.293 -67.701 -60.425 -67.693 -60.546 -67.701 -60.693 -67.683 -60.807 -67.598 -60.868 -67.501 -60.919 -67.404 -60.943 -67.307 -60.941 -67.210 -60.877 -67.113 -60.863 -67.007 -60.791 -66.910 -60.727 -66.813 -60.690 -66.707 -60.643 -66.610 -60.617 -66.514 -60.615 -66.437 -60.693 -66.380 -60.775 -66.295 -60.835 -66.198 -60.810 -66.101 -60.746 -66.004 -60.683 -65.907 -60.631 -66.013 -60.798 -66.109 -60.961 -66.119 -61.094 -66.022 -61.144 -65.974 -61.244 -65.936 -61.340 -66.033 -61.427 -66.051 -61.578 -66.157 -61.576 -66.263 -61.598 -66.254 -61.729 -66.157 -61.778 -66.092 -61.853 -66.033 -61.944 -66.006 -62.060 -65.988 -62.171 -65.988 -62.297 -66.026 -62.464 -66.017 -62.594 -66.056 -62.751 -66.132 -62.686 -66.161 -62.571 -66.200 -62.476 -66.238 -62.369 -66.315 -62.556 -66.400 -62.498 -66.466 -62.413 -66.524 -62.609 -66.457 -62.681 -66.372 -62.739 -66.306 -62.824 -66.258 -62.924 -66.202 -63.005 -66.134 -63.088 -66.087 -63.176 -66.069 -63.310 -66.040 -63.424 -65.984 -63.479 -66.081 -63.694 -66.178 -63.635 -66.178 -63.509 -66.216 -63.677 -66.281 -63.868 -66.340 -63.777 -66.376 -63.956 -66.473 -64.073 -66.569 -64.064 -66.569 -63.926 -66.588 -63.815 -66.606 -63.703 -66.703 -63.670 -66.741 -63.827 -66.732 -63.959 -66.714 -64.082 -66.705 -64.201 -66.696 -64.344 -66.705 -64.490 -66.752 -64.667 -66.808 -64.840 -66.867 -64.750 -66.903 -64.652 -67.009 -64.740 -67.086 -64.677 -67.124 -64.847 -67.142 -65.001 -67.181 -65.160 -67.133 -65.260 -67.239 -65.387 -67.336 -65.504 -67.404 -65.421 -67.422 -65.296 -67.469 -65.197 -67.537 -65.392 -67.623 -65.427 ; #14 1 -69.500 -61.924 -69.415 -61.842 -69.309 -61.743 -69.212 -61.653 -69.164 -61.756 -69.079 -61.817 -69.022 -61.901 -68.946 -61.981 -68.908 -62.079 -68.926 -62.235 -69.022 -62.290 -69.119 -62.227 -69.167 -62.124 -69.264 -62.061 -69.370 -62.033 -69.467 -62.049 -69.505 -61.937 ; #15 1 -65.711 -62.349 -65.787 -62.284 -65.787 -62.147 -65.815 -62.043 -65.891 -61.979 -65.929 -61.871 -65.957 -61.755 -65.871 -61.551 -65.843 -61.404 -65.862 -61.282 -65.765 -61.279 -65.726 -61.112 -65.774 -61.023 -65.842 -60.940 -65.745 -60.888 -65.726 -60.725 -65.718 -60.593 -65.718 -60.506 -65.641 -60.435 -65.544 -60.373 -65.447 -60.322 -65.350 -60.248 -65.244 -60.094 -65.158 -59.894 -65.091 -59.718 -65.034 -59.551 -65.016 -59.477 -64.979 -59.585 -64.933 -59.689 -64.880 -59.515 -64.906 -59.409 -64.852 -59.333 -64.807 -59.437 -64.753 -59.522 -64.652 -59.511 -64.559 -59.373 -64.477 -59.181 -64.432 -59.025 -64.395 -58.876 -64.341 -58.703 -64.333 -58.833 -64.305 -58.936 -64.260 -59.039 -64.251 -59.168 -64.186 -59.246 -64.132 -59.343 -64.141 -59.483 -64.234 -59.474 -64.298 -59.397 -64.335 -59.557 -64.234 -59.609 -64.199 -59.719 -64.234 -59.878 -64.262 -59.921 -64.324 -60.100 -64.398 -60.287 -64.471 -60.464 -64.572 -60.607 -64.664 -60.746 -64.738 -60.935 -64.783 -61.092 -64.828 -61.260 -64.884 -61.425 -64.977 -61.492 -65.023 -61.663 -64.977 -61.753 -65.052 -61.945 -65.158 -61.945 -65.255 -61.945 -65.293 -61.850 -65.303 -61.721 -65.312 -61.592 -65.348 -61.756 -65.348 -61.881 -65.445 -62.018 -65.542 -62.219 -65.639 -62.333 -65.715 -62.343 ; #16 1 -71.059 -11.551 -71.162 -11.592 -71.275 -11.598 -71.378 -11.521 -71.418 -11.386 -71.450 -11.249 -71.450 -11.102 -71.431 -10.963 -71.339 -10.805 -71.236 -10.660 -71.133 -10.500 -71.052 -10.332 -70.983 -10.170 -70.880 -10.025 -70.848 -10.175 -70.829 -10.315 -70.779 -10.420 -70.789 -10.434 -70.770 -10.574 -70.750 -10.702 -70.810 -10.862 -70.820 -11.010 -70.851 -11.176 -70.911 -11.325 -71.014 -11.393 -71.064 -11.553 ; #17 1 -70.679 -9.830 -70.669 -9.787 -70.679 -9.657 -70.688 -9.503 -70.791 -9.617 -70.832 -9.495 -70.842 -9.365 -70.873 -9.227 -70.911 -9.091 -70.973 -8.961 -71.043 -8.845 -71.146 -8.765 -71.258 -8.726 -71.371 -8.701 -71.474 -8.647 -71.564 -8.523 -71.596 -8.397 -71.596 -8.250 -71.545 -8.092 -71.505 -7.949 -71.495 -7.800 -71.495 -7.520 -71.486 -7.359 -71.383 -7.362 -71.280 -7.606 -71.177 -7.659 -71.105 -7.510 -71.002 -7.342 -70.890 -7.184 -70.787 -7.044 -70.736 -6.900 -70.695 -6.747 -70.655 -6.594 -70.564 -6.442 -70.514 -6.288 -70.483 -6.149 -70.473 -5.990 -70.464 -5.856 -70.483 -5.716 -70.533 -5.581 -70.564 -5.495 -70.676 -5.428 -70.736 -5.584 -70.787 -5.740 -70.837 -5.894 -70.897 -6.039 -71.000 -6.098 -71.102 -6.107 -71.193 -5.992 -71.203 -5.836 -71.184 -5.674 -71.174 -5.514 -71.165 -5.366 -71.155 -5.219 -71.136 -5.069 -71.117 -4.932 -71.078 -4.780 -71.069 -4.645 -71.088 -4.516 -71.107 -4.361 -71.107 -4.215 -71.088 -4.066 -71.069 -3.905 -71.100 -3.777 -71.110 -3.634 -71.100 -3.487 -71.081 -3.325 -71.081 -3.046 -71.030 -2.905 -71.021 -2.770 -71.021 -2.613 -71.002 -2.477 -70.961 -2.337 -71.074 -2.342 -71.155 -2.223 -71.258 -2.133 -71.198 -1.991 -71.198 -1.699 -71.227 -1.558 -71.167 -1.415 -71.086 -1.258 -71.067 -1.110 -71.076 -0.978 -71.138 -0.854 -71.241 -0.827 -71.344 -0.920 -71.395 -0.768 -71.404 -0.636 -71.423 -0.492 -71.442 -0.348 -71.380 -0.206 -71.299 -0.062 -71.280 -0.011 -71.198 0.146 -71.117 0.314 -71.048 0.496 -70.956 0.665 -70.937 0.840 -70.918 1.012 -70.890 1.213 -70.848 1.443 -70.808 1.645 -70.777 1.870 -70.726 2.048 -70.707 2.195 -70.688 2.366 -70.657 2.553 -70.626 2.701 -70.597 2.877 -70.597 3.258 -70.588 3.403 -70.568 3.602 -70.540 3.813 -70.499 4.106 -70.468 4.356 -70.468 4.513 -70.449 4.748 -70.439 4.905 -70.420 5.127 -70.411 5.352 -70.401 5.509 -70.411 5.681 -70.411 6.177 -70.401 6.350 -70.391 6.519 -70.361 6.665 -70.310 6.823 -70.219 6.970 -70.107 7.106 -70.037 7.253 -69.977 7.398 -69.967 7.359 -69.870 7.218 -69.805 7.077 -69.787 7.053 -69.778 6.922 -69.778 6.791 -69.769 6.661 -69.807 6.504 -69.825 6.464 -69.843 6.308 -69.852 6.176 -69.843 6.021 -69.835 5.891 -69.816 5.748 -69.846 5.604 -69.911 5.469 -70.018 5.439 -69.990 5.310 -69.932 5.169 -69.940 5.026 -69.958 4.868 -69.977 4.724 -69.985 4.592 -70.004 4.436 -70.023 4.303 -70.054 4.157 -70.004 4.029 -69.907 4.087 -69.907 3.956 -69.925 3.812 -69.859 3.673 -69.841 3.531 -69.850 3.387 -69.877 3.242 -69.895 3.110 -69.895 2.966 -69.913 2.833 -69.932 2.701 -69.940 2.556 -69.922 2.415 -69.866 2.276 -69.857 2.122 -69.800 1.996 -69.771 1.947 -69.744 1.818 -69.744 1.688 -69.735 1.545 -69.744 1.401 -69.753 1.245 -69.762 1.113 -69.780 0.968 -69.798 0.810 -69.798 0.708 -69.780 0.578 -69.798 0.433 -69.807 0.392 -69.798 0.262 -69.769 0.241 -69.663 0.241 -69.607 0.116 -69.616 -0.027 -69.616 -0.051 -69.607 -0.181 -69.607 -0.324 -69.616 -0.469 -69.597 -0.609 -69.597 -0.752 -69.616 -0.885 -69.713 -0.973 -69.798 -1.127 -69.846 -1.212 -69.893 -1.361 -69.911 -1.507 -69.911 -1.650 -69.920 -1.795 -69.938 -1.941 -69.956 -2.074 -69.956 -2.218 -69.947 -2.361 -69.947 -2.503 -69.965 -2.650 -70.076 -2.759 -70.179 -2.671 -70.260 -2.816 -70.269 -2.962 -70.288 -3.108 -70.288 -3.253 -70.185 -3.287 -70.135 -3.254 -70.126 -3.384 -70.116 -3.514 -70.116 -3.949 -70.135 -4.084 -70.145 -4.229 -70.145 -4.373 -70.155 -4.518 -70.126 -4.657 -70.126 -4.801 -70.145 -4.936 -70.164 -5.083 -70.195 -5.233 -70.195 -5.376 -70.185 -5.519 -70.185 -5.806 -70.205 -5.954 -70.308 -5.911 -70.358 -5.985 -70.358 -6.129 -70.339 -6.269 -70.267 -6.371 -70.267 -6.383 -70.207 -6.527 -70.238 -6.678 -70.238 -6.821 -70.229 -6.963 -70.238 -7.110 -70.298 -7.279 -70.288 -7.132 -70.288 -7.000 -70.317 -6.863 -70.336 -7.011 -70.336 -7.155 -70.356 -7.303 -70.437 -7.453 -70.478 -7.594 -70.478 -7.739 -70.516 -7.880 -70.487 -8.005 -70.456 -7.881 -70.475 -8.018 -70.444 -8.155 -70.341 -8.248 -70.291 -8.368 -70.322 -8.519 -70.341 -8.656 -70.322 -8.783 -70.291 -8.908 -70.291 -9.052 -70.332 -9.205 -70.361 -9.344 -70.380 -9.494 -70.430 -9.638 -70.521 -9.805 -70.624 -9.963 -70.605 -9.826 -70.614 -9.684 -70.686 -9.847 ; #18 1 -67.427 47.358 -67.330 47.445 -67.311 47.473 -67.226 47.402 -67.264 47.267 -67.293 47.152 -67.330 47.039 -67.415 47.202 -67.512 47.292 -67.530 47.440 -67.521 47.575 -67.503 47.708 -67.485 47.827 -67.447 47.950 -67.438 48.021 -67.420 47.975 -67.402 47.840 -67.449 47.732 -67.458 47.584 -67.458 47.445 -67.429 47.359 ; #19 1 -71.820 67.259 -71.933 67.330 -71.983 67.515 -72.044 67.707 -72.084 67.884 -72.115 68.056 -72.144 68.224 -72.175 68.383 -72.194 68.545 -72.204 68.700 -72.204 68.835 -72.185 68.968 -72.156 69.094 -72.156 69.254 -72.115 69.370 -72.065 69.479 -72.034 69.589 -71.983 69.698 -71.902 69.781 -71.883 69.914 -71.864 70.059 -71.854 70.198 -71.823 70.320 -71.792 70.431 -71.773 70.563 -71.741 70.685 -71.651 70.748 -71.619 70.870 -71.516 70.923 -71.426 70.998 -71.397 71.110 -71.378 71.240 -71.275 71.265 -71.162 71.124 -71.112 71.218 -71.000 71.182 -70.928 71.258 -70.858 71.337 -70.755 71.346 -70.705 71.451 -70.686 71.581 -70.645 71.694 -70.542 71.625 -70.492 71.718 -70.451 71.830 -70.461 71.995 -70.470 72.146 -70.451 72.264 -70.411 72.388 -70.298 72.391 -70.217 72.458 -70.236 72.605 -70.176 72.689 -70.063 72.560 -69.963 72.459 -69.907 72.574 -69.880 72.698 -69.803 72.787 -69.794 72.819 -69.776 72.950 -69.739 73.067 -69.692 73.164 -69.674 73.282 -69.674 73.437 -69.665 73.573 -69.647 73.691 -69.589 73.792 -69.571 73.882 -69.552 73.805 -69.494 73.620 -69.388 73.673 -69.291 73.540 -69.235 73.369 -69.138 73.236 -69.081 73.053 -69.025 72.883 -68.995 72.721 -68.910 72.530 -68.804 72.368 -68.756 72.206 -68.739 72.064 -68.709 71.889 -68.691 71.735 -68.644 71.573 -68.576 71.397 -68.549 71.249 -68.520 71.100 -68.502 70.946 -68.511 70.823 -68.538 70.701 -68.556 70.572 -68.547 70.436 -68.450 70.268 -68.353 70.140 -68.324 69.991 -68.420 69.955 -68.450 69.834 -68.450 69.705 -68.459 69.570 -68.556 69.635 -68.612 69.531 -68.642 69.422 -68.669 69.298 -68.716 69.459 -68.725 69.607 -68.822 69.570 -68.851 69.460 -68.880 69.326 -68.908 69.214 -68.984 69.396 -69.022 69.563 -69.129 69.647 -69.205 69.557 -69.178 69.408 -69.160 69.254 -69.178 69.112 -69.169 68.963 -69.178 68.839 -69.226 68.741 -69.331 68.681 -69.370 68.837 -69.388 69.003 -69.426 69.160 -69.503 69.069 -69.539 68.963 -69.636 69.067 -69.713 68.988 -69.769 68.895 -69.798 68.784 -69.816 68.652 -69.816 68.521 -69.798 68.469 -69.692 68.296 -69.654 68.140 -69.672 68.021 -69.710 67.903 -69.766 67.796 -69.796 67.816 -69.893 67.724 -69.958 67.625 -70.006 67.513 -70.118 67.570 -70.221 67.557 -70.284 67.733 -70.303 67.892 -70.253 67.987 -70.221 68.108 -70.324 68.171 -70.427 68.170 -70.509 68.087 -70.559 68.280 -70.559 68.413 -70.549 68.550 -70.437 68.556 -70.365 68.634 -70.253 68.630 -70.150 68.529 -70.140 68.666 -70.121 68.795 -70.111 68.919 -70.161 69.101 -70.264 69.165 -70.367 69.099 -70.480 69.119 -70.583 69.064 -70.686 68.997 -70.768 68.926 -70.818 68.818 -70.868 68.723 -70.928 68.623 -70.978 68.515 -70.997 68.385 -71.007 68.246 -71.035 68.134 -71.107 68.043 -71.136 67.931 -71.208 67.838 -71.268 67.749 -71.328 67.648 -71.358 67.537 -71.409 67.720 -71.512 67.719 -71.562 67.598 -71.665 67.584 -71.735 67.489 -71.785 67.380 -71.825 67.275 ; #20 1 -66.541 88.771 -66.541 88.805 -66.549 88.913 -66.511 89.006 -66.405 88.864 -66.328 88.736 -66.394 88.667 -66.500 88.647 -66.538 88.769 ; #21 1 -66.349 94.519 -66.367 94.674 -66.385 94.829 -66.385 94.955 -66.403 95.109 -66.470 95.298 -66.479 95.433 -66.479 95.572 -66.470 95.700 -66.462 95.818 -66.462 95.957 -66.452 96.074 -66.434 96.207 -66.434 96.333 -66.444 96.480 -66.425 96.612 -66.407 96.721 -66.380 96.832 -66.362 96.953 -66.400 97.116 -66.419 97.271 -66.410 97.388 -66.516 97.402 -66.516 97.541 -66.439 97.593 -66.400 97.693 -66.382 97.814 -66.365 97.935 -66.337 98.035 -66.337 98.184 -66.347 98.330 -66.365 98.486 -66.365 98.612 -66.462 98.791 -66.559 98.909 -66.655 99.052 -66.685 99.219 -66.638 99.299 -66.561 99.361 -66.504 99.444 -66.457 99.524 -66.410 99.603 -66.362 99.694 -66.324 99.795 -66.306 99.864 -66.297 99.994 -66.288 100.110 -66.261 100.221 -66.223 100.309 -66.157 100.382 -66.099 100.450 -66.051 100.540 -66.015 100.629 -65.968 100.720 -65.909 100.799 -65.891 100.906 -65.882 101.035 -65.882 101.172 -65.891 101.318 -65.873 101.425 -65.826 101.515 -65.796 101.622 -65.778 101.753 -65.770 101.870 -65.770 101.995 -65.778 102.140 -65.770 102.269 -65.742 102.378 -65.733 102.506 -65.742 102.651 -65.751 102.785 -65.760 102.932 -65.808 103.117 -65.837 103.272 -65.846 103.418 -65.837 103.534 -65.819 103.653 -65.819 103.790 -65.837 103.934 -65.837 103.983 -65.781 104.025 -65.684 104.050 -65.578 103.930 -65.481 103.793 -65.424 103.600 -65.327 103.489 -65.280 103.317 -65.310 103.210 -65.291 103.157 -65.244 102.985 -65.147 102.875 -65.111 102.715 -65.129 102.721 -65.206 102.674 -65.282 102.615 -65.339 102.547 -65.397 102.469 -65.454 102.390 -65.501 102.313 -65.528 102.215 -65.537 102.087 -65.573 101.999 -65.582 101.870 -65.506 101.669 -65.440 101.468 -65.372 101.276 -65.334 101.114 -65.420 101.061 -65.467 100.972 -65.485 100.853 -65.494 100.738 -65.503 100.611 -65.503 100.349 -65.474 100.195 -65.438 100.110 -65.438 99.986 -65.447 99.847 -65.465 99.814 -65.483 99.697 -65.492 99.580 -65.474 99.438 -65.456 99.284 -65.417 99.109 -65.320 98.967 -65.224 98.835 -65.118 98.771 -65.021 98.762 -64.919 98.705 -64.826 98.512 -64.733 98.489 -64.632 98.458 -64.540 98.325 -64.531 98.183 -64.531 98.047 -64.548 97.916 -64.557 97.789 -64.574 97.669 -64.583 97.530 -64.591 97.403 -64.617 97.290 -64.635 97.182 -64.652 97.074 -64.680 96.964 -64.705 96.851 -64.723 96.742 -64.749 96.630 -64.766 96.522 -64.783 96.413 -64.792 96.273 -64.800 96.145 -64.800 95.998 -64.809 95.870 -64.826 95.750 -64.863 95.658 -64.899 95.555 -64.953 95.466 -65.007 95.389 -65.093 95.333 -65.287 95.264 -65.393 95.263 -65.490 95.269 -65.596 95.306 -65.693 95.320 -65.790 95.350 -65.895 95.375 -66.002 95.363 -66.049 95.270 -66.058 95.142 -66.058 95.016 -66.067 94.887 -66.076 94.769 -66.114 94.679 -66.171 94.606 -66.268 94.585 -66.344 94.518 ; #22 1 -66.493 109.259 -66.484 109.387 -66.484 109.513 -66.511 109.669 -66.493 109.787 -66.475 109.893 -66.437 109.990 -66.407 110.083 -66.380 110.191 -66.351 110.297 -66.322 110.391 -66.295 110.498 -66.256 110.582 -66.209 110.655 -66.103 110.586 -66.056 110.572 -66.074 110.542 -66.112 110.458 -66.168 110.383 -66.186 110.277 -66.205 110.159 -66.243 110.063 -66.308 110.009 -66.299 109.850 -66.261 109.682 -66.290 109.577 -66.387 109.407 -66.405 109.301 -66.491 109.256 ; #23 1 -66.265 126.839 -66.333 126.788 -66.389 126.734 -66.486 126.770 -66.592 126.780 -66.669 127.005 -66.707 127.181 -66.698 127.308 -66.804 127.534 -66.831 127.707 -66.822 127.834 -66.852 128.011 -66.842 128.126 -66.852 128.264 -66.878 128.426 -66.935 128.627 -66.926 128.766 -66.888 128.854 -66.860 128.968 -66.842 129.083 -66.795 129.147 -66.709 129.173 -66.613 129.132 -66.536 129.169 -66.527 129.157 -66.509 129.008 -66.509 128.869 -66.518 128.754 -66.554 128.652 -66.613 128.603 -66.718 128.691 -66.815 128.733 -66.797 128.583 -66.788 128.432 -66.788 128.305 -66.780 128.155 -66.741 127.978 -66.644 127.753 -66.538 127.639 -66.441 127.514 -66.344 127.327 -66.335 127.177 -66.326 127.039 -66.268 126.839 ; #24 1 -75.241 162.473 -75.275 162.737 -75.286 162.929 -75.286 163.070 -75.296 163.235 -75.296 163.402 -75.307 163.581 -75.317 163.774 -75.327 163.965 -75.338 164.158 -75.348 164.349 -75.359 164.516 -75.348 164.644 -75.293 164.666 -75.180 164.537 -75.115 164.216 -75.105 164.024 -75.094 163.831 -75.084 163.668 -75.073 163.489 -74.976 163.100 -74.976 162.960 -74.985 162.839 -74.976 162.654 -74.935 162.722 -74.907 162.817 -74.897 162.950 -74.866 163.038 -74.825 163.108 -74.784 163.176 -74.775 162.992 -74.775 162.826 -74.784 162.705 -74.784 162.565 -74.794 162.446 -74.804 162.313 -74.823 162.212 -74.854 162.123 -74.924 162.125 -74.955 162.036 -75.073 162.249 -75.118 162.187 -75.241 162.476 ; #25 1 -68.315 150.946 -68.400 150.940 -68.457 150.900 -68.515 150.852 -68.572 150.800 -68.637 150.774 -68.734 150.853 -68.781 151.058 -68.743 151.126 -68.707 151.210 -68.689 151.323 -68.671 151.436 -68.680 151.592 -68.689 151.736 -68.680 151.863 -68.651 151.957 -68.614 152.041 -68.585 152.134 -68.576 152.262 -68.633 152.494 -68.671 152.696 -68.680 152.853 -68.709 153.029 -68.775 153.264 -68.678 153.249 -68.725 153.455 -68.716 153.582 -68.687 153.675 -68.590 153.660 -68.493 153.554 -68.416 153.572 -68.416 153.701 -68.319 153.545 -68.213 153.424 -68.195 153.435 -68.233 153.367 -68.272 153.277 -68.308 153.193 -68.326 153.093 -68.353 152.984 -68.371 152.884 -68.380 152.757 -68.380 152.488 -68.389 152.374 -68.389 152.233 -68.407 152.121 -68.398 151.965 -68.380 151.796 -68.398 151.683 -68.407 151.545 -68.407 151.416 -68.378 151.228 -68.330 151.024 -68.301 150.927 ; #26 1 -68.840 154.964 -68.840 154.834 -68.734 154.790 -68.716 154.863 -68.669 154.916 -68.572 154.859 -68.542 154.683 -68.457 154.492 -68.504 154.416 -68.465 154.224 -68.562 154.306 -68.628 154.284 -68.619 154.128 -68.666 154.076 -68.705 154.268 -68.802 154.426 -68.908 154.673 -68.898 154.800 -68.890 154.915 -68.872 155.028 -68.969 155.316 -69.016 155.536 -68.998 155.636 -68.969 155.730 -68.960 155.856 -69.025 156.106 -68.977 156.182 -68.969 156.310 -68.998 156.487 -68.960 156.554 -68.950 156.574 -68.894 156.407 -68.797 156.234 -68.779 156.074 -68.770 155.906 -68.808 155.840 -68.847 155.774 -68.856 155.646 -68.942 155.646 -68.942 155.622 -68.923 155.462 -68.826 155.291 -68.808 155.301 -68.779 155.110 -68.779 155.071 -68.835 155.023 -68.845 154.974 ; #27 1 -71.744 -100.033 -71.754 -100.219 -71.814 -100.170 -71.823 -100.011 -71.904 -99.956 -71.792 -99.759 -71.773 -99.597 -71.876 -99.584 -71.926 -99.508 -71.844 -99.245 -71.876 -99.049 -71.895 -98.915 -71.904 -98.783 -71.833 -98.841 -71.804 -98.973 -71.785 -99.105 -71.756 -99.199 -71.675 -99.108 -71.684 -99.294 -71.715 -99.484 -71.744 -99.684 -71.744 -100.031 ; #28 1 -71.670 -98.231 -71.782 -98.426 -71.885 -98.477 -71.926 -98.388 -71.907 -98.226 -71.988 -98.180 -71.969 -98.019 -71.866 -98.010 -71.763 -98.038 -71.691 -98.056 -71.682 -98.202 -71.672 -98.226 ; #29 1 -71.715 -97.752 -71.797 -97.678 -71.900 -97.783 -71.962 -97.724 -71.971 -97.577 -71.838 -97.326 -71.725 -97.288 -71.675 -97.256 -71.684 -97.416 -71.703 -97.589 -71.713 -97.749 ; #30 1 -71.804 -96.294 -71.823 -96.492 -71.823 -96.640 -71.936 -96.873 -71.986 -97.115 -72.036 -97.013 -72.046 -96.879 -71.976 -96.622 -71.976 -96.275 -71.936 -96.072 -71.895 -95.922 -71.866 -96.030 -71.835 -96.134 -71.806 -96.295 ; #31 1 -71.986 -95.759 -72.046 -95.989 -72.046 -96.164 -72.065 -96.363 -72.074 -96.523 -72.103 -96.350 -72.103 -96.202 -72.144 -96.112 -72.124 -95.884 -72.115 -95.710 -72.124 -95.657 -72.021 -95.677 -71.981 -95.756 ; #32 1 -72.343 -95.092 -72.352 -95.143 -72.465 -95.380 -72.465 -95.178 -72.446 -95.003 -72.427 -94.804 -72.407 -94.589 -72.379 -94.669 -72.319 -94.748 -72.309 -94.896 -72.350 -95.099 ; #33 1 -72.393 -93.398 -72.462 -93.397 -72.371 -93.102 -72.362 -93.224 -72.393 -93.401 ; #34 4 -12.874 45.154 -12.784 45.208 -12.701 45.213 -12.660 45.239 -12.594 45.141 -12.677 45.118 -12.760 45.147 -12.844 45.115 -12.876 45.152 ; #35 4 -20.870 55.726 -20.787 55.689 -20.754 55.590 -20.738 55.484 -20.754 55.389 -20.837 55.300 -20.928 55.240 -21.011 55.306 -21.095 55.322 -21.168 55.433 -21.208 55.533 -21.242 55.632 -21.234 55.728 -21.210 55.831 -21.120 55.832 -21.037 55.863 -20.953 55.791 -20.870 55.728 ; #36 4 -48.926 69.188 -48.926 69.155 -48.841 69.059 -48.926 68.984 -48.833 69.021 -48.748 69.054 -48.689 69.149 -48.603 69.117 -48.653 69.028 -48.661 68.913 -48.585 69.002 -48.500 68.989 -48.550 68.901 -48.635 68.881 -48.728 68.808 -48.814 68.883 -48.829 68.772 -48.922 68.754 -49.007 68.849 -49.024 68.738 -49.109 68.790 -49.194 68.833 -49.287 68.848 -49.372 68.795 -49.458 68.754 -49.543 68.830 -49.543 68.938 -49.519 69.038 -49.434 69.113 -49.348 69.110 -49.323 69.209 -49.398 69.346 -49.466 69.480 -49.490 69.608 -49.414 69.687 -49.329 69.634 -49.345 69.749 -49.438 69.764 -49.523 69.883 -49.531 70.005 -49.523 70.110 -49.438 70.150 -49.438 70.258 -49.353 70.225 -49.327 70.096 -49.412 70.021 -49.388 69.904 -49.303 69.752 -49.218 69.740 -49.267 69.877 -49.252 69.904 -49.166 69.850 -49.190 69.978 -49.174 70.080 -49.174 70.188 -49.260 70.317 -49.252 70.422 -49.166 70.335 -49.174 70.447 -49.089 70.521 -49.004 70.508 -48.919 70.495 -48.885 70.364 -48.893 70.249 -48.986 70.190 -48.944 70.065 -48.970 69.967 -49.011 69.865 -49.087 69.787 -49.129 69.685 -49.112 69.571 -49.081 69.666 -49.089 69.562 -49.055 69.440 -48.962 69.372 -49.004 69.270 -48.944 69.355 -48.960 69.479 -48.885 69.558 -48.792 69.512 -48.885 69.472 -48.885 69.364 -48.926 69.263 -48.919 69.197 -48.885 69.280 -48.799 69.355 -48.714 69.342 -48.748 69.237 -48.833 69.175 -48.919 69.187 ; #37 4 -48.823 69.125 -48.816 69.132 -48.730 69.152 -48.823 69.122 ; #38 4 -49.035 69.528 -49.004 69.624 -49.020 69.522 ; #39 4 47.334 -3.107 47.376 -3.163 47.434 -3.274 47.340 -3.214 47.332 -3.107 ; #40 4 46.952 -2.160 47.001 -2.164 47.010 -2.281 ; #41 4 49.208 -2.089 49.283 -2.062 49.291 -2.171 49.206 -2.197 49.206 -2.089 ; #42 4 46.203 -1.295 46.236 -1.298 46.252 -1.405 46.244 -1.521 46.236 -1.414 ; #43 4 45.853 -1.229 45.870 -1.210 45.955 -1.206 46.040 -1.284 46.024 -1.388 45.939 -1.289 45.853 -1.231 ; #44 4 -4.403 -81.385 -4.486 -81.369 -4.570 -81.389 -4.643 -81.382 -4.726 -81.301 -4.809 -81.248 -4.900 -81.156 -4.984 -81.233 -5.074 -81.238 -5.157 -81.225 -5.231 -81.126 -5.322 -81.037 -5.405 -80.986 -5.488 -80.954 -5.571 -80.933 -5.663 -80.947 -5.753 -80.989 -5.761 -81.084 -5.746 -81.187 -5.836 -81.238 -5.928 -81.244 -6.018 -81.240 -6.051 -81.147 -6.092 -81.055 -6.133 -80.954 -6.181 -80.863 -6.222 -80.771 -6.262 -80.678 -6.336 -80.579 -6.392 -80.488 -6.448 -80.387 -6.489 -80.287 -6.529 -80.195 -6.620 -80.096 -6.643 -80.071 -6.726 -80.030 -6.734 -80.030 -6.817 -79.969 -6.901 -79.879 -6.991 -79.801 -7.075 -79.788 -7.158 -79.709 -7.224 -79.687 -7.307 -79.674 -7.398 -79.642 -7.481 -79.572 -7.572 -79.531 -7.663 -79.510 -7.746 -79.459 -7.829 -79.389 -7.903 -79.290 -7.986 -79.211 -8.060 -79.120 -8.150 -79.071 -8.233 -79.020 -8.317 -79.034 -8.382 -78.934 -8.466 -78.864 -8.549 -78.851 -8.639 -78.865 -8.731 -78.806 -8.814 -78.756 -8.845 -78.758 -8.878 -78.742 -8.961 -78.701 -9.044 -78.714 -9.052 -78.620 -9.135 -78.625 -9.209 -78.534 -9.300 -78.522 -9.382 -78.489 -9.466 -78.468 -9.557 -78.435 -9.640 -78.356 -9.731 -78.352 -9.814 -78.331 -9.870 -78.296 -9.961 -78.264 -10.044 -78.233 -10.135 -78.195 -10.218 -78.137 -10.302 -78.099 -10.385 -78.043 -10.468 -77.996 -10.483 -77.997 -10.567 -77.930 -10.658 -77.875 -10.741 -77.828 -10.948 -77.752 -11.038 -77.724 -11.122 -77.778 -11.205 -77.691 -11.255 -77.601 -11.311 -77.511 -11.377 -77.414 -11.460 -77.384 -11.551 -77.309 -11.634 -77.316 -11.725 -77.288 -11.809 -77.269 -11.892 -77.268 -11.900 -77.269 -11.924 -77.289 -11.965 -77.198 -12.048 -77.168 -12.105 -77.078 -12.178 -76.982 -12.261 -76.914 -12.344 -76.931 -12.428 -76.844 -12.519 -76.806 -12.601 -76.768 -12.685 -76.671 -12.768 -76.642 -12.851 -76.632 -12.934 -76.593 -12.983 -76.531 -13.066 -76.473 -13.157 -76.397 -13.180 -76.382 -13.263 -76.335 -13.354 -76.317 -13.437 -76.324 -13.521 -76.341 -13.536 -76.342 -13.702 -76.396 -13.654 -76.486 -13.745 -76.522 -13.753 -76.418 -13.836 -76.408 -13.927 -76.408 -14.010 -76.416 -14.025 -76.322 -14.116 -76.255 -14.200 -76.254 -14.273 -76.166 -14.356 -76.109 -14.439 -76.062 -14.530 -76.004 -14.596 -75.915 -14.654 -75.825 -14.703 -75.735 -14.751 -75.635 -14.834 -75.587 -14.842 -75.579 -14.857 -75.563 -14.941 -75.504 -14.997 -75.414 -15.080 -75.341 -15.163 -75.276 -15.221 -75.293 -15.277 -75.196 -15.325 -75.108 -15.359 -75.017 -15.407 -74.928 -15.455 -74.839 -15.496 -74.740 -15.521 -74.677 -15.587 -74.582 -15.670 -74.497 -15.685 -74.404 -15.726 -74.305 -15.767 -74.215 -15.850 -74.142 -15.916 -74.055 -15.989 -73.960 -16.022 -73.869 -16.047 -73.768 -16.080 -73.677 -16.103 -73.585 -16.144 -73.495 -16.210 -73.408 -16.233 -73.306 -16.274 -73.256 -16.314 -73.166 -16.347 -73.075 -16.396 -72.986 -16.428 -72.952 -16.444 -72.917 -16.467 -72.824 -16.475 -72.730 -16.500 -72.629 -16.556 -72.541 -16.622 -72.454 -16.705 -72.380 -16.771 -72.293 -16.827 -72.253 -16.842 -72.171 -16.893 -72.073 -16.976 -71.999 -17.007 -71.899 -17.022 -71.805 -17.079 -71.717 -17.119 -71.638 -17.192 -71.551 -17.276 -71.524 -17.359 -71.517 -17.450 -71.511 -17.523 -71.425 -17.572 -71.336 -17.587 -71.328 -17.660 -71.242 -17.686 -71.150 -17.760 -71.055 -17.825 -70.967 -17.899 -70.881 -17.982 -70.796 -18.015 -70.704 -18.080 -70.608 -18.129 -70.547 -18.104 -70.477 -18.104 -70.451 -18.111 -70.347 -18.088 -70.248 -18.055 -70.148 -18.040 -70.108 -17.957 -70.031 -17.865 -69.973 -17.782 -69.936 -17.699 -69.943 -17.616 -69.959 -17.533 -69.995 -17.442 -69.928 -17.450 -69.834 -17.359 -69.727 -17.293 -69.651 -17.260 -69.647 -17.177 -69.655 -17.111 -69.711 -17.079 -69.802 -17.063 -69.791 -16.979 -69.754 -16.896 -69.639 -16.848 -69.538 -16.765 -69.489 -16.682 -69.432 -16.599 -69.355 -16.508 -69.259 -16.442 -69.156 -16.376 -69.185 -16.360 -69.183 -16.295 -69.184 -16.204 -69.108 -16.163 -69.008 -16.080 -69.015 -16.014 -69.102 -16.006 -69.119 -16.032 -69.217 -16.024 -69.243 -15.976 -69.341 -15.892 -69.378 -15.801 -69.413 -15.718 -69.449 -15.687 -69.454 -15.596 -69.489 -15.506 -69.524 -15.422 -69.552 -15.331 -69.494 -15.291 -69.471 -15.217 -69.406 -15.126 -69.377 -15.053 -69.273 -14.970 -69.330 -14.896 -69.427 -14.813 -69.487 -14.765 -69.520 -14.682 -69.496 -14.590 -69.479 -14.534 -69.379 -14.451 -69.389 -14.368 -69.298 -14.285 -69.244 -14.211 -69.143 -14.128 -69.153 -14.045 -69.099 -13.962 -69.017 -13.879 -69.036 -13.788 -69.124 -13.704 -69.134 -13.621 -69.165 -13.530 -69.203 -13.447 -69.158 -13.364 -69.125 -13.281 -69.118 -13.198 -69.119 -13.107 -69.111 -13.023 -69.122 -12.940 -69.124 -12.849 -69.116 -12.816 -69.131 -12.725 -69.123 -12.643 -69.078 -12.559 -68.987 -12.494 -68.886 -12.410 -68.897 -12.327 -68.843 -12.327 -68.825 -12.304 -68.841 -12.213 -68.888 -12.130 -68.928 -12.039 -68.966 -11.956 -69.006 -11.865 -69.053 -11.201 -69.451 -11.118 -69.510 -10.868 -69.658 -10.777 -69.705 -10.777 -69.723 -10.785 -69.751 -10.793 -69.846 -10.752 -69.937 -10.752 -70.032 -10.777 -70.129 -10.810 -70.187 -10.859 -70.295 -10.884 -70.392 -10.891 -70.488 -10.851 -70.579 -10.760 -70.666 -10.801 -70.764 -10.710 -70.765 -10.619 -70.757 -10.528 -70.758 -10.462 -70.761 -10.371 -70.753 -10.189 -70.755 -10.106 -70.748 -10.015 -70.748 -9.924 -70.752 -9.834 -70.747 -9.785 -70.753 -9.653 -70.747 -9.570 -70.659 -9.404 -70.745 -9.356 -70.687 -9.272 -70.646 -9.280 -70.721 -9.371 -70.801 -9.437 -70.899 -9.503 -71.006 -9.593 -71.085 -9.659 -71.184 -9.733 -71.282 -9.798 -71.389 -9.832 -71.485 -9.839 -71.550 -9.839 -72.202 -9.832 -72.306 -9.775 -72.294 -9.692 -72.280 -9.609 -72.360 -9.526 -72.373 -9.443 -72.415 -9.360 -72.466 -9.319 -72.558 -9.319 -72.662 -9.278 -72.754 -9.253 -72.848 -9.253 -72.923 -9.245 -73.017 -9.245 -73.216 -9.212 -73.309 -9.129 -73.229 -9.046 -73.141 -8.955 -73.081 -8.872 -73.085 -8.789 -73.118 -8.698 -73.208 -8.532 -73.331 -8.483 -73.433 -8.400 -73.474 -8.317 -73.478 -8.251 -73.569 -8.185 -73.670 -8.094 -73.682 -8.011 -73.724 -7.928 -73.746 -7.845 -73.807 -7.771 -73.907 -7.688 -73.819 -7.597 -73.880 -7.541 -73.980 -7.458 -74.051 -7.375 -74.112 -7.309 -74.054 -7.226 -74.032 -7.185 -73.935 -7.144 -73.829 -7.061 -73.871 -6.970 -73.921 -6.887 -73.899 -6.796 -73.885 -6.713 -73.843 -6.630 -73.756 -6.564 -73.648 -6.481 -73.540 -6.425 -73.434 -6.417 -73.330 -6.334 -73.271 -6.243 -73.248 -6.144 -73.281 -6.053 -73.303 -5.962 -73.352 -5.879 -73.330 -5.864 -73.312 -5.772 -73.269 -5.689 -73.210 -5.599 -73.141 -5.515 -73.091 -5.424 -73.078 -5.334 -73.090 -5.243 -73.059 -5.159 -73.028 -5.069 -73.023 -5.012 -73.047 -5.012 -73.038 -4.997 -73.029 -4.956 -72.924 -4.933 -72.829 -4.867 -72.733 -4.819 -72.629 -4.745 -72.533 -4.655 -72.513 -4.639 -72.418 -4.591 -72.314 -4.525 -72.218 -4.459 -72.113 -4.386 -72.008 -4.363 -71.904 -4.363 -71.746 -4.355 -71.651 -4.324 -71.556 -4.316 -71.462 -4.285 -71.357 -4.285 -71.263 -4.269 -71.160 -4.204 -71.055 -4.113 -70.978 -4.057 -70.882 -4.008 -70.787 -4.092 -70.734 -4.058 -70.639 -4.043 -70.535 -4.134 -70.462 -4.200 -70.370 -4.233 -70.352 -4.150 -70.276 -4.223 -70.183 -4.223 -70.157 -4.190 -70.130 -4.134 -70.119 -4.060 -70.164 -4.012 -70.226 -3.921 -70.308 -3.838 -70.333 -3.755 -70.414 -3.689 -70.507 -3.730 -70.611 -3.755 -70.706 -3.722 -70.772 -3.689 -70.834 -3.616 -70.842 -3.532 -70.785 -3.441 -70.727 -3.351 -70.679 -3.260 -70.611 -3.169 -70.563 -3.078 -70.496 -2.987 -70.447 -2.896 -70.390 -2.813 -70.334 -2.722 -70.277 -2.639 -70.220 -2.631 -70.229 -2.565 -70.321 -2.482 -70.383 -2.399 -70.476 -2.422 -70.580 -2.366 -70.681 -2.358 -70.776 -2.260 -70.828 -2.203 -70.931 -2.138 -71.032 -2.130 -71.126 -2.213 -71.231 -2.279 -71.336 -2.271 -71.439 -2.256 -71.533 -2.248 -71.645 -2.149 -71.689 -2.117 -71.791 -2.076 -71.885 -2.132 -71.941 -2.215 -71.989 -2.288 -72.094 -2.281 -72.140 -2.329 -72.244 -2.362 -72.339 -2.395 -72.435 -2.337 -72.536 -2.345 -72.563 -2.352 -72.666 -2.345 -72.761 -2.360 -72.864 -2.393 -72.959 -2.378 -73.053 -2.286 -73.145 -2.271 -73.239 -2.180 -73.283 -2.089 -73.226 -1.998 -73.233 -1.915 -73.249 -1.824 -73.284 -1.758 -73.377 -1.774 -73.472 -1.716 -73.573 -1.633 -73.655 -1.550 -73.635 -1.466 -73.633 -1.376 -73.706 -1.285 -73.704 -1.201 -73.796 -1.201 -73.899 -1.161 -73.993 -1.078 -74.057 -1.045 -74.150 -0.954 -74.166 -0.969 -74.269 -0.936 -74.380 -0.845 -74.424 -0.762 -74.422 -0.679 -74.486 -0.580 -74.493 -0.497 -74.508 -0.456 -74.525 -0.424 -74.618 -0.341 -74.683 -0.300 -74.784 -0.209 -74.848 -0.126 -74.921 -0.118 -75.024 -0.044 -75.125 -0.004 -75.218 0.045 -75.323 -0.046 -75.406 -0.062 -75.510 -0.062 -75.604 -0.038 -75.706 -0.038 -75.744 -0.104 -75.745 -0.138 -75.643 -0.228 -75.579 -0.311 -75.564 -0.385 -75.462 -0.476 -75.381 -0.559 -75.383 -0.574 -75.410 -0.658 -75.420 -0.741 -75.396 -0.832 -75.381 -0.898 -75.356 -0.898 -75.450 -0.841 -75.543 -1.024 -75.585 -1.107 -75.614 -1.197 -75.633 -1.281 -75.653 -1.462 -75.712 -1.470 -75.730 -1.503 -75.757 -1.594 -75.834 -1.677 -75.902 -1.768 -75.979 -1.851 -76.044 -1.942 -76.121 -2.025 -76.189 -2.041 -76.207 -2.190 -76.399 -2.263 -76.495 -2.314 -76.562 -2.387 -76.668 -2.461 -76.764 -2.486 -76.791 -2.519 -76.894 -2.550 -76.990 -2.583 -77.085 -2.615 -77.180 -2.648 -77.284 -2.656 -77.311 -2.689 -77.415 -2.722 -77.510 -2.753 -77.605 -2.786 -77.700 -2.819 -77.796 -2.844 -77.862 -2.867 -77.937 -2.900 -77.993 -3.066 -78.167 -3.150 -78.223 -3.233 -78.329 -3.323 -78.293 -3.407 -78.341 -3.323 -78.386 -3.381 -78.481 -3.473 -78.484 -3.556 -78.495 -3.639 -78.514 -3.680 -78.533 -3.770 -78.610 -3.853 -78.658 -3.945 -78.660 -4.028 -78.700 -4.194 -78.759 -4.202 -78.777 -4.285 -78.761 -4.393 -78.763 -4.476 -78.792 -4.476 -78.801 -4.517 -78.896 -4.600 -78.993 -4.691 -79.004 -4.775 -79.061 -4.858 -79.089 -4.890 -79.128 -4.898 -79.137 -4.890 -79.145 -4.865 -79.182 -4.858 -79.285 -4.858 -79.312 -4.809 -79.405 -4.726 -79.486 -4.660 -79.531 -4.577 -79.566 -4.486 -79.601 -4.471 -79.583 -4.380 -79.675 -4.339 -79.769 -4.380 -79.873 -4.314 -79.966 -4.289 -80.049 -4.273 -80.086 -4.200 -80.178 -4.184 -80.215 -4.351 -80.408 -4.384 -80.475 -4.318 -80.567 -4.235 -80.528 -4.144 -80.462 -4.111 -80.556 -4.028 -80.571 -3.962 -80.596 -3.889 -80.491 -3.912 -80.397 -3.788 -80.253 -3.622 -80.304 -3.538 -80.302 -3.455 -80.326 -3.399 -80.342 -3.333 -80.350 -3.318 -80.376 -3.318 -80.393 -3.293 -80.430 -3.300 -80.439 -3.391 -80.467 -3.407 -80.571 -3.573 -80.764 -3.629 -80.860 -3.720 -80.937 -3.803 -80.976 -3.877 -81.082 -3.968 -81.130 -3.983 -81.139 -4.032 -81.206 -4.090 -81.254 -4.098 -81.263 -4.120 -81.281 -4.146 -81.328 -4.186 -81.346 -4.277 -81.349 -4.318 -81.359 -4.384 -81.387 ; #45 4 2.416 -54.656 2.343 -54.560 2.295 -54.465 2.254 -54.370 2.254 -54.276 2.205 -54.171 2.289 -54.107 2.304 -54.013 2.387 -53.931 2.461 -53.829 2.395 -53.733 2.372 -53.639 2.357 -53.544 2.389 -53.450 2.414 -53.356 2.331 -53.300 2.291 -53.317 2.314 -53.223 2.298 -53.128 2.273 -53.024 2.347 -52.931 2.405 -52.838 2.461 -52.744 2.627 -52.618 2.710 -52.610 2.793 -52.577 2.877 -52.541 2.968 -52.505 3.051 -52.451 3.134 -52.416 3.217 -52.417 3.250 -52.400 3.341 -52.327 3.424 -52.245 3.507 -52.192 3.591 -52.147 3.674 -52.094 3.757 -52.058 3.848 -51.995 3.931 -51.923 4.022 -51.860 4.105 -51.805 4.121 -51.759 4.212 -51.725 4.295 -51.718 4.378 -51.776 4.469 -51.760 4.552 -51.828 4.643 -51.838 4.726 -51.903 4.660 -51.997 4.494 -51.994 4.428 -52.096 4.502 -52.022 4.593 -52.024 4.676 -52.043 4.759 -52.081 4.842 -52.158 4.933 -52.254 4.908 -52.348 4.842 -52.382 4.811 -52.399 4.895 -52.372 4.985 -52.318 5.001 -52.413 5.009 -52.431 5.092 -52.472 5.132 -52.568 5.216 -52.675 5.307 -52.744 5.390 -52.831 5.481 -52.918 5.546 -53.016 5.531 -53.061 5.572 -53.157 5.579 -53.195 5.579 -53.289 5.612 -53.385 5.638 -53.490 5.653 -53.547 5.719 -53.653 5.775 -53.750 5.815 -53.847 5.823 -53.941 5.767 -54.042 5.684 -54.067 5.593 -54.073 5.510 -54.115 5.494 -54.123 5.429 -54.215 5.378 -54.288 5.287 -54.368 5.279 -54.376 5.188 -54.427 5.105 -54.499 5.022 -54.495 4.931 -54.521 4.848 -54.520 4.757 -54.490 4.674 -54.470 4.583 -54.497 4.500 -54.496 4.459 -54.487 4.386 -54.450 4.295 -54.466 4.212 -54.401 4.121 -54.417 4.037 -54.361 3.954 -54.284 3.881 -54.188 3.790 -54.149 3.707 -54.064 3.623 -54.080 3.540 -54.070 3.474 -54.115 3.384 -54.160 3.384 -54.168 3.300 -54.242 3.245 -54.267 3.161 -54.239 2.912 -54.261 2.821 -54.314 2.737 -54.370 2.654 -54.404 2.571 -54.448 2.521 -54.542 2.447 -54.569 2.422 -54.662 ; #46 4 10.528 -5.546 10.437 -5.499 10.379 -5.403 10.404 -5.299 10.379 -5.204 10.296 -5.145 10.255 -5.098 10.232 -5.089 10.159 -5.024 10.093 -5.005 10.010 -4.995 9.969 -4.891 9.878 -4.807 9.795 -4.742 9.820 -4.639 9.805 -4.620 9.748 -4.525 9.715 -4.430 9.700 -4.346 9.715 -4.346 9.799 -4.321 9.865 -4.218 9.913 -4.124 9.920 -4.029 9.986 -3.926 9.994 -3.851 10.035 -3.748 10.042 -3.664 10.027 -3.569 10.012 -3.474 10.012 -3.428 9.946 -3.332 10.019 -3.230 9.936 -3.171 9.853 -3.124 9.820 -3.029 9.737 -2.994 9.654 -2.955 9.570 -2.888 9.497 -2.793 9.580 -2.730 9.580 -2.738 9.663 -2.814 9.754 -2.797 9.837 -2.835 9.920 -2.790 10.012 -2.809 10.095 -2.818 10.127 -2.828 10.211 -2.837 10.294 -2.838 10.377 -2.849 10.460 -2.879 10.551 -2.897 10.717 -2.975 10.801 -2.976 10.841 -2.948 10.924 -2.922 11.008 -2.869 11.099 -2.879 11.099 -2.795 11.083 -2.711 11.099 -2.616 11.091 -2.512 11.091 -1.678 11.124 -1.575 11.124 -1.462 11.091 -1.366 11.091 -1.159 11.107 -1.142 11.099 -1.038 11.066 -0.942 11.089 -0.839 11.089 -0.735 11.006 -0.680 11.006 -0.671 11.089 -0.568 11.114 -0.513 11.163 -0.419 11.211 -0.344 11.244 -0.307 11.221 -0.166 11.195 -0.061 11.195 -0.044 11.180 0.060 11.155 0.155 11.155 0.164 11.129 0.268 11.114 0.372 11.048 0.476 11.081 0.580 11.089 0.692 11.089 0.900 11.139 0.891 11.163 0.937 11.178 1.032 11.269 1.077 11.352 1.114 11.368 1.208 11.451 1.283 11.542 1.357 11.542 1.441 11.476 1.536 11.509 1.631 11.524 1.735 11.517 1.830 11.517 1.942 11.573 2.006 11.605 2.034 11.696 2.137 11.762 2.240 11.846 2.257 11.936 2.303 11.977 2.321 11.977 2.312 12.085 2.244 12.141 2.198 12.190 2.159 12.273 2.095 12.364 2.038 12.455 2.000 12.486 2.095 12.519 2.190 12.602 2.152 12.685 2.133 12.768 2.066 12.793 1.971 12.801 1.915 12.718 1.821 12.685 1.718 12.693 1.613 12.700 1.518 12.741 1.463 12.824 1.358 12.907 1.262 12.915 1.253 12.923 1.244 13.014 1.139 13.080 1.035 13.163 0.921 13.178 0.921 13.269 0.929 13.360 0.928 13.434 0.956 13.393 1.052 13.378 1.107 13.403 1.125 13.418 1.220 13.459 1.173 13.474 1.078 13.474 1.069 13.532 0.964 13.616 0.937 13.681 0.841 13.697 0.746 13.745 0.650 13.753 0.555 13.836 0.554 13.844 0.525 13.927 0.440 14.018 0.413 14.066 0.354 14.149 0.327 14.233 0.326 14.316 0.334 14.407 0.269 14.480 0.173 14.488 0.164 14.587 0.116 14.753 0.172 14.852 0.162 14.935 0.179 14.968 0.179 15.041 -0.050 15.049 -0.068 15.123 -0.298 15.057 -0.459 15.130 -0.555 15.130 -0.781 14.848 -1.101 14.840 -1.109 14.807 -1.233 14.792 -1.318 14.751 -1.412 14.736 -1.438 14.670 -1.551 14.556 -1.729 14.540 -1.824 14.467 -2.031 14.418 -2.039 14.335 -2.047 14.244 -2.055 14.211 -2.150 14.219 -2.167 14.269 -2.272 14.310 -2.376 14.333 -2.481 14.300 -2.585 14.217 -2.688 14.151 -2.782 14.060 -2.876 13.970 -2.913 13.954 -2.921 13.871 -2.949 13.780 -2.947 13.689 -2.992 13.697 -3.002 13.705 -3.039 13.745 -3.135 13.745 -3.230 13.761 -3.306 13.745 -3.288 13.697 -3.287 13.614 -3.312 13.523 -3.293 13.440 -3.292 13.349 -3.282 13.349 -3.386 13.341 -3.481 13.293 -3.471 13.236 -3.479 13.244 -3.526 13.267 -3.630 13.341 -3.727 13.424 -3.823 13.432 -3.878 13.482 -3.983 13.565 -4.002 13.500 -4.056 13.409 -4.139 13.335 -4.233 13.252 -4.249 13.236 -4.344 13.146 -4.334 13.130 -4.325 13.047 -4.260 12.956 -4.241 12.873 -4.239 12.789 -4.304 12.813 -4.408 12.797 -4.503 12.732 -4.511 12.648 -4.426 12.557 -4.442 12.474 -4.458 12.391 -4.513 12.300 -4.566 12.209 -4.574 12.143 -4.668 12.136 -4.694 12.136 -4.703 12.079 -4.797 12.079 -4.901 12.072 -4.996 12.064 -5.022 12.056 -5.039 12.041 -5.143 11.967 -5.237 11.919 -5.331 11.911 -5.426 11.896 -5.417 11.871 -5.321 11.788 -5.291 11.704 -5.319 11.621 -5.222 11.538 -5.238 11.447 -5.275 11.364 -5.273 11.273 -5.327 11.190 -5.363 11.182 -5.409 11.149 -5.504 11.066 -5.474 10.975 -5.463 10.892 -5.444 10.808 -5.478 10.725 -5.485 10.642 -5.493 10.559 -5.529 10.526 -5.537 ; #47 4 42.428 8.592 42.387 8.602 42.303 8.675 42.254 8.563 42.170 8.594 42.121 8.708 42.037 8.648 41.953 8.690 41.953 8.794 41.869 8.784 41.784 8.681 41.743 8.785 41.718 8.889 41.651 8.786 41.567 8.856 41.526 8.959 41.510 9.063 41.426 9.155 41.411 9.174 41.495 9.224 41.579 9.284 41.747 9.386 41.923 9.386 41.980 9.395 42.064 9.455 42.148 9.537 42.182 9.546 42.266 9.536 42.357 9.536 42.442 9.516 42.526 9.516 42.610 9.485 42.694 9.434 42.778 9.453 42.862 9.472 42.947 9.452 43.039 9.442 43.023 9.329 42.939 9.309 42.854 9.319 42.763 9.237 42.770 9.133 42.696 9.021 42.681 8.917 42.647 8.813 42.606 8.709 42.522 8.671 42.438 8.589 ; #48 4 30.083 9.366 30.050 9.394 29.959 9.462 29.876 9.529 29.792 9.577 29.701 9.625 29.619 9.673 29.527 9.712 29.444 9.750 29.262 9.787 29.179 9.817 29.088 9.826 29.005 9.835 28.839 9.835 28.748 9.826 28.699 9.817 28.684 9.817 28.601 9.799 28.502 9.790 28.411 9.772 28.313 9.762 28.229 9.801 28.146 9.829 27.964 9.906 27.881 9.915 27.790 9.885 27.692 9.859 27.608 9.781 27.517 9.763 27.434 9.734 27.351 9.715 27.252 9.743 27.070 9.802 26.972 9.820 26.881 9.886 26.790 9.868 26.707 9.877 26.691 9.877 26.608 9.850 26.543 9.752 26.502 9.637 26.453 9.531 26.370 9.445 26.279 9.379 26.188 9.398 26.105 9.466 26.022 9.531 25.923 9.597 25.840 9.665 25.749 9.741 25.666 9.800 25.593 9.857 25.509 9.913 25.453 9.970 25.354 10.008 25.080 10.008 24.989 10.017 24.906 10.047 24.873 10.094 24.848 10.141 24.848 10.150 24.757 10.197 24.666 10.236 24.592 10.341 24.560 10.438 24.600 10.554 24.641 10.659 24.617 10.756 24.577 10.862 24.552 10.927 24.544 10.966 24.511 11.062 24.488 11.168 24.455 11.275 24.430 11.380 24.414 11.416 24.366 11.522 24.118 11.665 24.093 11.674 24.002 11.721 23.836 11.817 23.753 11.855 23.670 11.902 23.612 11.929 23.596 12.035 23.571 12.140 23.548 12.237 23.532 12.343 23.509 12.448 23.484 12.554 23.469 12.650 23.443 12.756 23.420 12.861 23.405 12.967 23.381 13.064 23.356 13.169 23.331 13.275 23.315 13.371 23.275 13.468 23.219 13.564 23.145 13.669 22.979 13.861 22.896 13.966 22.812 14.062 22.805 14.071 22.722 14.176 22.778 14.282 22.826 14.388 22.884 14.494 22.933 14.600 22.989 14.706 23.037 14.821 23.095 14.927 23.095 14.936 23.103 14.936 23.159 15.071 23.250 15.275 23.298 15.372 23.364 15.525 23.405 15.631 23.437 15.688 23.546 15.929 23.497 16.035 23.439 16.158 23.391 16.272 23.317 16.424 23.262 16.558 23.213 16.663 23.155 16.777 23.099 16.902 23.051 17.016 22.993 17.141 22.927 17.284 22.869 17.407 22.812 17.521 22.788 17.576 22.772 17.605 22.623 17.920 22.457 18.283 22.391 18.417 22.257 18.682 22.151 18.911 22.010 19.215 21.911 19.416 21.855 19.529 21.731 19.784 21.665 19.909 21.617 20.013 21.468 20.317 21.195 20.868 21.122 21.009 20.980 21.284 20.973 21.313 20.783 21.682 20.667 21.901 20.510 22.224 20.412 22.403 20.154 22.904 20.131 22.960 19.924 23.357 19.634 23.905 19.766 23.898 19.965 23.903 20.131 23.898 20.131 24.895 20.628 24.900 21.125 24.905 21.623 24.900 21.845 24.907 22.120 24.906 22.211 24.908 22.302 24.902 22.577 24.909 22.667 24.903 22.842 24.908 22.933 24.902 23.106 24.906 23.480 24.908 23.528 24.909 23.619 24.903 23.819 24.909 23.992 24.904 24.215 24.911 24.464 24.908 24.614 24.913 24.780 24.909 24.972 24.905 25.111 24.910 25.202 24.904 25.401 24.912 25.492 24.907 25.608 24.912 25.747 24.908 25.896 24.914 26.045 24.911 26.177 24.917 26.293 24.912 26.449 24.918 26.674 24.918 26.863 24.917 27.013 24.923 27.096 24.917 27.212 24.922 27.318 24.917 27.492 24.924 27.576 24.918 27.757 24.926 27.823 24.919 27.906 24.922 28.005 24.917 28.204 24.925 28.287 24.919 28.469 24.927 28.560 24.921 28.643 24.924 28.734 24.919 29.082 24.924 29.165 24.918 29.249 24.921 29.340 24.916 29.431 24.872 29.514 24.839 29.605 24.804 29.736 24.809 29.820 24.764 29.910 24.759 30.001 24.744 30.085 24.710 30.125 24.693 30.216 24.641 30.299 24.655 30.390 24.707 30.473 24.779 30.564 24.843 30.648 24.865 30.731 24.909 30.814 24.922 30.821 24.932 30.905 24.927 30.971 24.892 31.062 24.869 31.145 24.826 31.228 24.800 31.311 24.814 31.402 24.801 31.485 24.833 31.551 24.935 31.566 24.965 31.657 25.000 31.723 25.082 31.806 25.047 31.889 24.985 31.972 24.972 32.029 24.936 32.054 24.838 32.070 24.730 32.095 24.633 32.070 24.523 32.062 24.424 32.062 24.324 32.070 24.217 32.070 24.109 32.077 24.010 32.118 23.934 32.191 23.829 32.224 23.732 32.240 23.624 32.247 23.525 32.247 23.426 32.263 23.319 32.263 23.220 32.279 23.181 32.362 23.107 32.445 23.033 32.528 23.085 32.611 23.041 32.694 23.045 32.735 22.938 32.743 22.839 32.783 22.741 32.806 22.634 32.814 22.577 32.839 22.469 32.938 22.275 32.938 22.176 32.996 22.070 32.963 21.969 32.971 21.951 32.963 21.851 32.971 21.743 32.986 21.677 32.986 21.577 32.853 21.373 32.830 21.314 32.830 21.016 32.789 20.906 32.731 20.805 32.691 20.704 32.650 20.603 32.619 20.514 32.553 20.413 32.480 20.301 32.396 20.199 32.313 20.109 32.230 20.018 32.139 19.957 32.123 19.956 32.033 19.893 31.950 19.890 31.866 19.878 31.783 19.875 31.700 19.902 31.617 19.908 31.526 19.944 31.518 19.953 31.435 19.989 31.352 20.064 31.278 20.091 31.255 20.099 31.172 20.106 31.081 20.084 30.998 20.051 30.915 20.000 30.866 19.950 30.775 19.881 30.692 19.811 30.609 19.739 30.535 19.629 30.487 19.529 30.439 19.429 30.390 19.329 30.357 19.229 30.342 19.121 30.350 19.023 30.350 18.915 30.405 18.818 30.446 18.742 30.479 18.645 30.545 18.549 30.578 18.520 30.636 18.414 30.702 18.317 30.710 18.299 30.793 18.203 30.858 18.106 30.891 18.009 30.915 17.902 30.998 17.806 31.005 17.707 31.046 17.600 31.077 17.502 31.084 17.454 31.133 17.357 31.148 17.259 31.156 17.231 31.182 17.124 31.197 17.026 31.237 16.928 31.253 16.821 31.276 16.722 31.284 16.624 31.276 16.525 31.276 16.417 31.284 16.319 31.284 16.220 31.299 16.122 31.315 16.074 31.331 15.975 31.414 15.779 31.470 15.672 31.543 15.575 31.626 15.520 31.709 15.452 31.758 15.435 31.816 15.406 31.899 15.371 31.982 15.333 32.066 15.326 32.139 15.318 32.222 15.319 32.313 15.273 32.396 15.196 32.452 15.098 32.460 14.999 32.460 14.969 32.486 14.870 32.493 14.762 32.493 14.695 32.534 14.597 32.549 14.498 32.574 14.410 32.657 14.312 32.706 14.214 32.754 14.106 32.762 14.007 32.802 13.899 32.826 13.800 32.826 13.592 32.841 13.526 32.890 13.427 32.930 13.319 32.938 13.270 32.946 13.171 32.905 13.071 32.882 12.992 32.849 12.884 32.849 12.874 32.834 12.775 32.834 12.537 32.859 12.438 32.859 12.339 32.866 12.321 32.900 12.222 32.907 12.203 32.948 12.104 32.996 12.037 33.046 11.938 33.103 11.839 33.135 11.740 33.127 11.640 33.193 11.541 33.201 11.502 33.153 11.502 33.129 11.492 33.105 11.483 33.021 11.474 32.973 11.464 32.932 11.455 32.874 11.463 32.783 11.463 32.700 11.454 32.617 11.502 32.534 11.558 32.443 11.501 32.435 11.482 32.386 11.382 32.346 11.274 32.296 11.165 32.288 11.147 32.247 11.029 32.207 10.930 32.133 10.842 32.050 10.785 32.042 10.766 32.019 10.658 31.994 10.618 31.903 10.609 31.779 10.492 31.771 10.393 31.746 10.294 31.713 10.266 31.630 10.206 31.547 10.128 31.456 10.119 31.365 10.167 31.282 10.195 31.191 10.224 31.100 10.251 31.009 10.261 30.961 10.279 30.878 10.249 30.795 10.212 30.712 10.114 30.620 10.066 30.537 9.997 30.479 9.958 30.396 9.880 30.396 9.832 30.373 9.734 30.332 9.636 30.292 9.528 30.243 9.430 30.228 9.391 30.144 9.334 30.096 9.382 ; #49 4 52.319 23.168 52.250 23.248 52.234 23.367 52.208 23.475 52.149 23.579 52.123 23.630 52.115 23.640 52.107 23.639 52.080 23.657 52.072 23.656 51.977 23.626 51.890 23.606 51.803 23.587 51.777 23.554 51.690 23.544 51.674 23.553 51.579 23.564 51.570 23.606 51.595 23.642 51.611 23.633 51.662 23.629 51.670 23.639 51.686 23.751 51.670 23.870 51.627 23.940 51.654 24.063 51.722 24.181 51.773 24.283 51.860 24.313 51.920 24.430 51.929 24.541 51.929 24.883 51.945 24.995 51.979 25.110 51.987 25.221 51.963 25.338 51.955 25.448 51.955 25.656 51.971 25.768 51.955 25.887 51.947 25.939 51.947 26.050 51.904 26.165 51.888 26.274 51.896 26.385 51.846 26.499 51.854 26.610 51.846 26.687 51.819 26.770 51.795 26.887 51.803 26.999 51.803 27.109 51.716 27.195 51.639 27.294 51.639 27.405 51.666 27.506 51.650 27.601 51.591 27.703 51.565 27.797 51.652 27.818 51.627 27.936 51.611 28.044 51.672 28.162 51.655 28.270 51.587 28.380 51.629 28.496 51.613 28.604 51.526 28.636 51.458 28.746 51.545 28.768 51.613 28.888 51.629 29.001 51.680 29.052 51.680 29.095 51.654 29.178 51.585 29.222 51.498 29.230 51.421 29.338 51.437 29.362 51.445 29.473 51.532 29.596 51.532 29.705 51.490 29.809 51.506 29.932 51.532 29.979 51.532 30.099 51.524 30.208 51.508 30.226 51.492 30.234 51.405 30.330 51.352 30.365 51.310 30.468 51.302 30.531 51.318 30.544 51.376 30.617 51.427 30.605 51.514 30.577 51.540 30.571 51.635 30.499 51.722 30.556 51.809 30.601 51.896 30.679 51.973 30.779 51.989 30.781 52.050 30.901 52.066 30.904 52.117 30.922 52.125 30.957 52.125 31.121 52.083 31.225 52.159 31.348 52.159 31.422 52.151 31.542 52.143 31.651 52.143 31.762 52.230 31.702 52.317 31.618 52.404 31.612 52.491 31.583 52.515 31.587 52.576 31.576 52.663 31.547 52.750 31.562 52.845 31.567 52.895 31.455 52.982 31.358 53.069 31.273 53.156 31.353 53.233 31.386 53.233 31.508 53.250 31.622 53.233 31.731 53.156 31.840 53.132 31.947 53.124 32.057 53.150 32.183 53.177 32.299 53.193 32.312 53.252 32.434 53.338 32.493 53.365 32.609 53.381 32.711 53.468 32.716 53.529 32.638 53.563 32.522 53.579 32.470 53.666 32.397 53.753 32.433 53.788 32.317 53.804 32.231 53.804 32.187 53.846 32.082 53.830 31.968 53.804 31.851 53.830 31.744 53.838 31.745 53.925 31.804 54.012 31.829 54.020 31.841 54.028 31.842 54.105 31.743 54.131 31.704 54.156 31.595 54.172 31.486 54.230 31.373 54.317 31.275 54.404 31.235 54.473 31.170 54.481 31.171 54.568 31.087 54.655 31.090 54.681 30.982 54.706 30.986 54.732 30.956 54.775 30.850 54.862 30.776 54.949 30.800 54.983 30.919 54.999 30.921 54.999 30.911 55.007 30.913 55.097 30.963 55.186 30.924 55.275 30.827 55.365 30.833 55.454 30.881 55.481 30.875 55.517 30.893 55.614 30.900 55.622 30.825 55.639 30.703 55.683 30.598 55.762 30.498 55.797 30.470 55.824 30.361 55.833 30.329 55.849 30.241 55.849 30.061 55.858 29.983 55.858 29.928 55.778 29.800 55.787 29.688 55.743 29.566 55.708 29.447 55.760 29.365 55.849 29.370 55.947 29.422 55.982 29.314 55.999 29.203 56.032 29.083 56.016 28.967 55.980 28.847 55.955 28.728 55.964 28.709 55.989 28.692 56.078 28.640 56.086 28.641 56.103 28.530 56.094 28.404 56.059 28.342 56.051 28.296 56.130 28.195 56.147 28.153 56.138 28.037 56.111 27.919 56.032 27.792 55.934 27.663 55.845 27.614 55.820 27.611 55.793 27.585 55.793 27.461 55.820 27.351 55.828 27.342 55.820 27.227 55.845 27.106 55.837 26.991 55.747 26.878 55.687 26.744 55.687 26.733 55.704 26.680 55.677 26.611 55.660 26.618 55.571 26.605 55.535 26.556 55.446 26.522 55.356 26.464 55.313 26.571 55.313 26.684 55.296 26.795 55.225 26.671 55.147 26.639 55.130 26.626 55.138 26.548 55.155 26.495 55.147 26.381 55.130 26.255 55.087 26.248 54.997 26.181 54.981 26.158 54.955 26.041 54.955 25.928 54.886 25.807 54.862 25.794 54.775 25.741 54.724 25.755 54.637 25.755 54.603 25.772 54.542 25.675 54.455 25.644 54.368 25.555 54.335 25.663 54.301 25.782 54.214 25.792 54.154 25.672 54.161 25.550 54.248 25.571 54.317 25.467 54.275 25.384 54.267 25.362 54.283 25.241 54.241 25.215 54.190 25.167 54.147 25.050 54.164 25.018 54.164 24.895 54.077 24.841 53.990 24.755 54.006 24.645 53.980 24.574 53.929 24.446 53.921 24.333 53.971 24.250 53.971 24.138 53.963 24.116 53.955 24.095 53.963 23.983 53.947 23.869 53.955 23.826 53.939 23.712 53.955 23.601 53.963 23.527 53.921 23.533 53.834 23.555 53.747 23.601 53.721 23.608 53.634 23.630 53.565 23.667 53.549 23.675 53.506 23.692 53.419 23.758 53.332 23.803 53.245 23.869 53.158 23.914 53.116 23.889 53.039 23.945 52.971 23.937 52.928 23.943 52.893 23.939 52.806 23.951 52.790 23.949 52.703 23.862 52.653 23.746 52.637 23.623 52.602 23.509 52.543 23.392 52.517 23.368 52.501 23.356 52.485 23.334 52.398 23.250 52.329 23.179 ; #50 4 13.991 42.802 14.016 42.811 14.107 42.814 14.074 42.718 13.991 42.799 ; #51 4 12.228 52.373 12.277 52.375 12.285 52.280 12.277 52.185 12.254 52.279 ; #52 4 12.395 53.786 12.403 53.842 12.418 53.938 12.410 54.041 12.435 54.138 12.476 54.235 12.532 54.332 12.548 54.437 12.631 54.516 12.672 54.423 12.695 54.329 12.745 54.236 12.776 54.143 12.735 54.037 12.728 53.941 12.687 53.836 12.735 53.743 12.776 53.650 12.784 53.546 12.733 53.448 12.650 53.436 12.567 53.403 12.519 53.496 12.435 53.596 12.403 53.689 12.387 53.783 ; #53 4 29.914 60.912 29.907 60.920 29.740 61.094 29.657 61.169 29.574 61.256 29.483 61.341 29.376 61.424 29.293 61.443 29.210 61.488 29.137 61.576 29.053 61.603 29.038 61.610 28.972 61.640 28.889 61.685 28.806 61.760 28.657 61.935 28.591 62.024 28.558 62.117 28.543 62.222 28.510 62.315 28.484 62.418 28.436 62.510 28.353 62.596 28.305 62.695 28.313 62.756 28.305 62.853 28.221 62.850 28.090 62.831 27.999 62.836 27.908 62.862 27.825 62.889 27.734 62.885 27.651 62.891 27.560 62.897 27.477 62.875 27.393 62.873 27.310 62.909 27.285 63.003 27.318 63.114 27.318 63.211 27.303 63.307 27.220 63.392 27.204 63.400 27.204 63.390 27.196 63.371 27.196 63.362 27.171 63.340 27.098 63.320 27.057 63.324 26.966 63.350 26.883 63.269 26.792 63.256 26.709 63.208 26.716 63.103 26.724 62.998 26.724 62.900 26.684 62.797 26.668 62.698 26.652 62.589 26.637 62.489 26.597 62.386 26.513 62.336 26.440 62.344 26.447 62.277 26.399 62.164 26.358 62.060 26.334 61.951 26.250 61.892 26.167 61.871 26.152 61.878 26.061 61.856 25.977 61.845 25.886 61.746 25.803 61.744 25.720 61.723 25.637 61.720 25.554 61.709 25.463 61.706 25.372 61.693 25.289 61.664 25.281 61.748 25.198 61.802 25.157 61.778 25.124 61.871 25.207 61.989 25.200 62.093 25.291 62.145 25.306 62.244 25.291 62.339 25.207 62.327 25.183 62.421 25.265 62.423 25.298 62.525 25.347 62.629 25.347 62.734 25.339 62.830 25.324 62.925 25.308 63.029 25.316 63.128 25.341 63.237 25.316 63.330 25.316 63.427 25.285 63.529 25.368 63.523 25.434 63.589 25.467 63.700 25.474 63.798 25.451 63.892 25.426 63.995 25.434 64.093 25.517 64.037 25.533 64.145 25.450 64.142 25.399 64.241 25.384 64.336 25.358 64.438 25.327 64.531 25.350 64.631 25.267 64.648 25.267 64.754 25.350 64.719 25.409 64.825 25.409 65.046 25.393 65.150 25.442 65.254 25.457 65.353 25.457 65.450 25.472 65.509 25.450 65.603 25.434 65.698 25.467 65.809 25.507 65.912 25.507 66.009 25.533 66.119 25.540 66.217 25.555 66.317 25.540 66.421 25.500 66.512 25.591 66.460 25.639 66.361 25.573 66.254 25.557 66.155 25.641 66.205 25.699 66.311 25.699 66.408 25.683 66.492 25.610 66.578 25.527 66.613 25.444 66.600 25.378 66.696 25.295 66.770 25.211 66.748 25.095 66.730 25.004 66.707 24.989 66.744 24.933 66.835 24.933 66.932 24.917 67.036 24.892 67.130 24.852 67.223 24.769 67.205 24.685 67.292 24.602 67.255 24.519 67.293 24.445 67.390 24.389 67.328 24.306 67.337 24.215 67.375 24.165 67.466 24.165 67.572 24.157 67.571 24.109 67.498 24.043 67.577 24.002 67.581 24.035 67.691 23.903 67.676 23.937 67.786 23.929 67.882 24.020 67.892 24.012 67.900 24.012 67.909 23.939 67.968 23.881 68.059 23.964 68.077 24.047 68.047 24.047 68.065 23.956 68.103 23.873 68.179 23.964 68.219 23.881 68.227 23.964 68.246 24.047 68.313 24.054 68.411 24.078 68.519 24.078 68.722 24.161 68.778 24.252 68.780 24.335 68.780 24.418 68.780 24.426 68.780 24.401 68.875 24.426 68.974 24.376 69.066 24.401 69.116 24.368 69.209 24.376 69.257 24.401 69.357 24.393 69.462 24.385 69.558 24.370 69.653 24.304 69.722 24.279 69.825 24.279 70.028 24.304 70.096 24.327 70.108 24.418 70.147 24.443 70.247 24.476 70.347 24.517 70.449 24.532 70.557 24.449 70.604 24.366 70.641 24.343 70.736 24.351 70.833 24.441 70.911 24.466 71.020 24.515 71.122 24.556 71.030 24.646 71.023 24.729 71.005 24.786 71.109 24.869 71.062 24.952 71.013 25.043 70.969 25.099 70.951 25.265 70.902 25.348 70.818 25.440 70.767 25.523 70.713 25.614 70.719 25.697 70.723 25.780 70.719 25.805 70.626 25.780 70.525 25.772 70.417 25.805 70.325 25.830 70.311 25.914 70.257 25.997 70.184 26.088 70.140 26.171 70.154 26.254 70.197 26.337 70.228 26.428 70.225 26.595 70.252 26.678 70.179 26.693 70.084 26.686 70.064 26.686 70.026 26.678 69.928 26.718 69.827 26.774 69.739 26.815 69.648 26.889 69.553 27.055 69.580 27.146 69.603 27.229 69.635 27.312 69.705 27.395 69.816 27.479 69.907 27.570 69.978 27.653 70.060 27.736 70.121 27.819 70.143 27.910 70.185 27.976 70.264 28.059 70.364 28.117 70.480 28.125 70.579 28.059 70.666 27.968 70.718 27.885 70.752 27.802 70.836 27.794 70.903 27.819 71.005 27.867 71.110 27.908 71.215 27.931 71.316 27.947 71.417 27.954 71.524 27.954 71.622 27.970 71.740 28.010 71.854 28.094 71.954 28.185 71.970 28.268 72.022 28.351 72.114 28.434 72.214 28.526 72.268 28.616 72.292 28.699 72.316 28.783 72.357 28.881 72.490 28.939 72.606 29.005 72.715 29.055 72.822 29.096 72.936 29.187 73.009 29.270 73.062 29.353 73.133 29.444 73.178 29.527 73.231 29.619 73.274 29.701 73.307 29.792 73.332 29.800 73.333 29.883 73.365 29.974 73.390 30.057 73.506 30.073 73.539 30.106 73.654 30.131 73.758 30.187 73.870 30.228 73.927 30.260 73.983 30.351 73.956 30.377 73.952 30.392 73.937 30.433 73.869 30.448 73.882 30.522 73.977 30.612 74.075 30.696 74.113 30.762 74.206 30.845 74.285 30.928 74.323 30.953 74.427 31.027 74.543 31.052 74.579 31.060 74.571 31.084 74.568 31.108 74.622 31.092 74.666 31.148 74.709 31.174 74.607 31.199 74.565 31.282 74.575 31.365 74.586 31.439 74.621 31.522 74.668 31.605 74.630 31.655 74.612 31.671 74.615 31.754 74.557 31.779 74.544 31.870 74.575 31.944 74.691 31.992 74.810 32.075 74.918 32.116 75.026 32.116 75.134 32.181 75.249 32.222 75.358 32.305 75.405 32.388 75.358 32.414 75.316 32.454 75.226 32.495 75.137 32.510 75.032 32.503 74.931 32.510 74.833 32.526 74.738 32.617 74.690 32.625 74.692 32.632 74.685 32.723 74.706 32.806 74.658 32.791 74.556 32.799 74.557 32.824 74.455 32.857 74.363 32.880 74.387 32.971 74.390 33.054 74.341 33.069 74.235 33.153 74.155 33.168 74.129 33.234 74.045 33.325 74.075 33.408 74.162 33.491 74.191 33.575 74.201 33.690 74.029 33.746 74.012 33.762 74.006 33.786 74.021 33.869 74.110 33.876 74.179 33.950 74.296 34.033 74.288 34.033 74.188 34.049 74.092 34.049 74.083 34.041 73.981 34.124 73.922 34.132 73.924 34.215 74.031 34.298 74.002 34.339 73.911 34.379 73.812 34.445 73.828 34.528 73.877 34.619 73.947 34.702 74.006 34.718 74.119 34.766 74.230 34.799 74.347 34.799 74.396 34.766 74.498 34.743 74.592 34.718 74.695 34.702 74.792 34.687 74.888 34.687 74.898 34.672 75.003 34.664 75.069 34.648 75.174 34.640 75.272 34.633 75.289 34.592 75.379 34.567 75.473 34.534 75.665 34.534 75.774 34.617 75.904 34.658 76.014 34.685 76.099 34.685 76.108 34.695 76.169 34.712 76.275 34.728 76.298 34.776 76.410 34.768 76.517 34.760 76.615 34.768 76.717 34.859 76.758 34.965 76.795 34.965 76.865 34.942 76.901 34.942 76.920 34.935 76.927 35.018 77.017 35.033 77.030 35.117 77.016 35.140 77.053 35.198 77.180 35.264 77.300 35.330 77.430 35.396 77.559 35.455 77.686 35.521 77.807 35.521 77.776 35.480 77.664 35.495 77.568 35.495 77.459 35.503 77.361 35.551 77.275 35.543 77.163 35.585 77.075 35.600 76.979 35.616 76.883 35.664 76.810 35.705 76.721 35.746 76.624 35.829 76.560 35.913 76.566 35.879 76.446 35.823 76.329 35.823 76.229 35.897 76.150 35.980 76.116 36.011 76.025 36.062 75.930 36.145 75.945 36.229 76.010 36.312 75.986 36.404 76.013 36.460 75.999 36.543 75.944 36.601 75.912 36.685 75.836 36.733 75.750 36.766 75.659 36.774 75.551 36.766 75.539 36.751 75.434 36.834 75.428 36.918 75.394 36.943 75.300 36.966 75.206 36.999 75.106 36.992 75.002 36.918 74.901 37.009 74.848 37.025 74.782 37.065 74.693 37.033 74.573 37.007 74.497 36.976 74.387 36.902 74.265 36.902 74.155 36.819 74.041 36.902 73.863 36.910 73.755 36.910 73.654 36.902 73.652 36.887 73.537 36.887 73.225 36.879 73.122 36.856 73.005 36.848 72.902 36.848 72.801 36.840 72.689 36.832 72.585 36.776 72.459 36.768 72.356 36.745 72.249 36.661 72.136 36.512 71.893 36.429 71.829 36.444 71.733 36.468 71.630 36.376 71.574 36.293 71.483 36.219 71.362 36.136 71.250 36.052 71.196 36.011 71.264 35.971 71.342 35.897 71.431 35.813 71.488 35.730 71.544 35.646 71.512 35.598 71.599 35.515 71.606 35.423 71.630 35.340 71.537 35.340 71.547 35.292 71.563 35.225 71.655 35.142 71.564 35.059 71.522 35.018 71.511 34.985 71.494 34.962 71.461 34.929 71.343 34.845 71.288 34.762 71.199 34.679 71.102 34.596 71.101 34.580 70.998 34.515 70.993 34.424 71.081 34.358 71.167 34.275 71.129 34.242 71.152 34.158 71.115 34.076 71.048 34.045 70.941 33.987 70.829 33.987 70.720 33.979 70.618 33.971 70.517 33.994 70.412 34.010 70.316 34.025 70.220 34.051 70.117 34.083 70.024 34.068 69.960 34.045 69.918 33.961 69.891 33.838 69.982 33.780 70.027 33.756 70.122 33.683 70.215 33.600 70.205 33.517 70.227 33.476 70.275 33.393 70.345 33.310 70.278 33.236 70.153 33.170 70.039 33.170 70.030 33.129 69.922 33.163 69.820 33.129 69.714 33.129 69.614 33.107 69.579 33.023 69.522 32.932 69.541 32.849 69.475 32.766 69.476 32.675 69.465 32.592 69.359 32.508 69.293 32.418 69.301 32.334 69.322 32.243 69.312 32.160 69.312 32.070 69.332 31.986 69.351 31.938 69.292 31.855 69.207 31.771 69.150 31.698 69.026 31.665 68.920 31.657 68.841 31.741 68.771 31.824 68.741 31.839 68.645 31.872 68.553 31.789 68.505 31.814 68.412 31.814 68.313 31.870 68.217 31.797 68.143 31.713 68.048 31.681 67.942 31.607 67.819 31.574 67.713 31.566 67.612 31.483 67.643 31.458 67.737 31.393 67.822 31.385 67.811 31.352 67.705 31.321 67.600 31.295 67.496 31.270 67.383 31.278 67.286 31.286 67.221 31.286 67.143 31.301 67.068 31.367 67.072 31.359 66.972 31.301 66.861 31.278 66.838 31.195 66.734 31.104 66.678 31.021 66.563 31.005 66.461 31.005 66.452 30.922 66.407 30.831 66.379 30.748 66.353 30.665 66.327 30.574 66.339 30.491 66.379 30.400 66.360 30.309 66.351 30.226 66.307 30.142 66.272 30.059 66.333 29.986 66.345 29.903 66.235 29.872 66.132 29.846 66.030 29.822 65.928 29.798 65.826 29.790 65.777 29.783 65.748 29.760 65.646 29.734 65.544 29.711 65.454 29.678 65.342 29.653 65.240 29.630 65.129 29.615 65.028 29.630 64.983 29.638 64.945 29.638 64.906 29.645 64.800 29.645 64.791 29.653 64.694 29.645 64.586 29.638 64.487 29.613 64.385 29.579 64.282 29.496 64.182 29.489 64.083 29.514 63.988 29.529 63.884 29.545 63.788 29.560 63.683 29.568 63.586 29.560 63.477 29.545 63.368 29.537 63.268 29.537 63.220 29.529 63.121 29.521 63.013 29.514 62.905 29.498 62.804 29.491 62.695 29.483 62.587 29.483 62.489 29.516 62.386 29.539 62.292 29.572 62.189 29.597 62.095 29.620 62.000 29.653 61.897 29.678 61.793 29.701 61.698 29.734 61.595 29.760 61.501 29.783 61.396 29.816 61.294 29.841 61.199 29.864 61.095 29.897 61.001 29.922 60.897 ; #54 4 -48.926 69.197 -48.926 69.188 -48.934 69.191 ; #55 4 -48.926 69.197 -48.893 69.280 -48.807 69.355 -48.722 69.343 -48.756 69.237 -48.841 69.175 -48.926 69.188 ; #56 4 5.889 95.337 5.866 95.401 5.931 95.442 5.982 95.371 5.974 95.276 5.891 95.335 ; #57 4 2.472 96.387 2.440 96.480 2.464 96.556 2.556 96.529 2.588 96.436 2.672 96.355 2.755 96.262 2.755 96.168 2.846 96.179 2.861 96.085 2.944 95.992 3.010 95.899 2.937 95.794 2.854 95.801 2.771 95.865 2.714 95.958 2.699 96.052 2.666 96.146 2.592 96.238 2.544 96.340 2.478 96.385 ; #58 4 0.720 97.749 0.671 97.842 0.728 97.938 0.894 97.959 0.977 97.962 1.060 98.001 1.151 97.966 1.217 97.874 1.273 97.781 1.356 97.699 1.523 97.591 1.606 97.499 1.575 97.395 1.509 97.299 1.534 97.205 1.443 97.229 1.360 97.302 1.277 97.363 1.194 97.407 1.110 97.451 1.027 97.544 0.944 97.645 0.861 97.689 0.778 97.704 0.722 97.741 ; #59 4 -0.369 98.553 -0.354 98.552 -0.271 98.559 -0.180 98.473 -0.271 98.420 -0.354 98.414 -0.437 98.370 -0.493 98.465 -0.453 98.559 -0.369 98.557 ; #60 4 0.105 98.375 0.014 98.410 -0.070 98.449 -0.160 98.514 -0.244 98.574 -0.160 98.580 -0.070 98.523 0.014 98.504 0.097 98.452 0.105 98.443 0.105 98.377 ; #61 4 1.724 98.652 1.764 98.653 1.724 98.558 ; #62 4 0.195 98.860 0.246 98.852 0.261 98.758 0.276 98.664 0.228 98.569 0.188 98.662 0.180 98.756 ; #63 4 -1.699 99.189 -1.665 99.283 -1.582 99.298 -1.499 99.333 -1.416 99.268 -1.325 99.237 -1.242 99.160 -1.151 99.132 -1.068 99.092 -0.901 98.976 -0.818 98.965 -0.851 98.863 -0.843 98.768 -0.934 98.725 -1.018 98.700 -1.108 98.674 -1.191 98.705 -1.275 98.770 -1.358 98.827 -1.449 98.885 -1.532 98.933 -1.615 99.029 -1.681 99.125 -1.697 99.191 ; #64 4 -2.672 100.072 -2.738 100.102 -2.722 100.196 -2.639 100.289 -2.555 100.258 -2.472 100.161 -2.389 100.076 -2.389 100.058 -2.472 100.043 -2.555 100.083 -2.589 100.074 -2.672 100.076 ; #65 4 2.041 101.856 2.132 101.822 2.215 101.729 2.159 101.624 2.167 101.530 2.084 101.482 1.993 101.480 1.909 101.515 1.826 101.596 1.811 101.690 1.877 101.786 1.960 101.806 2.043 101.854 ; #66 4 -5.380 102.428 -5.332 102.434 -5.249 102.354 -5.191 102.256 -5.249 102.165 -5.304 102.263 -5.388 102.323 -5.380 102.425 ; #67 4 1.608 102.544 1.623 102.497 1.646 102.404 1.662 102.301 1.678 102.207 1.718 102.114 1.635 102.112 1.544 102.192 1.528 102.286 1.513 102.390 1.430 102.471 1.356 102.563 1.530 102.568 1.604 102.541 ; #68 4 1.302 102.553 1.310 102.553 1.393 102.481 1.476 102.389 1.501 102.295 1.418 102.284 1.335 102.290 1.252 102.306 1.161 102.312 1.078 102.385 1.045 102.487 1.136 102.518 1.219 102.520 1.302 102.549 ; #69 4 0.886 103.119 0.959 103.065 1.033 102.963 1.081 102.870 1.105 102.776 1.120 102.682 1.204 102.638 1.178 102.543 1.095 102.558 1.004 102.490 0.921 102.526 0.865 102.618 0.888 102.713 0.880 102.807 0.888 102.911 0.855 103.005 0.799 103.097 0.882 103.117 ; #70 4 0.952 103.233 1.008 103.217 1.091 103.144 1.174 103.052 1.223 102.959 1.256 102.866 1.200 102.761 1.116 102.759 1.132 102.854 1.076 102.947 1.002 103.039 0.944 103.141 0.952 103.235 ; #71 4 0.687 103.358 0.752 103.331 0.786 103.238 0.702 103.198 0.619 103.262 0.685 103.358 ; #72 4 1.126 103.503 1.142 103.504 1.200 103.402 1.116 103.409 1.124 103.503 ; #73 4 0.836 103.570 0.927 103.509 0.919 103.415 0.836 103.430 0.752 103.522 ; #74 4 0.894 103.592 0.901 103.592 0.942 103.498 ; #75 4 -0.170 103.770 -0.162 103.742 -0.130 103.646 -0.180 103.544 -0.263 103.538 -0.279 103.641 -0.253 103.735 ; #76 4 0.886 103.901 0.894 103.901 0.935 103.808 ; #77 4 1.027 104.008 1.101 104.009 1.078 103.906 ; #78 4 0.886 104.004 0.894 104.004 0.942 103.911 ; #79 4 0.894 104.239 0.977 104.259 0.977 104.165 0.894 104.237 ; #80 4 0.720 104.340 0.720 104.348 0.811 104.285 ; #81 4 1.126 104.737 1.209 104.684 1.265 104.591 1.290 104.498 1.232 104.402 1.184 104.306 1.101 104.358 1.116 104.453 1.116 104.548 1.033 104.554 0.950 104.570 0.942 104.664 1.033 104.724 1.124 104.734 ; #82 4 0.803 104.342 0.803 104.360 0.894 104.316 ; #83 4 -0.244 104.536 -0.236 104.527 -0.302 104.434 -0.309 104.331 -0.393 104.325 -0.476 104.401 -0.567 104.441 -0.476 104.476 -0.509 104.571 -0.418 104.595 -0.335 104.630 -0.244 104.533 ; #84 4 0.263 104.479 0.215 104.450 0.174 104.542 0.265 104.481 ; #85 4 0.105 104.569 0.014 104.567 -0.070 104.502 -0.160 104.571 -0.145 104.665 -0.112 104.758 -0.168 104.854 -0.219 104.959 -0.194 105.052 -0.194 105.061 -0.178 105.052 -0.112 104.956 -0.096 104.861 -0.014 104.764 0.069 104.691 0.103 104.657 0.103 104.574 ; #86 4 0.871 104.684 0.886 104.684 0.853 104.589 0.869 104.684 ; #87 4 0.312 104.612 0.278 104.583 0.195 104.664 0.139 104.757 0.230 104.684 0.314 104.612 ; #88 4 -5.637 104.841 -5.637 104.832 -5.720 104.892 ; #89 4 -5.955 106.787 -5.904 106.680 -5.904 106.585 -5.912 106.491 -5.872 106.394 -5.846 106.298 -5.894 106.198 -5.812 106.166 -5.796 106.071 -5.879 106.030 -5.962 105.941 -6.045 105.917 -6.137 105.885 -6.220 105.890 -6.310 105.887 -6.394 105.809 -6.353 105.712 -6.436 105.699 -6.519 105.696 -6.610 105.607 -6.694 105.565 -6.603 105.476 -6.618 105.382 -6.658 105.290 -6.700 105.387 -6.748 105.494 -6.756 105.589 -6.740 105.683 -6.732 105.777 -6.740 105.880 -6.715 105.973 -6.715 106.068 -6.756 106.165 -6.812 106.263 -6.869 106.370 -6.877 106.465 -6.862 106.559 -6.953 106.619 -7.036 106.530 -7.127 106.452 -7.210 106.466 -7.258 106.564 -7.299 106.670 -7.299 106.764 -7.307 106.859 -7.315 106.963 -7.330 107.154 -7.345 107.249 -7.361 107.353 -7.369 107.448 -7.384 107.544 -7.435 107.651 -7.491 107.749 -7.539 107.847 -7.580 107.913 -7.595 107.971 -7.595 108.066 -7.626 108.163 -7.651 108.259 -7.659 108.363 -7.667 108.458 -7.659 108.552 -7.576 108.573 -7.552 108.675 -7.537 108.768 -7.537 108.863 -7.562 108.959 -7.586 109.065 -7.570 109.158 -7.562 109.252 -7.570 109.356 -7.586 109.452 -7.626 109.549 -7.642 109.644 -7.657 109.749 -7.682 109.845 -7.715 109.951 -7.738 110.047 -7.738 110.065 -7.753 110.103 -7.810 110.201 -7.851 110.308 -7.891 110.405 -7.947 110.503 -7.988 110.601 -8.020 110.697 -8.046 110.802 -8.054 110.897 -8.054 110.906 -8.079 111.003 -8.110 111.108 -8.102 111.202 -8.118 111.298 -8.118 111.496 -8.166 111.594 -8.181 111.690 -8.141 111.790 -8.125 111.884 -8.158 111.981 -8.150 112.075 -8.158 112.170 -8.173 112.266 -8.189 112.361 -8.222 112.467 -8.247 112.564 -8.270 112.660 -8.270 112.763 -8.239 112.856 -8.247 112.951 -8.173 113.050 -8.141 113.142 -8.125 113.245 -8.141 113.340 -8.214 113.440 -8.247 113.537 -8.280 113.633 -8.346 113.742 -8.353 113.837 -8.412 113.935 -8.468 114.042 -8.475 114.138 -8.475 114.232 -8.452 114.334 -8.493 114.432 -8.584 114.420 -8.591 114.429 -8.591 114.438 -8.599 114.543 -8.615 114.581 -8.622 114.628 -8.539 114.668 -8.474 114.560 -8.382 114.480 -8.299 114.474 -8.216 114.422 -8.133 114.445 -8.050 114.457 -7.966 114.469 -7.943 114.477 -7.860 114.499 -7.777 114.494 -7.694 114.515 -7.603 114.445 -7.572 114.348 -7.564 114.253 -7.516 114.155 -7.483 114.049 -7.541 113.958 -7.564 113.865 -7.556 113.771 -7.564 113.668 -7.548 113.572 -7.582 113.479 -7.630 113.379 -7.589 113.282 -7.564 113.177 -7.498 113.078 -7.473 112.981 -7.433 112.884 -7.392 112.826 -7.309 112.821 -7.226 112.870 -7.142 112.882 -7.051 112.830 -7.092 112.730 -7.009 112.733 -6.926 112.672 -6.901 112.680 -6.810 112.647 -6.726 112.642 -6.752 112.549 -6.726 112.452 -6.734 112.350 -6.750 112.256 -6.758 112.162 -6.674 112.073 -6.641 111.976 -6.649 111.882 -6.626 111.777 -6.585 111.729 -6.502 111.648 -6.477 111.543 -6.560 111.454 -6.553 111.359 -6.553 111.264 -6.545 111.235 -6.453 111.155 -6.370 111.132 -6.287 111.089 -6.262 110.984 -6.278 110.890 -6.303 110.797 -6.394 110.739 -6.477 110.727 -6.560 110.698 -6.608 110.672 -6.624 110.664 -6.715 110.615 -6.798 110.537 -6.823 110.444 -6.773 110.346 -6.707 110.247 -6.756 110.147 -6.771 110.073 -6.763 109.978 -6.740 109.882 -6.715 109.786 -6.700 109.681 -6.666 109.584 -6.715 109.493 -6.730 109.399 -6.715 109.295 -6.700 109.200 -6.641 109.101 -6.690 109.001 -6.666 108.973 -6.658 108.869 -6.651 108.774 -6.603 108.677 -6.512 108.642 -6.345 108.614 -6.272 108.515 -6.189 108.444 -6.115 108.345 -6.107 108.306 -6.190 108.257 -6.190 108.153 -6.135 108.055 -6.086 107.949 -6.079 107.940 -6.071 107.845 -6.111 107.753 -6.038 107.654 -6.007 107.557 -5.924 107.494 -5.840 107.426 -5.825 107.330 -5.840 107.236 -5.790 107.130 -5.782 107.092 -5.866 107.080 -5.939 107.067 -5.955 106.973 -5.962 106.870 -5.922 106.813 ; #90 4 -1.615 105.428 -1.706 105.468 -1.772 105.375 -1.812 105.282 -1.896 105.210 -1.962 105.306 -2.027 105.402 -2.019 105.496 -1.987 105.598 -2.012 105.693 -2.027 105.788 -2.111 105.874 -2.201 105.905 -2.284 105.898 -2.350 105.995 -2.434 106.006 -2.517 105.979 -2.608 105.990 -2.691 106.039 -2.732 106.143 -2.764 106.238 -2.790 106.334 -2.855 106.430 -2.896 106.534 -2.979 106.583 -2.964 106.677 -2.987 106.780 -2.896 106.815 -2.855 106.720 -2.772 106.680 -2.689 106.706 -2.598 106.741 -2.515 106.803 -2.482 106.896 -2.441 106.801 -2.418 106.697 -2.403 106.602 -2.370 106.498 -2.346 106.403 -2.263 106.334 -2.180 106.306 -2.089 106.275 -2.006 106.255 -1.915 106.235 -1.824 106.242 -1.741 106.213 -1.658 106.165 -1.575 106.107 -1.484 106.114 -1.436 106.018 -1.420 105.923 -1.428 105.829 -1.519 105.814 -1.602 105.825 -1.685 105.882 -1.677 105.788 -1.594 105.748 -1.511 105.700 -1.460 105.604 -1.494 105.502 -1.577 105.429 -1.617 105.430 ; #91 4 2.938 105.784 2.989 105.849 3.072 105.860 3.113 105.767 3.030 105.782 2.938 105.780 ; #92 4 -2.796 106.905 -2.819 106.822 -2.902 106.879 -2.879 106.973 -2.796 106.907 ; #93 4 -2.803 107.157 -2.803 107.166 -2.720 107.138 ; #94 4 -2.455 107.791 -2.538 107.728 -2.621 107.721 -2.704 107.686 -2.788 107.642 -2.879 107.662 -2.962 107.673 -3.045 107.704 -3.086 107.800 -3.061 107.902 -2.977 107.900 -3.003 107.995 -3.086 108.052 -3.126 108.148 -3.043 108.240 -2.960 108.284 -2.877 108.291 -2.794 108.343 -2.710 108.358 -2.619 108.309 -2.536 108.213 -2.505 108.175 -2.497 108.157 -2.497 108.148 -2.482 108.084 -2.474 108.075 -2.474 107.980 -2.449 107.877 -2.457 107.793 ; #95 4 3.945 108.133 3.945 108.142 3.912 108.244 3.838 108.337 3.864 108.243 3.772 108.203 3.772 108.306 3.805 108.402 3.888 108.450 4.055 108.472 4.138 108.400 4.221 108.328 4.270 108.234 4.186 108.148 4.121 108.052 4.037 108.096 3.947 108.131 ; #96 4 -7.574 108.892 -7.622 108.895 -7.646 109.000 -7.653 109.095 -7.603 108.997 -7.572 108.892 ; #97 4 -1.615 108.749 -1.623 108.758 -1.607 108.861 -1.600 108.861 -1.600 108.767 ; #98 4 2.997 108.871 2.972 108.880 2.997 108.974 3.080 108.930 ; #99 4 -1.466 109.037 -1.434 108.971 -1.466 108.877 -1.550 108.963 -1.466 109.035 ; #100 4 0.029 109.213 0.021 109.195 -0.062 109.214 ; #101 4 -0.934 109.824 -0.901 109.805 -0.894 109.711 -0.894 109.616 -0.942 109.523 -1.025 109.517 -1.108 109.502 -1.199 109.568 -1.133 109.660 -1.101 109.754 -1.018 109.835 ; #102 4 -6.784 113.009 -6.792 112.906 -6.875 112.847 -6.924 112.756 -7.015 112.779 -7.048 112.876 -7.073 112.981 -7.096 113.078 -7.112 113.173 -7.028 113.176 -7.102 113.285 -7.110 113.380 -7.110 113.483 -7.117 113.578 -7.034 113.667 -6.986 113.759 -6.993 113.854 -7.009 113.949 -6.926 113.953 -6.903 114.055 -6.877 114.148 -6.794 114.107 -6.746 114.000 -6.769 113.907 -6.769 113.709 -6.777 113.615 -6.769 113.520 -6.777 113.417 -6.769 113.322 -6.777 113.228 -6.761 113.132 -6.777 113.030 -6.777 113.013 ; #103 4 -5.622 112.753 -5.645 112.681 -5.736 112.695 -5.713 112.788 -5.622 112.756 ; #104 4 -6.951 114.390 -7.017 114.386 -7.042 114.482 -6.951 114.392 ; #105 4 -7.024 114.584 -7.050 114.577 -7.024 114.679 ; #106 4 -6.726 115.358 -6.800 115.280 -6.883 115.343 -6.817 115.433 -6.810 115.536 -6.835 115.632 -6.752 115.560 -6.736 115.456 -6.728 115.361 ; #107 4 -8.696 115.653 -8.655 115.676 -8.564 115.644 -8.638 115.554 ; #108 4 -8.106 116.405 -8.156 116.314 -8.239 116.225 -8.305 116.135 -8.388 116.131 -8.472 116.146 -8.562 116.143 -8.645 116.140 -8.661 116.038 -8.620 115.940 -8.703 115.917 -8.744 116.015 -8.752 116.110 -8.767 116.206 -8.800 116.312 -8.800 116.406 -8.735 116.497 -8.791 116.595 -8.707 116.572 -8.624 116.641 -8.534 116.670 -8.450 116.739 -8.359 116.751 -8.276 116.802 -8.193 116.750 -8.152 116.644 -8.119 116.547 -8.086 116.450 -8.102 116.405 ; #109 4 -3.178 116.357 -3.163 116.292 -3.229 116.200 -3.320 116.165 -3.403 116.122 -3.486 116.115 -3.577 116.090 -3.660 116.120 -3.751 116.149 -3.834 116.169 -3.917 116.218 -3.834 116.290 -3.784 116.383 -3.693 116.372 -3.610 116.378 -3.519 116.375 -3.436 116.355 -3.353 116.379 -3.262 116.341 ; #110 4 -3.302 116.512 -3.302 116.475 -3.385 116.422 -3.469 116.490 -3.385 116.506 ; #111 4 -8.812 117.969 -8.771 118.060 -8.731 118.161 -8.739 118.257 -8.665 118.346 -8.582 118.415 -8.498 118.464 -8.582 118.499 -8.665 118.449 -8.748 118.493 -8.748 118.588 -8.715 118.680 -8.700 118.774 -8.723 118.870 -8.739 118.974 -8.665 118.875 -8.649 118.779 -8.609 118.871 -8.586 118.964 -8.651 119.063 -8.651 119.158 -8.560 119.235 -8.477 119.256 -8.535 119.165 -8.452 119.095 -8.361 119.115 -8.278 119.075 -8.195 119.023 -8.195 118.928 -8.210 118.834 -8.301 118.783 -8.384 118.781 -8.301 118.757 -8.210 118.733 -8.162 118.635 -8.146 118.530 -8.229 118.452 -8.237 118.349 -8.154 118.269 -8.063 118.245 -8.007 118.138 -7.999 118.042 -7.999 117.948 -8.040 117.847 -8.123 117.778 -8.214 117.868 -8.297 117.957 -8.371 118.057 -8.363 118.151 -8.429 118.250 -8.485 118.358 -8.551 118.268 -8.543 118.164 -8.609 118.073 -8.624 117.980 -8.617 117.876 -8.534 117.852 -8.460 117.744 -8.377 117.709 -8.311 117.610 -8.336 117.517 -8.328 117.414 -8.288 117.316 -8.263 117.220 -8.346 117.122 -8.402 117.031 -8.427 116.938 -8.518 116.869 -8.601 116.866 -8.692 116.901 -8.775 116.832 -8.858 116.829 -8.942 116.918 -8.957 117.014 -8.998 117.120 -8.982 117.214 -8.908 117.304 -8.940 117.410 -8.932 117.504 -8.908 117.605 -8.858 117.697 -8.810 117.797 -8.802 117.900 -8.818 117.976 ; #112 4 -8.280 117.600 -8.214 117.652 -8.131 117.693 -8.048 117.742 -8.032 117.646 -8.106 117.548 -8.189 117.571 -8.280 117.595 ; #113 4 3.428 117.526 3.372 117.524 3.405 117.620 ; #114 4 4.194 117.692 4.186 117.682 4.095 117.726 4.111 117.821 4.194 117.788 4.194 117.694 ; #115 4 -0.269 117.608 -0.269 117.582 -0.360 117.576 ; #116 4 3.670 117.872 3.621 117.870 3.556 117.971 3.621 117.965 ; #117 4 -9.427 118.994 -9.493 119.036 -9.559 119.087 -9.617 119.186 -9.625 119.281 -9.640 119.386 -9.640 119.481 -9.648 119.576 -9.655 119.671 -9.738 119.752 -9.804 119.852 -9.837 119.949 -9.878 120.015 -9.911 120.036 -9.994 120.068 -10.067 120.171 -10.124 120.273 -10.131 120.377 -10.182 120.478 -10.124 120.566 -10.116 120.669 -10.083 120.760 -9.992 120.833 -9.909 120.864 -9.876 120.862 -9.802 120.753 -9.712 120.672 -9.629 120.639 -9.563 120.540 -9.522 120.442 -9.537 120.348 -9.446 120.296 -9.363 120.252 -9.348 120.157 -9.264 120.087 -9.234 120.056 -9.209 119.959 -9.274 119.860 -9.266 119.765 -9.226 119.667 -9.266 119.576 -9.251 119.471 -9.259 119.377 -9.266 119.283 -9.282 119.189 -9.315 119.088 -9.398 119.010 -9.421 118.994 ; #118 4 2.414 118.654 2.357 118.662 2.273 118.743 2.306 118.717 2.389 118.682 ; #119 4 -8.022 119.162 -8.056 119.099 -8.146 119.105 -8.116 119.197 -8.024 119.165 ; #120 4 -5.065 119.437 -5.131 119.423 -5.221 119.412 -5.304 119.418 -5.388 119.479 -5.471 119.485 -5.456 119.578 -5.539 119.613 -5.569 119.710 -5.595 119.806 -5.554 119.897 -5.471 119.966 -5.471 120.061 -5.479 120.097 -5.479 120.200 -5.430 120.291 -5.405 120.383 -5.446 120.490 -5.362 120.475 -5.279 120.440 -5.189 120.388 -5.105 120.354 -5.022 120.330 -4.939 120.344 -4.848 120.350 -4.757 120.365 -4.674 120.446 -4.583 120.470 -4.500 120.476 -4.417 120.455 -4.326 120.435 -4.243 120.450 -4.177 120.440 -4.094 120.445 -4.010 120.416 -3.927 120.432 -3.836 120.420 -3.753 120.444 -3.670 120.498 -3.586 120.504 -3.496 120.502 -3.413 120.470 -3.322 120.486 -3.155 120.480 -3.072 120.383 -2.989 120.352 -2.905 120.312 -2.822 120.347 -2.757 120.448 -2.706 120.541 -2.641 120.633 -2.575 120.726 -2.542 120.780 -2.519 120.873 -2.542 120.969 -2.557 121.063 -2.641 121.149 -2.724 121.115 -2.807 121.163 -2.855 121.156 -2.939 121.132 -3.022 121.144 -3.105 121.146 -3.178 121.045 -3.262 120.991 -3.345 120.938 -3.436 120.959 -3.519 121.056 -3.592 121.152 -3.684 121.219 -3.708 121.315 -3.791 121.381 -3.875 121.467 -3.906 121.562 -3.939 121.658 -3.972 121.677 -4.055 121.679 -4.146 121.588 -4.229 121.581 -4.320 121.575 -4.403 121.551 -4.494 121.526 -4.577 121.557 -4.660 121.654 -4.726 121.759 -4.703 121.853 -4.743 121.958 -4.743 122.052 -4.677 122.145 -4.595 122.087 -4.512 122.102 -4.428 122.145 -4.380 122.238 -4.355 122.341 -4.331 122.435 -4.331 122.538 -4.291 122.631 -4.365 122.728 -4.333 122.821 -4.308 122.803 -4.225 122.763 -4.308 122.869 -4.252 122.961 -4.169 122.950 -4.086 122.956 -3.995 122.936 -3.947 122.840 -4.030 122.825 -3.989 122.729 -3.898 122.717 -3.873 122.613 -3.782 122.685 -3.759 122.581 -3.718 122.571 -3.635 122.485 -3.594 122.390 -3.511 122.292 -3.428 122.344 -3.377 122.361 -3.370 122.361 -3.287 122.323 -3.312 122.418 -3.312 122.464 -3.229 122.378 -3.146 122.422 -3.138 122.421 -3.122 122.515 -3.039 122.467 -2.956 122.369 -2.865 122.375 -2.782 122.335 -2.708 122.239 -2.652 122.142 -2.569 122.103 -2.486 122.082 -2.403 122.025 -2.320 121.967 -2.236 121.936 -2.145 121.839 -2.087 121.742 -2.055 121.647 -1.971 121.616 -1.888 121.519 -1.904 121.425 -1.863 121.424 -1.780 121.430 -1.689 121.427 -1.762 121.524 -1.846 121.621 -1.838 121.724 -1.782 121.817 -1.699 121.851 -1.607 121.912 -1.582 122.005 -1.534 122.107 -1.519 122.201 -1.511 122.295 -1.437 122.387 -1.372 122.480 -1.281 122.560 -1.197 122.632 -1.114 122.713 -1.081 122.712 -0.998 122.793 -0.915 122.856 -0.824 122.928 -0.817 123.022 -0.809 123.116 -0.801 123.210 -0.892 123.250 -0.975 123.347 -0.919 123.449 -0.836 123.455 -0.753 123.509 -0.662 123.497 -0.578 123.468 -0.520 123.364 -0.488 123.268 -0.488 123.174 -0.528 123.081 -0.528 122.986 -0.544 122.892 -0.600 122.791 -0.615 122.886 -0.681 122.991 -0.689 122.897 -0.714 122.803 -0.673 122.699 -0.689 122.605 -0.673 122.511 -0.681 122.416 -0.681 122.322 -0.721 122.220 -0.805 122.205 -0.838 122.112 -0.871 122.018 -0.863 121.924 -0.863 121.829 -0.805 121.724 -0.721 121.713 -0.770 121.620 -0.820 121.518 -0.903 121.466 -0.919 121.466 -1.002 121.375 -1.085 121.314 -1.169 121.260 -1.259 121.236 -1.342 121.144 -1.335 121.115 -1.310 121.020 -1.310 120.917 -1.287 120.822 -1.287 120.813 -1.246 120.718 -1.155 120.649 -1.072 120.646 -0.981 120.626 -0.898 120.568 -0.824 120.472 -0.855 120.369 -0.772 120.292 -0.681 120.226 -0.598 120.166 -0.514 120.138 -0.424 120.126 -0.341 120.123 -0.257 120.084 -0.166 120.063 -0.118 120.061 -0.093 120.069 -0.010 120.084 0.081 120.142 0.155 120.153 0.246 120.184 0.329 120.250 0.412 120.310 0.503 120.387 0.561 120.492 0.602 120.588 0.609 120.683 0.577 120.784 0.544 120.878 0.495 120.971 0.521 121.066 0.487 121.168 0.528 121.264 0.553 121.359 0.538 121.405 0.545 121.499 0.611 121.596 0.596 121.689 0.588 121.792 0.505 121.853 0.497 121.947 0.523 122.042 0.555 122.147 0.547 122.241 0.555 122.335 0.571 122.430 0.571 122.628 0.596 122.732 0.555 122.825 0.563 122.919 0.555 123.014 0.563 123.108 0.523 123.201 0.431 123.273 0.381 123.366 0.374 123.460 0.381 123.555 0.374 123.657 0.366 123.751 0.374 123.846 0.399 123.950 0.414 124.045 0.430 124.140 0.445 124.235 0.461 124.338 0.468 124.376 0.517 124.472 0.583 124.577 0.666 124.654 0.749 124.666 0.840 124.715 0.923 124.792 1.006 124.889 1.072 124.985 1.155 125.052 1.238 125.101 1.329 125.141 1.412 125.161 1.495 125.229 1.569 125.326 1.660 125.235 1.751 125.247 1.743 125.152 1.776 125.050 1.693 124.964 1.610 124.906 1.519 124.846 1.471 124.750 1.455 124.655 1.364 124.606 1.281 124.613 1.265 124.518 1.200 124.421 1.116 124.390 1.068 124.285 1.012 124.189 0.979 124.093 0.913 123.989 0.905 123.894 0.931 123.800 0.946 123.697 0.954 123.603 0.979 123.510 0.987 123.415 1.027 123.314 1.012 123.219 1.012 123.125 0.997 123.030 0.913 122.933 0.946 122.839 1.002 122.738 1.035 122.644 1.060 122.551 1.083 122.457 1.083 122.363 1.091 122.269 1.122 122.175 1.091 122.080 1.164 121.979 1.149 121.884 1.149 121.781 1.134 121.686 1.157 121.592 1.240 121.521 1.323 121.477 1.316 121.383 1.331 121.280 1.389 121.187 1.405 121.093 1.381 120.989 1.356 120.894 1.265 120.900 1.182 120.869 1.099 120.840 1.041 120.744 0.957 120.684 0.874 120.598 0.874 120.504 0.957 120.403 1.041 120.331 0.957 120.311 0.874 120.291 0.818 120.195 0.745 120.090 0.662 120.104 0.571 120.065 0.571 120.056 0.505 119.959 0.422 119.910 0.331 119.899 0.248 119.868 0.165 119.931 0.081 119.920 -0.010 119.823 0.081 119.769 0.081 119.674 0.041 119.682 -0.042 119.765 -0.108 119.862 -0.199 119.829 -0.282 119.814 -0.373 119.817 -0.456 119.837 -0.540 119.857 -0.623 119.914 -0.714 119.926 -0.797 119.911 -0.764 119.882 -0.673 119.853 -0.590 119.775 -0.673 119.732 -0.757 119.640 -0.772 119.614 -0.855 119.579 -0.946 119.554 -1.029 119.519 -1.103 119.427 -1.186 119.394 -1.277 119.415 -1.360 119.389 -1.443 119.400 -1.526 119.402 -1.617 119.388 -1.701 119.419 -1.791 119.448 -1.874 119.395 -1.948 119.295 -2.031 119.279 -2.122 119.236 -2.205 119.230 -2.288 119.233 -2.380 119.227 -2.428 119.134 -2.519 119.073 -2.567 118.980 -2.583 118.877 -2.674 118.862 -2.757 118.894 -2.798 118.989 -2.881 118.954 -2.971 118.893 -3.055 118.887 -3.138 118.927 -3.229 118.947 -3.312 118.959 -3.395 118.988 -3.486 119.028 -3.420 119.120 -3.405 119.214 -3.397 119.308 -3.339 119.409 -3.372 119.505 -3.430 119.601 -3.521 119.578 -3.604 119.543 -3.645 119.562 -3.728 119.602 -3.811 119.642 -3.894 119.728 -3.977 119.702 -4.068 119.713 -4.152 119.681 -4.235 119.701 -4.326 119.686 -4.409 119.671 -4.492 119.656 -4.575 119.612 -4.666 119.569 -4.749 119.589 -4.833 119.583 -4.916 119.539 -4.989 119.513 -5.072 119.455 ; #121 4 -8.323 119.525 -8.396 119.484 -8.479 119.452 -8.570 119.514 -8.487 119.536 -8.462 119.638 -8.378 119.624 ; #122 4 -8.489 119.695 -8.504 119.696 -8.587 119.719 -8.671 119.679 -8.671 119.774 -8.587 119.777 -8.504 119.800 ; #123 4 -8.703 120.063 -8.703 120.080 -8.671 120.172 -8.696 120.269 -8.719 120.365 -8.696 120.458 -8.696 120.562 -8.688 120.656 -8.739 120.763 -8.713 120.856 -8.779 120.955 -8.827 121.054 -8.820 121.148 -8.779 121.249 -8.802 121.345 -8.779 121.438 -8.688 121.440 -8.713 121.546 -8.705 121.640 -8.789 121.700 -8.773 121.794 -8.758 121.888 -8.717 121.979 -8.692 122.081 -8.626 122.171 -8.634 122.276 -8.634 122.370 -8.641 122.465 -8.618 122.558 -8.578 122.619 -8.545 122.712 -8.512 122.804 -8.496 122.898 -8.413 122.892 -8.330 122.868 -8.323 122.971 -8.231 123.001 -8.208 123.094 -8.125 123.060 -8.042 123.036 -7.968 122.936 -8.052 122.847 -8.135 122.825 -8.102 122.918 -8.118 123.013 -8.201 122.925 -8.259 122.834 -8.282 122.741 -8.332 122.641 -8.415 122.552 -8.498 122.541 -8.514 122.438 -8.539 122.346 -8.481 122.247 -8.415 122.147 -8.350 122.059 -8.390 121.958 -8.398 121.864 -8.406 121.770 -8.390 121.674 -8.474 121.616 -8.466 121.521 -8.450 121.425 -8.367 121.336 -8.336 121.239 -8.311 121.133 -8.237 121.033 -8.245 120.939 -8.229 120.844 -8.189 120.746 -8.181 120.642 -8.189 120.548 -8.181 120.453 -8.173 120.358 -8.229 120.258 -8.303 120.168 -8.344 120.077 -8.344 119.936 -8.427 119.924 -8.518 119.875 -8.601 119.873 -8.692 119.906 -8.775 119.977 -8.719 120.068 ; #124 4 -5.680 120.557 -5.665 120.539 -5.748 120.518 -5.838 120.506 -5.922 120.512 -6.013 120.528 -6.096 120.505 -6.187 120.540 -6.270 120.537 -6.361 120.561 -6.270 120.572 -6.187 120.595 -6.103 120.598 -6.020 120.610 -5.937 120.621 -5.846 120.615 -5.763 120.580 ; #125 4 -6.910 120.728 -6.941 120.701 -7.032 120.736 -6.967 120.826 ; #126 4 -7.158 120.906 -7.189 120.900 -7.196 121.003 -7.172 121.096 -7.172 121.001 -7.156 120.906 ; #127 4 -10.491 121.587 -10.515 121.590 -10.474 121.679 -10.489 121.587 ; #128 4 -10.433 121.776 -10.474 121.764 -10.489 121.869 -10.464 121.961 -10.391 122.047 -10.307 121.962 -10.381 121.867 -10.429 121.778 ; #129 4 -4.972 122.035 -4.964 122.026 -5.030 121.935 -5.113 121.866 -5.196 121.881 -5.279 121.933 -5.362 122.014 -5.322 122.105 -5.231 122.099 -5.148 122.101 -5.057 122.086 -4.974 122.035 ; #130 4 -0.369 121.976 -0.303 121.911 -0.311 121.817 -0.395 121.791 -0.410 121.885 -0.369 121.978 ; #131 4 -0.279 122.116 -0.213 122.020 -0.279 121.918 -0.311 122.014 ; #132 4 -5.332 122.609 -5.249 122.667 -5.157 122.706 -5.074 122.654 -4.991 122.686 -4.900 122.767 -4.817 122.828 -4.726 122.807 -4.560 122.802 -4.512 122.772 -4.544 122.670 -4.618 122.578 -4.643 122.484 -4.726 122.392 -4.809 122.412 -4.892 122.433 -4.984 122.436 -5.067 122.366 -5.157 122.364 -5.241 122.332 -5.281 122.430 -5.289 122.525 -5.198 122.547 -5.289 122.580 -5.330 122.601 ; #133 4 -10.648 122.912 -10.722 122.886 -10.812 122.923 -10.772 123.013 -10.739 123.104 -10.706 123.195 -10.673 123.294 -10.590 123.379 -10.557 123.470 -10.474 123.413 -10.391 123.368 -10.441 123.279 -10.532 123.207 -10.605 123.112 -10.620 123.010 -10.646 122.918 ; #134 4 -3.302 122.512 -3.302 122.494 -3.385 122.526 -3.302 122.514 ; #135 4 -4.301 123.147 -4.316 123.053 -4.407 122.962 -4.490 122.918 -4.581 122.913 -4.664 122.915 -4.747 122.880 -4.831 122.883 -4.914 122.811 -4.997 122.840 -5.088 122.820 -5.171 122.780 -5.262 122.721 -5.345 122.689 -5.428 122.640 -5.519 122.693 -5.519 122.788 -5.577 122.886 -5.486 122.945 -5.403 122.975 -5.320 122.977 -5.297 123.070 -5.289 123.164 -5.206 123.262 -5.123 123.200 -5.040 123.111 -5.088 123.020 -5.005 123.032 -4.922 123.038 -4.838 123.044 -4.747 123.067 -4.664 123.111 -4.606 123.203 -4.689 123.244 -4.606 123.278 -4.523 123.258 -4.440 123.238 -4.357 123.151 -4.301 123.150 ; #136 4 -8.406 122.981 -8.479 123.015 -8.396 123.073 -8.330 123.163 -8.338 123.069 -8.404 122.979 ; #137 4 -8.171 123.162 -8.212 123.119 -8.295 123.108 -8.288 123.202 -8.288 123.305 -8.222 123.395 -8.139 123.361 -8.139 123.257 -8.171 123.164 ; #138 4 -10.043 123.464 -10.050 123.447 -10.133 123.382 -10.216 123.375 -10.208 123.469 -10.125 123.496 -10.043 123.468 ; #139 4 -1.540 123.335 -1.449 123.332 -1.366 123.347 -1.398 123.442 -1.406 123.537 -1.323 123.617 -1.232 123.632 -1.149 123.555 -1.124 123.460 -1.207 123.388 -1.290 123.327 -1.199 123.286 -1.116 123.321 -1.083 123.226 -1.068 123.122 -1.076 123.028 -1.149 122.936 -1.232 122.901 -1.323 122.895 -1.406 122.935 -1.490 122.964 -1.434 123.057 -1.350 123.120 -1.259 123.172 -1.350 123.258 -1.434 123.243 -1.517 123.246 -1.540 123.330 ; #140 4 -3.877 123.126 -3.885 123.088 -3.968 123.036 -4.051 123.076 -4.134 123.162 -4.101 123.255 -4.018 123.317 -3.935 123.314 -3.894 123.218 -3.879 123.123 ; #141 4 -9.884 123.629 -9.932 123.661 -9.924 123.755 -10.007 123.762 -10.041 123.671 -10.073 123.580 -10.164 123.545 -10.248 123.537 -10.232 123.630 -10.248 123.736 -10.248 123.831 -10.222 123.923 -10.174 124.011 -10.133 124.101 -10.067 124.196 -10.060 124.290 -10.060 124.385 -10.052 124.479 -9.969 124.574 -9.886 124.634 -9.837 124.705 -9.772 124.795 -9.688 124.864 -9.605 124.942 -9.549 125.032 -9.524 125.039 -9.441 125.042 -9.367 125.131 -9.367 125.140 -9.360 125.148 -9.336 125.175 -9.320 125.269 -9.237 125.357 -9.172 125.456 -9.139 125.548 -9.098 125.640 -9.098 125.735 -9.050 125.835 -9.034 125.928 -9.011 126.030 -8.963 126.121 -8.897 126.211 -8.889 126.314 -8.874 126.407 -8.866 126.501 -8.800 126.591 -8.717 126.680 -8.677 126.771 -8.669 126.866 -8.638 126.967 -8.597 127.059 -8.532 127.148 -8.458 127.238 -8.392 127.336 -8.309 127.358 -8.251 127.279 -8.284 127.187 -8.243 127.089 -8.259 126.987 -8.317 126.897 -8.332 126.803 -8.373 126.702 -8.398 126.610 -8.350 126.511 -8.357 126.417 -8.398 126.325 -8.413 126.223 -8.438 126.131 -8.406 126.033 -8.398 125.938 -8.421 125.836 -8.446 125.743 -8.462 125.650 -8.477 125.556 -8.485 125.462 -8.518 125.361 -8.526 125.267 -8.591 125.177 -8.675 125.166 -8.758 125.088 -8.773 125.072 -8.856 125.012 -8.905 124.941 -8.946 124.840 -8.986 124.748 -9.069 124.659 -9.085 124.566 -9.100 124.464 -9.115 124.370 -9.156 124.269 -9.214 124.179 -9.247 124.087 -9.303 123.987 -9.553 123.721 -9.644 123.728 -9.727 123.717 -9.810 123.667 -9.893 123.636 ; #142 4 -1.592 123.468 -1.592 123.430 -1.675 123.405 ; #143 4 -5.148 123.596 -5.206 123.591 -5.229 123.688 -5.146 123.598 ; #144 4 -5.362 123.772 -5.403 123.775 -5.436 123.872 ; #145 4 -8.229 124.056 -8.263 124.021 -8.353 124.010 -8.353 124.113 -8.436 124.204 -8.353 124.272 -8.263 124.312 -8.179 124.363 -8.096 124.311 -8.179 124.242 -8.205 124.149 -8.227 124.056 ; #146 4 -5.788 124.067 -5.844 124.033 -5.870 124.139 -5.786 124.069 ; #147 4 -8.022 124.554 -8.073 124.512 -8.156 124.509 -8.131 124.611 -8.179 124.520 -8.263 124.451 -8.346 124.439 -8.338 124.533 -8.330 124.627 -8.297 124.728 -8.305 124.824 -8.282 124.926 -8.267 125.019 -8.259 125.122 -8.218 125.213 -8.135 125.216 -8.052 125.135 -8.044 125.031 -8.067 124.938 -8.052 124.842 -8.067 124.749 -8.026 124.651 -8.026 124.557 ; #148 4 -1.557 124.511 -1.641 124.460 -1.724 124.425 -1.807 124.445 -1.898 124.485 -1.906 124.588 -1.890 124.682 -1.874 124.776 -1.818 124.869 -1.803 124.963 -1.834 125.058 -1.793 125.151 -1.778 125.245 -1.778 125.349 -1.695 125.409 -1.687 125.315 -1.603 125.266 -1.669 125.174 -1.621 125.069 -1.605 124.974 -1.573 124.879 -1.548 124.775 -1.540 124.680 -1.548 124.577 -1.563 124.514 ; #149 4 -8.040 125.727 -8.024 125.717 -8.108 125.628 -8.191 125.599 -8.135 125.690 -8.044 125.729 ; #150 4 1.625 125.392 1.567 125.352 1.484 125.267 1.542 125.371 ; #151 4 2.848 125.546 2.848 125.471 2.765 125.514 ; #152 4 3.446 125.762 3.453 125.772 3.536 125.783 3.627 125.712 3.711 125.697 3.794 125.625 3.738 125.519 3.680 125.621 3.589 125.609 3.506 125.661 3.450 125.763 ; #153 4 -1.683 125.508 -1.691 125.471 -1.774 125.511 -1.830 125.607 -1.814 125.701 -1.814 125.898 -1.822 125.993 -1.807 126.096 -1.782 126.190 -1.774 126.293 -1.718 126.385 -1.710 126.291 -1.710 126.196 -1.695 126.092 -1.695 125.998 -1.703 125.895 -1.718 125.801 -1.710 125.706 -1.710 125.612 -1.687 125.508 ; #154 4 -7.907 125.860 -7.841 125.958 -7.800 126.050 -7.775 126.143 -7.808 126.249 -7.808 126.343 -7.823 126.439 -7.855 126.536 -7.771 126.585 -7.688 126.673 -7.648 126.774 -7.640 126.868 -7.556 126.787 -7.473 126.705 -7.473 126.611 -7.522 126.520 -7.572 126.429 -7.572 126.326 -7.603 126.233 -7.580 126.128 -7.546 126.051 -7.630 125.982 -7.713 125.922 -7.796 125.891 -7.887 125.852 -7.903 125.862 ; #155 4 -1.872 126.050 -1.865 126.023 -1.948 125.960 -2.039 125.980 -2.122 126.000 -2.205 126.049 -2.296 126.061 -2.380 126.148 -2.314 126.174 -2.306 126.173 -2.215 126.133 -2.132 126.093 -2.049 126.064 -1.966 126.088 -1.874 126.048 ; #156 4 -3.726 126.771 -3.693 126.865 -3.678 126.967 -3.637 127.060 -3.588 127.153 -3.556 127.246 -3.465 127.327 -3.381 127.333 -3.291 127.348 -3.250 127.252 -3.227 127.157 -3.144 127.200 -3.061 127.103 -3.020 127.007 -2.979 126.912 -2.964 126.817 -2.964 126.722 -2.971 126.619 -2.979 126.516 -3.003 126.423 -3.035 126.329 -3.043 126.235 -3.035 126.140 -3.118 126.105 -3.210 126.108 -3.293 126.120 -3.376 126.186 -3.467 126.247 -3.532 126.343 -3.598 126.448 -3.646 126.544 -3.712 126.735 -3.728 126.762 ; #157 4 3.885 126.796 3.975 126.808 4.059 126.736 3.892 126.787 ; #158 4 -7.400 127.494 -7.465 127.453 -7.548 127.451 -7.483 127.549 -7.400 127.497 ; #159 4 -0.170 127.304 -0.155 127.295 -0.170 127.201 -0.253 127.186 -0.337 127.181 -0.420 127.183 -0.420 127.278 -0.337 127.332 -0.253 127.329 -0.170 127.309 ; #160 4 -0.510 127.316 -0.518 127.279 -0.602 127.255 -0.685 127.295 -0.685 127.398 -0.594 127.367 -0.510 127.318 ; #161 4 0.952 127.424 0.952 127.387 0.861 127.450 ; #162 4 -0.211 127.598 -0.236 127.572 -0.319 127.509 -0.236 127.412 -0.319 127.389 -0.410 127.374 -0.493 127.451 -0.542 127.547 -0.625 127.513 -0.708 127.544 -0.685 127.638 -0.677 127.731 -0.760 127.781 -0.768 127.875 -0.702 127.967 -0.612 127.927 -0.604 127.823 -0.555 127.727 -0.472 127.696 -0.381 127.759 -0.298 127.691 -0.215 127.604 ; #163 4 0.470 127.477 0.470 127.440 0.387 127.474 ; #164 4 -1.333 127.551 -1.366 127.506 -1.449 127.480 -1.532 127.474 -1.605 127.571 -1.631 127.667 -1.605 127.760 -1.590 127.854 -1.590 128.051 -1.613 128.146 -1.573 128.240 -1.490 128.237 -1.449 128.141 -1.366 128.035 -1.333 127.940 -1.267 127.843 -1.234 127.739 -1.275 127.646 -1.331 127.553 ; #165 4 0.836 127.524 0.844 127.460 0.752 127.521 ; #166 4 0.105 127.491 0.105 127.508 0.188 127.465 0.105 127.489 ; #167 4 -7.990 127.869 -8.013 127.853 -8.104 127.944 -8.129 128.041 -8.114 128.134 -8.022 128.174 -8.030 128.071 -8.015 127.975 -7.992 127.869 ; #168 4 0.105 127.748 -0.044 127.746 -0.128 127.731 -0.219 127.817 -0.267 127.922 -0.350 127.971 -0.441 128.020 -0.524 128.069 -0.615 128.118 -0.648 128.222 -0.689 128.318 -0.772 128.349 -0.747 128.443 -0.664 128.357 -0.572 128.279 -0.489 128.219 -0.406 128.162 -0.323 128.121 -0.232 128.092 -0.149 128.043 -0.066 128.023 0.017 127.986 0.109 127.952 0.116 127.952 0.199 127.964 0.282 127.995 0.374 127.989 0.464 127.983 0.547 127.995 0.571 128.090 0.555 128.193 0.507 128.286 0.491 128.380 0.491 128.474 0.468 128.567 0.420 128.669 0.395 128.762 0.379 128.856 0.372 128.950 0.422 128.858 0.505 128.777 0.588 128.762 0.679 128.708 0.702 128.615 0.743 128.522 0.758 128.419 0.842 128.327 0.925 128.385 1.008 128.444 1.041 128.549 1.089 128.645 1.155 128.742 1.238 128.799 1.321 128.802 1.412 128.833 1.495 128.845 1.578 128.782 1.670 128.814 1.678 128.720 1.637 128.624 1.629 128.529 1.546 128.432 1.513 128.327 1.430 128.259 1.339 128.201 1.314 128.294 1.230 128.265 1.223 128.171 1.166 128.075 1.083 128.026 1.000 128.023 0.909 127.946 0.917 127.851 0.983 127.759 1.066 127.724 1.157 127.811 1.230 127.908 1.296 128.013 1.379 128.071 1.463 128.091 1.554 128.120 1.637 128.140 1.720 128.097 1.811 128.118 1.894 128.046 1.952 127.954 2.035 127.983 2.118 128.051 2.202 128.129 2.285 128.123 2.269 128.028 2.178 127.941 2.095 127.875 2.012 127.789 1.921 127.740 1.838 127.682 1.747 127.661 1.664 127.641 1.580 127.638 1.497 127.607 1.414 127.569 1.331 127.520 1.240 127.535 1.157 127.587 1.074 127.613 0.983 127.627 0.935 127.720 0.851 127.663 0.760 127.642 0.677 127.631 0.594 127.657 0.503 127.691 0.453 127.783 0.362 127.798 0.278 127.769 0.195 127.775 0.112 127.763 ; #169 4 -1.076 127.654 -1.076 127.646 -1.141 127.554 -1.141 127.657 -1.108 127.750 ; #170 4 -3.161 127.669 -3.227 127.642 -3.242 127.746 -3.159 127.669 ; #171 4 -3.053 127.806 -3.061 127.788 -3.151 127.782 -3.136 127.885 -3.053 127.808 ; #172 4 -8.098 128.190 -8.171 128.205 -8.098 128.294 ; #173 4 -2.813 128.043 -2.846 128.027 -2.937 127.955 -2.896 128.048 -2.813 128.046 ; #174 4 -3.368 130.089 -3.383 130.127 -3.432 130.223 -3.465 130.319 -3.498 130.423 -3.538 130.519 -3.604 130.616 -3.687 130.721 -3.720 130.817 -3.720 130.911 -3.637 130.918 -3.554 130.932 -3.471 130.956 -3.387 130.898 -3.296 130.840 -3.271 130.745 -3.188 130.724 -3.097 130.704 -3.014 130.674 -2.965 130.578 -2.882 130.492 -2.875 130.389 -2.890 130.295 -2.890 130.200 -2.882 130.106 -2.867 130.059 -2.801 129.962 -2.760 129.866 -2.728 129.762 -2.695 129.667 -2.687 129.563 -2.736 129.470 -2.794 129.378 -2.850 129.285 -2.801 129.181 -2.718 129.103 -2.751 129.010 -2.751 128.718 -2.736 128.623 -2.743 128.528 -2.758 128.435 -2.751 128.340 -2.792 128.238 -2.875 128.224 -2.958 128.160 -2.999 128.067 -3.082 127.967 -3.165 127.987 -3.256 128.036 -3.339 128.012 -3.422 128.033 -3.339 128.048 -3.256 128.120 -3.172 128.154 -3.089 128.160 -3.006 128.204 -3.006 128.298 -3.089 128.292 -3.130 128.388 -3.213 128.446 -3.304 128.495 -3.345 128.591 -3.320 128.684 -3.246 128.785 -3.163 128.876 -3.097 128.969 -3.153 129.065 -3.244 129.059 -3.236 129.153 -3.270 129.249 -3.302 129.344 -3.294 129.447 -3.335 129.543 -3.277 129.636 -3.194 129.662 -3.202 129.756 -3.217 129.860 -3.225 129.955 -3.273 130.051 -3.357 130.091 ; #175 4 -3.484 128.123 -3.492 128.105 -3.575 128.014 -3.658 128.017 -3.635 128.119 -3.577 128.211 -3.546 128.305 -3.629 128.271 -3.588 128.372 -3.498 128.415 -3.415 128.412 -3.430 128.319 -3.486 128.226 -3.486 128.123 ; #176 4 2.116 128.378 2.116 128.405 2.140 128.500 2.148 128.603 2.231 128.672 2.314 128.721 2.397 128.741 2.488 128.781 2.496 128.791 2.586 128.776 2.594 128.767 2.677 128.704 2.726 128.668 2.652 128.611 2.627 128.516 2.544 128.419 2.461 128.379 2.370 128.301 2.287 128.345 2.203 128.342 2.112 128.376 ; #177 4 -6.959 128.698 -6.974 128.661 -7.057 128.641 -7.042 128.735 -6.959 128.700 ; #178 4 -8.081 128.935 -8.146 128.998 -8.154 129.093 -8.071 129.040 -8.079 128.937 ; #179 4 -3.385 128.675 -3.434 128.659 -3.517 128.717 -3.501 128.820 -3.411 128.770 -3.387 128.675 ; #180 4 -7.690 129.709 -7.763 129.659 -7.847 129.703 -7.930 129.785 -7.889 129.876 -7.806 129.944 -7.715 129.911 -7.690 129.815 -7.690 129.711 ; #181 4 0.105 129.404 0.064 129.429 -0.019 129.522 -0.060 129.618 0.023 129.522 0.107 129.422 0.107 129.404 ; #182 4 -1.915 130.097 -1.931 130.192 -1.954 130.296 -1.906 130.389 -1.906 130.483 -1.814 130.445 -1.749 130.537 -1.665 130.488 -1.575 130.448 -1.607 130.355 -1.623 130.261 -1.631 130.158 -1.654 130.102 -1.669 130.067 -1.718 129.974 -1.741 129.872 -1.824 129.912 -1.890 130.009 -1.906 130.104 ; #183 4 0.097 130.168 0.014 130.211 0.105 130.205 0.105 130.188 0.097 130.170 ; #184 4 -0.335 130.788 -0.343 130.891 -0.309 130.985 -0.277 131.001 -0.194 130.915 -0.194 130.821 -0.102 130.771 -0.019 130.694 -0.027 130.789 -0.110 130.857 -0.158 130.953 -0.242 131.011 -0.257 131.049 -0.257 131.058 -0.249 131.084 -0.242 131.130 -0.226 131.166 -0.267 131.262 -0.226 131.364 -0.153 131.370 -0.070 131.359 -0.037 131.263 0.012 131.168 0.052 131.066 0.068 130.972 0.083 130.878 0.043 130.782 0.043 130.688 0.027 130.593 0.012 130.498 0.004 130.395 -0.079 130.369 -0.038 130.471 -0.122 130.436 -0.114 130.342 -0.180 130.438 -0.164 130.532 -0.247 130.598 -0.331 130.601 -0.247 130.636 -0.207 130.729 -0.290 130.760 -0.339 130.779 ; #185 4 -0.727 130.529 -0.735 130.529 -0.818 130.541 -0.811 130.644 -0.803 130.738 -0.777 130.831 -0.762 130.925 -0.671 130.922 -0.721 130.849 -0.721 130.755 -0.714 130.652 -0.714 130.606 -0.721 130.588 -0.721 130.571 -0.729 130.534 ; #186 4 -0.319 130.704 -0.335 130.659 -0.418 130.578 -0.443 130.673 -0.369 130.765 -0.346 130.764 -0.321 130.709 ; #187 4 -7.392 130.953 -7.440 130.957 -7.400 131.049 ; #188 4 -0.793 130.984 -0.801 130.929 -0.841 130.836 -0.898 130.735 -0.981 130.803 -1.072 130.824 -1.155 130.873 -1.229 130.970 -1.244 131.074 -1.161 131.108 -1.078 131.134 -0.986 131.157 -0.903 131.145 -0.820 131.079 -0.787 130.983 ; #189 4 -7.309 131.117 -7.375 131.075 -7.382 131.171 -7.299 131.210 -7.307 131.116 ; #190 4 -7.009 131.727 -7.034 131.634 -7.117 131.614 -7.200 131.526 -7.284 131.458 -7.339 131.367 -7.431 131.311 -7.514 131.271 -7.597 131.333 -7.582 131.237 -7.665 131.225 -7.755 131.169 -7.839 131.204 -7.895 131.303 -7.910 131.399 -7.827 131.439 -7.744 131.467 -7.595 131.645 -7.504 131.713 -7.421 131.743 -7.330 131.763 -7.247 131.756 -7.164 131.723 -7.098 131.822 -7.015 131.740 -7.007 131.731 ; #191 4 -0.894 131.224 -0.894 131.187 -0.977 131.189 ; #192 4 -3.968 131.383 -4.008 131.376 -4.049 131.472 -3.966 131.385 ; #193 4 -3.859 131.505 -3.859 131.459 -3.943 131.536 -3.859 131.507 ; #194 4 -7.009 131.830 -7.057 131.862 -7.057 131.957 -7.123 132.066 -7.032 132.032 -7.007 131.927 -7.007 131.832 ; #195 4 -4.324 131.707 -4.331 131.690 -4.415 131.748 -4.324 131.710 ; #196 4 -5.571 132.804 -5.548 132.802 -5.548 132.707 -5.631 132.752 -5.715 132.749 -5.806 132.747 -5.831 132.844 -5.748 132.875 -5.657 132.850 -5.573 132.806 ; #197 4 -5.471 132.873 -5.471 132.818 -5.554 132.870 ; #198 4 -5.894 132.906 -5.894 132.924 -5.804 132.982 -5.720 133.014 -5.637 133.033 -5.554 133.093 -5.471 133.181 -5.380 133.200 -5.297 133.221 -5.214 133.241 -5.262 133.151 -5.345 133.111 -5.428 133.083 -5.511 133.080 -5.603 132.993 -5.686 132.982 -5.776 132.943 -5.860 132.912 -5.893 132.906 ; #199 4 -4.000 133.414 -4.066 133.408 -4.107 133.513 -4.132 133.608 -4.198 133.705 -4.115 133.607 -4.084 133.512 ; #200 4 -6.061 134.193 -6.127 134.180 -6.210 134.196 -6.293 134.193 -6.384 134.265 -6.399 134.171 -6.483 134.169 -6.574 134.159 -6.657 134.130 -6.740 134.231 -6.771 134.328 -6.722 134.419 -6.639 134.467 -6.556 134.544 -6.465 134.563 -6.382 134.548 -6.299 134.467 -6.216 134.365 -6.133 134.295 -6.059 134.194 ; #201 4 -5.920 134.287 -5.935 134.193 -6.018 134.191 -6.185 134.393 -6.169 134.487 -6.121 134.437 -6.162 134.504 -6.177 134.533 -6.202 134.472 -6.293 134.479 -6.376 134.570 -6.344 134.662 -6.260 134.637 -6.177 134.536 -6.218 134.603 -6.243 134.700 -6.185 134.798 -6.101 134.818 -6.018 134.829 -5.928 134.804 -5.894 134.755 -5.804 134.765 -5.720 134.776 -5.637 134.779 -5.546 134.808 -5.481 134.709 -5.398 134.720 -5.324 134.620 -5.332 134.574 -5.415 134.572 -5.498 134.475 -5.589 134.418 -5.573 134.323 -5.657 134.321 -5.689 134.418 -5.772 134.389 -5.864 134.396 -5.947 134.430 -6.030 134.361 -6.096 134.393 -6.088 134.383 -6.005 134.313 -5.922 134.289 ; #202 4 -3.817 134.227 -3.850 134.193 -3.898 134.289 -3.815 134.230 ; #203 4 -6.485 134.785 -6.485 134.767 -6.568 134.727 -6.658 134.753 -6.568 134.800 ; #204 4 -6.344 134.774 -6.392 134.722 -6.425 134.820 -6.342 134.776 ; #205 4 -6.361 134.907 -6.287 134.927 -6.204 134.958 -6.189 134.939 -6.196 134.911 -6.280 134.863 -6.363 134.907 ; #206 4 -0.843 134.984 -0.867 134.910 -0.950 134.913 -1.033 134.962 -1.010 135.056 -0.926 135.044 -0.843 134.986 ; #207 4 -1.374 135.226 -1.424 135.220 -1.416 135.314 -1.393 135.416 -1.385 135.321 -1.377 135.226 ; #208 4 -0.544 135.454 -0.627 135.475 -0.700 135.572 -0.741 135.668 -0.766 135.763 -0.667 135.834 -0.594 135.765 -0.594 135.682 -0.569 135.587 -0.544 135.492 ; #209 4 -1.499 135.600 -1.582 135.585 -1.590 135.689 -1.605 135.783 -1.621 135.878 -1.646 135.983 -1.703 136.079 -1.735 136.174 -1.751 136.278 -1.799 136.374 -1.758 136.467 -1.791 136.563 -1.766 136.665 -1.766 136.759 -1.718 136.852 -1.718 136.955 -1.635 136.849 -1.635 136.754 -1.619 136.660 -1.611 136.565 -1.619 136.471 -1.579 136.366 -1.555 136.271 -1.548 136.177 -1.540 136.073 -1.540 135.979 -1.524 135.884 -1.524 135.781 -1.509 135.686 -1.501 135.602 ; #210 4 -8.229 137.732 -8.313 137.712 -8.289 137.805 -8.274 137.908 -8.267 138.002 -8.274 138.097 -8.282 138.192 -8.282 138.295 -8.313 138.393 -8.289 138.485 -8.216 138.583 -8.160 138.673 -8.069 138.741 -8.046 138.833 -7.972 138.922 -7.889 138.970 -7.806 138.963 -7.750 139.053 -7.659 139.063 -7.492 139.144 -7.452 139.046 -7.369 138.955 -7.285 138.891 -7.262 138.795 -7.270 138.701 -7.278 138.646 -7.303 138.554 -7.311 138.451 -7.351 138.360 -7.392 138.268 -7.400 138.261 -7.458 138.171 -7.548 138.083 -7.632 138.053 -7.715 137.976 -7.881 137.895 -7.972 137.847 -8.056 137.808 -8.222 137.747 -8.237 137.739 ; #211 4 -8.297 138.903 -8.272 138.995 -8.241 138.984 -8.150 138.919 -8.067 138.903 -8.060 138.847 -8.092 138.755 -8.183 138.680 -8.267 138.715 -8.291 138.811 -8.299 138.907 ; #212 4 -6.618 138.718 -6.692 138.741 -6.742 138.848 -6.658 138.816 ; #213 4 1.008 108.994 0.952 108.946 0.869 108.970 0.786 109.014 0.694 109.011 0.611 109.018 0.528 109.024 0.437 109.048 0.414 109.142 0.331 109.205 0.240 109.258 0.157 109.319 0.149 109.224 0.058 109.251 -0.025 109.259 -0.091 109.289 -0.066 109.194 -0.149 109.168 -0.232 109.170 -0.315 109.190 -0.406 109.230 -0.439 109.325 -0.439 109.419 -0.522 109.496 -0.578 109.592 -0.570 109.497 -0.548 109.402 -0.638 109.339 -0.721 109.359 -0.770 109.455 -0.704 109.556 -0.737 109.651 -0.820 109.728 -0.737 109.809 -0.820 109.821 -0.911 109.887 -0.962 109.991 -1.045 109.994 -1.128 110.079 -1.219 110.145 -1.302 110.148 -1.385 110.124 -1.468 110.117 -1.551 110.091 -1.567 110.083 -1.633 109.991 -1.716 110.030 -1.739 110.086 -1.822 110.182 -1.906 110.211 -1.989 110.187 -2.079 110.181 -2.163 110.229 -2.254 110.241 -2.337 110.269 -2.420 110.271 -2.511 110.292 -2.594 110.303 -2.685 110.314 -2.768 110.299 -2.852 110.347 -2.796 110.440 -2.747 110.542 -2.714 110.635 -2.805 110.702 -2.888 110.704 -2.881 110.798 -2.798 110.862 -2.764 110.964 -2.798 110.919 -2.881 110.827 -2.904 110.931 -2.944 111.026 -2.921 111.129 -2.863 111.221 -2.815 111.314 -2.774 111.417 -2.782 111.511 -2.855 111.608 -2.832 111.702 -2.741 111.745 -2.658 111.778 -2.741 111.826 -2.824 111.866 -2.915 111.906 -2.999 111.891 -3.089 111.893 -3.256 111.916 -3.339 111.889 -3.413 111.986 -3.246 112.170 -3.180 112.272 -3.165 112.366 -3.196 112.461 -3.262 112.557 -3.262 112.641 -3.246 112.744 -3.163 112.836 -3.105 112.928 -3.057 113.021 -2.965 113.010 -2.882 113.091 -2.792 113.106 -2.875 113.154 -2.931 113.260 -3.022 113.299 -3.105 113.396 -3.022 113.376 -3.105 113.425 -3.057 113.518 -3.024 113.611 -3.114 113.708 -3.198 113.702 -3.281 113.676 -3.322 113.771 -3.314 113.865 -3.273 113.968 -3.225 114.061 -3.142 114.153 -3.059 114.176 -3.132 114.170 -3.215 114.181 -3.231 114.276 -3.148 114.357 -3.074 114.410 -3.157 114.366 -3.248 114.322 -3.289 114.370 -3.329 114.465 -3.246 114.547 -3.196 114.600 -3.279 114.585 -3.362 114.579 -3.453 114.627 -3.536 114.665 -3.627 114.650 -3.710 114.652 -3.801 114.664 -3.885 114.675 -3.968 114.660 -4.016 114.756 -3.968 114.849 -3.912 114.942 -3.861 115.035 -3.831 115.128 -3.790 115.222 -3.749 115.323 -3.716 115.417 -3.676 115.519 -3.643 115.613 -3.594 115.715 -3.562 115.808 -3.488 115.900 -3.473 115.994 -3.381 116.055 -3.298 116.061 -3.215 116.114 -3.124 116.157 -3.041 116.220 -3.010 116.314 -2.919 116.237 -2.836 116.180 -2.753 116.185 -2.836 116.272 -2.820 116.366 -2.738 116.418 -2.646 116.424 -2.563 116.413 -2.472 116.428 -2.389 116.359 -2.374 116.453 -2.432 116.549 -2.341 116.602 -2.250 116.616 -2.167 116.640 -2.151 116.640 -2.068 116.655 -2.035 116.551 -2.076 116.458 -2.027 116.353 -1.954 116.445 -1.871 116.508 -1.788 116.506 -1.697 116.475 -1.656 116.379 -1.671 116.285 -1.588 116.366 -1.548 116.459 -1.507 116.552 -1.424 116.596 -1.341 116.585 -1.285 116.677 -1.252 116.771 -1.169 116.806 -1.085 116.786 -0.994 116.746 -0.911 116.772 -0.994 116.792 -1.085 116.832 -1.133 116.928 -1.101 117.021 -1.018 117.073 -0.934 117.146 -0.843 117.206 -0.760 117.288 -0.677 117.314 -0.768 117.363 -0.719 117.407 -0.704 117.501 -0.689 117.509 -0.673 117.603 -0.590 117.517 -0.507 117.598 -0.491 117.551 -0.408 117.612 -0.325 117.647 -0.341 117.554 -0.406 117.461 -0.399 117.461 -0.315 117.467 -0.232 117.511 -0.141 117.444 -0.058 117.470 0.025 117.487 0.116 117.527 0.124 117.527 0.207 117.484 0.298 117.495 0.381 117.535 0.464 117.575 0.555 117.641 0.639 117.661 0.722 117.710 0.812 117.741 0.896 117.798 0.936 117.903 0.911 117.997 1.002 118.037 1.085 118.002 1.168 117.949 1.120 118.042 1.037 118.106 0.997 118.199 0.981 118.293 0.933 118.386 0.956 118.481 0.923 118.583 0.963 118.679 0.933 118.772 0.963 118.876 1.021 118.972 1.112 119.030 1.138 119.022 1.168 119.023 1.176 118.928 1.260 118.828 1.343 118.776 1.416 118.683 1.482 118.591 1.507 118.488 1.590 118.456 1.704 118.271 1.755 118.178 1.838 118.097 1.921 117.996 1.987 117.904 2.070 117.915 2.128 117.823 2.144 117.918 2.235 117.984 2.318 118.081 2.401 118.138 2.484 118.086 2.575 118.025 2.658 117.924 2.741 117.852 2.832 117.837 2.898 117.745 2.938 117.671 2.979 117.767 3.012 117.673 3.020 117.591 3.045 117.686 3.078 117.612 3.109 117.639 3.167 117.670 3.200 117.576 3.200 117.521 3.231 117.493 3.271 117.400 3.354 117.308 3.339 117.402 3.422 117.442 3.513 117.491 3.538 117.398 3.579 117.295 3.662 117.240 3.711 117.147 3.736 117.252 3.720 117.346 3.736 117.441 3.703 117.534 3.786 117.537 3.877 117.511 3.786 117.563 3.728 117.656 3.728 117.759 3.794 117.855 3.850 117.762 3.933 117.765 3.966 117.663 4.014 117.570 3.991 117.664 4.074 117.620 4.131 117.518 4.196 117.426 4.212 117.521 4.260 117.626 4.268 117.608 4.268 117.514 4.351 117.422 4.392 117.329 4.432 117.226 4.424 117.132 4.417 117.028 4.442 116.935 4.417 116.840 4.432 116.746 4.432 116.681 4.488 116.580 4.405 116.549 4.372 116.454 4.463 116.382 4.440 116.278 4.455 116.184 4.372 116.098 4.430 116.005 4.471 115.903 4.430 115.884 4.347 115.853 4.281 115.748 4.198 115.699 4.132 115.697 4.049 115.668 3.966 115.637 3.943 115.665 3.860 115.645 3.776 115.626 3.685 115.623 3.627 115.658 3.536 115.682 3.453 115.605 3.362 115.585 3.279 115.565 3.196 115.562 3.113 115.522 3.080 115.418 3.121 115.325 3.037 115.248 2.946 115.190 2.863 115.197 2.780 115.156 2.697 115.211 2.689 115.237 2.606 115.301 2.566 115.205 2.482 115.120 2.457 115.015 2.366 114.955 2.308 114.851 2.217 114.848 2.134 114.929 2.050 114.909 1.967 114.869 1.885 114.764 1.801 114.752 1.718 114.723 1.635 114.655 1.544 114.652 1.552 114.558 1.600 114.465 1.569 114.370 1.519 114.266 1.519 114.257 1.552 114.163 1.559 114.146 1.544 114.051 1.495 113.946 1.412 113.870 1.354 113.774 1.347 113.670 1.405 113.577 1.389 113.482 1.463 113.390 1.478 113.296 1.519 113.203 1.569 113.102 1.660 113.086 1.668 112.992 1.642 112.888 1.650 112.794 1.658 112.691 1.658 112.597 1.625 112.501 1.600 112.406 1.559 112.302 1.476 112.282 1.428 112.252 1.337 112.214 1.254 112.204 1.228 112.167 1.228 112.064 1.172 111.968 1.089 111.882 1.114 111.789 1.114 111.685 1.064 111.590 1.105 111.497 1.130 111.403 1.178 111.310 1.145 111.215 1.122 111.111 1.114 111.016 1.064 110.911 0.998 110.816 0.983 110.721 0.952 110.626 1.000 110.533 1.083 110.451 1.107 110.357 1.190 110.323 1.281 110.262 1.296 110.168 1.379 110.076 1.420 110.048 1.469 110.041 1.501 110.004 1.526 109.911 1.610 109.838 1.700 109.758 1.784 109.751 1.867 109.753 1.900 109.660 1.991 109.634 2.074 109.702 2.165 109.731 2.157 109.713 2.074 109.616 2.041 109.512 1.975 109.416 1.892 109.422 1.801 109.365 1.718 109.288 1.662 109.192 1.578 109.144 1.495 109.142 1.405 109.110 1.321 109.145 1.405 109.242 1.488 109.310 1.472 109.318 1.424 109.280 1.333 109.203 1.292 109.107 1.219 109.011 1.136 109.046 1.053 109.052 0.969 108.966 ; #214 4 3.595 117.408 3.579 117.511 3.587 117.605 3.627 117.512 3.660 117.419 3.676 117.325 3.619 117.314 ; #215 4 4.264 117.766 4.272 117.861 4.272 117.984 4.287 117.947 4.343 117.854 4.351 117.752 4.260 117.766 ; #216 4 -0.926 131.379 -0.983 131.363 -1.074 131.329 -1.157 131.237 -1.205 131.144 -1.296 131.121 -1.379 131.150 -1.379 131.245 -1.428 131.350 -1.387 131.443 -1.304 131.403 -1.319 131.498 -1.410 131.538 -1.395 131.632 -1.436 131.737 -1.494 131.832 -1.428 131.924 -1.519 131.946 -1.503 132.039 -1.586 132.016 -1.602 132.111 -1.652 132.130 -1.735 132.050 -1.818 132.070 -1.910 132.128 -1.917 132.231 -2.000 132.159 -2.056 132.265 -2.097 132.360 -2.180 132.427 -2.165 132.530 -2.124 132.623 -2.117 132.717 -2.200 132.757 -2.200 132.774 -2.192 132.868 -2.167 132.962 -2.200 133.067 -2.167 133.140 -2.159 133.234 -2.126 133.328 -2.134 133.422 -2.134 133.517 -2.149 133.620 -2.124 133.714 -2.132 133.771 -2.091 133.864 -2.043 133.965 -2.027 134.059 -2.119 133.997 -2.201 133.982 -2.161 134.075 -2.244 134.023 -2.327 134.072 -2.350 133.978 -2.343 133.884 -2.391 133.931 -2.482 133.944 -2.565 133.918 -2.474 133.832 -2.557 133.797 -2.474 133.776 -2.482 133.682 -2.505 133.580 -2.422 133.559 -2.513 133.534 -2.596 133.500 -2.505 133.505 -2.414 133.445 -2.331 133.379 -2.346 133.276 -2.387 133.183 -2.470 133.091 -2.553 133.039 -2.645 132.968 -2.685 132.914 -2.708 132.811 -2.635 132.714 -2.612 132.620 -2.612 132.516 -2.596 132.421 -2.596 132.327 -2.654 132.235 -2.670 132.132 -2.753 132.126 -2.836 132.175 -2.861 132.270 -2.846 132.373 -2.896 132.469 -2.937 132.565 -3.010 132.662 -3.093 132.720 -3.176 132.760 -3.250 132.846 -3.227 132.940 -3.310 132.933 -3.401 133.011 -3.484 133.043 -3.550 132.942 -3.590 132.849 -3.682 132.889 -3.765 132.910 -3.848 132.904 -3.931 132.981 -4.014 133.067 -3.964 133.160 -3.979 133.264 -3.972 133.367 -3.889 133.448 -3.797 133.510 -3.714 133.516 -3.631 133.513 -3.548 133.605 -3.475 133.697 -3.391 133.685 -3.351 133.618 -3.335 133.721 -3.252 133.772 -3.078 133.766 -2.987 133.827 -2.939 133.920 -2.855 133.983 -2.939 133.977 -3.022 133.953 -3.105 133.882 -3.161 133.789 -3.244 133.801 -3.335 133.813 -3.418 133.759 -3.509 133.808 -3.592 133.820 -3.592 133.914 -3.509 133.946 -3.592 133.978 -3.759 134.095 -3.736 134.189 -3.728 134.292 -3.811 134.238 -3.885 134.335 -3.893 134.430 -3.801 134.455 -3.852 134.560 -3.935 134.609 -3.910 134.703 -3.827 134.774 -3.827 134.869 -3.842 134.964 -3.867 135.068 -3.875 134.965 -3.867 134.965 -3.852 134.870 -3.908 134.769 -3.999 134.763 -4.082 134.823 -4.165 134.909 -4.165 134.918 -4.190 135.014 -4.273 135.119 -4.329 135.216 -4.370 135.312 -4.355 135.406 -4.347 135.509 -4.363 135.604 -4.378 135.699 -4.393 135.754 -4.401 135.849 -4.401 135.943 -4.417 136.047 -4.500 136.116 -4.525 136.212 -4.566 136.316 -4.581 136.411 -4.614 136.507 -4.679 136.604 -4.728 136.700 -4.777 136.805 -4.784 136.814 -4.800 136.871 -4.823 136.918 -4.800 136.973 -4.848 137.069 -4.807 137.171 -4.890 137.229 -4.906 137.324 -4.972 137.429 -4.997 137.525 -5.020 137.535 -5.012 137.629 -5.095 137.654 -5.103 137.749 -5.169 137.857 -5.260 137.893 -5.293 137.991 -5.376 138.081 -5.293 138.120 -5.334 138.132 -5.417 138.157 -5.500 138.117 -5.591 138.125 -5.624 138.156 -5.608 138.230 -5.577 138.322 -5.569 138.424 -5.585 138.368 -5.633 138.278 -5.717 138.276 -5.742 138.372 -5.726 138.466 -5.751 138.422 -5.800 138.323 -5.891 138.376 -5.906 138.386 -5.989 138.430 -6.081 138.466 -6.163 138.473 -6.246 138.506 -6.330 138.579 -6.413 138.680 -6.504 138.752 -6.577 138.853 -6.610 138.761 -6.709 138.958 -6.734 139.055 -6.817 139.165 -6.858 139.263 -6.858 139.226 -6.817 139.128 -6.734 139.017 -6.742 138.923 -6.765 138.831 -6.758 138.727 -6.815 138.637 -6.899 138.739 -6.989 138.820 -7.030 138.918 -7.038 139.014 -7.086 139.112 -7.086 139.216 -7.038 139.295 -7.121 139.208 -7.129 139.105 -7.080 139.006 -7.080 138.912 -7.129 138.821 -7.154 138.841 -7.220 138.941 -7.311 138.995 -7.394 139.039 -7.409 139.144 -7.500 139.134 -7.584 139.105 -7.667 139.075 -7.757 139.036 -7.841 138.988 -7.924 138.986 -8.007 138.909 -8.098 138.952 -8.098 139.047 -8.040 139.137 -7.992 139.227 -7.909 139.315 -7.992 139.313 -8.075 139.403 -8.075 139.498 -8.050 139.600 -8.001 139.690 -7.994 139.784 -7.986 139.878 -7.994 139.974 -7.953 140.073 -7.938 140.101 -7.978 140.076 -8.001 140.052 -8.084 140.076 -8.118 140.096 -8.201 140.198 -8.274 140.299 -8.307 140.328 -8.380 140.438 -8.438 140.500 -8.530 140.571 -8.696 140.698 -8.787 140.780 -8.870 140.862 -8.944 140.963 -8.992 141.061 -8.825 141.065 -8.735 141.066 -8.651 141.068 -8.560 141.061 -8.477 141.062 -8.386 141.064 -8.295 141.065 -8.212 141.066 -8.121 141.068 -8.038 141.069 -7.947 141.061 -7.856 141.063 -7.773 141.065 -7.682 141.066 -7.599 141.068 -7.508 141.060 -7.417 141.061 -7.334 141.063 -7.152 141.065 -7.069 141.058 -6.978 141.059 -6.895 141.061 -6.804 141.062 -6.773 141.060 -6.740 140.962 -6.657 140.927 -6.574 140.902 -6.491 140.922 -6.399 140.960 -6.316 140.962 -6.233 141.010 -6.218 141.046 -6.127 141.047 -6.043 141.049 -5.953 141.041 -5.887 141.045 -5.796 141.046 -5.713 141.039 -5.622 141.040 -5.531 141.032 -5.448 141.034 -5.357 141.035 -5.266 141.028 -5.183 141.030 -5.092 141.022 -5.001 141.023 -4.918 141.029 -4.885 141.027 -4.486 141.039 -4.064 141.052 -3.891 141.054 -3.144 141.065 -2.896 141.064 -2.507 141.068 -2.507 140.899 -2.457 140.802 -2.374 140.744 -2.343 140.640 -2.335 140.545 -2.304 140.450 -2.335 140.357 -2.279 140.251 -2.230 140.155 -2.263 140.062 -2.271 140.025 -2.279 139.931 -2.263 139.827 -2.198 139.730 -2.165 139.634 -2.117 139.538 -2.060 139.433 -2.035 139.338 -2.027 139.329 -1.969 139.232 -1.886 139.040 -1.871 138.937 -1.805 138.840 -1.722 138.753 -1.691 138.649 -1.665 138.554 -1.641 138.459 -1.600 138.354 -1.559 138.258 -1.536 138.163 -1.470 138.066 -1.404 137.969 -1.396 137.942 -1.412 137.849 -1.445 137.755 -1.476 137.654 -1.534 137.561 -1.590 137.469 -1.639 137.376 -1.671 137.274 -1.720 137.181 -1.811 137.167 -1.859 137.263 -1.925 137.257 -2.016 137.223 -2.016 137.128 -2.039 137.035 -2.097 136.934 -2.138 136.841 -2.161 136.747 -2.145 136.652 -2.113 136.548 -2.138 136.454 -2.221 136.411 -2.312 136.386 -2.395 136.351 -2.486 136.328 -2.542 136.227 -2.583 136.134 -2.674 136.043 -2.757 136.020 -2.772 136.002 -2.863 136.005 -2.911 135.904 -2.969 135.812 -3.053 135.788 -3.068 135.743 -3.134 135.651 -3.225 135.608 -3.258 135.514 -3.281 135.412 -3.258 135.337 -3.258 135.242 -3.233 135.147 -3.192 135.042 -3.109 134.956 -3.026 134.898 -2.943 134.904 -2.852 134.872 -2.844 134.778 -2.760 134.757 -2.677 134.745 -2.503 134.739 -2.412 134.727 -2.389 134.623 -2.472 134.562 -2.563 134.574 -2.646 134.586 -2.738 134.543 -2.646 134.494 -2.639 134.494 -2.555 134.464 -2.465 134.433 -2.382 134.384 -2.298 134.297 -2.207 134.248 -2.124 134.236 -2.041 134.216 -1.958 134.222 -1.867 134.236 -1.784 134.216 -1.701 134.204 -1.617 134.183 -1.526 134.246 -1.443 134.318 -1.360 134.324 -1.269 134.358 -1.186 134.329 -1.103 134.269 -1.020 134.191 -0.928 134.159 -0.845 134.139 -0.755 134.219 -0.689 134.114 -0.640 134.018 -0.648 133.924 -0.656 133.915 -0.656 133.812 -0.648 133.718 -0.648 133.623 -0.640 133.529 -0.608 133.424 -0.524 133.338 -0.441 133.241 -0.416 133.146 -0.350 133.049 -0.350 132.946 -0.300 132.849 -0.277 132.754 -0.261 132.651 -0.261 132.548 -0.253 132.492 -0.269 132.456 -0.292 132.362 -0.317 132.260 -0.373 132.168 -0.456 132.076 -0.540 131.985 -0.613 131.893 -0.638 131.799 -0.654 131.696 -0.638 131.601 -0.662 131.508 -0.702 131.406 -0.727 131.313 -0.811 131.370 -0.901 131.356 ; #217 4 -5.918 134.287 -5.933 134.193 -6.017 134.191 -6.183 134.393 -6.167 134.487 -6.119 134.437 -6.160 134.504 -6.175 134.533 -6.216 134.601 -6.241 134.697 -6.183 134.796 -6.100 134.816 -6.017 134.826 -5.926 134.802 -5.893 134.753 -5.802 134.763 -5.719 134.774 -5.635 134.776 -5.544 134.807 -5.479 134.707 -5.396 134.718 -5.322 134.617 -5.330 134.572 -5.413 134.569 -5.496 134.473 -5.587 134.416 -5.571 134.320 -5.655 134.318 -5.688 134.416 -5.771 134.387 -5.862 134.394 -5.945 134.427 -6.028 134.359 -6.094 134.391 -6.086 134.382 -6.003 134.311 -5.920 134.287 ; #218 4 -6.177 134.531 -6.202 134.470 -6.293 134.477 -6.376 134.567 -6.344 134.659 -6.260 134.635 -6.177 134.533 ; #219 4 -20.563 164.404 -20.603 164.463 -20.686 164.487 -20.770 164.607 -20.828 164.720 -20.893 164.730 -20.951 164.853 -20.959 164.863 -21.050 164.890 -21.133 164.962 -21.216 165.071 -21.257 165.179 -21.340 165.221 -21.423 165.321 -21.479 165.434 -21.479 165.530 -21.495 165.544 -21.578 165.624 -21.626 165.735 -21.634 165.813 -21.725 165.867 -21.791 165.982 -21.806 166.092 -21.839 166.198 -21.923 166.165 -22.006 166.274 -22.089 166.395 -22.040 166.486 -22.089 166.453 -22.172 166.496 -22.089 166.568 -22.137 166.688 -22.220 166.788 -22.245 166.814 -22.213 166.909 -22.228 167.010 -22.145 167.071 -22.062 167.047 -21.979 167.004 -21.887 166.910 -21.857 166.804 -21.783 166.686 -21.700 166.597 -21.617 166.525 -21.568 166.455 -21.495 166.337 -21.329 166.095 -21.296 165.989 -21.270 165.886 -21.255 165.873 -21.164 165.790 -21.149 165.689 -21.083 165.632 -20.999 165.590 -20.951 165.479 -20.868 165.455 -20.777 165.363 -20.746 165.326 -20.663 165.302 -20.623 165.184 -20.582 165.076 -20.516 164.952 -20.425 164.850 -20.342 164.740 -20.259 164.620 -20.175 164.541 -20.143 164.435 -20.158 164.334 -20.127 164.229 -20.044 164.158 -19.970 164.033 -20.054 164.092 -20.137 164.116 -20.220 164.216 -20.311 164.204 -20.394 164.246 -20.477 164.346 -20.568 164.401 ; #220 4 -22.540 167.560 -22.456 167.603 -22.424 167.497 -22.506 167.483 -22.540 167.558 ; #221 4 -21.052 167.429 -20.969 167.481 -20.878 167.454 -20.794 167.373 -20.711 167.348 -20.628 167.342 -20.570 167.229 -20.578 167.135 -20.661 167.235 -20.744 167.204 -20.785 167.120 -20.868 167.135 -20.951 167.245 -20.999 167.364 -21.048 167.426 ; #222 4 -21.526 168.060 -21.511 168.152 -21.427 168.192 -21.336 168.203 -21.336 168.107 -21.246 168.033 -21.253 167.930 -21.344 167.910 -21.427 167.952 -21.518 168.037 -21.526 168.058 ; #223 4 -14.206 -177.968 -14.190 -177.971 -14.182 -178.077 ; #224 4 18.135 -63.213 18.111 -63.184 18.111 -63.088 18.185 -63.123 18.137 -63.214 ; #225 4 16.345 -61.612 16.361 -61.660 16.419 -61.762 16.378 -61.862 16.295 -61.844 16.204 -61.833 16.121 -61.815 16.038 -61.739 16.094 -61.650 16.177 -61.623 16.260 -61.642 16.343 -61.614 ; #226 4 15.953 -61.319 15.976 -61.275 16.059 -61.284 16.036 -61.377 15.953 -61.321 ; #227 4 14.488 -60.908 14.571 -60.877 14.655 -60.901 14.738 -60.992 14.821 -61.007 14.912 -61.079 14.952 -61.177 14.879 -61.275 14.796 -61.234 14.705 -61.169 14.621 -61.136 14.538 -61.112 14.554 -61.017 14.480 -60.916 ; #228 4 16.761 53.201 16.769 53.135 17.365 52.825 17.372 52.761 17.380 52.752 17.421 52.793 19.061 52.043 19.069 52.044 18.922 50.792 18.740 49.127 18.293 48.204 17.581 47.618 17.241 47.485 17.084 47.199 17.084 47.019 17.415 46.763 17.359 46.388 17.374 46.133 17.458 45.435 17.556 45.240 17.556 44.679 17.524 44.602 17.556 44.499 17.483 44.259 17.426 44.143 17.442 44.050 17.442 43.954 17.426 43.858 17.467 43.755 17.550 43.684 17.583 43.591 17.607 43.496 17.558 43.398 17.558 43.389 17.475 43.289 17.392 43.284 17.311 43.242 17.227 43.211 17.136 43.206 17.053 43.193 16.962 43.197 16.879 43.277 16.788 43.246 16.763 43.149 16.682 43.127 16.632 43.116 16.591 43.049 16.510 42.969 16.469 42.873 16.469 42.845 16.378 42.858 16.295 42.871 16.212 42.885 16.121 42.889 16.038 42.885 15.955 42.863 15.863 42.793 15.780 42.771 15.690 42.776 15.606 42.807 15.525 42.821 15.434 42.851 15.353 42.847 15.393 42.756 15.336 42.657 15.304 42.665 15.304 42.769 15.254 42.862 15.173 42.913 15.099 42.927 15.009 42.978 14.925 42.983 14.842 42.989 14.759 43.033 14.676 43.047 14.585 43.053 14.504 43.041 14.420 43.084 14.329 43.110 14.246 43.125 14.163 43.122 14.080 43.137 14.006 43.238 13.916 43.273 13.834 43.307 13.743 43.313 13.660 43.310 13.569 43.288 13.486 43.285 13.395 43.264 13.387 43.264 13.304 43.299 13.213 43.351 13.130 43.403 13.047 43.438 12.964 43.499 12.881 43.514 12.799 43.493 12.799 43.557 12.855 43.654 12.830 43.748 12.799 43.842 12.749 43.936 12.718 44.038 12.741 44.134 12.757 44.230 12.749 44.322 12.789 44.428 12.873 44.524 12.929 44.621 12.905 44.724 12.881 44.818 12.840 44.921 12.905 44.923 12.939 45.019 12.905 45.027 12.881 45.026 12.964 45.093 13.054 45.126 13.120 45.223 13.144 45.319 13.169 45.415 13.252 45.494 13.333 45.552 13.416 45.640 13.449 45.736 13.482 45.833 13.498 45.935 13.505 46.030 13.505 46.125 13.521 46.221 13.521 46.420 13.513 46.515 13.536 46.611 13.528 46.715 13.569 46.812 13.618 46.906 13.633 46.945 13.658 47.050 13.681 47.146 13.697 47.242 13.729 47.338 13.761 47.444 13.844 47.531 13.935 47.619 14.000 47.725 14.024 47.822 14.057 47.879 14.130 47.977 14.130 48.072 14.097 48.166 14.072 48.269 14.097 48.363 14.097 48.458 14.130 48.564 14.130 48.659 14.186 48.756 14.269 48.864 14.352 48.934 14.436 49.002 14.517 49.023 14.542 49.041 14.616 49.140 14.664 49.246 14.713 49.344 14.745 49.440 14.794 49.538 14.824 49.643 14.858 49.740 14.873 49.835 14.912 49.942 14.912 49.988 14.888 50.034 14.912 50.128 14.952 50.225 14.985 50.331 15.069 50.431 15.109 50.529 15.125 50.625 15.140 50.730 15.163 50.827 15.188 50.933 15.204 51.029 15.229 51.124 15.229 51.133 15.252 51.228 15.293 51.325 15.318 51.422 15.374 51.530 15.382 51.626 15.465 51.678 15.505 51.776 15.562 51.875 15.595 51.973 15.635 52.080 15.658 52.175 15.742 52.209 15.782 52.203 15.865 52.199 15.949 52.167 16.040 52.144 16.123 52.188 16.214 52.212 16.279 52.254 16.363 52.343 16.453 52.445 16.512 52.554 16.535 52.651 16.568 52.746 16.600 52.844 16.657 52.952 16.672 53.049 16.672 53.067 16.721 53.174 ; #229 5 28.442 -115.360 28.434 -115.384 28.343 -115.392 28.253 -115.418 28.162 -115.456 28.096 -115.336 28.187 -115.319 28.270 -115.308 28.353 -115.309 28.444 -115.358 ; #230 5 31.741 -114.815 31.771 -114.820 31.855 -114.957 31.764 -114.925 ; #231 5 24.902 -112.370 24.828 -112.353 24.821 -112.255 24.729 -112.261 24.639 -112.163 24.729 -112.231 24.813 -112.223 24.904 -112.292 24.987 -112.264 25.070 -112.263 25.161 -112.266 25.244 -112.245 25.335 -112.266 25.244 -112.254 25.161 -112.284 25.070 -112.292 24.987 -112.323 24.904 -112.371 ; #232 5 29.082 -113.274 29.098 -113.260 29.189 -113.309 29.272 -113.318 29.355 -113.373 29.421 -113.494 29.512 -113.506 29.595 -113.591 29.595 -113.689 29.512 -113.709 29.421 -113.660 29.338 -113.564 29.247 -113.495 29.164 -113.398 29.081 -113.273 ; #233 5 24.610 -112.109 24.470 -111.915 24.455 -111.814 24.538 -111.881 24.604 -111.993 24.612 -112.109 ; #234 5 28.815 -112.432 28.874 -112.395 28.964 -112.368 29.048 -112.338 29.139 -112.350 29.222 -112.387 29.305 -112.387 29.289 -112.480 29.256 -112.567 29.173 -112.617 29.090 -112.638 28.999 -112.635 28.916 -112.676 28.866 -112.561 28.817 -112.438 ; #235 5 26.140 -111.204 26.132 -111.220 26.099 -111.315 26.001 -111.331 25.918 -111.313 26.008 -111.277 26.057 -111.195 ; #236 5 25.184 -110.815 25.101 -110.798 25.018 -110.753 24.935 -110.685 25.018 -110.629 25.101 -110.683 ; #237 5 24.196 -109.888 24.287 -109.909 24.370 -110.004 24.287 -109.976 ; #238 5 25.068 -108.299 24.977 -108.245 24.894 -108.179 24.977 -108.207 25.068 -108.281 25.159 -108.407 25.068 -108.301 ; #239 5 25.119 -108.227 25.045 -108.231 24.954 -108.130 25.037 -108.143 25.120 -108.225 ; #240 5 21.760 -106.768 21.745 -106.774 21.661 -106.718 21.646 -106.618 21.737 -106.664 21.760 -106.766 ; #241 5 -2.097 41.020 -2.097 41.029 -2.014 41.094 -1.981 41.188 -1.940 41.093 -2.014 40.990 ; #242 5 -21.942 43.249 -22.025 43.262 -22.108 43.238 -22.199 43.253 -22.290 43.277 -22.373 43.291 -22.464 43.297 -22.555 43.332 -22.638 43.355 -22.729 43.369 -22.820 43.460 -22.911 43.563 -23.002 43.598 -23.184 43.627 -23.257 43.697 -23.340 43.761 -23.432 43.749 -23.472 43.686 -23.555 43.644 -23.639 43.641 -23.729 43.664 -23.812 43.652 -23.904 43.666 -23.994 43.672 -24.077 43.668 -24.169 43.665 -24.252 43.700 -24.342 43.811 -24.426 43.884 -24.517 43.926 -24.608 43.923 -24.698 43.976 -24.790 44.020 -24.880 44.073 -24.888 44.074 -24.919 44.181 -24.993 44.292 -25.066 44.405 -25.025 44.295 -25.109 44.380 -25.134 44.479 -25.142 44.565 -25.149 44.672 -25.174 44.789 -25.240 44.893 -25.331 44.998 -25.381 45.109 -25.430 45.220 -25.422 45.316 -25.422 45.422 -25.415 45.527 -25.374 45.600 -25.300 45.708 -25.234 45.808 -25.178 45.909 -25.146 46.003 -25.105 46.105 -25.064 46.198 -25.057 46.224 -25.031 46.319 -25.016 46.414 -25.016 46.424 -25.031 46.540 -25.039 46.638 -25.006 46.740 -24.950 46.842 -24.935 46.947 -24.844 47.017 -24.788 47.110 -24.704 47.114 -24.613 47.184 -24.523 47.216 -24.432 47.257 -24.341 47.289 -24.258 47.301 -24.167 47.324 -24.075 47.373 -23.992 47.406 -23.910 47.436 -23.818 47.497 -23.735 47.538 -23.652 47.559 -23.561 47.582 -23.478 47.576 -23.447 47.604 -23.396 47.609 -23.313 47.641 -23.223 47.682 -23.199 47.690 -23.116 47.710 -23.033 47.723 -22.942 47.743 -22.859 47.775 -22.775 47.799 -22.685 47.810 -22.602 47.822 -22.510 47.833 -22.420 47.856 -22.337 47.869 -22.253 47.910 -22.162 47.941 -22.029 47.996 -21.998 48.003 -21.907 48.055 -21.816 48.085 -21.733 48.137 -21.642 48.166 -21.559 48.189 -21.475 48.221 -21.385 48.242 -21.302 48.283 -21.218 48.306 -21.135 48.318 -21.110 48.316 -21.054 48.350 -20.963 48.373 -20.880 48.385 -20.872 48.375 -20.864 48.375 -20.832 48.410 -20.740 48.430 -20.559 48.476 -20.475 48.497 -20.392 48.528 -20.301 48.551 -20.236 48.573 -20.145 48.613 -19.978 48.698 -19.887 48.710 -19.846 48.690 -19.854 48.719 -19.822 48.755 -19.739 48.768 -19.639 48.791 -19.549 48.803 -19.458 48.844 -19.375 48.886 -19.284 48.918 -19.201 48.951 -19.117 48.964 -19.034 48.988 -18.853 49.072 -18.761 49.113 -18.678 49.144 -18.496 49.208 -18.413 49.250 -18.322 49.300 -18.231 49.304 -18.148 49.316 -18.140 49.316 -18.049 49.374 -18.009 49.354 -17.918 49.366 -17.827 49.389 -17.736 49.411 -17.645 49.434 -17.562 49.437 -17.463 49.423 -17.380 49.408 -17.297 49.374 -17.206 49.360 -17.123 49.401 -17.098 49.408 -16.931 49.474 -16.840 49.515 -16.784 49.607 -16.734 49.708 -16.643 49.647 -16.560 49.726 -16.469 49.776 -16.378 49.788 -16.287 49.756 -16.204 49.759 -16.113 49.771 -16.057 49.664 -16.024 49.633 -15.941 49.610 -15.858 49.642 -15.767 49.636 -15.683 49.623 -15.600 49.571 -15.510 49.574 -15.426 49.578 -15.343 49.676 -15.351 49.723 -15.399 49.831 -15.490 49.846 -15.581 49.878 -15.664 49.921 -15.687 49.951 -15.771 49.956 -15.836 50.056 -15.836 50.065 -15.860 50.162 -15.769 50.220 -15.677 50.252 -15.511 50.337 -15.420 50.369 -15.329 50.390 -15.239 50.413 -15.155 50.408 -15.099 50.366 -15.016 50.314 -14.925 50.255 -14.842 50.222 -14.759 50.192 -14.668 50.159 -14.584 50.155 -14.501 50.126 -14.320 50.118 -14.236 50.132 -14.146 50.081 -14.055 50.095 -13.963 50.100 -13.873 50.067 -13.790 50.072 -13.698 50.059 -13.615 50.027 -13.525 50.014 -13.441 49.973 -13.358 49.952 -13.267 49.930 -13.194 49.898 -13.111 49.856 -13.085 49.864 -13.002 49.878 -12.911 49.846 -12.828 49.796 -12.745 49.728 -12.662 49.678 -12.720 49.585 -12.637 49.591 -12.553 49.492 -12.462 49.526 -12.372 49.456 -12.288 49.461 -12.232 49.355 -12.149 49.316 -12.172 49.213 -12.081 49.200 -12.089 49.295 -11.998 49.291 -11.915 49.250 -11.907 49.155 -11.998 49.075 -12.081 49.114 -12.165 49.091 -12.205 48.989 -12.288 48.908 -12.379 48.828 -12.395 48.725 -12.468 48.823 -12.551 48.809 -12.643 48.850 -12.725 48.892 -12.809 48.877 -12.900 48.835 -12.940 48.819 -12.981 48.794 -13.014 48.778 -13.079 48.763 -13.087 48.763 -13.178 48.785 -13.201 48.748 -13.292 48.725 -13.348 48.633 -13.341 48.528 -13.341 48.433 -13.424 48.454 -13.432 48.359 -13.530 48.288 -13.613 48.274 -13.704 48.249 -13.679 48.153 -13.589 48.114 -13.505 48.044 -13.422 48.014 -13.437 47.919 -13.529 47.848 -13.619 47.843 -13.702 47.837 -13.786 47.858 -13.877 47.946 -13.960 47.977 -13.975 47.986 -14.066 47.989 -14.149 47.927 -14.059 47.896 -14.142 47.853 -14.109 47.747 -14.200 47.705 -14.283 47.653 -14.374 47.665 -14.465 47.736 -14.473 47.832 -14.513 47.937 -14.571 47.957 -14.662 47.935 -14.614 47.941 -14.523 47.891 -14.530 47.796 -14.538 47.693 -14.637 47.621 -14.720 47.569 -14.811 47.526 -14.910 47.455 -14.950 47.361 -14.867 47.358 -14.776 47.430 -14.685 47.443 -14.594 47.431 -14.627 47.337 -14.710 47.265 -14.801 47.269 -14.875 47.177 -14.966 47.122 -15.039 47.031 -15.122 47.027 -15.213 47.116 -15.304 47.186 -15.345 47.133 -15.329 47.077 -15.363 47.050 -15.378 47.004 -15.444 46.912 -15.353 46.936 -15.262 46.995 -15.179 46.944 -15.113 46.845 -15.179 46.744 -15.252 46.653 -15.318 46.553 -15.384 46.461 -15.449 46.361 -15.540 46.281 -15.631 46.305 -15.715 46.283 -15.755 46.381 -15.838 46.432 -15.823 46.346 -15.848 46.339 -15.848 46.321 -15.856 46.286 -15.848 46.268 -15.765 46.217 -15.674 46.203 -15.591 46.114 -15.641 46.012 -15.732 45.988 -15.658 45.889 -15.699 45.787 -15.707 45.779 -15.674 45.681 -15.747 45.590 -15.831 45.604 -15.914 45.544 -15.831 45.539 -15.846 45.444 -15.886 45.343 -15.978 45.310 -15.920 45.269 -15.829 45.188 -15.902 45.088 -15.986 45.017 -16.059 44.926 -16.059 44.908 -16.099 44.815 -16.074 44.709 -16.067 44.604 -16.059 44.508 -16.099 44.406 -16.183 44.393 -16.266 44.389 -16.357 44.440 -16.440 44.416 -16.424 44.397 -16.515 44.411 -16.599 44.389 -16.682 44.318 -16.765 44.276 -16.856 44.217 -16.939 44.174 -17.030 44.133 -17.121 44.070 -17.204 44.000 -17.295 43.947 -17.386 43.916 -17.477 43.912 -17.568 43.983 -17.608 43.995 -17.699 44.017 -17.790 43.995 -17.873 43.991 -17.957 44.004 -18.048 44.027 -18.131 44.031 -18.222 44.028 -18.313 44.041 -18.403 44.113 -18.487 44.153 -18.578 44.196 -18.668 44.230 -18.751 44.226 -18.843 44.212 -18.926 44.208 -19.009 44.251 -19.092 44.320 -19.183 44.363 -19.231 44.412 -19.323 44.446 -19.406 44.442 -19.421 44.416 -19.504 44.383 -19.545 44.393 -19.593 44.369 -19.677 44.374 -19.709 44.422 -19.765 44.452 -19.856 44.440 -19.912 44.414 -20.003 44.322 -20.094 44.273 -20.145 44.238 -20.153 44.238 -20.193 44.232 -20.266 44.199 -20.350 44.108 -20.441 44.087 -20.524 44.045 -20.615 43.946 -20.698 43.895 -20.781 43.863 -20.872 43.859 -20.955 43.838 -21.046 43.814 -21.129 43.723 -21.122 43.705 -21.122 43.620 -21.147 43.566 -21.170 43.538 -21.178 43.510 -21.170 43.500 -21.253 43.467 -21.344 43.464 -21.427 43.460 -21.511 43.427 -21.594 43.347 -21.642 43.332 -21.733 43.282 -21.816 43.258 -21.915 43.238 ; #243 5 -12.809 48.610 -12.801 48.618 -12.718 48.643 ; #244 5 -16.631 50.024 -16.581 50.021 -16.639 49.987 -16.722 49.927 -16.813 49.876 -16.896 49.898 -16.806 49.948 -16.715 49.980 -16.631 50.022 ; #245 5 32.557 -117.232 32.501 -117.234 32.418 -117.196 32.334 -117.138 32.243 -117.018 32.160 -116.989 32.077 -116.978 31.994 -116.871 31.903 -116.781 31.820 -116.703 31.737 -116.764 31.646 -116.750 31.562 -116.751 31.497 -116.673 31.414 -116.577 31.323 -116.507 31.239 -116.430 31.174 -116.400 31.090 -116.401 31.000 -116.408 30.917 -116.283 30.833 -116.137 30.750 -116.117 30.659 -116.103 30.493 -116.105 30.409 -116.058 30.475 -115.990 30.427 -116.016 30.377 -115.895 30.294 -115.857 30.210 -115.846 30.119 -115.824 30.036 -115.843 30.029 -115.839 29.945 -115.760 29.854 -115.738 29.771 -115.692 29.746 -115.644 29.663 -115.568 29.597 -115.447 29.547 -115.323 29.464 -115.247 29.456 -115.217 29.440 -115.114 29.382 -114.987 29.351 -114.958 29.260 -114.879 29.177 -114.794 29.094 -114.688 29.003 -114.649 28.930 -114.526 28.846 -114.451 28.755 -114.420 28.699 -114.303 28.616 -114.248 28.576 -114.186 28.492 -114.149 28.409 -114.178 28.318 -114.216 28.227 -114.168 28.046 -114.302 28.030 -114.325 27.939 -114.351 27.997 -114.264 27.914 -114.254 27.831 -114.274 27.747 -114.198 27.788 -114.105 27.871 -114.094 27.962 -114.115 27.871 -114.008 27.781 -113.996 27.697 -113.995 27.606 -113.965 27.523 -114.014 27.606 -114.015 27.697 -114.063 27.697 -114.161 27.720 -114.266 27.811 -114.403 27.902 -114.452 27.844 -114.539 27.829 -114.641 27.821 -114.746 27.844 -114.860 27.860 -114.972 27.867 -115.072 27.875 -115.173 27.792 -115.126 27.701 -115.019 27.660 -114.898 27.653 -114.896 27.570 -114.829 27.529 -114.709 27.446 -114.613 27.363 -114.585 27.279 -114.575 27.222 -114.449 27.214 -114.349 27.173 -114.238 27.090 -114.162 27.034 -114.037 26.993 -113.926 26.910 -113.851 26.819 -113.782 26.771 -113.669 26.836 -113.584 26.844 -113.480 26.811 -113.371 26.895 -113.322 26.977 -113.311 27.036 -113.283 26.953 -113.246 26.861 -113.293 26.771 -113.236 26.688 -113.160 26.604 -113.115 26.521 -112.990 26.430 -112.863 26.364 -112.755 26.308 -112.639 26.300 -112.540 26.268 -112.490 26.169 -112.419 26.086 -112.345 26.070 -112.321 25.987 -112.267 25.904 -112.231 25.813 -112.192 25.722 -112.162 25.631 -112.171 25.540 -112.159 25.374 -112.161 25.283 -112.188 25.167 -112.218 25.143 -112.192 25.060 -112.221 24.970 -112.222 24.886 -112.212 24.970 -112.192 25.053 -112.189 24.970 -112.184 24.878 -112.162 24.747 -111.938 24.656 -111.890 24.623 -111.786 24.532 -111.700 24.507 -111.655 24.434 -111.541 24.351 -111.425 24.285 -111.313 24.229 -111.195 24.163 -111.083 24.155 -111.081 24.072 -110.997 23.989 -110.892 23.905 -110.806 23.815 -110.729 23.749 -110.609 23.716 -110.504 23.625 -110.387 23.542 -110.329 23.451 -110.271 23.360 -110.241 23.178 -110.200 23.095 -110.163 23.012 -110.106 23.004 -110.086 22.989 -109.998 23.012 -109.936 23.085 -109.855 23.159 -109.766 23.174 -109.673 23.232 -109.580 23.323 -109.525 23.414 -109.518 23.505 -109.521 23.521 -109.533 23.604 -109.579 23.687 -109.663 23.735 -109.770 23.902 -109.808 23.985 -109.903 24.076 -109.897 24.109 -109.961 24.165 -110.079 24.223 -110.084 24.279 -110.153 24.327 -110.269 24.418 -110.357 24.327 -110.404 24.244 -110.404 24.252 -110.502 24.259 -110.407 24.259 -110.522 24.283 -110.633 24.366 -110.728 24.449 -110.786 24.498 -110.788 24.556 -110.783 24.639 -110.829 24.729 -110.841 24.813 -110.792 24.904 -110.756 24.995 -110.804 25.078 -110.849 25.161 -110.962 25.327 -111.033 25.418 -111.054 25.502 -111.090 25.593 -111.111 25.593 -111.207 25.683 -111.264 25.766 -111.300 25.858 -111.386 25.941 -111.422 26.031 -111.451 26.123 -111.425 26.214 -111.463 26.297 -111.500 26.388 -111.502 26.471 -111.577 26.554 -111.556 26.645 -111.672 26.736 -111.693 26.827 -111.800 26.917 -111.886 26.951 -111.994 26.867 -111.958 26.784 -111.949 26.701 -111.865 26.610 -111.903 26.701 -111.951 26.784 -112.026 26.867 -111.996 26.951 -112.062 27.034 -112.116 27.132 -112.063 27.158 -112.109 27.206 -112.223 27.289 -112.307 27.380 -112.364 27.446 -112.413 27.529 -112.422 27.620 -112.529 27.693 -112.651 27.777 -112.786 27.958 -112.864 28.042 -112.864 28.090 -112.898 28.181 -112.901 28.272 -112.931 28.355 -112.968 28.446 -112.950 28.512 -113.050 28.520 -113.159 28.610 -113.198 28.701 -113.247 28.785 -113.266 28.876 -113.323 28.908 -113.441 28.999 -113.519 28.966 -113.606 29.049 -113.625 29.141 -113.628 29.239 -113.727 29.330 -113.719 29.413 -113.803 29.504 -113.921 29.555 -114.004 29.645 -114.121 29.728 -114.197 29.812 -114.323 29.868 -114.440 29.951 -114.450 30.034 -114.580 30.050 -114.597 30.133 -114.634 30.224 -114.702 30.307 -114.701 30.390 -114.690 30.473 -114.689 30.564 -114.712 30.648 -114.749 30.731 -114.768 30.821 -114.770 30.905 -114.789 31.071 -114.903 31.162 -114.963 31.245 -114.973 31.329 -114.962 31.419 -114.964 31.586 -114.941 31.677 -114.883 31.760 -114.921 31.843 -114.986 31.934 -115.106 31.990 -115.140 31.950 -115.103 31.934 -115.039 31.926 -115.035 31.843 -114.910 31.795 -114.789 31.779 -114.674 31.688 -114.555 31.605 -114.419 31.539 -114.290 31.524 -114.184 31.549 -114.087 31.632 -114.026 31.600 -113.904 31.558 -113.786 31.468 -113.736 31.385 -113.738 31.377 -113.734 31.329 -113.614 31.313 -113.508 31.288 -113.398 31.272 -113.292 31.214 -113.159 31.141 -113.135 31.075 -113.204 30.992 -113.177 30.901 -113.184 30.818 -113.187 30.734 -113.158 30.651 -113.103 30.560 -113.024 30.477 -112.948 30.394 -112.911 30.303 -112.861 30.220 -112.816 30.129 -112.814 30.046 -112.777 29.997 -112.783 29.907 -112.705 29.824 -112.668 29.732 -112.600 29.649 -112.554 29.566 -112.487 29.516 -112.452 29.425 -112.488 29.342 -112.413 29.374 -112.325 29.291 -112.280 29.284 -112.287 29.201 -112.268 29.109 -112.265 29.026 -112.247 28.860 -112.017 28.769 -112.014 28.686 -111.921 28.603 -111.836 28.520 -111.800 28.471 -111.686 28.388 -111.561 28.221 -111.429 28.131 -111.372 28.048 -111.279 28.007 -111.168 27.974 -111.050 27.891 -110.996 27.956 -110.990 27.989 -110.973 28.005 -110.970 28.005 -110.951 27.989 -110.946 27.956 -110.954 27.956 -110.856 27.916 -110.736 27.901 -110.633 27.877 -110.733 27.794 -110.678 27.711 -110.758 27.620 -110.729 27.529 -110.708 27.438 -110.610 27.355 -110.631 27.299 -110.515 27.216 -110.431 27.190 -110.326 27.175 -110.223 27.167 -110.123 27.175 -110.108 27.134 -110.067 27.051 -110.079 26.968 -110.014 26.877 -109.984 26.794 -109.930 26.786 -109.919 26.738 -109.806 26.746 -109.791 26.753 -109.696 26.761 -109.601 26.678 -109.487 26.587 -109.402 26.503 -109.375 26.421 -109.376 26.451 -109.288 26.411 -109.257 26.328 -109.230 26.378 -109.274 26.328 -109.344 26.244 -109.385 26.302 -109.394 26.295 -109.410 26.212 -109.449 26.146 -109.496 26.105 -109.531 26.014 -109.549 25.931 -109.522 25.916 -109.527 25.832 -109.509 25.741 -109.479 25.824 -109.479 25.792 -109.371 25.736 -109.460 25.720 -109.357 25.712 -109.258 25.657 -109.163 25.664 -109.157 25.689 -109.146 25.745 -109.058 25.662 -109.070 25.621 -109.154 25.538 -109.128 25.571 -109.041 25.637 -108.956 25.554 -108.862 25.546 -108.868 25.463 -108.833 25.448 -108.731 25.432 -108.726 25.440 -108.825 25.407 -108.718 25.358 -108.605 25.358 -108.597 25.275 -108.484 25.308 -108.397 25.225 -108.371 25.241 -108.309 25.192 -108.196 25.109 -108.102 25.076 -108.074 25.043 -108.072 24.952 -108.075 24.869 -108.048 24.786 -108.085 24.695 -108.038 24.679 -107.938 24.596 -107.822 24.573 -107.799 24.565 -107.789 24.540 -107.686 24.540 -107.580 24.449 -107.627 24.505 -107.737 24.546 -107.843 24.414 -107.620 24.331 -107.504 24.275 -107.444 24.217 -107.335 24.134 -107.231 24.050 -107.116 23.960 -107.031 23.952 -107.010 23.869 -106.965 23.785 -106.909 23.770 -106.905 23.679 -106.820 23.596 -106.745 23.513 -106.660 23.447 -106.598 23.356 -106.569 23.273 -106.503 23.190 -106.409 23.159 -106.375 23.076 -106.281 22.993 -106.206 22.934 -106.097 22.851 -106.040 22.768 -105.957 22.685 -105.892 22.602 -105.846 22.545 -105.825 22.462 -105.780 22.379 -105.762 22.288 -105.760 22.205 -105.769 22.114 -105.776 22.031 -105.731 21.940 -105.664 21.857 -105.608 21.766 -105.570 21.750 -105.558 21.659 -105.482 21.619 -105.406 21.536 -105.312 21.452 -105.361 21.362 -105.342 21.279 -105.350 21.195 -105.350 21.122 -105.431 20.955 -105.567 20.864 -105.594 20.864 -105.489 20.799 -105.379 20.748 -105.350 20.733 -105.346 20.650 -105.414 20.609 -105.501 20.594 -105.602 20.586 -105.697 20.530 -105.781 20.447 -105.763 20.363 -105.707 20.272 -105.660 20.189 -105.652 20.023 -105.560 19.940 -105.487 19.924 -105.476 19.833 -105.421 19.750 -105.341 19.727 -105.328 19.644 -105.217 19.561 -105.193 19.477 -105.139 19.404 -105.030 19.330 -104.932 19.322 -104.834 19.264 -104.728 19.241 -104.657 19.216 -104.547 19.193 -104.447 19.110 -104.414 19.077 -104.312 19.036 -104.209 18.988 -104.104 18.980 -104.085 18.889 -103.993 18.806 -103.893 18.773 -103.849 18.690 -103.816 18.599 -103.716 18.516 -103.674 18.433 -103.603 18.392 -103.491 18.369 -103.391 18.361 -103.381 18.330 -103.270 18.314 -103.172 18.307 -103.162 18.258 -103.057 18.218 -102.954 18.203 -102.913 18.187 -102.815 18.171 -102.716 18.156 -102.647 18.123 -102.545 18.092 -102.435 18.059 -102.333 18.059 -102.324 18.115 -102.229 18.115 -102.134 18.059 -102.019 18.026 -101.967 17.936 -101.904 17.769 -101.740 17.744 -101.641 17.661 -101.588 17.612 -101.466 17.547 -101.359 17.473 -101.241 17.390 -101.131 17.340 -101.026 17.317 -100.926 17.276 -100.815 17.268 -100.787 17.235 -100.685 17.195 -100.574 17.162 -100.472 17.113 -100.368 17.098 -100.270 17.057 -100.168 17.042 -100.127 17.001 -100.024 16.918 -99.963 16.862 -99.858 16.862 -99.762 16.837 -99.673 16.829 -99.576 16.796 -99.466 16.788 -99.369 16.781 -99.350 16.755 -99.250 16.740 -99.152 16.707 -99.091 16.707 -98.986 16.666 -98.895 16.651 -98.883 16.568 -98.813 16.485 -98.733 16.453 -98.661 16.429 -98.561 16.413 -98.463 16.388 -98.354 16.331 -98.249 16.281 -98.164 16.266 -98.136 16.183 -98.026 16.126 -97.921 16.126 -97.799 16.119 -97.693 16.103 -97.595 16.096 -97.498 16.088 -97.401 16.063 -97.293 15.989 -97.185 15.981 -97.157 15.925 -97.052 15.900 -96.952 15.875 -96.852 15.834 -96.750 15.819 -96.643 15.867 -96.596 15.860 -96.499 15.860 -96.404 15.900 -96.306 15.941 -96.217 15.957 -96.173 15.997 -96.085 16.030 -95.986 16.070 -95.898 16.096 -95.806 16.119 -95.715 16.126 -95.698 16.142 -95.605 16.233 -95.536 16.274 -95.438 16.331 -95.352 16.372 -95.321 16.347 -95.280 16.363 -95.187 16.363 -95.169 16.378 -95.076 16.386 -94.981 16.419 -95.091 16.419 -95.187 16.485 -95.189 16.510 -95.138 16.583 -95.054 16.576 -95.026 16.517 -94.990 16.427 -94.966 16.492 -94.881 16.492 -94.786 16.409 -94.828 16.359 -94.915 16.359 -94.819 16.351 -94.723 16.343 -94.617 16.303 -94.515 16.262 -94.413 16.229 -94.312 16.206 -94.252 16.165 -94.150 16.248 -94.248 16.264 -94.277 16.312 -94.390 16.337 -94.489 16.353 -94.588 16.444 -94.612 16.413 -94.511 16.363 -94.407 16.355 -94.310 16.314 -94.277 16.274 -94.175 16.233 -94.063 16.150 -94.077 16.094 -93.972 16.020 -93.855 15.964 -93.782 15.891 -93.674 15.808 -93.577 15.641 -93.359 15.550 -93.288 15.467 -93.179 15.393 -93.072 15.353 -92.970 15.270 -92.910 15.353 -92.999 15.270 -92.959 15.229 -92.925 15.146 -92.848 14.979 -92.671 14.896 -92.597 14.730 -92.428 14.813 -92.362 14.854 -92.340 14.862 -92.332 14.945 -92.350 15.028 -92.361 15.111 -92.336 15.136 -92.340 15.219 -92.270 15.250 -92.257 15.334 -92.317 15.366 -92.340 15.449 -92.400 15.533 -92.347 15.616 -92.305 15.699 -92.252 15.782 -92.210 15.831 -92.180 15.914 -92.129 15.929 -92.123 15.978 -92.104 16.061 -92.051 16.144 -92.008 16.227 -91.957 16.243 -91.864 16.243 -90.683 16.250 -90.667 16.333 -90.653 16.417 -90.684 16.500 -90.631 16.583 -90.626 16.640 -90.731 16.647 -90.769 16.738 -90.868 16.763 -90.890 16.846 -90.904 16.895 -90.938 16.968 -91.045 17.001 -91.146 17.057 -91.259 17.140 -91.329 17.223 -91.426 17.307 -91.486 17.372 -91.602 17.413 -91.655 17.413 -91.263 17.436 -91.200 17.520 -91.205 17.603 -91.200 17.693 -91.206 17.777 -91.201 17.943 -91.210 17.974 -91.206 17.974 -89.360 18.057 -89.364 18.107 -89.363 18.148 -89.294 18.115 -89.193 18.042 -89.077 18.034 -89.067 18.049 -89.060 18.057 -89.061 18.141 -88.999 18.199 -88.961 18.214 -88.937 18.280 -88.920 18.371 -88.850 18.386 -88.834 18.469 -88.801 18.553 -88.758 18.636 -88.695 18.636 -88.535 18.676 -88.494 18.767 -88.453 18.858 -88.467 18.899 -88.377 18.955 -88.281 18.864 -88.258 18.781 -88.263 18.690 -88.287 18.599 -88.273 18.516 -88.164 18.425 -88.150 18.342 -88.081 18.350 -88.083 18.433 -88.077 18.599 -87.990 18.690 -87.977 18.773 -87.972 18.864 -87.930 19.031 -87.860 19.121 -87.857 19.204 -87.832 19.288 -87.789 19.379 -87.765 19.462 -87.722 19.446 -87.816 19.355 -87.877 19.371 -87.907 19.454 -87.910 19.545 -87.858 19.545 -87.762 19.618 -87.677 19.702 -87.699 19.702 -87.795 19.694 -87.899 19.777 -87.894 19.860 -87.860 19.943 -87.797 20.000 -87.700 20.083 -87.715 20.083 -87.698 20.017 -87.677 20.050 -87.665 20.141 -87.699 20.189 -87.699 20.272 -87.697 20.363 -87.658 20.447 -87.597 20.530 -87.547 20.621 -87.488 20.694 -87.405 20.752 -87.310 20.808 -87.273 20.899 -87.205 20.982 -87.124 21.048 -87.098 21.139 -87.076 21.205 -87.033 21.296 -87.076 21.379 -87.065 21.462 -87.071 21.553 -87.096 21.627 -87.206 21.717 -87.318 21.710 -87.414 21.669 -87.512 21.685 -87.620 21.601 -87.701 21.561 -87.588 21.586 -87.689 21.619 -87.801 21.627 -87.849 21.650 -87.950 21.650 -87.958 21.642 -88.053 21.634 -87.956 21.609 -87.866 21.617 -87.964 21.625 -88.050 21.681 -88.157 21.681 -88.253 21.714 -88.356 21.698 -88.476 21.683 -88.578 21.698 -88.637 21.683 -88.740 21.667 -88.834 21.609 -88.919 21.569 -89.008 21.538 -89.107 21.505 -89.294 21.497 -89.398 21.472 -89.490 21.464 -89.584 21.456 -89.679 21.448 -89.774 21.433 -89.876 21.426 -89.971 21.410 -90.065 21.379 -90.164 21.329 -90.251 21.321 -90.288 21.281 -90.376 21.240 -90.465 21.183 -90.551 21.100 -90.620 21.017 -90.642 21.010 -90.650 21.010 -90.632 21.017 -90.625 21.100 -90.593 21.010 -90.614 20.959 -90.631 20.868 -90.699 20.785 -90.702 20.702 -90.724 20.686 -90.730 20.596 -90.713 20.512 -90.715 20.429 -90.726 20.338 -90.727 20.323 -90.733 20.232 -90.733 20.148 -90.700 20.100 -90.699 20.017 -90.780 19.959 -90.866 19.876 -90.917 19.793 -90.931 19.702 -90.943 19.618 -90.948 19.528 -90.960 19.445 -91.014 19.379 -91.108 19.346 -91.130 19.280 -91.224 19.232 -91.312 19.166 -91.398 19.133 -91.497 19.092 -91.586 19.044 -91.674 18.961 -91.737 19.001 -91.648 19.100 -91.472 19.034 -91.566 18.969 -91.651 18.945 -91.552 18.862 -91.500 18.771 -91.503 18.771 -91.541 18.715 -91.628 18.682 -91.719 18.599 -91.732 18.607 -91.789 18.615 -91.886 18.630 -91.994 18.581 -92.082 18.581 -92.090 18.665 -92.095 18.756 -92.206 18.771 -92.208 18.786 -92.193 18.786 -92.097 18.794 -92.116 18.878 -92.185 18.870 -92.279 18.862 -92.317 18.847 -92.410 18.831 -92.512 18.831 -92.608 18.816 -92.710 18.808 -92.727 18.775 -92.817 18.744 -92.917 18.653 -92.893 18.622 -92.897 18.653 -92.902 18.694 -92.976 18.645 -93.073 18.622 -93.173 18.615 -93.277 18.599 -93.371 18.591 -93.396 18.615 -93.438 18.607 -93.532 18.615 -93.629 18.607 -93.733 18.583 -93.825 18.551 -93.915 18.510 -94.013 18.477 -94.072 18.518 -93.975 18.543 -93.883 18.566 -93.822 18.566 -93.795 18.510 -93.882 18.510 -93.978 18.427 -94.049 18.460 -94.110 18.434 -94.210 18.402 -94.301 18.386 -94.365 18.371 -94.430 18.348 -94.522 18.332 -94.615 18.332 -94.623 18.324 -94.660 18.324 -94.687 18.357 -94.788 18.398 -94.821 18.438 -94.837 18.529 -94.919 18.613 -94.980 18.696 -95.020 18.711 -95.119 18.727 -95.217 18.792 -95.284 18.876 -95.394 18.883 -95.500 18.876 -95.594 18.883 -95.692 18.883 -95.758 18.899 -95.857 18.907 -95.877 18.947 -95.988 18.907 -95.981 18.876 -96.072 18.876 -96.109 18.850 -96.123 18.785 -96.121 18.736 -96.104 18.713 -96.196 18.796 -96.143 18.820 -96.138 18.852 -96.126 18.878 -96.121 18.878 -96.112 18.901 -96.098 18.949 -96.089 18.999 -96.193 19.023 -96.170 18.967 -96.065 18.959 -95.997 18.990 -96.078 19.055 -96.185 19.139 -96.199 19.230 -96.252 19.288 -96.308 19.311 -96.303 19.402 -96.384 19.485 -96.482 19.493 -96.493 19.576 -96.515 19.650 -96.519 19.733 -96.571 19.823 -96.596 19.907 -96.600 19.990 -96.624 20.081 -96.689 20.164 -96.752 20.172 -96.754 20.255 -96.837 20.338 -96.901 20.421 -96.973 20.478 -97.032 20.560 -97.104 20.644 -97.188 20.694 -97.236 20.777 -97.309 20.826 -97.357 20.950 -97.382 21.040 -97.438 21.106 -97.478 21.114 -97.479 21.197 -97.515 21.281 -97.558 21.364 -97.584 21.454 -97.629 21.538 -97.673 21.621 -97.672 21.636 -97.675 21.677 -97.779 21.760 -97.823 21.768 -97.824 21.859 -97.861 22.108 -97.912 22.199 -97.948 22.108 -97.882 22.025 -97.839 21.942 -97.813 21.859 -97.740 21.768 -97.656 21.685 -97.564 21.677 -97.571 21.594 -97.601 21.510 -97.622 21.427 -97.606 21.486 -97.591 21.576 -97.542 21.659 -97.512 21.716 -97.514 21.799 -97.607 21.882 -97.709 21.973 -97.783 22.056 -97.847 22.222 -97.937 22.314 -97.964 22.321 -97.966 22.412 -97.967 22.495 -98.001 22.579 -98.010 22.669 -98.037 22.752 -98.027 22.836 -98.043 22.876 -98.043 22.959 -97.984 23.051 -97.964 23.134 -97.933 23.224 -97.943 23.232 -97.945 23.315 -97.952 23.407 -97.962 23.490 -97.961 23.573 -97.951 23.588 -97.954 23.755 -97.932 23.838 -97.949 23.929 -98.015 23.937 -97.919 24.020 -97.918 24.110 -97.919 24.194 -97.909 24.285 -97.909 24.368 -97.899 24.459 -97.890 24.542 -97.869 24.625 -97.859 24.708 -97.829 24.799 -97.809 24.882 -97.787 24.974 -97.768 25.057 -97.742 25.140 -97.728 25.155 -97.733 25.322 -97.665 25.405 -97.621 25.496 -97.562 25.579 -97.509 25.662 -97.476 25.753 -97.446 25.836 -97.414 25.927 -97.401 26.010 -97.398 26.101 -97.386 26.093 -97.481 26.061 -97.578 25.977 -97.610 26.018 -97.719 26.026 -97.748 26.109 -97.849 26.159 -97.961 26.190 -98.067 26.190 -98.271 26.206 -98.373 26.206 -98.479 26.229 -98.543 26.320 -98.616 26.336 -98.718 26.376 -98.836 26.391 -98.938 26.475 -99.028 26.482 -99.098 26.513 -99.205 26.521 -99.305 26.537 -99.347 26.620 -99.345 26.660 -99.413 26.668 -99.425 26.751 -99.431 26.834 -99.455 26.917 -99.498 27.016 -99.566 27.047 -99.593 27.130 -99.685 27.222 -99.694 27.305 -99.691 27.388 -99.734 27.479 -99.752 27.562 -99.738 27.602 -99.759 27.610 -99.761 27.693 -99.768 27.701 -99.779 27.742 -99.889 27.775 -99.967 27.865 -100.050 27.881 -100.064 27.964 -100.127 28.048 -100.179 28.113 -100.246 28.204 -100.292 28.270 -100.330 28.343 -100.458 28.434 -100.524 28.518 -100.567 28.601 -100.583 28.691 -100.628 28.775 -100.710 28.906 -100.749 28.997 -100.815 29.013 -100.829 29.096 -100.845 29.179 -100.879 29.262 -100.972 29.353 -101.008 29.436 -101.131 29.452 -101.164 29.467 -101.207 29.551 -101.241 29.591 -101.352 29.682 -101.418 29.723 -101.496 29.771 -101.559 29.862 -101.595 29.862 -101.792 29.870 -101.902 29.903 -102.010 29.887 -102.113 29.895 -102.213 29.903 -102.314 29.951 -102.436 29.943 -102.532 29.860 -102.575 29.868 -102.676 29.843 -102.776 29.820 -102.867 29.779 -102.882 29.696 -102.925 29.613 -102.986 29.529 -103.018 29.438 -103.076 29.355 -103.099 29.282 -103.175 29.199 -103.227 29.082 -103.387 29.090 -103.438 29.115 -103.511 29.146 -103.619 29.229 -103.731 29.255 -103.837 29.320 -103.964 29.376 -104.080 29.402 -104.186 29.485 -104.319 29.525 -104.370 29.609 -104.453 29.632 -104.538 29.640 -104.559 29.673 -104.617 29.721 -104.659 29.779 -104.695 29.862 -104.731 29.953 -104.786 30.036 -104.834 30.085 -104.854 30.251 -104.845 30.342 -104.910 30.425 -104.972 30.508 -105.025 30.599 -105.053 30.682 -105.107 30.756 -105.176 30.829 -105.315 30.870 -105.430 30.928 -105.553 31.019 -105.669 31.102 -105.761 31.185 -105.844 31.269 -105.967 31.352 -106.050 31.435 -106.142 31.476 -106.267 31.541 -106.393 31.624 -106.456 31.707 -106.500 31.799 -106.566 31.822 -106.634 31.822 -106.662 31.847 -106.711 31.855 -106.733 31.855 -108.332 31.771 -108.395 31.474 -108.385 31.408 -108.495 31.408 -111.226 31.441 -111.339 31.466 -111.419 31.506 -111.545 31.547 -111.662 31.562 -111.726 31.603 -111.852 31.644 -111.969 31.677 -112.092 31.717 -112.208 31.750 -112.322 31.791 -112.448 31.822 -112.560 31.863 -112.677 31.895 -112.800 31.936 -112.918 31.951 -112.993 31.992 -113.111 32.023 -113.233 32.064 -113.350 32.096 -113.464 32.129 -113.587 32.170 -113.704 32.203 -113.827 32.243 -113.944 32.277 -114.059 32.307 -114.180 32.348 -114.298 32.381 -114.412 32.414 -114.535 32.446 -114.649 32.488 -114.776 32.520 -114.890 32.551 -114.992 32.634 -114.981 32.750 -114.895 32.758 -114.899 32.758 -114.927 32.750 -115.041 32.743 -115.137 32.743 -115.176 32.735 -115.281 32.727 -115.377 32.719 -115.482 32.712 -115.578 32.712 -115.665 32.704 -115.761 32.696 -115.815 32.689 -115.920 32.681 -116.025 32.681 -116.124 32.673 -116.229 32.665 -116.325 32.665 -116.334 32.657 -116.409 32.650 -116.505 32.650 -116.523 32.642 -116.628 32.642 -116.656 32.627 -116.766 32.619 -116.862 32.611 -116.967 32.603 -117.063 32.595 -117.167 32.595 -117.207 32.588 -117.291 ; #246 5 23.879 -97.838 23.944 -97.833 24.027 -97.832 24.118 -97.823 24.201 -97.822 24.293 -97.814 24.376 -97.793 24.459 -97.783 24.550 -97.774 24.633 -97.753 24.724 -97.724 24.890 -97.681 24.974 -97.651 25.064 -97.627 25.120 -97.634 25.211 -97.604 25.310 -97.547 25.393 -97.503 25.476 -97.536 25.509 -97.651 25.426 -97.637 25.360 -97.715 25.444 -97.824 25.360 -97.810 25.320 -97.895 25.237 -97.853 25.145 -97.808 25.062 -97.823 24.989 -97.764 24.974 -97.761 24.882 -97.828 24.791 -97.801 24.708 -97.802 24.625 -97.823 24.534 -97.852 24.592 -97.961 24.509 -97.952 24.426 -97.850 24.335 -97.850 24.236 -97.868 24.146 -97.915 24.054 -97.887 23.971 -97.879 23.881 -97.852 ; #247 5 18.719 -91.943 18.719 -91.934 18.711 -91.933 18.719 -91.897 18.727 -91.802 18.810 -91.710 18.843 -91.620 18.858 -91.660 18.818 -91.749 ; #248 5 18.698 -96.033 18.615 -96.086 18.638 -95.994 18.686 -96.011 18.752 -96.013 18.719 -96.025 18.696 -96.031 ; #249 5 18.777 -95.997 18.777 -96.006 18.752 -96.011 ; #250 5 57.138 -7.264 57.154 -7.246 57.179 -7.365 57.269 -7.344 57.331 -7.227 57.421 -7.343 57.413 -7.457 57.323 -7.454 57.225 -7.449 57.136 -7.379 57.136 -7.264 ; #251 5 57.441 -7.311 57.521 -7.323 57.485 -7.433 ; #252 5 58.023 -6.729 57.953 -6.602 57.953 -6.570 58.042 -6.527 58.059 -6.413 58.148 -6.437 58.140 -6.563 58.165 -6.440 58.236 -6.334 58.287 -6.225 58.304 -6.344 58.365 -6.236 58.454 -6.192 58.543 -6.284 58.483 -6.392 58.439 -6.502 58.385 -6.610 58.369 -6.735 58.317 -6.844 58.227 -6.795 58.157 -6.912 58.254 -6.937 58.229 -7.049 58.167 -7.156 58.069 -7.039 58.026 -7.148 58.001 -7.028 57.947 -6.904 57.903 -7.013 57.851 -7.121 57.772 -6.993 57.835 -6.887 57.924 -6.830 57.984 -6.723 58.028 -6.730 ; #253 5 56.602 -6.689 56.637 -6.594 56.727 -6.505 56.683 -6.624 56.604 -6.690 ; #254 5 50.036 -5.273 50.036 -5.177 50.052 -5.115 50.139 -5.125 50.181 -5.021 50.189 -5.002 50.258 -4.901 50.327 -4.789 50.343 -4.682 50.351 -4.574 50.375 -4.468 50.391 -4.361 50.424 -4.255 50.440 -4.237 50.474 -4.220 50.432 -4.216 50.416 -4.203 50.347 -4.123 50.339 -4.013 50.296 -3.899 50.246 -3.785 50.288 -3.681 50.375 -3.594 50.436 -3.579 50.531 -3.546 50.618 -3.502 50.705 -3.500 50.644 -3.431 50.644 -3.420 50.687 -3.315 50.721 -3.210 50.737 -3.092 50.753 -2.984 50.762 -2.921 50.737 -2.810 50.650 -2.583 50.581 -2.467 50.668 -2.432 50.652 -2.311 50.652 -2.191 50.618 -2.079 50.705 -1.991 50.748 -2.114 50.748 -1.798 50.764 -1.713 50.764 -1.693 50.771 -1.584 50.798 -1.468 50.833 -1.361 50.920 -1.432 50.858 -1.307 50.875 -1.199 50.833 -1.086 50.867 -0.969 50.780 -0.909 50.796 -0.801 50.812 -0.693 50.820 -0.584 50.828 -0.465 50.836 -0.357 50.853 -0.248 50.836 -0.160 50.810 -0.049 50.786 0.062 50.770 0.173 50.812 0.289 50.855 0.396 50.871 0.504 50.887 0.612 50.947 0.717 50.947 0.936 51.043 0.950 51.094 1.056 51.119 1.164 51.136 1.260 51.223 1.364 51.310 1.338 51.396 1.311 51.396 1.191 51.389 1.082 51.373 0.973 51.364 0.853 51.380 0.742 51.413 0.620 51.429 0.509 51.437 0.572 51.480 0.679 51.496 0.568 51.504 0.458 51.461 0.351 51.520 0.444 51.536 0.552 51.545 0.662 51.545 0.672 51.552 0.782 51.639 0.873 51.726 0.823 51.710 0.714 51.744 0.678 51.744 0.789 51.822 0.893 51.787 1.006 51.795 1.116 51.856 1.232 51.943 1.138 51.959 1.051 51.975 1.116 51.983 1.226 52.026 1.112 52.000 1.225 51.975 1.337 52.062 1.441 52.113 1.548 52.208 1.584 52.295 1.588 52.382 1.670 52.469 1.708 52.538 1.694 52.596 1.690 52.691 1.663 52.778 1.593 52.829 1.478 52.889 1.363 52.924 1.250 52.940 1.137 52.956 1.025 52.948 0.904 52.964 0.791 52.972 0.680 52.964 0.570 52.938 0.450 52.851 0.391 52.764 0.331 52.798 0.230 52.806 0.175 52.875 0.072 52.875 -0.039 52.918 -0.011 52.968 0.083 53.037 0.189 53.114 0.294 53.201 0.298 53.288 0.250 53.375 0.199 53.462 0.094 53.512 -0.022 53.520 -0.043 53.571 -0.159 53.648 -0.277 53.690 -0.392 53.674 -0.479 53.683 -0.501 53.683 -0.612 53.674 -0.734 53.683 -0.766 53.708 -0.703 53.692 -0.590 53.692 -0.478 53.708 -0.403 53.717 -0.383 53.708 -0.271 53.621 -0.152 53.621 -0.020 53.571 0.107 53.658 0.058 53.745 -0.037 53.779 -0.084 53.866 -0.180 53.953 -0.231 54.049 -0.228 54.099 -0.120 54.134 -0.235 54.192 -0.315 54.261 -0.433 54.348 -0.484 54.435 -0.571 54.477 -0.687 54.528 -0.814 54.528 -0.834 54.554 -0.949 54.578 -1.075 54.570 -1.187 54.639 -1.213 54.690 -1.273 54.697 -1.284 54.784 -1.336 54.871 -1.376 54.958 -1.428 54.975 -1.440 55.028 -1.466 55.088 -1.504 55.105 -1.526 55.284 -1.566 55.354 -1.594 55.452 -1.593 55.542 -1.647 55.585 -1.765 55.647 -1.886 55.737 -1.995 55.770 -2.033 55.778 -2.045 55.868 -2.131 55.876 -2.256 55.911 -2.374 55.936 -2.445 55.953 -2.572 56.014 -2.693 56.014 -2.806 55.934 -2.911 55.909 -3.033 55.926 -3.149 55.926 -3.263 55.943 -3.379 55.943 -3.400 55.959 -3.516 55.968 -3.618 56.003 -3.736 56.063 -3.833 56.028 -3.749 56.011 -3.715 56.003 -3.649 55.986 -3.533 55.970 -3.406 55.970 -3.395 55.978 -3.351 56.005 -3.240 56.076 -3.124 56.130 -3.016 56.138 -3.006 56.155 -2.883 56.155 -2.769 56.190 -2.659 56.280 -2.701 56.307 -2.818 56.396 -2.828 56.396 -2.954 56.379 -2.984 56.371 -3.039 56.335 -3.149 56.310 -3.270 56.310 -3.305 56.319 -3.317 56.344 -3.206 56.398 -3.097 56.406 -2.984 56.415 -2.964 56.415 -2.953 56.431 -2.840 56.448 -2.728 56.500 -2.619 56.560 -2.500 56.649 -2.468 56.693 -2.438 56.747 -2.343 56.818 -2.236 56.907 -2.213 57.005 -2.122 57.084 -2.085 57.092 -2.086 57.182 -2.061 57.271 -1.979 57.333 -1.870 57.423 -1.799 57.512 -1.831 57.601 -1.918 57.645 -2.038 57.637 -2.153 57.629 -2.268 57.620 -2.393 57.629 -2.509 57.637 -2.626 57.629 -2.752 57.656 -2.871 57.629 -2.993 57.620 -3.108 57.620 -3.119 57.647 -3.238 57.672 -3.368 57.656 -3.481 57.612 -3.591 57.612 -3.648 57.576 -3.759 57.576 -3.770 57.541 -3.881 57.541 -4.008 57.471 -4.125 57.443 -4.237 57.496 -4.233 57.531 -4.122 57.620 -4.063 57.620 -4.179 57.585 -4.301 57.560 -4.413 57.620 -4.305 57.629 -4.180 57.672 -4.059 57.672 -3.943 57.762 -3.887 57.778 -4.005 57.787 -4.132 57.795 -4.260 57.830 -4.381 57.838 -4.393 57.847 -4.404 57.847 -4.383 57.830 -4.359 57.814 -4.241 57.797 -4.112 57.895 -4.103 57.903 -4.083 57.903 -3.991 57.936 -3.892 57.998 -3.784 58.051 -3.664 58.078 -3.599 58.138 -3.480 58.217 -3.373 58.234 -3.248 58.304 -3.140 58.393 -3.070 58.491 -3.092 58.581 -3.124 58.581 -3.368 58.537 -3.420 58.529 -3.535 58.554 -3.666 58.510 -3.777 58.493 -3.902 58.502 -4.020 58.502 -4.136 58.458 -4.258 58.475 -4.329 58.420 -4.438 58.429 -4.474 58.500 -4.516 58.448 -4.637 58.404 -4.747 58.493 -4.715 58.458 -4.827 58.547 -4.883 58.556 -5.011 58.466 -5.056 58.377 -5.009 58.369 -5.008 58.325 -5.048 58.265 -5.156 58.194 -5.030 58.211 -5.011 58.184 -5.007 58.184 -5.018 58.211 -5.113 58.202 -5.229 58.124 -5.345 58.034 -5.289 57.971 -5.397 57.911 -5.262 57.822 -5.182 57.805 -5.296 57.849 -5.418 57.805 -5.528 57.814 -5.656 57.724 -5.653 57.814 -5.709 57.735 -5.814 57.637 -5.800 57.548 -5.744 57.477 -5.633 57.485 -5.749 57.485 -5.865 57.396 -5.841 57.306 -5.737 57.323 -5.509 57.288 -5.619 57.225 -5.726 57.234 -5.682 57.234 -5.567 57.225 -5.520 57.165 -5.445 57.217 -5.553 57.182 -5.664 57.092 -5.662 57.059 -5.532 57.059 -5.440 57.042 -5.553 57.078 -5.673 56.988 -5.752 56.928 -5.628 56.972 -5.750 56.928 -5.858 56.839 -5.857 56.795 -5.736 56.787 -5.849 56.697 -5.871 56.714 -5.905 56.722 -6.021 56.714 -6.146 56.662 -6.253 56.645 -6.136 56.637 -6.009 56.637 -5.895 56.672 -5.775 56.637 -5.655 56.654 -5.772 56.594 -5.878 56.610 -5.995 56.521 -5.927 56.496 -5.798 56.461 -5.678 56.504 -5.570 56.583 -5.466 56.643 -5.360 56.714 -5.244 56.766 -5.137 56.730 -5.177 56.641 -5.176 56.649 -5.131 56.658 -5.055 56.631 -5.177 56.631 -5.209 56.595 -5.318 56.506 -5.408 56.489 -5.406 56.498 -5.292 56.408 -5.395 56.408 -5.280 56.425 -5.157 56.392 -5.278 56.400 -5.394 56.400 -5.460 56.310 -5.469 56.284 -5.580 56.194 -5.546 56.105 -5.544 56.016 -5.622 55.991 -5.654 55.893 -5.696 55.982 -5.594 55.893 -5.682 55.803 -5.670 55.714 -5.602 55.758 -5.484 55.697 -5.590 55.600 -5.676 55.510 -5.730 55.421 -5.718 55.332 -5.795 55.242 -5.749 55.250 -5.626 55.321 -5.522 55.411 -5.545 55.509 -5.492 55.598 -5.483 55.687 -5.406 55.776 -5.362 55.866 -5.430 55.955 -5.442 56.007 -5.335 56.078 -5.230 56.122 -5.122 56.155 -5.050 56.076 -5.164 56.014 -5.269 55.924 -5.335 55.835 -5.333 55.783 -5.212 55.818 -5.196 55.755 -5.143 55.666 -5.030 55.675 -5.021 55.764 -5.043 55.853 -5.156 55.853 -5.166 55.870 -5.158 55.906 -5.085 55.808 -5.007 55.841 -4.966 55.930 -4.911 56.028 -4.903 56.117 -4.925 56.101 -4.809 56.011 -4.874 55.922 -4.818 56.011 -4.840 55.922 -4.714 55.886 -4.596 55.878 -4.584 55.870 -4.572 55.878 -4.698 55.895 -4.814 55.886 -4.868 55.797 -4.902 55.708 -4.880 55.610 -4.867 55.558 -4.736 55.469 -4.656 55.379 -4.665 55.336 -4.773 55.238 -4.837 55.149 -4.891 55.078 -5.005 55.034 -5.021 54.938 -5.043 54.938 -5.033 54.888 -5.005 54.853 -5.001 54.853 -5.036 54.940 -5.088 54.940 -5.178 54.882 -5.181 54.786 -5.125 54.710 -5.003 54.667 -4.967 54.580 -4.867 54.589 -4.858 54.676 -4.923 54.762 -4.954 54.813 -4.837 54.762 -4.718 54.728 -4.601 54.651 -4.480 54.685 -4.361 54.772 -4.381 54.859 -4.391 54.801 -4.295 54.748 -4.176 54.783 -4.068 54.724 -4.050 54.724 -4.019 54.748 -3.909 54.817 -3.803 54.833 -3.682 54.849 -3.571 54.936 -3.569 54.928 -3.526 54.928 -3.414 54.920 -3.289 54.920 -3.176 54.928 -3.064 54.920 -3.032 54.896 -3.040 54.888 -3.152 54.853 -3.272 54.827 -3.303 54.803 -3.424 54.708 -3.459 54.621 -3.562 54.534 -3.597 54.447 -3.609 54.360 -3.500 54.273 -3.426 54.178 -3.361 54.204 -3.252 54.204 -3.230 54.117 -3.243 54.030 -3.168 54.065 -3.151 54.152 -3.071 54.184 -3.064 54.152 -3.050 54.109 -2.991 54.159 -2.884 54.168 -2.843 54.159 -2.863 54.134 -2.871 54.047 -2.862 53.960 -2.864 53.909 -2.971 53.875 -3.080 53.779 -3.080 53.703 -3.038 53.694 -2.925 53.678 -2.968 53.644 -3.019 53.557 -3.109 53.470 -3.080 53.375 -3.026 53.367 -3.015 53.324 -2.956 53.300 -2.842 53.316 -2.778 53.324 -2.759 53.316 -2.748 53.316 -2.768 53.273 -2.839 53.282 -2.952 53.369 -3.025 53.377 -3.036 53.401 -3.093 53.342 -3.209 53.255 -3.135 53.239 -3.113 53.207 -3.110 53.266 -3.214 53.316 -3.331 53.308 -3.441 53.257 -3.659 53.282 -3.784 53.298 -3.851 53.248 -3.957 53.213 -4.064 53.205 -4.174 53.205 -4.185 53.292 -4.140 53.300 -4.252 53.387 -4.360 53.387 -4.472 53.353 -4.580 53.257 -4.590 53.241 -4.578 53.154 -4.490 53.104 -4.373 53.130 -4.345 53.189 -4.240 53.189 -4.230 53.120 -4.300 53.033 -4.378 52.956 -4.481 52.914 -4.587 52.863 -4.693 52.776 -4.794 52.776 -4.719 52.792 -4.610 52.843 -4.494 52.869 -4.386 52.893 -4.277 52.869 -4.153 52.782 -4.175 52.695 -4.067 52.687 -4.056 52.618 -4.146 52.531 -4.093 52.523 -3.982 52.489 -4.089 52.402 -4.113 52.315 -4.157 52.228 -4.268 52.194 -4.375 52.151 -4.481 52.127 -4.599 52.085 -4.705 52.050 -4.812 52.000 -4.916 52.007 -5.028 52.016 -5.061 51.947 -5.164 51.860 -5.251 51.791 -5.133 51.704 -5.177 51.696 -5.066 51.696 -5.022 51.704 -4.969 51.773 -4.867 51.686 -4.954 51.678 -5.027 51.670 -5.137 51.601 -5.019 51.601 -4.931 51.627 -4.824 51.670 -4.719 51.720 -4.615 51.728 -4.496 51.771 -4.390 51.755 -4.388 51.668 -4.348 51.668 -4.238 51.652 -4.115 51.668 -4.097 51.641 -4.094 51.617 -4.165 51.625 -4.276 51.530 -4.212 51.547 -4.104 51.547 -4.063 51.597 -3.959 51.605 -3.873 51.518 -3.789 51.458 -3.716 51.407 -3.601 51.380 -3.524 51.373 -3.414 51.373 -3.304 51.407 -3.197 51.494 -3.109 51.545 -3.017 51.528 -2.974 51.536 -2.865 51.570 -2.759 51.587 -2.716 51.603 -2.708 51.645 -2.645 51.696 -2.540 51.755 -2.436 51.720 -2.466 51.652 -2.569 51.583 -2.650 51.575 -2.659 51.532 -2.698 51.482 -2.747 51.465 -2.833 51.389 -2.935 51.302 -3.023 51.293 -3.043 51.206 -3.034 51.199 -3.066 51.190 -3.175 51.174 -3.294 51.174 -3.404 51.206 -3.517 51.206 -3.636 51.215 -3.747 51.231 -3.792 51.215 -3.910 51.206 -4.019 51.199 -4.138 51.148 -4.243 51.061 -4.243 51.027 -4.283 50.976 -4.387 51.002 -4.499 51.002 -4.553 50.915 -4.574 50.828 -4.574 50.741 -4.631 50.673 -4.732 50.586 -4.809 50.509 -4.909 50.535 -5.022 50.492 -5.060 50.405 -5.092 50.329 -5.203 50.260 -5.304 50.228 -5.409 50.211 -5.516 50.177 -5.621 50.118 -5.733 50.032 -5.669 50.066 -5.564 50.108 -5.461 50.082 -5.349 49.995 -5.276 ; #255 5 56.978 -6.344 57.003 -6.281 57.092 -6.360 57.040 -6.468 56.980 -6.344 ; #256 5 55.826 -5.996 55.916 -5.932 56.005 -5.854 56.094 -5.777 56.184 -5.754 56.078 -5.968 55.989 -6.000 55.918 -6.115 55.828 -6.002 ; #257 5 57.360 -6.078 57.369 -6.057 57.548 -6.040 57.458 -6.105 57.360 -6.080 ; #258 5 55.461 -5.198 55.531 -5.094 55.629 -5.162 55.718 -5.185 55.752 -5.303 55.662 -5.416 55.573 -5.372 55.475 -5.313 55.459 -5.198 ; #259 5 58.809 -3.252 58.826 -3.265 58.924 -3.265 58.959 -3.386 58.870 -3.376 ; #260 5 59.005 -3.275 59.005 -3.264 58.953 -3.154 58.969 -3.039 58.926 -2.917 58.918 -2.849 59.007 -2.731 59.015 -2.849 59.032 -2.968 59.057 -3.099 59.146 -3.142 59.173 -3.262 59.094 -3.370 59.005 -3.280 ; #261 5 58.764 -2.966 58.780 -2.933 58.870 -2.922 58.853 -3.023 ; #262 5 59.256 -2.896 59.300 -2.879 59.379 -3.006 59.290 -3.017 59.254 -2.896 ; #263 5 8.377 -83.023 8.294 -82.972 8.210 -82.950 8.127 -82.953 8.135 -82.927 8.226 -82.924 8.309 -82.929 8.392 -82.868 8.400 -82.842 8.415 -82.748 8.407 -82.692 8.407 -82.684 8.383 -82.588 8.448 -82.497 8.423 -82.477 8.400 -82.439 8.431 -82.337 8.365 -82.278 8.282 -82.218 8.298 -82.193 8.305 -82.098 8.330 -82.005 8.274 -81.965 8.241 -81.868 8.216 -81.772 8.133 -81.758 8.077 -81.691 8.029 -81.679 7.971 -81.676 7.887 -81.653 7.804 -81.593 7.781 -81.497 7.756 -81.402 7.715 -81.295 7.748 -81.271 7.831 -81.293 7.914 -81.261 7.997 -81.292 7.957 -81.226 8.005 -81.134 7.939 -81.093 7.849 -81.114 7.816 -81.112 7.725 -81.070 7.642 -81.027 7.559 -80.996 7.475 -80.973 7.442 -80.971 7.359 -81.004 7.318 -80.907 7.318 -80.813 7.344 -80.719 7.352 -80.645 7.359 -80.551 7.417 -80.459 7.466 -80.445 7.531 -80.365 7.531 -80.270 7.539 -80.176 7.572 -80.083 7.638 -80.087 7.678 -80.107 7.762 -80.158 7.845 -80.218 7.928 -80.317 8.019 -80.397 8.102 -80.458 8.110 -80.484 8.193 -80.544 8.241 -80.556 8.332 -80.523 8.415 -80.454 8.400 -80.444 8.392 -80.377 8.400 -80.283 8.456 -80.192 8.497 -80.099 8.522 -80.074 8.588 -79.994 8.646 -79.903 8.702 -79.860 8.785 -79.827 8.868 -79.832 8.951 -79.771 8.977 -79.678 9.025 -79.634 9.040 -79.635 9.025 -79.625 9.025 -79.599 9.090 -79.536 9.106 -79.443 9.106 -79.348 9.090 -79.252 9.131 -79.160 9.083 -79.166 9.042 -79.060 8.994 -78.962 8.953 -78.865 8.928 -78.846 8.845 -78.778 8.845 -78.683 8.762 -78.688 8.696 -78.589 8.605 -78.575 8.522 -78.533 8.439 -78.482 8.469 -78.457 8.636 -78.484 8.620 -78.474 8.537 -78.386 8.578 -78.294 8.487 -78.289 8.570 -78.199 8.653 -78.212 8.588 -78.171 8.421 -78.124 8.355 -78.026 8.305 -77.928 8.222 -77.829 8.255 -77.897 8.303 -77.994 8.303 -78.003 8.344 -78.108 8.427 -78.159 8.427 -78.254 8.344 -78.344 8.261 -78.322 8.178 -78.363 8.154 -78.408 8.154 -78.417 8.162 -78.512 8.079 -78.499 7.995 -78.467 7.912 -78.408 7.746 -78.324 7.663 -78.255 7.580 -78.213 7.489 -78.124 7.406 -78.082 7.322 -77.983 7.406 -77.961 7.421 -77.953 7.504 -77.931 7.587 -77.841 7.621 -77.817 7.711 -77.859 7.794 -77.809 7.711 -77.738 7.628 -77.696 7.686 -77.605 7.742 -77.513 7.826 -77.434 7.841 -77.453 7.924 -77.431 7.997 -77.380 8.063 -77.289 8.146 -77.312 8.238 -77.343 8.404 -77.465 8.487 -77.478 8.570 -77.577 8.653 -77.536 8.678 -77.520 8.762 -77.469 8.754 -77.506 8.770 -77.602 8.853 -77.633 8.901 -77.731 8.984 -77.810 9.067 -77.852 9.133 -77.951 9.224 -78.031 9.307 -78.119 9.323 -78.175 9.348 -78.271 9.389 -78.368 9.429 -78.474 9.485 -78.572 9.493 -78.667 9.501 -78.762 9.516 -78.858 9.483 -78.951 9.516 -79.048 9.516 -79.142 9.600 -79.092 9.624 -79.067 9.617 -79.161 9.617 -79.199 9.609 -79.293 9.624 -79.389 9.640 -79.473 9.648 -79.569 9.663 -79.664 9.598 -79.755 9.514 -79.825 9.449 -79.916 9.449 -79.925 9.417 -79.970 9.425 -79.970 9.433 -79.979 9.417 -79.987 9.385 -79.994 9.385 -80.089 9.377 -80.097 9.293 -80.176 9.261 -80.269 9.261 -80.278 9.228 -80.371 9.212 -80.465 9.188 -80.567 9.147 -80.659 9.139 -80.676 9.090 -80.768 9.025 -80.868 8.959 -80.958 8.943 -81.024 8.903 -81.116 8.878 -81.209 8.870 -81.303 8.870 -81.453 8.885 -81.558 8.917 -81.655 8.990 -81.714 9.073 -81.783 9.139 -81.882 9.195 -81.893 9.188 -81.988 9.104 -81.917 9.021 -81.857 9.029 -81.952 9.013 -82.046 9.013 -82.055 9.005 -82.149 9.005 -82.157 9.071 -82.256 9.087 -82.341 9.253 -82.333 9.284 -82.430 9.367 -82.426 9.450 -82.431 9.534 -82.511 9.559 -82.530 9.642 -82.629 9.576 -82.681 9.584 -82.756 9.667 -82.845 9.634 -82.946 9.576 -82.905 9.568 -82.931 9.485 -83.002 9.395 -83.005 9.311 -83.000 9.228 -83.004 9.145 -82.999 9.112 -82.902 9.038 -82.803 8.990 -82.791 8.949 -82.883 8.934 -82.900 8.851 -82.990 8.760 -82.938 8.676 -82.907 8.626 -82.904 8.586 -82.910 8.562 -82.909 8.555 -82.917 8.505 -82.980 8.448 -83.071 8.365 -83.076 8.365 -83.049 ; #264 5 6.609 -8.658 6.558 -8.574 6.535 -8.536 6.543 -8.441 6.452 -8.469 6.452 -8.374 6.404 -8.271 6.378 -8.176 6.411 -8.072 6.378 -7.978 6.305 -7.882 6.221 -7.908 6.138 -7.832 6.055 -7.813 6.048 -7.719 5.992 -7.624 5.918 -7.528 5.835 -7.489 5.744 -7.463 5.736 -7.453 5.653 -7.453 5.570 -7.469 5.479 -7.468 5.395 -7.450 5.373 -7.467 5.380 -7.522 5.297 -7.521 5.214 -7.549 5.123 -7.602 5.040 -7.584 4.957 -7.630 4.923 -7.638 4.833 -7.609 4.575 -7.608 4.535 -7.599 4.469 -7.581 4.461 -7.486 4.535 -7.392 4.593 -7.298 4.626 -7.252 4.633 -7.149 4.682 -7.055 4.765 -6.961 4.790 -6.858 4.798 -6.763 4.831 -6.680 4.879 -6.577 4.902 -6.482 4.953 -6.388 4.976 -6.305 5.009 -6.211 5.057 -6.127 5.057 -6.119 5.098 -6.025 5.130 -5.931 5.130 -5.922 5.146 -5.818 5.162 -5.724 5.177 -5.630 5.192 -5.527 5.192 -5.490 5.200 -5.386 5.208 -5.292 5.216 -5.197 5.216 -5.094 5.224 -5.066 5.256 -5.161 5.297 -5.255 5.264 -5.350 5.233 -5.444 5.281 -5.361 5.305 -5.324 5.297 -5.259 5.297 -5.137 5.305 -5.062 5.239 -5.061 5.224 -4.967 5.231 -4.872 5.231 -4.855 5.247 -4.760 5.272 -4.666 5.279 -4.563 5.279 -4.468 5.295 -4.374 5.295 -4.271 5.310 -4.176 5.318 -4.073 5.367 -4.137 5.359 -4.232 5.343 -4.335 5.335 -4.429 5.312 -4.532 5.312 -4.627 5.305 -4.721 5.256 -4.815 5.264 -4.851 5.305 -4.859 5.363 -4.765 5.330 -4.671 5.345 -4.577 5.371 -4.474 5.378 -4.390 5.371 -4.296 5.395 -4.201 5.380 -4.098 5.373 -4.023 5.405 -4.041 5.413 -3.946 5.365 -3.851 5.448 -3.870 5.382 -3.775 5.333 -3.829 5.367 -3.933 5.359 -4.008 5.301 -3.913 5.285 -3.818 5.318 -3.789 5.326 -3.790 5.318 -3.780 5.303 -3.772 5.270 -3.677 5.254 -3.611 5.239 -3.507 5.224 -3.413 5.390 -3.302 5.448 -3.245 5.365 -3.227 5.281 -3.227 5.274 -3.217 5.250 -3.123 5.218 -3.029 5.291 -2.926 5.208 -2.988 5.200 -2.988 5.200 -2.980 5.216 -2.942 5.216 -2.896 5.224 -2.793 5.307 -2.820 5.390 -2.839 5.448 -2.773 5.521 -2.791 5.604 -2.809 5.696 -2.819 5.736 -2.923 5.728 -3.017 5.811 -3.009 5.910 -3.067 6.009 -3.085 6.100 -3.124 6.191 -3.142 6.274 -3.171 6.347 -3.218 6.438 -3.236 6.522 -3.255 6.605 -3.273 6.695 -3.282 6.779 -3.266 6.862 -3.275 6.945 -3.258 7.028 -3.213 7.127 -3.157 7.143 -3.148 7.241 -3.065 7.332 -3.020 7.415 -3.020 7.506 -3.003 7.597 -2.986 7.696 -2.979 7.786 -2.933 7.828 -2.916 7.918 -2.870 8.001 -2.842 8.027 -2.807 8.059 -2.779 8.093 -2.750 8.123 -2.656 8.206 -2.666 8.264 -2.571 8.355 -2.563 8.447 -2.582 8.537 -2.591 8.620 -2.601 8.704 -2.619 8.795 -2.629 8.860 -2.647 8.860 -2.676 8.926 -2.659 9.009 -2.706 9.092 -2.724 9.148 -2.819 9.232 -2.791 9.297 -2.745 9.381 -2.775 9.472 -2.729 9.555 -2.738 9.472 -2.802 9.545 -2.897 9.628 -2.964 9.711 -3.002 9.795 -3.038 9.828 -3.133 9.911 -3.180 9.994 -3.238 9.920 -3.341 9.986 -3.436 9.986 -3.483 10.002 -3.578 10.017 -3.673 10.010 -3.756 9.969 -3.859 9.961 -3.934 9.895 -4.037 9.888 -4.132 9.839 -4.226 9.773 -4.329 9.690 -4.355 9.675 -4.355 9.690 -4.439 9.723 -4.534 9.779 -4.629 9.795 -4.647 9.769 -4.750 9.853 -4.815 9.944 -4.900 9.984 -5.003 10.068 -5.014 10.133 -5.032 10.207 -5.097 10.230 -5.107 10.271 -5.154 10.354 -5.213 10.379 -5.308 10.354 -5.411 10.412 -5.507 10.503 -5.554 10.510 -5.649 10.510 -5.676 10.488 -5.770 10.488 -5.817 10.437 -5.911 10.354 -5.918 10.271 -6.012 10.255 -6.115 10.296 -6.210 10.304 -6.228 10.319 -6.246 10.367 -6.229 10.450 -6.213 10.542 -6.206 10.625 -6.243 10.708 -6.235 10.799 -6.274 10.751 -6.369 10.667 -6.431 10.611 -6.459 10.634 -6.554 10.717 -6.639 10.725 -6.677 10.642 -6.684 10.551 -6.709 10.468 -6.661 10.420 -6.678 10.404 -6.715 10.435 -6.811 10.412 -6.905 10.329 -6.998 10.245 -6.968 10.230 -7.063 10.296 -7.167 10.311 -7.357 10.402 -7.368 10.450 -7.473 10.507 -7.474 10.484 -7.577 10.499 -7.672 10.450 -7.746 10.360 -7.773 10.277 -7.835 10.236 -7.929 10.228 -7.987 10.145 -8.049 10.089 -8.142 10.074 -8.151 10.066 -8.150 10.050 -8.159 9.967 -8.149 9.876 -8.130 9.828 -8.139 9.745 -8.146 9.654 -8.154 9.570 -8.153 9.487 -8.077 9.464 -7.982 9.497 -7.879 9.423 -7.896 9.333 -7.924 9.249 -7.914 9.209 -7.818 9.150 -7.754 9.128 -7.849 9.054 -7.942 8.963 -7.950 8.880 -7.978 8.855 -7.874 8.806 -7.779 8.723 -7.711 8.557 -7.692 8.473 -7.674 8.458 -7.664 8.458 -7.693 8.509 -7.788 8.509 -7.883 8.582 -7.979 8.590 -8.074 8.574 -8.168 8.526 -8.262 8.443 -8.244 8.359 -8.260 8.276 -8.165 8.261 -8.070 8.170 -8.022 8.104 -7.975 8.119 -8.070 8.119 -8.079 8.036 -8.107 7.945 -8.141 7.889 -8.105 7.806 -8.130 7.723 -8.204 7.640 -8.230 7.647 -8.267 7.688 -8.343 7.688 -8.437 7.647 -8.492 7.622 -8.463 7.539 -8.426 7.456 -8.425 7.365 -8.387 7.282 -8.340 7.199 -8.322 7.107 -8.311 7.024 -8.348 6.941 -8.338 6.858 -8.355 6.767 -8.429 6.742 -8.455 6.693 -8.549 6.611 -8.623 6.603 -8.623 ; #265 5 27.329 -8.708 27.264 -8.589 27.208 -8.480 27.142 -8.370 27.086 -8.261 27.020 -8.151 26.964 -8.042 26.833 -7.822 26.774 -7.722 26.709 -7.612 26.650 -7.503 26.519 -7.285 26.463 -7.175 26.397 -7.066 26.332 -6.957 26.274 -6.847 26.208 -6.747 26.142 -6.638 26.086 -6.529 26.020 -6.420 25.954 -6.311 25.888 -6.202 25.830 -6.102 25.699 -5.884 25.633 -5.775 25.583 -5.696 25.517 -5.587 25.451 -5.479 25.386 -5.370 25.327 -5.261 25.262 -5.161 25.196 -5.053 25.188 -5.043 25.122 -4.935 25.074 -4.856 25.008 -4.747 24.942 -4.640 24.877 -4.541 24.811 -4.433 24.745 -4.325 24.679 -4.227 24.614 -4.119 24.548 -4.020 24.482 -3.912 24.416 -3.805 24.351 -3.707 24.285 -3.599 24.219 -3.500 24.153 -3.393 24.088 -3.295 24.088 -3.285 23.956 -3.088 23.890 -2.981 23.824 -2.883 23.758 -2.775 23.685 -2.677 23.619 -2.569 23.553 -2.471 23.488 -2.364 23.422 -2.266 23.356 -2.159 23.290 -2.060 23.217 -1.962 23.151 -1.855 23.085 -1.757 23.019 -1.650 22.954 -1.552 22.880 -1.454 22.814 -1.347 22.683 -1.151 22.609 -1.044 22.410 -0.750 22.336 -0.643 22.205 -0.448 22.131 -0.341 22.000 -0.145 21.967 -0.098 21.936 -0.059 21.878 0.048 21.822 0.145 21.756 0.243 21.700 0.340 21.634 0.446 21.578 0.544 21.512 0.641 21.456 0.748 21.390 0.845 21.334 0.942 21.269 1.040 21.228 1.117 21.145 1.136 21.122 1.136 21.038 1.128 20.955 1.112 20.864 1.143 20.872 1.239 20.857 1.277 20.783 1.374 20.752 1.480 20.702 1.577 20.611 1.617 20.528 1.645 20.445 1.742 20.371 1.839 20.387 1.945 20.354 2.041 20.419 2.136 20.361 2.242 20.278 2.308 20.187 2.356 20.154 2.462 20.139 2.558 20.139 2.654 20.124 2.701 20.100 2.807 20.092 2.903 20.060 2.979 19.994 3.076 19.953 3.172 19.862 3.165 19.779 3.157 19.696 3.148 19.613 3.178 19.522 3.218 19.439 3.133 19.355 3.088 19.264 3.071 19.206 3.176 19.123 3.273 19.123 3.291 19.148 3.395 19.164 3.509 19.189 3.614 19.204 3.727 19.212 3.745 19.228 3.850 19.243 3.963 19.268 4.068 19.284 4.182 19.309 4.287 19.324 4.400 19.350 4.505 19.373 4.619 19.388 4.723 19.411 4.837 19.427 4.933 19.443 5.037 19.467 5.142 19.483 5.256 19.508 5.361 19.524 5.474 19.549 5.579 19.564 5.693 19.572 5.731 19.655 5.826 19.855 6.052 19.953 6.166 20.044 6.279 20.210 6.470 20.309 6.584 20.400 6.697 20.499 6.802 20.514 6.831 20.598 6.927 20.696 7.040 20.787 7.153 20.886 7.267 20.944 7.331 20.984 7.390 21.040 7.486 21.106 7.591 21.162 7.695 21.228 7.801 21.284 7.897 21.350 8.001 21.406 8.107 21.538 8.317 21.595 8.413 21.661 8.518 21.719 8.623 21.785 8.728 21.843 8.833 21.909 8.939 21.967 9.035 22.023 9.141 22.089 9.246 22.145 9.351 22.161 9.369 22.186 9.416 22.193 9.425 22.252 9.530 22.267 9.549 22.274 9.566 22.300 9.604 22.315 9.643 22.381 9.748 22.437 9.853 22.470 9.901 22.526 9.997 22.534 10.015 22.600 10.121 22.600 10.129 22.665 10.235 22.673 10.253 22.729 10.359 22.795 10.464 22.851 10.570 22.909 10.676 22.975 10.781 23.091 10.992 23.157 11.098 23.213 11.204 23.246 11.262 23.302 11.368 23.367 11.474 23.424 11.580 23.482 11.685 23.548 11.792 23.588 11.868 23.646 11.841 23.730 11.795 23.813 11.756 23.979 11.661 24.070 11.613 24.095 11.604 24.343 11.461 24.391 11.355 24.407 11.319 24.432 11.213 24.464 11.108 24.488 11.002 24.521 10.905 24.528 10.867 24.554 10.801 24.594 10.696 24.617 10.599 24.577 10.493 24.536 10.378 24.569 10.281 24.643 10.175 24.733 10.137 24.825 10.089 24.825 10.080 24.850 10.033 24.882 9.986 24.966 9.957 25.057 9.947 25.331 9.947 25.430 9.909 25.486 9.853 25.569 9.796 25.643 9.739 25.726 9.681 25.817 9.604 25.900 9.536 25.999 9.470 26.082 9.404 26.165 9.336 26.256 9.318 26.347 9.383 26.430 9.470 26.479 9.576 26.519 9.691 26.585 9.788 26.668 9.816 26.684 9.816 26.767 9.807 26.858 9.825 26.949 9.759 27.047 9.740 27.229 9.682 27.328 9.654 27.411 9.672 27.494 9.702 27.585 9.720 27.668 9.797 27.767 9.824 27.858 9.854 27.941 9.845 28.123 9.767 28.206 9.740 28.289 9.701 28.388 9.710 28.479 9.728 28.578 9.737 28.661 9.756 28.676 9.756 28.725 9.764 28.815 9.774 28.982 9.774 29.065 9.764 29.156 9.755 29.239 9.726 29.421 9.689 29.504 9.650 29.595 9.611 29.678 9.563 29.769 9.515 29.852 9.467 29.935 9.400 30.027 9.332 30.059 9.304 30.108 9.256 30.191 9.313 30.206 9.352 30.255 9.450 30.278 9.450 30.377 9.420 30.467 9.402 30.566 9.371 30.657 9.353 30.756 9.323 30.855 9.304 30.945 9.274 31.044 9.256 31.135 9.226 31.234 9.207 31.325 9.177 31.423 9.158 31.522 9.128 31.613 9.109 31.711 9.079 31.803 9.061 31.901 9.030 31.992 9.012 32.000 9.012 32.091 8.981 32.164 8.873 32.238 8.755 32.369 8.538 32.435 8.429 32.491 8.330 32.524 8.281 32.607 8.271 32.698 8.252 32.797 8.242 32.896 8.183 32.986 8.114 33.085 8.034 33.108 7.935 33.166 7.835 33.182 7.726 33.272 7.656 33.404 7.655 33.487 7.615 33.586 7.547 33.669 7.488 33.752 7.469 33.768 7.469 33.851 7.440 33.934 7.449 34.025 7.457 34.033 7.457 34.064 7.466 34.089 7.475 34.172 7.574 34.205 7.674 34.288 7.752 34.371 7.770 34.379 7.779 34.412 7.818 34.453 7.927 34.501 8.026 34.501 8.046 34.592 8.133 34.675 8.163 34.708 8.199 34.799 8.208 34.882 8.198 34.965 8.228 35.057 8.258 35.140 8.325 35.148 8.324 35.239 8.354 35.272 8.254 35.363 8.235 35.447 8.273 35.513 8.291 35.538 8.282 35.586 8.272 35.670 8.253 35.761 8.203 35.845 8.193 35.928 8.211 36.019 8.229 36.102 8.259 36.186 8.249 36.202 8.258 36.285 8.285 36.318 8.295 36.367 8.304 36.400 8.304 36.440 8.193 36.456 8.113 36.539 8.213 36.598 8.314 36.681 8.402 36.764 8.503 36.780 8.530 36.854 8.539 36.894 8.549 36.869 8.438 36.862 8.337 36.877 8.236 36.902 8.135 36.854 8.035 36.828 7.925 36.805 7.824 36.821 7.723 36.846 7.695 36.930 7.722 36.930 7.621 36.945 7.510 37.011 7.408 37.034 7.307 37.027 7.206 37.027 7.188 36.935 7.170 36.869 7.070 36.862 6.969 36.836 6.869 36.894 6.767 36.902 6.666 36.918 6.564 37.001 6.474 37.042 6.363 37.019 6.262 36.935 6.174 36.887 6.185 36.846 6.075 36.813 5.974 36.788 5.875 36.772 5.774 36.788 5.663 36.739 5.563 36.648 5.455 36.615 5.354 36.599 5.254 36.615 5.153 36.656 5.052 36.681 5.011 36.764 4.950 36.772 4.931 36.805 4.821 36.854 4.718 36.846 4.618 36.846 4.427 36.854 4.326 36.862 4.216 36.846 4.115 36.846 3.873 36.862 3.772 36.836 3.663 36.770 3.564 36.745 3.463 36.729 3.363 36.737 3.252 36.763 3.151 36.697 3.103 36.729 3.002 36.763 2.921 36.729 2.821 36.646 2.723 36.547 2.525 36.547 2.424 36.580 2.322 36.580 2.212 36.557 2.112 36.532 2.003 36.524 1.902 36.524 1.792 36.516 1.691 36.508 1.633 36.500 1.532 36.485 1.432 36.493 1.331 36.477 1.232 36.477 1.121 36.452 1.021 36.427 0.922 36.353 0.824 36.320 0.725 36.295 0.677 36.279 0.577 36.239 0.478 36.190 0.379 36.157 0.271 36.025 0.076 36.010 0.057 35.926 0.033 35.893 0.016 35.810 -0.048 35.810 -0.058 35.761 -0.156 35.753 -0.165 35.778 -0.276 35.802 -0.345 35.868 -0.448 35.718 -0.642 35.695 -0.751 35.744 -0.854 35.686 -0.960 35.654 -1.059 35.596 -1.156 35.513 -1.253 35.421 -1.297 35.338 -1.342 35.297 -1.407 35.282 -1.506 35.231 -1.604 35.157 -1.710 35.107 -1.807 35.076 -1.906 35.076 -1.915 35.051 -2.014 35.051 -2.114 35.076 -2.225 35.068 -2.224 35.068 -2.252 34.977 -2.189 34.921 -2.099 34.847 -1.995 34.782 -1.883 34.766 -1.864 34.710 -1.822 34.627 -1.876 34.544 -1.843 34.478 -1.730 34.463 -1.748 34.364 -1.833 34.281 -1.771 34.190 -1.739 34.091 -1.704 34.041 -1.712 33.957 -1.738 33.867 -1.762 33.784 -1.740 33.692 -1.776 33.667 -1.716 33.577 -1.653 33.493 -1.658 33.410 -1.703 33.319 -1.709 33.236 -1.705 33.153 -1.632 33.069 -1.541 32.979 -1.537 32.896 -1.561 32.797 -1.490 32.714 -1.408 32.657 -1.307 32.592 -1.195 32.518 -1.084 32.435 -1.147 32.402 -1.255 32.319 -1.300 32.228 -1.305 32.162 -1.339 32.162 -1.330 32.106 -1.240 32.098 -1.249 32.098 -1.337 32.114 -1.436 32.114 -1.673 32.122 -1.773 32.122 -1.881 32.129 -1.981 32.137 -2.080 32.145 -2.179 32.153 -2.279 32.160 -2.387 32.153 -2.486 32.137 -2.584 32.114 -2.692 32.098 -2.790 32.098 -2.898 32.025 -2.993 31.942 -2.990 31.859 -3.025 31.851 -3.025 31.810 -3.131 31.795 -3.178 31.746 -3.374 31.713 -3.471 31.688 -3.578 31.713 -3.678 31.721 -3.786 31.648 -3.882 31.564 -3.887 31.474 -3.873 31.425 -3.772 31.334 -3.845 31.251 -3.841 31.178 -3.819 31.145 -3.709 31.062 -3.639 30.971 -3.721 30.963 -3.820 30.955 -3.927 30.939 -4.025 30.874 -4.130 30.791 -4.212 30.766 -4.259 30.758 -4.268 30.717 -4.373 30.659 -4.469 30.659 -4.478 30.651 -4.565 30.628 -4.671 30.595 -4.768 30.562 -4.874 30.529 -4.970 30.439 -5.032 30.383 -5.068 30.292 -5.111 30.208 -5.184 30.193 -5.193 30.110 -5.287 30.036 -5.381 30.013 -5.428 29.963 -5.524 29.932 -5.621 29.924 -5.718 29.916 -5.825 29.893 -5.923 29.868 -6.020 29.876 -6.068 29.883 -6.167 29.843 -6.263 29.850 -6.371 29.850 -6.458 29.767 -6.511 29.684 -6.537 29.611 -6.632 29.619 -6.730 29.643 -6.830 29.651 -6.938 29.659 -7.036 29.674 -7.135 29.626 -7.231 29.570 -7.335 29.487 -7.400 29.429 -7.505 29.436 -7.603 29.404 -7.700 29.330 -7.794 29.289 -7.840 29.233 -7.936 29.150 -8.039 29.109 -8.135 29.069 -8.231 28.920 -8.420 28.846 -8.523 28.806 -8.619 28.765 -8.694 28.682 -8.700 28.516 -8.691 28.317 -8.699 28.217 -8.694 28.119 -8.698 28.020 -8.693 27.922 -8.697 27.823 -8.692 27.724 -8.697 27.659 -8.693 27.560 -8.697 27.461 -8.692 27.353 -8.696 ; #266 5 58.021 -6.729 58.084 -6.622 58.067 -6.736 58.023 -6.729 ; #267 5 4.919 8.507 4.829 8.481 4.746 8.435 4.654 8.426 4.606 8.521 4.606 8.604 4.690 8.595 4.773 8.577 4.773 8.604 4.682 8.642 4.707 8.716 4.748 8.762 4.664 8.817 4.490 8.817 4.407 8.835 4.324 8.901 4.240 8.892 4.157 8.987 4.127 9.090 4.086 9.184 4.142 9.239 4.109 9.231 4.035 9.248 4.012 9.343 4.095 9.371 4.144 9.362 4.119 9.391 4.134 9.408 4.150 9.399 4.175 9.373 4.183 9.364 4.190 9.364 4.206 9.421 4.123 9.467 4.163 9.562 4.179 9.588 4.186 9.588 4.219 9.606 4.179 9.606 4.163 9.597 4.080 9.542 4.055 9.637 3.972 9.637 3.956 9.619 3.941 9.602 3.885 9.507 3.794 9.536 3.711 9.536 3.711 9.639 3.742 9.733 3.734 9.733 3.693 9.639 3.610 9.630 3.519 9.714 3.436 9.777 3.380 9.843 3.297 9.843 3.213 9.870 3.123 9.852 3.039 9.806 2.948 9.789 2.865 9.789 2.774 9.762 2.691 9.745 2.608 9.736 2.459 9.736 2.411 9.745 2.327 9.819 2.287 9.922 2.287 11.262 2.302 11.262 2.333 11.270 2.416 11.288 2.416 11.363 2.424 11.457 2.424 11.551 2.440 11.578 2.399 11.672 2.399 11.965 2.407 12.059 2.399 12.153 2.432 12.248 2.407 12.294 2.414 12.397 2.391 12.491 2.366 12.586 2.351 12.680 2.359 12.774 2.366 12.878 2.366 12.972 2.399 13.067 2.383 13.170 2.300 13.207 2.285 13.207 2.285 13.290 2.277 13.385 2.277 14.290 2.269 14.384 2.318 14.478 2.244 14.581 2.211 14.676 2.227 14.770 2.144 14.807 2.144 14.902 2.136 14.911 2.095 15.005 2.144 15.100 2.151 15.109 2.103 15.203 2.062 15.297 2.095 15.400 2.070 15.495 2.054 15.589 2.014 15.692 1.948 15.787 1.900 15.881 1.809 15.944 1.776 15.981 1.809 15.999 1.892 16.056 1.983 16.039 2.066 16.013 2.157 15.984 2.240 16.002 2.323 16.020 2.339 16.114 2.397 16.097 2.480 16.042 2.571 16.024 2.662 16.007 2.745 16.016 2.829 16.034 2.877 15.988 2.960 16.025 3.051 15.988 3.142 15.894 3.225 15.857 3.225 15.782 3.258 15.688 3.349 15.613 3.432 15.530 3.523 15.446 3.606 15.363 3.697 15.279 3.780 15.185 3.788 15.185 3.871 15.119 3.962 15.056 4.045 14.993 4.136 15.019 4.159 15.113 4.217 15.050 4.266 15.032 4.274 15.032 4.364 15.015 4.447 14.977 4.531 14.931 4.547 14.894 4.602 14.800 4.676 14.706 4.759 14.650 4.850 14.642 4.933 14.651 5.017 14.633 5.100 14.605 5.115 14.605 5.130 14.614 5.214 14.614 5.297 14.597 5.330 14.560 5.395 14.465 5.421 14.483 5.512 14.529 5.595 14.547 5.678 14.519 5.769 14.537 5.852 14.546 5.943 14.546 6.026 14.509 6.011 14.491 6.052 14.397 6.142 14.342 6.175 14.360 6.183 14.360 6.198 14.397 6.289 14.481 6.322 14.593 6.396 14.697 6.479 14.726 6.603 14.790 6.693 14.819 6.777 14.857 6.833 14.920 6.858 14.976 6.941 15.004 7.024 15.042 7.115 15.060 7.199 15.124 7.264 15.124 7.348 15.170 7.371 15.208 7.444 15.303 7.527 15.350 7.611 15.416 7.694 15.471 7.785 15.489 7.843 15.489 7.858 15.414 7.891 15.397 7.974 15.351 8.057 15.325 8.148 15.297 8.232 15.268 8.315 15.222 8.406 15.188 8.489 15.150 8.514 15.150 8.588 15.096 8.671 15.021 8.754 14.926 8.754 14.917 8.837 14.852 8.893 14.749 8.959 14.654 9.025 14.560 9.098 14.465 9.182 14.362 9.265 14.267 9.280 14.267 9.371 14.212 9.454 14.138 9.545 14.063 9.628 13.988 9.685 13.942 9.767 13.914 9.783 13.923 9.866 14.018 9.950 14.073 10.040 14.111 10.048 14.119 10.056 14.223 10.064 14.327 10.064 14.382 10.048 14.476 10.023 14.571 10.000 14.666 10.015 14.770 10.031 14.865 10.023 14.919 10.038 15.014 10.046 15.041 10.054 15.145 10.021 15.239 9.990 15.334 10.014 15.437 10.038 15.532 10.054 15.597 10.062 15.579 10.120 15.484 10.193 15.390 10.277 15.316 10.333 15.270 10.333 15.261 10.424 15.197 10.507 15.160 10.573 15.066 10.663 15.066 10.747 15.038 10.830 14.992 10.921 14.993 11.004 14.984 11.095 14.956 11.135 14.948 11.219 14.948 11.302 14.957 11.393 14.967 11.476 14.985 11.559 15.041 11.642 15.003 11.733 14.986 11.816 15.004 11.899 15.005 11.983 14.978 12.074 14.970 12.140 14.971 12.147 14.962 12.147 14.953 12.155 14.927 12.196 14.823 12.203 14.814 12.294 14.823 12.377 14.833 12.428 14.824 12.511 14.769 12.594 14.769 12.678 14.752 12.685 14.744 12.708 14.649 12.759 14.591 12.807 14.488 12.873 14.488 12.964 14.451 13.020 14.451 13.045 14.434 13.128 14.379 13.128 14.010 13.029 14.027 12.946 14.044 12.863 14.062 12.780 14.079 12.614 14.113 12.523 14.122 12.490 14.113 12.416 14.112 12.401 14.150 12.401 14.349 12.393 14.387 12.352 14.441 12.269 14.499 12.203 14.593 12.112 14.564 12.029 14.564 11.946 14.554 11.855 14.536 11.772 14.489 11.689 14.564 11.598 14.555 11.515 14.459 11.457 14.364 11.400 14.260 11.342 14.165 11.294 14.070 11.327 13.975 11.335 13.929 11.252 13.844 11.252 13.836 11.169 13.789 11.077 13.705 10.994 13.704 10.938 13.649 10.855 13.603 10.772 13.536 10.681 13.489 10.590 13.463 10.507 13.444 10.424 13.435 10.333 13.417 10.249 13.408 10.201 13.373 10.168 13.335 10.160 13.260 10.077 13.196 10.062 13.204 10.038 13.204 9.955 13.176 9.865 13.233 9.781 13.204 9.698 13.186 9.665 13.195 9.582 13.100 9.574 12.996 9.425 12.806 9.425 12.789 9.400 12.864 9.317 12.855 9.301 12.855 9.218 12.808 9.186 12.800 9.094 12.800 9.011 12.781 8.928 12.773 8.845 12.755 8.762 12.660 8.696 12.565 8.688 12.462 8.673 12.367 8.680 12.367 8.665 12.349 8.582 12.376 8.541 12.330 8.509 12.235 8.417 12.188 8.334 12.197 8.251 12.197 8.168 12.150 8.085 12.159 8.044 12.168 7.961 12.093 7.870 12.029 7.786 11.991 7.696 12.000 7.613 11.953 7.529 11.879 7.481 11.824 7.390 11.766 7.307 11.758 7.224 11.823 7.141 11.766 7.075 11.671 6.992 11.576 6.908 11.513 6.825 11.541 6.742 11.524 6.686 11.420 6.620 11.383 6.529 11.328 6.522 11.233 6.522 11.169 6.554 11.075 6.562 11.066 6.653 11.048 6.819 11.031 6.860 10.985 6.876 10.890 7.042 10.816 7.075 10.712 7.123 10.617 7.214 10.571 7.123 10.543 7.040 10.525 6.957 10.488 6.957 10.252 7.048 10.158 7.032 10.054 6.966 9.980 6.916 9.915 6.868 9.821 6.777 9.746 6.693 9.709 6.611 9.691 6.603 9.691 6.603 9.616 6.520 9.533 6.487 9.449 6.413 9.355 6.330 9.300 6.239 9.216 6.165 9.122 6.082 9.047 5.999 8.992 5.951 8.898 5.918 8.852 5.827 8.852 5.786 8.823 5.703 8.907 5.612 8.860 5.529 8.852 5.438 8.823 5.355 8.823 5.281 8.815 5.198 8.751 5.115 8.714 5.024 8.659 4.941 8.630 4.908 8.584 ; #268 5 41.608 20.468 41.542 20.495 41.534 20.505 41.450 20.559 41.442 20.559 41.358 20.504 41.317 20.511 41.148 20.604 41.141 20.613 41.141 20.673 41.133 20.673 41.049 20.697 40.964 20.732 40.964 20.813 40.980 20.874 40.947 20.975 40.906 20.973 40.913 21.085 40.913 21.117 40.929 21.221 40.929 21.230 40.921 21.333 40.970 21.405 40.962 21.445 40.937 21.546 40.953 21.660 40.976 21.765 40.984 21.784 41.068 21.850 41.119 21.894 41.142 21.905 41.176 22.010 41.176 22.113 41.209 22.185 41.201 22.287 41.185 22.327 41.170 22.429 41.178 22.502 41.178 22.540 41.234 22.647 41.226 22.728 41.301 22.743 41.368 22.748 41.383 22.852 41.383 22.912 41.450 22.935 41.534 22.932 41.565 22.934 41.649 22.931 41.733 22.987 41.902 22.896 41.917 22.878 42.009 22.853 42.042 22.846 42.083 22.736 42.117 22.634 42.174 22.535 42.207 22.487 42.273 22.431 42.357 22.345 42.409 22.279 42.409 22.269 42.368 22.162 42.342 22.057 42.342 22.019 42.375 21.917 42.350 21.823 42.301 21.729 42.275 21.696 42.275 21.677 42.291 21.574 42.291 21.492 42.275 21.472 42.268 21.379 42.252 21.359 42.236 21.348 42.205 21.327 42.146 21.333 42.154 21.242 42.213 21.183 42.246 21.125 42.230 21.095 42.182 20.988 42.156 20.904 42.133 20.799 42.058 20.776 41.974 20.781 41.890 20.684 41.841 20.568 41.800 20.525 41.716 20.529 41.632 20.556 41.606 20.473 ; #269 5 -24.610 20.018 -24.700 20.117 -24.749 20.215 -24.848 20.361 -25.014 20.479 -25.105 20.520 -25.188 20.561 -25.279 20.629 -25.362 20.640 -25.445 20.690 -25.536 20.693 -25.620 20.763 -25.703 20.803 -25.786 20.824 -25.869 20.827 -25.960 20.858 -26.043 20.822 -26.126 20.777 -26.209 20.712 -26.283 20.628 -26.357 20.621 -26.440 20.642 -26.530 20.615 -26.614 20.635 -26.697 20.694 -26.722 20.695 -26.737 20.705 -26.707 20.742 -26.656 20.838 -26.641 20.935 -26.689 21.043 -26.705 21.141 -26.679 21.238 -26.672 21.343 -26.664 21.441 -26.687 21.509 -26.695 21.607 -26.687 21.704 -26.604 21.788 -26.513 21.785 -26.506 21.891 -26.490 21.988 -26.434 22.083 -26.351 22.158 -26.267 22.193 -26.184 22.267 -26.152 22.364 -26.060 22.458 -26.045 22.555 -25.954 22.629 -25.913 22.645 -25.830 22.719 -25.747 22.707 -25.664 22.761 -25.573 22.758 -25.490 22.802 -25.399 22.817 -25.316 22.880 -25.232 22.916 -25.149 23.010 -25.157 23.087 -25.116 23.182 -25.116 23.279 -25.142 23.386 -25.182 23.484 -25.238 23.593 -25.296 23.692 -25.304 23.719 -25.387 23.799 -25.471 23.888 -25.503 23.986 -25.478 24.092 -25.478 24.189 -25.561 24.268 -25.602 24.367 -25.594 24.473 -25.643 24.590 -25.668 24.688 -25.676 24.786 -25.650 24.891 -25.584 24.986 -25.569 25.023 -25.602 25.122 -25.602 25.266 -25.594 25.363 -25.536 25.458 -25.480 25.562 -25.473 25.570 -25.465 25.570 -25.415 25.595 -25.316 25.647 -25.242 25.674 -25.209 25.690 -25.118 25.704 -25.045 25.749 -24.961 25.773 -24.879 25.808 -24.855 25.808 -24.772 25.844 -24.681 25.850 -24.598 25.839 -24.598 25.868 -24.590 25.965 -24.549 26.060 -24.542 26.060 -24.519 26.145 -24.519 26.163 -24.486 26.268 -24.493 26.374 -24.486 26.383 -24.403 26.447 -24.312 26.510 -24.254 26.605 -24.171 26.688 -24.137 26.784 -24.054 26.829 -24.039 26.828 -23.956 26.843 -23.865 26.858 -23.774 26.882 -23.691 26.909 -23.617 26.925 -23.559 26.932 -23.544 27.008 -23.453 27.061 -23.437 27.070 -23.354 27.164 -23.313 27.259 -23.273 27.314 -23.257 27.410 -23.225 27.506 -23.141 27.530 -23.085 27.624 -23.078 27.633 -23.052 27.729 -22.969 27.823 -22.961 27.832 -22.878 27.885 -22.863 27.894 -22.789 27.988 -22.706 28.032 -22.623 28.114 -22.565 28.130 -22.499 28.224 -22.449 28.328 -22.449 28.434 -22.441 28.530 -22.408 28.634 -22.377 28.730 -22.327 28.824 -22.335 28.854 -22.251 28.916 -22.168 28.922 -22.118 28.968 -22.110 28.967 -22.094 29.063 -22.094 29.092 -22.070 29.188 -22.070 29.322 -22.036 29.283 -21.946 29.204 -21.953 29.195 -21.953 29.098 -21.880 28.991 -21.797 28.978 -21.706 29.031 -21.682 29.001 -21.675 28.963 -21.650 28.865 -21.617 28.759 -21.576 28.661 -21.528 28.563 -21.543 28.458 -21.520 28.361 -21.487 28.264 -21.487 28.159 -21.472 28.062 -21.456 27.956 -21.449 27.956 -21.365 27.906 -21.274 27.894 -21.191 27.844 -21.108 27.785 -21.035 27.687 -20.943 27.637 -20.860 27.652 -20.777 27.649 -20.694 27.673 -20.603 27.679 -20.520 27.650 -20.437 27.674 -20.404 27.663 -20.396 27.654 -20.380 27.636 -20.373 27.531 -20.365 27.434 -20.373 27.339 -20.388 27.234 -20.340 27.241 -20.257 27.247 -20.174 27.245 -20.083 27.212 -19.992 27.172 -19.976 27.075 -19.903 26.969 -19.903 26.893 -19.887 26.845 -19.846 26.748 -19.781 26.650 -19.773 26.614 -19.690 26.527 -19.682 26.509 -19.641 26.412 -19.568 26.314 -19.485 26.216 -19.429 26.119 -19.346 26.090 -19.255 26.049 -19.171 26.019 -19.081 25.969 -18.998 25.931 -18.914 25.947 -18.841 25.927 -18.757 25.841 -18.674 25.771 -18.591 25.761 -18.525 25.732 -18.452 25.635 -18.411 25.604 -18.320 25.506 -18.154 25.426 -18.063 25.378 -17.980 25.280 -17.897 25.242 -17.813 25.211 -17.730 25.238 -17.722 25.238 -17.707 25.171 -17.748 25.076 -17.748 24.971 -17.740 24.887 -17.765 24.792 -17.831 24.698 -17.871 24.634 -17.955 24.560 -17.963 24.465 -17.879 24.407 -17.903 24.312 -17.918 24.216 -18.001 24.122 -18.049 24.028 -18.090 23.924 -18.173 23.870 -18.247 23.776 -18.338 23.694 -18.394 23.590 -18.311 23.550 -18.228 23.539 -18.144 23.479 -18.078 23.382 -17.995 23.325 -17.912 23.277 -17.912 23.085 -17.927 22.990 -17.993 22.619 -18.017 22.488 -18.057 22.251 -18.106 21.993 -18.146 21.776 -18.146 21.758 -18.204 21.454 -18.212 21.224 -18.220 20.986 -18.527 20.991 -18.618 20.984 -18.974 20.991 -19.065 20.983 -19.512 20.991 -19.603 20.983 -20.340 20.997 -20.439 20.991 -20.752 20.997 -20.886 20.991 -21.290 20.999 -21.398 20.993 -21.696 20.999 -21.827 20.992 -21.878 20.993 -21.878 19.994 -22.100 19.998 -22.192 19.990 -22.656 19.999 -22.747 19.992 -23.244 20.002 -23.342 19.994 -23.731 20.002 -23.872 19.995 -24.254 20.002 -24.370 19.996 -24.627 20.001 ; #270 5 48.482 22.179 48.482 22.211 48.457 22.282 48.433 22.289 48.417 22.341 48.332 22.397 48.324 22.504 48.248 22.605 48.181 22.642 48.181 22.832 48.165 22.850 48.124 22.900 48.038 22.913 48.072 23.023 48.157 23.137 48.173 23.246 48.113 23.348 48.072 23.452 48.072 23.524 48.088 23.559 48.080 23.642 48.064 23.758 48.064 23.801 48.014 23.914 48.038 23.968 48.030 24.075 48.006 24.180 48.006 24.307 48.038 24.418 48.030 24.524 48.030 24.587 47.945 24.686 47.903 24.789 47.818 24.888 47.802 24.939 47.810 25.005 47.810 25.015 47.836 25.124 47.929 25.206 47.997 25.320 48.005 25.438 48.021 25.547 48.012 25.641 48.021 25.749 48.046 25.859 48.054 25.977 48.062 26.043 48.062 26.105 48.078 26.192 48.163 26.276 48.248 26.315 48.264 26.316 48.272 26.425 48.288 26.534 48.330 26.633 48.356 26.636 48.371 26.745 48.364 26.777 48.457 26.787 48.457 26.895 48.441 27.001 48.457 27.045 48.449 27.162 48.449 27.192 48.491 27.304 48.498 27.314 48.514 27.379 48.514 27.464 48.538 27.509 48.522 27.615 48.522 27.756 48.514 27.765 48.514 27.775 48.506 27.784 48.498 27.793 48.431 27.892 48.389 27.995 48.304 28.081 48.288 28.186 48.314 28.297 48.229 28.307 48.244 28.416 48.159 28.436 48.143 28.454 48.237 28.528 48.229 28.644 48.203 28.748 48.161 28.806 48.086 28.862 48.019 28.961 48.068 29.084 47.975 29.180 47.890 29.180 47.856 29.228 47.771 29.197 47.686 29.177 47.669 29.155 47.584 29.135 47.535 29.236 47.475 29.300 47.390 29.384 47.432 29.497 47.338 29.579 47.253 29.549 47.168 29.508 47.083 29.569 46.997 29.653 46.948 29.754 46.940 29.859 46.855 29.942 46.847 29.941 46.831 29.949 46.763 29.941 46.671 29.949 46.637 29.873 46.621 29.880 46.587 29.982 46.538 30.008 46.504 30.110 46.496 30.109 46.470 30.074 46.470 29.958 46.439 29.837 46.524 29.774 46.524 29.668 46.482 29.653 46.514 29.550 46.581 29.443 46.555 29.333 46.563 29.334 46.478 29.239 46.563 29.210 46.631 29.187 46.597 29.076 46.555 28.965 46.540 28.943 46.454 28.932 46.413 28.947 46.327 28.969 46.242 28.998 46.167 28.937 46.082 28.887 46.074 28.835 45.988 28.751 45.903 28.679 45.862 28.591 45.812 28.565 45.812 28.555 45.804 28.512 45.719 28.522 45.634 28.522 45.608 28.413 45.608 28.393 45.616 28.333 45.582 28.223 45.582 28.214 45.540 28.209 45.455 28.292 45.388 28.390 45.362 28.492 45.338 28.595 45.322 28.709 45.322 28.738 45.407 28.768 45.392 28.871 45.415 28.958 45.424 28.959 45.455 29.068 45.463 29.111 45.505 29.189 45.520 29.221 45.520 29.231 45.529 29.338 45.529 29.401 45.505 29.470 45.497 29.520 45.489 29.529 45.481 29.570 45.431 29.625 45.356 29.647 45.306 29.631 45.322 29.695 45.348 29.698 45.441 29.729 45.534 29.721 45.560 29.705 45.594 29.604 45.679 29.688 45.663 29.570 45.748 29.571 45.849 29.657 45.756 29.687 45.748 29.792 45.834 29.793 45.849 29.901 45.943 29.987 45.967 30.096 45.881 30.043 45.840 29.986 45.772 29.871 45.713 29.759 45.764 29.870 45.832 29.985 45.907 30.100 45.965 30.213 46.040 30.295 46.115 30.388 46.157 30.436 46.165 30.437 46.250 30.354 46.317 30.256 46.359 30.156 46.444 30.105 46.478 30.216 46.437 30.230 46.403 30.245 46.361 30.346 46.276 30.407 46.190 30.457 46.175 30.446 46.250 30.539 46.336 30.622 46.420 30.633 46.514 30.752 46.599 30.721 46.684 30.945 46.710 31.065 46.718 31.160 46.702 31.274 46.694 31.305 46.752 31.429 46.837 31.441 46.879 31.553 46.793 31.500 46.708 31.520 46.742 31.631 46.716 31.734 46.724 31.851 46.809 31.883 46.894 31.843 46.980 31.939 47.065 31.899 47.073 31.910 47.140 31.857 47.065 31.931 46.980 31.971 46.894 31.907 46.819 31.939 46.734 31.979 46.700 32.080 46.674 32.183 46.651 32.297 46.666 32.405 46.708 32.518 46.734 32.606 46.734 32.615 46.674 32.500 46.625 32.387 46.583 32.391 46.557 32.281 46.591 32.179 46.599 32.074 46.599 31.967 46.607 31.852 46.615 31.822 46.649 31.720 46.632 31.601 46.658 31.498 46.583 31.594 46.583 31.701 46.575 31.784 46.549 31.874 46.542 31.979 46.456 31.967 46.430 31.857 46.399 31.737 46.407 31.854 46.365 31.954 46.357 32.005 46.298 32.103 46.264 32.214 46.207 32.312 46.181 32.415 46.188 32.532 46.205 32.640 46.230 32.750 46.205 32.862 46.212 32.969 46.228 33.078 46.270 33.190 46.185 33.262 46.159 33.364 46.133 33.476 46.175 33.482 46.216 33.594 46.209 33.593 46.133 33.592 46.048 33.621 46.032 33.724 45.947 33.648 45.955 33.533 45.931 33.423 45.879 33.310 45.838 33.198 45.822 33.090 45.737 32.866 45.651 32.792 45.626 32.683 45.594 32.562 45.501 32.456 45.415 32.537 45.431 32.645 45.447 32.753 45.447 32.868 45.405 32.967 45.338 33.073 45.287 33.171 45.271 33.274 45.278 33.327 45.245 33.427 45.188 33.524 45.094 33.552 45.078 33.569 44.993 33.576 44.901 33.491 44.817 33.499 44.733 33.478 44.710 33.475 44.684 33.366 44.692 33.336 44.626 33.398 44.592 33.508 44.592 33.547 44.525 33.621 44.492 33.722 44.492 33.836 44.500 33.942 44.523 34.051 44.598 34.166 44.639 34.286 44.731 34.331 44.815 34.403 44.848 34.513 44.882 34.623 44.915 34.733 44.907 34.837 44.933 34.946 44.925 34.955 44.925 35.060 45.009 35.156 45.059 35.268 45.092 35.379 45.160 35.358 45.211 35.472 45.211 35.577 45.177 35.677 45.092 35.778 45.092 35.872 45.100 35.893 45.092 35.901 45.092 35.943 45.126 36.054 45.110 36.112 45.136 36.221 45.144 36.328 45.229 36.352 45.322 36.358 45.407 36.434 45.424 36.542 45.439 36.577 45.497 36.481 45.531 36.381 45.546 36.278 45.554 36.163 45.538 36.055 45.453 35.967 45.469 35.864 45.477 35.846 45.544 35.752 45.459 35.686 45.407 35.572 45.376 35.461 45.417 35.363 45.467 35.265 45.552 35.173 45.637 35.103 45.731 35.012 45.816 34.954 45.816 34.944 45.842 34.929 46.012 34.830 46.098 34.802 46.121 34.796 46.207 34.777 46.292 34.790 46.325 34.902 46.334 34.955 46.383 35.069 46.468 35.157 46.561 35.130 46.527 35.231 46.442 35.217 46.349 35.222 46.264 35.146 46.238 35.026 46.188 34.957 46.163 34.953 46.197 35.064 46.282 35.184 46.339 35.233 46.433 35.322 46.518 35.429 46.559 35.542 46.710 35.780 46.736 35.891 46.752 36.010 46.744 36.115 46.710 36.216 46.795 36.336 46.829 36.449 46.855 36.560 46.855 36.666 46.770 36.758 46.855 36.815 46.940 36.946 46.956 36.991 46.990 37.113 47.006 37.223 47.006 37.329 47.091 37.406 47.140 37.466 47.156 37.586 47.148 37.692 47.172 37.803 47.172 38.026 47.148 38.128 47.190 38.188 47.205 38.181 47.281 38.174 47.366 38.262 47.382 38.158 47.467 38.235 47.553 38.231 47.638 38.266 47.697 38.384 47.705 38.493 47.755 38.609 47.763 38.663 47.812 38.724 47.898 38.760 47.939 38.875 47.931 38.981 47.907 39.061 47.923 39.171 47.923 39.289 47.907 39.393 47.907 39.500 47.900 39.606 47.907 39.715 47.916 39.726 47.983 39.739 48.068 39.746 48.120 39.808 48.143 39.793 48.211 39.838 48.296 39.927 48.304 39.938 48.362 39.940 48.354 39.886 48.354 39.843 48.362 39.835 48.387 39.797 48.429 39.870 48.471 39.845 48.555 39.809 48.649 39.732 48.649 39.614 48.699 39.613 48.774 39.648 48.859 39.727 48.867 39.837 48.851 39.941 48.936 39.948 48.920 39.925 48.944 39.812 48.960 39.707 49.002 39.682 49.087 39.678 49.111 39.778 49.111 39.886 49.204 39.937 49.255 40.033 49.349 40.104 49.434 40.068 49.476 40.023 49.561 39.996 49.646 40.076 49.654 40.045 49.662 39.938 49.654 39.916 49.613 39.855 49.605 39.745 49.646 39.635 49.688 39.557 49.781 39.502 49.807 39.398 49.781 39.284 49.839 39.177 49.924 39.117 49.856 38.996 49.848 38.886 49.924 38.781 49.940 38.676 49.997 38.578 49.989 38.457 50.023 38.355 50.039 38.296 50.100 38.200 50.058 38.125 50.041 38.132 49.965 38.008 49.942 37.960 50.036 37.903 50.043 37.884 50.059 37.868 50.102 37.768 50.145 37.668 50.231 37.590 50.318 37.565 50.369 37.467 50.464 37.413 50.472 37.306 50.414 37.184 50.387 37.070 50.387 36.895 50.363 36.794 50.355 36.759 50.304 36.640 50.262 36.522 50.349 36.431 50.341 36.310 50.333 36.245 50.391 36.170 50.468 36.077 50.485 35.971 50.476 35.850 50.468 35.805 50.400 35.683 50.391 35.648 50.426 35.545 50.476 35.535 50.519 35.424 50.606 35.378 50.701 35.386 50.778 35.421 50.865 35.352 50.960 35.326 51.002 35.271 51.089 35.321 51.097 35.213 51.148 35.113 51.199 35.090 51.249 34.990 51.257 34.971 51.257 34.907 51.215 34.789 51.215 34.679 51.275 34.571 51.284 34.462 51.284 34.432 51.291 34.324 51.284 34.213 51.300 34.182 51.308 34.204 51.316 34.236 51.403 34.263 51.403 34.242 51.437 34.174 51.524 34.211 51.611 34.163 51.688 34.068 51.704 34.070 51.720 34.137 51.728 34.183 51.744 34.296 51.787 34.414 51.874 34.353 51.898 34.294 51.914 34.253 51.983 34.155 52.060 34.049 52.147 34.055 52.242 34.008 52.250 33.956 52.337 33.861 52.388 33.760 52.380 33.648 52.319 33.526 52.362 33.489 52.388 33.474 52.380 33.462 52.380 33.398 52.388 33.345 52.396 33.236 52.369 33.144 52.337 33.027 52.268 32.904 52.284 32.786 52.293 32.677 52.325 32.572 52.341 32.464 52.349 32.355 52.262 32.350 52.246 32.327 52.186 32.316 52.099 32.203 52.064 32.087 52.072 31.979 52.115 31.875 52.123 31.766 52.123 31.656 52.131 31.547 52.139 31.427 52.139 31.352 52.062 31.229 52.105 31.126 52.105 30.961 52.096 30.927 52.046 30.908 52.030 30.905 51.969 30.785 51.953 30.783 51.876 30.684 51.789 30.605 51.702 30.561 51.615 30.504 51.520 30.576 51.494 30.582 51.407 30.609 51.356 30.621 51.298 30.548 51.281 30.536 51.289 30.473 51.332 30.370 51.385 30.335 51.472 30.239 51.488 30.231 51.504 30.213 51.512 30.104 51.512 29.984 51.485 29.936 51.469 29.813 51.512 29.710 51.512 29.600 51.425 29.477 51.417 29.366 51.401 29.343 51.478 29.234 51.565 29.227 51.633 29.183 51.659 29.100 51.659 29.056 51.609 29.006 51.593 28.893 51.524 28.773 51.437 28.750 51.506 28.640 51.593 28.609 51.609 28.501 51.567 28.385 51.635 28.274 51.652 28.167 51.591 28.048 51.607 27.941 51.632 27.824 51.545 27.801 51.570 27.708 51.629 27.606 51.645 27.510 51.619 27.410 51.619 27.300 51.696 27.200 51.783 27.114 51.783 27.004 51.775 26.893 51.799 26.775 51.826 26.691 51.833 26.615 51.826 26.504 51.876 26.390 51.868 26.279 51.884 26.171 51.927 26.055 51.927 25.945 51.935 25.892 51.951 25.773 51.935 25.661 51.935 25.453 51.943 25.344 51.967 25.226 51.959 25.115 51.925 25.001 51.909 24.889 51.909 24.547 51.900 24.436 51.840 24.319 51.753 24.289 51.702 24.186 51.633 24.068 51.607 23.945 51.650 23.876 51.666 23.757 51.650 23.645 51.641 23.634 51.591 23.639 51.575 23.648 51.550 23.612 51.463 23.646 51.376 23.658 51.289 23.712 51.202 23.790 51.194 23.809 51.099 23.876 51.012 23.930 51.004 23.950 50.909 24.037 50.875 24.142 50.849 24.076 50.806 23.952 50.737 24.031 50.650 24.098 50.590 24.101 50.539 24.076 50.523 24.030 50.515 24.020 50.428 23.924 50.428 23.815 50.393 23.692 50.306 23.607 50.290 23.585 50.266 23.540 50.258 23.529 50.197 23.414 50.121 23.297 50.112 23.286 49.983 23.111 49.916 23.043 49.830 22.950 49.815 22.948 49.807 22.915 49.721 22.821 49.721 22.812 49.696 22.777 49.603 22.696 49.594 22.685 49.509 22.698 49.502 22.697 49.426 22.744 49.341 22.758 49.255 22.730 49.188 22.777 49.131 22.880 49.045 22.884 49.087 22.779 49.087 22.671 49.113 22.565 49.045 22.549 48.960 22.434 48.867 22.384 48.782 22.358 48.697 22.265 48.688 22.255 48.603 22.173 48.450 22.161 ; #271 5 24.196 53.815 24.203 53.845 24.211 53.893 24.211 53.940 24.261 53.971 24.302 53.878 24.302 53.813 24.219 53.720 24.194 53.815 ; #272 5 -0.956 33.940 -0.956 34.035 -0.988 34.081 -1.037 34.176 -1.093 34.271 -1.143 34.374 -1.199 34.469 -1.199 34.477 -1.255 34.572 -1.306 34.667 -1.346 34.733 -1.395 34.828 -1.451 34.932 -1.499 35.015 -1.550 35.119 -1.605 35.214 -1.646 35.277 -1.695 35.381 -1.753 35.476 -1.801 35.571 -1.857 35.674 -1.906 35.769 -1.964 35.864 -2.012 35.967 -2.053 36.022 -2.060 36.040 -2.068 36.067 -2.076 36.075 -2.132 36.179 -2.180 36.274 -2.246 36.377 -2.294 36.472 -2.343 36.567 -2.401 36.662 -2.449 36.765 -2.465 36.783 -2.513 36.887 -2.571 36.982 -2.594 37.017 -2.602 37.045 -2.658 37.140 -2.698 37.224 -2.755 37.319 -2.805 37.413 -2.853 37.526 -2.919 37.630 -2.935 37.647 -3.018 37.686 -3.084 37.694 -3.182 37.713 -3.198 37.713 -3.223 37.687 -3.264 37.650 -3.329 37.596 -3.413 37.623 -3.420 37.717 -3.436 37.746 -3.519 37.764 -3.544 37.782 -3.627 37.885 -3.693 37.980 -3.759 38.084 -3.832 38.179 -3.898 38.274 -3.964 38.369 -4.037 38.464 -4.045 38.482 -4.111 38.577 -4.177 38.672 -4.250 38.767 -4.316 38.862 -4.382 38.957 -4.455 39.052 -4.478 39.098 -4.552 39.194 -4.486 39.287 -4.517 39.382 -4.434 39.410 -4.343 39.484 -4.260 39.538 -4.177 39.564 -4.086 39.600 -3.995 39.646 -3.954 39.628 -3.913 39.619 -3.898 39.627 -3.906 39.636 -3.921 39.665 -3.848 39.719 -3.832 39.719 -3.741 39.802 -3.650 39.828 -3.560 39.855 -3.519 39.837 -3.511 39.837 -3.428 39.883 -3.337 39.928 -3.246 39.945 -3.254 39.982 -3.188 40.085 -3.097 40.102 -3.041 40.119 -2.958 40.153 -2.875 40.219 -2.784 40.143 -2.693 40.160 -2.610 40.186 -2.527 40.251 -2.470 40.354 -2.437 40.448 -2.430 40.494 -2.453 40.588 -2.362 40.690 -2.296 40.784 -2.205 40.766 -2.122 40.860 -2.213 40.887 -2.122 40.941 -2.039 40.886 -1.956 40.867 -1.865 40.829 -1.956 40.904 -1.865 40.939 -1.913 41.042 -1.890 41.146 -1.850 41.240 -1.791 41.342 -1.708 41.405 -1.617 41.479 -1.577 41.524 -1.520 41.524 -1.430 41.469 -1.339 41.402 -1.240 41.326 -1.149 41.260 -1.058 41.184 -0.960 41.109 -0.869 41.045 -0.777 40.969 0.095 40.954 1.757 40.968 1.840 40.961 2.803 40.969 2.944 40.988 3.043 41.092 3.134 41.196 3.233 41.291 3.331 41.367 3.422 41.433 3.521 41.498 3.619 41.573 3.718 41.638 3.817 41.703 3.916 41.769 4.014 41.834 4.055 41.863 4.030 41.779 4.071 41.685 4.063 41.591 4.047 41.487 4.022 41.392 4.022 41.195 4.030 41.100 4.113 41.018 4.204 40.935 4.287 40.841 4.361 40.748 4.304 40.635 4.246 40.494 4.198 40.361 4.142 40.258 4.117 40.154 4.011 39.975 4.011 39.967 3.945 39.836 3.763 39.761 3.581 39.570 3.490 39.532 3.546 39.429 3.546 39.306 3.554 39.271 3.561 39.176 3.610 39.065 3.602 39.038 3.595 38.935 3.618 38.795 3.701 38.666 3.685 38.543 3.678 38.431 3.685 38.308 3.701 38.159 3.726 38.047 3.809 37.983 3.991 37.704 4.074 37.573 4.274 37.273 4.364 37.125 4.447 37.031 4.506 36.880 4.506 36.702 4.513 36.484 4.513 36.258 4.529 36.250 4.521 36.203 4.521 36.034 4.595 35.940 4.668 35.941 4.691 35.932 4.691 35.688 4.684 35.604 4.684 34.482 4.676 34.378 4.635 34.332 4.552 34.248 4.461 34.164 4.295 33.994 4.204 34.057 4.121 34.093 4.037 34.121 3.954 34.103 3.962 34.198 3.879 34.197 3.813 34.291 3.798 34.395 3.715 34.468 3.631 34.459 3.548 34.404 3.457 34.403 3.374 34.449 3.291 34.457 3.207 34.540 3.192 34.557 3.101 34.574 3.018 34.591 2.944 34.685 2.879 34.779 2.788 34.787 2.705 34.824 2.621 34.898 2.588 34.933 2.505 34.886 2.464 34.877 2.381 34.905 2.291 34.942 2.207 34.976 2.124 34.967 2.041 34.984 2.033 34.992 1.826 34.991 1.743 34.982 1.660 34.944 1.569 34.860 1.486 34.796 1.486 34.787 1.403 34.815 1.387 34.824 1.304 34.786 1.304 34.759 1.273 34.665 1.182 34.581 1.182 34.572 1.198 34.526 1.190 34.517 1.107 34.479 1.023 34.470 0.940 34.412 0.882 34.376 0.867 34.330 0.801 34.312 0.735 34.275 0.735 34.266 0.702 34.171 0.694 34.163 0.611 34.144 0.553 34.126 0.470 34.117 0.379 34.053 0.323 34.006 0.298 33.989 0.215 33.933 0.131 33.933 0.099 33.941 0.050 33.958 -0.040 33.985 -0.124 33.968 -0.215 33.951 -0.305 33.934 -0.901 33.938 ; #273 5 19.392 108.736 19.377 108.743 19.344 108.699 19.260 108.754 19.177 108.702 19.094 108.719 19.011 108.732 18.928 108.702 18.845 108.764 18.762 108.769 18.671 108.764 18.587 108.769 18.572 108.795 18.557 108.888 18.500 108.985 18.442 109.071 18.450 109.119 18.434 109.213 18.386 109.301 18.386 109.397 18.371 109.490 18.346 109.582 18.320 109.616 18.312 109.719 18.312 109.815 18.396 109.810 18.479 109.850 18.487 109.880 18.495 109.978 18.518 110.086 18.477 110.080 18.454 110.085 18.462 110.133 18.553 110.156 18.636 110.205 18.719 110.294 18.760 110.396 18.792 110.497 18.876 110.549 18.967 110.545 19.050 110.577 19.133 110.637 19.216 110.641 19.241 110.587 19.307 110.682 19.390 110.696 19.473 110.747 19.564 110.857 19.698 110.878 19.665 110.969 19.738 111.077 19.822 111.053 19.905 111.039 19.996 111.016 20.079 110.984 20.079 110.870 20.102 110.819 20.193 110.751 20.186 110.654 20.102 110.629 20.079 110.663 20.005 110.678 20.079 110.596 20.094 110.540 20.079 110.441 20.064 110.457 19.998 110.471 20.054 110.446 20.079 110.421 20.086 110.423 20.102 110.341 20.118 110.288 20.077 110.175 20.077 110.202 20.069 110.192 20.044 110.160 20.011 110.058 19.996 110.064 19.988 110.063 19.980 110.044 20.064 109.983 20.064 109.886 20.079 109.785 20.079 109.718 20.071 109.698 20.021 109.584 19.930 109.634 19.915 109.535 19.998 109.356 19.915 109.267 19.831 109.272 19.791 109.362 19.758 109.260 19.692 109.154 19.636 109.049 19.553 108.951 19.404 108.736 ; #274 5 21.271 110.608 21.230 110.553 21.189 110.642 21.273 110.611 ; #275 5 21.777 112.726 21.762 112.667 21.679 112.603 21.695 112.703 21.777 112.728 ; #276 5 21.644 112.872 21.644 112.882 21.727 112.889 21.818 112.848 21.727 112.848 21.644 112.870 ; #277 5 22.809 113.619 22.776 113.595 22.727 113.682 22.810 113.622 ; #278 5 39.408 121.514 39.482 121.551 39.482 121.449 ; #279 5 39.299 122.702 39.325 122.715 39.332 122.617 ; #280 5 23.764 117.419 23.706 117.484 23.797 117.559 23.822 117.546 23.838 117.463 ; #281 5 24.602 118.180 24.511 118.152 24.503 118.247 24.586 118.264 24.612 118.184 24.604 118.182 ; #282 5 24.577 118.503 24.554 118.481 24.521 118.377 24.488 118.467 24.496 118.566 24.579 118.506 ; #283 5 25.550 119.759 25.492 119.790 25.484 119.806 25.509 119.852 25.593 119.894 25.676 119.900 25.651 119.787 25.577 119.871 25.554 119.759 ; #284 5 28.158 121.254 28.117 121.260 28.167 121.373 28.251 121.380 28.251 121.311 28.160 121.257 ; #285 5 23.588 120.206 23.497 120.214 23.414 120.226 23.381 120.210 23.298 120.175 23.215 120.149 23.149 120.174 23.091 120.258 23.008 120.259 22.977 120.252 22.894 120.282 22.810 120.321 22.786 120.325 22.694 120.342 22.611 120.410 22.571 120.439 22.555 120.502 22.499 120.587 22.416 120.666 22.333 120.724 22.242 120.752 22.159 120.764 22.075 120.774 22.027 120.860 22.110 120.954 22.193 120.954 22.284 120.954 22.300 120.957 22.391 120.959 22.474 120.985 22.565 121.013 22.648 121.049 22.731 121.104 22.814 121.218 22.845 121.254 22.929 121.289 23.012 121.354 23.103 121.402 23.186 121.457 23.269 121.466 23.360 121.494 23.443 121.539 23.840 121.622 23.923 121.649 23.989 121.663 24.080 121.690 24.163 121.679 24.246 121.715 24.329 121.790 24.362 121.824 24.453 121.835 24.536 121.881 24.619 121.908 24.703 121.869 24.761 121.873 24.852 121.865 24.935 121.883 25.018 121.967 25.041 122.003 25.124 121.961 25.183 121.881 25.190 121.856 25.223 121.760 25.231 121.753 25.314 121.681 25.339 121.592 25.256 121.470 25.183 121.351 25.183 121.333 25.141 121.224 25.101 121.105 25.018 121.033 25.010 121.022 24.927 120.986 24.912 120.974 24.828 120.947 24.813 120.935 24.739 120.890 24.683 120.782 24.592 120.724 24.519 120.681 24.436 120.626 24.403 120.610 24.319 120.575 24.279 120.557 24.188 120.491 24.105 120.426 24.022 120.391 23.931 120.334 23.907 120.329 23.824 120.264 23.741 120.218 23.658 120.209 23.600 120.206 ; #286 5 30.061 122.090 30.061 122.218 30.038 122.287 30.061 122.403 30.127 122.364 30.150 122.275 30.191 122.193 30.142 122.066 30.059 122.089 ; #287 5 30.361 122.182 30.320 122.204 30.313 122.300 30.396 122.294 30.363 122.182 ; #288 5 29.746 122.214 29.794 122.229 29.769 122.123 ; #289 5 22.265 113.619 22.250 113.634 22.282 113.640 22.282 113.631 22.267 113.619 ; #290 5 22.350 114.264 22.325 114.240 22.269 114.326 22.352 114.295 22.352 114.268 ; #291 5 22.265 113.917 22.272 113.965 22.265 113.964 22.306 114.078 22.396 114.133 22.404 114.126 22.356 114.020 22.323 113.937 22.315 113.927 22.267 113.917 ; #292 5 22.569 114.114 22.485 114.012 22.420 114.104 22.420 114.201 22.372 114.268 22.372 114.315 22.348 114.375 22.431 114.345 22.416 114.438 22.499 114.472 22.532 114.382 22.491 114.278 22.557 114.387 22.613 114.302 22.621 114.294 22.598 114.193 22.590 114.183 22.575 114.115 ; #293 5 26.140 119.318 26.067 119.364 26.041 119.454 26.067 119.500 26.099 119.413 26.099 119.403 26.115 119.371 26.140 119.320 ; #294 5 27.277 120.496 27.303 120.474 27.376 120.398 27.293 120.392 27.277 120.494 ; #295 5 29.419 34.938 29.419 34.947 29.412 34.976 29.396 35.073 29.388 35.171 29.372 35.268 29.357 35.365 29.342 35.462 29.326 35.559 29.318 35.656 29.303 35.753 29.288 35.860 29.272 35.957 29.256 36.042 29.256 36.051 29.330 36.155 29.404 36.246 29.477 36.350 29.551 36.462 29.641 36.526 29.891 36.690 29.939 36.792 29.955 36.892 29.978 36.992 29.993 37.090 30.009 37.190 30.025 37.290 30.040 37.379 30.055 37.458 30.139 37.514 30.222 37.552 30.305 37.599 30.388 37.635 30.437 37.738 30.495 37.843 30.543 37.955 30.626 37.895 30.642 37.878 30.733 37.800 30.899 37.640 30.899 37.631 30.982 37.552 30.998 37.545 31.081 37.454 31.146 37.394 31.230 37.304 31.261 37.277 31.344 37.198 31.427 37.107 31.510 37.028 31.526 37.021 31.566 37.073 31.582 37.152 31.590 37.162 31.598 37.181 31.605 37.219 31.628 37.320 31.679 37.523 31.702 37.624 31.727 37.726 31.750 37.836 31.775 37.937 31.783 37.948 31.783 37.966 31.808 38.067 31.841 38.170 31.841 38.200 31.849 38.209 31.872 38.320 31.897 38.422 31.922 38.503 31.946 38.613 31.994 38.816 32.002 38.856 32.025 38.958 32.091 39.064 32.157 39.148 32.240 39.256 32.255 39.277 32.271 39.287 32.362 39.258 32.377 39.232 32.369 39.201 32.336 39.068 32.420 39.010 32.460 38.996 32.468 38.997 32.493 38.981 32.501 38.991 32.516 39.041 32.516 39.060 32.557 39.045 32.605 39.032 32.704 38.994 32.745 38.989 32.760 38.982 33.009 38.899 33.118 38.874 33.257 38.819 33.381 38.783 33.366 38.743 33.358 38.732 33.308 38.628 33.251 38.523 33.195 38.408 33.145 38.303 33.129 38.284 33.073 38.169 33.015 38.064 32.959 37.958 32.911 37.854 32.886 37.815 32.830 37.701 32.714 37.490 32.698 37.470 32.642 37.356 32.526 37.146 32.510 37.115 32.445 37.000 32.388 36.895 32.356 36.793 32.364 36.715 32.379 36.609 32.394 36.511 32.394 36.502 32.410 36.436 32.410 36.427 32.526 36.240 32.551 36.205 32.543 36.165 32.551 36.148 32.617 36.055 32.667 36.032 32.683 35.985 32.723 35.949 32.749 35.912 32.749 35.894 32.756 35.885 32.772 35.788 32.772 35.769 32.756 35.759 32.715 35.688 32.708 35.678 32.715 35.651 32.700 35.619 32.677 35.599 32.677 35.581 32.629 35.594 32.446 35.577 32.424 35.566 32.257 35.588 32.232 35.576 32.149 35.559 32.141 35.549 32.058 35.541 31.974 35.561 31.909 35.555 31.835 35.557 31.795 35.572 31.711 35.525 31.598 35.496 31.448 35.483 31.365 35.445 31.357 35.435 31.274 35.409 31.267 35.418 31.251 35.434 31.168 35.475 31.135 35.463 31.086 35.440 31.054 35.419 31.023 35.416 30.990 35.403 30.975 35.384 30.808 35.309 30.725 35.265 30.642 35.218 30.568 35.202 30.485 35.165 30.469 35.173 30.379 35.174 30.288 35.156 30.204 35.179 30.121 35.132 30.055 35.108 29.949 35.081 29.866 35.066 29.783 35.031 29.692 35.024 29.684 35.015 29.636 34.994 29.603 35.000 29.595 35.018 29.579 35.017 29.489 34.984 29.423 34.979 ; #296 5 20.331 -87.068 20.404 -86.985 20.487 -86.925 20.570 -86.854 20.661 -86.815 20.613 -86.902 20.621 -87.000 20.580 -87.031 20.497 -87.083 20.414 -87.094 20.331 -87.079 20.331 -87.070 ; #297 5 13.134 -59.594 13.174 -59.522 13.257 -59.519 13.341 -59.620 13.381 -59.719 13.207 -59.705 13.134 -59.596 ; #298 5 60.024 -1.343 59.925 -1.390 59.942 -1.274 60.022 -1.214 60.115 -1.202 60.207 -1.154 60.300 -1.131 60.392 -1.083 60.429 -1.217 60.521 -1.227 60.457 -1.338 60.550 -1.349 60.642 -1.312 60.633 -1.430 60.541 -1.456 60.541 -1.574 60.448 -1.446 60.395 -1.321 60.349 -1.445 60.332 -1.562 60.332 -1.680 60.240 -1.648 60.265 -1.521 60.229 -1.399 60.136 -1.284 60.043 -1.331 60.026 -1.351 ; #299 5 60.515 -1.124 60.607 -1.029 60.700 -1.017 60.726 -1.139 60.633 -1.129 60.541 -1.177 60.515 -1.127 ; #300 5 60.700 -0.849 60.793 -0.825 60.827 -0.948 60.735 -0.971 ; #301 5 60.588 -0.883 60.625 -0.768 60.642 -0.900 ; #302 5 24.329 51.567 24.255 51.600 24.165 51.593 24.056 51.681 23.973 51.760 23.782 51.918 23.676 52.015 23.484 52.173 23.428 52.216 23.286 52.340 23.147 52.452 23.008 52.576 22.967 52.892 22.942 53.130 22.917 53.348 22.894 53.568 22.853 53.884 22.820 54.139 22.696 55.142 22.729 55.174 22.762 55.195 22.810 55.208 22.851 55.211 22.942 55.210 23.116 55.225 23.200 55.250 23.283 55.304 23.373 55.350 23.457 55.366 23.548 55.392 23.631 55.465 23.722 55.481 23.795 55.526 23.879 55.542 23.962 55.522 23.985 55.477 24.058 55.580 24.084 55.668 24.091 55.765 24.076 55.840 24.116 55.941 24.200 55.966 24.265 55.942 24.265 55.845 24.356 55.788 24.440 55.813 24.530 55.783 24.614 55.763 24.705 55.827 24.753 55.802 24.836 55.800 24.919 55.789 24.952 55.810 25.026 55.914 25.034 55.954 24.942 56.021 24.919 56.028 24.861 56.005 24.853 56.005 24.797 56.047 24.790 56.055 24.838 56.156 24.853 56.167 24.878 56.169 24.912 56.257 24.977 56.311 25.018 56.315 25.026 56.334 25.026 56.352 25.051 56.346 25.117 56.336 25.200 56.347 25.291 56.349 25.339 56.364 25.364 56.367 25.448 56.348 25.463 56.341 25.554 56.352 25.637 56.333 25.678 56.261 25.670 56.242 25.703 56.149 25.736 56.135 25.993 56.167 26.084 56.169 26.109 56.075 26.018 56.046 25.927 56.025 25.871 55.962 25.788 55.875 25.730 55.771 25.707 55.741 25.623 55.633 25.615 55.546 25.557 55.510 25.550 55.509 25.509 55.486 25.502 55.485 25.453 55.441 25.446 55.422 25.414 55.400 25.356 55.328 25.316 55.314 25.308 55.322 25.300 55.312 25.300 55.303 25.217 55.196 25.134 55.120 25.060 55.046 25.060 55.037 25.035 55.007 24.970 54.894 24.904 54.783 24.830 54.679 24.739 54.663 24.656 54.638 24.623 54.626 24.540 54.581 24.474 54.489 24.391 54.464 24.325 54.362 24.285 54.262 24.368 54.172 24.353 54.094 24.327 54.121 24.236 54.178 24.196 54.078 24.171 53.971 24.130 53.861 24.122 53.764 24.122 53.658 24.148 53.554 24.188 53.461 24.172 53.354 24.172 53.248 24.188 53.152 24.203 53.039 24.211 52.934 24.211 52.837 24.203 52.818 24.219 52.713 24.267 52.612 24.184 52.528 24.110 52.426 24.062 52.345 24.037 52.238 24.037 52.132 24.052 52.036 24.037 51.929 24.070 51.835 24.086 51.818 24.176 51.807 24.267 51.805 24.351 51.765 24.277 51.662 24.360 51.651 24.345 51.593 ; #303 5 -9.115 125.143 -9.195 125.149 -9.280 125.149 -9.305 125.157 -9.317 125.187 -9.324 125.179 -9.309 125.272 -9.226 125.361 -9.160 125.460 -9.127 125.552 -9.087 125.644 -9.087 125.739 -9.038 125.838 -9.023 125.932 -9.000 126.034 -8.951 126.125 -8.886 126.215 -8.878 126.317 -8.862 126.411 -8.854 126.505 -8.789 126.595 -8.705 126.683 -8.665 126.775 -8.657 126.869 -8.626 126.971 -8.586 127.062 -8.520 127.152 -8.446 127.241 -8.380 127.339 -8.297 127.362 -8.239 127.283 -8.272 127.190 -8.231 127.093 -8.247 126.991 -8.305 126.900 -8.321 126.807 -8.361 126.706 -8.386 126.613 -8.338 126.515 -8.346 126.421 -8.386 126.329 -8.402 126.227 -8.427 126.134 -8.394 126.037 -8.386 125.942 -8.410 125.840 -8.434 125.747 -8.450 125.653 -8.466 125.560 -8.474 125.466 -8.506 125.365 -8.514 125.271 -8.580 125.181 -8.663 125.169 -8.746 125.092 -8.762 125.076 -8.818 125.190 -8.862 125.253 -8.914 125.279 -8.953 125.272 -9.036 125.184 -9.079 125.158 ; #304 5 -9.300 123.992 -9.311 124.030 -9.317 124.046 -9.324 124.067 -9.332 124.092 -9.342 124.118 -9.351 124.144 -9.359 124.169 -9.367 124.191 -9.373 124.208 -9.377 124.220 -9.379 124.224 -9.311 124.323 -9.408 124.398 -9.403 124.399 -9.389 124.400 -9.368 124.403 -9.344 124.408 -9.317 124.416 -9.290 124.426 -9.265 124.439 -9.245 124.457 -9.231 124.478 -9.226 124.504 -9.223 124.527 -9.214 124.542 -9.202 124.550 -9.186 124.553 -9.170 124.551 -9.153 124.547 -9.138 124.541 -9.125 124.535 -9.117 124.530 -9.113 124.528 -9.075 124.563 -9.091 124.461 -9.106 124.367 -9.147 124.266 -9.205 124.176 -9.237 124.084 -9.294 123.984 ; #305 2 -16.558 -151.572 -16.475 -151.542 -16.475 -151.637 -16.558 -151.574 ; #306 2 -16.780 -151.551 -16.697 -151.492 -16.697 -151.588 -16.780 -151.553 ; #307 2 -17.446 -149.963 -17.430 -149.942 -17.347 -149.938 -17.388 -150.044 -17.444 -149.963 ; #308 2 -17.637 -149.446 -17.637 -149.437 -17.728 -149.376 -17.744 -149.284 -17.696 -149.263 -17.612 -149.318 -17.589 -149.417 -17.506 -149.433 -17.423 -149.459 -17.382 -149.544 -17.390 -149.642 -17.473 -149.748 -17.556 -149.713 -17.622 -149.625 -17.630 -149.531 -17.637 -149.449 ; #309 2 -8.845 -140.274 -8.796 -140.214 -8.771 -140.117 -8.688 -140.146 -8.688 -140.241 -8.673 -140.343 -8.763 -140.343 -8.847 -140.276 ; #310 2 -9.336 -140.181 -9.320 -140.141 -9.237 -140.142 -9.253 -140.239 -9.336 -140.182 ; #311 2 -9.742 -139.131 -9.694 -139.117 -9.694 -139.014 -9.629 -138.913 -9.629 -139.008 -9.588 -139.099 -9.629 -139.197 -9.712 -139.231 -9.744 -139.131 ; #312 2 -52.952 73.775 -52.875 73.615 -52.851 73.492 -52.835 73.373 -52.819 73.244 -52.906 73.351 -52.993 73.404 -53.027 73.543 -52.993 73.637 -52.966 73.746 -52.958 73.773 ; #313 2 15.966 -89.323 15.974 -89.229 15.981 -89.125 15.966 -89.027 15.966 -89.010 15.999 -89.015 16.082 -89.001 16.165 -88.919 16.248 -88.847 16.305 -88.830 16.353 -88.742 16.361 -88.647 16.444 -88.593 16.527 -88.531 16.610 -88.517 16.694 -88.464 16.602 -88.467 16.694 -88.443 16.777 -88.419 16.833 -88.427 16.916 -88.384 16.999 -88.380 17.082 -88.355 17.165 -88.406 17.257 -88.420 17.340 -88.424 17.430 -88.400 17.514 -88.386 17.597 -88.353 17.680 -88.412 17.763 -88.359 17.846 -88.334 17.938 -88.330 18.061 -88.294 18.145 -88.260 18.228 -88.235 18.326 -88.232 18.410 -88.292 18.410 -88.388 18.376 -88.488 18.460 -88.492 18.551 -88.430 18.551 -88.590 18.467 -88.653 18.384 -88.696 18.301 -88.730 18.286 -88.745 18.195 -88.816 18.129 -88.832 18.113 -88.856 18.055 -88.894 17.972 -88.957 17.964 -88.955 17.949 -88.962 17.957 -88.972 18.030 -89.088 18.063 -89.189 18.022 -89.259 17.972 -89.259 17.889 -89.255 17.806 -89.260 17.715 -89.255 17.632 -89.259 17.548 -89.255 17.458 -89.259 17.409 -89.251 17.326 -89.256 17.243 -89.252 17.160 -89.256 17.111 -89.249 17.020 -89.252 16.854 -89.264 16.763 -89.268 16.597 -89.280 16.506 -89.283 16.490 -89.281 16.407 -89.285 16.324 -89.290 16.233 -89.294 16.067 -89.305 15.968 -89.307 ; #314 2 -7.502 -73.996 -7.586 -73.934 -7.669 -73.864 -7.725 -73.764 -7.815 -73.703 -7.899 -73.791 -7.972 -73.691 -8.056 -73.629 -8.139 -73.607 -8.222 -73.566 -8.313 -73.553 -8.378 -73.453 -8.444 -73.362 -8.528 -73.358 -8.611 -73.316 -8.659 -73.215 -8.825 -73.092 -8.916 -73.002 -9.000 -72.968 -9.083 -72.964 -9.174 -73.025 -9.257 -73.112 -9.340 -73.192 -9.373 -73.099 -9.373 -72.900 -9.381 -72.806 -9.381 -72.731 -9.406 -72.638 -9.446 -72.545 -9.446 -72.442 -9.487 -72.349 -9.570 -72.298 -9.653 -72.256 -9.736 -72.243 -9.820 -72.164 -9.903 -72.177 -9.959 -72.189 -9.967 -72.086 -9.967 -71.433 -9.959 -71.369 -9.926 -71.272 -9.860 -71.165 -9.787 -71.067 -9.721 -70.968 -9.630 -70.889 -9.565 -70.782 -9.499 -70.684 -9.408 -70.604 -9.400 -70.529 -9.483 -70.571 -9.531 -70.628 -9.698 -70.542 -9.781 -70.630 -9.913 -70.637 -9.961 -70.630 -10.052 -70.637 -10.143 -70.636 -10.234 -70.635 -10.317 -70.643 -10.499 -70.641 -10.590 -70.649 -10.656 -70.646 -10.746 -70.645 -10.837 -70.653 -10.929 -70.652 -10.888 -70.554 -10.979 -70.467 -11.019 -70.375 -11.012 -70.280 -10.986 -70.183 -10.938 -70.075 -10.905 -70.017 -10.880 -69.920 -10.880 -69.825 -10.921 -69.734 -10.913 -69.638 -10.905 -69.611 -10.905 -69.489 -10.889 -69.393 -10.913 -69.300 -10.921 -69.206 -10.929 -69.103 -10.951 -69.010 -10.967 -68.908 -10.942 -68.811 -10.967 -68.776 -11.050 -68.800 -11.081 -68.708 -11.058 -68.611 -11.000 -68.511 -10.959 -68.413 -10.944 -68.317 -10.853 -68.245 -10.770 -68.192 -10.686 -68.147 -10.613 -68.037 -10.620 -67.943 -10.620 -67.848 -10.662 -67.757 -10.654 -67.729 -10.563 -67.704 -10.479 -67.633 -10.431 -67.534 -10.348 -67.452 -10.323 -67.346 -10.274 -67.248 -10.282 -67.202 -10.226 -67.102 -10.060 -66.919 -9.986 -66.818 -9.961 -66.799 -9.920 -66.694 -9.880 -66.666 -9.856 -66.570 -9.856 -66.475 -9.806 -66.369 -9.798 -66.273 -9.758 -66.168 -9.774 -66.074 -9.740 -65.978 -9.748 -65.874 -9.740 -65.779 -9.764 -65.685 -9.796 -65.592 -9.713 -65.542 -9.648 -65.475 -9.721 -65.384 -9.804 -65.332 -9.888 -65.363 -9.961 -65.358 -10.044 -65.346 -10.135 -65.326 -10.218 -65.342 -10.309 -65.405 -10.350 -65.426 -10.441 -65.480 -10.507 -65.468 -10.590 -65.474 -10.681 -65.426 -10.764 -65.451 -10.820 -65.360 -10.853 -65.355 -10.944 -65.344 -11.027 -65.389 -11.110 -65.442 -11.193 -65.422 -11.277 -65.383 -11.367 -65.399 -11.451 -65.359 -11.508 -65.269 -11.592 -65.238 -11.675 -65.263 -11.691 -65.169 -11.774 -65.092 -11.857 -65.052 -11.865 -65.044 -11.890 -65.055 -11.946 -65.051 -11.971 -64.960 -11.979 -64.866 -12.062 -64.797 -12.135 -64.708 -12.168 -64.636 -12.191 -64.534 -12.275 -64.541 -12.358 -64.492 -12.398 -64.469 -12.414 -64.366 -12.422 -64.358 -12.430 -64.255 -12.455 -64.162 -12.478 -64.069 -12.486 -63.974 -12.402 -63.873 -12.410 -63.769 -12.441 -63.677 -12.492 -63.586 -12.575 -63.497 -12.631 -63.398 -12.639 -63.304 -12.573 -63.203 -12.573 -63.185 -12.656 -63.108 -12.739 -63.080 -12.795 -62.989 -12.878 -62.929 -12.934 -62.838 -12.911 -62.733 -12.994 -62.644 -13.002 -62.550 -13.075 -62.451 -13.075 -62.356 -13.060 -62.260 -13.159 -62.184 -13.242 -62.115 -13.325 -62.018 -13.408 -61.940 -13.474 -61.890 -13.467 -61.794 -13.443 -61.697 -13.443 -61.659 -13.484 -61.567 -13.459 -61.470 -13.434 -61.365 -13.449 -61.271 -13.416 -61.173 -13.472 -61.082 -13.530 -60.992 -13.579 -60.900 -13.612 -60.807 -13.668 -60.717 -13.708 -60.625 -13.774 -60.534 -13.857 -60.485 -13.923 -60.461 -14.006 -60.514 -14.097 -60.539 -14.180 -60.517 -14.271 -60.460 -14.355 -60.437 -14.445 -60.398 -14.461 -60.407 -14.577 -60.342 -14.693 -60.332 -14.832 -60.325 -14.915 -60.323 -15.006 -60.312 -15.006 -60.437 -15.014 -60.562 -15.098 -60.553 -15.180 -60.478 -15.263 -60.403 -15.355 -60.329 -15.446 -60.292 -15.544 -60.286 -15.635 -60.278 -15.734 -60.271 -15.825 -60.272 -15.923 -60.266 -16.022 -60.258 -16.113 -60.251 -16.171 -60.153 -16.179 -60.089 -16.179 -59.985 -16.187 -59.891 -16.187 -59.722 -16.194 -59.627 -16.194 -59.523 -16.202 -59.477 -16.202 -59.373 -16.210 -59.278 -16.210 -59.069 -16.217 -59.070 -16.217 -58.870 -16.225 -58.776 -16.225 -58.671 -16.233 -58.614 -16.225 -58.518 -16.210 -58.421 -16.258 -58.417 -16.341 -58.455 -16.424 -58.455 -16.508 -58.540 -16.573 -58.576 -16.657 -58.567 -16.838 -58.551 -16.922 -58.531 -17.020 -58.513 -17.111 -58.505 -17.194 -58.418 -17.243 -58.319 -17.299 -58.230 -17.382 -58.134 -17.397 -58.098 -17.365 -57.989 -17.380 -57.983 -17.453 -57.886 -17.469 -57.861 -17.527 -57.884 -17.610 -57.838 -17.618 -57.830 -17.709 -57.793 -17.792 -57.793 -17.891 -57.739 -17.931 -57.706 -18.022 -57.677 -18.088 -57.629 -18.172 -57.675 -18.262 -57.703 -18.353 -57.742 -18.444 -57.761 -18.527 -57.787 -18.694 -57.840 -18.785 -57.869 -18.792 -57.823 -18.866 -57.812 -18.899 -57.807 -18.982 -57.901 -19.073 -57.949 -19.156 -57.984 -19.247 -58.032 -19.330 -58.070 -19.413 -58.106 -19.504 -58.153 -19.587 -58.192 -19.679 -58.135 -19.761 -58.048 -19.835 -57.950 -19.850 -57.934 -19.876 -57.955 -19.916 -58.055 -19.990 -58.159 -20.040 -58.241 -20.131 -58.244 -20.214 -58.178 -20.298 -58.093 -20.380 -58.095 -20.471 -58.089 -20.555 -58.073 -20.580 -57.980 -20.671 -58.038 -20.754 -57.993 -20.837 -57.907 -20.920 -57.945 -21.011 -57.938 -21.095 -57.940 -21.178 -57.977 -21.268 -57.989 -21.352 -58.037 -21.435 -58.010 -21.468 -58.024 -21.551 -57.998 -21.566 -57.991 -21.640 -58.030 -21.688 -58.036 -21.779 -58.030 -21.863 -58.067 -21.953 -58.079 -21.977 -58.035 -21.992 -57.940 -21.967 -57.841 -21.975 -57.745 -22.025 -57.646 -22.048 -57.584 -22.056 -57.489 -22.064 -57.393 -22.064 -57.297 -22.094 -57.195 -22.087 -57.098 -22.102 -57.024 -22.151 -56.933 -22.110 -56.832 -22.085 -56.732 -21.994 -56.644 -21.969 -56.623 -21.938 -56.590 -21.946 -56.495 -22.029 -56.440 -22.085 -56.351 -22.134 -56.260 -22.134 -56.155 -22.149 -56.060 -22.164 -55.966 -22.222 -55.876 -22.305 -55.840 -22.397 -55.833 -22.462 -55.745 -22.553 -55.718 -22.636 -55.746 -22.719 -55.747 -22.811 -55.729 -22.894 -55.692 -22.977 -55.685 -23.060 -55.637 -23.093 -55.632 -23.176 -55.651 -23.267 -55.615 -23.350 -55.634 -23.366 -55.628 -23.449 -55.629 -23.540 -55.555 -23.623 -55.538 -23.714 -55.531 -23.797 -55.523 -23.838 -55.431 -23.853 -55.337 -23.846 -55.230 -23.830 -55.131 -23.822 -55.112 -23.789 -55.011 -23.723 -54.907 -23.691 -54.797 -23.675 -54.698 -23.716 -54.607 -23.772 -54.517 -23.846 -54.429 -23.853 -54.421 -23.894 -54.360 -23.977 -54.447 -24.068 -54.431 -24.151 -54.374 -24.242 -54.385 -24.325 -54.442 -24.416 -54.426 -24.499 -54.436 -24.573 -54.463 -24.664 -54.513 -24.747 -54.523 -24.838 -54.552 -24.921 -54.562 -25.012 -54.556 -25.095 -54.598 -25.178 -54.670 -25.262 -54.712 -25.310 -54.711 -25.343 -54.708 -25.409 -54.710 -25.409 -54.681 -25.439 -54.630 -25.498 -54.534 -25.407 -54.470 -25.407 -54.373 -25.366 -54.269 -25.381 -54.175 -25.415 -54.075 -25.488 -53.990 -25.579 -53.979 -25.662 -53.945 -25.745 -53.941 -25.828 -53.899 -25.911 -53.866 -26.002 -53.816 -26.076 -53.781 -26.092 -53.783 -26.175 -53.836 -26.258 -53.841 -26.424 -53.870 -26.515 -53.867 -26.598 -53.872 -26.681 -53.839 -26.773 -53.864 -26.856 -53.908 -26.939 -53.958 -26.995 -53.977 -26.980 -54.072 -27.063 -54.184 -27.111 -54.290 -27.194 -54.370 -27.217 -54.471 -27.233 -54.581 -27.299 -54.690 -27.332 -54.793 -27.380 -54.899 -27.438 -55.016 -27.529 -55.041 -27.603 -55.131 -27.668 -55.249 -27.693 -55.351 -27.734 -55.456 -27.774 -55.472 -27.858 -55.543 -27.883 -55.625 -27.931 -55.732 -27.947 -55.752 -27.987 -55.787 -28.071 -55.879 -28.129 -55.792 -28.220 -55.826 -28.171 -55.915 -28.194 -56.026 -28.278 -56.023 -28.303 -56.125 -28.394 -56.132 -28.477 -56.233 -28.560 -56.305 -28.634 -56.416 -28.717 -56.431 -28.808 -56.513 -28.891 -56.597 -28.957 -56.716 -29.040 -56.761 -29.130 -56.786 -29.214 -56.878 -29.247 -56.903 -29.337 -56.986 -29.421 -57.058 -29.504 -57.132 -29.544 -57.167 -29.578 -57.271 -29.618 -57.377 -29.709 -57.393 -29.800 -57.419 -29.883 -57.521 -29.966 -57.623 -29.982 -57.673 -30.022 -57.634 -30.073 -57.580 -30.088 -57.477 -30.073 -57.375 -30.080 -57.269 -29.997 -57.222 -29.906 -57.127 -29.899 -57.028 -29.899 -56.921 -29.972 -56.806 -30.020 -56.717 -30.094 -56.637 -30.177 -56.549 -30.225 -56.483 -30.299 -56.403 -30.348 -56.306 -30.438 -56.241 -30.522 -56.174 -30.587 -56.091 -30.678 -56.083 -30.769 -56.096 -30.860 -56.108 -30.860 -55.971 -30.794 -55.857 -30.721 -55.731 -30.637 -55.730 -30.671 -55.630 -30.703 -55.580 -30.870 -55.423 -30.961 -55.375 -31.044 -55.296 -31.102 -55.211 -31.069 -55.105 -31.152 -55.038 -31.209 -54.952 -31.224 -54.848 -31.239 -54.752 -31.296 -54.658 -31.361 -54.575 -31.452 -54.566 -31.485 -54.495 -31.568 -54.416 -31.625 -54.330 -31.690 -54.238 -31.665 -54.144 -31.706 -54.046 -31.713 -54.038 -31.796 -53.949 -31.853 -53.855 -31.943 -53.808 -32.035 -53.752 -32.118 -53.752 -32.208 -53.674 -32.265 -53.588 -32.338 -53.497 -32.338 -53.479 -32.361 -53.375 -32.411 -53.288 -32.503 -53.221 -32.586 -53.307 -32.669 -53.414 -32.760 -53.474 -32.825 -53.589 -32.917 -53.640 -33.000 -53.641 -33.083 -53.621 -33.174 -53.614 -33.265 -53.626 -33.356 -53.638 -33.429 -53.645 -33.445 -53.549 -33.493 -53.482 -33.427 -53.367 -33.337 -53.267 -33.253 -53.170 -33.170 -53.051 -33.087 -52.954 -33.004 -52.856 -32.921 -52.798 -32.837 -52.742 -32.754 -52.692 -32.663 -52.642 -32.580 -52.614 -32.497 -52.576 -32.406 -52.556 -32.323 -52.527 -32.240 -52.490 -32.148 -52.442 -32.065 -52.405 -31.982 -52.319 -31.891 -52.241 -31.808 -52.222 -31.841 -52.329 -31.758 -52.388 -31.675 -52.282 -31.642 -52.373 -31.551 -52.344 -31.543 -52.360 -31.460 -52.254 -31.369 -52.176 -31.286 -52.139 -31.195 -52.137 -31.111 -52.099 -31.071 -51.992 -31.040 -51.877 -31.032 -51.866 -30.949 -51.779 -30.866 -51.662 -30.783 -51.615 -30.692 -51.613 -30.659 -51.499 -30.568 -51.497 -30.485 -51.508 -30.402 -51.472 -30.485 -51.430 -30.568 -51.421 -30.485 -51.403 -30.402 -51.423 -30.311 -51.403 -30.227 -51.376 -30.179 -51.257 -30.096 -51.317 -30.056 -51.406 -29.972 -51.428 -29.889 -51.423 -29.798 -51.408 -29.813 -51.363 -29.897 -51.347 -29.988 -51.296 -30.003 -51.200 -30.094 -51.152 -30.177 -51.092 -30.094 -51.044 -30.094 -50.946 -30.061 -50.840 -29.978 -50.784 -30.011 -50.683 -30.102 -50.676 -30.210 -50.699 -30.160 -50.786 -30.243 -50.814 -30.334 -50.816 -30.417 -50.816 -30.500 -50.834 -30.591 -50.911 -30.647 -51.022 -30.731 -51.098 -30.814 -51.125 -30.897 -51.125 -30.841 -51.211 -30.932 -51.309 -31.015 -51.298 -31.098 -51.316 -31.189 -51.355 -31.272 -51.451 -31.280 -51.552 -31.371 -51.591 -31.419 -51.701 -31.503 -51.776 -31.559 -51.888 -31.632 -52.012 -31.599 -52.104 -31.576 -52.197 -31.659 -52.197 -31.742 -52.207 -31.826 -52.189 -31.916 -52.228 -31.826 -52.130 -31.742 -52.074 -31.659 -51.956 -31.593 -51.842 -31.545 -51.733 -31.487 -51.621 -31.404 -51.515 -31.320 -51.398 -31.237 -51.292 -31.147 -51.194 -31.063 -51.118 -30.980 -51.022 -30.889 -50.942 -30.806 -50.867 -30.723 -50.810 -30.675 -50.780 -30.508 -50.645 -30.417 -50.596 -30.334 -50.520 -30.251 -50.475 -30.167 -50.427 -30.077 -50.378 -29.994 -50.360 -29.910 -50.328 -29.827 -50.284 -29.771 -50.266 -29.680 -50.242 -29.597 -50.199 -29.539 -50.153 -29.456 -50.121 -29.440 -50.109 -29.375 -50.069 -29.291 -50.019 -29.200 -49.965 -29.117 -49.895 -29.094 -49.873 -29.011 -49.821 -28.927 -49.741 -28.844 -49.671 -28.754 -49.588 -28.670 -49.488 -28.587 -49.377 -28.513 -49.267 -28.448 -49.159 -28.399 -49.053 -28.316 -48.953 -28.268 -49.044 -28.218 -49.036 -28.218 -49.027 -28.134 -49.061 -28.208 -49.004 -28.216 -48.997 -28.248 -48.954 -28.165 -48.932 -28.075 -48.888 -27.991 -48.856 -27.908 -48.834 -27.825 -48.803 -27.734 -48.818 -27.651 -48.766 -27.567 -48.810 -27.477 -48.834 -27.394 -48.812 -27.302 -48.825 -27.219 -48.830 -27.136 -48.748 -27.045 -48.811 -27.005 -48.707 -26.914 -48.702 -26.914 -48.799 -26.823 -48.767 -26.739 -48.811 -26.656 -48.827 -26.566 -48.774 -26.525 -48.865 -26.442 -48.870 -26.384 -48.870 -26.217 -48.808 -26.161 -48.855 -26.146 -48.862 -26.097 -48.951 -26.014 -48.947 -25.923 -48.971 -26.006 -48.928 -25.981 -48.827 -25.898 -48.784 -25.815 -48.789 -25.774 -48.774 -25.684 -48.741 -25.676 -48.837 -25.676 -48.935 -25.635 -48.831 -25.643 -48.726 -25.560 -48.695 -25.469 -48.653 -25.385 -48.563 -25.377 -48.659 -25.312 -48.706 -25.319 -48.813 -25.279 -48.903 -25.196 -48.909 -25.246 -48.820 -25.254 -48.714 -25.238 -48.615 -25.148 -48.619 -25.064 -48.624 -25.097 -48.532 -25.112 -48.438 -25.089 -48.328 -25.172 -48.400 -25.256 -48.413 -25.172 -48.341 -25.114 -48.255 -25.024 -48.193 -25.016 -48.183 -24.925 -48.087 -24.877 -48.178 -24.861 -48.139 -24.778 -48.082 -24.694 -48.007 -24.621 -47.902 -24.548 -47.798 -24.523 -47.747 -24.449 -47.566 -24.393 -47.463 -24.335 -47.360 -24.252 -47.254 -24.085 -47.122 -24.019 -47.018 -23.971 -46.916 -23.913 -46.803 -23.865 -46.701 -23.824 -46.591 -23.799 -46.598 -23.784 -46.614 -23.743 -46.601 -23.727 -46.599 -23.735 -46.494 -23.818 -46.503 -23.842 -46.488 -23.810 -46.387 -23.727 -46.340 -23.644 -46.255 -23.594 -46.144 -23.579 -46.046 -23.586 -45.941 -23.601 -45.846 -23.617 -45.751 -23.642 -45.657 -23.559 -45.601 -23.468 -45.629 -23.412 -45.527 -23.396 -45.428 -23.313 -45.355 -23.298 -45.256 -23.225 -45.201 -23.159 -45.098 -23.191 -45.005 -23.176 -44.927 -23.168 -44.829 -23.120 -44.728 -23.072 -44.819 -23.046 -44.913 -22.956 -44.895 -22.872 -44.868 -22.865 -44.771 -22.839 -44.663 -22.774 -44.560 -22.824 -44.468 -22.855 -44.366 -22.772 -44.272 -22.749 -44.173 -22.723 -44.074 -22.756 -43.971 -22.805 -43.880 -22.845 -43.828 -22.870 -43.936 -22.878 -44.033 -22.878 -44.130 -22.926 -44.211 -22.894 -44.111 -22.886 -44.005 -22.878 -43.899 -22.870 -43.801 -22.855 -43.703 -22.839 -43.605 -22.839 -43.499 -22.815 -43.400 -22.723 -43.373 -22.715 -43.390 -22.700 -43.427 -22.692 -43.435 -22.602 -43.482 -22.536 -43.379 -22.510 -43.271 -22.594 -43.279 -22.677 -43.306 -22.717 -43.339 -22.801 -43.250 -22.809 -43.155 -22.801 -43.049 -22.793 -42.951 -22.777 -42.853 -22.770 -42.747 -22.770 -42.650 -22.777 -42.554 -22.777 -42.361 -22.785 -42.257 -22.816 -42.233 -22.725 -42.241 -22.642 -42.168 -22.559 -42.187 -22.476 -42.208 -22.385 -42.190 -22.311 -42.086 -22.228 -42.002 -22.137 -41.917 -22.089 -41.816 -22.023 -41.616 -22.000 -41.518 -21.967 -41.418 -21.901 -41.307 -21.853 -41.205 -21.770 -41.188 -21.686 -41.219 -21.596 -41.228 -21.513 -41.229 -21.447 -41.223 -21.363 -41.270 -21.280 -41.233 -21.197 -41.178 -21.114 -41.170 -21.031 -41.136 -20.940 -41.059 -20.856 -41.024 -20.766 -41.025 -20.682 -40.961 -20.657 -40.854 -20.584 -40.750 -20.493 -40.695 -20.410 -40.611 -20.326 -40.556 -20.243 -40.519 -20.153 -40.577 -20.112 -40.477 -20.127 -40.450 -20.036 -40.403 -19.953 -40.378 -19.862 -40.353 -19.846 -40.352 -19.763 -40.309 -19.680 -40.274 -19.597 -40.229 -19.582 -40.219 -19.533 -40.120 -19.493 -40.031 -19.410 -39.998 -19.319 -39.953 -19.235 -39.928 -19.152 -39.922 -19.061 -39.932 -18.978 -39.943 -18.895 -39.955 -18.804 -39.966 -18.713 -39.967 -18.630 -39.978 -18.546 -39.972 -18.456 -39.956 -18.373 -39.958 -18.289 -39.934 -18.206 -39.909 -18.181 -39.898 -18.090 -39.882 -18.007 -39.840 -17.951 -39.789 -17.867 -39.735 -17.784 -39.662 -17.752 -39.564 -17.668 -39.482 -17.577 -39.399 -17.494 -39.410 -17.411 -39.432 -17.320 -39.425 -17.237 -39.448 -17.146 -39.458 -17.063 -39.452 -16.979 -39.428 -16.896 -39.412 -16.813 -39.388 -16.722 -39.372 -16.639 -39.374 -16.556 -39.339 -16.465 -39.323 -16.382 -39.317 -16.291 -39.292 -16.208 -39.239 -16.125 -39.241 -16.034 -39.196 -15.950 -39.190 -15.867 -39.157 -15.784 -39.133 -15.718 -39.101 -15.635 -39.141 -15.544 -39.169 -15.453 -39.180 -15.370 -39.192 -15.287 -39.203 -15.196 -39.205 -15.113 -39.225 -15.022 -39.236 -14.855 -39.226 -14.765 -39.248 -14.674 -39.280 -14.590 -39.285 -14.507 -39.289 -14.417 -39.267 -14.325 -39.253 -14.242 -39.240 -14.159 -39.218 -14.136 -39.225 -14.053 -39.203 -13.962 -39.180 -13.879 -39.167 -13.788 -39.162 -13.879 -39.203 -13.962 -39.244 -13.879 -39.231 -13.788 -39.301 -13.704 -39.279 -13.613 -39.350 -13.696 -39.250 -13.613 -39.237 -13.530 -39.206 -13.439 -39.248 -13.356 -39.280 -13.405 -39.310 -13.478 -39.331 -13.463 -39.330 -13.380 -39.317 -13.296 -39.295 -13.213 -39.290 -13.244 -39.197 -13.153 -39.201 -13.070 -39.121 -12.987 -39.134 -12.904 -39.055 -12.904 -39.046 -12.812 -38.995 -12.722 -39.036 -12.722 -39.092 -12.639 -39.145 -12.613 -39.161 -12.697 -39.091 -12.641 -38.993 -12.549 -38.961 -12.466 -38.948 -12.557 -38.886 -12.598 -38.793 -12.681 -38.742 -12.772 -38.739 -12.855 -38.770 -12.855 -38.665 -12.814 -38.568 -12.731 -38.489 -12.641 -38.418 -12.557 -38.349 -12.474 -38.270 -12.391 -38.219 -12.300 -38.177 -12.217 -38.108 -12.050 -37.987 -11.960 -37.935 -11.876 -37.885 -11.793 -37.843 -11.710 -37.810 -11.662 -37.790 -11.621 -37.770 -11.538 -37.730 -11.447 -37.688 -11.363 -37.629 -11.397 -37.725 -11.397 -37.743 -11.305 -37.663 -11.222 -37.650 -11.139 -37.599 -11.230 -37.622 -11.164 -37.523 -11.081 -37.424 -10.990 -37.420 -10.950 -37.512 -10.901 -37.536 -10.967 -37.436 -10.876 -37.348 -10.843 -37.328 -10.760 -37.306 -10.712 -37.388 -10.696 -37.387 -10.663 -37.394 -10.630 -37.392 -10.688 -37.292 -10.772 -37.296 -10.706 -37.189 -10.615 -37.109 -10.549 -37.002 -10.483 -36.904 -10.433 -36.797 -10.402 -36.701 -10.387 -36.663 -10.296 -36.594 -10.129 -36.491 -10.046 -36.383 -9.955 -36.296 -9.890 -36.256 -9.806 -36.199 -9.723 -36.130 -9.632 -36.072 -9.632 -36.110 -9.625 -36.110 -9.632 -36.118 -9.549 -36.183 -9.623 -36.110 -9.589 -36.080 -9.499 -36.068 -9.547 -36.006 -9.563 -35.978 -9.479 -35.929 -9.388 -35.831 -9.305 -35.765 -9.214 -35.707 -9.131 -35.610 -9.048 -35.561 -8.957 -35.512 -8.866 -35.453 -8.808 -35.425 -8.717 -35.405 -8.626 -35.366 -8.528 -35.346 -8.444 -35.297 -8.353 -35.268 -8.305 -35.302 -8.222 -35.225 -8.123 -35.213 -8.040 -35.182 -7.990 -35.180 -7.982 -35.189 -7.959 -35.171 -7.974 -35.163 -7.875 -35.113 -7.793 -35.111 -7.701 -35.183 -7.661 -35.173 -7.570 -35.153 -7.487 -35.113 -7.463 -35.216 -7.448 -35.187 -7.357 -35.101 -7.349 -35.100 -7.266 -35.089 -7.175 -35.095 -7.084 -35.084 -6.993 -35.119 -6.910 -35.116 -6.993 -35.165 -7.034 -35.203 -6.943 -35.164 -6.860 -35.161 -6.769 -35.205 -6.678 -35.231 -6.587 -35.246 -6.504 -35.252 -6.413 -35.249 -6.330 -35.265 -6.246 -35.317 -6.156 -35.323 -6.140 -35.417 -6.057 -35.388 -5.966 -35.395 -5.883 -35.392 -5.800 -35.427 -5.709 -35.451 -5.686 -35.468 -5.595 -35.482 -5.511 -35.498 -5.420 -35.533 -5.330 -35.576 -5.247 -35.629 -5.163 -35.663 -5.090 -35.745 -5.042 -35.847 -5.026 -35.941 -5.010 -36.044 -4.995 -36.138 -4.970 -36.232 -4.995 -36.335 -5.018 -36.430 -5.018 -36.628 -5.003 -36.722 -5.010 -36.826 -5.018 -36.920 -5.018 -36.949 -4.978 -37.043 -4.894 -37.125 -4.854 -37.219 -4.862 -37.314 -4.854 -37.397 -4.780 -37.491 -4.755 -37.508 -4.672 -37.533 -4.606 -37.627 -4.575 -37.730 -4.568 -37.824 -4.512 -37.918 -4.420 -37.991 -4.337 -38.027 -4.312 -38.122 -4.229 -38.215 -4.156 -38.308 -4.072 -38.391 -3.989 -38.445 -3.906 -38.518 -3.840 -38.612 -3.757 -38.667 -3.674 -38.721 -3.648 -38.816 -3.625 -38.910 -3.552 -39.003 -3.486 -39.105 -3.320 -39.292 -3.271 -39.386 -3.231 -39.488 -3.157 -39.582 -3.124 -39.676 -3.084 -39.770 -3.018 -39.872 -2.960 -39.965 -2.929 -40.059 -2.855 -40.162 -2.807 -40.256 -2.799 -40.273 -2.784 -40.367 -2.799 -40.404 -2.768 -40.498 -2.760 -40.602 -2.760 -40.791 -2.794 -40.886 -2.794 -40.989 -2.819 -41.083 -2.811 -41.112 -2.826 -41.215 -2.834 -41.310 -2.834 -41.507 -2.917 -41.508 -2.975 -41.518 -2.909 -41.612 -2.869 -41.706 -2.861 -41.800 -2.846 -41.894 -2.830 -41.951 -2.747 -42.033 -2.722 -42.108 -2.698 -42.210 -2.782 -42.211 -2.805 -42.221 -2.782 -42.315 -2.757 -42.409 -2.790 -42.504 -2.706 -42.540 -2.714 -42.643 -2.698 -42.738 -2.633 -42.831 -2.577 -42.925 -2.519 -43.027 -2.478 -43.120 -2.430 -43.214 -2.414 -43.308 -2.382 -43.402 -2.356 -43.496 -2.333 -43.599 -2.348 -43.694 -2.432 -43.722 -2.447 -43.722 -2.422 -43.816 -2.463 -43.920 -2.478 -44.014 -2.511 -44.109 -2.594 -44.137 -2.511 -44.182 -2.594 -44.266 -2.677 -44.322 -2.760 -44.324 -2.794 -44.419 -2.826 -44.456 -2.743 -44.455 -2.766 -44.550 -2.683 -44.511 -2.643 -44.416 -2.559 -44.369 -2.469 -44.293 -2.385 -44.292 -2.385 -44.386 -2.434 -44.490 -2.474 -44.554 -2.499 -44.610 -2.591 -44.611 -2.674 -44.641 -2.757 -44.660 -2.840 -44.670 -2.931 -44.706 -3.014 -44.802 -3.097 -44.887 -3.163 -44.982 -3.246 -45.001 -3.262 -45.010 -3.254 -45.036 -3.170 -45.035 -3.088 -44.939 -3.005 -44.874 -2.913 -44.937 -2.830 -44.909 -2.739 -44.908 -2.656 -44.878 -2.573 -44.830 -2.482 -44.829 -2.474 -44.820 -2.391 -44.764 -2.368 -44.669 -2.277 -44.613 -2.194 -44.638 -2.111 -44.692 -2.141 -44.786 -2.232 -44.882 -2.316 -44.901 -2.225 -44.963 -2.250 -45.058 -2.217 -44.963 -2.151 -44.859 -2.068 -44.812 -1.985 -44.819 -1.894 -44.754 -1.811 -44.770 -1.788 -44.873 -1.705 -44.855 -1.778 -44.950 -1.770 -45.044 -1.687 -44.949 -1.720 -45.052 -1.637 -45.033 -1.553 -45.058 -1.579 -45.153 -1.488 -45.143 -1.404 -45.104 -1.460 -45.200 -1.544 -45.218 -1.551 -45.219 -1.544 -45.245 -1.453 -45.243 -1.445 -45.347 -1.476 -45.442 -1.559 -45.497 -1.643 -45.481 -1.693 -45.519 -1.602 -45.592 -1.519 -45.591 -1.436 -45.607 -1.352 -45.543 -1.385 -45.637 -1.476 -45.694 -1.385 -45.730 -1.302 -45.654 -1.350 -45.749 -1.259 -45.793 -1.325 -45.889 -1.242 -45.943 -1.159 -45.959 -1.242 -46.054 -1.151 -46.108 -1.159 -46.203 -1.076 -46.210 -1.167 -46.277 -1.167 -46.324 -1.083 -46.313 -1.108 -46.408 -1.018 -46.444 -0.934 -46.434 -1.018 -46.499 -1.033 -46.593 -0.950 -46.583 -0.998 -46.678 -0.983 -46.772 -0.932 -46.875 -0.958 -46.970 -0.909 -46.866 -0.818 -46.838 -0.811 -46.932 -0.901 -46.980 -0.818 -46.970 -0.760 -47.063 -0.669 -47.053 -0.760 -47.083 -0.818 -47.187 -0.735 -47.186 -0.776 -47.281 -0.685 -47.317 -0.725 -47.412 -0.642 -47.401 -0.602 -47.495 -0.570 -47.559 -0.538 -47.661 -0.636 -47.691 -0.719 -47.627 -0.727 -47.721 -0.644 -47.748 -0.652 -47.842 -0.708 -47.938 -0.652 -47.946 -0.627 -48.040 -0.652 -48.095 -0.735 -48.199 -0.669 -48.293 -0.760 -48.389 -0.843 -48.484 -0.926 -48.541 -1.010 -48.533 -1.101 -48.517 -1.167 -48.547 -1.250 -48.566 -1.250 -48.660 -1.341 -48.727 -1.432 -48.729 -1.416 -48.625 -1.400 -48.522 -1.416 -48.428 -1.424 -48.419 -1.439 -48.523 -1.455 -48.617 -1.462 -48.712 -1.546 -48.676 -1.611 -48.668 -1.538 -48.770 -1.455 -48.826 -1.422 -48.852 -1.437 -48.946 -1.520 -49.014 -1.611 -49.090 -1.703 -49.137 -1.786 -49.193 -1.811 -49.288 -1.818 -49.363 -1.826 -49.392 -1.917 -49.468 -2.008 -49.516 -2.091 -49.546 -2.182 -49.584 -2.265 -49.621 -2.356 -49.669 -2.439 -49.670 -2.513 -49.717 -2.505 -49.726 -2.490 -49.735 -2.391 -49.696 -2.308 -49.712 -2.217 -49.739 -2.126 -49.673 -2.035 -49.663 -1.952 -49.616 -1.861 -49.596 -1.778 -49.549 -1.687 -49.510 -1.703 -49.605 -1.710 -49.708 -1.801 -49.767 -1.826 -49.871 -1.834 -49.965 -1.892 -50.061 -1.975 -50.070 -1.892 -50.086 -1.801 -50.151 -1.770 -50.234 -1.793 -50.329 -1.884 -50.394 -1.836 -50.496 -1.894 -50.592 -1.894 -50.686 -1.811 -50.676 -1.778 -50.770 -1.770 -50.873 -1.762 -50.910 -1.739 -50.938 -1.656 -50.900 -1.565 -50.915 -1.474 -50.997 -1.383 -51.042 -1.300 -51.058 -1.209 -51.039 -1.126 -51.020 -1.043 -51.045 -0.952 -51.043 -0.869 -51.136 -0.960 -51.212 -1.025 -51.308 -1.074 -51.403 -1.165 -51.468 -1.213 -51.564 -1.279 -51.659 -1.319 -51.763 -1.342 -51.857 -1.350 -51.886 -1.424 -51.991 -1.490 -52.086 -1.538 -52.182 -1.553 -52.285 -1.577 -52.380 -1.643 -52.475 -1.559 -52.447 -1.486 -52.549 -1.519 -52.644 -1.519 -52.748 -1.526 -52.842 -1.542 -52.936 -1.526 -52.936 -1.501 -52.927 -1.478 -52.852 -1.445 -52.748 -1.379 -52.653 -1.348 -52.549 -1.290 -52.445 -1.356 -52.343 -1.356 -52.249 -1.283 -52.153 -1.191 -52.143 -1.108 -52.132 -1.101 -52.132 -1.060 -52.028 -0.977 -51.933 -0.886 -51.940 -0.795 -51.938 -0.712 -51.919 -0.629 -51.843 -0.546 -51.787 -0.455 -51.682 -0.364 -51.634 -0.281 -51.587 -0.197 -51.548 -0.114 -51.492 -0.066 -51.445 -0.033 -51.350 -0.008 -51.312 0.049 -51.276 0.131 -51.222 0.205 -51.120 0.205 -51.026 0.296 -50.944 0.379 -50.871 0.462 -50.809 0.553 -50.765 0.644 -50.719 0.728 -50.638 0.811 -50.545 0.901 -50.520 0.967 -50.418 1.051 -50.325 1.124 -50.243 1.207 -50.150 1.256 -50.245 1.248 -50.348 1.248 -50.366 1.288 -50.272 1.296 -50.246 1.347 -50.152 1.437 -50.136 1.521 -50.129 1.604 -50.139 1.687 -50.158 1.778 -50.234 1.786 -50.252 1.826 -50.356 1.859 -50.451 1.859 -50.554 1.851 -50.657 1.925 -50.752 2.008 -50.800 2.099 -50.839 2.155 -50.943 2.140 -50.989 2.223 -50.927 2.314 -50.955 2.397 -50.993 2.480 -51.004 2.579 -51.062 2.662 -51.063 2.753 -51.091 2.844 -51.168 2.927 -51.169 3.018 -51.197 3.109 -51.236 3.200 -51.255 3.283 -51.283 3.366 -51.293 3.457 -51.304 3.639 -51.307 3.730 -51.299 3.821 -51.310 3.904 -51.311 3.821 -51.384 3.730 -51.392 3.681 -51.408 3.765 -51.401 3.856 -51.394 4.030 -51.397 4.121 -51.444 4.204 -51.512 4.295 -51.608 4.361 -51.712 4.270 -51.765 4.186 -51.746 4.103 -51.708 4.012 -51.669 4.095 -51.736 4.186 -51.764 4.103 -51.846 4.055 -51.909 4.039 -51.955 3.956 -52.011 3.866 -52.073 3.782 -52.146 3.691 -52.208 3.608 -52.244 3.525 -52.297 3.442 -52.342 3.358 -52.396 3.275 -52.477 3.185 -52.551 3.151 -52.567 3.068 -52.566 2.985 -52.602 2.902 -52.656 2.811 -52.691 2.728 -52.727 2.645 -52.761 2.562 -52.768 2.395 -52.895 2.339 -52.988 2.281 -53.082 2.207 -53.175 2.233 -53.278 2.248 -53.373 2.225 -53.467 2.265 -53.450 2.349 -53.507 2.323 -53.601 2.291 -53.694 2.306 -53.789 2.329 -53.884 2.395 -53.980 2.321 -54.081 2.238 -54.163 2.223 -54.258 2.140 -54.322 2.188 -54.426 2.188 -54.520 2.229 -54.615 2.277 -54.710 2.351 -54.806 2.351 -54.815 2.391 -54.910 2.482 -54.978 2.459 -55.032 2.532 -55.137 2.616 -55.202 2.608 -55.220 2.608 -55.228 2.592 -55.322 2.534 -55.425 2.542 -55.519 2.459 -55.601 2.466 -55.704 2.459 -55.799 2.426 -55.892 2.474 -55.988 2.523 -56.092 2.507 -56.186 2.416 -56.202 2.366 -56.295 2.283 -56.331 2.116 -56.139 2.033 -56.109 1.950 -56.099 1.867 -56.181 1.875 -56.275 1.915 -56.379 1.923 -56.474 1.946 -56.569 1.962 -56.663 1.937 -56.717 1.937 -56.726 1.962 -56.830 1.937 -56.924 1.904 -57.018 1.944 -57.113 1.952 -57.207 2.035 -57.266 2.010 -57.360 1.995 -57.463 1.954 -57.557 1.871 -57.619 1.787 -57.683 1.722 -57.776 1.730 -57.871 1.730 -57.974 1.689 -58.067 1.623 -58.160 1.540 -58.234 1.563 -58.328 1.578 -58.432 1.571 -58.526 1.488 -58.588 1.472 -58.682 1.457 -58.682 1.373 -58.652 1.290 -58.696 1.298 -58.800 1.273 -58.894 1.207 -58.987 1.256 -59.082 1.339 -59.147 1.347 -59.156 1.354 -59.259 1.387 -59.355 1.443 -59.459 1.534 -59.496 1.575 -59.591 1.658 -59.659 1.749 -59.754 1.772 -59.849 1.855 -59.814 1.855 -59.831 1.881 -59.926 1.971 -59.919 2.138 -59.905 2.229 -59.916 2.312 -59.981 2.385 -60.077 2.468 -60.070 2.635 -60.147 2.718 -60.167 2.809 -60.160 2.892 -60.161 2.976 -60.134 3.066 -60.128 3.149 -60.083 3.233 -60.058 3.324 -60.022 3.407 -59.996 3.490 -59.989 3.573 -60.036 3.629 -59.943 3.695 -59.850 3.786 -59.823 3.869 -59.770 3.952 -59.697 4.035 -59.793 4.127 -59.812 4.210 -59.897 4.293 -59.899 4.376 -59.846 4.417 -59.893 4.457 -59.977 4.483 -60.072 4.498 -60.166 4.498 -60.224 4.581 -60.289 4.672 -60.227 4.755 -60.183 4.838 -60.166 4.921 -60.160 4.929 -60.160 5.020 -60.145 5.104 -60.157 5.160 -60.243 5.226 -60.273 5.266 -60.368 5.208 -60.460 5.208 -60.555 5.192 -60.649 5.200 -60.743 5.208 -60.847 5.200 -60.893 5.117 -60.795 5.034 -60.765 4.993 -60.745 4.910 -60.761 4.827 -60.815 4.761 -60.916 4.711 -61.010 4.628 -61.092 4.537 -61.127 4.504 -61.221 4.488 -61.324 4.496 -61.342 4.521 -61.437 4.438 -61.472 4.423 -61.566 4.407 -61.661 4.316 -61.668 4.250 -61.761 4.258 -61.865 4.210 -61.958 4.161 -62.051 4.177 -62.155 4.129 -62.248 4.105 -62.342 4.136 -62.446 4.177 -62.542 4.154 -62.636 4.063 -62.697 4.055 -62.800 4.047 -62.895 3.964 -62.928 3.873 -62.935 3.790 -62.905 3.699 -62.894 3.616 -62.939 3.575 -63.032 3.598 -63.127 3.681 -63.213 3.765 -63.278 3.848 -63.374 3.931 -63.439 3.972 -63.535 3.888 -63.608 3.881 -63.702 3.954 -63.798 3.939 -63.901 3.962 -63.996 3.922 -64.089 3.898 -64.192 3.989 -64.231 4.072 -64.262 4.138 -64.357 4.154 -64.461 4.154 -64.556 4.138 -64.650 4.131 -64.744 4.221 -64.783 4.229 -64.792 4.295 -64.897 4.204 -64.950 4.121 -64.854 4.037 -64.826 3.871 -64.690 3.788 -64.594 3.747 -64.499 3.664 -64.413 3.573 -64.348 3.490 -64.373 3.407 -64.388 3.316 -64.377 3.233 -64.367 3.142 -64.383 3.059 -64.315 2.976 -64.278 2.892 -64.230 2.809 -64.172 2.718 -64.152 2.635 -64.159 2.552 -64.204 2.478 -64.099 2.438 -64.004 2.445 -63.901 2.453 -63.806 2.445 -63.712 2.438 -63.609 2.422 -63.514 2.331 -63.530 2.248 -63.545 2.240 -63.545 2.157 -63.572 2.142 -63.666 2.126 -63.760 2.060 -63.862 1.987 -63.955 1.995 -64.049 1.979 -64.143 1.896 -64.216 1.813 -64.215 1.722 -64.222 1.638 -64.248 1.565 -64.341 1.482 -64.434 1.399 -64.496 1.482 -64.515 1.497 -64.610 1.439 -64.703 1.356 -64.738 1.300 -64.841 1.285 -64.935 1.254 -65.028 1.213 -65.122 1.198 -65.148 1.174 -65.250 1.091 -65.304 1.008 -65.311 0.950 -65.404 0.901 -65.497 0.811 -65.542 0.728 -65.577 0.679 -65.670 0.770 -65.718 0.861 -65.665 0.944 -65.659 1.018 -65.755 1.018 -65.857 0.969 -65.951 0.919 -66.044 0.828 -66.126 0.812 -66.220 0.788 -66.313 0.788 -66.408 0.828 -66.512 0.911 -66.617 0.995 -66.713 1.085 -66.818 1.168 -66.914 1.242 -67.010 1.250 -67.019 1.250 -67.037 1.226 -67.140 1.234 -67.234 1.317 -67.236 1.409 -67.229 1.492 -67.213 1.575 -67.215 1.658 -67.225 1.741 -67.254 1.824 -67.301 1.915 -67.358 1.998 -67.424 2.082 -67.463 2.165 -67.559 2.142 -67.653 2.068 -67.746 1.985 -67.819 1.894 -67.882 1.811 -67.964 1.778 -68.067 1.811 -68.162 1.894 -68.210 1.985 -68.238 2.010 -68.342 1.927 -68.377 1.843 -68.367 1.761 -68.382 1.761 -69.513 1.791 -69.597 1.817 -69.692 1.768 -69.785 1.761 -69.889 1.745 -69.983 1.190 -69.970 1.099 -69.977 1.130 -69.894 1.099 -69.790 1.099 -69.498 1.074 -69.404 0.907 -69.268 0.824 -69.284 0.741 -69.282 0.658 -69.335 0.658 -69.353 0.691 -69.448 0.747 -69.543 0.754 -69.637 0.681 -69.730 0.696 -69.834 0.640 -69.927 0.640 -70.021 0.633 -70.125 0.567 -70.160 0.483 -70.167 0.128 -70.159 0.045 -70.166 -0.104 -70.167 -0.188 -70.115 -0.195 -70.115 -0.279 -70.022 -0.344 -69.929 -0.418 -69.828 -0.466 -69.734 -0.550 -69.719 -0.633 -69.712 -0.716 -69.731 -0.807 -69.687 -0.890 -69.643 -0.973 -69.570 -1.039 -69.572 -1.105 -69.527 -1.287 -69.513 -1.370 -69.570 -1.395 -69.580 -1.478 -69.590 -1.494 -69.590 -1.584 -69.610 -1.667 -69.621 -1.758 -69.640 -1.850 -69.651 -1.940 -69.671 -2.023 -69.682 -2.115 -69.701 -2.205 -69.712 -2.288 -69.731 -2.380 -69.742 -2.463 -69.762 -2.553 -69.772 -2.645 -69.792 -2.736 -69.803 -2.819 -69.822 -2.826 -69.823 -2.917 -69.833 -3.001 -69.852 -3.091 -69.863 -3.182 -69.874 -3.273 -69.894 -3.357 -69.905 -3.447 -69.924 -3.538 -69.935 -3.629 -69.946 -3.712 -69.965 -3.803 -69.976 -3.894 -69.995 -3.977 -70.006 -4.068 -70.026 -4.152 -70.045 -4.177 -70.055 -4.233 -70.065 -4.265 -70.092 -4.265 -70.118 -4.192 -70.211 -4.275 -70.287 -4.243 -70.304 -4.177 -70.397 -4.086 -70.470 -4.101 -70.574 -4.134 -70.669 -4.051 -70.722 -4.100 -70.817 -4.156 -70.913 -4.246 -70.990 -4.312 -71.095 -4.327 -71.198 -4.327 -71.293 -4.359 -71.397 -4.366 -71.491 -4.397 -71.587 -4.405 -71.681 -4.405 -71.839 -4.428 -71.943 -4.502 -72.048 -4.568 -72.153 -4.633 -72.249 -4.681 -72.353 -4.697 -72.448 -4.788 -72.468 -4.862 -72.564 -4.910 -72.668 -4.976 -72.764 -4.999 -72.859 -5.040 -72.965 -5.055 -72.974 -5.055 -72.983 -5.111 -72.960 -5.202 -72.965 -5.285 -72.995 -5.376 -73.027 -5.467 -73.014 -5.558 -73.027 -5.641 -73.078 -5.732 -73.146 -5.815 -73.206 -5.906 -73.248 -5.922 -73.267 -6.005 -73.289 -6.096 -73.238 -6.187 -73.217 -6.286 -73.185 -6.376 -73.207 -6.459 -73.267 -6.467 -73.371 -6.523 -73.477 -6.606 -73.585 -6.672 -73.691 -6.756 -73.780 -6.839 -73.821 -6.929 -73.835 -7.013 -73.857 -7.104 -73.807 -7.187 -73.765 -7.228 -73.871 -7.268 -73.968 -7.351 -73.990 -7.417 -74.049 ; #315 2 -1.540 -52.252 -1.484 -52.167 -1.476 -52.073 -1.418 -51.969 -1.344 -52.062 -1.393 -52.166 -1.458 -52.261 -1.542 -52.254 ; #316 2 -1.374 -51.957 -1.366 -51.928 -1.333 -51.825 -1.277 -51.729 -1.203 -51.625 -1.137 -51.529 -1.046 -51.453 -0.963 -51.397 -0.872 -51.312 -0.789 -51.293 -0.698 -51.263 -0.615 -51.215 -0.524 -51.222 -0.451 -51.316 -0.451 -51.418 -0.499 -51.514 -0.572 -51.609 -0.664 -51.686 -0.755 -51.696 -0.838 -51.715 -0.928 -51.708 -1.020 -51.747 -1.060 -51.850 -1.108 -51.946 -1.199 -51.939 -1.290 -51.975 -1.374 -51.959 ; #317 2 -0.768 -51.023 -0.809 -51.118 -0.900 -51.202 -0.983 -51.233 -0.934 -51.120 -0.851 -51.072 -0.768 -50.968 ; #318 2 -0.445 -51.160 -0.389 -51.132 -0.298 -51.093 -0.242 -50.990 -0.194 -51.092 -0.277 -51.148 -0.360 -51.178 -0.451 -51.162 ; #319 2 -0.859 -51.187 -0.785 -51.111 -0.694 -51.025 -0.612 -50.969 -0.563 -50.865 -0.480 -50.928 -0.528 -51.032 -0.602 -51.127 -0.693 -51.155 -0.776 -51.185 ; #320 2 -0.186 -50.900 -0.138 -50.845 -0.079 -50.741 0.012 -50.645 0.095 -50.673 0.087 -50.767 0.047 -50.870 0.021 -50.964 -0.070 -51.059 -0.153 -50.996 -0.186 -50.903 ; #321 2 -0.743 -50.985 -0.719 -50.938 -0.636 -50.880 -0.660 -50.983 ; #322 2 0.105 -50.945 0.056 -50.936 0.071 -50.870 0.105 -50.777 0.137 -50.751 0.170 -50.846 0.105 -50.947 ; #323 2 -1.366 -50.835 -1.457 -50.773 -1.548 -50.700 -1.697 -50.639 -1.712 -50.545 -1.727 -50.442 -1.703 -50.358 -1.671 -50.421 -1.671 -50.254 -1.631 -50.159 -1.646 -50.065 -1.639 -50.019 -1.687 -49.925 -1.679 -49.822 -1.588 -49.812 -1.679 -49.750 -1.613 -49.654 -1.530 -49.578 -1.439 -49.559 -1.530 -49.494 -1.507 -49.400 -1.522 -49.306 -1.474 -49.211 -1.458 -49.107 -1.418 -49.012 -1.362 -48.917 -1.279 -48.878 -1.188 -48.859 -1.105 -48.857 -1.097 -48.849 -1.024 -48.744 -0.932 -48.697 -0.849 -48.695 -0.783 -48.591 -0.693 -48.590 -0.610 -48.553 -0.526 -48.543 -0.435 -48.533 -0.352 -48.494 -0.261 -48.438 -0.170 -48.502 -0.162 -48.596 -0.138 -48.699 -0.145 -48.793 -0.120 -48.896 -0.104 -48.999 -0.072 -49.101 -0.056 -49.205 -0.033 -49.213 -0.066 -49.316 -0.081 -49.411 -0.164 -49.459 -0.149 -49.562 -0.157 -49.665 -0.141 -49.759 -0.118 -49.853 -0.102 -49.956 -0.079 -50.058 -0.054 -50.141 -0.046 -50.236 -0.031 -50.347 -0.023 -50.441 -0.056 -50.545 -0.122 -50.641 -0.205 -50.716 -0.296 -50.756 -0.387 -50.775 -0.470 -50.759 -0.561 -50.694 -0.602 -50.601 -0.602 -50.638 -0.570 -50.741 -0.555 -50.824 -0.638 -50.834 -0.654 -50.843 -0.737 -50.798 -0.753 -50.836 -0.836 -50.855 -0.926 -50.847 -1.010 -50.794 -1.018 -50.776 -0.994 -50.673 -0.946 -50.589 -0.962 -50.543 -1.002 -50.590 -1.093 -50.617 -1.078 -50.675 -1.045 -50.768 -1.045 -50.871 -1.135 -50.845 -1.219 -50.863 -1.310 -50.848 -1.383 -50.849 ; #324 2 0.105 -50.607 0.071 -50.541 0.105 -50.478 0.195 -50.497 0.278 -50.582 0.271 -50.685 0.188 -50.675 0.105 -50.610 ; #325 2 2.215 -50.549 2.298 -50.485 2.298 -50.579 2.215 -50.551 ; #326 2 1.973 -50.459 1.981 -50.459 2.054 -50.357 2.138 -50.396 2.229 -50.461 2.155 -50.555 2.072 -50.525 ; #327 2 0.105 -50.116 0.031 -50.040 0.031 -50.031 0.105 -49.938 0.112 -49.930 0.195 -49.876 0.261 -49.774 0.344 -49.681 0.435 -49.746 0.420 -49.840 0.412 -49.944 0.397 -50.046 0.364 -50.140 0.316 -50.234 0.323 -50.337 0.240 -50.430 0.157 -50.411 0.116 -50.316 0.116 -50.213 0.109 -50.118 ; #328 2 0.445 -50.301 0.485 -50.248 0.559 -50.154 0.658 -50.072 0.741 -50.149 0.691 -50.242 0.617 -50.344 0.526 -50.360 0.443 -50.304 ; #329 2 0.329 -50.291 0.344 -50.245 0.428 -50.143 0.420 -50.238 ; #330 2 0.844 -50.300 0.851 -50.216 0.884 -50.122 0.975 -50.106 0.983 -50.201 0.935 -50.303 0.844 -50.301 ; #331 2 1.027 -50.074 1.043 -50.048 1.066 -50.020 1.149 -50.050 1.109 -50.104 1.025 -50.074 ; #332 2 0.105 -49.806 0.081 -49.823 -0.010 -49.831 -0.050 -49.729 -0.035 -49.634 -0.027 -49.531 0.014 -49.436 0.105 -49.438 0.163 -49.514 0.178 -49.608 0.163 -49.711 0.105 -49.804 ; #333 2 -1.699 -49.021 -1.643 -49.003 -1.559 -48.975 -1.476 -48.965 -1.524 -49.060 -1.607 -49.107 -1.699 -49.026 ; #334 2 -1.060 -48.510 -1.076 -48.493 -1.116 -48.399 -1.093 -48.370 -1.010 -48.369 -0.977 -48.462 ; #335 2 -0.584 -47.749 -0.610 -47.741 -0.584 -47.695 -0.493 -47.748 ; #336 2 -26.213 -48.698 -26.221 -48.681 -26.287 -48.626 -26.213 -48.585 -26.130 -48.554 -26.047 -48.597 -26.130 -48.678 -26.213 -48.700 ; #337 2 -27.685 -48.599 -27.612 -48.540 -27.521 -48.507 -27.438 -48.456 -27.355 -48.433 -27.264 -48.476 -27.347 -48.575 -27.430 -48.550 -27.521 -48.591 -27.687 -48.599 ; #338 2 -0.917 -46.567 -0.909 -46.521 -0.826 -46.491 -0.834 -46.586 -0.917 -46.570 ; #339 2 -1.565 -44.824 -1.532 -44.720 -1.509 -44.823 ; #340 2 -2.962 -44.637 -2.879 -44.589 -2.788 -44.542 -2.704 -44.531 -2.621 -44.530 -2.695 -44.635 -2.786 -44.627 -2.869 -44.628 -2.952 -44.647 -2.960 -44.639 ; #341 2 -23.838 -45.268 -23.805 -45.246 -23.722 -45.294 -23.631 -45.266 -23.631 -45.363 -23.714 -45.428 -23.797 -45.466 -23.797 -45.369 ; #342 2 -2.246 -43.749 -2.163 -43.665 -2.188 -43.768 -2.244 -43.752 ; #343 2 -23.089 -44.352 -23.064 -44.252 -22.980 -44.147 -22.950 -44.241 -23.006 -44.352 ; #344 2 -13.449 -38.976 -13.358 -38.944 -13.275 -38.940 -13.275 -39.035 -13.358 -39.057 -13.441 -39.024 -13.449 -38.978 ; #345 2 -13.018 -38.820 -12.934 -38.721 -12.851 -38.632 -12.768 -38.703 -12.851 -38.707 -12.908 -38.776 -12.998 -38.828 -13.014 -38.820 ; #346 2 -12.917 -38.815 -12.917 -38.797 -12.910 -38.788 -12.917 -38.817 ; #347 2 -11.013 -37.178 -10.948 -37.128 -10.857 -37.097 -10.930 -37.136 ; #348 2 -7.648 -34.900 -7.705 -34.873 -7.622 -34.853 -7.646 -34.900 ; #349 2 7.707 -12.908 7.651 -12.936 7.626 -12.840 7.603 -12.737 7.570 -12.642 7.555 -12.547 7.645 -12.531 7.694 -12.606 7.727 -12.615 7.727 -12.719 7.711 -12.814 7.711 -12.908 ; #350 2 0.122 6.513 0.170 6.596 0.254 6.679 0.337 6.743 0.420 6.743 0.511 6.659 0.455 6.556 0.372 6.473 0.288 6.464 0.205 6.493 0.122 6.510 ; #351 2 -9.617 -35.876 -9.543 -35.949 -9.627 -35.885 -9.619 -35.876 ; #352 2 9.114 -13.332 9.031 -13.264 9.015 -13.169 8.942 -13.074 8.926 -13.168 8.919 -13.263 8.827 -13.279 8.744 -13.278 8.736 -13.269 8.653 -13.232 8.744 -13.196 8.712 -13.101 8.663 -13.091 8.678 -12.997 8.762 -12.924 8.678 -12.960 8.653 -12.913 8.646 -13.008 8.580 -13.101 8.524 -13.156 8.466 -13.080 8.516 -13.175 8.582 -13.280 8.491 -13.305 8.407 -13.229 8.317 -13.199 8.324 -13.104 8.340 -13.010 8.249 -12.991 8.166 -12.932 8.083 -12.931 7.999 -12.996 7.909 -12.911 7.909 -12.816 7.826 -12.786 7.785 -12.691 7.792 -12.588 7.876 -12.514 7.802 -12.548 7.719 -12.556 7.645 -12.460 7.661 -12.366 7.694 -12.272 7.694 -12.226 7.636 -12.319 7.621 -12.414 7.572 -12.516 7.498 -12.412 7.491 -12.403 7.506 -12.507 7.440 -12.402 7.400 -12.307 7.359 -12.212 7.326 -12.117 7.293 -12.013 7.260 -11.918 7.212 -11.823 7.156 -11.727 7.090 -11.623 7.098 -11.614 7.075 -11.623 7.034 -11.527 7.034 -11.499 7.125 -11.425 7.158 -11.417 7.241 -11.401 7.332 -11.327 7.365 -11.233 7.448 -11.176 7.514 -11.094 7.529 -11.085 7.603 -10.991 7.643 -10.897 7.659 -10.880 7.750 -10.806 7.833 -10.744 7.874 -10.650 8.131 -10.653 8.214 -10.570 8.240 -10.476 8.255 -10.382 8.338 -10.365 8.421 -10.337 8.512 -10.321 8.553 -10.313 8.586 -10.313 8.601 -10.377 8.535 -10.471 8.452 -10.534 8.419 -10.628 8.419 -10.723 8.371 -10.751 8.445 -10.752 8.535 -10.698 8.618 -10.670 8.702 -10.597 8.793 -10.532 8.876 -10.599 8.959 -10.635 9.050 -10.646 9.133 -10.618 9.148 -10.618 9.164 -10.713 9.255 -10.770 9.338 -10.715 9.429 -10.734 9.478 -10.838 9.561 -10.875 9.644 -10.904 9.735 -10.969 9.818 -11.017 9.901 -11.093 9.957 -11.189 10.040 -11.199 10.081 -11.303 10.081 -11.908 9.998 -12.001 9.974 -12.104 9.967 -12.141 9.990 -12.236 10.006 -12.340 9.980 -12.443 9.940 -12.538 9.857 -12.536 9.773 -12.599 9.717 -12.616 9.634 -12.681 9.543 -12.706 9.460 -12.779 9.377 -12.833 9.361 -12.928 9.271 -12.964 9.271 -12.993 9.180 -13.047 9.129 -13.141 9.162 -13.244 9.122 -13.319 ; #353 2 45.175 6.663 45.152 6.693 45.067 6.778 45.007 6.789 44.976 6.831 44.935 6.947 44.884 7.054 44.799 7.106 44.768 7.097 44.735 6.992 44.676 6.974 44.585 6.902 44.500 6.923 44.443 6.933 44.410 6.963 44.326 7.070 44.300 7.185 44.251 7.291 44.218 7.396 44.218 7.501 44.251 7.605 44.259 7.710 44.175 7.740 44.152 7.741 44.068 7.659 43.983 7.555 43.884 7.557 43.868 7.566 43.868 7.671 43.894 7.785 43.917 7.889 43.925 7.950 43.966 8.055 44.024 8.159 44.041 8.200 44.125 8.260 44.132 8.260 44.216 8.300 44.257 8.405 44.298 8.445 44.383 8.506 44.408 8.538 44.449 8.652 44.465 8.681 44.506 8.786 44.490 8.891 44.465 8.996 44.449 9.111 44.393 9.216 44.408 9.321 44.334 9.426 44.293 9.531 44.293 9.540 44.226 9.645 44.175 9.750 44.191 9.855 44.150 9.938 44.134 10.031 44.126 10.050 44.126 10.070 44.052 10.175 43.995 10.236 43.911 10.277 43.870 10.286 43.855 10.296 43.771 10.296 43.686 10.305 43.635 10.315 43.551 10.375 43.467 10.445 43.375 10.519 43.291 10.547 43.207 10.547 43.123 10.537 43.039 10.556 43.046 10.626 43.023 10.740 42.957 10.771 42.872 10.831 42.839 10.935 42.755 11.017 42.731 11.077 42.647 11.168 42.563 11.178 42.479 11.136 42.512 11.240 42.497 11.344 42.473 11.457 42.465 11.476 42.424 11.580 42.340 11.683 42.256 11.742 42.189 11.771 42.189 11.780 42.131 11.818 42.131 11.932 42.064 12.034 42.015 12.137 41.931 12.196 41.847 12.224 41.839 12.243 41.798 12.346 41.724 12.448 41.698 12.477 41.614 12.558 41.565 12.660 41.524 12.763 41.524 12.782 41.498 12.885 41.414 12.987 41.330 13.036 41.371 13.140 41.397 13.243 41.389 13.346 41.348 13.458 41.315 13.560 41.364 13.612 41.348 13.724 41.332 13.734 41.317 13.774 41.225 13.854 41.141 13.902 41.133 13.902 41.049 13.982 41.025 14.000 40.992 14.018 40.935 14.120 40.943 14.223 40.910 14.325 40.861 14.437 40.777 14.385 40.692 14.323 40.734 14.426 40.734 14.486 40.757 14.599 40.783 14.703 40.749 14.804 40.665 14.884 40.581 14.922 40.497 14.970 40.405 14.917 40.321 14.974 40.280 15.023 40.264 15.125 40.198 15.226 40.113 15.326 40.113 15.395 40.121 15.405 40.188 15.510 40.162 15.611 40.113 15.650 40.047 15.720 40.015 15.738 39.932 15.754 39.849 15.771 39.765 15.810 39.674 15.836 39.590 15.924 39.507 15.971 39.423 16.009 39.256 16.024 39.173 16.052 39.166 16.062 39.091 16.109 39.008 16.176 38.925 16.173 38.841 16.091 38.849 15.989 38.808 15.886 38.725 15.825 38.641 15.882 38.633 15.882 38.550 15.839 38.466 15.787 38.383 15.695 38.317 15.592 38.234 15.590 38.150 15.597 38.059 15.675 38.044 15.776 38.051 15.877 38.051 15.979 38.125 16.082 38.216 16.116 38.300 16.177 38.383 16.248 38.442 16.361 38.490 16.464 38.573 16.538 38.607 16.539 38.697 16.522 38.781 16.506 38.864 16.508 38.948 16.601 38.997 16.704 39.037 16.807 39.053 16.909 39.037 17.011 39.070 17.114 39.154 17.126 39.237 17.079 39.321 17.113 39.353 17.083 39.437 17.076 39.528 17.079 39.594 16.979 39.618 16.908 39.666 16.808 39.732 16.698 39.732 16.596 39.773 16.495 39.856 16.447 39.940 16.469 40.023 16.540 40.107 16.562 40.140 16.554 40.233 16.598 40.233 16.608 40.317 16.692 40.332 16.692 40.416 16.736 40.501 16.820 40.534 16.853 40.608 16.958 40.624 17.062 40.593 17.163 40.593 17.172 40.608 17.214 40.583 17.222 40.583 17.182 40.567 17.190 40.511 17.188 40.470 17.299 40.436 17.400 40.411 17.502 40.418 17.605 40.411 17.717 40.411 17.726 40.377 17.837 40.293 17.874 40.286 17.883 40.202 17.960 40.109 17.966 40.109 17.947 40.101 17.946 40.017 18.024 39.959 18.124 39.936 18.234 39.944 18.337 40.027 18.341 40.111 18.376 40.178 18.429 40.270 18.443 40.354 18.406 40.438 18.329 40.522 18.230 40.589 18.121 40.647 18.020 40.671 17.990 40.763 17.904 40.794 17.855 40.820 17.753 40.869 17.652 40.902 17.541 40.935 17.440 41.103 17.190 41.152 17.089 41.193 16.978 41.219 16.876 41.242 16.774 41.284 16.673 41.309 16.561 41.350 16.459 41.383 16.357 41.467 16.153 41.483 16.092 41.516 15.990 41.573 15.888 41.657 15.841 41.741 15.906 41.790 16.011 41.857 16.116 41.941 16.139 42.025 16.038 42.040 15.935 42.025 15.831 42.017 15.727 42.017 15.510 42.001 15.406 42.009 15.303 42.017 15.200 42.025 15.087 42.033 15.056 42.100 14.954 42.107 14.923 42.123 14.810 42.164 14.708 42.197 14.667 42.289 14.600 42.330 14.497 42.389 14.407 42.473 14.317 42.530 14.215 42.614 14.103 42.673 14.054 42.757 13.974 42.765 13.974 42.849 13.925 42.897 13.895 42.990 13.865 43.005 13.856 43.089 13.816 43.173 13.808 43.258 13.759 43.299 13.741 43.383 13.702 43.398 13.692 43.439 13.674 43.524 13.624 43.565 13.596 43.649 13.556 43.690 13.452 43.723 13.349 43.765 13.245 43.831 13.132 43.839 13.132 43.905 13.029 43.964 12.925 44.005 12.821 44.046 12.717 44.062 12.644 44.146 12.541 44.220 12.437 44.305 12.346 44.338 12.326 44.430 12.286 44.514 12.258 44.598 12.249 44.682 12.250 44.690 12.241 44.739 12.221 44.797 12.222 44.882 12.243 44.905 12.263 44.857 12.367 44.872 12.387 44.898 12.429 44.982 12.482 45.023 12.502 45.057 12.419 45.106 12.368 45.132 12.263 45.225 12.284 45.267 12.233 45.275 12.182 45.324 12.163 45.340 12.122 45.356 12.122 45.372 12.132 45.356 12.141 45.356 12.152 45.431 12.214 45.516 12.234 45.525 12.244 45.540 12.277 45.556 12.392 45.572 12.498 45.514 12.391 45.514 12.466 45.548 12.572 45.580 12.678 45.606 12.730 45.647 12.836 45.689 12.952 45.697 13.058 45.731 13.101 45.816 13.132 45.800 13.237 45.784 13.321 45.776 13.350 45.735 13.349 45.761 13.424 45.836 13.531 45.812 13.592 45.737 13.696 45.651 13.675 45.643 13.758 45.659 13.832 45.675 13.852 45.750 13.803 45.759 13.803 45.774 13.784 45.774 13.773 45.824 13.669 45.857 13.564 45.866 13.554 45.881 13.545 45.975 13.579 45.982 13.589 46.016 13.496 46.102 13.456 46.135 13.518 46.220 13.626 46.228 13.575 46.270 13.469 46.319 13.354 46.405 13.431 46.472 13.538 46.488 13.644 46.563 13.676 46.579 13.605 46.579 13.595 46.587 13.563 46.603 13.457 46.611 13.351 46.595 13.244 46.619 13.138 46.635 13.022 46.643 12.916 46.643 12.822 46.676 12.706 46.692 12.632 46.692 12.561 46.718 12.455 46.718 12.445 46.767 12.339 46.776 12.339 46.783 12.330 46.791 12.330 46.877 12.266 46.936 12.161 47.021 12.100 47.107 12.195 47.115 12.101 47.089 12.017 47.065 11.910 47.031 11.792 47.023 11.686 47.039 11.579 47.039 11.462 47.047 11.453 47.015 11.346 47.015 11.239 46.982 11.122 46.896 11.047 46.811 10.962 46.803 10.846 46.819 10.804 46.868 10.698 46.894 10.591 46.886 10.475 46.902 10.443 46.827 10.401 46.742 10.390 46.656 10.452 46.571 10.432 46.571 10.412 46.579 10.306 46.664 10.212 46.649 10.106 46.563 10.031 46.470 10.021 46.428 10.137 46.343 10.108 46.258 10.088 46.315 9.982 46.315 9.972 46.401 9.930 46.401 9.824 46.385 9.717 46.351 9.708 46.325 9.602 46.367 9.485 46.442 9.443 46.527 9.411 46.536 9.304 46.527 9.265 46.442 9.266 46.349 9.275 46.264 9.224 46.207 9.140 46.147 9.069 46.054 8.996 46.046 9.006 46.038 9.016 45.963 9.046 45.877 9.017 45.851 9.007 45.868 8.901 45.943 8.901 46.002 8.836 46.018 8.784 46.044 8.784 46.137 8.744 46.137 8.712 46.129 8.692 46.129 8.682 46.179 8.588 46.220 8.536 46.314 8.429 46.399 8.458 46.484 8.373 46.417 8.299 46.341 8.194 46.308 8.088 46.222 8.141 46.173 8.132 46.113 8.027 46.028 7.956 45.953 7.851 45.953 7.787 45.984 7.681 46.010 7.574 46.018 7.564 45.976 7.459 45.953 7.353 45.937 7.248 45.921 7.142 45.963 7.026 45.955 7.007 45.887 6.902 45.812 6.788 45.812 6.798 45.719 6.883 45.685 6.967 45.600 6.979 45.514 7.073 45.439 7.158 45.354 7.108 45.261 7.059 45.237 6.944 45.186 6.893 45.194 6.778 45.186 6.673 45.162 6.632 45.146 6.612 ; #354 2 42.753 10.415 42.827 10.425 42.911 10.416 42.862 10.311 42.854 10.207 42.821 10.093 42.780 10.197 42.788 10.311 42.757 10.415 ; #355 2 -17.109 11.860 -17.200 11.852 -17.284 11.834 -17.374 11.826 -17.457 11.835 -17.549 11.844 -17.632 11.844 -17.722 11.862 -17.806 11.872 -17.889 11.901 -17.972 11.936 -18.063 12.013 -18.230 12.109 -18.320 12.127 -18.403 12.203 -18.477 12.299 -18.560 12.404 -18.644 12.460 -18.727 12.527 -18.810 12.566 -18.893 12.622 -18.916 12.640 -18.999 12.687 -19.082 12.717 -19.173 12.781 -19.257 12.800 -19.307 12.827 -19.390 12.865 -19.556 12.961 -19.639 13.018 -19.731 13.065 -19.814 13.112 -19.846 13.113 -19.930 13.151 -20.013 13.256 -20.096 13.286 -20.187 13.314 -20.270 13.323 -20.354 13.359 -20.444 13.407 -20.527 13.445 -20.611 13.455 -20.702 13.473 -20.768 13.530 -20.851 13.595 -20.934 13.625 -21.025 13.690 -21.033 13.699 -21.199 13.815 -21.282 13.891 -21.373 13.928 -21.456 13.957 -21.489 13.987 -21.580 14.035 -21.663 14.071 -21.746 14.157 -21.829 14.234 -21.913 14.300 -21.929 14.317 -22.019 14.354 -22.102 14.422 -22.186 14.470 -22.269 14.498 -22.352 14.545 -22.435 14.564 -22.526 14.574 -22.518 14.592 -22.518 14.630 -22.478 14.726 -22.568 14.718 -22.826 14.720 -22.909 14.739 -23.000 14.757 -23.041 14.767 -23.025 14.670 -23.010 14.574 -22.984 14.497 -23.076 14.527 -23.159 14.545 -23.242 14.481 -23.325 14.500 -23.416 14.538 -23.499 14.539 -23.590 14.531 -23.673 14.561 -23.756 14.544 -23.840 14.506 -23.923 14.507 -24.014 14.526 -24.097 14.554 -24.180 14.602 -24.271 14.640 -24.354 14.650 -24.437 14.669 -24.521 14.746 -24.611 14.794 -24.694 14.834 -24.786 14.835 -24.834 14.873 -24.917 14.892 -25.008 14.875 -25.091 14.847 -25.174 14.848 -25.266 14.878 -25.349 14.909 -25.432 14.901 -25.523 14.884 -25.606 14.894 -25.689 14.951 -25.780 14.962 -25.863 15.010 -25.946 15.021 -26.037 15.004 -26.128 14.996 -26.211 15.094 -26.227 15.124 -26.318 15.172 -26.401 15.192 -26.467 15.184 -26.550 15.137 -26.633 15.168 -26.716 15.197 -26.799 15.274 -26.890 15.285 -27.057 15.305 -27.140 15.325 -27.231 15.392 -27.314 15.450 -27.397 15.499 -27.488 15.559 -27.571 15.569 -27.655 15.657 -27.738 15.706 -27.829 15.755 -27.912 15.854 -27.995 15.933 -28.061 16.041 -28.227 16.200 -28.250 16.237 -28.334 16.325 -28.417 16.424 -28.401 16.511 -28.376 16.549 -28.320 16.645 -28.312 16.752 -28.229 16.789 -28.146 16.797 -28.055 16.825 -27.972 16.901 -27.881 16.986 -27.858 17.083 -27.931 17.181 -27.981 17.201 -28.065 17.271 -28.088 17.369 -28.179 17.409 -28.262 17.372 -28.345 17.374 -28.436 17.424 -28.519 17.503 -28.511 17.601 -28.603 17.661 -28.577 17.709 -28.577 17.807 -28.603 17.914 -28.651 18.013 -28.707 18.112 -28.715 18.219 -28.699 18.317 -28.715 18.415 -28.707 18.513 -28.674 18.610 -28.658 18.717 -28.674 18.815 -28.682 18.914 -28.748 19.013 -28.780 19.121 -28.740 19.218 -28.715 19.304 -28.632 19.254 -28.541 19.308 -28.549 19.377 -28.517 19.474 -28.434 19.511 -28.351 19.574 -28.343 19.604 -28.336 19.702 -28.320 19.799 -28.254 19.904 -28.246 20.002 -28.206 20.001 -28.115 20.007 -27.866 20.001 -27.767 20.007 -27.477 19.999 -27.386 20.006 -27.155 19.999 -27.057 20.006 -26.767 19.998 -26.675 20.005 -26.453 19.999 -26.355 20.005 -26.072 19.998 -25.973 20.004 -25.633 19.995 -25.625 20.004 -25.310 19.995 -25.219 20.002 -24.846 19.993 -24.730 20.000 -24.348 19.993 -24.232 20.000 -23.851 19.992 -23.710 19.999 -23.321 19.992 -23.223 19.999 -22.725 19.990 -22.634 19.996 -22.170 19.988 -22.079 19.995 -21.857 19.991 -21.857 20.991 -21.806 20.990 -21.675 20.996 -21.377 20.990 -21.268 20.996 -20.864 20.988 -20.731 20.994 -20.418 20.988 -20.319 20.995 -19.582 20.981 -19.491 20.988 -19.044 20.980 -18.953 20.988 -18.597 20.982 -18.506 20.989 -18.198 20.983 -18.191 21.222 -18.183 21.451 -18.125 21.755 -18.125 21.773 -18.084 21.991 -18.036 22.248 -17.995 22.485 -17.972 22.617 -17.906 22.987 -17.891 23.082 -17.891 23.274 -17.974 23.323 -18.057 23.380 -18.123 23.477 -18.206 23.537 -18.289 23.548 -18.373 23.587 -18.317 23.691 -18.226 23.773 -18.152 23.867 -18.069 23.921 -18.028 24.025 -17.980 24.120 -17.897 24.213 -17.881 24.309 -17.858 24.404 -17.941 24.462 -17.933 24.557 -17.850 24.631 -17.810 24.695 -17.744 24.789 -17.719 24.884 -17.726 24.969 -17.726 25.074 -17.686 25.168 -17.701 25.235 -17.653 25.158 -17.570 25.061 -17.487 24.974 -17.461 24.947 -17.436 24.862 -17.421 24.766 -17.396 24.670 -17.436 24.566 -17.405 24.470 -17.380 24.373 -17.380 24.220 -17.396 24.116 -17.421 24.011 -17.436 23.916 -17.451 23.812 -17.475 23.708 -17.491 23.613 -17.506 23.509 -17.521 23.453 -17.537 23.358 -17.552 23.262 -17.568 23.167 -17.591 23.063 -17.606 22.959 -17.622 22.863 -17.647 22.759 -17.662 22.664 -17.678 22.560 -17.694 22.455 -17.719 22.360 -17.734 22.256 -17.750 22.160 -17.765 22.056 -17.788 21.951 -17.804 21.856 -17.819 21.752 -17.819 21.743 -17.835 21.639 -17.858 21.534 -17.873 21.439 -17.881 21.363 -17.833 21.267 -17.808 21.170 -17.800 21.153 -17.823 21.057 -17.831 20.953 -17.879 20.858 -17.879 20.762 -17.854 20.666 -17.846 20.570 -17.806 20.474 -17.758 20.377 -17.732 20.281 -17.740 20.186 -17.765 20.081 -17.758 19.985 -17.732 19.901 -17.732 19.796 -17.740 19.700 -17.732 19.604 -17.732 19.404 -17.699 19.308 -17.676 19.232 -17.676 19.127 -17.699 19.032 -17.684 18.936 -17.643 18.831 -17.595 18.725 -17.521 18.629 -17.438 18.552 -17.355 18.515 -17.264 18.447 -17.264 17.473 -17.272 17.378 -17.272 17.177 -17.264 17.073 -17.264 14.199 -17.305 14.104 -17.289 13.999 -17.297 13.990 -17.224 13.894 -17.175 13.789 -17.125 13.693 -17.051 13.597 -16.960 13.521 -16.877 13.425 -16.854 13.340 -16.862 13.245 -16.836 13.149 -16.852 13.054 -16.893 12.949 -16.949 12.854 -17.007 12.758 -17.105 12.567 -17.121 12.463 -17.105 12.368 -17.098 12.272 -17.032 12.176 -17.017 12.071 -17.024 12.054 -17.057 11.950 -17.105 11.854 -17.131 11.749 ; #356 2 36.792 11.998 36.858 12.027 36.873 11.926 36.790 11.996 ; #357 2 -5.653 12.158 -5.736 12.204 -5.827 12.299 -5.910 12.363 -5.885 12.466 -5.862 12.560 -5.829 12.664 -5.738 12.710 -5.705 12.813 -5.705 12.908 -5.738 13.002 -5.746 13.020 -5.738 13.114 -5.753 13.217 -5.753 13.312 -5.738 13.338 -5.738 13.451 -5.746 13.545 -5.746 13.648 -5.738 13.743 -5.730 13.838 -5.738 13.941 -5.746 14.036 -5.746 14.139 -5.761 14.233 -5.776 14.328 -5.776 14.497 -5.769 14.592 -5.761 14.695 -5.761 14.732 -5.753 14.835 -5.746 14.930 -5.746 15.354 -5.738 15.449 -5.738 15.552 -5.753 15.741 -5.746 15.836 -5.746 16.034 -5.738 16.071 -5.738 16.269 -5.778 16.372 -5.763 16.407 -5.788 16.502 -5.788 16.511 -5.796 16.520 -5.887 16.529 -5.902 16.529 -5.993 16.567 -6.077 16.651 -6.150 16.642 -6.233 16.625 -6.316 16.643 -6.399 16.681 -6.491 16.690 -6.574 16.719 -6.581 16.737 -6.664 16.755 -6.756 16.838 -6.839 16.848 -6.922 16.885 -7.005 16.857 -7.096 16.875 -7.179 16.922 -7.253 17.017 -7.319 17.092 -7.401 17.110 -7.485 17.185 -7.533 17.203 -7.616 17.232 -7.700 17.307 -7.783 17.353 -7.866 17.409 -7.957 17.447 -7.972 17.542 -7.932 17.636 -7.947 17.740 -7.914 17.834 -7.980 17.929 -7.980 18.024 -7.897 18.023 -7.897 18.032 -7.864 18.127 -7.872 18.222 -7.864 18.325 -7.864 18.419 -7.798 18.523 -7.806 18.569 -7.798 18.672 -7.872 18.699 -7.872 19.274 -7.815 19.264 -7.732 19.264 -7.642 19.292 -7.558 19.309 -7.533 19.300 -7.442 19.282 -7.442 19.377 -7.359 19.431 -7.276 19.422 -7.185 19.393 -7.102 19.410 -7.019 19.409 -6.927 19.466 -6.879 19.448 -6.879 20.222 -6.788 20.239 -6.788 20.532 -6.821 20.523 -6.905 20.495 -6.988 20.450 -7.071 20.442 -7.162 20.442 -7.162 21.595 -7.154 21.690 -7.177 21.708 -7.268 21.745 -7.351 21.764 -7.435 21.756 -7.518 21.728 -7.601 21.702 -7.684 21.685 -7.775 21.677 -7.858 21.660 -7.949 21.716 -8.032 21.762 -8.116 21.772 -8.206 21.810 -8.239 21.810 -8.323 21.840 -8.406 21.840 -8.496 21.812 -8.580 21.795 -8.663 21.787 -8.754 21.770 -8.837 21.762 -8.903 21.753 -8.994 21.745 -9.052 21.763 -9.135 21.747 -9.226 21.721 -9.309 21.721 -9.400 21.740 -9.483 21.758 -9.567 21.823 -9.657 21.898 -9.740 21.954 -9.781 22.049 -9.864 22.076 -9.880 22.085 -9.963 22.103 -10.054 22.122 -10.137 22.161 -10.220 22.208 -10.304 22.183 -10.394 22.192 -10.477 22.202 -10.543 22.212 -10.559 22.221 -10.632 22.204 -10.665 22.110 -10.756 22.074 -10.839 22.093 -10.923 22.140 -11.006 22.150 -11.089 22.142 -11.104 22.133 -11.104 22.191 -11.031 22.285 -10.990 22.379 -10.975 22.387 -10.891 22.461 -10.940 22.566 -10.948 22.661 -10.907 22.755 -10.957 22.860 -10.957 22.963 -10.932 23.058 -10.907 23.153 -10.851 23.247 -10.826 23.341 -10.833 23.445 -10.865 23.540 -10.857 23.635 -10.882 23.730 -10.816 23.833 -10.733 23.878 -10.733 23.924 -10.799 24.020 -10.889 24.022 -10.897 24.126 -10.913 24.221 -10.996 24.277 -11.079 24.305 -11.170 24.280 -11.253 24.206 -11.277 24.301 -11.317 24.397 -11.251 24.500 -11.193 24.594 -11.178 24.697 -11.145 24.800 -11.130 24.895 -11.122 24.941 -11.114 25.045 -11.091 25.139 -11.083 25.234 -11.166 25.198 -11.249 25.191 -11.333 25.229 -11.424 25.222 -11.507 25.269 -11.548 25.365 -11.613 25.461 -11.598 25.565 -11.663 25.661 -11.648 25.756 -11.721 25.860 -11.762 25.956 -11.762 26.060 -11.787 26.156 -11.779 26.250 -11.779 26.355 -11.830 26.439 -11.845 26.534 -11.845 26.638 -11.837 26.733 -11.779 26.836 -11.696 26.881 -11.613 26.888 -11.530 26.924 -11.447 26.986 -11.431 27.081 -11.431 27.090 -11.514 27.109 -11.606 27.111 -11.689 27.168 -11.755 27.272 -11.837 27.358 -11.921 27.377 -12.004 27.408 -12.095 27.473 -12.161 27.579 -12.153 27.673 -12.112 27.739 -12.163 27.835 -12.229 27.931 -12.287 28.027 -12.294 28.123 -12.294 28.218 -12.302 28.218 -12.310 28.244 -12.400 28.330 -12.484 28.370 -12.567 28.380 -12.650 28.399 -12.708 28.495 -12.693 28.504 -12.758 28.609 -12.842 28.686 -12.867 28.695 -12.958 28.735 -13.041 28.792 -13.124 28.820 -13.215 28.831 -13.240 28.927 -13.240 28.973 -13.288 29.069 -13.230 29.163 -13.182 29.257 -13.141 29.352 -13.075 29.454 -13.132 29.550 -13.215 29.486 -13.298 29.563 -13.290 29.666 -13.025 29.661 -12.942 29.668 -12.586 29.660 -12.496 29.667 -12.279 29.663 -12.188 29.669 -12.014 29.665 -12.014 29.648 -12.054 29.554 -12.070 29.499 -12.078 29.404 -12.161 29.322 -12.244 29.341 -12.275 29.247 -12.251 29.151 -12.227 29.056 -12.227 28.952 -12.161 28.856 -12.078 28.808 -11.986 28.711 -11.903 28.634 -11.837 28.604 -11.822 28.499 -11.731 28.414 -11.648 28.317 -11.565 28.307 -11.482 28.279 -11.399 28.231 -11.307 28.229 -11.224 28.291 -11.168 28.299 -11.153 28.298 -11.070 28.335 -10.986 28.341 -10.895 28.368 -10.812 28.393 -10.722 28.409 -10.638 28.454 -10.555 28.527 -10.464 28.517 -10.381 28.489 -10.298 28.504 -10.207 28.474 -10.124 28.464 -10.041 28.462 -9.949 28.489 -9.866 28.488 -9.783 28.496 -9.700 28.524 -9.617 28.523 -9.526 28.484 -9.443 28.446 -9.352 28.427 -9.268 28.380 -9.253 28.388 -9.245 28.388 -9.205 28.341 -9.164 28.246 -9.081 28.300 -9.032 28.394 -8.959 28.488 -8.876 28.582 -8.793 28.656 -8.709 28.729 -8.626 28.784 -8.535 28.820 -8.452 28.810 -8.361 28.763 -8.346 28.858 -8.330 28.952 -8.315 29.047 -8.299 29.150 -8.291 29.244 -8.276 29.339 -8.261 29.442 -8.253 29.471 -8.245 29.574 -8.229 29.668 -8.214 29.763 -8.199 29.866 -8.191 29.941 -8.175 30.044 -8.160 30.139 -8.144 30.233 -8.129 30.337 -8.121 30.431 -8.114 30.440 -8.106 30.534 -8.090 30.629 -8.032 30.611 -7.941 30.583 -7.858 30.553 -7.775 30.515 -7.684 30.450 -7.601 30.394 -7.518 30.346 -7.435 30.308 -7.343 30.298 -7.260 30.279 -7.177 30.252 -7.086 30.213 -7.003 30.157 -6.912 30.098 -6.829 30.034 -6.746 29.938 -6.705 29.882 -6.674 29.808 -6.608 29.703 -6.525 29.608 -6.442 29.569 -6.359 29.542 -6.276 29.474 -6.192 29.427 -6.101 29.418 -6.018 29.399 -5.935 29.380 -5.844 29.388 -5.761 29.453 -5.678 29.507 -5.595 29.506 -5.511 29.487 -5.420 29.457 -5.338 29.410 -5.254 29.391 -5.171 29.362 -5.080 29.332 -4.997 29.285 -4.906 29.249 -4.873 29.241 -4.790 29.231 -4.699 29.231 -4.616 29.259 -4.532 29.296 -4.442 29.321 -4.359 29.313 -4.275 29.294 -4.184 29.285 -4.101 29.285 -4.018 29.258 -3.935 29.220 -3.852 29.145 -3.761 29.127 -3.678 29.126 -3.586 29.144 -3.420 29.143 -3.337 29.133 -3.254 29.115 -3.231 29.106 -3.190 29.133 -3.174 29.123 -3.091 29.115 -3.001 29.141 -2.917 29.056 -2.834 28.981 -2.751 28.953 -2.660 28.926 -2.612 28.888 -2.579 28.813 -2.495 28.795 -2.412 28.786 -2.397 28.786 -2.331 28.768 -2.283 28.862 -2.200 28.936 -2.134 29.039 -2.051 29.076 -1.960 29.067 -1.876 29.038 -1.793 29.037 -1.710 29.074 -1.619 29.137 -1.603 29.146 -1.520 29.229 -1.430 29.303 -1.374 29.397 -1.315 29.500 -1.184 29.499 -1.093 29.472 -1.020 29.490 -0.936 29.472 -0.863 29.471 -0.772 29.526 -0.689 29.516 -0.673 29.516 -0.590 29.525 -0.507 29.570 -0.416 29.552 -0.333 29.551 -0.242 29.569 -0.226 29.569 -0.143 29.577 -0.095 29.586 -0.012 29.603 0.062 29.620 0.110 29.603 0.135 29.612 0.219 29.707 0.310 29.725 0.393 29.743 0.483 29.798 0.549 29.845 0.633 29.836 0.807 29.837 0.890 29.856 0.898 29.873 0.905 29.882 0.946 29.985 1.019 30.080 1.085 30.107 1.168 30.116 1.202 30.191 1.250 30.294 1.283 30.360 1.366 30.435 1.381 30.445 1.472 30.509 1.555 30.584 1.629 30.687 1.712 30.791 1.786 30.886 1.877 30.961 1.967 31.036 2.026 31.082 2.116 31.149 2.200 31.176 2.215 31.158 2.248 31.112 2.321 31.010 2.395 30.916 2.418 30.898 2.387 30.803 2.436 30.701 2.519 30.617 2.610 30.636 2.701 30.663 2.733 30.681 2.817 30.727 2.900 30.745 2.933 30.754 3.016 30.709 3.099 30.634 3.183 30.670 3.266 30.699 3.356 30.745 3.440 30.801 3.523 30.727 3.563 30.718 3.647 30.664 3.672 30.570 3.639 30.466 3.647 30.429 3.730 30.458 3.813 30.440 3.904 30.424 3.912 30.320 3.962 30.226 3.977 30.172 4.033 30.068 4.117 30.034 4.167 29.931 4.250 29.876 4.291 29.822 4.374 29.776 4.423 29.682 4.513 29.691 4.604 29.637 4.653 29.543 4.686 29.439 4.670 29.345 4.579 29.315 4.496 29.251 4.413 29.157 4.405 29.054 4.479 28.959 4.504 28.865 4.504 28.762 4.577 28.668 4.511 28.573 4.438 28.478 4.382 28.383 4.308 28.288 4.308 28.271 4.382 28.177 4.382 28.073 4.465 28.019 4.506 27.916 4.589 27.870 4.581 27.767 4.647 27.673 4.730 27.673 4.813 27.590 4.838 27.590 4.921 27.544 4.937 27.450 5.020 27.376 5.036 27.348 5.119 27.254 5.160 27.151 5.208 27.057 5.224 26.954 5.175 26.859 5.084 26.774 5.084 26.680 5.107 26.586 5.092 26.491 5.067 26.396 5.150 26.294 5.158 26.200 5.206 26.106 5.254 26.003 5.214 25.908 5.214 25.719 5.270 25.616 5.320 25.562 5.386 25.468 5.371 25.373 5.330 25.278 5.247 25.231 5.164 25.248 5.072 25.218 5.022 25.123 5.015 25.086 5.015 25.060 5.022 25.051 5.015 25.016 4.981 24.921 4.997 24.904 4.981 24.800 4.951 24.706 4.943 24.611 5.009 24.517 5.017 24.517 5.100 24.415 5.115 24.377 5.123 24.283 5.032 24.273 5.017 24.227 5.017 24.198 4.968 24.095 4.943 24.000 4.895 23.905 4.838 23.811 4.846 23.793 4.831 23.699 4.798 23.596 4.765 23.501 4.699 23.406 4.616 23.312 4.641 23.208 4.707 23.114 4.755 23.050 4.763 22.956 4.846 22.891 4.838 22.796 4.755 22.769 4.740 22.741 4.666 22.646 4.651 22.637 4.567 22.608 4.511 22.514 4.421 22.504 4.338 22.467 4.254 22.449 4.188 22.374 4.181 22.365 4.165 22.339 4.157 22.244 4.183 22.141 4.223 22.047 4.238 22.038 4.254 21.955 4.262 21.860 4.285 21.766 4.318 21.672 4.326 21.568 4.278 21.473 4.293 21.370 4.293 21.324 4.341 21.230 4.316 21.135 4.357 21.041 4.440 20.938 4.465 20.844 4.473 20.749 4.447 20.655 4.440 20.551 4.473 20.457 4.547 20.374 4.630 20.374 4.720 20.308 4.804 20.214 4.869 20.120 4.925 20.016 4.991 19.922 4.999 19.922 4.999 19.896 5.015 19.813 5.080 19.784 5.128 19.690 5.154 19.587 5.162 19.493 5.146 19.398 5.115 19.294 5.042 19.200 5.042 19.182 5.017 19.156 4.960 19.061 4.953 19.032 4.869 18.977 4.786 18.939 4.695 18.864 4.612 18.781 4.445 18.706 4.390 18.603 4.390 18.499 4.341 18.470 4.258 18.525 4.175 18.554 4.084 18.571 4.001 18.571 3.918 18.544 3.892 18.544 3.809 18.526 3.701 18.526 3.670 18.535 3.587 18.543 3.513 18.552 3.422 18.560 3.339 18.569 3.256 18.569 3.165 18.542 3.109 18.476 3.076 18.459 2.985 18.421 2.894 18.375 2.811 18.348 2.771 18.340 2.679 18.293 2.654 18.284 2.564 18.190 2.548 18.181 2.464 18.163 2.381 18.117 2.298 18.051 2.207 18.042 2.124 18.024 2.041 18.024 2.000 18.033 1.909 18.004 1.826 18.013 1.735 18.021 1.652 18.021 1.569 18.012 1.486 17.985 1.403 17.948 1.319 17.930 1.312 17.930 1.271 17.912 1.180 17.886 1.097 17.828 0.983 17.828 0.892 17.846 0.851 17.854 0.768 17.846 0.677 17.845 0.586 17.882 0.503 17.908 0.420 17.899 0.404 17.899 0.321 17.836 0.238 17.770 0.147 17.743 0.064 17.714 0.056 17.714 -0.035 17.686 -0.118 17.659 -0.201 17.660 -0.267 17.686 -0.350 17.686 -0.433 17.678 -0.482 17.660 -0.565 17.623 -0.648 17.560 -0.704 17.514 -0.795 17.439 -0.878 17.365 -0.952 17.271 -0.984 17.168 -1.010 17.074 -1.066 16.979 -1.132 16.885 -1.223 16.801 -1.306 16.738 -1.389 16.692 -1.472 16.655 -1.528 16.637 -1.611 16.591 -1.695 16.554 -1.786 16.500 -1.793 16.491 -1.884 16.417 -1.967 16.322 -2.023 16.228 -2.115 16.164 -2.205 16.156 -2.288 16.156 -2.380 16.173 -2.463 16.183 -2.553 16.200 -2.720 16.165 -2.803 16.157 -2.869 16.157 -2.960 16.166 -2.983 16.157 -3.074 16.157 -3.114 16.166 -3.198 16.175 -3.289 16.184 -3.372 16.129 -3.455 16.092 -3.538 16.018 -3.629 15.991 -3.861 15.860 -3.902 15.766 -3.910 15.671 -3.950 15.577 -4.016 15.482 -4.074 15.454 -4.082 15.454 -4.165 15.436 -4.198 15.342 -4.198 15.304 -4.213 15.250 -4.221 15.250 -4.237 15.212 -4.320 15.138 -4.335 15.129 -4.418 15.066 -4.484 14.982 -4.500 14.973 -4.583 14.890 -4.674 14.844 -4.757 14.761 -4.815 14.657 -4.790 14.563 -4.749 14.468 -4.798 14.413 -4.798 14.405 -4.624 14.405 -4.540 14.376 -4.457 14.358 -4.424 14.404 -4.341 14.468 -4.258 14.393 -4.217 14.298 -4.275 14.204 -4.308 14.101 -4.331 14.007 -4.397 13.912 -4.397 13.895 -4.331 13.791 -4.415 13.725 -4.498 13.708 -4.581 13.708 -4.647 13.614 -4.687 13.567 -4.728 13.473 -4.784 13.398 -4.701 13.372 -4.653 13.268 -4.579 13.174 -4.496 13.137 -4.536 13.082 -4.585 12.987 -4.618 12.893 -4.666 12.790 -4.691 12.781 -4.775 12.706 -4.840 12.612 -4.896 12.594 -4.945 12.500 -4.952 12.454 -4.986 12.454 -5.069 12.537 -5.159 12.529 -5.424 12.529 -5.515 12.520 -5.599 12.520 -5.624 12.426 -5.624 12.331 -5.647 12.228 -5.663 12.210 ; #358 2 37.616 12.863 37.616 12.913 37.591 12.993 37.543 13.093 37.519 13.193 37.436 13.293 37.403 13.362 37.345 13.462 37.329 13.563 37.263 13.663 37.207 13.763 37.182 13.864 37.151 13.964 37.158 14.053 37.158 14.063 37.151 14.164 37.110 14.264 37.036 14.373 37.003 14.401 36.920 14.458 36.836 14.505 36.821 14.606 36.770 14.706 36.763 14.807 36.778 14.908 36.753 15.017 36.753 15.027 36.761 15.137 36.844 15.109 36.928 15.150 37.019 15.223 37.085 15.325 37.168 15.257 37.252 15.191 37.335 15.202 37.409 15.103 37.449 15.104 37.515 15.096 37.599 15.166 37.682 15.187 37.766 15.217 37.857 15.260 37.898 15.300 37.982 15.362 38.065 15.443 38.148 15.514 38.239 15.566 38.323 15.637 38.346 15.536 38.290 15.423 38.265 15.321 38.249 15.219 38.183 15.116 38.199 15.005 38.239 14.905 38.207 14.802 38.181 14.700 38.115 14.597 38.090 14.495 38.074 14.385 38.067 14.283 38.067 14.181 38.074 14.080 38.082 13.979 38.049 13.877 38.026 13.775 38.042 13.673 38.090 13.563 38.148 13.462 38.222 13.362 38.247 13.261 38.222 13.159 38.173 13.057 38.090 12.976 38.074 12.916 38.123 12.806 38.207 12.717 38.123 12.636 38.090 12.534 38.006 12.493 37.915 12.473 37.832 12.442 37.748 12.471 37.708 12.572 37.616 12.640 37.624 12.741 37.624 12.842 ; #359 2 65.010 35.733 64.992 35.740 65.010 35.869 65.107 35.862 65.204 35.802 65.194 35.675 65.177 35.534 65.080 35.631 65.014 35.737 ; #360 2 65.068 36.051 65.077 36.053 65.050 35.921 ; #361 2 65.204 36.274 65.212 36.254 65.212 36.129 65.183 35.996 65.192 36.135 65.201 36.273 ; #362 2 80.689 44.983 80.663 44.940 80.650 45.101 80.650 45.283 80.624 45.435 80.568 45.571 80.611 45.764 80.611 45.931 80.542 46.059 80.487 46.181 80.513 46.349 80.568 46.534 80.611 46.712 80.611 46.879 80.636 47.063 80.679 47.241 80.748 47.450 80.830 47.667 80.830 47.821 80.774 47.955 80.718 48.090 80.718 48.258 80.705 48.432 80.693 48.591 80.718 48.776 80.761 48.634 80.787 48.482 80.830 48.662 80.869 48.533 80.895 48.380 80.882 48.189 80.869 48.013 80.895 47.846 80.921 47.694 80.934 47.548 80.908 47.349 80.852 47.133 80.813 46.942 80.813 46.759 80.787 46.561 80.761 46.379 80.748 46.203 80.735 46.027 80.735 45.506 80.722 45.344 80.708 45.170 80.696 44.994 ; #363 2 80.098 47.652 80.072 47.789 80.084 47.991 80.140 48.177 80.114 48.312 80.114 48.478 80.196 48.681 80.153 48.807 80.153 48.974 80.293 48.953 80.307 48.809 80.307 48.656 80.418 48.892 80.405 49.065 80.418 49.226 80.405 49.371 80.391 49.515 80.405 49.691 80.529 49.936 80.542 50.098 80.568 50.297 80.568 50.832 80.581 50.994 80.679 51.240 80.679 51.407 80.705 51.592 80.804 51.476 80.830 51.339 80.830 50.988 80.804 50.818 80.816 50.672 80.774 50.476 80.787 50.331 80.830 50.512 80.872 50.723 80.885 50.914 80.967 50.799 80.941 50.599 80.928 50.436 80.914 50.259 80.928 50.085 80.970 50.281 80.970 50.435 80.996 50.283 80.983 50.106 80.970 49.929 80.914 49.725 80.902 49.534 80.875 49.350 80.849 49.150 80.794 49.298 80.754 49.427 80.780 49.611 80.699 49.378 80.575 49.118 80.575 48.950 80.549 48.767 80.549 48.614 80.617 48.503 80.604 48.312 80.591 48.151 80.578 47.961 80.552 47.779 80.526 47.595 80.499 47.426 80.499 47.594 80.526 47.777 80.513 47.950 80.513 48.132 80.473 48.275 80.460 48.114 80.460 47.794 80.408 47.930 80.395 48.089 80.343 47.890 80.355 47.717 80.355 47.365 80.369 47.220 80.424 47.087 80.398 46.904 80.359 46.728 80.290 46.841 80.222 46.967 80.209 47.112 80.235 47.294 80.278 47.486 80.278 47.667 80.290 47.841 80.278 48.000 80.209 47.806 80.124 47.667 ; #364 2 64.788 40.010 64.770 40.016 64.779 40.018 ; #365 2 64.686 40.016 64.658 40.131 64.613 40.241 64.613 40.364 64.587 40.492 64.680 40.435 64.781 40.368 64.753 40.224 64.660 40.267 64.697 40.155 64.714 40.024 64.688 40.016 ; #366 2 64.990 40.245 64.981 40.219 64.889 40.288 64.990 40.248 ; #367 2 66.829 42.580 66.764 42.545 66.811 42.700 ; #368 2 80.045 49.366 80.019 49.502 80.045 49.684 80.084 49.557 ; #369 2 80.058 49.891 80.084 50.073 80.225 50.315 80.251 50.165 80.251 50.013 80.225 49.816 80.143 49.612 80.101 49.751 80.062 49.893 ; #370 2 81.137 50.476 81.111 50.429 81.123 50.607 81.179 50.812 81.219 51.008 81.261 50.880 81.261 50.725 ; #371 2 79.989 50.606 79.978 50.570 79.978 50.405 79.989 50.246 79.968 50.080 79.958 50.224 79.947 50.383 79.937 50.528 79.937 50.860 79.926 51.019 79.926 51.169 79.916 51.329 79.937 51.509 79.968 51.350 79.989 51.213 80.055 51.165 80.094 51.024 80.055 50.833 79.989 50.610 ; #372 2 80.395 52.226 80.382 52.218 80.355 52.380 80.369 52.542 80.395 52.392 ; #373 2 80.561 53.258 80.535 53.393 80.575 53.587 80.643 53.481 80.686 53.344 80.672 53.166 ; #374 2 81.405 54.342 81.392 54.347 81.392 54.502 81.447 54.373 81.461 54.227 ; #375 2 80.902 54.063 80.902 54.034 80.846 54.163 80.846 54.486 80.859 54.663 80.804 54.806 80.790 54.964 80.816 55.152 80.830 55.329 80.830 55.498 80.842 55.674 80.856 55.838 80.869 56.031 80.882 55.857 80.895 55.685 80.921 55.549 80.934 55.391 80.960 55.256 80.960 55.102 80.905 54.908 80.931 54.758 80.918 54.579 80.918 54.242 80.892 54.056 ; #376 2 80.549 53.875 80.506 53.888 80.493 54.032 80.480 54.176 80.591 54.423 80.647 54.294 80.647 54.097 80.552 53.878 ; #377 2 80.451 54.479 80.437 54.456 80.437 54.637 80.506 54.854 80.532 54.704 80.447 54.477 ; #378 2 80.561 54.711 80.535 54.845 80.509 54.995 80.565 55.187 80.607 55.065 80.607 54.897 80.565 54.713 ; #379 2 81.320 55.630 81.293 55.686 81.293 56.025 81.320 56.214 81.320 56.384 81.264 56.512 81.291 56.716 81.317 56.904 81.343 57.079 81.356 57.274 81.369 57.439 81.382 57.618 81.369 57.778 81.395 57.954 81.421 57.790 81.408 57.595 81.434 57.459 81.447 57.300 81.473 57.136 81.473 56.951 81.487 56.777 81.487 56.592 81.473 56.398 81.392 56.521 81.349 56.644 81.349 56.474 81.363 56.329 81.389 56.193 81.389 56.009 81.401 55.863 81.401 55.679 81.363 55.496 81.307 55.624 ; #380 2 69.329 50.041 69.359 49.924 69.386 49.793 69.424 49.668 69.453 49.539 69.490 49.424 69.519 49.295 69.519 49.009 69.501 48.859 69.471 48.715 69.406 48.544 69.321 48.376 69.214 48.306 69.117 48.276 69.020 48.309 68.914 48.263 68.878 48.377 68.831 48.486 68.784 48.608 68.766 48.729 68.766 48.859 68.804 49.159 68.822 49.308 68.840 49.446 68.867 49.587 68.926 49.755 69.011 49.924 69.108 50.031 69.127 50.103 69.174 50.254 69.077 50.261 69.174 50.354 69.239 50.254 69.296 50.149 69.325 50.032 ; #381 2 80.281 54.923 80.268 54.900 80.254 55.057 80.254 55.238 80.350 55.459 80.362 55.301 80.307 55.109 ; #382 2 80.463 55.143 80.437 55.124 80.493 55.317 80.467 55.145 ; #383 2 80.787 55.549 80.774 55.568 80.718 55.695 80.693 55.844 80.693 56.012 80.705 56.189 80.705 56.357 80.693 56.515 80.693 56.668 80.787 56.907 80.813 56.758 80.839 56.624 80.839 56.288 80.826 56.111 80.826 55.942 80.800 55.755 80.787 55.545 ; #384 2 81.195 56.172 81.183 56.163 81.183 56.317 81.156 56.467 81.144 56.641 81.130 56.832 81.087 56.955 81.048 57.093 81.048 57.248 80.980 57.365 80.967 57.538 80.954 57.682 80.941 57.841 80.983 58.056 81.022 58.254 81.036 58.097 81.048 57.937 81.075 57.803 81.118 57.668 81.144 57.518 81.156 57.345 81.156 57.175 81.169 57.031 81.195 56.867 81.209 56.708 81.209 56.539 81.195 56.359 81.195 56.176 ; #385 2 80.451 55.839 80.437 55.857 80.411 56.172 80.437 56.359 80.451 56.201 80.463 56.029 ; #386 2 80.143 55.827 80.101 55.769 80.088 55.925 80.074 56.096 80.074 56.944 80.101 57.131 80.242 57.115 80.382 57.085 80.395 56.899 80.369 56.727 80.369 56.375 80.382 56.233 80.343 56.023 80.202 56.040 80.146 55.833 ; #387 2 81.477 58.169 81.490 58.316 81.558 58.555 81.584 58.405 81.598 58.245 81.598 58.075 81.637 57.950 81.679 57.798 81.653 57.607 81.653 57.436 81.640 57.256 81.614 57.080 81.558 56.853 81.558 57.023 81.545 57.197 81.545 57.523 81.519 57.659 81.506 57.819 81.480 58.168 ; #388 2 80.561 56.546 80.535 56.512 80.561 56.714 ; #389 2 81.277 57.163 81.264 57.138 81.238 57.288 81.225 57.448 81.225 57.645 81.251 57.820 81.333 58.053 81.333 57.714 81.320 57.535 81.293 57.330 81.281 57.166 ; #390 2 81.814 58.153 81.814 58.229 81.840 58.421 81.852 58.587 81.866 58.754 81.852 58.900 81.866 59.096 81.852 59.256 81.963 59.517 81.977 59.356 81.977 58.791 81.963 58.595 81.963 58.438 81.951 58.243 81.924 58.050 81.898 58.201 81.830 57.991 81.816 58.151 ; #391 2 80.114 57.660 80.101 57.771 80.211 58.021 80.199 58.163 80.254 58.373 80.307 58.232 80.350 58.431 80.362 58.622 80.362 58.775 80.350 58.932 80.362 59.095 80.375 59.273 80.418 59.153 80.444 58.991 80.457 58.834 80.470 58.677 80.496 58.516 80.509 58.359 80.509 58.206 80.523 58.049 80.523 57.180 80.509 56.988 80.483 57.136 80.388 57.232 80.247 57.246 80.163 57.350 80.124 57.487 80.110 57.657 ; #392 2 80.676 57.338 80.650 57.304 80.624 57.452 80.611 57.610 80.611 57.778 80.705 58.032 80.705 57.543 80.679 57.340 ; #393 2 72.714 52.716 72.724 52.858 72.724 53.007 72.714 53.137 72.695 53.275 72.704 53.132 72.704 52.983 72.602 52.806 72.632 52.959 72.632 53.094 72.551 52.913 72.532 52.754 72.420 52.770 72.388 52.888 72.347 52.730 72.297 52.554 72.194 52.538 72.135 52.357 72.166 52.239 72.156 52.099 72.194 51.973 72.175 51.827 72.094 51.635 71.991 51.527 71.878 51.479 71.775 51.489 71.694 51.592 71.591 51.655 71.560 51.772 71.509 51.892 71.519 52.031 71.529 52.183 71.529 52.317 71.591 52.217 71.572 52.340 71.603 52.503 71.612 52.655 71.522 52.739 71.522 52.873 71.452 52.980 71.555 53.103 71.474 53.192 71.577 53.299 71.577 53.433 71.464 53.357 71.373 53.453 71.354 53.588 71.457 53.752 71.467 53.904 71.406 53.723 71.304 53.548 71.253 53.665 71.223 53.794 71.242 53.938 71.201 54.060 71.150 54.178 71.191 54.043 71.172 53.886 71.112 53.998 71.131 53.876 71.131 53.743 71.102 53.593 71.071 53.709 70.990 53.797 70.887 53.726 70.938 53.610 70.897 53.454 70.897 53.599 70.865 53.727 70.856 53.866 70.837 53.988 70.796 54.111 70.787 54.251 70.806 54.394 70.765 54.515 70.724 54.625 70.724 54.757 70.827 54.671 70.758 54.764 70.717 54.873 70.688 55.002 70.648 55.124 70.698 55.297 70.801 55.446 70.761 55.555 70.780 55.711 70.677 55.728 70.667 55.855 70.677 56.018 70.738 55.897 70.708 56.023 70.717 56.161 70.677 56.294 70.648 56.410 70.597 56.512 70.648 56.687 70.698 56.572 70.698 56.415 70.780 56.331 70.770 56.458 70.719 56.573 70.710 56.724 70.679 56.838 70.660 56.972 70.650 57.110 70.631 57.244 70.631 57.388 70.662 57.274 70.693 57.149 70.693 57.016 70.753 56.895 70.712 57.015 70.722 57.153 70.693 57.281 70.674 57.402 70.765 57.602 70.806 57.482 70.815 57.620 70.875 57.511 70.875 57.367 70.906 57.240 70.925 57.106 70.966 56.998 71.017 56.895 71.047 56.768 71.098 56.665 71.148 56.562 71.198 56.446 71.237 56.324 71.287 56.220 71.349 56.111 71.462 56.044 71.522 55.946 71.603 55.860 71.663 55.749 71.754 55.669 71.857 55.582 71.960 55.536 72.063 55.450 72.175 55.491 72.278 55.618 72.338 55.506 72.441 55.554 72.491 55.449 72.523 55.331 72.513 55.461 72.532 55.608 72.623 55.527 72.642 55.402 72.632 55.545 72.592 55.682 72.695 55.797 72.755 55.685 72.735 55.821 72.745 55.976 72.805 55.876 72.814 55.733 72.855 55.622 72.827 55.753 72.855 55.931 72.827 56.050 72.836 56.192 72.939 56.306 73.020 56.206 72.991 56.040 73.001 55.896 73.020 55.758 73.020 55.907 73.039 56.068 73.049 56.223 73.109 56.396 73.109 55.948 73.128 56.109 73.137 56.252 73.147 56.420 73.207 56.606 73.267 56.493 73.276 56.362 73.286 56.205 73.295 56.074 73.315 55.936 73.355 55.811 73.355 55.661 73.346 55.505 73.365 55.367 73.406 55.241 73.425 55.115 73.454 54.983 73.444 54.839 73.413 54.671 73.343 54.467 73.324 54.306 73.305 54.159 73.324 54.033 73.334 53.875 73.303 53.708 73.274 53.541 73.255 53.381 73.226 53.310 73.123 53.226 73.083 53.352 72.980 53.281 72.920 53.396 72.939 53.258 72.958 53.120 72.949 52.966 72.920 52.813 72.869 52.636 72.766 52.458 72.747 52.584 72.719 52.716 ; #394 2 81.137 57.923 81.123 57.942 81.097 58.076 81.072 58.211 81.046 58.359 81.046 58.542 81.127 58.775 81.154 58.626 81.179 58.478 81.192 58.333 81.205 58.160 ; #395 2 81.712 58.385 81.699 58.419 81.686 58.578 81.742 58.779 81.742 58.594 81.715 58.388 ; #396 2 80.914 58.010 80.859 57.953 80.846 58.097 80.846 58.266 80.820 58.413 80.820 58.595 80.859 58.795 80.941 59.042 80.967 58.879 80.967 58.542 80.954 58.378 80.941 58.185 ; #397 2 81.238 58.293 81.225 58.283 81.212 58.442 81.255 58.645 81.255 58.490 81.241 58.296 ; #398 2 81.447 58.550 81.421 58.685 81.421 58.855 81.395 59.019 81.408 59.213 81.464 59.428 81.490 59.278 81.516 59.129 81.516 58.945 81.490 58.754 81.451 58.553 ; #399 2 81.183 58.621 81.169 58.639 81.209 58.824 ; #400 2 80.676 58.595 80.663 58.585 80.705 58.785 80.679 58.598 ; #401 2 73.691 54.839 73.650 54.677 73.619 54.521 73.549 54.330 73.446 54.337 73.396 54.144 73.365 54.276 73.396 54.444 73.446 54.624 73.446 54.761 73.475 54.928 73.475 55.066 73.456 55.204 73.416 55.343 73.387 55.463 73.377 55.620 73.387 55.775 73.377 55.906 73.368 56.051 73.470 56.046 73.368 56.105 73.327 56.230 73.327 56.367 73.317 56.511 73.298 56.662 73.308 56.817 73.411 56.830 73.360 56.949 73.420 57.136 73.533 57.327 73.573 57.203 73.604 57.072 73.633 56.940 73.715 56.853 73.664 56.971 73.623 57.083 73.604 57.209 73.595 57.366 73.623 57.535 73.726 57.642 73.786 57.542 73.837 57.422 73.856 57.296 73.865 57.139 73.875 56.994 73.884 56.849 73.916 56.730 73.897 56.870 73.897 57.158 73.887 57.303 73.868 57.455 73.837 57.586 73.777 57.686 73.767 57.831 73.870 57.977 73.973 57.904 74.005 57.773 74.055 57.666 74.093 57.552 74.112 57.400 74.122 57.570 74.203 57.471 74.193 57.616 74.124 57.710 74.074 57.830 74.043 57.948 74.033 58.093 74.064 58.251 74.167 58.224 74.126 58.350 74.177 58.521 74.208 58.389 74.236 58.560 74.236 58.698 74.339 58.698 74.452 58.632 74.492 58.506 74.533 58.380 74.593 58.254 74.565 58.388 74.545 58.527 74.526 58.667 74.486 58.793 74.466 58.945 74.526 59.136 74.629 59.243 74.669 59.130 74.669 59.283 74.739 59.177 74.708 59.296 74.669 59.423 74.629 59.536 74.610 59.675 74.701 59.888 74.732 59.744 74.792 59.618 74.751 59.743 74.742 59.877 74.732 60.023 74.751 60.176 74.811 60.368 74.861 60.250 74.861 60.542 74.964 60.587 74.964 60.141 74.983 60.000 75.002 60.013 74.993 60.046 75.013 60.227 75.002 60.359 75.115 60.502 75.039 60.596 75.029 60.742 75.141 60.816 75.184 61.003 75.218 61.183 75.340 61.337 75.252 61.407 75.273 61.577 75.385 61.724 75.395 61.885 75.461 62.079 75.450 62.225 75.485 62.408 75.516 62.587 75.527 62.751 75.568 62.926 75.603 63.109 75.592 63.268 75.623 63.436 75.723 63.660 75.647 63.765 75.736 64.149 75.736 64.304 75.770 64.475 75.781 64.626 75.802 64.799 75.812 64.963 75.822 65.127 75.867 65.321 75.912 65.514 75.922 65.679 75.943 65.853 75.964 66.014 75.975 66.178 76.006 66.362 76.027 66.535 76.071 66.717 76.082 66.895 76.092 67.047 76.137 67.257 76.181 67.440 76.203 67.615 76.236 67.801 76.268 67.973 76.288 68.135 76.343 68.328 76.433 68.554 76.511 68.783 76.577 68.987 76.622 68.873 76.734 68.978 76.810 68.877 76.886 68.777 76.920 68.651 76.964 68.534 76.964 68.390 76.975 68.242 76.996 68.117 77.016 67.978 77.016 67.661 76.996 67.471 76.964 67.298 76.954 67.130 76.920 66.941 76.909 66.774 76.865 66.563 76.810 66.356 76.755 66.149 76.666 65.913 76.600 65.999 76.556 66.103 76.545 65.936 76.567 65.799 76.577 65.664 76.577 65.507 76.511 65.306 76.501 65.140 76.501 64.983 76.388 64.729 76.409 64.577 76.365 64.396 76.320 64.188 76.341 64.063 76.341 63.920 76.351 63.759 76.296 63.569 76.286 63.404 76.241 63.210 76.221 63.037 76.255 62.923 76.265 62.774 76.189 62.569 76.265 62.476 76.265 62.163 76.276 62.016 76.286 61.868 76.317 61.737 76.296 61.563 76.296 61.420 76.286 61.243 76.265 61.083 76.152 60.966 76.077 61.061 76.066 60.897 75.998 60.687 76.042 60.580 76.121 60.798 76.131 60.650 76.121 60.473 76.111 60.309 76.045 60.102 76.045 60.257 76.001 60.378 76.001 60.222 75.990 60.059 75.959 59.938 75.938 59.766 75.948 59.619 75.938 59.455 75.883 59.271 75.872 59.107 75.862 58.944 75.796 58.739 75.729 58.532 75.707 58.361 75.686 58.204 75.631 57.995 75.587 58.104 75.566 57.946 75.545 57.776 75.490 57.580 75.446 57.689 75.333 57.730 75.333 57.576 75.377 57.455 75.377 57.314 75.388 57.155 75.377 57.006 75.288 56.800 75.212 56.886 75.100 56.651 75.100 56.497 75.189 56.421 75.189 56.268 75.210 56.142 75.199 55.980 75.076 55.838 74.978 55.911 74.988 56.057 75.008 56.223 75.019 56.371 74.998 56.496 74.957 56.330 74.948 56.465 74.928 56.592 74.909 56.441 74.890 56.289 74.871 56.111 74.799 55.926 74.780 56.054 74.799 56.206 74.799 56.359 74.749 56.493 74.720 56.615 74.701 56.743 74.701 56.925 74.692 56.753 74.701 56.606 74.732 56.461 74.722 56.315 74.703 56.150 74.684 55.999 74.703 55.857 74.694 55.712 74.591 55.637 74.541 55.745 74.571 55.916 74.562 56.076 74.524 56.191 74.505 56.319 74.495 56.160 74.495 56.021 74.486 55.876 74.486 55.724 74.466 55.560 74.397 55.366 74.388 55.525 74.356 55.658 74.306 55.779 74.325 55.639 74.315 55.481 74.346 55.335 74.296 55.153 74.287 55.299 74.267 55.439 74.258 55.585 74.208 55.706 74.198 55.839 74.158 55.953 74.158 55.814 74.177 55.674 74.186 55.529 74.196 55.383 74.236 55.256 74.217 55.093 74.158 54.918 74.055 54.776 74.026 54.897 74.006 54.735 74.006 54.583 73.978 54.428 73.937 54.266 73.856 54.067 73.837 53.905 73.805 53.749 73.786 53.876 73.726 53.979 73.686 54.118 73.686 54.256 73.696 54.425 73.765 54.617 73.775 54.761 73.784 54.904 73.775 55.050 73.775 55.351 73.765 55.207 73.736 55.039 73.726 54.883 ; #402 2 71.004 53.056 71.045 53.091 71.158 53.203 71.261 53.182 71.292 53.053 71.323 52.937 71.404 52.836 71.364 52.959 71.325 53.072 71.395 52.977 71.426 52.860 71.416 52.722 71.416 52.588 71.397 52.444 71.294 52.335 71.275 52.470 71.275 52.628 71.224 52.747 71.153 52.841 71.102 52.958 71.012 53.054 ; #403 2 79.934 58.386 79.923 58.304 79.923 58.469 79.913 58.627 79.882 58.781 79.903 58.977 79.913 58.834 79.947 58.711 79.958 58.568 79.937 58.385 ; #404 2 81.405 59.943 81.392 59.811 81.379 59.955 81.379 60.125 81.365 60.269 81.353 60.414 81.408 60.643 81.408 60.474 81.421 60.330 81.421 60.127 81.408 59.946 ; #405 2 80.591 59.357 80.565 59.349 80.539 59.497 80.496 59.616 80.470 59.763 80.483 59.940 80.496 60.103 80.539 60.291 80.526 60.434 80.499 60.565 80.487 60.737 80.460 60.896 80.447 61.039 80.490 61.241 80.571 61.489 80.627 61.703 80.653 61.878 80.722 62.103 80.862 62.313 80.931 62.202 80.957 62.070 80.970 61.913 80.970 61.744 80.944 61.554 80.931 61.360 80.918 61.166 80.905 60.988 80.905 60.834 80.892 60.622 80.866 60.447 80.892 60.286 80.905 60.128 80.918 60.292 80.931 60.149 80.931 59.980 80.918 59.801 80.836 59.568 80.712 59.302 80.601 59.367 ; #406 2 79.989 58.855 79.978 58.891 79.968 59.064 79.937 59.203 79.916 59.352 79.937 59.521 79.947 59.709 79.992 59.913 80.002 59.864 80.098 59.773 80.110 59.617 80.124 59.448 80.098 59.261 80.084 59.098 79.992 58.860 ; #407 2 81.097 60.175 81.072 60.183 81.058 60.326 81.032 60.475 81.019 60.632 81.019 60.801 81.006 60.945 81.006 61.113 81.032 61.289 81.084 61.501 81.209 61.774 81.222 61.616 81.222 61.291 81.209 61.111 81.209 60.942 81.195 60.776 81.169 60.571 81.144 60.381 81.104 60.181 ; #408 2 80.199 59.949 80.186 60.105 80.199 60.282 80.225 60.137 ; #409 2 81.728 61.873 81.702 61.881 81.676 62.028 81.715 62.217 81.728 62.059 ; #410 2 81.814 62.258 81.800 62.322 81.787 62.515 81.761 62.664 81.748 62.837 81.735 62.997 81.722 63.171 81.722 63.545 81.820 63.801 81.846 63.668 81.859 63.493 81.859 63.322 81.846 63.140 81.833 62.958 81.859 62.824 81.846 62.657 81.846 62.471 81.820 62.263 ; #411 2 68.351 53.913 68.342 53.909 68.378 54.056 ; #412 2 80.928 62.641 80.859 62.705 80.833 62.837 80.806 62.968 80.780 63.113 80.754 63.245 80.768 63.410 80.780 63.589 80.794 63.783 80.794 63.937 80.806 64.130 80.806 64.284 80.820 64.464 80.820 64.618 80.859 64.820 80.872 65.014 80.928 65.232 80.983 65.464 81.123 65.500 81.179 65.395 81.235 65.275 81.261 65.114 81.274 64.971 81.287 64.828 81.300 64.684 81.287 64.503 81.219 64.274 81.065 64.140 81.065 63.446 81.051 63.252 80.996 63.036 80.970 62.845 ; #413 2 75.951 58.867 75.930 58.851 75.951 59.036 76.006 59.234 75.972 59.052 ; #414 2 75.940 59.143 75.920 59.127 75.964 59.316 75.943 59.145 ; #415 2 76.085 59.622 76.074 59.627 76.108 59.810 76.087 59.624 ; #416 2 68.951 55.285 68.941 55.268 68.951 55.415 68.941 55.552 68.971 55.437 68.953 55.287 ; #417 2 76.186 60.103 76.155 60.092 76.145 60.210 76.189 60.388 76.233 60.592 76.223 60.428 76.203 60.269 76.192 60.104 ; #418 2 74.389 58.992 74.380 58.986 74.380 59.125 ; #419 2 70.523 57.099 70.555 57.118 70.555 57.262 70.574 57.129 70.555 56.974 ; #420 2 68.788 57.338 68.759 57.322 68.777 57.461 68.795 57.612 68.786 57.749 68.833 57.904 68.816 57.753 68.816 57.611 68.806 57.477 ; #421 2 70.009 58.720 69.961 58.836 69.923 58.958 69.866 59.070 69.943 58.969 69.934 59.108 69.916 59.241 69.906 59.379 69.877 59.494 69.839 59.627 69.742 59.612 69.724 59.745 69.715 59.871 69.733 60.012 69.742 60.029 69.724 60.150 69.715 60.288 69.742 60.446 69.839 60.554 69.945 60.484 69.963 60.351 70.011 60.264 70.051 60.158 70.111 60.064 70.111 60.025 70.121 59.899 70.181 59.793 70.212 59.669 70.262 59.569 70.303 59.463 70.373 59.362 70.413 59.243 70.444 59.131 70.473 59.004 70.444 58.854 70.341 58.674 70.351 58.536 70.310 58.655 70.270 58.786 70.260 58.636 70.279 58.504 70.176 58.556 70.073 58.597 70.013 58.705 70.004 58.710 ; #422 2 69.127 66.012 69.117 66.006 69.108 66.130 69.082 66.255 69.052 66.366 69.005 66.478 68.978 66.603 69.025 66.491 69.072 66.391 69.108 66.271 69.127 66.153 ; #423 2 69.515 67.081 69.496 67.069 69.478 67.201 69.496 67.355 69.593 67.394 69.593 67.263 69.516 67.082 ; #424 2 79.562 76.701 79.497 76.780 79.507 76.987 79.507 77.603 79.552 77.489 79.562 77.322 79.584 77.181 79.594 77.013 79.604 76.874 79.625 76.719 79.646 76.562 79.602 76.334 79.636 76.208 79.567 76.297 79.557 76.450 79.547 76.603 79.557 76.702 ; #425 2 73.382 71.250 73.332 71.346 73.435 71.442 73.384 71.252 ; #426 2 81.042 79.320 80.902 79.089 80.888 79.228 80.888 79.905 80.902 80.088 80.914 80.270 80.957 80.473 81.026 80.396 81.026 80.213 81.039 80.045 81.051 79.905 81.065 79.737 81.039 79.539 81.039 79.324 ; #427 2 72.714 72.965 72.704 72.957 72.676 73.070 72.716 72.967 ; #428 2 66.744 70.065 66.761 69.950 66.791 69.820 66.744 69.650 66.820 69.562 66.838 69.435 66.800 69.283 66.809 69.416 66.779 69.535 66.694 69.605 66.597 69.668 66.567 69.799 66.511 69.911 66.538 70.067 66.577 70.169 66.674 70.157 66.741 70.064 ; #429 2 73.073 74.206 73.063 74.198 73.013 74.305 72.994 74.425 72.953 74.540 72.934 74.673 72.903 74.783 73.015 74.770 73.118 74.820 73.137 74.986 73.147 74.844 73.157 74.716 73.176 74.582 73.166 74.437 73.075 74.211 ; #430 2 66.782 70.067 66.782 69.940 66.764 70.078 ; #431 2 73.454 75.407 73.504 75.559 73.485 75.693 73.485 75.830 73.504 75.997 73.607 76.100 73.597 75.954 73.597 75.803 73.556 75.618 ; #432 2 66.723 70.673 66.714 70.528 66.685 70.382 66.608 70.457 66.579 70.576 66.561 70.690 66.552 70.823 66.570 70.972 66.647 70.886 66.694 70.779 66.721 70.671 ; #433 2 73.566 76.192 73.556 76.183 73.547 76.312 73.547 76.463 73.528 76.596 73.499 76.733 73.480 76.867 73.521 76.766 73.540 76.632 73.559 76.499 73.578 76.353 73.569 76.194 ; #434 2 73.207 76.290 73.188 76.435 73.169 76.555 73.231 76.759 73.231 76.610 73.240 76.481 73.210 76.292 ; #435 2 77.572 82.373 77.538 82.480 77.527 82.626 77.572 82.519 ; #436 2 74.615 79.224 74.574 79.339 74.543 79.449 74.533 79.592 74.624 79.525 74.634 79.369 74.644 79.239 74.615 79.364 ; #437 2 75.961 81.755 75.930 81.862 75.920 82.007 75.909 82.163 75.898 82.293 75.932 82.177 75.943 82.020 75.953 81.862 75.964 81.762 ; #438 2 72.939 78.793 72.857 78.786 72.829 78.897 72.788 79.009 72.779 79.149 72.769 79.289 72.759 79.416 72.750 79.556 72.862 79.671 72.965 79.673 73.015 79.557 73.078 79.478 73.128 79.374 73.128 79.238 73.025 79.007 72.944 78.797 ; #439 2 75.524 82.241 75.524 82.086 75.411 82.029 75.401 81.876 75.466 81.796 75.354 81.657 75.288 81.737 75.333 81.928 75.220 81.957 75.186 82.073 75.299 82.100 75.343 82.304 75.432 82.249 75.443 82.107 75.519 82.235 ; #440 2 75.940 83.009 75.961 83.189 75.951 83.332 75.995 83.228 76.006 83.098 76.016 82.953 76.027 82.810 76.027 82.668 76.006 82.488 75.985 82.606 75.985 82.904 ; #441 2 73.535 80.447 73.604 80.362 73.595 80.191 73.554 80.302 73.535 80.422 ; #442 2 81.307 90.196 81.195 90.207 81.183 90.375 81.183 90.544 81.169 90.695 81.156 90.847 81.156 91.369 81.212 91.597 81.310 91.571 81.323 91.419 81.323 91.250 81.336 91.082 81.336 90.555 81.323 90.355 81.310 90.201 ; #443 2 74.184 82.650 74.174 82.502 74.105 82.599 74.085 82.719 74.188 82.668 74.188 82.654 ; #444 2 74.112 82.925 74.112 83.063 74.103 83.206 74.083 83.338 74.074 83.467 74.105 83.636 74.155 83.547 74.164 83.405 74.174 83.263 74.155 83.093 74.136 82.935 74.117 82.930 ; #445 2 79.989 91.210 79.923 91.286 79.834 91.331 79.824 91.497 79.813 91.634 79.813 92.147 79.793 92.285 79.761 92.393 79.740 92.199 79.730 92.033 79.695 92.152 79.685 92.289 79.675 92.439 79.685 92.651 79.695 92.816 79.717 93.011 79.748 93.219 79.782 93.431 79.827 93.645 79.940 93.651 79.960 93.528 79.971 93.363 79.981 93.211 79.992 93.105 80.016 92.972 80.016 92.820 80.002 92.636 80.029 92.506 80.029 92.173 80.042 92.023 80.055 91.889 80.055 91.557 80.042 91.358 80.055 91.224 80.068 91.044 80.042 91.175 ; #446 2 80.310 91.670 80.310 91.699 80.323 91.882 80.323 92.535 80.336 92.720 80.350 92.904 80.350 93.085 80.336 93.234 80.281 93.314 80.307 93.196 80.319 93.013 80.319 92.708 80.307 92.511 80.307 92.358 80.293 92.173 80.268 92.292 80.242 92.411 80.228 92.575 80.215 92.710 80.173 92.835 80.186 92.685 80.199 92.550 80.199 92.384 80.173 92.183 80.173 92.350 80.160 92.530 80.160 92.697 80.134 92.815 80.120 92.964 80.094 93.111 80.068 93.228 80.042 93.373 80.029 93.523 80.002 93.653 80.002 93.820 80.016 93.837 80.042 94.037 80.055 94.207 80.081 94.423 80.137 94.650 80.163 94.851 80.150 95.013 80.176 95.244 80.176 95.411 80.218 95.633 80.232 95.833 80.232 96.152 80.245 96.369 80.245 96.914 80.257 97.113 80.369 97.420 80.382 97.271 80.480 97.254 80.535 97.178 80.575 97.066 80.729 97.204 80.715 97.368 80.729 97.554 80.729 97.737 80.797 98.001 80.852 97.897 80.895 97.788 80.908 97.653 80.921 97.502 80.934 97.367 80.947 97.230 80.974 97.114 81.000 96.967 81.026 96.834 81.082 96.743 81.108 96.625 81.176 96.552 81.202 96.433 81.245 96.338 81.287 96.214 81.327 96.066 81.327 96.038 81.369 95.911 81.382 95.760 81.369 95.543 81.369 95.373 81.327 95.132 81.313 95.283 81.313 95.452 81.300 95.618 81.300 95.279 81.231 95.016 81.189 94.802 81.176 94.602 81.189 94.464 81.163 94.245 81.137 94.055 81.137 93.872 81.111 93.653 81.111 93.484 80.986 93.149 80.974 92.978 80.960 92.806 80.806 92.694 80.833 92.898 80.833 93.067 80.790 93.178 80.696 92.898 80.555 92.802 80.555 92.481 80.542 92.296 80.473 92.054 80.460 92.189 80.447 92.354 80.447 92.535 80.421 92.667 80.421 92.162 80.434 91.999 80.421 91.800 80.326 91.510 80.314 91.661 ; #447 2 74.050 84.068 74.009 84.192 73.990 84.337 73.990 84.488 74.062 84.421 74.043 84.251 74.052 84.110 74.052 84.071 ; #448 2 74.521 84.772 74.491 84.590 74.421 84.659 74.411 84.815 74.462 84.713 74.481 84.884 ; #449 2 74.603 85.062 74.574 84.893 74.584 85.056 ; #450 2 79.665 91.706 79.665 91.871 79.720 91.781 79.720 91.615 79.730 91.478 79.740 91.313 79.685 91.403 79.675 91.540 ; #451 2 74.821 85.523 74.780 85.341 74.771 85.180 74.751 85.312 74.751 85.452 74.722 85.562 74.732 85.725 74.814 85.655 74.823 85.525 ; #452 2 74.552 85.708 74.584 85.600 74.593 85.457 74.584 85.308 74.481 85.357 74.471 85.486 74.512 85.680 74.550 85.705 ; #453 2 74.440 85.277 74.430 85.406 74.421 85.561 74.449 85.425 ; #454 2 77.200 89.143 77.200 88.971 77.088 88.873 77.177 89.144 77.197 89.143 ; #455 2 74.462 85.937 74.521 86.136 74.581 86.058 74.581 85.919 74.478 85.788 74.459 85.934 ; #456 2 74.193 85.832 74.203 85.690 74.212 85.548 74.182 85.656 74.162 85.775 74.191 85.830 ; #457 2 79.429 91.943 79.418 92.092 79.408 92.275 79.442 92.472 79.463 92.335 79.431 92.129 79.442 91.978 79.431 91.950 ; #458 2 74.986 87.046 74.976 86.896 74.957 86.724 74.976 86.590 74.904 86.350 74.854 86.451 74.845 86.594 74.845 86.748 74.835 86.890 74.875 86.779 74.895 86.940 74.895 87.080 74.986 87.050 ; #459 2 77.224 89.379 77.244 89.489 77.224 89.622 77.336 89.880 77.368 89.775 77.368 89.616 77.336 89.417 77.224 89.372 ; #460 2 79.416 92.706 79.405 92.855 79.416 93.020 79.447 92.884 79.437 92.720 ; #461 2 79.989 94.726 79.968 94.545 79.903 94.273 79.882 94.409 79.861 94.532 79.819 94.652 79.798 94.457 79.787 94.277 79.753 94.063 79.640 93.755 79.599 93.532 79.565 93.334 79.575 93.184 79.575 93.019 79.555 93.155 79.555 93.320 79.476 93.361 79.565 93.649 79.565 93.800 79.544 93.950 79.510 94.067 79.489 93.888 79.468 94.010 79.512 94.264 79.512 94.428 79.423 94.454 79.311 94.461 79.269 94.553 79.258 94.702 79.217 94.808 79.162 94.895 79.128 94.997 79.128 95.146 79.093 95.262 79.128 95.474 79.162 95.672 79.128 95.787 79.062 95.844 79.062 96.184 79.073 96.363 79.052 96.483 79.052 96.856 79.041 96.990 78.999 97.092 78.978 97.212 78.947 97.343 78.926 97.491 78.926 97.668 78.915 97.815 78.894 97.623 78.894 97.979 78.884 98.114 78.894 98.292 78.884 98.440 78.863 98.585 78.884 98.780 78.894 98.944 78.894 99.284 78.905 99.462 78.894 99.595 78.937 99.821 79.049 100.119 79.117 100.042 79.172 99.974 79.183 99.812 79.238 99.729 79.258 99.582 79.279 99.463 79.301 99.345 79.356 99.262 79.345 99.410 79.311 99.538 79.331 99.733 79.455 99.842 79.567 99.905 79.657 99.873 79.769 99.908 79.790 100.091 79.801 100.153 79.856 100.069 79.866 100.038 79.887 99.905 79.929 99.802 79.950 99.681 79.981 99.548 80.002 99.400 80.029 99.349 80.055 99.234 80.055 99.036 80.042 98.865 80.042 98.699 80.002 98.478 79.992 98.597 79.879 98.416 79.900 98.267 79.911 98.117 79.890 97.921 79.777 97.784 79.743 97.569 79.743 97.418 79.777 97.619 79.890 97.798 80.016 97.981 80.072 98.133 80.084 97.999 80.140 97.925 80.166 97.794 80.192 97.664 80.192 97.483 80.179 97.284 80.179 97.118 80.153 96.930 80.140 96.731 80.127 96.547 80.127 96.395 80.101 96.179 80.127 96.062 80.127 95.712 80.114 95.513 80.045 95.254 80.088 95.160 80.074 94.990 80.006 94.745 ; #462 2 77.200 90.216 77.200 90.044 77.169 90.176 77.169 90.378 77.189 90.247 ; #463 2 79.989 93.985 79.968 94.136 79.989 94.193 80.000 94.028 ; #464 2 77.255 96.742 77.210 96.536 77.169 96.320 77.158 96.146 77.137 95.960 77.137 95.801 77.093 95.596 77.048 95.693 77.059 95.865 77.079 96.052 77.035 96.136 77.056 96.324 77.045 96.466 77.158 96.750 77.258 96.744 ; #465 2 76.760 95.329 76.729 95.129 76.695 95.254 76.695 95.398 76.750 95.328 ; #466 2 76.299 94.923 76.268 94.738 76.233 94.861 76.223 95.004 76.299 94.949 ; #467 2 76.729 95.862 76.760 95.761 76.695 95.816 76.729 96.019 76.739 95.890 ; #468 2 76.975 96.571 76.996 96.428 76.985 96.269 76.943 96.397 76.975 96.568 ; #469 2 76.760 96.682 76.750 96.511 76.718 96.324 76.718 96.152 76.674 96.249 76.674 96.407 76.684 96.564 ; #470 2 76.210 96.933 76.276 97.179 76.255 96.994 76.367 97.218 76.388 97.090 76.276 96.909 ; #471 2 76.626 97.719 76.715 97.699 76.770 97.605 76.648 97.521 76.637 97.677 ; #472 2 78.436 100.214 78.426 100.213 78.381 100.206 78.326 100.036 78.203 99.740 78.090 99.504 78.056 99.602 78.015 99.703 78.025 99.891 78.015 100.051 78.015 100.225 78.025 100.267 78.056 100.474 78.077 100.652 78.122 100.865 78.153 101.073 78.219 101.329 78.240 101.523 78.229 101.654 78.240 101.831 78.240 101.993 78.250 102.169 78.250 102.478 78.261 102.668 78.261 102.830 78.206 102.908 78.295 103.218 78.284 103.350 78.295 103.541 78.295 103.716 78.305 103.893 78.305 104.068 78.326 104.248 78.360 104.461 78.381 104.642 78.381 104.804 78.391 104.981 78.381 105.127 78.481 105.429 78.546 105.679 78.635 105.669 78.701 105.596 78.756 105.533 78.811 105.456 78.845 105.347 78.865 105.231 78.811 104.982 78.855 104.903 78.865 104.756 78.955 104.731 78.986 104.617 79.007 104.486 79.007 104.337 79.052 104.243 79.128 104.197 79.138 104.063 79.148 103.930 79.169 103.785 79.104 103.520 79.059 103.274 78.970 102.961 78.847 102.673 78.857 102.525 78.970 102.724 79.093 102.825 79.206 102.970 79.319 103.230 79.329 103.082 79.371 102.968 79.382 102.834 79.392 102.685 79.402 102.538 79.303 102.208 79.238 102.258 79.248 102.110 79.282 102.057 79.313 101.955 79.358 101.858 79.348 101.678 79.235 101.508 79.159 101.230 79.046 101.161 79.036 101.309 79.015 101.441 79.025 101.279 79.015 101.114 78.902 100.918 78.847 100.985 78.802 101.067 78.758 101.178 78.779 101.047 78.790 100.899 78.800 100.767 78.756 100.524 78.643 100.402 78.520 100.294 78.408 100.172 ; #473 2 76.142 97.507 76.121 97.321 76.087 97.134 76.066 96.948 76.022 97.057 76.042 97.228 76.131 97.492 ; #474 2 78.235 106.331 78.266 106.528 78.321 106.776 78.376 106.700 78.300 106.433 78.310 106.274 ; #475 2 78.101 107.619 78.166 107.869 78.221 107.795 78.232 107.637 78.221 107.459 78.211 107.296 78.211 107.121 78.221 106.975 78.211 106.812 78.211 106.651 78.166 106.756 78.156 106.914 78.145 107.072 78.135 107.230 78.135 107.377 78.145 107.541 ; #476 2 77.435 106.679 77.435 106.838 77.470 107.037 77.525 106.950 77.490 106.737 ; #477 2 77.279 107.524 77.299 107.716 77.320 107.907 77.376 107.836 77.386 107.692 77.397 107.550 77.331 107.606 77.297 107.407 77.276 107.520 ; #478 2 76.660 112.247 76.593 112.308 76.593 112.478 76.561 112.571 76.516 112.642 76.496 112.765 76.585 112.740 76.684 112.743 76.705 112.621 76.674 112.426 76.684 112.285 76.663 112.251 ; #479 2 76.456 112.738 76.435 112.861 76.467 112.755 ; #480 2 76.412 113.323 76.401 113.475 76.401 113.631 76.435 113.517 76.477 113.443 ; #481 2 74.122 112.934 74.225 113.118 74.244 113.295 74.346 113.437 74.449 113.512 74.491 113.404 74.500 113.277 74.510 113.139 74.510 112.847 74.519 112.707 74.529 112.569 74.538 112.430 74.548 112.291 74.557 112.165 74.454 112.092 74.383 111.842 74.383 111.703 74.270 111.672 74.261 111.798 74.241 111.937 74.232 112.076 74.191 112.158 74.162 112.258 74.162 112.409 74.153 112.561 74.134 112.687 74.124 112.812 74.124 112.934 ; #482 2 74.318 116.036 74.308 116.175 74.389 116.125 74.320 116.040 ; #483 2 73.207 120.198 73.207 120.090 73.147 119.866 73.078 119.903 73.078 120.052 73.087 120.202 73.157 120.440 73.188 120.336 73.207 120.201 ; #484 2 73.863 124.673 73.944 124.634 73.954 124.497 73.873 124.537 ; #485 2 73.547 125.993 73.597 125.987 73.688 125.989 73.575 125.883 73.547 125.990 ; #486 2 73.556 127.600 73.547 127.735 73.537 127.871 73.528 128.006 73.528 128.169 73.547 128.049 73.566 127.942 73.575 127.806 73.566 127.654 ; #487 2 72.949 129.171 72.949 129.307 72.989 129.222 72.980 129.058 72.949 129.158 ; #488 2 72.898 129.593 72.939 129.520 72.939 129.383 72.908 129.485 72.898 129.589 ; #489 2 75.388 135.582 75.388 135.864 75.409 136.046 75.508 136.099 75.631 136.355 75.666 136.267 75.710 136.044 75.765 135.997 75.830 135.972 75.865 135.897 75.752 135.771 75.652 135.717 75.597 135.751 75.485 135.626 75.385 135.574 ; #490 2 75.623 137.149 75.668 137.379 75.568 137.349 75.469 137.294 75.438 137.385 75.438 137.526 75.372 137.537 75.351 137.343 75.385 137.243 75.351 137.035 75.285 137.059 75.241 137.126 75.197 137.192 75.155 137.263 75.120 137.350 75.086 137.449 75.055 137.554 75.034 137.666 75.024 137.799 74.993 137.893 74.921 137.922 74.880 137.991 74.852 138.095 74.821 138.182 74.801 138.301 74.792 138.451 74.782 138.586 74.772 138.722 74.763 138.859 74.732 138.957 74.713 139.078 74.682 139.175 74.692 139.359 74.804 139.622 74.885 139.624 74.988 139.664 74.988 139.804 74.978 139.953 74.938 140.035 74.888 140.100 74.849 140.101 74.849 140.127 74.869 140.314 74.878 140.483 74.897 140.657 74.916 140.857 74.935 141.031 74.935 141.184 74.945 141.341 74.954 141.497 74.983 141.702 75.016 141.904 75.016 142.057 75.027 142.232 74.996 142.310 74.945 142.361 74.964 142.241 74.954 142.071 74.914 142.152 74.895 142.284 74.875 142.389 74.847 142.492 74.928 142.802 74.909 142.921 74.909 143.061 74.919 143.245 74.928 143.415 74.928 143.567 74.969 143.795 75.011 143.718 75.042 143.643 75.031 143.481 75.053 143.372 75.074 143.261 75.084 143.130 75.094 143.011 75.094 142.857 75.115 142.746 75.170 142.705 75.215 142.644 75.236 142.520 75.301 142.514 75.336 142.430 75.356 142.331 75.411 142.291 75.501 142.333 75.532 142.243 75.631 142.293 75.652 142.180 75.663 142.358 75.694 142.254 75.684 142.400 75.704 142.585 75.736 142.508 75.736 142.650 75.757 142.848 75.747 142.982 75.736 143.114 75.704 143.204 75.592 142.984 75.479 142.640 75.458 142.666 75.369 142.636 75.336 142.708 75.281 142.775 75.236 142.850 75.215 142.948 75.160 142.975 75.115 143.190 75.105 143.323 75.084 143.434 75.105 143.617 75.094 143.735 75.084 143.867 75.053 143.969 75.042 144.086 75.063 144.283 75.084 144.481 75.197 144.800 75.309 145.008 75.330 144.873 75.351 144.775 75.464 144.899 75.498 145.125 75.542 145.360 75.563 145.545 75.597 145.462 75.629 145.361 75.639 145.242 75.649 145.095 75.660 144.976 75.704 144.914 75.726 144.818 75.736 144.671 75.757 144.560 75.778 144.450 75.799 144.325 75.833 144.212 75.854 144.100 75.865 143.967 75.885 143.855 75.885 143.700 75.841 143.451 75.830 143.262 75.841 143.141 75.851 143.021 75.862 142.875 75.872 142.754 75.904 142.650 75.938 142.579 75.972 142.481 76.003 142.392 76.037 142.291 76.058 142.181 76.079 142.055 76.121 141.971 76.142 141.860 76.152 141.738 76.163 141.591 76.119 141.643 76.077 141.711 76.022 141.753 76.042 141.654 76.053 141.520 76.074 141.407 75.985 141.082 75.909 141.038 75.854 141.081 75.755 141.034 75.710 141.096 75.634 141.109 75.634 140.784 75.644 140.663 75.676 140.572 75.799 140.698 75.820 140.599 75.830 140.452 75.820 140.289 75.830 140.155 75.851 140.098 75.883 140.020 75.972 140.033 75.982 139.884 76.003 139.785 76.024 139.672 76.056 139.568 76.066 139.432 76.087 139.319 76.121 139.219 76.163 139.149 76.218 139.117 76.218 138.931 76.186 138.711 76.074 138.567 76.129 138.535 76.129 138.366 76.016 138.140 76.016 137.997 75.995 137.800 75.883 137.575 75.851 137.667 75.807 137.734 75.752 137.780 75.773 137.666 75.773 137.511 75.707 137.225 75.594 137.085 ; #491 2 74.265 135.561 74.193 135.593 74.174 135.713 74.143 135.799 74.083 135.849 74.055 135.941 74.035 136.059 73.995 136.142 73.966 136.245 73.916 136.311 74.028 136.447 74.059 136.334 74.098 136.261 74.129 136.175 74.160 136.075 74.179 135.956 74.210 135.869 74.239 135.779 74.258 135.660 74.267 135.565 ; #492 2 73.925 140.627 73.956 140.761 73.997 140.971 74.057 141.225 74.138 141.217 74.229 141.238 74.261 141.141 74.280 141.035 74.289 140.900 74.299 140.752 74.289 140.583 74.261 140.382 74.158 140.245 74.076 140.255 74.035 140.335 73.985 140.412 73.956 140.513 73.925 140.624 ; #493 2 73.485 140.208 73.485 140.057 73.466 139.887 73.406 139.922 73.387 140.039 73.396 140.205 73.396 140.231 73.437 140.439 73.475 140.641 73.485 140.808 73.485 140.945 73.475 141.092 73.456 141.222 73.437 141.326 73.418 141.456 73.408 141.589 73.377 141.684 73.358 141.788 73.348 141.921 73.339 142.055 73.329 142.188 73.329 142.338 73.319 142.470 73.300 142.587 73.300 142.736 73.310 142.904 73.290 143.019 73.281 143.165 73.271 143.297 73.262 143.431 73.271 143.585 73.281 143.751 73.343 143.723 73.403 143.693 73.506 143.711 73.556 143.663 73.597 143.584 73.626 143.485 73.667 143.407 73.686 143.303 73.717 143.194 73.748 143.099 73.777 142.986 73.808 142.890 73.868 142.694 73.887 142.564 73.897 142.443 73.916 142.325 73.947 142.229 73.947 141.927 73.928 141.743 73.899 141.555 73.899 141.403 73.889 141.235 73.786 141.030 73.674 140.916 73.571 140.763 73.490 140.471 73.499 140.351 73.490 140.213 ; #494 2 71.694 138.685 71.713 138.864 71.744 138.757 71.725 138.591 71.696 138.689 ; #495 2 76.739 148.831 76.684 148.723 76.695 148.917 76.705 149.054 76.705 149.198 76.715 149.378 76.705 149.500 76.817 149.721 76.807 149.527 76.807 149.370 76.797 149.189 76.786 149.022 76.742 148.840 ; #496 2 74.771 149.286 74.771 149.659 74.799 149.866 74.840 150.095 74.859 150.284 74.878 150.473 74.948 150.758 75.021 150.751 75.134 151.022 75.155 150.927 75.100 150.641 75.120 150.545 75.141 150.450 75.152 150.307 75.207 150.272 75.228 150.151 75.228 150.010 75.238 149.867 75.249 149.736 75.259 149.591 75.270 149.460 75.259 149.283 75.238 149.098 75.204 148.870 75.215 148.753 75.236 148.643 75.267 148.557 75.380 148.658 75.401 148.536 75.411 148.391 75.401 148.227 75.411 148.096 75.411 147.942 75.432 147.845 75.432 147.692 75.333 147.339 75.322 147.162 75.343 147.039 75.354 146.921 75.398 146.818 75.498 146.876 75.542 146.803 75.563 146.692 75.542 146.507 75.476 146.509 75.365 146.285 75.275 146.264 75.186 146.230 75.165 146.339 75.144 146.434 75.134 146.579 75.113 146.703 75.092 146.810 75.071 146.920 75.037 147.014 75.002 147.108 74.983 147.225 74.964 147.330 74.954 147.465 74.954 147.605 74.935 147.736 74.904 147.831 74.875 147.943 74.856 148.048 74.828 148.147 74.809 148.265 74.790 148.396 74.790 148.535 74.771 148.805 74.771 149.279 ; #497 2 76.166 152.859 76.145 152.968 76.258 153.065 76.247 152.871 76.171 152.871 ; #498 2 16.641 42.196 16.715 42.191 16.798 42.157 16.871 42.065 16.781 42.052 16.796 41.948 16.879 41.877 16.920 41.783 16.837 41.844 16.753 41.935 16.738 42.030 16.722 42.133 16.640 42.196 ; #499 2 23.431 90.570 23.439 90.486 23.391 90.576 23.375 90.650 23.433 90.573 ; #500 2 23.031 90.656 22.983 90.725 23.015 90.703 23.031 90.658 ; #501 2 22.716 90.617 22.675 90.619 22.675 90.638 22.592 90.722 22.543 90.732 22.460 90.746 22.370 90.741 22.286 90.711 22.203 90.680 22.188 90.687 22.105 90.665 22.170 90.740 22.087 90.701 22.064 90.733 22.147 90.831 22.230 90.882 22.314 90.903 22.404 90.917 22.420 90.911 22.503 90.932 22.586 90.898 22.669 90.845 22.752 90.762 22.844 90.746 22.844 90.737 22.836 90.640 22.752 90.618 22.720 90.613 ; #502 2 22.483 90.705 22.459 90.692 22.376 90.709 22.424 90.725 22.481 90.705 ; #503 2 22.151 91.088 22.159 91.107 22.242 91.216 22.325 91.237 22.408 91.232 22.491 91.187 22.583 91.135 22.499 91.141 22.408 91.127 22.325 91.123 22.242 91.110 ; #504 2 22.416 91.584 22.424 91.611 22.507 91.624 22.590 91.581 22.673 91.497 22.583 91.474 22.499 91.500 ; #505 2 21.543 91.950 21.576 92.022 21.667 92.044 21.750 92.010 21.799 91.921 21.716 91.927 21.625 91.931 21.542 91.945 ; #506 2 2.362 41.075 1.797 41.070 1.714 41.078 0.052 41.063 -0.820 41.079 -0.911 41.154 -1.002 41.219 -1.101 41.294 -1.191 41.370 -1.283 41.436 -1.381 41.512 -1.472 41.579 -1.563 41.634 -1.619 41.635 -1.611 41.643 -1.528 41.709 -1.445 41.763 -1.354 41.808 -1.271 41.871 -1.188 41.908 -1.097 41.962 -1.014 42.016 -0.839 42.014 -0.923 42.032 -0.849 42.126 -0.758 42.219 -0.675 42.283 -0.592 42.348 -0.509 42.410 -0.426 42.493 -0.335 42.556 -0.251 42.621 -0.029 42.871 0.054 42.936 0.137 43.010 0.221 43.095 0.312 43.159 0.395 43.244 0.410 43.272 0.493 43.347 0.585 43.432 0.668 43.507 0.692 43.525 0.776 43.620 0.942 43.811 1.016 43.905 1.074 44.000 1.140 44.076 1.223 44.151 1.471 44.437 1.544 44.532 1.617 44.636 1.683 44.730 1.757 44.826 1.815 44.920 1.881 45.025 1.896 45.042 1.944 45.146 1.952 45.175 2.000 45.270 2.041 45.364 2.107 45.460 2.155 45.563 2.196 45.627 2.254 45.722 2.310 45.817 2.359 45.912 2.424 46.016 2.498 46.111 2.588 46.175 2.755 46.346 2.838 46.442 2.929 46.537 3.002 46.632 3.086 46.708 3.252 46.878 3.343 46.943 3.426 47.019 3.509 47.094 3.558 47.141 3.641 47.216 3.732 47.292 3.898 47.483 3.981 47.547 4.065 47.594 4.148 47.679 4.231 47.754 4.322 47.830 4.405 47.905 4.461 47.961 4.469 47.961 4.552 48.026 4.635 48.064 4.726 48.111 4.809 48.158 4.900 48.196 4.983 48.252 5.007 48.270 5.098 48.329 5.181 48.406 5.264 48.474 5.347 48.540 5.431 48.597 5.521 48.665 5.604 48.702 5.688 48.762 5.771 48.818 5.862 48.867 6.112 49.014 6.202 49.062 6.285 49.082 6.376 49.076 6.460 49.087 6.626 49.165 6.717 49.194 6.800 49.234 6.883 49.282 6.966 49.321 7.050 49.379 7.133 49.447 7.224 49.495 7.307 49.572 7.390 49.620 7.414 49.630 7.580 49.728 7.671 49.749 7.754 49.806 7.837 49.790 7.870 49.791 7.953 49.820 8.036 49.897 8.102 49.982 8.125 50.038 8.216 50.104 8.300 50.123 8.330 50.151 8.421 50.208 8.505 50.276 8.588 50.296 8.671 50.327 8.762 50.367 8.845 50.387 8.893 50.425 8.984 50.522 9.067 50.608 9.150 50.611 9.224 50.630 9.297 50.727 9.381 50.775 9.472 50.795 9.555 50.771 9.588 50.771 9.679 50.791 9.762 50.794 9.845 50.814 9.936 50.843 9.984 50.852 10.068 50.838 10.159 50.851 10.242 50.855 10.325 50.887 10.348 50.934 10.388 51.031 10.404 51.127 10.396 51.221 10.356 51.314 10.439 51.364 10.464 51.270 10.512 51.169 10.429 51.183 10.414 51.087 10.398 50.983 10.414 50.966 10.505 51.065 10.588 51.115 10.671 51.092 10.762 51.088 10.845 51.082 10.928 51.077 10.977 51.079 11.068 51.112 11.151 51.069 11.234 51.044 11.317 51.048 11.400 51.081 11.483 51.093 11.575 51.144 11.658 51.211 11.741 51.207 11.824 51.184 11.847 51.090 11.863 50.986 11.911 50.894 11.927 50.819 11.942 50.716 11.917 50.620 11.869 50.523 11.786 50.491 11.702 50.450 11.637 50.343 11.571 50.245 11.538 50.148 11.489 50.042 11.481 49.967 11.474 49.883 11.443 49.786 11.443 49.692 11.435 49.588 11.370 49.490 11.321 49.393 11.314 49.298 11.282 49.201 11.267 49.097 11.244 49.001 11.236 48.897 11.236 48.859 11.276 48.749 11.310 48.655 11.302 48.560 11.294 48.464 11.278 48.360 11.213 48.263 11.172 48.166 11.131 48.070 11.116 47.965 11.124 47.853 11.124 47.749 11.099 47.653 11.139 47.560 11.180 47.458 11.165 47.353 11.114 47.248 11.073 47.151 10.983 47.063 10.934 46.967 10.894 46.862 10.828 46.764 10.772 46.658 10.739 46.562 10.706 46.466 10.698 46.361 10.747 46.268 10.787 46.167 10.772 46.071 10.787 45.959 10.838 45.866 10.822 45.848 10.870 45.746 10.797 45.648 10.764 45.552 10.681 45.454 10.655 45.358 10.633 45.254 10.549 45.147 10.516 45.051 10.458 44.974 10.428 44.878 10.450 44.775 10.458 44.681 10.428 44.585 10.420 44.520 10.428 44.425 10.435 44.322 10.476 44.229 10.509 44.192 10.574 44.092 10.599 44.064 10.673 43.962 10.756 43.862 10.847 43.771 11.013 43.624 11.047 43.608 11.129 43.565 11.221 43.484 11.312 43.469 11.352 43.434 11.418 43.332 11.466 43.239 11.451 43.230 11.395 43.199 11.338 43.160 11.172 43.041 11.089 42.991 11.006 42.934 10.932 42.913 10.849 42.826 10.783 42.760 10.693 42.728 10.609 42.670 10.584 42.678 10.501 42.741 10.410 42.793 10.327 42.808 10.243 42.833 10.160 42.905 10.095 42.998 10.004 43.030 9.996 43.030 9.913 43.111 9.872 43.214 9.789 43.230 9.706 43.246 9.615 43.328 9.600 43.328 9.516 43.389 9.433 43.416 9.375 43.510 9.367 43.614 9.276 43.706 9.094 43.909 9.011 44.011 8.980 44.114 8.947 44.217 8.915 44.319 8.881 44.422 8.849 44.516 8.818 44.628 8.802 44.674 8.770 44.777 8.738 44.879 8.706 44.982 8.665 45.085 8.599 45.290 8.566 45.384 8.535 45.487 8.503 45.590 8.469 45.693 8.429 45.795 8.396 45.898 8.363 46.001 8.332 46.104 8.300 46.206 8.266 46.309 8.234 46.411 8.193 46.505 8.160 46.608 8.129 46.711 8.096 46.814 8.063 46.916 8.048 46.962 8.040 46.971 8.040 47.953 7.957 47.867 7.858 47.770 7.843 47.752 7.760 47.666 7.669 47.561 7.585 47.475 7.487 47.378 7.396 47.272 7.297 47.175 7.207 47.070 7.107 46.973 7.024 46.887 6.926 46.790 6.827 46.693 6.736 46.608 6.637 46.511 6.539 46.414 6.448 46.317 6.349 46.221 6.251 46.124 6.243 46.114 6.202 46.076 6.112 45.980 6.020 45.903 5.929 45.817 5.831 45.720 5.732 45.634 5.641 45.549 5.550 45.472 5.542 45.463 5.444 45.366 5.353 45.289 5.254 45.193 5.171 45.116 5.164 45.107 5.065 45.022 5.032 44.992 4.976 44.927 4.983 44.824 4.983 44.721 4.991 44.618 4.999 44.515 5.007 44.412 5.007 44.394 5.015 44.291 5.015 44.188 5.022 44.093 5.030 43.990 4.989 43.877 4.974 43.783 4.959 43.679 4.933 43.585 4.767 43.207 4.701 43.112 4.618 43.017 4.535 42.953 4.451 42.923 4.368 42.839 4.345 42.744 4.345 42.736 4.338 42.671 4.322 42.568 4.299 42.474 4.283 42.379 4.283 42.173 4.250 42.078 4.219 42.042 4.146 41.947 4.063 41.909 4.022 41.880 3.923 41.816 3.824 41.749 3.726 41.684 3.627 41.620 3.529 41.544 3.430 41.479 3.339 41.413 3.241 41.337 3.142 41.242 3.051 41.138 2.952 41.034 2.811 41.015 2.414 41.012 ; #507 2 66.789 70.804 66.692 70.801 66.644 70.908 66.626 71.022 66.608 71.148 66.674 71.319 66.674 71.445 66.682 71.602 66.779 71.617 66.865 71.549 66.933 71.468 66.933 71.456 66.915 71.332 66.858 71.155 66.849 71.022 66.811 70.858 66.793 70.807 ; #508 2 66.811 70.861 66.849 71.025 66.858 71.158 66.915 71.335 66.933 71.459 66.924 71.326 66.868 71.150 66.858 71.017 66.811 70.858 ; #509 2 34.132 60.559 34.049 60.572 33.965 60.586 33.899 60.604 33.808 60.557 33.726 60.572 33.660 60.659 33.629 60.763 33.636 60.773 33.636 60.822 33.629 60.920 33.579 60.978 33.487 60.903 33.404 60.800 33.238 60.651 33.155 60.645 33.064 60.658 32.981 60.700 32.890 60.723 32.806 60.747 32.715 60.778 32.632 60.800 32.549 60.833 32.466 60.857 32.375 60.888 32.292 60.913 32.201 60.886 32.118 60.853 32.077 60.863 31.986 60.865 31.903 60.868 31.812 60.879 31.729 60.855 31.646 60.887 31.562 60.971 31.555 61.077 31.539 61.144 31.532 61.209 31.524 61.306 31.508 61.411 31.500 61.467 31.493 61.565 31.477 61.661 31.470 61.728 31.439 61.780 31.423 61.795 31.340 61.798 31.332 61.796 31.249 61.838 31.166 61.871 31.067 61.852 31.042 61.838 31.034 61.828 30.951 61.821 30.911 61.814 30.820 61.728 30.736 61.646 30.646 61.563 30.562 61.478 30.471 61.395 30.388 61.311 30.222 61.146 30.198 61.132 30.115 61.039 30.100 61.027 30.009 60.941 29.961 60.886 29.935 60.990 29.903 61.084 29.880 61.188 29.854 61.283 29.822 61.386 29.798 61.490 29.773 61.585 29.740 61.687 29.717 61.782 29.692 61.886 29.659 61.989 29.636 62.084 29.611 62.178 29.577 62.281 29.555 62.376 29.521 62.478 29.521 62.577 29.529 62.685 29.537 62.794 29.553 62.894 29.560 63.002 29.568 63.111 29.576 63.210 29.576 63.258 29.583 63.357 29.599 63.467 29.607 63.575 29.599 63.672 29.583 63.777 29.568 63.873 29.553 63.978 29.527 64.073 29.535 64.172 29.619 64.271 29.651 64.374 29.676 64.476 29.684 64.575 29.692 64.684 29.684 64.781 29.684 64.790 29.676 64.896 29.676 64.935 29.669 64.973 29.653 65.018 29.669 65.119 29.692 65.229 29.717 65.331 29.750 65.444 29.773 65.534 29.798 65.636 29.822 65.738 29.829 65.766 29.837 65.815 29.860 65.917 29.885 66.019 29.910 66.121 29.941 66.224 30.025 66.337 30.098 66.324 30.181 66.263 30.264 66.299 30.348 66.343 30.439 66.352 30.529 66.371 30.612 66.330 30.704 66.319 30.787 66.345 30.870 66.371 30.961 66.399 31.044 66.443 31.044 66.453 31.060 66.555 31.143 66.670 31.234 66.725 31.317 66.830 31.340 66.853 31.398 66.964 31.406 67.064 31.340 67.060 31.325 67.135 31.325 67.213 31.317 67.278 31.309 67.375 31.334 67.488 31.359 67.592 31.391 67.697 31.423 67.803 31.431 67.814 31.497 67.729 31.522 67.635 31.605 67.605 31.613 67.705 31.646 67.811 31.719 67.934 31.752 68.040 31.835 68.136 31.909 68.209 31.853 68.305 31.853 68.404 31.827 68.497 31.911 68.545 31.878 68.637 31.863 68.733 31.779 68.763 31.696 68.833 31.704 68.913 31.737 69.019 31.810 69.143 31.893 69.200 31.976 69.284 32.025 69.343 32.108 69.324 32.199 69.304 32.282 69.304 32.373 69.315 32.456 69.293 32.547 69.285 32.631 69.351 32.714 69.457 32.804 69.467 32.888 69.467 32.971 69.534 33.062 69.514 33.145 69.572 33.168 69.607 33.168 69.706 33.201 69.813 33.168 69.914 33.209 70.022 33.209 70.032 33.274 70.146 33.348 70.270 33.431 70.337 33.515 70.268 33.555 70.218 33.638 70.198 33.722 70.206 33.795 70.114 33.818 70.019 33.876 69.974 34.000 69.883 34.083 69.911 34.106 69.953 34.122 70.017 34.089 70.109 34.064 70.212 34.049 70.309 34.033 70.405 34.010 70.509 34.017 70.611 34.025 70.712 34.025 70.821 34.083 70.933 34.114 71.040 34.198 71.107 34.281 71.144 34.313 71.122 34.397 71.159 34.463 71.074 34.553 70.985 34.619 70.991 34.634 71.094 34.718 71.094 34.801 71.191 34.884 71.280 34.967 71.336 35.000 71.453 35.024 71.487 35.057 71.506 35.097 71.517 35.181 71.558 35.264 71.649 35.330 71.558 35.379 71.541 35.379 71.532 35.462 71.625 35.553 71.601 35.637 71.593 35.686 71.507 35.769 71.539 35.853 71.483 35.936 71.426 36.010 71.336 36.050 71.259 36.091 71.191 36.174 71.244 36.258 71.356 36.331 71.477 36.415 71.568 36.506 71.624 36.483 71.728 36.468 71.824 36.551 71.887 36.701 72.130 36.784 72.243 36.807 72.351 36.815 72.454 36.871 72.580 36.879 72.683 36.887 72.796 36.887 72.897 36.894 73.000 36.918 73.116 36.926 73.220 36.926 73.532 36.941 73.647 36.949 73.649 36.949 73.750 36.941 73.858 36.858 74.036 36.941 74.149 36.941 74.260 37.015 74.382 37.046 74.492 37.071 74.567 37.079 74.541 37.153 74.462 37.236 74.496 37.284 74.611 37.325 74.724 37.260 74.806 37.275 74.921 37.358 74.845 37.399 74.746 37.432 74.685 37.417 74.570 37.417 74.541 37.425 74.433 37.465 74.344 37.382 74.230 37.356 74.112 37.331 74.004 37.308 73.896 37.267 73.783 37.282 73.677 37.366 73.760 37.457 73.786 37.465 73.779 37.465 73.678 37.481 73.581 37.506 73.487 37.481 73.369 37.473 73.266 37.432 73.153 37.349 73.070 37.324 72.962 37.267 72.845 37.184 72.750 37.100 72.689 37.059 72.668 37.052 72.565 37.036 72.460 37.029 72.347 36.980 72.232 36.896 72.120 36.838 72.003 36.755 71.878 36.714 71.766 36.729 71.660 36.763 71.601 36.846 71.554 37.013 71.481 37.104 71.447 37.188 71.461 37.362 71.509 37.446 71.503 37.537 71.528 37.620 71.520 37.704 71.544 37.787 71.548 37.879 71.614 37.952 71.594 37.978 71.500 37.945 71.389 37.952 71.280 38.044 71.306 38.211 71.371 38.294 71.375 38.335 71.276 38.393 71.191 38.442 71.103 38.498 71.007 38.482 70.901 38.474 70.797 38.434 70.684 38.350 70.611 38.259 70.549 38.175 70.506 38.092 70.403 38.034 70.326 37.968 70.207 37.884 70.203 37.819 70.286 37.752 70.308 37.661 70.283 37.578 70.190 37.578 70.088 37.593 70.024 37.601 70.008 37.650 69.920 37.616 69.809 37.609 69.696 37.609 69.617 37.560 69.502 37.477 69.409 37.393 69.406 37.302 69.431 37.236 69.441 37.203 69.423 37.188 69.379 37.139 69.265 37.188 69.177 37.195 69.169 37.269 69.088 37.353 69.009 37.368 68.902 37.284 68.850 37.310 68.746 37.236 68.625 37.203 68.557 37.147 68.441 37.155 68.333 37.129 68.308 37.046 68.276 37.054 68.210 36.970 68.087 36.962 68.076 37.003 68.019 37.029 67.985 37.102 67.903 37.135 67.811 37.226 67.816 37.260 67.766 37.282 67.661 37.298 67.564 37.265 67.455 37.258 67.443 37.232 67.335 37.217 67.292 37.300 67.212 37.300 67.202 37.384 67.123 37.415 67.030 37.407 66.917 37.399 66.814 37.374 66.707 37.399 66.602 37.399 66.544 37.374 66.528 37.374 66.417 37.366 66.314 37.399 66.222 37.465 66.137 37.489 66.042 37.513 65.937 37.580 65.853 37.605 65.819 37.513 65.695 37.430 65.683 37.347 65.643 37.281 65.568 37.281 65.365 37.265 65.251 37.281 65.154 37.248 65.045 37.207 64.945 37.141 64.828 37.057 64.826 36.974 64.836 36.883 64.783 36.800 64.734 36.716 64.673 36.625 64.651 36.541 64.670 36.458 64.650 36.367 64.587 36.283 64.467 36.250 64.358 36.209 64.247 36.161 64.125 36.078 64.025 36.070 63.923 36.021 63.801 36.013 63.699 35.955 63.575 35.922 63.466 35.899 63.360 35.899 63.251 35.907 63.152 35.899 63.150 35.815 63.191 35.742 63.273 35.726 63.239 35.652 63.133 35.569 63.153 35.478 63.092 35.445 62.974 35.371 62.856 35.305 62.740 35.290 62.627 35.330 62.537 35.282 62.415 35.198 62.326 35.206 62.328 35.290 62.299 35.315 62.305 35.371 62.259 35.445 62.127 35.493 62.071 35.493 61.961 35.460 61.853 35.476 61.748 35.491 61.651 35.540 61.562 35.598 61.465 35.672 61.424 35.648 61.318 35.565 61.318 35.481 61.270 35.390 61.219 35.307 61.142 35.216 61.140 35.132 61.169 35.041 61.139 35.033 61.128 34.942 61.100 34.859 61.094 34.776 61.020 34.693 61.014 34.619 60.901 34.594 60.786 34.427 60.893 34.371 60.782 34.315 60.663 34.232 60.580 34.141 60.554 34.118 60.559 ; #510 2 1.525 103.832 1.484 103.748 1.401 103.772 1.360 103.865 1.401 103.969 1.484 104.066 1.484 104.031 1.525 103.937 1.525 103.834 ; #511 2 -26.004 113.250 -25.956 113.275 -25.873 113.243 -25.789 113.163 -25.699 113.138 -25.616 113.106 -25.532 113.074 -25.441 113.031 -25.358 113.035 -25.407 112.951 -25.498 112.950 -25.580 112.991 -25.672 113.016 -25.755 113.057 -25.838 113.127 -25.921 113.186 -26.004 113.248 ; #512 2 -25.142 113.091 -25.142 113.100 -25.051 113.104 -24.967 113.120 -24.884 113.122 -24.975 113.101 -25.058 113.093 -25.142 113.089 ; #513 2 -24.859 113.139 -24.776 113.161 -24.693 113.154 -24.776 113.153 ; #514 2 -20.754 115.410 -20.671 115.478 -20.580 115.422 -20.671 115.355 ; #515 2 -20.371 115.555 -20.371 115.565 -20.288 115.548 ; #516 2 -20.305 116.964 -20.290 116.961 -20.249 116.857 ; #517 2 55.022 136.879 54.935 136.769 54.960 136.908 54.960 137.031 54.944 137.138 55.022 137.152 55.120 137.282 55.128 137.168 55.022 136.882 ; #518 2 55.022 137.465 54.935 137.386 54.839 137.346 54.882 137.511 54.866 137.608 54.797 137.652 54.746 137.724 54.677 137.768 54.736 137.940 54.823 138.093 54.910 138.081 55.005 138.166 55.022 138.196 55.082 138.150 55.022 137.983 55.022 137.972 55.120 138.082 55.172 138.027 55.163 137.904 55.172 137.800 55.225 137.737 55.136 137.603 55.039 137.539 ; #519 2 54.032 142.795 53.990 142.874 53.895 142.874 53.808 142.818 53.824 142.957 53.737 142.978 53.713 142.821 53.713 142.709 53.626 142.687 53.609 142.792 53.567 142.870 53.472 142.717 53.403 142.524 53.427 142.427 53.523 142.448 53.549 142.353 53.506 142.197 53.438 142.015 53.351 142.014 53.255 142.027 53.205 142.030 53.146 142.091 53.069 142.124 52.982 142.100 52.895 142.065 52.808 142.050 52.713 142.030 52.626 142.040 52.531 141.984 52.444 141.875 52.357 141.851 52.270 141.850 52.183 141.872 52.096 141.848 52.010 141.870 51.923 141.846 51.890 141.934 51.848 142.011 51.761 141.943 51.708 142.000 51.657 142.069 51.607 142.139 51.565 142.205 51.514 142.264 51.427 142.285 51.376 142.344 51.289 142.366 51.229 142.414 51.134 142.428 51.047 142.383 50.960 142.295 50.865 142.242 50.778 142.241 50.683 142.199 50.596 142.175 50.519 142.207 50.450 142.256 50.363 142.265 50.268 142.266 50.181 142.275 50.094 142.264 50.059 142.249 49.973 142.230 49.888 142.252 49.795 142.248 49.710 142.247 49.539 142.230 49.446 142.192 49.360 142.172 49.275 142.194 49.226 142.162 49.055 142.124 48.962 142.077 48.877 142.024 48.792 141.984 48.706 142.019 48.639 142.069 48.572 142.129 48.514 142.187 48.447 142.238 48.362 142.283 48.268 142.288 48.183 142.301 48.098 142.312 48.012 142.313 47.920 142.223 47.834 142.194 47.749 142.131 47.664 142.101 47.579 142.091 47.485 142.096 47.400 142.108 47.325 142.152 47.239 142.186 47.146 142.182 47.061 142.151 46.976 142.100 46.883 142.053 46.789 142.004 46.704 141.964 46.619 141.934 46.525 141.940 46.441 141.975 46.355 142.010 46.270 142.022 46.177 142.037 46.091 142.059 46.032 142.116 46.024 142.128 45.967 142.186 46.060 142.213 46.145 142.304 46.230 142.346 46.323 142.373 46.409 142.403 46.494 142.465 46.587 142.512 46.673 142.552 46.765 142.650 46.797 142.784 46.756 142.865 46.671 142.909 46.678 143.022 46.671 143.121 46.662 143.221 46.654 143.321 46.605 143.395 46.605 143.502 46.520 143.471 46.435 143.482 46.341 143.509 46.256 143.530 46.171 143.520 46.256 143.582 46.341 143.645 46.426 143.697 46.512 143.687 46.605 143.660 46.690 143.660 46.776 143.649 46.868 143.622 46.910 143.551 46.877 143.416 46.910 143.328 46.853 143.386 46.827 143.480 46.785 143.328 46.835 143.264 46.894 143.208 46.988 143.235 47.073 143.214 47.148 143.161 47.233 143.172 47.319 143.150 47.343 143.141 47.402 143.074 47.459 143.007 47.493 142.929 47.542 142.864 47.610 142.804 47.677 142.755 47.753 142.702 47.828 142.682 47.913 142.670 48.006 142.674 48.092 142.684 48.177 142.705 48.262 142.746 48.356 142.796 48.441 142.836 48.534 142.873 48.619 142.907 48.712 142.967 48.798 143.010 48.891 143.057 48.976 143.111 49.062 143.089 49.154 143.106 49.240 143.180 49.281 143.246 49.339 143.414 49.355 143.536 49.362 143.651 49.362 143.759 49.371 143.681 49.379 143.580 49.371 143.464 49.404 143.375 49.446 143.520 49.396 143.585 49.396 143.694 49.388 143.805 49.355 143.884 49.339 143.978 49.331 144.090 49.307 144.177 49.266 144.259 49.214 144.332 49.156 144.390 49.107 144.455 49.065 144.527 49.023 144.608 48.974 144.674 48.915 144.730 48.839 144.782 48.754 144.803 48.712 144.884 48.780 144.825 48.865 144.835 48.958 144.798 48.992 144.719 49.034 144.638 49.083 144.563 49.143 144.507 49.218 144.464 49.285 144.415 49.371 144.371 49.464 144.344 49.549 144.323 49.635 144.289 49.701 144.239 49.795 144.225 49.870 144.182 49.937 144.132 50.023 144.102 50.058 144.094 50.126 144.067 50.195 144.018 50.256 143.971 50.315 143.912 50.661 143.831 50.748 143.822 50.842 143.810 50.929 143.790 51.007 143.749 51.094 143.741 51.354 143.678 51.267 143.675 51.344 143.645 51.387 143.568 51.474 143.637 51.561 143.616 51.682 143.520 51.595 143.518 51.587 143.400 51.674 143.412 51.769 143.478 51.856 143.471 51.925 143.431 51.909 143.381 51.967 143.331 52.054 143.333 52.149 143.333 52.236 143.348 52.323 143.361 52.392 143.320 52.479 143.366 52.566 143.424 52.479 143.399 52.392 143.397 52.479 143.476 52.566 143.512 52.661 143.536 52.748 143.538 52.835 143.530 52.922 143.509 52.948 143.414 53.025 143.382 53.067 143.315 53.154 143.284 53.250 143.294 53.318 143.254 53.405 143.299 53.379 143.384 53.284 143.350 53.241 143.418 53.181 143.477 53.051 143.487 52.914 143.531 53.009 143.519 53.096 143.498 53.191 143.484 53.268 143.453 53.355 143.421 53.424 143.370 53.458 143.294 53.545 143.307 53.587 143.239 53.664 143.207 53.706 143.139 53.793 143.108 53.852 143.046 53.810 143.125 53.741 143.165 53.818 143.133 53.887 143.092 53.929 143.025 54.016 143.084 54.111 143.162 54.188 143.119 54.309 143.000 54.368 142.938 54.437 142.888 54.342 142.757 54.299 142.600 54.307 142.486 54.255 142.554 54.196 142.616 54.137 142.667 54.095 142.745 54.042 142.803 54.034 142.795 ; #520 2 -15.194 124.265 -15.186 124.291 -15.161 124.295 -15.194 124.263 ; #521 2 59.051 150.613 59.042 150.720 59.140 150.901 59.184 150.840 59.094 150.644 59.051 150.610 ; #522 2 -14.912 124.980 -14.912 124.988 -14.821 124.959 ; #523 2 -14.846 129.636 -14.755 129.624 -14.672 129.558 -14.763 129.587 ; #524 2 -35.922 137.464 -35.897 137.550 -35.864 137.631 -35.780 137.623 -35.749 137.706 -35.716 137.787 -35.732 137.906 -35.765 138.026 -35.732 138.107 -35.649 138.090 -35.582 137.942 -35.649 137.879 -35.608 137.746 -35.600 137.641 -35.516 137.652 -35.460 137.519 -35.460 137.310 -35.484 137.223 -35.516 137.132 -35.532 137.040 -35.540 136.935 -35.555 136.843 -35.580 136.758 -35.604 136.671 -35.629 136.585 -35.713 136.573 -35.804 136.607 -35.887 136.722 -35.895 136.827 -35.902 136.941 -35.880 137.028 -35.887 137.133 -35.839 137.215 -35.854 137.325 -35.920 137.463 ; #525 2 -34.930 136.186 -34.930 136.196 -34.847 136.129 ; #526 2 -11.719 130.568 -11.712 130.613 -11.679 130.704 -11.588 130.637 -11.555 130.537 -11.464 130.526 -11.381 130.449 -11.298 130.455 -11.207 130.414 -11.247 130.325 -11.331 130.241 -11.422 130.262 -11.505 130.264 -11.588 130.237 -11.621 130.146 -11.712 130.176 -11.689 130.277 -11.663 130.368 -11.689 130.467 -11.719 130.566 ; #527 2 -11.273 131.304 -11.182 131.237 -11.190 131.143 -11.273 131.107 -11.207 130.995 -11.247 130.906 -11.263 130.813 -11.240 130.715 -11.157 130.629 -11.116 130.528 -11.199 130.473 -11.282 130.484 -11.373 130.505 -11.456 130.562 -11.548 130.583 -11.606 130.694 -11.689 130.800 -11.737 130.902 -11.793 131.004 -11.770 131.096 -11.704 131.182 -11.663 131.271 -11.615 131.369 -11.524 131.432 -11.491 131.523 -11.408 131.538 -11.325 131.611 -11.242 131.525 -11.151 131.504 -11.136 131.407 -11.094 131.307 -11.178 131.263 -11.269 131.304 -11.277 131.305 ; #528 2 61.616 162.697 61.607 162.814 61.624 162.720 ; #529 2 -42.622 147.311 -42.706 147.386 -42.798 147.486 -42.864 147.433 -42.864 147.537 -42.780 147.554 -42.696 147.540 -42.671 147.624 -42.745 147.786 -42.829 147.870 -42.896 147.808 -42.812 147.762 -42.835 147.667 -42.919 147.671 -43.003 147.717 -43.044 147.853 -42.970 147.899 -43.062 147.970 -42.995 148.023 -42.911 147.967 -42.827 148.006 -42.743 148.012 -42.735 147.902 -42.643 147.903 -42.577 147.956 -42.492 147.973 -42.401 147.922 -42.367 147.999 -42.283 148.026 -42.199 148.031 -42.115 148.027 -42.048 148.079 -41.956 148.090 -41.941 148.182 -41.849 148.161 -41.933 148.255 -42.025 148.307 -42.109 148.311 -42.060 148.377 -41.976 148.372 -41.884 148.311 -41.800 148.318 -41.708 148.286 -41.624 148.284 -41.540 148.289 -41.448 148.309 -41.363 148.274 -41.279 148.281 -41.188 148.302 -41.103 148.297 -41.011 148.245 -40.927 148.284 -40.835 148.304 -40.751 148.240 -40.667 148.085 -40.601 147.931 -40.685 147.893 -40.733 147.827 -40.718 147.703 -40.692 147.581 -40.759 147.529 -40.825 147.467 -40.867 147.395 -40.800 147.242 -40.849 147.177 -40.841 147.058 -40.841 146.955 -40.865 146.870 -40.898 146.792 -40.982 146.894 -41.007 146.923 -41.007 146.811 -40.923 146.756 -40.931 146.650 -40.980 146.584 -40.988 146.477 -41.003 146.449 -41.011 146.342 -41.011 146.332 -41.003 146.235 -40.970 146.107 -40.904 145.954 -40.880 145.824 -40.796 145.710 -40.763 145.574 -40.714 145.434 -40.689 145.312 -40.605 145.268 -40.638 145.190 -40.661 145.096 -40.595 144.944 -40.587 144.825 -40.495 144.685 -40.587 144.662 -40.679 144.681 -40.745 144.628 -40.829 144.610 -40.921 144.647 -41.005 144.671 -41.089 144.693 -41.174 144.756 -41.266 144.753 -41.350 144.825 -41.434 144.879 -41.518 144.914 -41.602 144.996 -41.694 145.065 -41.786 145.194 -41.870 145.248 -41.962 145.276 -42.046 145.236 -41.998 145.312 -42.089 145.381 -42.173 145.465 -42.258 145.528 -42.342 145.488 -42.258 145.444 -42.173 145.361 -42.089 145.237 -42.173 145.219 -42.266 145.247 -42.434 145.271 -42.518 145.366 -42.602 145.379 -42.686 145.433 -42.778 145.502 -42.862 145.636 -42.946 145.681 -43.030 145.764 -43.115 145.828 -43.089 145.913 -43.131 146.049 -43.123 146.157 -43.214 146.236 -43.256 146.154 -43.189 145.999 -43.281 146.008 -43.365 146.022 -43.350 146.124 -43.334 146.216 -43.350 146.333 -43.383 146.472 -43.334 146.539 -43.418 146.632 -43.451 146.772 -43.467 146.889 -43.383 146.887 -43.316 146.950 -43.250 147.003 -43.166 146.989 -43.150 147.081 -43.066 146.997 -42.982 146.974 -43.013 147.102 -43.097 147.157 -43.089 147.255 -43.005 147.241 -42.939 147.294 -42.847 147.327 -42.762 147.366 -42.678 147.321 -42.622 147.287 ; #530 2 45.554 148.924 45.554 148.818 45.469 148.650 45.383 148.544 45.308 148.362 45.300 148.249 45.308 148.141 45.394 148.110 45.461 148.054 45.376 147.980 45.291 147.998 45.197 147.834 45.112 147.769 45.128 147.668 45.035 147.596 44.950 147.498 44.866 147.340 44.774 147.217 44.715 147.286 44.674 147.139 44.583 147.049 44.498 146.974 44.441 147.034 44.525 147.141 44.574 147.294 44.667 147.397 44.751 147.492 44.842 147.656 44.927 147.722 45.011 147.747 44.987 147.833 45.003 147.960 45.096 148.103 45.181 148.249 45.267 148.429 45.293 148.557 45.360 148.732 45.352 148.830 45.445 148.932 45.531 148.965 45.556 148.926 ; #531 2 -39.840 143.860 -39.874 143.862 -39.965 143.858 -39.949 143.961 -39.901 144.033 -39.844 144.101 -39.804 144.116 -39.720 144.096 -39.637 144.104 -39.545 144.098 -39.462 144.047 -39.437 143.929 -39.520 143.921 -39.586 143.859 -39.678 143.856 -39.761 143.826 -39.844 143.868 ; #532 2 -40.444 144.738 -40.444 144.747 -40.352 144.760 -40.268 144.748 -40.352 144.698 ; #533 2 -43.109 147.387 -43.068 147.459 -42.984 147.384 -43.068 147.367 -43.160 147.263 -43.216 147.193 -43.250 147.114 -43.341 147.205 -43.267 147.252 -43.352 147.307 -43.277 147.354 -43.193 147.359 ; #534 2 46.091 150.151 45.998 150.035 45.913 149.940 45.897 149.811 45.804 149.738 45.719 149.642 45.634 149.577 45.634 149.692 45.709 149.865 45.802 149.990 45.877 150.140 45.963 150.321 46.048 150.378 46.141 150.533 46.226 150.673 46.260 150.597 46.234 150.458 46.149 150.330 46.107 150.187 46.091 150.153 ; #535 2 -13.739 136.269 -13.674 136.344 -13.591 136.350 -13.567 136.252 -13.658 136.255 -13.741 136.267 ; #536 2 -14.072 136.430 -14.105 136.530 -14.138 136.629 -14.161 136.737 -14.146 136.830 -14.161 136.927 -14.112 137.025 -14.029 137.042 -14.086 136.954 -14.029 136.851 -13.946 136.785 -13.905 136.874 -13.822 136.845 -13.782 136.934 -13.698 136.978 -13.691 136.882 -13.724 136.791 -13.641 136.753 -13.550 136.805 -13.583 136.706 -13.666 136.700 -13.666 136.604 -13.698 136.514 -13.790 136.509 -13.873 136.482 -13.956 136.494 -14.039 136.488 -14.072 136.437 ; #537 2 -11.969 136.274 -11.946 136.288 -11.863 136.371 -11.886 136.280 ; #538 2 -11.570 136.256 -11.538 136.336 -11.482 136.432 -11.399 136.495 -11.472 136.410 -11.487 136.318 -11.570 136.254 ; #539 2 -38.416 145.388 -38.383 145.378 -38.300 145.317 -38.315 145.224 -38.381 145.154 -38.373 145.250 -38.414 145.387 ; #540 2 50.922 155.621 50.861 155.672 50.844 155.774 50.931 155.827 50.974 155.755 50.923 155.622 ; #541 2 -15.709 137.119 -15.685 137.132 -15.602 137.124 -15.511 137.106 -15.534 137.006 -15.618 137.032 -15.709 137.117 ; #542 2 47.174 152.381 47.081 152.244 46.995 152.114 46.910 152.037 46.910 151.920 46.817 151.930 46.910 152.098 46.995 152.238 47.081 152.326 47.174 152.443 ; #543 2 -38.282 145.398 -38.259 145.424 -38.176 145.410 -38.191 145.318 -38.282 145.394 ; #544 2 -11.339 136.575 -11.331 136.592 -11.257 136.677 -11.174 136.721 -11.091 136.793 -11.008 136.810 -10.925 136.808 -11.008 136.790 -11.091 136.727 -11.174 136.663 -11.341 136.573 ; #545 2 50.036 155.520 50.123 155.575 50.209 155.711 50.217 155.840 50.304 156.022 50.391 156.109 50.487 156.181 50.574 156.298 50.668 156.275 50.755 156.288 50.814 156.234 50.719 156.042 50.632 156.008 50.545 155.944 50.450 155.849 50.424 155.711 50.400 155.565 50.339 155.388 50.244 155.370 50.157 155.349 50.088 155.382 50.080 155.492 50.037 155.519 ; #546 2 48.094 153.407 48.086 153.462 48.094 153.459 48.161 153.414 48.094 153.404 ; #547 2 47.769 153.149 47.761 153.259 47.846 153.253 47.771 153.154 ; #548 2 49.208 154.605 49.115 154.635 49.208 154.650 49.208 154.607 ; #549 2 50.903 156.649 50.895 156.530 50.808 156.360 50.713 156.350 50.687 156.440 50.670 156.531 50.663 156.555 50.757 156.628 50.844 156.662 50.903 156.651 ; #550 2 -40.436 148.166 -40.420 148.193 -40.336 148.210 -40.352 148.119 -40.436 148.164 ; #551 2 -40.344 148.321 -40.329 148.389 -40.244 148.416 -40.160 148.283 -40.176 148.192 -40.184 148.086 -40.217 148.009 -40.301 148.073 -40.285 148.173 ; #552 2 -39.840 147.874 -39.924 147.917 -40.100 148.041 -40.100 148.143 -40.015 148.284 -39.932 148.248 -39.840 148.250 -39.808 148.269 -39.767 148.132 -39.683 148.051 -39.592 147.903 -39.676 147.844 -39.759 147.865 -39.842 147.878 ; #553 2 -16.641 139.226 -16.583 139.290 -16.608 139.391 -16.517 139.456 -16.484 139.545 -16.394 139.582 -16.417 139.691 -16.409 139.785 -16.318 139.709 -16.293 139.608 -16.326 139.519 -16.341 139.418 -16.382 139.331 -16.465 139.252 -16.556 139.233 -16.639 139.224 ; #554 2 -17.022 139.504 -16.997 139.554 -16.981 139.647 -16.898 139.621 -16.939 139.533 ; #555 2 70.851 160.916 70.882 160.844 70.933 160.795 70.964 160.711 70.861 160.657 70.841 160.752 70.841 160.898 ; #556 2 70.009 168.242 69.911 167.973 69.814 167.953 69.796 168.064 69.778 168.187 69.731 168.244 69.704 168.339 69.685 168.448 69.667 168.571 69.650 168.682 69.632 168.780 69.613 168.902 69.595 169.012 69.605 169.172 69.595 169.286 69.702 169.454 69.769 169.434 69.866 169.571 69.904 169.509 69.913 169.371 69.931 169.260 69.940 169.134 69.949 169.006 69.968 168.908 69.985 168.785 70.004 168.675 70.013 168.551 70.032 168.433 70.013 168.252 ; #557 2 71.572 -179.724 71.490 179.951 71.387 179.579 71.285 179.237 71.182 179.027 71.079 178.869 71.019 178.884 70.978 178.942 70.938 178.987 70.878 179.002 70.837 179.060 70.906 179.356 70.925 179.554 70.906 179.646 70.916 179.812 71.019 -179.833 71.028 -179.774 71.028 -179.696 71.009 -179.580 70.990 -179.476 70.971 -179.386 70.940 -179.295 70.949 -179.131 70.949 -178.972 70.968 -178.798 70.997 -178.577 71.007 -178.398 71.047 -178.163 71.047 -178.030 71.067 -177.854 71.086 -177.667 71.155 -177.381 71.258 -177.270 71.308 -177.305 71.318 -177.428 71.356 -177.491 71.387 -177.568 71.419 -177.672 71.438 -177.789 71.488 -177.823 71.519 -177.925 71.529 -178.050 71.570 -178.106 71.579 -178.231 71.598 -178.348 71.608 -178.475 71.617 -178.612 71.627 -178.736 71.586 -178.974 71.577 -179.152 71.586 -179.279 71.605 -179.383 71.605 -179.517 71.555 -179.762 ; #558 2 -33.416 115.140 -33.375 115.025 -33.360 114.920 -33.443 114.885 -33.526 114.886 -33.609 114.881 -33.692 114.883 -33.783 114.888 -33.867 114.892 -33.950 114.915 -34.041 114.940 -34.124 115.032 -34.066 115.110 -34.066 115.210 -34.116 115.329 -34.182 115.454 -34.265 115.574 -34.338 115.672 -34.422 115.753 -34.505 115.825 -34.588 115.894 -34.603 116.010 -34.637 116.123 -34.677 116.238 -34.677 116.347 -34.760 116.340 -34.776 116.455 -34.784 116.559 -34.784 116.659 -34.806 116.767 -34.784 116.859 -34.791 116.962 -34.766 117.061 -34.791 117.171 -34.806 117.277 -34.840 117.399 -34.824 117.493 -34.799 117.583 -34.857 117.706 -34.872 117.740 -34.840 117.837 -34.784 117.715 -34.784 117.764 -34.776 117.860 -34.751 117.951 -34.766 118.066 -34.683 118.081 -34.667 118.185 -34.601 118.259 -34.518 118.305 -34.470 118.386 -34.447 118.476 -34.414 118.563 -34.331 118.608 -34.283 118.689 -34.225 118.766 -34.217 118.863 -34.232 118.968 -34.290 119.101 -34.217 119.172 -34.225 119.284 -34.141 119.280 -34.157 119.396 -34.074 119.363 -33.982 119.414 -33.899 119.469 -33.843 119.546 -33.803 119.639 -33.737 119.721 -33.737 119.821 -33.696 119.904 -33.696 119.913 -33.711 120.029 -33.704 120.125 -33.719 120.231 -33.735 120.346 -33.694 120.430 -33.663 120.526 -33.663 120.625 -33.638 120.715 -33.630 120.811 -33.630 120.911 -33.615 121.014 -33.607 121.110 -33.592 121.212 -33.584 121.309 -33.592 121.421 -33.648 121.532 -33.640 121.628 -33.656 121.743 -33.607 121.823 -33.615 121.926 -33.698 121.988 -33.781 122.040 -33.781 122.149 -33.698 122.203 -33.683 122.297 -33.708 122.407 -33.667 122.490 -33.667 122.698 -33.659 122.794 -33.644 122.897 -33.700 123.020 -33.783 123.044 -33.760 123.134 -33.702 123.210 -33.671 123.306 -33.711 123.423 -33.654 123.498 -33.598 123.584 -33.514 123.637 -33.441 123.707 -33.375 123.779 -33.335 123.861 -33.251 123.875 -33.160 123.904 -33.070 123.946 -32.986 123.990 -32.903 124.022 -32.829 124.100 -32.781 124.179 -32.741 124.261 -32.725 124.354 -32.718 124.460 -32.702 124.552 -32.686 124.654 -32.646 124.736 -32.596 124.815 -32.547 124.894 -32.514 124.988 -32.466 125.067 -32.425 125.150 -32.385 125.241 -32.377 125.337 -32.344 125.422 -32.288 125.507 -32.240 125.586 -32.189 125.664 -32.133 125.739 -32.100 125.834 -32.077 125.923 -32.085 126.004 -32.044 126.086 -32.060 126.201 -32.093 126.314 -32.100 126.425 -32.116 126.531 -32.108 126.636 -32.108 126.834 -32.100 126.939 -32.100 127.038 -32.085 127.119 -32.077 127.215 -32.052 127.313 -32.027 127.401 -31.986 127.482 -31.963 127.571 -31.938 127.659 -31.922 127.761 -31.907 127.853 -31.891 127.955 -31.858 128.040 -31.826 128.134 -31.794 128.219 -31.762 128.314 -31.696 128.483 -31.655 128.565 -31.615 128.655 -31.574 128.736 -31.533 128.827 -31.510 128.916 -31.503 128.943 -31.495 129.047 -31.479 129.139 -31.471 129.235 -31.464 129.330 -31.448 129.422 -31.448 129.531 -31.441 129.626 -31.441 129.724 -31.425 129.816 -31.418 129.912 -31.418 130.020 -31.410 130.115 -31.410 130.313 -31.425 130.419 -31.418 130.524 -31.433 130.628 -31.433 130.737 -31.400 130.821 -31.375 130.909 -31.326 130.986 -31.301 131.074 -31.342 131.200 -31.382 131.316 -31.433 131.437 -31.489 131.570 -31.555 131.698 -31.638 131.822 -31.711 131.962 -31.794 132.057 -31.860 132.185 -31.835 132.273 -31.851 132.388 -31.768 132.411 -31.752 132.503 -31.777 132.622 -31.785 132.724 -31.834 132.773 -31.916 132.879 -31.967 133.010 -32.007 133.127 -32.015 133.239 -32.015 133.338 -31.932 133.358 -31.973 133.485 -31.924 133.562 -31.924 133.571 -31.939 133.587 -32.023 133.643 -32.106 133.768 -32.189 133.835 -32.255 133.766 -32.338 133.755 -32.313 133.852 -32.280 133.936 -32.272 134.032 -32.356 134.136 -32.439 134.183 -32.530 134.185 -32.613 134.124 -32.547 134.112 -32.532 134.006 -32.622 134.019 -32.706 133.978 -32.797 134.107 -32.880 134.145 -32.963 134.164 -32.994 134.277 -32.979 134.369 -33.019 134.487 -32.979 134.577 -33.062 134.576 -33.153 134.696 -33.236 134.734 -33.319 134.753 -33.410 134.736 -33.493 134.793 -33.576 134.909 -33.659 134.996 -33.751 135.086 -33.857 135.134 -33.940 135.133 -34.023 135.181 -34.114 135.213 -34.197 135.221 -34.288 135.254 -34.371 135.243 -34.331 135.115 -34.240 135.064 -34.313 134.998 -34.404 134.961 -34.381 135.050 -34.430 135.172 -34.513 135.250 -34.603 135.340 -34.687 135.427 -34.702 135.534 -34.669 135.619 -34.753 135.725 -34.818 135.786 -34.735 135.826 -34.652 135.816 -34.561 135.852 -34.594 135.759 -34.627 135.674 -34.544 135.724 -34.453 135.712 -34.370 135.774 -34.319 135.850 -34.335 135.957 -34.244 135.974 -34.161 135.984 -34.128 136.069 -33.961 136.191 -33.870 136.237 -33.787 136.398 -33.721 136.468 -33.689 136.562 -33.648 136.642 -33.615 136.727 -33.584 136.812 -33.501 136.813 -33.524 136.923 -33.516 137.028 -33.451 137.097 -33.367 137.158 -33.284 137.198 -33.201 137.259 -33.118 137.269 -33.027 137.326 -32.944 137.366 -32.887 137.439 -32.804 137.488 -32.779 137.576 -32.731 137.653 -32.640 137.698 -32.557 137.690 -32.466 137.638 -32.383 137.648 -32.390 137.700 -32.473 137.729 -32.557 137.807 -32.648 137.792 -32.731 137.821 -32.814 137.842 -32.897 137.929 -32.963 137.851 -32.994 137.766 -33.068 137.701 -33.158 137.762 -33.242 137.782 -33.325 137.821 -33.408 137.802 -33.458 137.726 -33.506 137.648 -33.598 137.582 -33.646 137.505 -33.729 137.484 -33.787 137.411 -33.870 137.413 -33.954 137.363 -34.037 137.344 -34.128 137.347 -34.211 137.316 -34.285 137.332 -34.375 137.335 -34.458 137.334 -34.549 137.318 -34.633 137.290 -34.723 137.274 -34.749 137.186 -34.716 137.070 -34.723 136.974 -34.708 136.867 -34.782 136.801 -34.865 136.780 -34.956 136.754 -35.004 136.677 -35.088 136.676 -35.080 136.771 -35.031 136.853 -35.047 136.962 -34.990 137.031 -34.975 137.133 -34.934 137.215 -34.934 137.315 -34.967 137.439 -34.960 137.536 -34.868 137.560 -34.785 137.600 -34.695 137.637 -34.611 137.686 -34.528 137.715 -34.437 137.742 -34.430 137.748 -34.346 137.728 -34.255 137.764 -34.189 137.833 -34.106 137.894 -34.016 137.891 -33.942 137.956 -34.033 138.017 -34.116 138.066 -34.199 138.095 -34.283 138.116 -34.366 138.194 -34.449 138.270 -34.540 138.332 -34.623 138.312 -34.714 138.316 -34.797 138.325 -34.888 138.300 -34.971 138.270 -35.054 138.277 -35.138 138.265 -35.186 138.192 -35.260 138.134 -35.309 138.053 -35.342 137.971 -35.425 137.919 -35.474 138.047 -35.450 138.103 -35.466 138.213 -35.458 138.318 -35.433 138.404 -35.367 138.466 -35.342 138.552 -35.349 138.666 -35.357 138.770 -35.317 138.638 -35.309 138.742 -35.324 138.852 -35.241 138.774 -35.190 138.845 -35.182 138.949 -35.116 139.011 -35.173 139.154 -35.180 139.177 -35.264 139.185 -35.289 139.090 -35.373 139.139 -35.456 139.169 -35.497 139.082 -35.414 139.044 -35.322 139.000 -35.338 138.900 -35.421 138.889 -35.505 139.027 -35.588 139.145 -35.672 139.251 -35.763 139.363 -35.846 139.442 -35.930 139.481 -36.013 139.511 -35.930 139.452 -35.881 139.415 -35.790 139.343 -35.707 139.258 -35.615 139.135 -35.532 139.028 -35.448 138.900 -35.375 138.748 -35.466 138.889 -35.550 139.027 -35.633 139.142 -35.724 139.244 -35.808 139.323 -35.891 139.411 -35.982 139.474 -36.149 139.571 -36.232 139.610 -36.324 139.664 -36.407 139.694 -36.491 139.714 -36.582 139.719 -36.638 139.712 -36.704 139.640 -36.745 139.563 -36.829 139.602 -36.912 139.642 -36.995 139.611 -37.086 139.674 -37.170 139.741 -37.253 139.821 -37.294 139.864 -37.287 139.930 -37.370 139.979 -37.454 140.077 -37.545 140.140 -37.636 140.194 -37.744 140.326 -37.836 140.482 -37.861 140.608 -37.853 140.714 -37.861 140.820 -37.861 140.829 -37.917 140.973 -38.001 141.113 -38.092 141.217 -38.176 141.217 -38.168 141.314 -38.193 141.439 -38.101 141.475 -38.071 141.558 -38.063 141.655 -38.088 141.781 -38.162 141.926 -38.195 142.048 -38.170 142.144 -38.162 142.240 -38.202 142.366 -38.286 142.518 -38.369 142.649 -38.410 142.775 -38.433 142.890 -38.517 143.021 -38.550 143.143 -38.583 143.274 -38.649 143.352 -38.598 143.423 -38.558 143.510 -38.509 143.582 -38.486 143.670 -38.427 143.736 -38.371 143.812 -38.298 143.869 -38.264 143.951 -38.216 144.033 -38.183 144.114 -38.135 144.186 -38.127 144.212 -38.094 144.293 -38.086 144.399 -38.086 144.501 -38.013 144.557 -37.971 144.431 -37.987 144.339 -37.971 144.228 -37.923 144.300 -37.874 144.372 -37.842 144.453 -37.808 144.544 -37.768 144.620 -37.702 144.691 -37.679 144.778 -37.770 144.843 -37.844 144.938 -37.927 144.979 -38.011 144.929 -38.043 144.899 -38.109 144.838 -38.176 144.768 -38.191 144.676 -38.135 144.540 -38.218 144.641 -38.309 144.736 -38.309 144.866 -38.253 144.933 -38.220 145.015 -38.137 145.044 -38.071 145.105 -38.047 145.192 -38.047 145.294 -38.131 145.364 -38.214 145.378 -38.230 145.276 -38.321 145.273 -38.405 145.355 -38.488 145.425 -38.472 145.527 -38.457 145.619 -38.540 145.661 -38.632 145.717 -38.715 145.750 -38.699 145.842 -38.634 145.903 -38.725 146.049 -38.808 146.092 -38.891 146.162 -38.958 146.203 -38.901 146.270 -38.810 146.263 -38.727 146.313 -38.643 146.301 -38.676 146.211 -38.732 146.144 -38.641 146.097 -38.558 146.026 -38.517 146.112 -38.550 146.244 -38.517 146.325 -38.517 146.427 -38.501 146.519 -38.486 146.621 -38.511 146.676 -38.445 146.747 -38.397 146.818 -38.331 146.888 -38.282 146.959 -38.226 147.026 -38.168 147.091 -38.119 147.162 -38.063 147.238 -38.013 147.309 -37.956 147.375 -37.908 147.455 -37.867 147.531 -37.826 147.607 -37.785 147.693 -37.752 147.773 -37.727 147.859 -37.711 147.951 -37.686 148.036 -37.671 148.137 -37.663 148.243 -37.655 148.339 -37.655 148.552 -37.640 148.643 -37.640 148.754 -37.632 148.850 -37.632 149.062 -37.640 149.169 -37.640 149.178 -37.632 149.274 -37.607 149.359 -37.576 149.451 -37.543 149.531 -37.469 149.586 -37.386 149.601 -37.401 149.722 -37.378 149.808 -37.362 149.848 -37.271 149.818 -37.187 149.836 -37.104 149.862 -37.020 149.869 -37.005 149.859 -36.964 149.732 -36.906 149.796 -36.823 149.784 -36.739 149.781 -36.656 149.817 -36.564 149.839 -36.523 149.851 -36.450 149.905 -36.359 149.897 -36.275 149.914 -36.192 149.962 -36.108 149.978 -36.025 149.956 -35.934 149.948 -35.850 149.984 -35.767 149.980 -35.711 150.045 -35.619 150.037 -35.578 150.112 -35.495 150.148 -35.412 150.205 -35.328 150.211 -35.262 150.270 -35.171 150.280 -35.088 150.328 -35.047 150.402 -35.047 150.511 -34.963 150.482 -34.880 150.518 -34.963 150.591 -34.880 150.648 -34.855 150.577 -34.772 150.574 -34.689 150.568 -34.640 150.643 -34.557 150.670 -34.474 150.695 -34.383 150.638 -34.368 150.730 -34.285 150.736 -34.193 150.757 -34.120 150.819 -34.064 150.899 -34.006 150.968 -33.922 151.005 -33.839 151.020 -33.832 151.116 -33.749 151.142 -33.658 151.144 -33.574 151.168 -33.491 151.194 -33.499 151.150 -33.416 151.089 -33.416 151.198 -33.393 151.285 -33.309 151.320 -33.218 151.292 -33.153 151.367 -33.112 151.446 -33.029 151.491 -32.946 151.526 -32.887 151.595 -32.804 151.652 -32.739 151.727 -32.673 151.891 -32.665 151.995 -32.599 152.060 -32.592 151.957 -32.568 152.045 -32.495 152.115 -32.447 152.189 -32.389 152.259 -32.348 152.337 -32.325 152.412 -32.242 152.399 -32.150 152.410 -32.067 152.415 -31.984 152.390 -31.901 152.426 -31.828 152.496 -31.762 152.560 -31.688 152.621 -31.615 152.692 -31.523 152.723 -31.441 152.728 -31.375 152.802 -31.292 152.789 -31.209 152.833 -31.117 152.814 -31.027 152.854 -30.944 152.910 -30.860 152.897 -30.777 152.910 -30.686 152.825 -30.603 152.830 -30.512 152.831 -30.429 152.836 -30.346 152.871 -30.263 152.906 -30.179 152.941 -30.096 152.965 -30.005 152.986 -29.922 152.981 -29.897 153.010 -29.813 153.055 -29.730 153.080 -29.640 153.084 -29.556 153.118 -29.473 153.125 -29.382 153.155 -29.299 153.171 -29.216 153.148 -29.125 153.191 -29.051 153.260 -28.968 153.257 -28.885 153.312 -28.812 153.390 -28.728 153.436 -28.637 153.439 -28.554 153.455 -28.463 153.401 -28.380 153.397 -28.289 153.409 -28.206 153.425 -28.123 153.411 -28.049 153.344 -28.009 153.298 -27.925 153.285 -27.834 153.277 -27.751 153.283 -27.661 153.221 -27.577 153.159 -27.494 153.145 -27.411 153.113 -27.328 153.016 -27.237 152.933 -27.153 152.949 -27.070 152.878 -26.997 152.957 -26.989 153.051 -26.815 152.984 -26.732 152.982 -26.641 152.977 -26.558 152.945 -26.474 152.949 -26.391 152.935 -26.301 152.957 -26.217 152.896 -26.126 152.908 -26.043 152.935 -25.960 152.960 -25.869 153.002 -25.786 152.904 -25.869 152.839 -25.786 152.837 -25.703 152.805 -25.678 152.777 -25.586 152.686 -25.503 152.693 -25.420 152.758 -25.337 152.726 -25.246 152.710 -25.163 152.621 -25.170 152.518 -25.105 152.397 -25.022 152.356 -24.931 152.299 -24.848 152.277 -24.764 152.284 -24.681 152.214 -24.673 152.212 -24.666 152.192 -24.633 152.086 -24.559 151.970 -24.476 151.900 -24.385 151.837 -24.302 151.797 -24.219 151.775 -24.128 151.733 -24.070 151.699 -23.979 151.589 -23.906 151.473 -23.989 151.495 -23.973 151.394 -23.917 151.282 -23.925 151.248 -23.876 151.218 -23.786 151.146 -23.737 151.027 -23.654 150.967 -23.571 150.927 -23.629 150.981 -23.712 151.050 -23.697 151.093 -23.605 151.105 -23.522 151.047 -23.432 151.004 -23.373 150.883 -23.456 150.858 -23.540 150.898 -23.492 150.858 -23.484 150.760 -23.443 150.643 -23.360 150.657 -23.277 150.626 -23.186 150.658 -23.103 150.609 -23.012 150.594 -22.928 150.590 -22.845 150.615 -22.754 150.629 -22.671 150.646 -22.580 150.612 -22.497 150.552 -22.449 150.557 -22.358 150.525 -22.275 150.456 -22.315 150.361 -22.406 150.375 -22.489 150.359 -22.433 150.248 -22.350 150.141 -22.267 150.023 -22.184 149.954 -22.093 149.833 -22.100 149.835 -22.184 149.781 -22.267 149.773 -22.350 149.786 -22.433 149.835 -22.456 149.841 -22.540 149.836 -22.516 149.812 -22.433 149.755 -22.350 149.686 -22.381 149.597 -22.414 149.509 -22.331 149.535 -22.247 149.483 -22.164 149.423 -22.081 149.401 -21.990 149.360 -21.907 149.329 -21.824 149.308 -21.733 149.275 -21.642 149.309 -21.559 149.287 -21.475 149.321 -21.460 149.221 -21.377 149.152 -21.294 149.140 -21.210 149.109 -21.187 149.047 -21.104 149.034 -21.013 149.049 -20.930 148.931 -20.847 148.862 -20.824 148.760 -20.839 148.658 -20.748 148.673 -20.665 148.575 -20.582 148.554 -20.499 148.523 -20.408 148.566 -20.392 148.658 -20.475 148.765 -20.392 148.705 -20.344 148.664 -20.261 148.633 -20.170 148.592 -20.177 148.489 -20.087 148.401 -20.003 148.370 -20.003 148.274 -20.087 148.295 -20.112 148.206 -20.029 148.088 -19.946 148.096 -19.895 148.058 -19.880 147.958 -19.846 147.846 -19.846 147.750 -19.763 147.685 -19.673 147.674 -19.698 147.583 -19.781 147.572 -19.723 147.455 -19.624 147.434 -19.617 147.423 -19.533 147.414 -19.450 147.378 -19.367 147.322 -19.276 147.255 -19.367 147.275 -19.359 147.177 -19.367 147.074 -19.342 146.973 -19.259 146.908 -19.168 146.879 -19.251 146.801 -19.218 146.698 -19.135 146.615 -19.135 146.519 -19.079 146.411 -18.996 146.297 -18.912 146.203 -18.829 146.139 -18.738 146.148 -18.655 146.168 -18.572 146.206 -18.489 146.206 -18.481 146.195 -18.448 146.083 -18.365 146.056 -18.274 145.952 -18.191 145.888 -18.108 145.878 -18.017 145.905 -17.933 145.963 -17.850 145.972 -17.767 145.972 -17.684 145.981 -17.593 146.019 -17.510 145.963 -17.427 145.945 -17.336 145.935 -17.252 145.880 -17.169 145.835 -17.086 145.817 -17.003 145.752 -16.920 145.799 -16.829 145.817 -16.844 145.725 -16.900 145.633 -16.834 145.645 -16.751 145.581 -16.668 145.498 -16.585 145.425 -16.494 145.368 -16.411 145.275 -16.328 145.285 -16.245 145.314 -16.161 145.306 -16.070 145.324 -15.987 145.315 -15.904 145.260 -15.813 145.222 -15.730 145.223 -15.639 145.194 -15.556 145.176 -15.472 145.112 -15.389 145.085 -15.299 145.141 -15.215 145.199 -15.157 145.091 -15.074 145.083 -14.991 145.132 -14.900 145.183 -14.875 145.095 -14.791 145.065 -14.791 144.969 -14.751 144.868 -14.668 144.789 -14.577 144.721 -14.511 144.607 -14.478 144.507 -14.387 144.465 -14.304 144.435 -14.221 144.440 -14.155 144.336 -14.238 144.264 -14.279 144.165 -14.223 144.062 -14.306 144.048 -14.389 143.964 -14.445 143.877 -14.453 143.784 -14.413 143.674 -14.329 143.624 -14.246 143.594 -14.163 143.573 -14.072 143.568 -13.989 143.556 -13.898 143.479 -13.857 143.473 -13.766 143.422 -13.683 143.419 -13.600 143.436 -13.517 143.470 -13.426 143.474 -13.343 143.454 -13.260 143.404 -13.169 143.400 -13.085 143.388 -12.994 143.383 -12.911 143.389 -12.820 143.349 -12.812 143.244 -12.722 143.259 -12.639 143.285 -12.555 143.273 -12.482 143.167 -12.398 143.164 -12.315 143.068 -12.275 142.958 -12.191 142.975 -12.101 142.997 -12.018 143.052 -11.944 143.136 -11.911 143.036 -11.903 142.940 -11.878 142.832 -11.795 142.745 -11.712 142.751 -11.621 142.738 -11.538 142.717 -11.447 142.704 -11.363 142.747 -11.281 142.709 -11.190 142.667 -11.106 142.672 -11.023 142.643 -10.940 142.547 -10.849 142.487 -10.897 142.391 -10.806 142.433 -10.723 142.487 -10.690 142.379 -10.731 142.290 -10.789 142.281 -10.872 142.208 -10.895 142.108 -10.929 142.018 -11.094 142.042 -11.178 142.027 -11.269 142.023 -11.352 142.008 -11.443 141.983 -11.526 141.949 -11.610 141.924 -11.700 141.899 -11.791 141.865 -11.874 141.851 -11.958 141.889 -12.041 141.910 -12.041 141.815 -11.958 141.748 -12.041 141.696 -12.124 141.671 -12.207 141.711 -12.223 141.609 -12.313 141.596 -12.396 141.552 -12.480 141.518 -12.536 141.535 -12.462 141.619 -12.546 141.695 -12.579 141.795 -12.662 141.807 -12.695 141.907 -12.751 141.820 -12.834 141.814 -12.751 141.793 -12.660 141.705 -12.751 141.680 -12.834 141.617 -12.882 141.529 -12.965 141.513 -13.056 141.526 -13.139 141.546 -13.223 141.596 -13.314 141.571 -13.322 141.555 -13.362 141.523 -13.453 141.471 -13.536 141.437 -13.619 141.411 -13.710 141.386 -13.794 141.370 -13.884 141.374 -13.967 141.423 -14.051 141.482 -14.134 141.494 -14.225 141.489 -14.308 141.444 -14.391 141.420 -14.482 141.424 -14.739 141.461 -14.823 141.482 -14.906 141.511 -14.989 141.541 -15.080 141.504 -15.163 141.484 -15.163 141.465 -15.254 141.447 -15.337 141.418 -15.420 141.379 -15.511 141.351 -15.594 141.340 -15.677 141.331 -15.769 141.321 -15.852 141.311 -15.935 141.299 -16.026 141.336 -16.041 141.331 -16.125 141.283 -16.215 141.264 -16.299 141.235 -16.465 141.194 -16.556 141.158 -16.639 141.128 -16.647 141.121 -16.730 141.053 -16.813 140.986 -16.904 140.929 -16.987 140.880 -17.071 140.879 -17.154 140.850 -17.237 140.829 -17.320 140.819 -17.403 140.761 -17.469 140.670 -17.502 140.593 -17.551 140.507 -17.583 140.418 -17.624 140.322 -17.632 140.228 -17.647 140.135 -17.662 140.034 -17.647 139.935 -17.639 139.915 -17.556 139.823 -17.515 139.710 -17.500 139.660 -17.459 139.556 -17.376 139.463 -17.318 139.347 -17.303 139.239 -17.270 139.186 -17.187 139.133 -17.103 139.107 -17.013 139.097 -16.922 139.012 -16.831 138.898 -16.831 138.794 -16.780 138.679 -16.732 138.573 -16.740 138.470 -16.732 138.365 -16.709 138.255 -16.668 138.151 -16.603 138.043 -16.511 137.949 -16.486 137.926 -16.403 137.813 -16.312 137.758 -16.229 137.694 -16.163 137.585 -16.132 137.475 -16.117 137.367 -16.051 137.259 -15.960 137.145 -15.952 137.143 -15.912 137.031 -15.829 136.930 -15.902 136.849 -15.877 136.740 -15.892 136.647 -15.809 136.640 -15.718 136.546 -15.668 136.527 -15.653 136.428 -15.587 136.320 -15.513 136.201 -15.422 136.183 -15.339 136.091 -15.273 135.974 -15.225 135.869 -15.134 135.767 -15.078 135.652 -15.022 135.545 -14.964 135.432 -14.873 135.364 -14.790 135.335 -14.699 135.305 -14.699 135.380 -14.625 135.465 -14.542 135.480 -14.459 135.535 -14.376 135.619 -14.293 135.672 -14.210 135.756 -14.153 135.843 -14.062 135.860 -13.979 135.866 -13.888 135.937 -13.805 135.964 -13.722 135.988 -13.631 136.022 -13.704 135.937 -13.672 135.837 -13.589 135.799 -13.505 135.814 -13.414 135.820 -13.430 135.916 -13.346 135.850 -13.263 135.874 -13.207 135.961 -13.290 136.011 -13.207 136.017 -13.134 136.111 -13.225 136.149 -13.141 136.233 -13.085 136.321 -13.169 136.324 -13.252 136.335 -13.203 136.423 -13.120 136.487 -13.029 136.483 -12.946 136.489 -13.004 136.602 -12.913 136.531 -12.830 136.436 -12.805 136.488 -12.757 136.576 -12.673 136.629 -12.582 136.672 -12.499 136.755 -12.416 136.828 -12.333 136.882 -12.242 136.852 -12.176 136.739 -12.176 136.644 -12.259 136.685 -12.211 136.583 -12.128 136.534 -12.044 136.505 -11.961 136.447 -11.878 136.530 -11.944 136.444 -11.977 136.354 -12.043 136.259 -12.116 136.174 -12.207 136.216 -12.230 136.314 -12.313 136.279 -12.396 136.244 -12.445 136.156 -12.430 136.058 -12.389 135.969 -12.306 135.975 -12.223 135.981 -12.207 135.884 -12.124 135.928 -12.139 135.826 -12.213 135.741 -12.296 135.677 -12.213 135.629 -12.130 135.635 -12.056 135.720 -11.973 135.784 -11.973 135.689 -11.917 135.776 -11.834 135.868 -11.751 135.820 -11.834 135.813 -11.900 135.727 -11.924 135.636 -11.948 135.535 -12.031 135.602 -12.081 135.514 -12.097 135.421 -12.081 135.324 -12.147 135.237 -12.230 135.278 -12.215 135.180 -12.230 135.088 -12.223 134.991 -12.139 134.916 -12.114 134.809 -12.031 134.751 -11.948 134.722 -11.973 134.631 -12.046 134.546 -12.054 134.452 -12.039 134.345 -11.956 134.239 -11.979 134.205 -12.062 134.132 -11.979 134.130 -11.896 134.063 -11.863 133.964 -11.888 133.864 -11.805 133.797 -11.714 133.860 -11.706 133.764 -11.762 133.677 -11.811 133.579 -11.818 133.485 -11.735 133.483 -11.751 133.390 -11.677 133.276 -11.717 133.187 -11.652 133.083 -11.569 133.034 -11.478 132.996 -11.387 132.929 -11.313 132.824 -11.404 132.845 -11.429 132.744 -11.503 132.659 -11.412 132.580 -11.329 132.506 -11.329 132.477 -11.238 132.439 -11.207 132.340 -11.124 132.282 -11.207 132.198 -11.116 132.091 -11.207 132.138 -11.290 132.140 -11.373 132.105 -11.282 132.067 -11.199 132.027 -11.116 131.932 -11.199 131.879 -11.215 131.777 -11.298 131.788 -11.305 131.884 -11.397 131.914 -11.422 132.013 -11.505 132.041 -11.472 132.132 -11.447 132.232 -11.424 132.324 -11.439 132.421 -11.530 132.488 -11.613 132.555 -11.629 132.565 -11.629 132.574 -11.636 132.566 -11.693 132.612 -11.783 132.568 -11.867 132.606 -11.950 132.591 -12.041 132.594 -12.124 132.660 -12.091 132.561 -12.106 132.459 -12.189 132.386 -12.281 132.381 -12.197 132.343 -12.197 132.277 -12.189 132.181 -12.248 132.084 -12.281 131.994 -12.240 131.893 -12.232 131.797 -12.265 131.698 -12.265 131.603 -12.273 131.509 -12.273 131.405 -12.189 131.299 -12.099 131.232 -12.182 131.168 -12.133 131.057 -12.167 130.967 -12.250 130.995 -12.333 130.988 -12.317 130.891 -12.383 130.805 -12.449 130.814 -12.434 130.850 -12.524 130.852 -12.607 130.939 -12.567 130.829 -12.484 130.752 -12.400 130.695 -12.370 130.587 -12.453 130.560 -12.536 130.553 -12.627 130.548 -12.693 130.652 -12.693 130.556 -12.609 130.499 -12.617 130.405 -12.708 130.322 -12.791 130.324 -12.874 130.299 -12.923 130.210 -12.908 130.114 -12.991 130.106 -13.074 130.100 -13.165 130.149 -13.248 130.206 -13.331 130.293 -13.306 130.243 -13.389 130.150 -13.447 130.062 -13.503 129.975 -13.503 129.946 -13.478 129.847 -13.561 129.794 -13.644 129.759 -13.728 129.778 -13.811 129.705 -13.894 129.716 -13.985 129.692 -14.016 129.601 -14.031 129.507 -14.055 129.464 -14.138 129.447 -14.229 129.383 -14.312 129.338 -14.395 129.322 -14.469 129.436 -14.527 129.539 -14.542 129.636 -14.527 129.738 -14.575 129.649 -14.590 129.547 -14.682 129.606 -14.765 129.692 -14.765 129.787 -14.757 129.890 -14.815 129.794 -14.815 129.699 -14.823 129.595 -14.913 129.570 -14.997 129.581 -15.163 129.687 -15.171 129.642 -15.140 129.540 -15.049 129.532 -14.966 129.463 -14.883 129.388 -14.834 129.278 -14.819 129.181 -14.902 129.191 -14.993 129.212 -15.076 129.219 -15.132 129.134 -15.049 129.136 -14.958 129.139 -14.875 129.064 -14.842 128.964 -14.811 128.885 -14.803 128.779 -14.780 128.681 -14.755 128.582 -14.739 128.477 -14.813 128.391 -14.836 128.365 -14.919 128.385 -15.002 128.413 -15.002 128.396 -15.018 128.323 -14.952 128.218 -15.036 128.147 -15.119 128.180 -15.202 128.196 -15.293 128.259 -15.376 128.257 -15.303 128.225 -15.219 128.172 -15.227 128.069 -15.310 128.085 -15.401 128.064 -15.457 127.990 -15.374 128.039 -15.283 128.013 -15.200 128.036 -15.117 128.038 -14.950 128.067 -14.867 128.092 -14.776 128.156 -14.728 128.140 -14.637 128.100 -14.554 128.005 -14.480 127.900 -14.407 127.787 -14.323 127.758 -14.240 127.701 -14.149 127.643 -14.091 127.540 -14.018 127.427 -13.935 127.379 -13.927 127.282 -13.927 127.187 -13.879 127.077 -13.788 126.999 -13.704 126.942 -13.737 126.891 -13.760 126.799 -13.844 126.763 -13.927 126.848 -13.960 126.815 -14.016 126.727 -14.082 126.631 -14.165 126.546 -14.082 126.479 -14.049 126.439 -13.965 126.464 -13.981 126.371 -14.072 126.287 -14.155 126.315 -14.155 126.220 -14.072 126.192 -13.989 126.164 -13.941 126.186 -13.989 126.097 -13.898 126.132 -13.921 126.040 -14.005 126.059 -13.963 125.959 -14.055 125.988 -14.047 126.091 -14.072 126.112 -14.163 126.123 -14.219 126.027 -14.310 126.047 -14.393 125.982 -14.477 125.975 -14.517 125.885 -14.600 125.867 -14.517 125.810 -14.434 125.790 -14.409 125.692 -14.500 125.666 -14.582 125.612 -14.500 125.648 -14.409 125.645 -14.325 125.644 -14.242 125.662 -14.227 125.565 -14.310 125.566 -14.393 125.577 -14.484 125.570 -14.517 125.566 -14.492 125.467 -14.575 125.403 -14.527 125.301 -14.610 125.276 -14.650 125.186 -14.741 125.151 -14.825 125.179 -14.850 125.278 -14.941 125.251 -15.024 125.330 -15.107 125.400 -15.107 125.305 -15.058 125.229 -14.993 125.114 -15.084 125.104 -14.993 125.069 -15.000 124.975 -15.084 124.935 -15.132 124.848 -15.223 124.847 -15.165 124.932 -15.142 125.023 -15.182 124.935 -15.265 124.875 -15.273 124.972 -15.314 125.074 -15.397 125.060 -15.488 125.172 -15.455 125.111 -15.455 125.015 -15.372 124.954 -15.316 124.848 -15.258 124.742 -15.243 124.644 -15.325 124.715 -15.391 124.631 -15.465 124.549 -15.449 124.442 -15.532 124.393 -15.616 124.408 -15.631 124.373 -15.715 124.379 -15.798 124.441 -15.888 124.542 -15.798 124.590 -15.805 124.686 -15.862 124.601 -15.952 124.571 -16.036 124.586 -16.127 124.507 -16.043 124.428 -16.127 124.424 -16.210 124.393 -16.301 124.409 -16.301 124.505 -16.285 124.607 -16.310 124.707 -16.384 124.816 -16.351 124.714 -16.366 124.612 -16.358 124.507 -16.318 124.404 -16.366 124.317 -16.351 124.210 -16.268 124.177 -16.227 124.065 -16.235 123.971 -16.318 123.948 -16.366 123.853 -16.283 123.856 -16.217 123.739 -16.202 123.832 -16.111 123.740 -16.127 123.647 -16.167 123.559 -16.258 123.631 -16.341 123.710 -16.390 123.663 -16.390 123.559 -16.473 123.574 -16.432 123.471 -16.515 123.504 -16.539 123.604 -16.622 123.572 -16.680 123.678 -16.771 123.741 -16.836 123.848 -16.829 123.943 -16.894 123.859 -16.978 123.809 -17.069 123.834 -17.152 123.896 -17.167 123.881 -17.084 123.790 -17.001 123.720 -16.943 123.614 -17.034 123.592 -17.117 123.636 -17.200 123.622 -17.284 123.611 -17.374 123.580 -17.457 123.613 -17.541 123.582 -17.500 123.583 -17.409 123.520 -17.326 123.467 -17.243 123.397 -17.160 123.364 -17.069 123.310 -16.985 123.286 -16.902 123.225 -16.736 123.119 -16.653 123.142 -16.637 123.043 -16.554 122.991 -16.521 122.985 -16.438 123.055 -16.355 123.002 -16.420 122.909 -16.504 122.877 -16.544 122.789 -16.635 122.768 -16.718 122.773 -16.751 122.684 -16.751 122.580 -16.842 122.567 -16.926 122.611 -16.868 122.496 -16.908 122.465 -16.974 122.381 -17.047 122.290 -17.131 122.258 -17.214 122.197 -17.305 122.175 -17.388 122.172 -17.479 122.171 -17.562 122.194 -17.653 122.228 -17.736 122.225 -17.827 122.241 -17.910 122.274 -17.933 122.374 -18.017 122.398 -18.100 122.336 -18.140 122.248 -18.224 122.167 -18.282 122.073 -18.373 121.993 -18.421 121.906 -18.446 121.814 -18.529 121.753 -18.612 121.777 -18.644 121.727 -18.651 121.632 -18.734 121.665 -18.817 121.624 -18.908 121.584 -18.992 121.543 -19.082 121.492 -19.166 121.431 -19.249 121.370 -19.340 121.290 -19.406 121.206 -19.472 121.112 -19.537 121.028 -19.578 120.939 -19.618 120.850 -19.643 120.750 -19.692 120.662 -19.725 120.572 -19.756 120.482 -19.789 120.382 -19.822 120.292 -19.846 120.200 -19.846 120.104 -19.870 120.003 -19.870 119.907 -19.895 119.815 -19.928 119.716 -19.944 119.702 -19.992 119.605 -19.968 119.505 -19.928 119.392 -19.928 119.366 -19.903 119.256 -19.928 119.165 -19.936 119.157 -19.928 119.155 -19.928 119.071 -19.936 119.063 -20.002 118.970 -20.085 118.902 -20.168 118.854 -20.218 118.768 -20.259 118.672 -20.251 118.574 -20.259 118.517 -20.274 118.424 -20.266 118.317 -20.290 118.226 -20.298 118.131 -20.363 118.049 -20.404 117.992 -20.477 117.902 -20.551 117.821 -20.574 117.729 -20.574 117.633 -20.625 117.538 -20.640 117.445 -20.640 117.340 -20.607 117.237 -20.524 117.182 -20.539 117.089 -20.570 116.999 -20.628 116.915 -20.580 116.809 -20.497 116.784 -20.580 116.704 -20.603 116.670 -20.661 116.586 -20.717 116.492 -20.742 116.401 -20.773 116.311 -20.766 116.204 -20.856 116.193 -20.907 116.107 -20.938 116.037 -20.979 115.949 -21.062 115.880 -21.145 115.821 -21.186 115.732 -21.236 115.646 -21.319 115.567 -21.410 115.499 -21.443 115.410 -21.483 115.321 -21.514 115.222 -21.565 115.136 -21.588 115.044 -21.596 114.949 -21.611 114.925 -21.667 114.840 -21.700 114.750 -21.766 114.658 -21.849 114.627 -21.932 114.585 -21.932 114.529 -22.015 114.536 -22.098 114.505 -22.190 114.458 -22.273 114.428 -22.356 114.348 -22.363 114.253 -22.389 114.152 -22.305 114.154 -22.222 114.146 -22.132 114.138 -22.048 114.112 -21.882 114.156 -21.791 114.165 -21.700 114.138 -21.741 114.050 -21.831 113.992 -21.915 113.952 -21.998 113.921 -22.089 113.882 -22.180 113.862 -22.263 113.814 -22.346 113.783 -22.429 113.731 -22.495 113.697 -22.586 113.715 -22.669 113.790 -22.753 113.824 -22.836 113.849 -22.919 113.856 -23.002 113.807 -23.085 113.806 -23.176 113.814 -23.259 113.813 -23.350 113.813 -23.434 113.764 -23.499 113.680 -23.582 113.619 -23.673 113.561 -23.756 113.539 -23.840 113.508 -23.930 113.458 -24.014 113.465 -24.097 113.443 -24.188 113.434 -24.271 113.442 -24.354 113.449 -24.445 113.505 -24.529 113.577 -24.611 113.641 -24.694 113.657 -24.778 113.656 -24.786 113.675 -24.836 113.703 -24.919 113.690 -25.003 113.725 -25.076 113.842 -25.167 113.894 -25.250 113.926 -25.333 113.967 -25.424 114.031 -25.507 114.072 -25.590 114.161 -25.674 114.193 -25.765 114.296 -25.848 114.301 -25.939 114.269 -26.022 114.245 -26.113 114.241 -26.196 114.274 -26.269 114.197 -26.295 114.097 -26.211 114.017 -25.954 113.946 -25.871 113.914 -25.954 113.907 -26.037 113.865 -26.053 113.763 -26.028 113.756 -25.945 113.742 -25.853 113.764 -25.770 113.777 -25.687 113.754 -25.596 113.643 -25.513 113.602 -25.430 113.502 -25.513 113.448 -25.596 113.442 -25.680 113.483 -25.770 113.547 -25.853 113.579 -25.945 113.604 -26.028 113.684 -26.111 113.813 -26.194 113.904 -26.277 113.909 -26.361 113.923 -26.444 113.881 -26.476 113.793 -26.517 113.707 -26.434 113.674 -26.351 113.660 -26.434 113.607 -26.351 113.601 -26.267 113.597 -26.177 113.542 -26.260 113.538 -26.177 113.524 -26.094 113.492 -26.010 113.431 -25.919 113.405 -26.010 113.421 -26.094 113.415 -26.177 113.372 -26.010 113.362 -25.927 113.321 -26.010 113.335 -26.094 113.272 -26.184 113.327 -26.267 113.341 -26.351 113.432 -26.442 113.523 -26.467 113.559 -26.558 113.641 -26.641 113.702 -26.724 113.782 -26.807 113.844 -26.890 113.886 -26.982 113.941 -27.065 114.002 -27.231 114.085 -27.314 114.126 -27.397 114.158 -27.571 114.207 -27.637 114.178 -27.720 114.154 -27.978 114.226 -28.061 114.297 -28.144 114.398 -28.235 114.451 -28.318 114.513 -28.401 114.584 -28.492 114.628 -28.575 114.642 -28.658 114.627 -28.674 114.641 -28.758 114.673 -28.841 114.763 -28.923 114.825 -29.015 114.890 -29.098 114.922 -29.181 114.937 -29.264 114.960 -29.347 114.993 -29.438 114.980 -29.522 114.965 -29.605 114.952 -29.696 114.959 -29.779 114.974 -29.870 114.961 -29.926 114.938 -30.009 114.981 -30.100 114.986 -30.266 115.048 -30.349 115.062 -30.440 115.096 -30.524 115.137 -30.607 115.178 -30.698 115.203 -30.781 115.292 -30.864 115.342 -30.955 115.395 -31.038 115.418 -31.129 115.462 -31.212 115.523 -31.296 115.582 -31.386 115.626 -31.470 115.688 -31.553 115.738 -31.644 115.755 -31.727 115.778 -31.810 115.779 -31.893 115.773 -31.984 115.789 -32.067 115.791 -32.150 115.724 -32.242 115.768 -32.315 115.787 -32.398 115.761 -32.489 115.806 -32.489 115.707 -32.572 115.711 -32.481 115.676 -32.398 115.722 -32.481 115.655 -32.572 115.653 -32.656 115.667 -32.822 115.712 -32.913 115.729 -32.996 115.724 -33.079 115.756 -33.162 115.728 -33.220 115.651 -33.311 115.607 -33.395 115.530 -33.468 115.459 -33.501 115.363 -33.508 115.267 ; #559 2 -11.604 132.639 -11.538 132.686 -11.530 132.685 -11.522 132.589 -11.606 132.637 ; #560 2 -11.530 132.693 -11.530 132.685 -11.538 132.686 ; #561 2 58.595 163.577 58.535 163.610 58.624 163.813 58.722 164.006 58.792 164.220 58.847 164.413 58.907 164.613 58.907 164.730 58.996 164.833 59.094 164.867 59.138 164.800 59.209 164.781 59.260 164.736 59.163 164.497 59.111 164.295 59.067 164.117 59.059 163.978 59.042 164.072 58.953 163.958 58.863 163.938 58.774 163.871 58.676 163.768 58.597 163.579 ; #562 2 55.363 166.392 55.363 166.268 55.379 166.167 55.344 166.006 55.284 166.047 55.248 166.112 55.197 166.166 55.145 166.218 55.066 166.234 55.014 166.287 54.971 166.356 54.928 166.416 54.876 166.475 54.868 166.578 54.825 166.639 54.775 166.699 54.740 166.780 54.827 166.788 54.904 166.759 54.946 166.699 54.973 166.618 55.016 166.550 55.067 166.497 55.120 166.455 55.172 166.392 55.242 166.376 55.332 166.432 55.367 166.401 ; #563 2 54.892 167.558 54.833 167.598 54.799 167.679 54.764 167.749 54.730 167.830 54.688 167.901 54.663 167.993 54.637 168.084 54.587 168.144 54.552 168.224 54.603 168.175 54.645 168.094 54.688 168.034 54.722 167.953 54.764 167.883 54.799 167.813 54.823 167.720 54.876 167.672 54.892 167.569 ; #564 2 64.695 -172.601 64.650 -172.548 64.632 -172.456 64.686 -172.493 ; #565 2 59.978 164.251 59.917 164.156 59.890 164.246 59.980 164.254 ; #566 2 -18.369 146.365 -18.369 146.374 -18.285 146.420 -18.202 146.355 -18.111 146.298 -18.202 146.242 -18.285 146.287 -18.369 146.362 ; #567 2 -22.098 149.956 -22.015 149.981 -21.932 149.959 -22.015 149.934 ; #568 2 -22.224 150.547 -22.217 150.563 -22.134 150.550 -22.224 150.545 ; #569 2 -27.593 153.499 -27.509 153.554 -27.418 153.575 -27.335 153.611 -27.252 153.522 -27.335 153.496 -27.418 153.500 -27.502 153.503 ; #570 2 -27.227 153.515 -27.144 153.510 -27.061 153.508 -26.978 153.532 -26.886 153.526 -26.970 153.452 -27.053 153.448 ; #571 2 -25.656 153.135 -25.490 153.148 -25.399 153.170 -25.316 153.215 -25.232 153.239 -25.149 153.284 -25.058 153.317 -24.975 153.353 -24.892 153.398 -24.809 153.338 -24.718 153.313 -24.635 153.317 -24.635 153.221 -24.718 153.225 -24.801 153.277 -24.892 153.254 -24.965 153.177 -25.024 153.098 -25.107 153.092 -25.190 153.094 -25.281 153.052 -25.364 153.037 -25.455 152.995 -25.538 153.036 -25.622 153.077 -25.654 153.128 ; #572 2 -19.216 160.014 -19.133 160.041 -19.042 160.045 -19.133 159.992 -19.216 160.002 -19.216 160.011 ; #573 2 18.107 -71.830 18.083 -71.780 17.999 -71.722 17.833 -71.663 17.759 -71.549 17.676 -71.482 17.759 -71.426 17.833 -71.398 17.924 -71.334 18.007 -71.249 18.090 -71.195 18.181 -71.151 18.264 -71.153 18.348 -71.163 18.373 -71.100 18.332 -70.990 18.415 -70.916 18.423 -70.813 18.506 -70.747 18.433 -70.642 18.342 -70.657 18.276 -70.611 18.284 -70.516 18.299 -70.413 18.299 -70.318 18.314 -70.215 18.406 -70.142 18.489 -70.085 18.489 -70.047 18.537 -69.958 18.529 -69.890 18.529 -69.785 18.521 -69.679 18.471 -69.577 18.497 -69.485 18.512 -69.391 18.512 -69.326 18.471 -69.225 18.464 -69.119 18.479 -69.025 18.438 -68.924 18.355 -68.867 18.272 -68.819 18.272 -68.723 18.363 -68.697 18.446 -68.669 18.421 -68.628 18.429 -68.525 18.512 -68.497 18.595 -68.443 18.686 -68.407 18.769 -68.513 18.843 -68.618 18.926 -68.713 19.017 -68.800 19.048 -68.900 19.089 -69.010 19.048 -69.101 19.106 -69.204 19.091 -69.307 19.116 -69.406 19.172 -69.509 19.156 -69.612 19.181 -69.711 19.272 -69.705 19.288 -69.680 19.272 -69.582 19.257 -69.485 19.257 -69.379 19.282 -69.287 19.365 -69.242 19.405 -69.351 19.365 -69.442 19.390 -69.541 19.383 -69.645 19.367 -69.739 19.359 -69.835 19.443 -69.910 19.526 -69.947 19.616 -69.967 19.700 -69.969 19.740 -70.070 19.708 -70.151 19.692 -70.245 19.708 -70.343 19.798 -70.450 19.839 -70.552 19.823 -70.646 19.857 -70.746 19.922 -70.851 19.963 -70.961 19.996 -71.061 19.940 -71.150 19.932 -71.254 19.899 -71.346 19.922 -71.445 19.973 -71.556 19.973 -71.652 19.899 -71.739 19.859 -71.830 19.684 -71.807 19.601 -71.770 19.518 -71.767 19.427 -71.794 19.344 -71.801 19.260 -71.705 19.170 -71.740 19.170 -71.749 19.079 -71.833 19.038 -71.924 19.038 -71.933 19.013 -71.930 18.982 -71.830 18.891 -71.800 18.808 -71.798 18.734 -71.893 18.684 -71.983 18.676 -72.078 18.593 -72.000 18.502 -71.979 18.436 -71.875 18.353 -71.808 18.270 -71.853 18.187 -71.833 18.113 -71.851 ; #574 2 18.177 -68.653 18.210 -68.658 18.243 -68.757 18.235 -68.852 18.195 -68.751 18.179 -68.654 ; #575 2 35.043 32.316 34.969 32.348 34.886 32.412 34.803 32.424 34.755 32.520 34.747 32.577 34.706 32.652 34.706 32.772 34.714 32.821 34.706 32.920 34.658 32.946 34.625 33.043 34.691 33.030 34.731 33.083 34.755 33.185 34.762 33.285 34.762 33.334 34.803 33.438 34.853 33.551 34.937 33.647 35.020 33.715 35.020 33.803 35.012 33.912 35.037 33.973 35.045 34.074 35.111 34.011 35.119 34.002 35.202 33.933 35.276 33.910 35.359 33.968 35.375 34.079 35.466 34.159 35.507 34.264 35.565 34.371 35.648 34.480 35.714 34.597 35.714 34.548 35.684 34.444 35.633 34.338 35.592 34.233 35.592 34.194 35.526 34.086 35.485 33.982 35.453 33.868 35.445 33.767 35.404 33.662 35.388 33.560 35.380 33.450 35.388 33.351 35.396 33.251 35.404 33.142 35.412 33.043 35.396 32.941 35.313 32.942 35.239 32.925 35.198 32.821 35.231 32.715 35.231 32.705 35.239 32.648 35.231 32.638 35.223 32.619 35.223 32.579 35.216 32.559 35.132 32.492 35.091 32.388 35.140 32.284 35.049 32.312 ; #576 7 -21.660 35.461 -21.576 35.486 -21.485 35.500 -21.402 35.496 -21.485 35.462 -21.576 35.439 ; #577 7 -18.759 36.337 -18.694 36.382 -18.678 36.276 -18.761 36.335 ; #578 7 -12.219 40.621 -12.219 40.612 -12.302 40.644 -12.219 40.623 ; #579 7 58.290 11.698 58.200 11.464 58.129 11.580 58.146 11.706 58.173 11.823 58.262 11.857 58.333 11.742 58.290 11.695 ; #580 7 58.094 11.636 58.005 11.567 58.013 11.694 58.103 11.787 58.103 11.660 58.094 11.639 ; #581 7 56.479 16.415 56.390 16.431 56.310 16.427 56.354 16.543 56.452 16.581 56.541 16.631 56.631 16.716 56.720 16.754 56.826 16.795 56.924 16.868 57.013 16.895 57.103 16.991 57.192 17.042 57.290 17.080 57.388 17.133 57.371 17.016 57.282 16.965 57.192 16.927 57.094 16.854 57.005 16.779 56.916 16.648 56.818 16.565 56.639 16.440 56.550 16.400 56.479 16.407 ; #582 7 59.059 18.201 59.015 18.081 59.042 18.200 ; #583 7 57.049 18.379 57.103 18.362 57.200 18.484 57.252 18.604 57.305 18.733 57.393 18.786 57.483 18.909 57.518 18.796 57.616 18.814 57.705 18.811 57.757 18.930 57.847 19.029 57.936 19.037 57.963 18.923 57.928 18.793 57.936 18.678 57.865 18.556 57.803 18.425 57.714 18.351 57.635 18.229 57.546 18.131 57.456 18.160 57.367 18.196 57.277 18.168 57.179 18.196 57.136 18.318 57.046 18.221 56.949 18.147 56.949 18.262 57.046 18.384 ; #584 7 60.423 18.414 60.378 18.468 60.369 18.597 60.470 18.501 60.524 18.386 60.423 18.411 ; #585 7 59.129 18.466 59.040 18.377 59.101 18.499 59.127 18.468 ; #586 7 59.495 18.611 59.547 18.733 59.556 18.605 59.466 18.563 59.491 18.611 ; #587 7 57.943 19.072 57.926 19.186 57.978 19.307 58.040 19.196 57.961 19.073 57.945 19.072 ; #588 7 58.416 19.202 58.381 19.316 58.433 19.204 ; #589 7 65.562 22.370 65.571 22.246 65.524 22.365 ; #590 7 8.562 -61.311 8.586 -61.303 8.659 -61.401 8.659 -61.504 8.626 -61.598 8.595 -61.502 8.580 -61.406 8.564 -61.311 ; #591 7 8.806 -61.132 8.814 -61.029 8.905 -60.969 8.921 -61.074 8.855 -61.165 8.781 -61.226 ; #592 7 8.588 -61.188 8.613 -61.095 8.696 -61.070 8.671 -61.172 8.663 -61.267 8.590 -61.188 ; #593 7 8.779 -61.019 8.795 -61.114 8.764 -61.208 8.731 -61.111 ; #594 7 8.738 -60.884 8.746 -60.989 8.706 -60.987 ; #595 7 9.064 -60.908 9.064 -61.003 8.980 -61.065 8.980 -60.970 ; #596 7 9.193 -60.929 9.276 -60.904 9.228 -60.997 9.195 -60.932 ; #597 7 9.154 -60.915 9.139 -61.009 9.073 -61.109 8.990 -61.151 9.056 -61.060 9.129 -60.968 9.154 -60.912 ; #598 7 9.271 -60.803 9.238 -60.896 9.205 -60.895 ; #599 7 11.565 -16.339 11.631 -16.350 11.565 -16.443 ; #600 7 11.921 -16.292 11.961 -16.238 12.002 -16.334 11.919 -16.294 ; #601 7 11.107 -16.183 11.131 -16.166 11.163 -16.072 11.253 -16.169 11.195 -16.263 11.105 -16.185 ; #602 7 11.971 -16.048 11.963 -16.095 11.955 -16.189 11.865 -16.149 11.880 -16.046 ; #603 7 11.605 -16.046 11.522 -16.082 11.507 -15.987 11.598 -15.943 11.598 -16.038 ; #604 7 11.248 -15.789 11.306 -15.725 11.389 -15.692 11.331 -15.785 11.248 -15.792 ; #605 7 11.232 -15.326 11.306 -15.328 11.298 -15.422 ; #606 7 12.403 -16.746 12.379 -16.650 12.314 -16.553 12.273 -16.448 12.288 -16.431 12.362 -16.349 12.369 -16.254 12.385 -16.170 12.319 -16.273 12.246 -16.366 12.155 -16.381 12.089 -16.370 12.074 -16.352 12.008 -16.246 11.983 -16.150 12.008 -16.056 12.064 -15.963 12.097 -15.840 12.097 -15.745 12.049 -15.819 11.998 -15.921 11.907 -15.983 11.816 -15.998 11.832 -15.903 11.840 -15.808 11.871 -15.705 11.903 -15.660 11.977 -15.567 12.010 -15.464 12.017 -15.369 11.977 -15.273 12.025 -15.170 12.051 -15.068 12.051 -15.030 12.035 -15.021 12.035 -15.029 11.979 -15.066 11.888 -15.034 11.847 -14.958 11.855 -15.033 11.871 -15.091 11.961 -15.158 11.936 -15.261 11.944 -15.356 11.896 -15.450 11.822 -15.560 11.731 -15.501 11.640 -15.443 11.706 -15.349 11.747 -15.287 11.739 -15.182 11.656 -15.114 11.696 -15.210 11.681 -15.305 11.590 -15.406 11.517 -15.499 11.426 -15.470 11.457 -15.376 11.366 -15.437 11.333 -15.341 11.317 -15.238 11.234 -15.226 11.193 -15.130 11.110 -15.128 11.027 -15.108 11.052 -15.053 11.060 -15.036 11.143 -14.972 11.234 -14.928 11.317 -14.884 11.400 -14.860 11.491 -14.816 11.575 -14.752 11.600 -14.657 11.600 -14.563 11.648 -14.469 11.689 -14.375 11.754 -14.282 11.747 -14.187 11.731 -14.111 11.731 -14.016 11.756 -13.922 11.772 -13.827 11.855 -13.745 11.946 -13.757 12.029 -13.759 12.112 -13.779 12.178 -13.875 12.234 -13.981 12.234 -14.007 12.275 -14.009 12.323 -13.935 12.331 -13.831 12.371 -13.737 12.455 -13.710 12.511 -13.683 12.594 -13.723 12.685 -13.763 12.751 -13.755 12.751 -14.912 12.759 -14.978 12.759 -15.253 12.693 -15.355 12.678 -15.390 12.629 -15.455 12.580 -15.557 12.530 -15.660 12.515 -15.772 12.523 -15.876 12.523 -16.018 12.548 -16.113 12.532 -16.216 12.532 -16.263 12.484 -16.357 12.443 -16.460 12.428 -16.554 12.435 -16.649 12.410 -16.744 12.403 -16.744 ; #607 7 39.365 -9.387 39.291 -9.390 39.208 -9.442 39.124 -9.465 39.033 -9.457 38.942 -9.487 38.858 -9.541 38.775 -9.443 38.768 -9.341 38.775 -9.240 38.849 -9.144 38.940 -9.094 39.023 -9.030 38.999 -9.037 38.915 -9.001 38.841 -8.976 38.800 -9.084 38.709 -9.113 38.750 -9.229 38.750 -9.238 38.659 -9.249 38.575 -9.232 38.492 -9.265 38.517 -9.166 38.533 -9.056 38.591 -8.959 38.550 -8.854 38.633 -8.799 38.641 -8.781 38.550 -8.773 38.466 -8.847 38.550 -8.913 38.466 -8.856 38.383 -8.830 38.284 -8.821 38.201 -8.845 38.117 -8.878 38.026 -8.910 37.985 -8.845 37.894 -8.838 37.803 -8.811 37.778 -8.840 37.694 -8.861 37.611 -8.835 37.519 -8.846 37.504 -8.854 37.421 -8.896 37.337 -8.908 37.254 -8.950 37.170 -9.002 37.087 -8.985 37.145 -8.880 37.160 -8.780 37.201 -8.682 37.217 -8.573 37.224 -8.574 37.224 -8.555 37.217 -8.564 37.166 -8.471 37.158 -8.359 37.166 -8.259 37.151 -8.156 37.110 -8.042 37.085 -7.939 37.117 -7.841 37.133 -7.763 37.182 -7.665 37.230 -7.568 37.271 -7.461 37.327 -7.475 37.335 -7.466 37.427 -7.483 37.510 -7.498 37.601 -7.555 37.616 -7.566 37.657 -7.538 37.748 -7.496 37.832 -7.444 37.915 -7.340 37.999 -7.297 38.030 -7.299 38.063 -7.252 38.111 -7.154 38.096 -7.052 38.187 -7.019 38.271 -6.985 38.271 -7.044 38.255 -7.144 38.271 -7.155 38.362 -7.221 38.445 -7.296 38.503 -7.360 38.536 -7.344 38.544 -7.354 38.560 -7.355 38.643 -7.312 38.727 -7.309 38.810 -7.247 38.826 -7.218 38.899 -7.121 38.940 -7.075 38.973 -7.077 38.989 -7.059 39.080 -6.995 39.088 -7.006 39.088 -7.015 39.179 -7.081 39.164 -7.109 39.237 -7.216 39.321 -7.273 39.328 -7.273 39.412 -7.342 39.427 -7.352 39.518 -7.329 39.544 -7.412 39.627 -7.499 39.719 -7.568 39.711 -7.518 39.703 -7.415 39.719 -7.304 39.711 -7.201 39.711 -7.089 39.719 -7.062 39.777 -7.026 39.860 -7.023 39.868 -7.014 39.876 -6.986 39.959 -6.942 40.043 -6.919 40.135 -6.958 40.219 -7.057 40.303 -6.984 40.319 -6.904 40.368 -6.840 40.460 -6.879 40.544 -6.856 40.636 -6.874 40.643 -6.865 40.728 -6.854 40.812 -6.871 40.904 -6.849 40.953 -6.894 41.045 -6.953 41.045 -6.962 41.060 -6.974 41.068 -6.964 41.076 -6.965 41.076 -6.862 41.084 -6.854 41.168 -6.811 41.252 -6.728 41.278 -6.627 41.334 -6.529 41.375 -6.473 41.432 -6.375 41.524 -6.323 41.599 -6.248 41.632 -6.283 41.706 -6.393 41.714 -6.497 41.763 -6.614 41.814 -6.600 41.906 -6.567 41.972 -6.677 41.964 -6.780 41.972 -6.893 41.980 -6.998 41.996 -7.040 41.988 -7.131 41.996 -7.235 41.912 -7.256 41.912 -7.266 41.871 -7.365 41.837 -7.475 41.871 -7.570 41.904 -7.677 41.919 -7.782 41.896 -7.892 41.904 -7.996 41.845 -8.104 41.845 -8.216 41.896 -8.231 41.896 -8.251 41.912 -8.252 41.996 -8.220 42.080 -8.125 42.087 -8.229 42.180 -8.248 42.164 -8.266 42.115 -8.374 42.107 -8.477 42.092 -8.589 42.076 -8.691 42.068 -8.699 41.984 -8.794 41.958 -8.811 41.892 -8.907 41.808 -8.918 41.724 -8.890 41.731 -8.871 41.731 -8.790 41.724 -8.861 41.716 -8.879 41.649 -8.862 41.565 -8.834 41.498 -8.827 41.457 -8.833 41.373 -8.793 41.317 -8.777 41.225 -8.748 41.184 -8.682 41.142 -8.709 41.059 -8.691 40.992 -8.703 40.908 -8.725 40.824 -8.745 40.732 -8.755 40.816 -8.713 40.732 -8.686 40.681 -8.721 40.649 -8.799 40.558 -8.818 40.534 -8.825 40.450 -8.854 40.366 -8.877 40.282 -8.918 40.190 -8.889 40.164 -8.896 40.090 -8.929 40.041 -8.943 39.967 -8.976 39.883 -9.019 39.792 -9.061 39.709 -9.094 39.618 -9.124 39.534 -9.207 39.451 -9.290 39.425 -9.399 39.342 -9.364 ; #608 7 47.309 9.529 47.259 9.562 47.251 9.572 47.194 9.614 47.100 9.595 47.100 9.647 47.085 9.764 47.069 9.870 46.976 9.880 46.952 9.997 46.944 10.006 46.892 10.113 46.900 10.155 46.976 10.262 47.043 10.369 46.986 10.475 46.978 10.475 46.936 10.455 46.920 10.465 46.905 10.497 46.912 10.613 46.886 10.720 46.837 10.826 46.821 10.869 46.829 10.985 46.914 11.070 46.999 11.145 47.033 11.262 47.033 11.368 47.065 11.475 47.057 11.485 47.057 11.602 47.041 11.708 47.049 11.815 47.083 11.932 47.107 12.039 47.132 12.123 47.124 12.218 47.039 12.122 46.954 12.183 46.894 12.289 46.809 12.352 46.801 12.352 46.793 12.361 46.785 12.361 46.736 12.467 46.736 12.477 46.710 12.583 46.710 12.655 46.694 12.729 46.660 12.845 46.660 12.938 46.652 13.045 46.637 13.161 46.613 13.267 46.629 13.374 46.621 13.480 46.605 13.586 46.597 13.618 46.597 13.627 46.581 13.699 46.565 13.773 46.581 13.889 46.547 13.995 46.547 14.005 46.522 14.110 46.498 14.216 46.506 14.249 46.498 14.332 46.482 14.438 46.450 14.553 46.518 14.649 46.559 14.702 46.627 14.810 46.676 14.896 46.692 14.926 46.669 14.958 46.676 14.958 46.684 14.968 46.710 15.044 46.710 15.372 46.702 15.402 46.694 15.508 46.746 15.616 46.770 15.617 46.761 15.723 46.778 15.841 46.746 15.946 46.720 16.006 46.728 16.007 46.813 15.958 46.898 16.004 46.932 16.077 46.999 16.164 47.015 16.217 47.023 16.217 47.039 16.247 47.063 16.355 47.055 16.461 47.140 16.435 47.233 16.429 47.319 16.442 47.404 16.413 47.471 16.488 47.495 16.596 47.511 16.617 47.553 16.618 47.638 16.642 47.688 16.592 47.695 16.485 47.745 16.457 47.761 16.498 47.794 16.509 47.787 16.626 47.787 16.646 47.729 16.751 47.729 16.771 47.737 16.843 47.745 16.951 47.838 17.007 47.923 17.001 47.973 17.056 47.981 17.046 48.056 17.122 48.141 17.041 48.157 17.021 48.165 17.022 48.181 17.013 48.215 16.929 48.272 16.911 48.306 16.903 48.314 16.904 48.399 16.800 48.484 16.814 48.570 16.902 48.655 16.906 48.671 16.887 48.764 16.838 48.756 16.828 48.748 16.808 48.774 16.701 48.815 16.595 48.831 16.533 48.839 16.425 48.831 16.415 48.774 16.317 48.774 16.255 48.782 16.147 48.789 16.039 48.806 15.987 48.855 15.917 48.889 15.810 48.905 15.811 48.889 15.714 48.913 15.607 48.938 15.513 48.972 15.462 48.996 15.354 49.004 15.312 48.980 15.193 49.030 15.087 49.038 14.969 48.936 14.965 48.851 14.930 48.802 14.939 48.802 14.886 48.786 14.777 48.701 14.689 48.607 14.667 48.615 14.657 48.641 14.550 48.675 14.444 48.623 14.399 48.607 14.359 48.607 14.251 48.623 14.134 48.699 14.028 48.758 13.921 48.800 13.815 48.714 13.793 48.629 13.791 48.544 13.703 48.585 13.596 48.601 13.489 48.601 13.469 48.594 13.436 48.594 13.426 48.577 13.426 48.493 13.414 48.435 13.413 48.393 13.379 48.336 13.260 48.328 13.153 48.304 13.035 48.296 13.015 48.195 12.820 48.110 12.756 48.025 12.850 47.975 12.921 47.890 12.992 47.882 12.982 47.874 12.972 47.806 12.918 47.757 12.959 47.715 13.065 47.630 13.032 47.545 13.040 47.511 13.000 47.545 12.893 47.553 12.873 47.628 12.767 47.713 12.749 47.721 12.655 47.680 12.547 47.680 12.495 47.729 12.388 47.729 12.281 47.737 12.164 47.662 12.193 47.646 12.183 47.654 12.173 47.654 12.163 47.662 12.056 47.654 11.949 47.622 11.832 47.630 11.725 47.622 11.618 47.555 11.510 47.547 11.403 47.497 11.360 47.446 11.252 47.446 11.243 47.461 11.136 47.435 11.018 47.521 10.912 47.529 10.912 47.545 10.860 47.561 10.903 47.561 10.796 47.594 10.679 47.594 10.668 47.602 10.584 47.579 10.564 47.628 10.457 47.542 10.425 47.501 10.457 47.416 10.382 47.330 10.275 47.315 10.168 47.340 10.188 47.426 10.188 47.441 10.071 47.527 9.997 47.542 9.987 47.584 9.954 47.576 9.847 47.592 9.730 47.584 9.730 47.576 9.720 47.568 9.668 47.576 9.561 47.542 9.551 47.493 9.646 47.459 9.646 47.410 9.604 47.402 9.594 47.317 9.529 ; #609 7 59.159 11.201 59.069 11.108 58.980 11.186 58.890 11.221 58.792 11.241 58.695 11.250 58.606 11.261 58.516 11.271 58.418 11.234 58.454 11.362 58.365 11.418 58.427 11.546 58.516 11.547 58.508 11.663 58.410 11.570 58.321 11.477 58.329 11.615 58.408 11.733 58.408 11.849 58.310 11.836 58.221 11.835 58.124 11.798 58.044 11.740 57.955 11.682 57.865 11.716 57.874 11.832 57.822 11.715 57.778 11.830 57.689 11.861 57.662 11.906 57.572 11.894 57.475 11.882 57.483 12.008 57.413 12.123 57.315 12.121 57.225 12.197 57.136 12.230 57.074 12.344 56.968 12.432 56.959 12.467 56.916 12.543 56.826 12.587 56.737 12.699 56.737 12.824 56.639 12.913 56.631 12.902 56.533 12.878 56.541 12.764 56.533 12.649 56.444 12.682 56.365 12.794 56.305 12.758 56.329 12.644 56.365 12.509 56.275 12.518 56.186 12.596 56.115 12.661 56.018 12.735 55.939 12.847 55.849 12.880 55.778 13.013 55.689 12.944 55.600 12.865 55.502 12.918 55.475 12.804 55.466 12.917 55.440 13.041 55.431 13.154 55.406 13.277 55.423 13.391 55.459 13.505 55.484 13.630 55.491 13.744 55.491 13.789 55.500 13.913 55.456 14.036 55.448 14.149 55.473 14.184 55.481 14.195 55.571 14.299 55.668 14.302 55.758 14.229 55.847 14.177 55.945 14.212 56.005 14.294 56.076 14.411 56.119 14.503 56.076 14.615 56.092 14.730 56.182 14.678 56.234 14.725 56.234 14.940 56.225 15.065 56.234 15.179 56.234 15.293 56.250 15.419 56.259 15.533 56.250 15.647 56.223 15.760 56.215 15.874 56.305 15.993 56.394 16.032 56.402 16.033 56.491 16.069 56.589 16.144 56.616 16.188 56.706 16.238 56.795 16.334 56.884 16.385 56.974 16.411 57.063 16.405 57.107 16.523 57.177 16.506 57.194 16.474 57.221 16.455 57.310 16.460 57.327 16.428 57.416 16.511 57.468 16.630 57.566 16.647 57.629 16.535 57.718 16.551 57.753 16.669 57.843 16.628 57.851 16.617 57.922 16.495 57.965 16.454 57.973 16.571 57.957 16.686 57.940 16.707 58.038 16.713 58.038 16.596 58.055 16.632 58.109 16.751 58.198 16.800 58.287 16.784 58.377 16.687 58.475 16.600 58.500 16.485 58.526 16.384 58.518 16.500 58.491 16.625 58.491 16.742 58.526 16.861 58.616 16.775 58.651 16.649 58.676 16.534 58.676 16.417 58.659 16.288 58.703 16.407 58.695 16.524 58.687 16.651 58.679 16.743 58.670 16.859 58.679 16.998 58.714 17.117 58.784 17.005 58.776 17.121 58.768 17.237 58.784 17.355 58.828 17.486 58.918 17.435 58.901 17.562 58.998 17.557 59.007 17.558 58.945 17.670 59.034 17.677 59.123 17.591 59.106 17.707 59.017 17.711 58.928 17.751 58.911 17.867 59.009 17.931 59.098 18.006 59.123 18.125 59.159 18.184 59.167 18.313 59.202 18.433 59.246 18.308 59.344 18.258 59.310 18.384 59.267 18.498 59.292 18.558 59.327 18.443 59.300 18.558 59.389 18.554 59.468 18.443 59.370 18.435 59.406 18.320 59.389 18.191 59.389 18.073 59.478 18.069 59.427 18.183 59.435 18.301 59.478 18.186 59.495 18.305 59.547 18.438 59.608 18.593 59.697 18.671 59.724 18.718 59.741 18.836 59.749 18.873 59.749 18.895 59.757 19.024 59.855 18.950 59.944 18.839 59.884 18.952 59.973 18.866 60.035 18.814 60.136 18.776 60.153 18.659 60.171 18.531 60.171 18.509 60.272 18.412 60.289 18.532 60.371 18.420 60.379 18.292 60.414 18.176 60.543 17.949 60.644 17.957 60.618 17.836 60.554 17.701 60.590 17.585 60.692 17.534 60.675 17.414 60.692 17.335 60.700 17.300 60.745 17.184 60.791 17.317 60.883 17.244 60.965 17.130 61.058 17.126 61.159 17.121 61.251 17.117 61.305 17.132 61.387 17.174 61.450 17.058 61.458 17.179 61.551 17.127 61.588 17.071 61.588 17.202 61.642 17.052 61.642 17.217 61.659 17.098 61.704 17.233 61.749 17.093 61.757 17.225 61.721 17.343 61.648 17.457 61.749 17.476 61.783 17.347 61.876 17.295 61.977 17.351 62.070 17.441 62.171 17.471 62.225 17.497 62.261 17.621 62.279 17.491 62.332 17.362 62.369 17.343 62.462 17.349 62.498 17.364 62.552 17.390 62.490 17.481 62.462 17.611 62.526 17.737 62.561 17.861 62.662 17.906 62.755 17.935 62.856 17.847 62.901 17.840 62.910 17.841 63.002 17.726 63.104 17.734 63.095 17.744 63.002 17.760 62.921 17.886 62.858 17.871 62.867 17.993 62.830 18.111 62.821 17.989 62.804 18.120 62.905 18.199 62.860 18.317 62.923 18.444 63.015 18.474 63.015 18.341 63.024 18.220 63.080 18.346 63.106 18.482 63.198 18.623 63.215 18.747 63.241 18.871 63.224 18.929 63.233 19.052 63.325 19.083 63.370 19.220 63.472 19.253 63.463 19.360 63.455 19.493 63.547 19.479 63.455 19.592 63.491 19.718 63.593 19.802 63.610 19.938 63.655 20.039 63.672 20.175 63.773 20.282 63.672 20.357 63.765 20.367 63.765 20.490 63.911 20.751 64.004 20.869 64.105 20.904 64.214 21.024 64.271 21.154 64.305 21.293 64.370 21.423 64.423 21.565 64.516 21.478 64.579 21.339 64.587 21.204 64.680 21.106 64.680 21.117 64.725 21.246 64.751 21.125 64.833 20.999 64.815 21.121 64.917 21.216 64.962 21.345 64.979 21.359 65.025 21.512 65.102 21.544 65.199 21.594 65.296 21.584 65.287 21.446 65.353 21.443 65.361 21.569 65.361 21.705 65.370 21.831 65.438 21.976 65.495 21.846 65.476 21.992 65.524 22.135 65.551 22.014 65.580 22.006 65.551 22.087 65.512 22.229 65.503 22.353 65.600 22.328 65.677 22.266 65.783 22.269 65.813 22.409 65.765 22.528 65.736 22.661 65.833 22.686 65.767 22.826 65.720 22.944 65.720 23.206 65.817 23.109 65.779 23.177 65.731 23.295 65.779 23.439 65.761 23.561 65.779 23.689 65.740 23.821 65.769 23.950 65.788 24.090 65.796 24.080 65.814 24.082 65.891 24.044 65.988 23.949 66.103 23.881 66.159 23.752 66.266 23.607 66.371 23.623 66.477 23.688 66.574 23.815 66.671 23.830 66.798 23.937 66.854 23.884 66.960 23.735 67.066 23.624 67.152 23.499 67.249 23.575 67.296 23.710 67.402 23.701 67.420 23.565 67.420 23.438 67.526 23.406 67.623 23.444 67.720 23.435 67.826 23.427 67.884 23.588 67.911 23.604 67.968 23.484 68.015 23.351 68.112 23.264 68.112 23.111 68.209 23.075 68.286 22.945 68.324 22.810 68.351 22.673 68.380 22.548 68.398 22.422 68.408 22.294 68.434 22.235 68.434 22.070 68.491 21.948 68.538 21.814 68.585 21.667 68.615 21.542 68.671 21.395 68.719 21.260 68.775 21.138 68.822 21.002 68.869 20.842 68.928 20.837 68.928 20.813 68.955 20.714 68.973 20.574 68.973 20.303 68.935 20.129 68.849 20.300 68.743 20.312 68.734 20.299 68.599 20.181 68.493 19.937 68.463 20.076 68.425 20.200 68.360 20.064 68.304 19.916 68.389 19.375 68.457 18.943 68.448 18.634 68.525 18.410 68.486 18.124 68.389 18.103 68.380 18.102 68.324 18.109 68.150 18.156 67.956 17.924 67.956 17.783 67.995 17.635 68.042 17.448 68.033 17.244 67.968 17.072 67.968 17.059 67.929 16.955 67.803 16.704 67.591 16.561 67.494 16.414 67.388 16.104 67.253 16.296 67.167 16.429 67.014 16.395 66.967 16.240 66.890 16.073 66.727 15.847 66.699 15.810 66.545 15.613 66.460 15.405 66.315 15.473 66.249 15.469 66.182 15.239 66.125 15.025 66.125 14.975 66.107 14.700 66.107 14.539 66.002 14.569 65.896 14.601 65.781 14.645 65.637 14.539 65.540 14.523 65.433 14.506 65.269 14.509 65.212 14.370 65.068 14.315 64.983 14.201 64.857 14.022 64.682 13.782 64.561 13.642 64.525 13.776 64.471 13.931 64.445 14.103 64.352 14.122 64.178 14.152 64.096 14.065 64.088 14.054 64.059 14.030 64.042 13.649 64.059 13.489 64.088 13.233 64.070 13.086 64.045 12.925 63.991 12.763 63.909 12.616 63.816 12.490 63.715 12.354 63.687 12.330 63.605 12.183 63.504 12.229 63.358 12.067 63.349 12.055 63.211 12.090 63.118 12.147 63.018 12.227 62.925 12.092 62.832 12.124 62.647 12.109 62.509 12.154 62.363 12.283 62.354 12.283 62.346 12.293 62.292 12.329 62.163 12.278 62.061 12.253 62.016 12.241 61.906 12.202 61.751 12.162 61.669 12.303 61.596 12.421 61.588 12.589 61.505 12.718 61.387 12.893 61.286 12.854 61.193 12.770 61.073 12.709 61.073 12.614 61.082 12.582 61.064 12.439 61.047 12.319 60.946 12.317 60.844 12.338 60.744 12.415 60.651 12.507 60.550 12.585 60.448 12.604 60.347 12.508 60.255 12.505 60.162 12.514 60.069 12.443 60.024 12.374 59.963 12.243 59.963 12.221 59.920 12.102 59.928 11.984 59.900 11.866 59.822 11.900 59.732 11.899 59.670 11.769 59.581 11.699 59.510 11.733 59.412 11.778 59.352 11.810 59.344 11.810 59.308 11.820 59.273 11.809 59.184 11.750 59.078 11.716 58.980 11.692 58.953 11.681 58.926 11.553 59.023 11.472 59.113 11.381 59.138 11.288 59.129 11.242 ; #610 7 62.522 17.422 62.421 17.436 62.522 17.466 62.522 17.419 ; #611 7 40.779 26.061 40.720 26.074 40.636 26.138 40.643 26.252 40.643 26.354 40.659 26.459 40.651 26.561 40.675 26.666 40.700 26.771 40.684 26.819 40.600 26.793 40.552 26.685 40.528 26.571 40.487 26.464 40.429 26.356 40.362 26.248 40.278 26.281 40.186 26.232 40.101 26.234 40.161 26.342 40.244 26.359 40.293 26.466 40.368 26.575 40.452 26.664 40.536 26.775 40.569 26.890 40.600 26.996 40.651 27.103 40.683 27.209 40.749 27.318 40.833 27.376 40.917 27.465 41.002 27.505 41.027 27.610 41.051 27.716 41.043 27.818 41.010 27.927 41.076 28.037 41.084 28.057 41.117 28.163 41.109 28.265 41.094 28.367 41.070 28.467 41.070 28.580 41.078 28.600 41.004 28.643 41.019 28.747 41.004 28.858 41.045 28.953 41.119 29.064 41.193 29.052 41.278 29.033 41.301 28.932 41.327 28.822 41.368 28.723 41.401 28.624 41.442 28.515 41.473 28.415 41.514 28.316 41.565 28.218 41.581 28.200 41.665 28.105 41.757 28.055 41.841 28.003 41.925 28.062 42.009 28.030 42.017 27.927 41.986 27.820 42.009 27.719 41.968 27.611 41.984 27.509 42.007 27.461 42.092 27.387 42.133 27.288 42.100 27.181 42.115 27.069 42.066 27.005 42.033 26.992 42.017 26.877 41.994 26.772 42.009 26.669 41.960 26.583 41.935 26.600 41.894 26.596 41.863 26.480 41.830 26.373 41.763 26.367 41.763 26.377 41.747 26.385 41.714 26.486 41.706 26.516 41.698 26.515 41.665 26.563 41.649 26.612 41.565 26.623 41.481 26.635 41.407 26.657 41.381 26.551 41.307 26.431 41.215 26.332 41.131 26.334 41.047 26.377 40.990 26.341 40.923 26.232 40.839 26.164 40.783 26.056 ; #612 7 39.520 26.135 39.505 26.205 39.513 26.308 39.528 26.411 39.569 26.516 39.577 26.629 39.600 26.733 39.608 26.792 39.600 26.894 39.569 26.994 39.485 26.906 39.402 26.798 39.319 26.701 39.252 26.798 39.220 26.825 39.179 26.911 39.088 26.895 39.004 26.879 38.963 26.916 38.989 27.029 38.905 27.092 38.872 26.987 38.789 26.901 38.731 26.794 38.647 26.868 38.616 26.906 38.533 26.968 38.517 26.967 38.517 27.069 38.509 27.179 38.461 27.156 38.453 27.045 38.438 26.942 38.430 26.840 38.455 26.740 38.372 26.743 38.402 26.705 38.486 26.662 38.577 26.688 38.661 26.614 38.727 26.517 38.711 26.414 38.627 26.417 38.544 26.460 38.453 26.534 38.379 26.448 38.379 26.346 38.296 26.371 38.263 26.470 38.222 26.569 38.181 26.667 38.265 26.723 38.280 26.826 38.197 26.888 38.106 26.912 38.121 27.024 38.096 27.124 38.040 27.221 38.024 27.321 37.950 27.315 37.884 27.319 37.793 27.293 37.760 27.189 37.719 27.085 37.704 27.185 37.620 27.237 37.547 27.250 37.513 27.266 37.423 27.269 37.415 27.370 37.481 27.476 37.397 27.450 37.397 27.551 37.314 27.564 37.288 27.632 37.205 27.626 37.157 27.521 37.222 27.425 37.197 27.322 37.114 27.285 37.031 27.327 37.038 27.347 37.089 27.452 37.055 27.550 37.063 27.661 37.071 27.763 37.071 27.791 37.087 27.894 37.087 28.004 37.095 28.105 37.102 28.207 37.077 28.306 36.993 28.198 36.937 28.092 36.854 28.077 36.862 27.976 36.877 27.867 36.852 27.764 36.836 27.662 36.828 27.652 36.821 27.541 36.755 27.435 36.739 27.544 36.747 27.646 36.805 27.751 36.828 27.853 36.821 27.954 36.828 28.055 36.879 28.160 36.788 28.123 36.747 28.019 36.691 28.115 36.642 28.083 36.708 28.189 36.782 28.296 36.866 28.352 36.873 28.454 36.957 28.510 36.873 28.552 36.881 28.654 36.856 28.661 36.772 28.673 36.772 28.762 36.764 28.801 36.716 28.898 36.807 28.955 36.792 29.054 36.708 29.116 36.617 29.068 36.594 29.166 36.510 29.178 36.419 29.198 36.378 29.295 36.347 29.333 36.347 29.433 36.289 29.529 36.266 29.637 36.225 29.734 36.225 29.834 36.291 29.941 36.307 30.043 36.337 30.076 36.371 30.180 36.386 30.249 36.371 30.349 36.287 30.442 36.320 30.485 36.404 30.563 36.495 30.522 36.578 30.567 36.661 30.624 36.745 30.603 36.828 30.611 36.912 30.647 36.953 30.752 36.930 30.851 36.937 30.952 36.937 31.032 36.912 31.131 36.912 31.211 36.904 31.290 36.879 31.388 36.830 31.484 36.790 31.591 36.749 31.688 36.733 31.717 36.685 31.813 36.660 31.920 36.635 32.019 36.586 32.115 36.502 32.196 36.436 32.238 36.345 32.309 36.262 32.401 36.213 32.496 36.190 32.604 36.165 32.630 36.132 32.737 36.116 32.836 36.165 32.899 36.190 33.002 36.174 33.111 36.215 33.216 36.215 33.316 36.223 33.418 36.239 33.520 36.262 33.623 36.231 33.729 36.314 33.818 36.398 33.916 36.314 33.996 36.398 34.066 36.429 34.107 36.512 34.126 36.596 34.235 36.679 34.312 36.737 34.420 36.811 34.529 36.811 34.538 36.877 34.646 36.885 34.678 36.892 34.779 36.868 34.877 36.801 34.929 36.801 35.018 36.794 35.036 36.745 35.131 36.661 35.323 36.654 35.423 36.677 35.475 36.669 35.585 36.718 35.651 36.801 35.689 36.794 35.587 36.827 35.640 36.842 35.752 36.875 35.857 36.958 35.947 36.999 36.001 36.976 36.099 36.892 36.199 36.809 36.209 36.718 36.217 36.635 36.096 36.561 35.987 36.477 35.876 36.386 35.795 36.303 35.865 36.219 35.923 36.128 35.962 36.087 35.988 36.021 35.931 35.996 36.017 35.963 36.062 35.915 36.157 35.963 36.181 36.046 36.271 36.087 36.376 36.102 36.378 36.186 36.378 36.277 36.380 36.310 36.384 36.318 36.394 36.303 36.420 36.318 36.523 36.318 36.581 36.326 36.692 36.400 36.662 36.415 36.605 36.464 36.611 36.489 36.573 36.580 36.554 36.663 36.594 36.747 36.604 36.830 36.624 36.914 36.665 36.914 36.683 36.906 36.723 36.873 36.829 36.866 36.929 36.858 36.946 36.800 37.040 36.708 37.069 36.733 37.173 36.749 37.276 36.741 37.385 36.733 37.485 36.741 37.505 36.790 37.579 36.823 37.684 36.838 37.796 36.871 37.901 36.904 38.006 36.912 38.017 36.960 38.124 36.993 38.229 36.978 38.328 36.962 38.436 36.931 38.533 36.848 38.623 36.832 38.650 36.784 38.744 36.784 38.946 36.792 38.996 36.792 39.027 36.768 39.125 36.753 39.224 36.768 39.327 36.784 39.430 36.792 39.470 36.807 39.573 36.823 39.676 36.830 39.778 36.864 39.893 36.896 39.999 36.912 40.040 36.928 40.061 36.951 40.123 36.958 40.164 36.999 40.249 37.033 40.323 37.091 40.431 37.114 40.535 37.155 40.652 37.180 40.725 37.188 40.837 37.195 40.939 37.188 41.018 37.172 41.117 37.147 41.215 37.147 41.315 37.155 41.417 37.155 41.507 37.162 41.579 37.188 41.632 37.195 41.682 37.188 41.690 37.195 41.772 37.220 41.885 37.244 41.978 37.302 42.088 37.393 42.190 37.337 42.283 37.246 42.310 37.180 42.331 37.188 42.391 37.213 42.496 37.228 42.556 37.320 42.629 37.403 42.703 37.444 42.737 37.421 42.835 37.395 42.941 37.428 43.047 37.428 43.148 37.395 43.245 37.387 43.345 37.339 43.448 37.331 43.536 37.308 43.643 37.308 43.745 37.300 43.845 37.374 43.957 37.389 44.060 37.364 44.157 37.281 44.234 37.197 44.183 37.114 44.199 37.048 44.290 37.131 44.382 37.188 44.492 37.261 44.605 37.246 44.704 37.222 44.759 37.306 44.741 37.389 44.773 37.463 44.684 37.504 44.580 37.595 44.563 37.678 44.576 37.762 44.570 37.785 44.583 37.851 44.492 37.884 44.396 37.950 44.296 37.958 44.196 37.966 44.197 38.049 44.219 38.141 44.273 38.224 44.345 38.307 44.358 38.391 44.440 38.432 44.345 38.523 44.269 38.538 44.271 38.562 44.285 38.645 44.279 38.736 44.234 38.820 44.237 38.903 44.260 38.969 44.168 39.053 44.122 39.086 44.155 39.169 44.168 39.252 44.079 39.336 44.055 39.419 44.006 39.435 43.989 39.460 44.104 39.460 44.309 39.468 44.351 39.552 44.383 39.642 44.397 39.726 44.429 39.751 44.424 39.825 44.538 39.775 44.632 39.719 44.725 39.685 44.770 39.759 44.732 39.775 44.715 39.849 44.624 39.914 44.523 39.998 44.445 40.047 44.352 40.055 44.335 40.096 44.240 40.080 44.135 40.064 44.092 40.057 43.988 40.064 43.887 40.105 43.792 40.131 43.706 40.172 43.602 40.221 43.671 40.305 43.636 40.389 43.549 40.474 43.574 40.558 43.571 40.641 43.655 40.657 43.668 40.724 43.709 40.773 43.709 40.806 43.705 40.890 43.649 40.974 43.636 41.041 43.545 41.074 43.439 41.158 43.424 41.199 43.422 41.248 43.327 41.223 43.220 41.289 43.129 41.338 43.179 41.346 43.139 41.405 43.047 41.471 42.957 41.546 42.857 41.546 42.754 41.620 42.805 41.620 42.767 41.628 42.665 41.620 42.561 41.612 42.559 41.561 42.531 41.469 42.444 41.469 42.435 41.502 42.328 41.528 42.229 41.544 42.129 41.528 42.014 41.544 41.913 41.469 41.797 41.510 41.701 41.518 41.632 41.552 41.535 41.560 41.505 41.475 41.409 41.401 41.283 41.342 41.182 41.309 41.073 41.252 40.950 41.226 40.842 41.203 40.735 41.119 40.609 41.070 40.498 41.062 40.383 41.039 40.329 41.023 40.317 40.992 40.209 40.966 40.092 41.008 39.996 41.023 39.980 41.023 39.961 41.000 39.854 41.049 39.749 41.041 39.645 41.074 39.547 41.148 39.456 41.125 39.340 41.100 39.233 41.115 39.133 41.090 39.047 41.082 38.933 41.057 38.826 41.016 38.729 41.023 38.617 40.966 38.505 40.958 38.401 40.966 38.299 40.982 38.199 40.998 38.098 41.021 38.021 41.029 37.909 41.029 37.890 41.078 37.795 41.162 37.748 41.154 37.634 41.070 37.540 41.111 37.443 41.152 37.346 41.184 37.248 41.184 37.116 41.250 37.013 41.334 36.945 41.383 36.849 41.391 36.747 41.391 36.644 41.375 36.591 41.291 36.497 41.291 36.394 41.366 36.292 41.432 36.198 41.516 36.107 41.542 36.102 41.626 36.123 41.718 36.055 41.759 35.958 41.675 35.904 41.749 35.915 41.716 35.807 41.692 35.700 41.667 35.584 41.675 35.482 41.716 35.396 41.741 35.296 41.808 35.202 41.892 35.132 41.976 35.093 42.068 35.157 42.068 35.053 42.117 35.000 42.092 34.936 42.007 34.842 41.974 34.734 41.966 34.630 41.982 34.519 41.990 34.417 41.974 34.311 41.990 34.210 41.990 34.178 42.005 34.067 42.005 33.757 42.013 33.644 42.029 33.543 42.037 33.440 42.044 33.338 42.003 33.229 41.970 33.112 41.947 33.005 41.906 32.897 41.890 32.791 41.867 32.685 41.867 32.653 41.841 32.547 41.800 32.428 41.759 32.320 41.692 32.208 41.642 32.151 41.610 32.044 41.569 31.948 41.528 31.840 41.469 31.729 41.420 31.620 41.395 31.514 41.354 31.396 41.270 31.396 41.185 31.336 41.144 31.271 41.129 31.166 41.121 31.062 41.113 30.949 41.121 30.847 41.137 30.736 41.170 30.636 41.170 30.627 41.185 30.526 41.201 30.425 41.201 30.415 41.242 30.316 41.201 30.209 41.176 30.103 41.176 30.000 41.184 29.972 41.184 29.838 41.191 29.736 41.215 29.625 41.223 29.523 41.238 29.413 41.254 29.311 41.262 29.209 41.262 29.189 41.195 29.079 41.111 29.061 41.086 29.048 41.002 29.059 40.935 29.154 40.902 29.254 40.876 29.282 40.820 29.326 40.804 29.531 40.812 29.634 40.796 29.745 40.763 29.844 40.747 29.740 40.740 29.626 40.747 29.524 40.722 29.419 40.714 29.337 40.698 29.223 40.683 29.119 40.683 29.016 40.634 28.908 40.550 28.839 40.509 28.938 40.524 29.052 40.474 29.149 40.466 29.129 40.409 29.020 40.401 28.916 40.433 28.817 40.416 28.713 40.416 28.601 40.442 28.501 40.434 28.410 40.442 28.308 40.434 28.204 40.442 28.174 40.426 28.070 40.403 27.965 40.452 27.920 40.536 28.009 40.552 27.898 40.552 27.796 40.528 27.691 40.444 27.785 40.360 27.777 40.352 27.673 40.360 27.572 40.352 27.512 40.377 27.411 40.426 27.314 40.442 27.305 40.491 27.241 40.491 27.138 40.433 27.030 40.440 26.928 40.440 26.816 40.424 26.712 40.332 26.622 40.258 26.513 40.217 26.397 40.133 26.371 40.041 26.281 40.041 26.190 40.025 26.180 39.942 26.164 39.858 26.167 39.775 26.161 39.684 26.163 39.600 26.107 39.517 26.082 ; #613 7 -1.066 29.562 -1.157 29.589 -1.289 29.590 -1.281 29.684 -1.248 29.730 -1.225 29.833 -1.308 29.871 -1.364 29.966 -1.348 29.983 -1.275 30.086 -1.191 30.169 -1.126 30.263 -1.052 30.298 -1.037 30.326 -0.971 30.354 -0.963 30.448 -0.971 30.466 -0.979 30.560 -0.946 30.654 -0.898 30.758 -0.913 30.786 -0.913 33.905 -0.317 33.901 -0.226 33.918 -0.136 33.935 -0.052 33.952 0.039 33.925 0.087 33.908 0.120 33.900 0.203 33.900 0.286 33.956 0.312 33.974 0.368 34.020 0.459 34.084 0.542 34.093 0.600 34.112 0.683 34.130 0.691 34.139 0.724 34.233 0.724 34.242 0.790 34.280 0.855 34.298 0.871 34.344 0.929 34.379 1.012 34.437 1.095 34.446 1.178 34.484 1.186 34.493 1.170 34.539 1.170 34.548 1.262 34.632 1.292 34.726 1.292 34.752 1.375 34.791 1.391 34.782 1.474 34.754 1.474 34.763 1.557 34.827 1.648 34.911 1.732 34.949 1.815 34.958 2.022 34.960 2.030 34.951 2.112 34.934 2.196 34.944 2.279 34.909 2.370 34.872 2.453 34.844 2.494 34.853 2.577 34.900 2.610 34.865 2.693 34.791 2.776 34.754 2.867 34.746 2.933 34.652 3.006 34.558 3.089 34.541 3.181 34.524 3.196 34.507 3.279 34.424 3.362 34.416 3.446 34.370 3.536 34.370 3.619 34.426 3.703 34.436 3.786 34.361 3.802 34.258 3.867 34.164 3.950 34.165 3.943 34.070 4.026 34.089 4.109 34.060 4.192 34.023 4.283 33.960 4.233 33.914 4.067 33.744 3.983 33.660 3.900 33.576 3.809 33.481 3.817 33.443 3.817 33.349 3.824 33.254 3.824 33.152 3.832 33.143 3.906 33.049 3.914 32.945 3.866 32.850 3.832 32.756 3.817 32.653 3.809 32.558 3.809 32.464 3.802 32.369 3.736 32.265 3.670 32.170 3.579 32.170 3.579 32.142 3.645 32.039 3.653 32.030 3.653 32.002 3.660 31.927 3.751 31.910 3.834 31.836 3.842 31.741 3.768 31.646 3.761 31.609 3.720 31.506 3.776 31.411 3.826 31.317 3.858 31.214 3.834 31.119 3.768 31.016 3.695 30.921 3.612 30.866 3.556 30.839 3.473 30.913 3.390 30.858 3.298 30.811 3.215 30.782 3.132 30.746 3.049 30.821 2.966 30.866 2.933 30.857 2.850 30.839 2.767 30.793 2.733 30.775 2.643 30.748 2.552 30.730 2.468 30.813 2.420 30.916 2.451 31.011 2.428 31.028 2.355 31.122 2.281 31.224 2.248 31.270 2.233 31.288 2.150 31.261 2.058 31.195 2.000 31.148 1.909 31.073 1.819 30.998 1.745 30.903 1.662 30.799 1.588 30.696 1.505 30.621 1.414 30.557 1.399 30.547 1.316 30.472 1.283 30.406 1.234 30.303 1.202 30.228 1.118 30.219 1.053 30.192 0.979 30.097 0.938 29.994 0.931 29.985 0.923 29.968 0.840 29.950 0.666 29.949 0.583 29.957 0.517 29.910 0.426 29.855 0.342 29.837 0.252 29.819 0.169 29.724 0.143 29.715 0.095 29.733 0.021 29.714 -0.062 29.697 -0.110 29.688 -0.194 29.680 -0.209 29.681 -0.300 29.664 -0.383 29.664 -0.474 29.682 -0.557 29.636 -0.640 29.628 -0.656 29.628 -0.739 29.637 -0.830 29.583 -0.903 29.583 -0.986 29.601 -1.060 29.584 ; #614 7 -14.902 30.268 -14.985 30.270 -15.068 30.301 -15.159 30.322 -15.243 30.409 -15.409 30.432 -15.500 30.444 -15.532 30.463 -15.881 30.474 -15.896 30.607 -15.896 30.976 -15.954 31.074 -15.896 31.167 -15.912 31.272 -15.944 31.368 -16.036 31.447 -16.059 31.543 -16.092 31.640 -16.099 31.745 -16.249 31.940 -16.332 32.039 -16.339 32.134 -16.332 32.239 -16.339 32.335 -16.364 32.431 -16.398 32.528 -16.438 32.625 -16.479 32.730 -16.569 32.752 -16.610 32.808 -16.610 32.913 -16.603 33.008 -16.595 33.026 -16.686 33.000 -16.769 32.948 -16.842 32.904 -16.926 32.953 -17.017 33.003 -17.100 33.024 -17.148 33.026 -17.239 33.085 -17.254 33.076 -17.295 33.049 -17.386 32.997 -17.469 33.075 -17.552 33.070 -17.636 33.073 -17.726 33.012 -17.810 33.015 -17.901 33.000 -17.984 33.021 -18.067 33.042 -18.158 33.036 -18.224 33.114 -18.272 33.069 -18.287 33.052 -18.361 33.036 -18.401 32.942 -18.485 32.954 -18.568 32.995 -18.659 32.961 -18.651 32.864 -18.699 32.770 -18.773 32.764 -18.789 32.773 -18.872 32.747 -18.879 32.757 -18.887 32.822 -18.970 32.930 -19.054 32.894 -19.144 32.898 -19.227 32.825 -19.319 32.819 -19.402 32.887 -19.468 32.881 -19.551 32.911 -19.518 33.006 -19.609 33.017 -19.692 33.067 -19.783 33.053 -19.866 33.047 -19.932 32.985 -20.015 32.929 -20.106 32.916 -20.189 32.864 -20.197 32.864 -20.280 32.791 -20.288 32.783 -20.379 32.730 -20.419 32.636 -20.493 32.534 -20.667 32.542 -20.758 32.563 -20.849 32.520 -20.932 32.448 -21.023 32.443 -21.114 32.475 -21.197 32.535 -21.164 32.457 -21.220 32.404 -21.304 32.322 -21.394 32.241 -21.561 32.075 -21.652 31.994 -21.742 31.902 -21.808 31.839 -21.899 31.746 -21.915 31.729 -21.973 31.675 -22.064 31.594 -22.155 31.501 -22.203 31.456 -22.261 31.362 -22.292 31.372 -22.325 31.382 -22.416 31.413 -22.514 31.446 -22.606 31.479 -22.704 31.501 -22.795 31.534 -22.894 31.565 -22.984 31.597 -23.076 31.610 -23.159 31.596 -23.257 31.591 -23.340 31.633 -23.424 31.712 -23.515 31.743 -23.613 31.785 -23.697 31.827 -23.787 31.927 -23.919 31.933 -24.017 31.946 -24.184 32.029 -24.275 32.060 -24.290 32.061 -24.374 32.055 -24.457 32.040 -24.913 32.059 -25.004 32.055 -25.078 32.059 -25.168 32.055 -25.267 32.043 -25.283 32.035 -25.298 32.036 -25.465 32.064 -25.505 32.028 -25.588 31.985 -25.680 31.990 -25.778 32.014 -25.811 32.073 -25.827 32.139 -25.910 32.135 -26.000 32.141 -26.016 32.132 -26.099 32.108 -26.198 32.123 -26.281 32.155 -26.372 32.178 -26.470 32.175 -26.570 32.181 -26.653 32.177 -26.645 32.283 -26.668 32.382 -26.668 32.721 -26.660 32.828 -26.660 32.934 -26.570 32.938 -26.486 32.942 -26.403 32.955 -26.312 32.958 -26.229 32.962 -26.138 32.965 -26.055 32.970 -25.972 32.973 -26.055 32.901 -26.022 32.802 -26.006 32.715 -25.923 32.692 -25.832 32.630 -25.832 32.533 -25.817 32.514 -25.791 32.618 -25.726 32.712 -25.643 32.754 -25.627 32.772 -25.536 32.793 -25.453 32.835 -25.370 32.898 -25.314 32.992 -25.248 33.093 -25.208 33.168 -25.200 33.194 -25.126 33.246 -25.118 33.284 -25.093 33.389 -25.045 33.483 -25.029 33.549 -24.989 33.653 -24.939 33.747 -24.915 33.843 -24.875 33.938 -24.850 34.043 -24.834 34.090 -24.801 34.185 -24.776 34.290 -24.735 34.385 -24.712 34.431 -24.687 34.507 -24.664 34.603 -24.631 34.698 -24.598 34.803 -24.549 34.897 -24.517 34.993 -24.461 35.096 -24.387 35.189 -24.304 35.244 -24.221 35.325 -24.137 35.389 -24.054 35.450 -23.971 35.502 -23.888 35.507 -23.847 35.523 -23.764 35.538 -23.723 35.554 -23.641 35.511 -23.723 35.486 -23.708 35.389 -23.799 35.384 -23.708 35.370 -23.542 35.381 -23.451 35.424 -23.368 35.428 -23.285 35.451 -23.193 35.486 -23.110 35.499 -23.020 35.495 -22.936 35.529 -22.853 35.581 -22.770 35.624 -22.704 35.525 -22.613 35.511 -22.530 35.499 -22.439 35.503 -22.356 35.517 -22.273 35.549 -22.182 35.544 -22.141 35.552 -22.058 35.556 -22.149 35.532 -22.058 35.509 -21.975 35.505 -22.058 35.442 -22.149 35.399 -22.240 35.413 -22.323 35.408 -22.232 35.307 -22.149 35.321 -22.066 35.335 -21.983 35.340 -21.891 35.327 -21.841 35.333 -21.758 35.320 -21.675 35.278 -21.584 35.274 -21.501 35.279 -21.417 35.228 -21.327 35.165 -21.244 35.126 -21.160 35.122 -21.069 35.135 -21.152 35.101 -21.069 35.088 -20.986 35.067 -20.895 35.089 -20.822 35.124 -20.814 35.105 -20.731 35.055 -20.640 35.032 -20.557 34.972 -20.533 34.866 -20.450 34.815 -20.384 34.716 -20.218 34.708 -20.127 34.731 -20.044 34.692 -20.019 34.787 -19.936 34.765 -19.862 34.771 -19.771 34.777 -19.756 34.718 -19.665 34.781 -19.582 34.682 -19.491 34.631 -19.483 34.547 -19.460 34.642 -19.543 34.683 -19.617 34.791 -19.700 34.841 -19.723 34.859 -19.690 34.954 -19.659 35.011 -19.576 35.113 -19.510 35.206 -19.436 35.299 -19.353 35.392 -19.263 35.473 -19.179 35.545 -19.096 35.618 -19.005 35.670 -18.932 35.771 -18.875 35.865 -18.817 35.959 -18.769 36.052 -18.686 36.116 -18.686 36.143 -18.769 36.138 -18.761 36.233 -18.736 36.261 -18.653 36.257 -18.580 36.246 -18.572 36.245 -18.663 36.307 -18.670 36.403 -18.580 36.399 -18.496 36.461 -18.440 36.476 -18.375 36.578 -18.291 36.659 -18.208 36.751 -18.125 36.824 -18.034 36.916 -17.943 36.976 -17.852 36.896 -17.786 36.827 -17.835 36.925 -17.843 37.030 -17.760 37.082 -17.668 37.183 -17.645 37.190 -17.572 37.292 -17.539 37.357 -17.491 37.451 -17.450 37.545 -17.417 37.570 -17.384 37.673 -17.328 37.766 -17.272 37.868 -17.239 37.962 -17.214 38.057 -17.123 38.109 -17.163 38.148 -17.131 38.242 -17.090 38.345 -17.057 38.439 -17.026 38.542 -16.985 38.636 -16.927 38.662 -16.953 38.768 -16.945 38.872 -16.894 38.965 -16.887 39.003 -16.879 39.098 -16.796 39.112 -16.771 39.120 -16.705 39.221 -16.647 39.314 -16.606 39.408 -16.492 39.611 -16.434 39.704 -16.351 39.767 -16.260 39.798 -16.235 39.806 -16.179 39.821 -16.146 39.915 -16.113 39.989 -16.030 40.040 -15.939 40.100 -15.848 40.105 -15.765 40.206 -15.674 40.285 -15.591 40.365 -15.508 40.428 -15.442 40.521 -15.351 40.551 -15.260 40.594 -15.177 40.647 -15.094 40.634 -15.101 40.530 -15.028 40.582 -14.987 40.676 -14.904 40.638 -14.904 40.742 -14.838 40.636 -14.797 40.709 -14.724 40.802 -14.641 40.818 -14.550 40.786 -14.459 40.800 -14.368 40.806 -14.345 40.701 -14.436 40.640 -14.459 40.641 -14.376 40.600 -14.293 40.615 -14.202 40.716 -14.118 40.696 -14.144 40.601 -14.060 40.581 -13.969 40.624 -13.879 40.621 -13.796 40.581 -13.712 40.569 -13.621 40.549 -13.538 40.537 -13.447 40.534 -13.439 40.507 -13.356 40.531 -13.265 40.557 -13.174 40.554 -13.091 40.559 -13.000 40.548 -12.917 40.582 -12.876 40.478 -12.786 40.539 -12.703 40.553 -12.611 40.550 -12.520 40.538 -12.437 40.452 -12.354 40.507 -12.263 40.504 -12.180 40.434 -12.172 40.480 -12.081 40.486 -11.998 40.493 -11.907 40.498 -11.824 40.467 -11.725 40.455 -11.642 40.423 -11.611 40.422 -11.528 40.437 -11.445 40.426 -11.354 40.458 -11.288 40.352 -11.273 40.343 -11.190 40.404 -11.098 40.476 -11.008 40.528 -10.925 40.479 -10.833 40.505 -10.750 40.557 -10.710 40.461 -10.626 40.562 -10.536 40.541 -10.453 40.492 -10.419 40.407 -10.475 40.354 -10.516 40.260 -10.590 40.159 -10.656 40.066 -10.739 39.974 -10.746 39.917 -10.795 39.815 -10.851 39.722 -10.876 39.619 -10.909 39.525 -10.965 39.432 -11.023 39.339 -11.096 39.238 -11.081 39.142 -11.081 39.038 -11.096 38.944 -11.112 38.850 -11.178 38.757 -11.193 38.662 -11.259 38.569 -11.333 38.468 -11.309 38.373 -11.226 38.266 -11.201 38.170 -11.176 38.075 -11.184 38.048 -11.199 37.954 -11.240 37.860 -11.323 37.825 -11.414 37.791 -11.497 37.729 -11.563 37.636 -11.570 37.541 -11.644 37.448 -11.636 37.382 -11.621 37.287 -11.606 37.191 -11.580 37.087 -11.507 36.990 -11.507 36.895 -11.499 36.800 -11.582 36.738 -11.640 36.636 -11.656 36.541 -11.600 36.456 -11.615 36.353 -11.631 36.258 -11.548 36.161 -11.464 36.075 -11.433 35.979 -11.350 35.882 -11.373 35.778 -11.431 35.685 -11.514 35.592 -11.514 35.497 -11.499 35.402 -11.499 35.203 -11.491 35.090 -11.491 34.750 -11.499 34.638 -11.582 34.622 -11.665 34.616 -11.756 34.561 -12.004 34.397 -12.095 34.362 -12.161 34.364 -12.251 34.404 -12.335 34.415 -12.418 34.435 -12.501 34.466 -12.584 34.505 -12.667 34.517 -12.758 34.528 -12.842 34.530 -12.925 34.541 -13.016 34.562 -13.099 34.564 -13.182 34.548 -13.265 34.559 -13.356 34.626 -13.405 34.722 -13.412 34.827 -13.420 34.856 -13.486 34.952 -13.519 34.980 -13.610 35.086 -13.700 35.153 -13.784 35.220 -13.875 35.297 -13.965 35.375 -14.057 35.453 -14.148 35.502 -14.246 35.580 -14.262 35.589 -14.360 35.667 -14.451 35.745 -14.534 35.823 -14.550 35.841 -14.765 35.847 -14.848 35.858 -14.896 35.841 -14.979 35.806 -15.070 35.772 -15.161 35.785 -15.217 35.805 -15.265 35.815 -15.349 35.828 -15.440 35.823 -15.606 35.812 -15.697 35.806 -15.780 35.801 -15.863 35.778 -15.946 35.764 -15.954 35.764 -15.970 35.729 -16.003 35.635 -16.028 35.532 -16.012 35.436 -16.063 35.342 -16.146 35.261 -16.237 35.256 -16.320 35.232 -16.403 35.160 -16.436 35.123 -16.436 35.115 -16.444 35.115 -16.444 35.124 -16.452 35.124 -16.535 35.203 -16.618 35.262 -16.701 35.283 -16.792 35.258 -16.875 35.290 -16.958 35.285 -17.024 35.269 -17.017 35.222 -17.017 35.071 -16.926 35.039 -16.842 35.120 -16.759 35.125 -16.711 35.019 -16.687 34.980 -16.597 34.901 -16.506 34.822 -16.422 34.734 -16.339 34.636 -16.249 34.568 -16.192 34.470 -16.101 34.400 -16.010 34.396 -15.920 34.384 -15.836 34.296 -15.745 34.238 -15.655 34.289 -15.581 34.382 -15.498 34.425 -15.472 34.424 -15.374 34.412 -15.283 34.492 -15.200 34.553 -15.126 34.569 -15.043 34.547 -14.960 34.545 -14.902 34.581 -14.811 34.552 -14.720 34.549 -14.629 34.518 -14.538 34.525 -14.455 34.476 -14.364 34.409 -14.316 34.313 -14.341 34.218 -14.349 34.114 -14.389 34.011 -14.381 33.907 -14.437 33.813 -14.397 33.708 -14.480 33.681 -14.397 33.584 -14.323 33.478 -14.240 33.429 -14.157 33.372 -14.074 33.306 -13.975 33.303 -13.919 33.217 -13.960 33.105 -14.001 33.003 -14.031 32.890 -14.072 32.778 -14.112 32.667 -14.146 32.555 -14.186 32.451 -14.219 32.348 -14.219 32.330 -14.244 32.227 -14.260 32.132 -14.308 32.038 -14.323 31.934 -14.364 31.840 -14.387 31.745 -14.428 31.651 -14.461 31.588 -14.509 31.484 -14.534 31.390 -14.558 31.295 -14.573 31.201 -14.596 31.106 -14.612 31.011 -14.635 30.907 -14.660 30.812 -14.693 30.718 -14.734 30.606 -14.767 30.511 -14.815 30.417 -14.855 30.314 -14.863 30.218 -14.879 30.219 ; #615 7 26.238 50.491 26.198 50.496 26.107 50.522 26.024 50.495 25.941 50.572 25.858 50.601 25.941 50.638 26.115 50.656 26.198 50.647 26.206 50.639 26.289 50.589 26.240 50.487 ; #616 7 -16.208 39.833 -16.291 39.901 -16.235 39.917 -16.151 39.922 -16.208 39.829 ; #617 7 25.356 50.781 25.273 50.790 25.190 50.790 25.099 50.828 25.074 50.816 24.991 50.864 24.900 50.865 24.842 50.870 24.826 50.851 24.811 50.859 24.770 50.885 24.712 50.937 24.646 51.029 24.631 51.133 24.646 51.153 24.695 51.233 24.718 51.332 24.718 51.428 24.809 51.474 24.892 51.499 24.976 51.564 25.059 51.608 25.074 51.619 25.122 51.615 25.279 51.633 25.362 51.536 25.446 51.536 25.529 51.528 25.612 51.507 25.695 51.573 25.751 51.597 25.776 51.609 25.860 51.609 25.950 51.602 25.966 51.594 25.973 51.595 26.014 51.534 26.007 51.486 26.090 51.389 26.155 51.378 26.214 51.287 26.173 51.185 26.132 51.124 26.049 51.047 25.966 51.011 25.883 51.011 25.800 50.936 25.709 50.935 25.625 50.926 25.709 50.888 25.625 50.870 25.542 50.869 25.557 50.833 25.565 50.834 25.581 50.806 25.498 50.779 25.407 50.787 25.350 50.781 ; #618 7 44.995 56.013 44.911 56.023 44.819 56.018 44.719 56.024 44.627 56.029 44.527 56.023 44.428 56.027 44.336 56.022 44.236 56.025 44.144 56.033 44.044 56.027 43.944 56.033 43.853 56.028 43.753 56.034 43.745 56.032 43.653 56.027 43.561 56.035 43.461 56.029 43.369 56.037 43.270 56.030 43.169 56.036 43.078 56.032 42.994 56.029 42.894 56.032 42.802 56.028 42.702 56.031 42.602 56.025 42.510 56.030 42.411 56.024 42.318 56.029 42.135 56.023 42.035 56.017 41.951 56.024 41.833 56.013 41.749 56.020 41.657 56.016 41.532 56.013 41.364 56.011 41.356 56.100 41.348 56.201 41.340 56.312 41.340 56.424 41.332 56.535 41.325 56.636 41.325 56.749 41.332 56.854 41.307 56.960 41.307 57.064 41.391 57.167 41.465 57.074 41.550 57.045 41.634 57.027 41.726 56.990 41.810 57.003 41.894 56.984 41.960 57.105 42.044 57.199 42.137 57.274 42.186 57.390 42.201 57.498 42.186 57.608 42.201 57.715 42.217 57.832 42.301 57.925 42.393 57.969 42.477 57.950 42.536 58.070 42.487 58.160 42.495 58.276 42.461 58.371 42.370 58.419 42.328 58.521 42.413 58.452 42.504 58.385 42.588 58.316 42.622 58.212 42.706 58.234 42.714 58.350 42.688 58.447 42.688 58.551 42.772 58.605 42.757 58.715 42.623 58.886 42.565 58.983 42.557 59.085 42.557 59.189 42.483 59.272 42.399 59.281 42.391 59.298 42.368 59.395 42.326 59.487 42.334 59.572 42.342 59.593 42.350 59.699 42.357 59.752 42.350 59.863 42.293 59.960 42.260 60.012 42.186 60.010 42.144 60.008 42.137 60.015 42.129 60.023 42.044 60.009 41.996 60.005 41.988 60.044 41.980 60.073 41.931 60.163 41.923 60.170 41.839 60.207 41.839 60.104 41.806 60.075 41.798 60.073 41.706 60.139 41.622 60.166 41.538 60.092 41.454 60.097 41.403 60.195 41.379 60.292 41.330 60.382 41.272 60.478 41.280 60.583 41.305 60.694 41.305 60.910 41.264 61.001 41.272 61.044 41.280 61.149 41.223 61.236 41.230 61.342 41.256 61.368 41.289 61.387 41.346 61.454 41.321 61.559 41.297 61.655 41.248 61.744 41.189 61.840 41.123 61.924 41.072 61.948 40.988 61.974 40.904 61.981 40.812 62.014 40.728 62.062 40.643 62.097 40.559 62.164 40.544 62.169 40.511 62.262 40.426 62.328 40.342 62.364 40.250 62.396 40.166 62.382 40.082 62.398 40.049 62.438 39.974 62.530 39.926 62.621 39.827 62.802 39.769 62.899 39.713 62.988 39.664 63.088 39.614 63.178 39.573 63.280 39.474 63.460 39.408 63.546 39.325 63.628 39.317 63.635 39.268 63.683 39.260 63.699 39.212 63.799 39.162 63.889 39.121 63.990 39.064 64.078 39.023 64.170 39.057 64.280 39.023 64.353 39.008 64.368 38.934 64.461 38.818 64.636 38.777 64.736 38.744 64.830 38.721 64.936 38.695 64.967 38.639 65.064 38.573 65.150 38.517 65.237 38.459 65.334 38.410 65.423 38.395 65.459 38.362 65.532 38.329 65.625 38.313 65.723 38.370 65.848 38.337 65.941 38.321 66.048 38.263 66.144 38.239 66.240 38.166 66.322 38.133 66.425 38.133 66.527 38.092 66.618 38.076 66.644 37.993 66.613 37.909 66.533 37.819 66.519 37.735 66.528 37.652 66.507 37.568 66.554 37.477 66.502 37.461 66.517 37.461 66.548 37.436 66.652 37.461 66.760 37.469 66.863 37.477 66.975 37.446 67.068 37.362 67.148 37.362 67.158 37.279 67.237 37.294 67.281 37.320 67.389 37.327 67.400 37.360 67.510 37.345 67.607 37.322 67.711 37.288 67.762 37.304 67.784 37.312 67.786 37.353 67.816 37.436 67.819 37.527 67.793 37.611 67.825 37.694 67.878 37.778 67.979 37.869 68.053 37.952 68.094 38.036 68.217 38.059 68.254 38.142 68.314 38.292 68.353 38.376 68.274 38.424 68.185 38.507 68.105 38.533 68.084 38.581 68.087 38.655 68.045 38.738 68.048 38.822 68.070 38.905 68.142 38.989 68.146 39.004 68.140 39.088 68.072 39.088 67.970 39.072 67.864 39.080 67.764 39.105 67.659 39.188 67.662 39.254 67.578 39.254 67.476 39.288 67.382 39.371 67.323 39.462 67.387 39.546 67.400 39.571 67.397 39.571 67.407 39.594 67.472 39.644 67.526 39.701 67.652 39.701 67.754 39.685 67.852 39.670 67.951 39.646 68.056 39.639 68.157 39.639 68.269 39.623 68.367 39.656 68.487 39.740 68.578 39.856 68.581 39.940 68.594 39.955 68.659 39.971 68.766 40.055 68.751 39.998 68.835 40.082 68.760 40.166 68.756 40.166 68.859 40.159 68.897 40.233 68.840 40.225 68.819 40.202 68.659 40.225 68.597 40.241 68.571 40.264 68.598 40.289 68.718 40.282 68.744 40.282 68.794 40.305 68.904 40.321 68.981 40.321 69.000 40.313 69.038 40.280 69.117 40.272 69.196 40.272 69.206 40.280 69.218 40.287 69.271 40.321 69.241 40.328 69.224 40.369 69.228 40.377 69.271 40.462 69.279 40.503 69.253 40.577 69.227 40.661 69.194 40.753 69.294 40.837 69.312 40.886 69.431 40.837 69.518 40.829 69.534 40.755 69.613 40.722 69.714 40.806 69.845 40.831 69.956 40.831 69.965 40.839 69.988 40.906 70.113 40.947 70.229 41.031 70.338 41.115 70.427 41.016 70.546 40.941 70.634 40.849 70.653 40.826 70.748 40.810 70.752 40.718 70.619 40.643 70.491 40.612 70.461 40.561 70.332 40.513 70.307 40.464 70.330 40.448 70.385 40.440 70.423 40.448 70.457 40.297 70.611 40.305 70.717 40.330 70.828 40.338 70.933 40.364 70.992 40.364 71.103 40.420 71.235 40.387 71.326 40.364 71.421 40.297 71.501 40.338 71.627 40.254 71.689 40.254 71.699 40.295 71.763 40.328 71.774 40.336 71.879 40.336 71.982 40.393 71.920 40.434 71.993 40.518 72.063 40.552 72.178 40.518 72.185 40.503 72.282 40.495 72.382 40.587 72.374 40.602 72.340 40.686 72.379 40.645 72.477 40.604 72.566 40.663 72.698 40.686 72.726 40.779 72.808 40.779 72.818 40.802 72.895 40.818 72.932 40.849 73.045 40.923 73.040 40.949 72.946 40.941 72.924 40.908 72.863 40.915 72.846 40.956 72.841 40.949 72.726 40.956 72.626 41.090 72.466 41.105 72.390 41.121 72.282 41.105 72.268 41.080 72.156 41.137 72.176 41.162 72.165 41.246 72.156 41.272 72.145 41.280 72.119 41.246 72.045 41.280 71.954 41.280 71.944 41.336 71.861 41.420 71.848 41.446 71.819 41.530 71.745 41.504 71.664 41.546 71.678 41.630 71.625 41.546 71.616 41.461 71.618 41.370 71.524 41.344 71.412 41.260 71.415 41.203 71.364 41.228 71.344 41.244 71.247 41.228 71.138 41.260 71.036 41.268 70.935 41.317 70.849 41.373 70.756 41.457 70.745 41.542 70.683 41.508 70.568 41.485 70.457 41.552 70.376 41.585 70.284 41.585 70.181 41.593 70.164 41.685 70.236 41.741 70.358 41.826 70.490 41.910 70.590 41.976 70.716 42.025 70.836 42.109 70.884 42.125 71.003 42.191 71.129 42.266 71.258 42.307 71.169 42.348 71.069 42.314 70.954 42.256 70.821 42.215 70.703 42.131 70.634 42.100 70.520 42.156 70.435 42.090 70.309 42.005 70.211 41.921 70.151 41.847 70.014 41.839 69.980 41.772 69.888 41.765 69.782 41.739 69.670 41.683 69.548 41.632 69.418 41.548 69.318 41.524 69.270 41.498 69.158 41.432 69.045 41.348 69.056 41.256 68.987 41.225 68.874 41.141 68.743 41.057 68.707 41.016 68.624 41.000 68.587 40.915 68.551 40.882 68.559 40.859 68.551 40.775 68.605 40.683 68.607 40.698 68.509 40.690 68.404 40.714 68.330 40.747 68.238 40.781 68.189 40.806 68.147 40.863 68.062 40.947 68.080 40.988 68.102 41.062 68.126 41.119 68.126 41.127 68.078 41.168 67.988 41.260 67.914 41.252 67.902 41.236 67.869 41.236 67.818 41.252 67.720 41.244 67.615 41.228 67.507 41.221 67.401 41.213 67.286 41.213 66.957 41.221 66.857 41.228 66.746 41.236 66.708 41.329 66.687 41.420 66.656 41.604 66.610 41.696 66.580 41.796 66.561 41.880 66.546 41.972 66.534 42.064 66.481 42.064 66.130 42.139 66.030 42.223 66.037 42.307 66.032 42.399 66.041 42.483 66.077 42.575 66.087 42.675 66.109 42.759 66.116 42.843 66.122 42.935 66.120 43.027 66.129 43.011 66.020 42.962 65.892 42.996 65.788 43.095 65.727 43.195 65.666 43.287 65.591 43.379 65.527 43.463 65.326 43.522 65.239 43.596 65.158 43.663 65.074 43.729 65.012 43.778 64.913 43.729 64.784 43.678 64.664 43.629 64.534 43.606 64.403 43.606 64.289 43.614 64.167 43.622 64.056 43.629 63.934 43.637 63.822 43.645 63.701 43.653 63.589 43.661 63.477 43.676 63.368 43.684 63.246 43.676 63.139 43.661 63.020 43.645 62.911 43.629 62.783 43.614 62.654 43.606 62.537 43.590 62.409 43.575 62.281 43.559 62.162 43.543 62.053 43.569 62.028 43.635 61.943 43.709 61.851 43.776 61.766 43.851 61.683 43.917 61.588 43.991 61.505 44.058 61.420 44.125 61.325 44.199 61.241 44.255 61.153 44.348 61.118 44.432 61.080 44.583 60.779 44.598 60.741 44.817 60.281 45.035 59.788 45.170 59.505 45.203 59.444 45.219 59.407 45.261 59.305 45.269 59.298 45.284 59.261 45.334 59.161 45.383 59.061 45.426 58.959 45.441 58.922 45.491 58.822 45.532 58.719 45.582 58.619 45.582 58.609 45.598 58.572 45.582 58.516 45.556 58.383 45.525 58.247 45.509 58.137 45.485 58.024 45.459 57.901 45.426 57.766 45.402 57.633 45.368 57.498 45.342 57.375 45.318 57.242 45.284 57.107 45.259 56.985 45.225 56.849 45.209 56.774 45.183 56.661 45.160 56.548 45.134 56.416 45.100 56.281 45.068 56.156 45.043 56.034 45.035 56.022 ; #619 7 10.526 104.081 10.460 103.999 10.445 103.903 10.362 103.989 10.279 104.027 10.195 104.045 10.104 104.102 10.187 104.093 10.271 104.109 10.354 104.147 10.445 104.148 10.528 104.081 ; #620 7 9.835 106.157 9.752 106.189 9.669 106.250 9.628 106.343 9.711 106.253 9.795 106.184 ; #621 7 10.751 106.853 10.667 106.853 10.584 106.818 10.501 106.884 10.584 106.921 10.667 106.912 10.751 106.855 ; #622 7 10.599 106.998 10.599 106.980 10.516 106.989 ; #623 7 12.720 109.415 12.687 109.411 12.646 109.502 ; #624 7 24.470 123.873 24.430 123.835 24.339 123.786 24.339 123.883 24.364 123.985 24.447 123.967 24.472 123.876 ; #625 7 24.501 124.170 24.486 124.158 24.403 124.216 24.418 124.317 24.584 124.352 24.501 124.278 24.501 124.172 ; #626 7 24.935 125.369 24.927 125.349 24.844 125.331 24.786 125.415 24.819 125.519 24.844 125.428 24.935 125.371 ; #627 7 34.741 129.576 34.741 129.566 34.683 129.432 34.600 129.425 34.517 129.399 34.433 129.420 34.393 129.503 34.484 129.503 34.567 129.569 34.650 129.567 ; #628 7 34.284 129.448 34.333 129.430 34.325 129.327 34.242 129.309 34.158 129.312 34.192 129.426 34.282 129.447 ; #629 7 32.754 128.801 32.739 128.804 32.648 128.803 32.698 128.934 32.721 129.043 32.804 128.991 32.804 128.892 32.838 128.807 32.754 128.799 ; #630 7 33.120 129.267 33.161 129.247 33.069 129.208 32.986 129.163 32.954 129.248 33.037 129.247 33.120 129.274 ; #631 7 26.447 126.870 26.415 126.830 26.366 126.912 26.449 126.873 ; #632 7 33.362 129.682 33.393 129.626 33.310 129.562 33.218 129.522 33.276 129.647 33.360 129.684 ; #633 7 33.876 129.907 33.869 129.816 33.786 129.837 33.793 129.940 33.876 129.909 ; #634 7 26.140 127.794 26.196 127.909 26.279 127.888 26.362 127.941 26.453 127.999 26.537 128.102 26.602 128.221 26.686 128.284 26.718 128.400 26.802 128.445 26.885 128.442 26.852 128.334 26.761 128.239 26.695 128.121 26.753 128.042 26.662 128.032 26.579 128.034 26.505 127.914 26.422 127.849 26.339 127.841 26.256 127.756 26.165 127.775 26.142 127.785 ; #635 7 32.489 130.154 32.448 130.136 32.365 130.157 32.340 130.155 32.300 130.147 32.267 130.151 32.251 130.153 32.275 130.212 32.358 130.296 32.448 130.345 32.532 130.354 32.588 130.271 32.572 130.165 32.489 130.146 ; #636 7 31.723 129.820 31.723 129.886 31.806 129.904 ; #637 7 32.512 130.389 32.497 130.364 32.464 130.449 32.489 130.559 32.572 130.626 32.580 130.521 32.514 130.393 ; #638 7 27.477 128.696 27.421 128.714 27.504 128.810 27.479 128.695 ; #639 7 27.960 129.065 27.960 129.035 27.877 129.027 27.786 129.036 27.786 129.143 27.877 129.115 ; #640 7 28.251 129.335 28.217 129.325 28.185 129.412 ; #641 7 28.574 129.831 28.526 129.738 28.469 129.613 28.421 129.490 28.363 129.374 28.272 129.345 28.215 129.433 28.183 129.520 28.266 129.604 28.357 129.604 28.405 129.717 28.488 129.851 28.579 129.833 ; #642 7 36.172 133.227 36.165 133.155 36.082 133.137 ; #643 7 30.503 130.629 30.469 130.527 30.386 130.510 30.303 130.572 30.296 130.667 30.386 130.763 30.469 130.722 ; #644 7 36.374 133.440 36.318 133.329 36.227 133.367 36.235 133.472 36.318 133.509 ; #645 7 33.952 132.558 33.985 132.582 33.952 132.458 33.919 132.344 33.927 132.447 ; #646 7 34.308 132.618 34.267 132.521 34.226 132.612 34.310 132.619 ; #647 7 33.677 132.655 33.594 132.558 33.528 132.429 33.478 132.297 33.395 132.161 33.402 132.264 33.476 132.406 33.517 132.523 33.426 132.531 33.342 132.554 33.350 132.666 33.259 132.665 33.244 132.559 33.186 132.632 33.095 132.573 33.054 132.654 32.971 132.635 32.979 132.738 32.963 132.789 32.880 132.810 32.824 132.893 32.808 132.985 32.824 133.091 32.766 133.174 32.849 133.123 32.932 133.161 33.023 133.163 33.107 133.258 33.189 133.325 33.272 133.399 33.364 133.403 33.447 133.540 33.513 133.669 33.571 133.795 33.571 133.904 33.545 133.992 33.520 134.081 33.455 134.159 33.381 134.225 33.325 134.300 33.416 134.360 33.499 134.388 33.582 134.444 33.590 134.448 33.673 134.513 33.706 134.568 33.789 134.706 33.855 134.835 33.938 134.815 34.029 134.787 34.112 134.725 34.196 134.744 34.286 134.777 34.271 134.660 34.263 134.569 34.304 134.478 34.337 134.393 34.393 134.310 34.418 134.222 34.403 134.166 34.426 134.077 34.360 133.947 34.277 133.809 34.300 133.720 34.209 133.767 34.126 133.759 34.077 133.719 34.029 133.588 34.029 133.488 33.996 133.373 33.981 133.258 34.054 133.191 34.138 133.119 34.162 133.031 34.079 132.975 33.996 132.910 33.938 132.853 33.855 132.834 33.772 132.816 33.688 132.700 33.681 132.659 ; #648 7 34.217 132.677 34.217 132.628 34.134 132.591 34.134 132.700 34.217 132.679 ; #649 7 30.885 131.199 30.878 131.157 30.795 131.111 30.712 131.075 30.628 131.057 30.537 130.999 30.454 130.972 30.462 131.083 30.545 131.089 30.628 131.135 30.712 131.171 30.802 131.202 ; #650 7 34.333 133.159 34.333 133.110 34.250 133.121 ; #651 7 45.487 141.112 45.503 141.083 45.417 141.106 45.368 141.179 45.453 141.189 45.485 141.110 ; #652 7 34.567 134.482 34.590 134.414 34.517 134.280 34.469 134.358 34.484 134.465 34.567 134.485 ; #653 7 45.282 141.288 45.207 141.235 45.158 141.299 45.199 141.439 45.257 141.381 ; #654 7 34.590 135.111 34.574 135.004 34.484 134.914 34.401 134.866 34.317 134.800 34.252 134.870 34.277 134.981 34.367 135.042 34.451 135.021 34.534 135.090 34.590 135.116 ; #655 7 42.262 139.632 42.178 139.590 42.170 139.688 42.262 139.735 ; #656 7 38.333 138.669 38.292 138.555 38.209 138.467 38.117 138.394 38.034 138.395 38.026 138.502 37.935 138.448 37.851 138.390 37.867 138.500 37.950 138.651 38.034 138.699 38.117 138.687 38.150 138.595 38.241 138.648 38.333 138.673 ; #657 7 44.210 143.977 44.203 143.972 44.195 144.080 ; #658 7 34.832 139.521 34.758 139.476 34.751 139.573 34.834 139.524 ; #659 7 -50.729 166.097 -50.687 166.046 -50.745 166.007 ; #660 7 22.447 102.154 22.439 102.162 22.356 102.195 22.272 102.277 22.217 102.372 22.133 102.454 22.050 102.505 21.992 102.591 21.936 102.637 21.853 102.670 21.770 102.665 21.721 102.753 21.804 102.825 21.896 102.823 21.804 102.864 21.789 102.957 21.706 102.990 21.650 103.009 21.567 102.929 21.484 102.933 21.392 102.899 21.309 102.903 21.294 102.918 21.228 102.915 21.145 102.966 21.079 103.051 21.072 103.058 20.988 103.111 20.905 103.193 20.905 103.277 20.864 103.355 20.890 103.456 20.816 103.539 20.783 103.630 20.735 103.726 20.818 103.788 20.901 103.793 20.950 103.907 20.974 103.970 21.023 104.074 21.015 104.138 20.982 104.237 20.942 104.327 20.859 104.388 20.826 104.478 20.793 104.490 20.745 104.578 20.661 104.592 20.588 104.542 20.613 104.461 20.598 104.449 20.514 104.379 20.491 104.471 20.491 104.567 20.443 104.643 20.359 104.664 20.293 104.690 20.301 104.788 20.278 104.880 20.245 104.921 20.162 104.973 20.079 104.958 20.071 104.948 20.038 104.866 19.955 104.768 19.940 104.830 19.857 104.771 19.791 104.665 19.708 104.597 19.700 104.499 19.748 104.411 19.740 104.313 19.781 104.223 19.740 104.121 19.771 104.030 19.756 104.010 19.700 104.028 19.616 104.100 19.533 104.070 19.493 104.064 19.501 104.056 19.460 103.955 19.386 103.886 19.330 103.973 19.322 104.077 19.282 104.166 19.198 104.219 19.198 104.284 19.150 104.372 19.077 104.457 19.036 104.547 18.963 104.632 18.905 104.719 18.882 104.812 18.874 104.915 18.843 105.006 18.818 105.049 18.802 105.143 18.719 105.195 18.661 105.140 18.570 105.108 18.487 105.171 18.471 105.198 18.388 105.241 18.348 105.331 18.264 105.403 18.295 105.417 18.255 105.506 18.171 105.569 18.088 105.630 18.022 105.629 17.939 105.663 17.856 105.717 17.773 105.761 17.765 105.789 17.707 105.876 17.624 105.938 17.533 106.009 17.450 106.101 17.384 106.186 17.361 106.212 17.369 106.309 17.285 106.334 17.202 106.397 17.119 106.431 17.094 106.456 17.071 106.557 16.997 106.546 16.972 106.551 16.916 106.551 16.833 106.548 16.742 106.569 16.742 106.578 16.651 106.649 16.568 106.674 16.560 106.768 16.585 106.781 16.577 106.875 16.494 106.900 16.411 106.972 16.411 106.981 16.419 107.020 16.419 107.066 16.345 107.131 16.312 107.135 16.272 107.175 16.224 107.263 16.183 107.361 16.150 107.451 16.119 107.429 16.036 107.350 15.985 107.247 15.902 107.149 15.819 107.232 15.736 107.277 15.652 107.348 15.637 107.441 15.546 107.485 15.521 107.565 15.438 107.619 15.355 107.644 15.347 107.643 15.339 107.613 15.248 107.599 15.165 107.540 15.125 107.438 15.074 107.459 15.001 107.543 14.918 107.468 14.834 107.506 14.794 107.510 14.728 107.485 14.637 107.476 14.554 107.383 14.471 107.336 14.388 107.356 14.304 107.330 14.221 107.339 14.130 107.358 14.064 107.446 14.016 107.441 13.925 107.440 13.900 107.464 13.834 107.514 13.751 107.552 13.720 107.566 13.637 107.604 13.554 107.604 13.538 107.611 13.447 107.584 13.422 107.572 13.339 107.535 13.248 107.499 13.165 107.461 13.149 107.468 13.066 107.477 12.983 107.515 12.892 107.540 12.809 107.560 12.642 107.560 12.627 107.558 12.544 107.524 12.461 107.468 12.437 107.371 12.437 107.362 12.469 107.348 12.453 107.251 12.428 107.173 12.362 107.091 12.279 107.027 12.230 106.955 12.223 106.937 12.215 106.841 12.215 106.766 12.132 106.722 12.108 106.625 12.116 106.530 12.124 106.502 12.108 106.406 12.101 106.405 12.017 106.451 11.987 106.430 11.903 106.413 11.812 106.438 11.820 106.422 11.836 106.328 11.876 106.238 11.892 106.144 11.892 106.098 11.907 106.005 11.816 105.958 11.801 105.901 11.768 105.802 11.745 105.800 11.720 105.806 11.637 105.864 11.553 105.864 11.487 105.857 11.397 105.894 11.381 105.893 11.340 105.983 11.257 106.058 11.224 106.150 11.151 106.177 11.128 106.184 11.120 106.117 11.037 106.145 10.946 106.145 10.961 106.052 10.994 105.991 10.986 105.895 11.052 105.836 11.093 105.814 11.176 105.756 11.143 105.658 11.120 105.561 11.105 105.495 11.105 105.477 11.081 105.380 11.031 105.280 11.056 105.188 11.056 105.178 11.064 105.171 11.071 105.163 11.071 105.154 11.079 105.088 11.110 105.074 11.103 105.073 11.095 105.064 11.069 105.032 11.062 105.032 10.988 105.032 10.905 105.070 10.822 104.978 10.766 104.915 10.733 104.885 10.685 104.785 10.693 104.691 10.693 104.568 10.652 104.537 10.586 104.435 10.586 104.418 10.545 104.468 10.576 104.490 10.536 104.476 10.452 104.504 10.369 104.561 10.369 104.656 10.377 104.752 10.294 104.827 10.269 104.919 10.253 104.963 10.170 105.039 10.162 105.038 10.106 105.070 10.023 105.070 10.106 105.043 10.040 104.942 9.950 104.851 9.866 104.828 9.700 104.800 9.617 104.804 9.278 104.783 9.205 104.787 9.122 104.782 9.031 104.786 8.947 104.781 8.973 104.877 8.988 104.904 8.905 104.890 8.880 104.935 8.857 104.839 8.783 104.740 8.735 104.831 8.750 104.927 8.783 105.024 8.831 105.122 8.915 105.202 8.980 105.300 9.064 105.332 9.147 105.374 9.170 105.385 9.261 105.456 9.317 105.555 9.350 105.651 9.391 105.749 9.406 105.805 9.447 105.902 9.479 105.999 9.512 106.096 9.578 106.126 9.661 106.169 9.745 106.128 9.828 106.069 9.911 106.019 9.994 105.949 10.085 105.863 10.093 105.855 10.159 105.778 10.166 105.788 10.166 105.797 10.159 105.796 10.143 105.832 10.087 105.921 10.062 105.947 9.978 106.003 9.812 106.182 9.756 106.274 9.698 106.365 9.713 106.461 9.797 106.532 9.888 106.538 9.971 106.468 10.054 106.391 10.236 106.203 10.319 106.128 10.392 106.080 10.400 106.090 10.327 106.177 10.236 106.243 10.162 106.330 10.097 106.418 10.031 106.506 9.990 106.597 10.074 106.631 10.131 106.543 10.162 106.462 10.245 106.387 10.329 106.329 10.412 106.264 10.420 106.273 10.394 106.317 10.311 106.363 10.228 106.430 10.172 106.519 10.164 106.526 10.164 106.621 10.247 106.656 10.281 106.755 10.364 106.688 10.396 106.588 10.422 106.496 10.462 106.406 10.470 106.397 10.478 106.389 10.478 106.398 10.470 106.501 10.454 106.594 10.447 106.688 10.538 106.762 10.621 106.715 10.636 106.622 10.629 106.613 10.595 106.563 10.644 106.550 10.636 106.604 10.677 106.704 10.760 106.741 10.801 106.728 10.841 106.732 10.841 106.750 10.801 106.840 10.785 106.856 10.785 106.830 10.702 106.896 10.768 106.876 10.719 106.918 10.636 106.926 10.719 106.953 10.810 106.980 10.778 106.994 10.687 107.002 10.646 107.093 10.638 107.138 10.555 107.205 10.611 107.286 10.627 107.391 10.667 107.490 10.733 107.552 10.781 107.652 10.814 107.751 10.872 107.852 10.864 107.955 10.948 107.999 11.031 108.036 11.039 108.037 11.087 108.137 11.103 108.234 11.176 108.345 11.201 108.443 11.284 108.480 11.325 108.540 11.340 108.637 11.424 108.729 11.489 108.831 11.474 108.867 11.489 108.964 11.573 108.990 11.656 108.990 11.687 108.985 11.720 108.997 11.720 109.101 11.803 109.148 11.894 109.204 11.977 109.166 11.977 109.100 12.060 109.138 12.143 109.176 12.226 109.147 12.143 109.184 12.060 109.184 12.143 109.211 12.234 109.174 12.317 109.183 12.401 109.175 12.401 109.166 12.416 109.150 12.409 109.167 12.499 109.176 12.582 109.119 12.557 109.211 12.517 109.302 12.600 109.276 12.650 109.234 12.733 109.226 12.817 109.198 12.824 109.207 12.907 109.300 12.824 109.329 12.741 109.395 12.824 109.404 12.907 109.357 12.991 109.384 13.024 109.443 13.107 109.397 13.190 109.341 13.221 109.307 13.304 109.279 13.387 109.288 13.478 109.269 13.562 109.214 13.592 109.312 13.675 109.237 13.767 109.191 13.675 109.257 13.767 109.220 13.832 109.210 13.923 109.211 14.006 109.220 13.923 109.249 14.006 109.284 14.089 109.238 14.173 109.229 14.256 109.192 14.347 109.173 14.430 109.164 14.513 109.106 14.596 109.097 14.679 109.051 14.763 109.051 14.803 109.047 14.886 109.029 14.970 108.954 15.053 108.936 15.136 108.903 15.219 108.889 15.276 108.851 15.359 108.920 15.449 108.859 15.533 108.825 15.459 108.758 15.533 108.752 15.616 108.689 15.600 108.623 15.684 108.589 15.774 108.528 15.858 108.476 15.941 108.434 15.989 108.384 15.997 108.376 16.005 108.377 16.088 108.306 16.171 108.272 16.262 108.353 16.285 108.261 16.262 108.240 16.188 108.257 16.173 108.263 16.132 108.219 16.132 108.210 16.140 108.221 16.173 108.254 16.181 108.247 16.247 108.162 16.312 108.180 16.353 108.102 16.369 108.105 16.452 108.071 16.477 107.970 16.421 107.866 16.512 107.816 16.595 107.771 16.618 107.690 16.668 107.631 16.724 107.544 16.765 107.486 16.773 107.469 16.781 107.489 16.732 107.585 16.805 107.513 16.937 107.342 17.011 107.257 16.986 107.189 16.986 107.171 17.076 107.203 17.117 107.171 17.133 107.156 17.173 107.162 17.181 107.154 17.247 107.069 17.270 107.037 17.469 106.780 17.552 106.697 17.585 106.665 17.669 106.622 17.752 106.568 17.808 106.521 17.792 106.442 17.808 106.418 17.815 106.411 17.846 106.433 17.862 106.340 17.878 106.324 17.862 106.418 17.854 106.434 17.846 106.471 17.815 106.513 17.898 106.497 17.982 106.483 18.065 106.551 18.156 106.480 18.197 106.391 18.280 106.328 18.346 106.242 18.361 106.148 18.444 106.076 18.527 106.004 18.568 105.964 18.576 105.956 18.659 105.884 18.742 105.850 18.833 105.826 18.767 105.787 18.850 105.782 18.941 105.731 19.025 105.668 19.108 105.651 19.191 105.701 19.274 105.770 19.357 105.812 19.381 105.844 19.464 105.819 19.547 105.841 19.630 105.844 19.704 105.838 19.712 105.839 19.795 105.881 19.868 105.900 19.951 105.960 20.034 105.992 20.092 106.058 20.100 106.115 20.124 106.129 20.100 106.124 20.100 106.200 20.141 106.225 20.214 106.335 20.297 106.397 20.313 106.496 20.396 106.549 20.389 106.518 20.396 106.511 20.479 106.601 20.562 106.569 20.636 106.583 20.719 106.625 20.727 106.618 20.752 106.604 20.727 106.695 20.783 106.802 20.866 106.761 20.950 106.747 20.965 106.721 21.021 106.790 21.062 106.691 21.102 106.672 21.110 106.770 21.027 106.802 20.961 106.886 21.044 106.910 21.036 107.005 21.120 107.058 21.120 107.154 21.036 107.092 21.021 107.195 21.087 107.303 21.170 107.394 21.261 107.411 21.344 107.408 21.377 107.510 21.377 107.607 21.460 107.669 21.493 107.771 21.576 107.816 21.617 107.920 21.534 107.951 21.557 108.052 21.565 108.080 21.572 108.082 21.621 108.014 21.677 107.928 21.735 107.843 21.743 107.815 21.717 107.754 21.685 107.652 21.685 107.643 21.677 107.536 21.669 107.517 21.735 107.502 21.685 107.396 21.735 107.388 21.801 107.303 21.801 107.227 21.866 107.143 21.890 107.071 21.973 107.086 21.998 106.994 22.054 106.908 22.079 106.807 22.046 106.745 22.129 106.731 22.213 106.728 22.271 106.710 22.354 106.707 22.410 106.620 22.451 106.610 22.483 106.598 22.540 106.608 22.547 106.618 22.656 106.638 22.648 106.733 22.656 106.753 22.739 106.786 22.822 106.819 22.905 106.758 22.938 106.716 22.979 106.627 22.995 106.572 22.954 106.508 22.938 106.409 22.931 106.311 23.014 106.270 23.054 106.181 23.054 106.104 23.004 106.039 22.996 105.941 23.045 105.853 23.110 105.768 23.126 105.674 23.159 105.604 23.242 105.572 23.290 105.522 23.348 105.436 23.356 105.437 23.439 105.366 23.407 105.343 23.323 105.243 23.300 105.153 23.250 105.047 23.242 105.028 23.234 104.950 23.168 104.871 23.085 104.894 22.995 104.907 22.987 104.897 22.921 104.820 22.890 104.718 22.897 104.622 22.814 104.522 22.756 104.415 22.756 104.406 22.807 104.319 22.814 104.320 22.897 104.326 22.897 104.317 22.890 104.268 22.865 104.167 22.849 104.156 22.758 104.093 22.675 104.087 22.592 104.072 22.577 104.040 22.569 104.030 22.569 104.021 22.617 103.971 22.690 103.878 22.764 103.795 22.847 103.713 22.822 103.671 22.739 103.637 22.648 103.583 22.656 103.585 22.739 103.514 22.822 103.473 22.822 103.376 22.739 103.344 22.665 103.234 22.658 103.224 22.567 103.149 22.519 103.076 22.567 102.988 22.600 102.964 22.683 102.882 22.739 102.796 22.764 102.704 22.812 102.615 22.805 102.518 22.722 102.467 22.638 102.423 22.565 102.345 22.481 102.313 22.466 102.214 ; #661 7 -45.834 166.435 -45.810 166.517 -45.768 166.591 -45.717 166.655 -45.802 166.698 -45.818 166.598 -45.903 166.609 -45.887 166.709 -45.812 166.740 -45.804 166.838 -45.837 166.766 -45.905 166.727 -45.947 166.643 -46.040 166.674 -46.048 166.788 -46.056 166.912 -46.071 167.033 -46.071 167.065 -46.080 167.189 -46.088 167.281 -46.020 167.340 -45.979 167.413 -46.028 167.579 -46.129 167.691 -46.222 167.741 -46.222 167.858 -46.206 167.948 -46.181 167.993 -46.206 168.125 -46.307 168.217 -46.349 168.188 -46.434 168.273 -46.427 168.318 -46.393 168.390 -46.427 168.530 -46.403 168.622 -46.403 168.684 -46.496 168.798 -46.496 169.030 -46.480 169.121 -46.472 169.219 -46.464 169.243 -46.456 169.341 -46.414 169.415 -46.406 169.523 -46.373 169.595 -46.323 169.660 -46.298 169.751 -46.204 169.730 -46.171 169.802 -46.121 169.877 -46.088 169.959 -46.088 169.968 -46.071 169.991 -46.030 170.055 -45.988 170.138 -45.895 170.150 -45.887 170.152 -45.837 170.216 -45.788 170.304 -45.762 170.403 -45.754 170.511 -45.738 170.610 -45.653 170.629 -45.685 170.546 -45.711 170.466 -45.669 170.539 -45.627 170.613 -45.542 170.545 -45.475 170.592 -45.433 170.666 -45.358 170.704 -45.273 170.742 -45.179 170.741 -45.104 170.780 -45.029 170.829 -44.979 170.886 -44.928 170.944 -44.862 171.018 -44.796 171.063 -44.739 171.094 -44.655 171.123 -44.555 171.115 -44.455 171.129 -44.371 171.157 -44.287 171.217 -44.195 171.248 -44.146 171.318 -44.130 171.336 -44.046 171.488 -44.030 171.525 -43.989 171.624 -43.956 171.718 -43.931 171.808 -43.907 171.858 -43.874 171.932 -43.848 172.014 -43.807 172.100 -43.776 172.208 -43.768 172.252 -43.745 172.301 -43.712 172.375 -43.628 172.403 -43.594 172.476 -43.661 172.651 -43.694 172.577 -43.725 172.492 -43.702 172.575 -43.717 172.735 -43.751 172.870 -43.694 172.942 -43.743 173.048 -43.676 173.101 -43.592 173.116 -43.508 172.947 -43.508 172.842 -43.485 172.717 -43.444 172.784 -43.360 172.748 -43.267 172.704 -43.267 172.714 -43.168 172.737 -43.093 172.783 -43.019 172.839 -42.995 172.931 -42.970 173.012 -42.937 173.086 -42.888 173.155 -42.847 173.231 -42.798 173.321 -42.741 173.352 -42.667 173.407 -42.583 173.444 -42.524 173.504 -42.457 173.535 -42.373 173.562 -42.315 173.643 -42.283 173.728 -42.224 173.778 -42.150 173.833 -42.109 173.908 -42.060 173.977 -42.037 173.965 -41.952 173.992 -41.886 174.053 -41.829 174.136 -41.778 174.193 -41.694 174.260 -41.602 174.205 -41.510 174.193 -41.444 174.152 -41.352 174.059 -41.268 174.094 -41.244 174.176 -41.186 174.257 -41.119 174.309 -41.093 174.377 -41.009 174.391 -41.066 174.361 -41.091 174.272 -41.141 174.204 -41.141 174.113 -41.174 174.031 -41.133 173.974 -41.117 174.073 -41.101 174.161 -41.044 174.222 -40.978 174.274 -40.894 174.207 -40.902 174.111 -40.927 174.032 -41.011 174.058 -41.011 173.945 -41.095 173.960 -41.095 174.072 -41.111 173.974 -41.145 173.892 -41.160 173.815 -41.101 173.865 -41.017 173.879 -40.951 173.931 -40.935 173.804 -40.902 173.887 -40.817 173.932 -40.843 173.833 -40.892 173.755 -40.966 173.711 -40.959 173.591 -41.000 173.538 -41.056 173.486 -41.072 173.378 -41.139 173.335 -41.180 173.250 -41.164 173.114 -41.072 173.081 -40.980 173.036 -40.931 173.032 -40.847 173.059 -40.763 173.065 -40.679 172.989 -40.712 172.906 -40.712 172.794 -40.679 172.745 -40.579 172.675 -40.545 172.685 -40.461 172.690 -40.420 172.766 -40.420 172.868 -40.436 172.995 -40.405 172.864 -40.397 172.745 -40.405 172.639 -40.489 172.612 -40.497 172.507 -40.538 172.441 -40.587 172.373 -40.628 172.297 -40.712 172.167 -40.786 172.113 -40.886 172.121 -40.970 172.127 -41.054 172.121 -41.154 172.142 -41.203 172.126 -41.277 172.080 -41.334 172.018 -41.419 171.981 -41.475 171.929 -41.526 171.871 -41.575 171.793 -41.616 171.727 -41.624 171.621 -41.639 171.585 -41.655 171.485 -41.755 171.484 -41.829 171.438 -41.913 171.400 -41.998 171.363 -42.097 171.349 -42.207 171.334 -42.274 171.281 -42.340 171.237 -42.348 171.225 -42.440 171.185 -42.496 171.132 -42.546 171.053 -42.587 170.986 -42.612 170.968 -42.678 170.924 -42.729 170.856 -42.786 170.794 -42.819 170.710 -42.860 170.633 -42.884 170.541 -42.909 170.450 -42.925 170.444 -42.976 170.376 -42.991 170.277 -43.084 170.236 -43.117 170.162 -43.158 170.094 -43.199 170.017 -43.248 169.957 -43.256 169.860 -43.306 169.791 -43.373 169.747 -43.414 169.670 -43.463 169.590 -43.488 169.508 -43.496 169.401 -43.537 169.302 -43.578 169.215 -43.628 169.135 -43.678 169.066 -43.694 169.051 -43.727 168.967 -43.768 168.889 -43.817 168.819 -43.842 168.717 -43.827 168.589 -43.860 168.514 -43.860 168.400 -43.902 168.322 -43.976 168.274 -44.025 168.194 -44.073 168.132 -44.099 168.050 -44.165 168.070 -44.191 167.988 -44.240 167.917 -44.289 167.837 -44.355 167.791 -44.439 167.795 -44.524 167.880 -44.439 167.744 -44.473 167.649 -44.514 167.581 -44.588 167.523 -44.637 167.493 -44.629 167.381 -44.678 167.309 -44.770 167.331 -44.745 167.193 -44.796 167.133 -44.887 167.234 -44.872 167.115 -44.905 167.039 -44.989 167.021 -45.005 166.931 -45.098 166.952 -45.098 167.057 -45.132 166.966 -45.233 167.056 -45.318 167.048 -45.233 167.024 -45.249 166.925 -45.163 166.860 -45.156 166.737 -45.249 166.819 -45.241 166.706 -45.316 166.675 -45.384 166.627 -45.391 166.750 -45.358 166.832 -45.342 166.922 -45.374 166.848 -45.408 166.756 -45.441 166.684 -45.457 166.805 -45.441 166.905 -45.475 166.832 -45.498 166.731 -45.532 166.880 -45.582 166.813 -45.598 166.704 -45.622 166.603 -45.622 166.497 -45.647 166.417 -45.732 166.385 -45.818 166.418 -45.826 166.437 ; #662 7 -45.570 166.397 -45.554 166.452 -45.562 166.585 -45.520 166.649 -45.435 166.607 -45.451 166.507 -45.500 166.440 -45.568 166.392 ; #663 7 -44.975 166.884 -44.983 166.860 -45.076 166.898 ; #664 7 -41.099 174.809 -41.099 174.818 -41.191 174.871 -41.275 174.929 -41.242 174.990 -41.234 175.095 -41.209 175.141 -41.293 175.228 -41.385 175.231 -41.426 175.372 -41.393 175.463 -41.352 175.539 -41.311 175.614 -41.262 175.691 -41.229 175.773 -41.180 175.841 -41.128 175.897 -41.087 175.981 -41.003 176.016 -40.929 176.082 -40.855 176.126 -40.788 176.187 -40.704 176.243 -40.612 176.280 -40.555 176.331 -40.547 176.343 -40.481 176.394 -40.422 176.452 -40.374 176.498 -40.350 176.589 -40.258 176.594 -40.174 176.608 -40.107 176.668 -40.074 176.749 -40.007 176.800 -39.924 176.837 -39.868 176.866 -39.827 176.876 -39.753 176.930 -39.662 176.982 -39.579 177.021 -39.505 177.066 -39.464 176.933 -39.416 176.916 -39.324 176.865 -39.233 176.907 -39.175 176.964 -39.109 177.036 -39.026 177.103 -38.992 177.210 -38.977 177.248 -38.954 177.341 -38.928 177.443 -38.928 177.533 -38.921 177.648 -38.928 177.765 -39.012 177.829 -39.121 177.882 -39.054 177.942 -38.964 177.974 -38.872 177.895 -38.857 177.902 -38.758 177.929 -38.674 177.954 -38.583 177.965 -38.575 177.969 -38.575 178.080 -38.517 178.156 -38.468 178.239 -38.420 178.313 -38.321 178.349 -38.230 178.347 -38.146 178.364 -38.063 178.390 -37.971 178.421 -37.872 178.407 -37.789 178.445 -37.698 178.435 -37.667 178.479 -37.626 178.558 -37.535 178.498 -37.444 178.318 -37.436 178.202 -37.436 178.091 -37.484 178.008 -37.525 177.928 -37.566 177.830 -37.607 177.760 -37.673 177.689 -37.746 177.644 -37.762 177.637 -37.803 177.558 -37.844 177.478 -37.868 177.385 -37.876 177.231 -37.884 177.136 -37.828 177.044 -37.787 176.911 -37.762 176.824 -37.721 176.673 -37.630 176.503 -37.597 176.368 -37.564 176.223 -37.564 176.203 -37.548 176.183 -37.490 176.028 -37.407 176.024 -37.315 176.005 -37.259 175.982 -37.176 175.956 -37.077 175.922 -36.986 175.934 -36.895 175.915 -36.811 175.892 -36.728 175.821 -36.728 175.720 -36.662 175.771 -36.605 175.860 -36.613 175.756 -36.638 175.655 -36.547 175.606 -36.463 175.552 -36.372 175.435 -36.439 175.384 -36.529 175.492 -36.613 175.474 -36.704 175.484 -36.788 175.466 -36.871 175.538 -36.962 175.567 -37.054 175.586 -37.094 175.505 -37.079 175.383 -37.013 175.343 -36.914 175.329 -36.831 175.266 -36.790 175.125 -36.797 175.030 -36.747 174.892 -36.739 174.785 -36.747 174.760 -36.747 174.711 -36.716 174.688 -36.708 174.793 -36.677 174.828 -36.578 174.794 -36.537 174.813 -36.446 174.745 -36.380 174.797 -36.296 174.794 -36.274 174.887 -36.190 174.844 -36.091 174.702 -36.060 174.679 -35.969 174.602 -35.870 174.501 -35.786 174.497 -35.753 174.364 -35.670 174.342 -35.703 174.466 -35.759 174.618 -35.668 174.579 -35.576 174.511 -35.493 174.550 -35.410 174.469 -35.319 174.372 -35.235 174.350 -35.144 174.292 -35.159 174.204 -35.159 174.103 -35.251 174.220 -35.259 174.116 -35.167 174.067 -35.084 174.006 -35.076 174.100 -35.035 173.961 -34.944 173.902 -34.911 173.782 -34.977 173.721 -34.894 173.702 -34.853 173.577 -34.894 173.501 -34.810 173.372 -34.770 173.457 -34.762 173.344 -34.853 173.331 -34.919 173.270 -34.836 173.259 -34.753 173.161 -34.661 173.134 -34.578 173.057 -34.495 173.025 -34.404 172.943 -34.396 173.038 -34.313 173.056 -34.337 172.961 -34.352 172.870 -34.352 172.770 -34.344 172.717 -34.428 172.728 -34.511 172.826 -34.609 172.915 -34.701 172.988 -34.784 173.047 -34.882 173.115 -34.973 173.151 -35.064 173.146 -35.080 173.048 -35.163 173.128 -35.255 173.195 -35.338 173.274 -35.421 173.345 -35.338 173.363 -35.307 173.449 -35.266 173.529 -35.182 173.507 -35.274 173.556 -35.347 173.501 -35.355 173.406 -35.446 173.373 -35.629 173.525 -35.720 173.622 -35.852 173.748 -35.943 173.824 -36.027 173.895 -36.202 174.024 -36.285 174.067 -36.277 174.171 -36.194 174.158 -36.095 174.066 -36.021 173.994 -36.062 174.124 -36.153 174.250 -36.062 174.202 -36.103 174.341 -36.045 174.378 -36.052 174.393 -36.118 174.332 -36.159 174.472 -36.200 174.402 -36.207 174.297 -36.298 174.374 -36.266 174.450 -36.349 174.444 -36.433 174.476 -36.523 174.463 -36.433 174.335 -36.349 174.273 -36.357 174.220 -36.456 174.254 -36.539 174.325 -36.638 174.398 -36.722 174.451 -36.778 174.474 -36.895 174.511 -36.895 174.612 -36.853 174.691 -36.829 174.774 -36.919 174.882 -37.003 174.843 -37.026 174.759 -36.943 174.648 -37.026 174.609 -37.118 174.667 -37.201 174.699 -37.226 174.807 -37.275 174.742 -37.374 174.776 -37.473 174.800 -37.572 174.846 -37.655 174.868 -37.696 174.899 -37.721 174.807 -37.820 174.810 -37.911 174.838 -37.995 174.872 -37.995 174.761 -38.119 174.734 -38.218 174.718 -38.274 174.659 -38.373 174.643 -38.472 174.637 -38.572 174.631 -38.670 174.615 -38.736 174.553 -38.793 174.475 -38.841 174.409 -38.849 174.294 -38.857 174.238 -38.880 174.154 -38.913 174.058 -38.962 173.973 -38.994 173.895 -39.043 173.799 -39.117 173.743 -39.215 173.757 -39.299 173.801 -39.332 173.826 -39.406 173.992 -39.439 174.119 -39.480 174.261 -39.571 174.358 -39.611 174.408 -39.695 174.592 -39.720 174.642 -39.720 174.744 -39.761 174.887 -39.810 174.952 -39.858 175.007 -39.941 175.089 -40.033 175.135 -40.117 175.162 -40.133 175.176 -40.232 175.176 -40.317 175.182 -40.401 175.146 -40.493 175.140 -40.567 175.095 -40.601 175.075 -40.675 175.040 -40.716 174.987 -40.790 174.943 -40.865 174.889 -40.931 174.859 -40.947 174.863 -40.972 174.783 -41.039 174.732 -41.080 174.657 -41.172 174.649 -41.188 174.777 -41.095 174.783 ; #665 7 -43.848 -176.663 -43.966 -176.549 -43.933 -176.476 -43.900 -176.404 -43.891 -176.297 -43.799 -176.449 -43.715 -176.490 -43.624 -176.527 -43.673 -176.366 -43.757 -176.388 -43.690 -176.349 -43.633 -176.300 -43.584 -176.233 -43.592 -176.340 -43.567 -176.469 -43.551 -176.589 -43.608 -176.647 -43.600 -176.769 -43.684 -176.770 -43.669 -176.671 -43.692 -176.543 -43.776 -176.522 -43.827 -176.577 -43.850 -176.659 ; #666 7 -44.150 -176.244 -44.157 -176.186 -44.066 -176.212 ; #667 7 21.950 -84.982 21.975 -85.025 21.892 -84.963 21.907 -84.861 21.963 -84.774 21.996 -84.684 21.922 -84.565 21.840 -84.541 21.905 -84.457 21.954 -84.360 21.986 -84.269 21.994 -84.174 22.052 -84.088 22.135 -84.065 22.184 -84.064 22.232 -83.976 22.240 -83.881 22.232 -83.853 22.232 -83.747 22.298 -83.663 22.240 -83.556 22.265 -83.464 22.348 -83.393 22.389 -83.304 22.462 -83.211 22.545 -83.149 22.594 -83.061 22.602 -83.016 22.658 -82.920 22.731 -82.885 22.739 -82.790 22.739 -82.492 22.731 -82.394 22.731 -82.297 22.716 -82.189 22.716 -82.162 22.724 -82.058 22.724 -81.961 22.690 -81.859 22.635 -81.753 22.594 -81.746 22.545 -81.755 22.505 -81.854 22.489 -81.936 22.489 -82.139 22.433 -82.226 22.368 -82.118 22.327 -82.014 22.244 -81.903 22.252 -81.808 22.252 -81.712 22.259 -81.607 22.244 -81.508 22.161 -81.397 22.145 -81.289 22.228 -81.295 22.319 -81.263 22.236 -81.240 22.153 -81.199 22.120 -81.088 22.105 -80.989 22.120 -80.895 22.120 -80.789 22.112 -80.692 22.128 -80.656 22.128 -80.571 22.201 -80.557 22.178 -80.535 22.095 -80.521 22.069 -80.507 21.986 -80.417 21.913 -80.308 21.890 -80.207 21.864 -80.165 21.781 -80.113 21.797 -80.107 21.812 -80.109 21.812 -80.091 21.754 -79.985 21.770 -79.892 21.754 -79.783 21.706 -79.679 21.698 -79.668 21.657 -79.565 21.650 -79.459 21.609 -79.356 21.617 -79.261 21.657 -79.171 21.665 -79.076 21.665 -79.058 21.691 -78.966 21.691 -78.910 21.665 -78.809 21.642 -78.861 21.601 -78.758 21.586 -78.738 21.503 -78.697 21.420 -78.674 21.329 -78.612 21.245 -78.625 21.155 -78.610 21.072 -78.540 20.998 -78.431 20.915 -78.321 20.831 -78.243 20.775 -78.137 20.767 -78.040 20.793 -77.948 20.767 -77.838 20.767 -77.743 20.760 -77.645 20.767 -77.541 20.793 -77.449 20.777 -77.419 20.711 -77.312 20.628 -77.346 20.613 -77.316 20.562 -77.212 20.539 -77.200 20.448 -77.222 20.441 -77.248 20.385 -77.335 20.319 -77.420 20.278 -77.510 20.222 -77.605 20.174 -77.694 20.090 -77.736 20.007 -77.818 19.924 -77.824 19.924 -77.728 19.932 -77.633 19.940 -77.530 19.980 -77.439 19.988 -77.344 19.980 -77.238 19.980 -77.066 20.021 -76.976 20.021 -76.871 20.036 -76.778 20.021 -76.670 20.036 -76.576 20.052 -76.483 20.067 -76.389 20.067 -76.293 20.052 -76.195 20.036 -76.087 20.052 -75.994 20.036 -75.895 20.021 -75.797 19.980 -75.685 19.965 -75.587 19.965 -75.491 19.973 -75.425 19.988 -75.331 20.046 -75.264 20.086 -75.289 20.086 -75.204 20.046 -75.244 19.980 -75.196 19.996 -75.152 20.062 -75.066 20.086 -74.974 20.094 -74.966 20.127 -74.875 20.127 -74.779 20.135 -74.684 20.150 -74.582 20.158 -74.487 20.143 -74.388 20.226 -74.316 20.309 -74.254 20.400 -74.344 20.377 -74.436 20.400 -74.536 20.466 -74.643 20.491 -74.656 20.574 -74.725 20.630 -74.830 20.704 -74.938 20.745 -75.041 20.767 -75.141 20.767 -75.245 20.783 -75.295 20.743 -75.394 20.808 -75.501 20.785 -75.593 20.793 -75.691 20.801 -75.788 20.816 -75.895 20.899 -75.813 20.940 -75.714 20.988 -75.827 21.021 -75.736 21.104 -75.711 21.187 -75.821 21.195 -75.919 21.179 -76.012 21.179 -76.039 21.157 -76.141 21.189 -76.242 21.281 -76.324 21.321 -76.427 21.321 -76.436 21.344 -76.536 21.344 -76.632 21.261 -76.637 21.319 -76.742 21.342 -76.843 21.433 -76.820 21.441 -76.926 21.408 -77.017 21.491 -76.954 21.516 -77.064 21.547 -77.078 21.631 -77.156 21.607 -77.249 21.524 -77.320 21.572 -77.384 21.597 -77.361 21.689 -77.453 21.663 -77.352 21.648 -77.244 21.731 -77.249 21.764 -77.351 21.838 -77.459 21.888 -77.573 21.911 -77.673 21.870 -77.570 21.704 -77.446 21.752 -77.550 21.836 -77.620 21.843 -77.718 21.851 -77.825 21.934 -77.935 22.025 -77.941 21.977 -78.029 22.060 -78.120 22.143 -78.189 22.151 -78.209 22.199 -78.313 22.224 -78.422 22.315 -78.523 22.331 -78.622 22.396 -78.730 22.389 -78.824 22.437 -78.929 22.445 -79.036 22.460 -79.095 22.435 -79.187 22.428 -79.282 22.451 -79.383 22.509 -79.498 22.557 -79.544 22.631 -79.653 22.722 -79.734 22.805 -79.748 22.830 -79.849 22.853 -79.958 22.944 -79.897 22.903 -79.996 22.961 -80.102 22.977 -80.170 22.977 -80.266 22.954 -80.359 22.985 -80.470 23.035 -80.575 23.118 -80.695 23.166 -80.712 23.134 -80.803 23.126 -80.898 23.110 -80.992 23.143 -81.095 23.110 -81.195 23.110 -81.292 23.194 -81.353 23.244 -81.265 23.203 -81.355 23.170 -81.446 23.155 -81.540 23.124 -81.631 23.207 -81.672 23.207 -81.787 23.200 -81.882 23.207 -81.980 23.230 -82.090 23.238 -82.188 23.230 -82.233 23.238 -82.341 23.215 -82.433 23.174 -82.531 23.126 -82.629 23.110 -82.644 23.103 -82.748 23.087 -82.842 23.087 -82.939 23.037 -83.035 23.070 -83.138 23.054 -83.232 23.054 -83.329 22.996 -83.415 22.948 -83.512 22.940 -83.607 22.892 -83.695 22.859 -83.766 22.834 -83.858 22.818 -83.961 22.770 -84.049 22.778 -84.147 22.687 -84.178 22.646 -84.267 22.563 -84.329 22.497 -84.414 22.414 -84.484 22.331 -84.496 22.240 -84.498 22.149 -84.406 22.066 -84.409 22.099 -84.511 22.107 -84.609 22.058 -84.697 22.025 -84.796 21.984 -84.885 21.952 -84.976 ; #668 7 21.507 -82.981 21.522 -82.916 21.545 -82.816 21.586 -82.726 21.634 -82.638 21.717 -82.671 21.801 -82.676 21.892 -82.777 21.983 -82.869 21.998 -82.969 21.983 -83.071 21.909 -83.154 21.826 -83.149 21.743 -83.087 21.659 -83.055 21.611 -83.143 21.659 -83.247 21.569 -83.184 21.528 -83.081 21.503 -82.980 ; #669 7 23.172 -81.043 23.230 -80.957 23.172 -81.053 ; #670 7 23.079 -80.322 23.039 -80.420 23.023 -80.313 ; #671 7 20.582 -78.401 20.638 -78.410 20.663 -78.519 20.580 -78.401 ; #672 7 22.499 -78.460 22.515 -78.356 22.598 -78.417 22.613 -78.516 22.588 -78.618 22.557 -78.709 22.517 -78.606 22.483 -78.504 ; #673 7 22.376 -78.149 22.466 -78.173 22.507 -78.276 22.483 -78.369 22.400 -78.308 22.376 -78.207 22.335 -78.104 ; #674 7 22.193 -77.919 22.284 -78.011 22.368 -78.080 22.284 -78.105 22.201 -78.044 22.168 -77.942 ; #675 7 22.025 -77.726 22.108 -77.701 22.149 -77.813 22.157 -77.911 22.108 -77.999 21.977 -77.785 ; #676 7 10.963 -65.348 10.963 -65.311 11.054 -65.355 10.988 -65.445 10.965 -65.348 ; #677 7 10.567 -62.841 10.476 -62.798 10.392 -62.697 10.476 -62.750 10.567 -62.832 ; #678 7 13.857 -60.964 13.948 -60.962 14.032 -60.941 14.115 -61.043 14.032 -61.101 13.940 -61.141 13.857 -61.125 13.792 -61.016 ; #679 7 40.137 25.741 40.144 25.762 40.153 25.865 40.202 25.972 40.286 25.938 40.260 25.833 40.227 25.719 40.135 25.741 ; #680 8 36.722 26.992 36.813 27.038 36.805 27.148 36.939 27.361 36.947 27.260 36.914 27.147 36.858 27.042 36.807 26.937 36.723 26.989 ; #681 7 40.624 27.614 40.698 27.672 40.706 27.570 40.622 27.612 ; #682 7 39.483 -31.169 39.550 -31.293 39.466 -31.327 39.400 -31.265 ; #683 7 38.556 -28.685 38.639 -28.661 38.690 -28.772 38.649 -28.876 38.566 -28.812 38.558 -28.699 38.558 -28.690 ; #684 7 38.426 -28.297 38.451 -28.191 38.451 -28.089 38.507 -28.201 38.548 -28.319 38.597 -28.429 38.597 -28.531 38.513 -28.588 38.464 -28.477 38.457 -28.365 38.424 -28.300 ; #685 7 39.142 -28.048 39.059 -28.043 39.059 -28.024 ; #686 7 38.593 -27.861 38.667 -27.975 38.715 -28.095 38.748 -28.202 38.773 -28.308 38.690 -28.225 38.657 -28.118 38.631 -28.012 38.591 -27.903 38.591 -27.863 ; #687 7 38.672 -27.183 38.731 -27.091 38.814 -27.115 38.837 -27.221 38.845 -27.333 38.804 -27.428 38.721 -27.384 38.690 -27.277 38.674 -27.184 ; #688 7 37.760 -25.503 37.768 -25.402 37.793 -25.295 37.809 -25.197 37.892 -25.191 37.907 -25.305 37.907 -25.406 37.882 -25.513 37.875 -25.613 37.890 -25.726 37.956 -25.838 37.873 -25.884 37.799 -25.771 37.791 -25.668 37.758 -25.552 37.758 -25.502 ; #689 7 37.065 -25.098 37.065 -25.208 36.982 -25.084 36.982 -25.065 ; #690 7 32.696 -16.879 32.779 -16.799 32.862 -16.895 32.886 -16.997 32.862 -17.103 32.919 -17.208 32.836 -17.278 32.752 -17.170 32.712 -17.067 32.696 -16.987 ; #691 9 21.853 -160.347 21.944 -160.309 22.000 -160.222 22.083 -160.230 22.010 -160.312 21.936 -160.385 21.853 -160.349 ; #692 9 21.944 -159.596 21.967 -159.556 22.041 -159.475 22.124 -159.483 22.207 -159.442 22.290 -159.516 22.290 -159.718 22.250 -159.802 22.201 -159.883 22.110 -159.938 22.027 -159.827 21.969 -159.712 21.946 -159.599 ; #693 9 21.329 -157.949 21.336 -157.934 21.336 -157.837 21.420 -157.837 21.503 -157.948 21.586 -157.983 21.677 -158.039 21.760 -158.141 21.704 -158.220 21.663 -158.312 21.631 -158.398 21.547 -158.372 21.464 -158.289 21.390 -158.170 21.398 -158.076 21.333 -157.950 ; #694 9 21.120 -157.008 21.120 -156.981 21.153 -156.895 21.243 -156.905 21.236 -157.008 21.259 -157.112 21.267 -157.211 21.267 -157.307 21.241 -157.395 21.158 -157.416 21.166 -157.313 21.174 -157.219 21.143 -157.113 21.118 -157.009 ; #695 9 20.814 -157.037 20.863 -156.956 20.946 -156.982 20.994 -157.093 20.978 -157.194 20.895 -157.121 20.812 -157.039 ; #696 9 20.580 -156.790 20.580 -156.781 20.663 -156.730 ; #697 9 20.656 -156.506 20.671 -156.464 20.686 -156.373 20.694 -156.271 20.735 -156.187 20.818 -156.117 20.901 -156.210 20.957 -156.323 21.015 -156.438 20.982 -156.524 21.023 -156.642 21.106 -156.744 21.040 -156.819 20.950 -156.818 20.866 -156.696 20.818 -156.584 20.735 -156.576 20.652 -156.503 ; #698 9 19.052 -155.793 19.044 -155.695 19.135 -155.635 19.218 -155.551 19.266 -155.468 19.324 -155.387 19.340 -155.295 19.355 -155.195 19.386 -155.107 19.437 -155.024 19.493 -154.943 19.566 -154.866 19.650 -154.944 19.740 -155.023 19.823 -155.121 19.915 -155.127 19.998 -155.187 20.071 -155.305 20.127 -155.419 20.160 -155.525 20.186 -155.629 20.251 -155.755 20.325 -155.874 20.234 -155.942 20.150 -155.916 20.060 -155.861 19.911 -156.011 19.845 -156.089 19.754 -156.092 19.671 -156.032 19.588 -156.010 19.497 -155.978 19.413 -155.947 19.322 -155.960 19.240 -155.977 19.148 -155.980 19.075 -155.855 19.042 -155.791 ; #699 9 2.672 -77.939 2.705 -77.902 2.753 -77.998 2.670 -77.941 ; #700 9 3.254 -77.659 3.171 -77.741 3.171 -77.646 3.254 -77.657 ; #701 9 4.278 -77.601 4.278 -77.610 4.186 -77.513 4.278 -77.599 ; #702 9 5.256 -77.453 5.264 -77.444 5.347 -77.440 ; #703 9 53.536 -168.056 53.561 -168.090 53.596 -168.260 53.587 -168.371 53.571 -168.471 53.536 -168.535 53.511 -168.610 53.460 -168.661 53.383 -168.676 53.296 -168.643 53.296 -168.765 53.304 -168.899 53.262 -168.951 53.229 -169.018 53.177 -169.066 53.090 -169.067 53.057 -169.133 52.996 -169.160 52.972 -169.248 52.920 -169.297 52.877 -169.349 52.912 -169.275 52.938 -169.200 52.962 -169.123 53.005 -169.060 53.021 -168.961 53.055 -168.888 53.079 -168.810 53.106 -168.735 53.156 -168.694 53.199 -168.631 53.250 -168.590 53.284 -168.516 53.300 -168.426 53.326 -168.352 53.353 -168.266 53.385 -168.199 53.411 -168.113 53.480 -168.087 53.531 -168.046 ; #704 9 53.294 -167.931 53.302 -167.898 53.294 -167.765 53.344 -167.723 53.379 -167.659 53.395 -167.560 53.419 -167.482 53.445 -167.395 53.462 -167.306 53.470 -167.205 53.512 -167.142 53.488 -166.998 53.512 -166.908 53.573 -166.881 53.607 -166.816 53.658 -166.764 53.674 -166.674 53.690 -166.585 53.777 -166.629 53.751 -166.704 53.735 -166.805 53.786 -166.752 53.820 -166.677 53.852 -166.610 53.887 -166.535 53.929 -166.481 54.016 -166.591 53.965 -166.643 53.923 -166.697 53.889 -166.772 53.854 -166.837 53.941 -166.858 54.036 -166.900 54.028 -167.002 53.996 -167.069 53.987 -167.180 53.963 -167.268 53.921 -167.343 53.878 -167.396 53.791 -167.254 53.765 -167.097 53.749 -166.962 53.723 -167.038 53.739 -167.182 53.731 -167.282 53.662 -167.299 53.654 -167.411 53.559 -167.259 53.543 -167.348 53.509 -167.423 53.509 -167.534 53.474 -167.598 53.466 -167.699 53.431 -167.773 53.415 -167.863 53.415 -167.984 53.381 -168.048 53.338 -168.111 53.296 -167.941 ; #705 9 54.067 -166.129 54.067 -166.108 54.109 -166.054 54.117 -165.942 54.159 -165.889 54.152 -165.990 54.239 -166.079 54.246 -166.202 54.212 -166.277 54.161 -166.330 54.074 -166.265 54.067 -166.131 ; #706 9 54.145 -165.789 54.180 -165.770 54.257 -165.764 54.326 -165.736 54.309 -165.836 54.232 -165.853 ; #707 9 54.074 -165.521 54.125 -165.591 54.101 -165.670 ; #708 9 54.154 -165.194 54.154 -165.306 54.111 -165.360 54.111 -165.248 ; #709 9 54.639 -165.074 54.589 -165.117 54.502 -165.086 54.425 -164.868 54.441 -164.756 54.449 -164.655 54.473 -164.576 54.516 -164.511 54.576 -164.482 54.610 -164.405 54.635 -164.326 54.651 -164.236 54.651 -164.113 54.659 -164.011 54.651 -163.888 54.643 -163.753 54.669 -163.676 54.696 -163.590 54.764 -163.570 54.714 -163.378 54.688 -163.229 54.775 -163.293 54.783 -163.417 54.869 -163.556 54.956 -163.575 55.044 -163.681 55.062 -163.820 55.069 -163.956 55.053 -164.044 55.018 -164.103 54.991 -164.188 54.983 -164.289 54.914 -164.421 54.946 -164.589 54.914 -164.657 54.862 -164.708 54.819 -164.763 54.768 -164.806 54.718 -164.860 54.676 -164.925 54.659 -165.025 54.643 -165.082 ; #710 9 54.518 -162.938 54.525 -163.014 54.431 -162.930 54.422 -162.806 54.483 -162.776 54.516 -162.933 ; #711 9 54.995 -162.370 55.003 -162.402 54.987 -162.503 54.963 -162.582 54.876 -162.443 54.918 -162.388 ; #712 9 55.174 -161.883 55.200 -161.978 55.157 -162.036 55.184 -161.963 55.095 -161.874 55.174 -161.880 ; #713 9 55.095 -160.146 55.111 -160.115 55.128 -160.027 55.307 -160.066 55.236 -160.074 55.209 -160.158 55.184 -160.176 55.167 -160.265 55.069 -160.233 55.026 -160.281 54.975 -160.322 54.906 -160.342 54.967 -160.311 55.009 -160.256 55.043 -160.182 55.097 -160.149 ; #714 9 55.469 -160.331 55.477 -160.333 55.486 -160.470 55.425 -160.493 55.442 -160.405 ; #715 9 55.263 -159.662 55.271 -159.695 55.228 -159.744 55.130 -159.713 55.078 -159.748 55.095 -159.660 55.174 -159.653 ; #716 9 60.024 -167.280 60.024 -167.140 60.007 -167.132 59.909 -166.855 59.884 -166.685 59.876 -166.555 59.787 -166.318 59.876 -166.403 59.867 -166.272 59.895 -166.187 59.903 -166.081 59.920 -165.991 59.920 -165.861 59.928 -165.756 60.026 -165.789 60.108 -165.860 60.190 -165.882 60.263 -165.879 60.364 -165.969 60.355 -166.073 60.410 -166.296 60.410 -166.414 60.392 -166.515 60.401 -166.648 60.375 -166.733 60.347 -166.803 60.330 -166.903 60.302 -166.984 60.240 -166.995 60.248 -167.127 60.257 -167.272 60.248 -167.386 60.248 -167.505 60.212 -167.571 60.119 -167.469 60.026 -167.287 ; #717 9 56.246 -156.990 56.263 -157.015 56.192 -157.025 56.244 -156.987 ; #718 9 56.620 -157.473 56.569 -157.511 56.569 -157.386 56.620 -157.348 ; #719 9 55.951 -155.760 55.951 -155.805 55.899 -155.853 55.810 -155.779 55.870 -155.752 55.949 -155.754 ; #720 9 56.629 -154.647 56.637 -154.774 56.602 -154.847 56.569 -154.913 56.533 -154.976 56.436 -154.960 56.479 -154.898 56.512 -154.831 56.539 -154.756 56.574 -154.683 56.627 -154.644 ; #721 9 56.594 -154.103 56.594 -154.217 56.541 -154.267 56.550 -154.165 ; #722 9 56.951 -154.162 56.916 -154.237 56.883 -154.304 56.839 -154.355 56.803 -154.178 56.839 -154.104 56.883 -154.053 56.899 -153.962 56.959 -153.935 56.976 -153.833 57.019 -153.781 57.080 -153.995 57.096 -153.893 57.113 -153.802 57.157 -153.740 57.173 -153.649 57.190 -153.618 57.215 -153.528 57.259 -153.476 57.242 -153.325 57.259 -153.224 57.356 -153.398 57.356 -153.146 57.329 -152.991 57.329 -152.865 57.381 -152.825 57.471 -152.966 57.487 -153.115 57.471 -153.207 57.506 -153.132 57.533 -153.056 57.489 -152.866 57.473 -152.727 57.448 -152.575 57.508 -152.535 57.551 -152.484 57.595 -152.420 57.639 -152.368 57.656 -152.508 57.639 -152.599 57.737 -152.685 57.799 -152.649 57.824 -152.569 57.913 -152.678 57.940 -152.844 57.897 -152.897 57.845 -152.947 57.845 -153.074 57.766 -153.075 57.855 -153.125 57.899 -153.072 57.959 -153.276 58.021 -153.494 57.932 -153.374 57.888 -153.426 57.799 -153.411 57.843 -153.591 57.826 -153.683 57.737 -153.541 57.780 -153.721 57.710 -153.744 57.807 -153.784 57.897 -153.859 57.905 -153.986 57.888 -154.078 57.845 -154.130 57.782 -154.155 57.704 -153.923 57.679 -154.014 57.662 -154.104 57.564 -153.905 57.599 -154.083 57.502 -154.043 57.413 -154.014 57.323 -153.905 57.413 -154.081 57.510 -154.156 57.599 -154.207 57.689 -154.418 57.672 -154.521 57.656 -154.612 57.612 -154.674 57.587 -154.753 57.560 -154.840 57.516 -154.891 57.473 -154.953 57.402 -154.975 57.331 -154.998 57.242 -154.799 57.152 -154.770 57.063 -154.765 56.974 -154.578 56.974 -154.452 57.009 -154.389 57.080 -154.367 57.142 -154.343 57.150 -154.470 57.124 -154.546 57.080 -154.608 57.169 -154.613 57.177 -154.510 57.177 -154.394 57.152 -154.243 57.109 -154.294 57.057 -154.344 57.074 -154.243 57.109 -154.179 57.152 -154.117 57.188 -154.043 57.126 -154.078 57.101 -154.156 57.038 -154.181 57.055 -154.090 56.976 -154.089 56.949 -154.166 ; #723 9 57.173 -153.129 57.209 -153.247 57.209 -153.374 57.225 -153.513 57.182 -153.565 57.121 -153.603 57.032 -153.519 57.067 -153.455 57.127 -153.416 57.136 -153.313 57.152 -153.212 57.169 -153.121 ; #724 9 58.005 -153.686 58.013 -153.720 57.961 -153.759 57.872 -153.550 57.915 -153.498 ; #725 9 58.175 -153.492 58.175 -153.538 58.086 -153.534 58.069 -153.383 58.086 -153.291 58.175 -153.489 ; #726 9 58.032 -153.086 58.049 -152.994 58.092 -152.930 58.127 -152.855 58.188 -152.827 58.240 -152.775 58.161 -152.788 58.169 -152.673 58.161 -152.544 58.223 -152.519 58.294 -152.495 58.196 -152.363 58.213 -152.271 58.246 -152.203 58.325 -152.191 58.325 -152.318 58.265 -152.346 58.344 -152.346 58.387 -152.293 58.379 -152.397 58.414 -152.565 58.354 -152.604 58.443 -152.735 58.460 -152.886 58.443 -152.978 58.435 -153.083 58.346 -152.985 58.319 -153.062 58.327 -153.201 58.310 -153.293 58.221 -153.162 58.237 -153.419 58.148 -153.390 58.059 -153.167 58.023 -153.070 ; #727 9 58.013 -152.967 58.021 -152.978 57.961 -153.006 ; #728 9 57.978 -152.637 58.013 -152.689 57.961 -152.729 ; #729 9 58.631 -152.567 58.656 -152.625 58.639 -152.728 58.604 -152.793 58.514 -152.755 58.531 -152.662 58.564 -152.583 58.626 -152.558 ; #730 9 58.647 -152.779 58.656 -152.802 58.604 -152.842 ; #731 9 58.281 -152.021 58.308 -152.061 58.219 -152.058 58.279 -152.019 ; #732 9 58.978 -152.363 58.986 -152.376 58.994 -152.515 58.943 -152.556 58.951 -152.451 ; #733 9 59.406 -150.775 59.423 -150.799 59.395 -150.877 59.344 -150.930 59.352 -150.824 59.404 -150.772 ; #734 9 60.504 -152.027 60.532 -152.071 60.487 -152.118 60.433 -152.151 60.379 -152.195 60.414 -152.132 60.459 -152.074 ; #735 9 59.478 -150.446 59.487 -150.469 59.460 -150.547 59.477 -150.443 ; #736 9 60.024 -148.212 59.996 -148.252 59.963 -148.322 59.980 -148.228 60.024 -148.166 60.061 -148.140 ; #737 9 60.024 -148.119 59.971 -148.169 59.988 -148.076 60.024 -148.000 60.024 -147.990 60.098 -147.973 60.061 -148.046 ; #738 9 60.024 -147.822 59.988 -147.801 59.963 -147.894 59.900 -147.933 59.822 -147.938 59.838 -147.844 59.874 -147.766 59.874 -147.648 59.917 -147.582 59.988 -147.565 60.024 -147.490 60.061 -147.488 60.106 -147.428 60.151 -147.368 60.188 -147.307 60.214 -147.228 60.241 -147.141 60.315 -147.135 60.298 -147.227 60.399 -147.289 60.336 -147.322 60.263 -147.340 60.246 -147.431 60.201 -147.491 60.147 -147.527 60.110 -147.589 60.082 -147.675 60.046 -147.737 60.029 -147.829 ; #739 9 60.395 -148.124 60.412 -148.150 60.386 -148.229 60.312 -148.245 60.330 -148.153 60.392 -148.120 ; #740 9 60.448 -147.778 60.521 -147.870 60.493 -147.945 60.412 -147.938 60.338 -147.943 60.293 -148.003 60.201 -147.893 60.283 -147.890 60.328 -147.830 60.421 -147.869 60.446 -147.779 ; #741 9 60.793 -148.323 60.793 -148.382 60.692 -148.258 60.793 -148.321 ; #742 9 60.765 -148.057 60.773 -148.080 60.711 -148.103 ; #743 9 60.959 -148.202 60.959 -148.224 60.905 -148.271 60.823 -148.263 60.840 -148.170 60.866 -148.091 ; #744 9 60.423 -146.247 60.457 -146.288 60.448 -146.404 60.485 -146.580 60.502 -146.736 60.457 -146.796 60.375 -146.789 60.375 -146.671 60.347 -146.746 60.265 -146.739 60.302 -146.677 60.330 -146.602 60.355 -146.522 60.384 -146.436 60.401 -146.344 60.418 -146.240 ; #745 9 60.920 -147.260 60.948 -147.304 60.939 -147.410 60.911 -147.485 60.894 -147.340 ; #746 9 60.607 -145.947 60.633 -145.975 60.616 -146.068 60.588 -146.155 60.571 -146.258 60.554 -146.351 60.492 -146.385 60.500 -146.268 60.528 -146.192 60.554 -146.103 60.582 -146.027 60.610 -145.950 ; #747 9 60.024 -144.400 60.007 -144.422 59.980 -144.511 59.944 -144.579 59.909 -144.648 59.849 -144.681 59.892 -144.625 59.963 -144.488 59.988 -144.405 60.024 -144.340 60.024 -144.398 ; #748 9 60.423 -145.226 60.440 -145.252 60.403 -145.315 60.341 -145.349 60.358 -145.257 ; #749 9 34.000 -120.149 34.041 -120.150 34.097 -120.185 34.081 -120.278 34.056 -120.365 33.965 -120.234 33.998 -120.150 ; #750 9 34.134 -120.013 34.110 -120.030 34.027 -119.962 34.027 -119.862 34.051 -119.765 34.116 -119.696 34.083 -119.780 34.116 -119.905 34.132 -120.012 ; #751 9 33.044 -118.695 33.044 -118.743 32.961 -118.686 32.878 -118.569 32.961 -118.608 ; #752 9 55.353 -131.748 55.361 -131.634 55.539 -131.629 55.450 -131.595 55.361 -131.598 55.404 -131.538 55.448 -131.468 55.546 -131.476 55.635 -131.520 55.546 -131.441 55.456 -131.421 55.350 -131.516 55.317 -131.599 55.300 -131.465 55.344 -131.395 55.423 -131.379 55.325 -131.348 55.282 -131.408 55.255 -131.261 55.290 -131.180 55.369 -131.155 55.421 -131.105 55.510 -131.126 55.600 -131.112 55.670 -131.086 55.760 -131.165 55.858 -131.241 55.947 -131.352 55.972 -131.497 55.964 -131.611 55.939 -131.694 55.868 -131.730 55.868 -131.844 55.851 -131.700 55.808 -131.759 55.780 -131.849 55.764 -131.705 55.737 -131.785 55.702 -131.865 55.604 -131.775 55.569 -131.856 55.525 -131.915 55.436 -131.893 55.356 -131.750 ; #753 9 54.789 -130.335 54.813 -130.372 54.779 -130.447 54.720 -130.506 54.746 -130.411 ; #754 9 55.041 -130.280 55.049 -130.311 54.995 -130.359 54.953 -130.435 54.902 -130.492 54.815 -130.485 54.849 -130.410 54.900 -130.353 54.951 -130.286 55.039 -130.275 ; #755 9 47.435 -122.545 47.478 -122.591 47.562 -122.621 47.487 -122.664 47.402 -122.621 47.435 -122.543 ; #756 9 47.753 -122.676 47.753 -122.719 47.667 -122.666 ; #757 9 48.272 -122.561 48.296 -122.644 48.229 -122.694 48.135 -122.541 48.221 -122.634 48.270 -122.559 ; #758 9 -19.874 57.599 -19.957 57.520 -20.040 57.451 -20.131 57.394 -20.214 57.372 -20.298 57.371 -20.380 57.483 -20.380 57.579 -20.356 57.673 -20.272 57.722 -20.189 57.790 -20.106 57.810 -20.023 57.755 -19.932 57.712 -19.876 57.690 -19.876 57.606 ; #759 9 -19.549 63.501 -19.556 63.406 -19.589 63.505 ; #760 9 54.908 -162.590 54.908 -162.477 54.995 -162.516 55.074 -162.521 55.163 -162.600 55.172 -162.490 55.082 -162.387 54.993 -162.264 54.935 -162.308 54.918 -162.162 54.944 -162.085 55.032 -162.096 54.989 -161.919 55.078 -161.928 55.138 -161.905 55.138 -161.792 55.192 -161.750 55.282 -161.657 55.342 -161.624 55.421 -161.618 55.465 -161.571 55.517 -161.535 55.533 -161.446 55.509 -161.286 55.429 -161.053 55.438 -161.190 55.454 -161.328 55.411 -161.376 55.340 -161.394 55.261 -161.389 55.278 -161.290 55.250 -161.136 55.286 -161.076 55.311 -160.989 55.338 -160.917 55.390 -160.870 55.346 -160.682 55.363 -160.582 55.442 -160.587 55.469 -160.513 55.379 -160.424 55.431 -160.379 55.475 -160.330 55.546 -160.322 55.537 -160.196 55.554 -160.096 55.614 -160.063 55.614 -159.949 55.677 -159.918 55.677 -159.838 55.712 -159.777 55.658 -159.583 55.579 -159.579 55.509 -159.599 55.456 -159.645 55.465 -159.544 55.525 -159.510 55.569 -159.461 55.639 -159.442 55.718 -159.445 55.718 -159.332 55.770 -159.274 55.778 -159.172 55.795 -159.084 55.778 -158.945 55.822 -158.885 55.858 -158.824 55.841 -158.675 55.874 -158.610 55.999 -158.567 56.088 -158.575 56.063 -158.424 56.028 -158.486 55.966 -158.507 55.876 -158.431 55.893 -158.365 55.982 -158.442 56.018 -158.370 56.034 -158.281 56.061 -158.196 56.105 -158.146 56.113 -158.272 56.202 -158.304 56.219 -158.443 56.175 -158.503 56.159 -158.592 56.202 -158.543 56.227 -158.456 56.271 -158.406 56.325 -158.372 56.350 -158.284 56.333 -158.134 56.386 -158.097 56.386 -157.972 56.358 -157.817 56.448 -157.918 56.456 -158.045 56.481 -157.968 56.508 -157.882 56.533 -157.794 56.489 -157.615 56.498 -157.503 56.506 -157.390 56.604 -157.502 56.639 -157.440 56.699 -157.404 56.735 -157.342 56.645 -157.142 56.697 -157.094 56.714 -157.097 56.730 -156.996 56.820 -156.899 56.803 -156.749 56.855 -156.700 56.863 -156.597 56.924 -156.572 56.924 -156.447 56.986 -156.424 57.003 -156.322 57.101 -156.386 57.172 -156.376 57.172 -156.502 57.198 -156.426 57.232 -156.350 57.275 -156.288 57.302 -156.213 57.338 -156.139 57.302 -155.972 57.400 -156.014 57.392 -155.876 57.418 -155.800 57.410 -155.672 57.500 -155.713 57.516 -155.622 57.533 -155.520 57.622 -155.561 57.622 -155.445 57.597 -155.292 57.658 -155.255 57.693 -155.191 57.728 -155.117 57.745 -155.026 57.815 -155.003 57.868 -154.964 57.876 -154.861 57.860 -154.699 57.911 -154.659 57.884 -154.492 57.973 -154.533 57.957 -154.392 58.036 -154.382 57.947 -154.262 57.980 -154.194 58.042 -154.158 58.113 -154.136 58.167 -154.100 58.150 -154.201 58.115 -154.266 58.169 -154.229 58.186 -154.127 58.202 -154.024 58.257 -153.988 58.346 -153.992 58.346 -153.865 58.406 -153.826 58.458 -153.785 58.458 -153.658 58.475 -153.556 58.508 -153.488 58.543 -153.413 58.570 -153.336 58.622 -153.296 58.682 -153.256 58.737 -153.219 58.835 -153.385 58.905 -153.606 58.897 -153.722 58.905 -153.851 58.897 -153.956 58.888 -154.071 58.986 -154.113 59.021 -154.037 59.081 -154.008 59.136 -153.972 59.161 -153.881 59.188 -153.804 59.196 -153.944 59.212 -153.840 59.248 -153.765 59.248 -153.637 59.283 -153.572 59.373 -153.682 59.373 -153.425 59.462 -153.464 59.462 -153.336 59.506 -153.283 59.533 -153.195 59.462 -153.219 59.498 -153.143 59.481 -152.989 59.516 -152.913 59.551 -152.848 59.641 -152.922 59.657 -153.076 59.684 -152.987 59.693 -152.882 59.693 -152.636 59.720 -152.547 59.772 -152.505 59.815 -152.440 59.842 -152.423 59.913 -152.410 60.003 -152.575 60.095 -152.733 60.104 -152.875 60.121 -152.775 60.039 -152.526 60.031 -152.395 60.067 -152.323 60.093 -152.235 60.138 -152.177 60.175 -152.116 60.212 -152.046 60.304 -152.123 60.341 -152.062 60.375 -151.987 60.403 -151.902 60.457 -151.869 60.493 -151.796 60.530 -151.725 60.539 -151.621 60.575 -151.548 60.668 -151.601 60.713 -151.553 60.739 -151.465 60.776 -151.403 60.812 -151.331 60.821 -151.225 60.830 -151.110 60.847 -151.006 60.892 -150.958 60.937 -150.899 60.974 -150.839 61.008 -150.763 61.017 -150.646 61.034 -150.553 61.070 -150.492 61.088 -150.400 61.161 -150.385 61.133 -150.363 61.041 -150.195 61.041 -150.064 61.049 -149.958 61.032 -149.801 61.049 -149.758 61.113 -149.729 61.168 -149.694 61.204 -149.622 61.241 -149.560 61.267 -149.481 61.284 -149.377 61.293 -149.271 61.265 -149.107 61.247 -149.212 61.219 -149.298 61.202 -149.402 61.185 -149.494 61.131 -149.541 61.113 -149.632 61.068 -149.681 61.015 -149.727 60.998 -149.819 60.935 -149.815 60.881 -149.661 60.789 -149.423 60.761 -149.248 60.744 -149.102 60.661 -148.844 60.687 -149.003 60.704 -149.160 60.722 -149.307 60.730 -149.449 60.767 -149.626 60.741 -149.716 60.724 -149.807 60.707 -149.885 60.744 -150.062 60.836 -150.231 60.754 -150.491 60.726 -150.566 60.690 -150.628 60.655 -150.703 60.627 -150.779 60.590 -150.851 60.582 -150.957 60.573 -151.061 60.545 -151.147 60.519 -151.224 60.418 -151.148 60.326 -151.071 60.252 -151.086 60.179 -151.088 60.179 -151.121 60.126 -151.178 60.052 -151.181 59.998 -151.215 59.963 -151.280 59.892 -151.413 59.857 -151.478 59.813 -151.532 59.787 -151.540 59.734 -151.581 59.682 -151.633 59.631 -151.675 59.560 -151.689 59.470 -151.454 59.454 -151.312 59.489 -151.246 59.514 -151.154 59.541 -151.076 59.576 -150.999 59.568 -150.869 59.535 -150.949 59.481 -150.987 59.420 -151.028 59.393 -151.117 59.377 -151.210 59.350 -151.299 59.298 -151.341 59.306 -151.470 59.273 -151.678 59.194 -151.691 59.186 -151.796 59.142 -151.860 59.044 -151.707 59.011 -151.541 59.036 -151.449 59.071 -151.373 59.098 -151.284 59.063 -151.115 59.063 -150.987 59.152 -151.150 59.125 -150.993 59.081 -150.802 59.161 -150.800 59.188 -150.722 59.212 -150.629 59.256 -150.565 59.292 -150.499 59.381 -150.512 59.389 -150.395 59.292 -150.357 59.335 -150.292 59.395 -150.262 59.431 -150.185 59.483 -150.143 59.518 -150.066 59.466 -150.108 59.406 -150.138 59.370 -150.204 59.300 -150.230 59.327 -150.151 59.352 -150.060 59.395 -149.994 59.450 -149.955 59.466 -149.851 59.493 -149.808 59.583 -149.845 59.616 -149.836 59.583 -149.741 59.493 -149.601 59.583 -149.601 59.680 -149.685 59.689 -149.558 59.716 -149.479 59.653 -149.507 59.556 -149.365 59.645 -149.462 59.697 -149.419 59.749 -149.365 59.766 -149.261 59.817 -149.218 59.878 -149.248 59.905 -149.169 59.815 -149.132 59.780 -149.114 59.691 -149.090 59.753 -149.062 59.813 -149.020 59.840 -148.955 59.849 -148.849 59.813 -148.916 59.787 -148.924 59.778 -148.793 59.753 -148.629 59.737 -148.476 59.764 -148.397 59.815 -148.354 59.815 -148.224 59.851 -148.229 59.903 -148.174 59.920 -148.070 59.946 -147.991 60.007 -147.950 59.963 -148.004 60.063 -148.035 60.026 -148.097 60.018 -148.202 60.091 -148.197 60.091 -148.079 60.164 -148.063 60.164 -147.944 60.218 -147.897 60.235 -147.795 60.300 -147.776 60.392 -147.930 60.355 -148.003 60.293 -148.025 60.328 -148.208 60.328 -148.326 60.302 -148.405 60.285 -148.497 60.321 -148.435 60.358 -148.372 60.386 -148.297 60.358 -148.125 60.403 -148.065 60.466 -148.032 60.558 -148.092 60.513 -148.152 60.487 -148.231 60.580 -148.270 60.562 -148.372 60.517 -148.421 60.500 -148.524 60.554 -148.489 60.582 -148.403 60.618 -148.340 60.618 -148.471 60.644 -148.381 60.627 -148.225 60.653 -148.146 60.718 -148.127 60.763 -148.078 60.808 -148.018 60.881 -148.002 60.864 -148.104 60.827 -148.178 60.810 -148.271 60.873 -148.248 60.881 -148.132 60.898 -148.028 60.862 -147.852 60.916 -147.805 60.953 -147.743 60.989 -147.680 61.043 -147.633 61.079 -147.560 61.051 -147.563 60.989 -147.597 60.953 -147.660 60.916 -147.722 60.862 -147.768 60.808 -147.804 60.726 -147.808 60.633 -147.595 60.726 -147.619 60.754 -147.533 60.661 -147.509 60.687 -147.430 60.789 -147.481 60.844 -147.437 60.907 -147.403 60.961 -147.356 60.868 -147.344 60.815 -147.380 60.713 -147.342 60.758 -147.293 60.795 -147.219 60.702 -147.182 60.728 -147.103 60.745 -146.999 60.799 -146.963 60.754 -146.763 60.780 -146.684 60.836 -146.640 60.853 -146.547 60.898 -146.498 60.927 -146.411 60.935 -146.293 60.881 -146.092 60.890 -146.224 60.881 -146.342 60.836 -146.402 60.827 -146.508 60.735 -146.435 60.744 -146.578 60.642 -146.412 60.625 -146.267 60.633 -146.160 60.670 -146.098 60.633 -145.911 60.642 -145.994 60.616 -146.073 60.588 -146.160 60.571 -146.253 60.554 -146.356 60.509 -146.406 60.500 -146.274 60.528 -146.198 60.528 -146.069 60.545 -145.976 60.545 -145.846 60.519 -145.925 60.492 -146.013 60.438 -146.049 60.455 -145.945 60.472 -145.853 60.489 -145.750 60.435 -145.786 60.427 -145.643 60.444 -145.551 60.461 -145.447 60.416 -145.509 60.362 -145.556 60.326 -145.619 60.263 -145.643 60.272 -145.526 60.198 -145.296 60.153 -145.110 60.179 -145.030 60.216 -144.968 60.252 -144.893 60.306 -144.857 60.343 -144.793 60.369 -144.703 60.424 -144.657 60.498 -144.531 60.515 -144.439 60.478 -144.430 60.470 -144.536 60.414 -144.581 60.369 -144.631 60.276 -144.610 60.183 -144.707 60.091 -144.685 60.082 -144.542 59.990 -144.322 59.973 -144.170 59.930 -143.991 59.840 -143.819 59.832 -143.925 59.805 -143.769 59.805 -143.651 59.832 -143.561 59.840 -143.454 59.849 -143.348 59.857 -143.230 59.857 -142.983 59.874 -142.889 59.882 -142.782 59.899 -142.676 59.907 -142.569 59.890 -142.418 59.874 -142.277 59.857 -142.124 59.849 -141.995 59.832 -141.843 59.805 -141.677 59.762 -141.512 59.778 -141.407 59.805 -141.315 59.805 -141.293 59.884 -141.283 59.892 -141.177 59.803 -141.087 59.776 -141.083 59.732 -141.151 59.672 -141.198 59.628 -141.020 59.593 -140.853 59.549 -140.665 59.524 -140.513 59.516 -140.374 59.508 -140.233 59.516 -140.127 59.543 -140.047 59.560 -139.951 59.587 -139.849 59.614 -139.767 59.639 -139.684 59.682 -139.615 59.718 -139.545 59.744 -139.464 59.805 -139.428 59.822 -139.393 59.805 -139.253 59.762 -139.204 59.672 -138.965 59.611 -138.765 59.655 -138.953 59.647 -139.060 59.595 -139.118 59.524 -139.140 59.427 -139.125 59.524 -139.200 59.614 -139.203 59.684 -139.171 59.774 -139.350 59.739 -139.420 59.686 -139.467 59.589 -139.417 59.500 -139.364 59.464 -139.444 59.412 -139.491 59.385 -139.572 59.315 -139.594 59.252 -139.392 59.163 -139.192 59.198 -139.122 59.109 -138.980 59.057 -138.793 58.978 -138.570 58.978 -138.559 59.005 -138.478 59.005 -138.350 58.988 -138.410 58.936 -138.457 58.911 -138.307 58.840 -138.095 58.751 -137.929 58.654 -137.856 58.564 -137.737 58.475 -137.573 58.475 -137.445 58.395 -137.457 58.306 -137.260 58.227 -137.040 58.184 -136.866 58.148 -136.703 58.059 -136.631 58.059 -136.599 58.094 -136.530 58.192 -136.590 58.159 -136.420 58.219 -136.383 58.211 -136.488 58.246 -136.418 58.237 -136.280 58.148 -136.219 58.165 -136.125 58.190 -136.031 58.260 -136.006 58.358 -136.146 58.393 -136.076 58.483 -136.250 58.456 -136.342 58.448 -136.448 58.483 -136.366 58.554 -136.343 58.500 -136.389 58.589 -136.518 58.679 -136.603 58.687 -136.741 58.720 -136.902 58.695 -136.986 58.659 -137.066 58.703 -137.007 58.747 -136.937 58.764 -136.843 58.853 -136.880 58.764 -136.694 58.747 -136.555 58.836 -136.616 58.747 -136.451 58.658 -136.391 58.579 -136.170 58.606 -136.078 58.676 -136.055 58.766 -136.126 58.782 -136.031 58.684 -135.948 58.745 -135.900 58.709 -135.726 58.674 -135.935 58.641 -136.008 58.551 -135.912 58.454 -135.852 58.365 -135.792 58.312 -135.840 58.223 -135.839 58.232 -135.723 58.248 -135.628 58.204 -135.455 58.265 -135.406 58.175 -135.357 58.078 -135.263 58.042 -135.101 58.094 -135.052 58.157 -135.006 58.254 -135.052 58.344 -135.088 58.433 -135.172 58.493 -135.134 58.583 -135.183 58.672 -135.243 58.770 -135.313 58.859 -135.314 58.948 -135.363 59.038 -135.387 58.948 -135.248 59.038 -135.297 59.127 -135.415 59.119 -135.394 59.154 -135.312 59.225 -135.287 59.277 -135.239 59.217 -135.262 59.138 -135.276 59.048 -135.238 58.959 -135.167 58.870 -135.142 58.772 -135.093 58.682 -135.093 58.585 -134.955 58.629 -134.895 58.539 -134.882 58.479 -134.920 58.390 -134.836 58.300 -134.731 58.211 -134.706 58.194 -134.568 58.167 -134.488 58.167 -134.466 58.159 -134.444 58.132 -134.363 58.034 -134.181 58.061 -134.088 58.150 -134.076 58.194 -134.016 58.265 -133.981 58.327 -133.934 58.352 -133.850 58.352 -133.734 58.335 -133.759 58.327 -133.874 58.257 -133.900 58.213 -133.971 58.124 -133.972 58.071 -134.021 58.009 -134.057 57.911 -134.022 57.822 -133.851 57.865 -133.791 57.928 -133.755 57.961 -133.671 57.901 -133.721 57.812 -133.673 57.812 -133.789 57.722 -133.765 57.633 -133.618 57.693 -133.580 57.755 -133.534 57.755 -133.418 57.739 -133.270 57.695 -133.098 57.722 -133.249 57.739 -133.386 57.747 -133.523 57.658 -133.535 57.560 -133.442 57.489 -133.225 57.392 -133.112 57.481 -133.341 57.541 -133.545 57.506 -133.614 57.408 -133.468 57.408 -133.352 57.392 -133.447 57.329 -133.482 57.240 -133.323 57.169 -133.359 57.152 -133.212 57.169 -133.118 57.177 -133.013 57.150 -133.094 57.134 -133.188 57.126 -133.304 57.126 -133.419 57.071 -133.475 56.974 -133.383 56.949 -133.237 57.009 -133.187 56.920 -133.063 56.860 -132.861 56.893 -132.788 56.795 -132.745 56.795 -132.860 56.706 -132.747 56.608 -132.557 56.616 -132.453 56.643 -132.372 56.599 -132.442 56.510 -132.420 56.458 -132.480 56.423 -132.310 56.333 -132.254 56.244 -132.142 56.209 -132.066 56.225 -132.177 56.323 -132.311 56.315 -132.332 56.225 -132.286 56.136 -132.299 56.039 -132.198 55.968 -131.995 56.028 -131.946 56.107 -131.920 56.167 -131.985 56.142 -131.922 56.053 -131.800 56.053 -131.675 56.044 -131.654 56.028 -131.508 56.019 -131.612 56.028 -131.737 56.011 -131.841 55.984 -131.921 55.895 -131.910 55.797 -131.889 55.780 -131.992 55.702 -132.019 55.639 -132.055 55.596 -132.114 55.525 -132.150 55.427 -132.105 55.338 -131.880 55.417 -131.865 55.506 -131.931 55.471 -131.773 55.560 -131.771 55.604 -131.701 55.702 -131.844 55.718 -131.751 55.735 -131.647 55.770 -131.577 55.787 -131.474 55.820 -131.401 55.820 -131.380 55.795 -131.439 55.787 -131.474 55.760 -131.517 55.768 -131.413 55.812 -131.343 55.803 -131.256 55.830 -131.176 55.864 -131.103 55.908 -131.033 55.943 -130.952 55.883 -131.002 55.847 -131.082 55.768 -131.099 55.679 -130.967 55.589 -130.867 55.491 -130.812 55.402 -130.779 55.313 -130.782 55.223 -130.772 55.134 -130.752 55.134 -130.639 55.126 -130.505 55.126 -130.629 55.109 -130.722 55.109 -130.835 55.066 -130.904 55.014 -130.964 54.926 -130.810 54.960 -130.735 54.960 -130.611 55.011 -130.556 55.047 -130.486 55.107 -130.438 55.142 -130.367 55.090 -130.427 55.030 -130.466 54.995 -130.548 54.944 -130.604 54.910 -130.690 54.910 -130.803 54.884 -130.886 54.789 -130.836 54.702 -130.852 54.607 -130.792 54.641 -130.707 54.699 -130.659 54.777 -130.631 54.690 -130.624 54.594 -130.608 54.627 -130.521 54.653 -130.427 54.696 -130.361 54.696 -130.351 54.730 -130.289 54.781 -130.232 54.831 -130.164 54.882 -130.107 54.942 -130.051 55.001 -130.002 55.053 -129.953 55.097 -129.882 55.113 -129.882 55.122 -129.892 55.211 -129.946 55.309 -130.011 55.398 -130.053 55.477 -130.037 55.567 -130.091 55.602 -130.055 55.627 -130.041 55.670 -129.981 55.725 -129.934 55.822 -129.940 55.911 -129.994 55.911 -130.129 55.936 -130.274 56.034 -130.374 56.078 -130.563 56.167 -130.684 56.200 -130.850 56.209 -130.975 56.298 -131.186 56.369 -131.389 56.413 -131.569 56.413 -131.694 56.464 -131.748 56.554 -131.815 56.652 -131.927 56.741 -132.007 56.820 -131.970 56.883 -132.164 56.972 -132.210 57.061 -132.207 57.159 -132.285 57.338 -132.512 57.427 -132.593 57.516 -132.695 57.606 -132.753 57.704 -132.856 57.793 -132.981 57.882 -133.038 57.971 -133.107 58.061 -133.232 58.150 -133.347 58.221 -133.322 58.310 -133.437 58.381 -133.574 58.479 -133.690 58.576 -133.883 58.637 -134.089 58.726 -134.226 58.815 -134.275 58.913 -134.345 59.011 -134.565 59.063 -134.750 59.152 -134.878 59.242 -134.927 59.302 -134.878 59.391 -134.927 59.408 -134.971 59.498 -135.136 59.568 -135.378 59.543 -135.475 59.516 -135.568 59.489 -135.660 59.464 -135.756 59.448 -135.862 59.439 -135.979 59.423 -136.086 59.395 -136.178 59.306 -136.107 59.254 -136.188 59.262 -136.316 59.165 -136.327 59.086 -136.339 59.026 -136.398 58.973 -136.446 58.965 -136.574 58.957 -136.713 58.922 -136.794 58.897 -136.889 58.861 -136.980 58.835 -137.073 58.801 -137.167 58.766 -137.237 58.730 -137.318 58.820 -137.368 58.926 -137.428 59.023 -137.466 59.113 -137.596 59.211 -137.773 59.246 -137.842 59.262 -137.864 59.352 -138.041 59.450 -138.219 59.539 -138.386 59.645 -138.495 59.734 -138.638 59.787 -138.838 59.795 -138.860 59.892 -138.981 60.018 -138.895 60.119 -138.866 60.136 -139.031 60.136 -139.171 60.127 -139.310 60.127 -139.450 60.093 -139.541 60.056 -139.604 60.020 -139.670 59.984 -139.748 59.984 -139.795 60.037 -140.000 60.093 -140.212 60.048 -140.274 60.020 -140.351 60.048 -140.511 60.074 -140.678 60.183 -140.782 60.487 -141.008 69.607 -141.008 69.607 -141.016 69.607 -141.065 69.588 -141.238 69.585 -141.457 69.503 -141.599 69.541 -141.696 69.532 -141.717 69.580 -141.942 69.618 -142.139 69.724 -142.347 69.762 -142.517 69.780 -142.679 69.798 -142.854 69.826 -143.033 69.816 -143.148 69.816 -143.291 69.798 -143.391 69.807 -143.549 69.789 -143.649 69.798 -143.808 69.722 -143.804 69.722 -143.817 69.778 -143.852 69.760 -143.951 69.760 -144.082 69.751 -144.209 69.722 -144.288 69.704 -144.348 69.695 -144.475 69.704 -144.622 69.712 -144.768 69.722 -144.927 69.722 -145.043 69.751 -145.019 69.807 -145.249 69.789 -145.348 69.886 -145.557 69.877 -145.672 69.868 -145.800 69.906 -146.011 69.906 -146.273 69.898 -146.401 69.898 -146.664 69.889 -146.778 69.898 -146.938 69.906 -147.097 69.924 -147.260 69.972 -147.489 70.021 -147.581 70.021 -147.593 70.030 -147.755 70.061 -147.882 70.061 -147.946 70.030 -148.027 70.121 -148.354 70.121 -148.485 70.181 -148.748 70.212 -148.955 70.193 -149.061 70.222 -149.251 70.222 -149.382 70.202 -149.474 70.202 -149.630 70.183 -149.723 70.154 -149.809 70.154 -150.072 70.205 -150.069 70.214 -150.221 70.214 -150.353 70.183 -150.433 70.183 -150.549 70.164 -150.655 70.174 -150.726 70.145 -150.812 70.154 -150.831 70.104 -150.860 70.133 -151.050 70.152 -151.233 70.152 -151.364 70.193 -151.592 70.231 -151.526 70.272 -151.466 70.272 -151.742 70.262 -151.853 70.262 -152.142 70.272 -152.305 70.291 -152.201 70.291 -151.925 70.301 -151.801 70.310 -151.951 70.351 -152.167 70.401 -152.139 70.452 -152.111 70.480 -152.026 70.571 -152.068 70.590 -152.239 70.590 -152.529 70.610 -152.701 70.629 -152.873 70.619 -152.998 70.600 -153.091 70.590 -153.215 70.600 -153.380 70.600 -153.512 70.581 -153.617 70.542 -153.681 70.523 -153.774 70.495 -153.859 70.545 -154.107 70.535 -154.232 70.597 -154.495 70.616 -154.390 70.658 -154.331 70.708 -154.304 70.811 -154.557 70.820 -154.709 70.770 -154.748 70.861 -154.807 70.841 -154.899 70.813 -154.985 70.753 -154.991 70.722 -155.070 70.691 -155.136 70.662 -155.221 70.602 -155.228 70.583 -155.333 70.564 -155.424 70.555 -155.549 70.514 -155.607 70.482 -155.673 70.555 -155.681 70.635 -155.852 70.645 -155.885 70.655 -155.761 70.693 -155.697 70.693 -155.552 70.712 -155.447 70.753 -155.389 70.782 -155.304 70.813 -155.238 70.925 -155.512 70.935 -155.665 70.976 -155.897 70.985 -156.062 71.017 -156.262 71.086 -156.264 71.126 -156.205 71.095 -156.284 71.067 -156.357 71.047 -156.473 71.019 -156.545 70.978 -156.591 70.947 -156.658 70.918 -156.741 70.837 -156.834 70.808 -156.906 70.777 -156.984 70.746 -157.050 70.717 -157.133 70.686 -157.199 70.658 -157.284 70.638 -157.387 70.610 -157.459 70.590 -157.562 70.571 -157.678 70.552 -157.770 70.552 -157.915 70.542 -158.038 70.542 -158.182 70.533 -158.294 70.514 -158.410 70.523 -158.563 70.514 -158.674 70.495 -158.778 70.495 -158.910 70.514 -159.095 70.542 -159.013 70.593 -158.976 70.574 -159.068 70.564 -159.191 70.545 -159.283 70.526 -159.386 70.485 -159.442 70.444 -159.499 70.425 -159.590 70.406 -159.692 70.387 -159.728 70.346 -159.785 70.365 -159.682 70.334 -159.550 70.231 -159.341 70.251 -159.239 70.251 -158.976 70.231 -159.066 70.231 -159.197 70.212 -159.300 70.231 -159.473 70.181 -159.496 70.130 -159.533 70.049 -159.501 69.981 -159.490 70.092 -159.662 70.083 -159.757 70.124 -159.714 70.164 -159.669 70.214 -159.689 70.205 -159.704 70.205 -159.848 70.214 -159.725 70.252 -159.675 70.252 -159.663 70.325 -159.687 70.315 -159.703 70.325 -159.867 70.293 -159.932 70.265 -160.014 70.233 -160.078 70.202 -160.143 70.174 -160.238 70.154 -160.312 70.126 -160.393 70.095 -160.471 70.075 -160.561 70.025 -160.595 70.035 -160.760 70.004 -160.836 69.995 -160.949 69.985 -161.075 69.995 -161.249 69.968 -161.327 69.938 -161.400 69.920 -161.497 69.956 -161.424 69.995 -161.524 70.054 -161.520 70.035 -161.621 69.995 -161.679 69.956 -161.735 69.929 -161.825 69.891 -161.893 69.861 -161.979 69.826 -162.052 69.796 -162.137 69.740 -162.181 69.702 -162.250 69.672 -162.323 69.636 -162.394 69.607 -162.481 69.577 -162.553 69.550 -162.642 69.512 -162.698 69.435 -162.691 69.418 -162.798 69.370 -162.836 69.284 -162.809 69.237 -162.859 69.180 -162.890 69.133 -162.927 69.104 -163.013 69.151 -162.963 69.199 -162.926 69.162 -162.985 69.115 -163.022 69.038 -163.156 69.000 -163.211 68.962 -163.278 68.935 -163.355 68.896 -163.433 68.867 -163.505 68.849 -163.612 68.820 -163.684 68.793 -163.761 68.775 -163.855 68.739 -164.067 68.730 -164.178 68.721 -164.291 68.721 -164.432 68.712 -164.543 68.702 -164.667 68.685 -164.761 68.685 -164.903 68.675 -165.025 68.667 -165.150 68.667 -165.420 68.657 -165.531 68.675 -165.708 68.675 -165.849 68.685 -165.997 68.637 -166.032 68.560 -166.010 68.504 -166.040 68.446 -166.053 68.380 -166.065 68.342 -166.117 68.294 -166.164 68.238 -166.195 68.200 -166.247 68.191 -166.370 68.173 -166.462 68.173 -166.525 68.164 -166.583 68.155 -166.436 68.137 -166.260 68.040 -165.940 67.943 -165.749 67.925 -165.574 67.898 -165.393 67.821 -165.115 67.627 -164.609 67.589 -164.460 67.492 -164.186 67.386 -163.930 67.192 -163.734 67.095 -163.674 67.030 -163.676 66.933 -163.513 66.915 -163.352 66.896 -163.179 66.879 -163.018 66.870 -162.874 66.879 -162.752 66.879 -162.625 66.849 -162.569 66.858 -162.448 66.896 -162.394 66.926 -162.350 66.991 -162.347 66.991 -162.247 66.944 -162.284 66.896 -162.332 66.831 -162.334 66.840 -162.214 66.906 -162.199 66.849 -162.092 66.868 -161.989 66.876 -161.866 66.886 -161.745 66.789 -161.488 66.789 -161.626 66.779 -161.633 66.741 -161.698 66.685 -161.718 66.647 -161.784 66.532 -161.755 66.495 -161.675 66.398 -161.480 66.369 -161.375 66.369 -161.237 66.378 -161.181 66.426 -161.144 66.435 -161.111 66.482 -161.075 66.482 -160.948 66.500 -160.844 66.432 -160.579 66.423 -160.435 66.461 -160.369 66.461 -160.231 66.365 -160.124 66.299 -160.139 66.232 -160.139 66.222 -160.247 66.222 -160.385 66.204 -160.489 66.204 -160.615 66.261 -160.858 66.358 -161.166 66.329 -161.237 66.301 -161.324 66.293 -161.445 66.331 -161.655 66.428 -161.873 66.525 -161.983 66.572 -161.946 66.678 -162.097 66.775 -162.304 66.775 -162.430 66.748 -162.519 66.671 -162.499 66.574 -162.338 66.565 -162.195 66.460 -162.006 66.363 -161.799 66.286 -161.793 66.239 -161.829 66.173 -161.831 66.211 -161.766 66.239 -161.692 66.239 -161.429 66.221 -161.269 66.153 -161.003 66.047 -160.905 66.008 -160.959 65.972 -161.028 66.069 -161.073 66.117 -161.287 66.117 -161.424 66.087 -161.495 65.990 -161.564 65.952 -161.618 65.914 -161.683 65.914 -161.648 65.886 -161.723 65.886 -161.860 65.905 -162.019 65.896 -162.139 65.878 -162.243 65.896 -162.413 65.886 -162.533 65.848 -162.587 65.925 -162.606 65.934 -162.759 65.934 -162.885 65.916 -162.988 65.916 -163.114 65.934 -163.285 65.934 -163.422 65.916 -163.513 65.945 -163.707 66.042 -163.914 66.042 -164.052 66.072 -163.970 66.080 -163.861 66.107 -163.787 66.184 -163.795 66.249 -163.794 66.288 -163.730 66.335 -163.682 66.432 -163.783 66.441 -163.673 66.450 -163.829 66.441 -163.937 66.441 -164.213 66.432 -164.323 66.414 -164.413 66.405 -164.523 66.387 -164.638 66.331 -164.782 66.301 -164.862 66.274 -164.884 66.293 -165.057 66.274 -165.159 66.266 -165.280 66.247 -165.382 66.229 -165.474 66.211 -165.577 66.184 -165.651 66.155 -165.732 66.069 -165.704 66.004 -165.442 65.986 -165.532 65.968 -165.635 65.968 -165.772 65.977 -165.915 66.035 -166.153 66.017 -166.256 66.000 -166.347 65.981 -166.449 65.955 -166.534 65.936 -166.636 65.900 -166.704 65.871 -166.773 65.853 -166.875 65.785 -166.870 65.758 -166.943 65.729 -167.023 65.767 -167.222 65.749 -167.324 65.713 -167.392 65.684 -167.471 65.598 -167.442 65.589 -167.550 65.580 -167.657 65.562 -167.759 65.535 -167.843 65.544 -167.998 65.573 -167.917 65.600 -167.844 65.639 -167.783 65.630 -167.852 65.600 -167.920 65.573 -168.004 65.535 -168.067 65.438 -167.856 65.381 -167.622 65.284 -167.325 65.276 -167.172 65.267 -167.030 65.239 -166.853 65.249 -166.746 65.239 -166.604 65.211 -166.413 65.192 -166.253 65.107 -165.965 65.107 -166.026 65.134 -166.214 65.125 -166.333 65.097 -166.404 65.039 -166.417 65.003 -166.484 64.994 -166.605 65.052 -166.839 65.109 -166.823 65.156 -166.778 65.127 -166.858 65.070 -166.874 64.975 -166.779 64.874 -166.620 64.781 -166.380 64.753 -166.330 64.699 -166.356 64.654 -166.411 64.581 -166.403 64.488 -166.214 64.462 -166.032 64.445 -165.877 64.437 -165.728 64.419 -165.574 64.402 -165.419 64.385 -165.265 64.348 -165.077 64.348 -164.941 64.385 -164.883 64.413 -164.798 64.396 -164.644 64.423 -164.558 64.441 -164.466 64.468 -164.380 64.468 -164.133 64.460 -163.983 64.477 -163.878 64.477 -163.744 64.468 -163.605 64.404 -163.367 64.311 -163.132 64.368 -163.108 64.413 -163.053 64.494 -163.331 64.523 -163.257 64.531 -163.138 64.430 -162.925 64.337 -162.833 64.245 -162.768 64.273 -162.694 64.318 -162.650 64.372 -162.611 64.417 -162.567 64.443 -162.489 64.471 -162.402 64.488 -162.297 64.516 -162.211 64.561 -162.167 64.579 -162.074 64.587 -161.965 64.596 -161.857 64.632 -161.785 64.615 -161.879 64.652 -161.819 64.660 -161.699 64.624 -161.500 64.652 -161.425 64.669 -161.321 64.714 -161.276 64.760 -161.219 64.788 -161.144 64.805 -161.039 64.813 -160.930 64.796 -160.971 64.779 -161.066 64.686 -160.832 64.594 -160.742 64.529 -160.766 64.484 -160.822 64.458 -160.900 64.441 -160.994 64.396 -161.050 64.396 -161.174 64.423 -161.356 64.406 -161.424 64.351 -161.451 64.305 -161.495 64.322 -161.402 64.268 -161.173 64.176 -161.047 64.083 -160.957 64.002 -160.950 63.909 -160.913 63.816 -160.838 63.724 -160.801 63.650 -160.808 63.614 -160.867 63.579 -160.942 63.534 -160.986 63.506 -161.072 63.470 -161.131 63.424 -161.186 63.398 -161.275 63.390 -161.382 63.373 -161.486 63.364 -161.605 63.381 -161.757 63.364 -161.849 63.364 -161.971 63.355 -162.090 63.355 -162.224 63.448 -162.251 63.420 -162.324 63.375 -162.379 63.338 -162.450 63.293 -162.504 63.256 -162.574 63.222 -162.637 63.177 -162.691 63.149 -162.764 63.140 -162.871 63.095 -162.926 63.058 -162.984 63.030 -163.068 62.996 -163.142 62.978 -163.233 62.970 -163.340 63.032 -163.582 63.007 -163.659 62.970 -163.728 62.953 -163.819 62.916 -163.889 62.942 -163.885 62.970 -163.802 62.998 -163.728 63.043 -163.662 63.136 -163.813 63.153 -163.940 63.181 -164.121 63.181 -164.243 63.172 -164.351 63.155 -164.454 63.127 -164.527 63.093 -164.599 63.037 -164.634 62.944 -164.413 62.961 -164.527 62.961 -164.649 62.953 -164.767 62.916 -164.836 62.871 -164.878 62.826 -164.932 62.724 -164.850 62.733 -164.950 62.652 -164.940 62.550 -164.870 62.576 -164.794 62.649 -164.657 62.686 -164.599 62.686 -164.577 62.649 -164.634 62.604 -164.676 62.567 -164.745 62.541 -164.821 62.524 -164.912 62.432 -164.871 62.395 -164.687 62.378 -164.679 62.350 -164.751 62.324 -164.827 62.386 -164.804 62.479 -164.977 62.479 -165.098 62.462 -165.189 62.434 -165.261 62.397 -165.318 62.363 -165.390 62.317 -165.443 62.281 -165.500 62.244 -165.556 62.199 -165.609 62.163 -165.666 62.117 -165.708 62.091 -165.806 61.982 -165.855 61.900 -165.843 61.807 -165.802 61.781 -165.888 61.781 -166.129 61.754 -166.201 61.661 -166.039 61.643 -165.888 61.626 -165.990 61.609 -166.080 61.654 -166.290 61.592 -166.301 61.491 -166.183 61.508 -166.093 61.454 -165.880 61.409 -165.921 61.381 -166.004 61.308 -165.996 61.206 -165.750 61.133 -165.744 61.041 -165.595 61.041 -165.464 61.103 -165.441 61.185 -165.463 61.222 -165.396 61.295 -165.403 61.322 -165.320 61.305 -165.338 61.224 -165.317 61.206 -165.417 61.113 -165.326 61.131 -165.237 61.165 -165.177 61.120 -165.218 61.019 -165.091 61.073 -165.064 61.056 -164.904 61.039 -165.005 60.993 -165.047 60.976 -165.147 60.959 -165.237 60.866 -165.135 60.903 -165.068 60.866 -164.886 60.892 -164.800 60.819 -164.555 60.819 -164.187 60.810 -164.043 60.855 -164.001 60.890 -163.940 60.927 -163.873 60.935 -163.768 60.881 -163.796 60.864 -163.646 60.836 -163.718 60.827 -163.834 60.799 -163.905 60.791 -163.760 60.690 -163.519 60.636 -163.546 60.599 -163.613 60.571 -163.684 60.545 -163.770 60.554 -163.890 60.636 -163.910 60.737 -164.025 60.720 -164.115 60.683 -164.171 60.629 -164.199 60.612 -164.299 60.586 -164.373 60.550 -164.441 60.532 -164.530 60.550 -164.501 60.575 -164.427 60.631 -164.393 60.657 -164.307 60.758 -164.458 60.787 -164.625 60.778 -164.729 60.870 -164.807 60.853 -164.909 60.881 -165.076 60.780 -165.021 60.752 -165.102 60.679 -165.095 60.651 -165.167 60.614 -165.234 60.588 -165.319 60.552 -165.386 60.459 -165.346 60.476 -165.246 60.459 -165.098 60.423 -165.154 60.360 -165.176 60.287 -165.017 60.259 -164.841 60.259 -164.808 60.295 -164.740 60.241 -164.742 60.141 -164.559 60.112 -164.558 60.020 -164.401 59.967 -164.196 59.932 -164.223 59.897 -164.296 59.799 -164.199 59.782 -164.043 59.774 -163.912 59.766 -163.781 59.774 -163.676 59.790 -163.444 59.807 -163.342 59.815 -163.226 59.840 -163.136 59.867 -163.061 59.884 -162.959 59.911 -162.872 59.963 -162.825 59.946 -162.694 59.963 -162.591 59.998 -162.554 60.080 -162.572 60.126 -162.520 60.218 -162.722 60.263 -162.680 60.309 -162.627 60.326 -162.538 60.388 -162.513 60.424 -162.456 60.535 -162.382 60.580 -162.329 60.597 -162.228 60.690 -162.265 60.616 -162.164 60.644 -162.081 60.661 -161.991 60.636 -162.030 60.599 -162.110 60.590 -162.214 60.554 -162.283 60.500 -162.310 60.446 -162.349 60.401 -162.403 60.345 -162.438 60.291 -162.465 60.198 -162.439 60.106 -162.387 60.151 -162.345 60.160 -162.241 60.050 -162.294 59.959 -162.263 59.915 -162.173 59.826 -162.151 59.737 -162.058 59.647 -161.986 59.549 -161.913 59.460 -161.806 59.443 -161.909 59.391 -161.956 59.321 -162.081 59.250 -162.100 59.223 -162.175 59.152 -162.133 59.063 -162.040 59.088 -161.950 59.088 -161.833 59.079 -161.703 59.044 -161.765 59.011 -161.842 59.019 -161.972 58.930 -161.936 58.851 -161.942 58.762 -161.825 58.734 -161.911 58.709 -161.989 58.647 -162.009 58.656 -162.150 58.601 -162.193 58.610 -162.079 58.547 -161.855 58.583 -161.782 58.610 -161.697 58.626 -161.606 58.662 -161.532 58.714 -161.496 58.774 -161.461 58.766 -161.332 58.817 -161.156 58.845 -161.081 58.836 -160.951 58.880 -160.891 58.915 -160.818 58.940 -160.729 58.976 -160.666 59.003 -160.579 58.968 -160.398 58.924 -160.458 58.835 -160.239 58.842 -160.134 58.835 -160.133 58.737 -160.051 58.770 -159.974 58.813 -159.924 58.876 -159.892 58.859 -159.738 58.799 -159.774 58.772 -159.604 58.682 -159.490 58.504 -159.310 58.406 -159.194 58.390 -159.158 58.373 -159.016 58.408 -158.942 58.452 -158.882 58.541 -158.961 58.631 -159.004 58.701 -159.055 58.718 -158.952 58.780 -158.930 58.851 -158.921 58.930 -158.914 58.840 -158.880 58.868 -158.805 58.901 -158.739 58.945 -158.678 58.998 -158.643 59.042 -158.592 59.131 -158.646 59.096 -158.604 59.007 -158.399 58.963 -158.205 58.874 -158.137 58.882 -158.196 58.971 -158.321 58.998 -158.490 58.982 -158.582 58.922 -158.618 58.859 -158.639 58.815 -158.690 58.718 -158.509 58.629 -158.477 58.585 -158.319 58.601 -158.216 58.626 -158.127 58.643 -158.024 58.668 -157.945 58.695 -157.859 58.712 -157.767 58.739 -157.680 58.755 -157.588 58.782 -157.502 58.799 -157.399 58.815 -157.307 58.840 -157.227 58.884 -157.165 58.928 -157.115 58.945 -157.023 59.015 -157.001 59.067 -156.963 59.102 -156.887 59.086 -156.909 59.034 -156.959 58.955 -156.967 58.920 -157.032 58.893 -157.108 58.832 -157.145 58.762 -157.166 58.682 -157.163 58.666 -157.231 58.641 -157.310 58.606 -157.384 58.562 -157.446 58.518 -157.497 58.491 -157.584 58.456 -157.647 58.404 -157.685 58.352 -157.723 58.281 -157.733 58.184 -157.618 58.211 -157.532 58.140 -157.310 58.184 -157.492 58.159 -157.581 58.142 -157.672 58.117 -157.762 58.063 -157.796 57.984 -157.805 57.913 -157.814 57.789 -157.859 57.728 -157.895 57.658 -157.905 57.560 -157.770 57.481 -157.778 57.489 -157.733 57.489 -157.618 57.533 -157.591 57.473 -157.617 57.464 -157.731 57.464 -157.846 57.554 -157.924 57.537 -158.015 57.504 -158.081 57.477 -158.166 57.433 -158.216 57.398 -158.278 57.354 -158.339 57.338 -158.441 57.310 -158.515 57.221 -158.633 57.177 -158.693 57.142 -158.756 57.099 -158.817 57.046 -158.853 56.994 -158.901 56.916 -158.898 56.818 -158.842 56.791 -158.928 56.791 -159.043 56.826 -159.210 56.791 -159.283 56.766 -159.360 56.739 -159.434 56.695 -159.483 56.670 -159.561 56.643 -159.645 56.635 -159.748 56.608 -159.832 56.591 -159.933 56.564 -160.018 56.529 -160.079 56.485 -160.127 56.461 -160.215 56.433 -160.276 56.408 -160.363 56.365 -160.423 56.329 -160.484 56.294 -160.555 56.250 -160.604 56.190 -160.639 56.128 -160.659 56.084 -160.718 56.032 -160.765 55.934 -160.673 55.845 -160.460 55.793 -160.497 55.891 -160.698 55.883 -160.800 55.891 -160.936 55.820 -160.944 55.731 -160.856 55.731 -160.969 55.828 -161.094 55.918 -161.218 55.953 -161.146 56.005 -161.101 55.980 -161.187 55.953 -161.260 55.970 -161.411 55.978 -161.537 56.003 -161.460 55.986 -161.560 55.970 -161.649 55.953 -161.737 55.936 -161.837 55.920 -161.937 55.895 -162.023 55.860 -162.095 55.824 -162.155 55.799 -162.231 55.764 -162.302 55.729 -162.362 55.702 -162.446 55.658 -162.493 55.614 -162.541 55.581 -162.614 55.537 -162.662 55.494 -162.720 55.396 -162.663 55.371 -162.748 55.371 -162.862 55.328 -162.920 55.311 -163.008 55.240 -163.015 55.213 -163.097 55.230 -163.235 55.273 -163.178 55.238 -163.248 55.203 -163.318 55.186 -163.406 55.151 -163.477 54.973 -163.414 54.930 -163.469 54.853 -163.476 54.869 -163.385 54.912 -163.321 54.946 -163.254 54.997 -163.200 55.087 -163.355 55.122 -163.295 55.051 -163.065 54.963 -162.969 54.979 -162.867 55.030 -162.829 ; #761 9 58.086 -157.085 58.069 -157.093 58.009 -157.119 57.911 -156.916 57.903 -156.788 57.860 -156.596 57.780 -156.362 57.710 -156.373 57.702 -156.372 57.745 -156.310 57.780 -156.247 57.870 -156.369 57.878 -156.266 57.913 -156.202 57.973 -156.235 58.017 -156.415 58.069 -156.609 58.113 -156.802 58.129 -156.907 58.113 -156.999 58.088 -157.089 ; #762 9 59.362 -156.063 59.345 -155.944 59.354 -155.829 59.362 -155.713 59.389 -155.625 59.406 -155.533 59.441 -155.457 59.458 -155.353 59.441 -155.211 59.450 -155.106 59.466 -155.002 59.466 -154.874 59.458 -154.743 59.501 -154.691 59.485 -154.784 59.537 -154.734 59.572 -154.668 59.651 -154.658 59.676 -154.567 59.684 -154.461 59.693 -154.356 59.701 -154.239 59.728 -154.162 59.762 -154.083 59.797 -154.018 59.797 -154.146 59.788 -154.252 59.815 -154.421 59.807 -154.538 59.790 -154.630 59.790 -154.877 59.764 -154.966 59.730 -155.034 59.686 -155.097 59.678 -155.213 59.678 -155.331 59.661 -155.424 59.653 -155.541 59.653 -155.787 59.626 -155.864 59.591 -155.939 59.566 -156.020 59.531 -156.084 59.452 -156.094 ; #763 9 60.024 -148.240 60.061 -148.192 60.086 -148.113 60.160 -148.108 60.123 -148.182 60.086 -148.229 60.078 -148.227 60.024 -148.273 ; #764 9 60.091 -148.233 60.155 -148.214 60.164 -148.216 60.147 -148.320 60.074 -148.325 60.046 -148.411 60.055 -148.295 60.089 -148.229 ; #765 9 38.352 -123.051 38.301 -122.971 38.218 -122.901 38.135 -122.842 38.218 -122.951 38.135 -122.981 38.044 -123.016 38.110 -122.954 38.044 -122.803 37.960 -122.725 37.919 -122.590 37.911 -122.483 38.078 -122.503 38.170 -122.488 38.211 -122.401 38.119 -122.257 38.111 -122.223 38.070 -122.310 38.030 -122.387 37.946 -122.327 37.863 -122.336 37.772 -122.242 37.688 -122.163 37.597 -122.137 37.513 -122.115 37.605 -122.259 37.688 -122.389 37.772 -122.390 37.855 -122.431 37.830 -122.517 37.739 -122.512 37.655 -122.511 37.572 -122.520 37.489 -122.441 37.405 -122.411 37.314 -122.414 37.230 -122.384 37.147 -122.284 37.063 -122.194 37.005 -122.058 37.005 -121.978 36.957 -121.848 36.866 -121.785 36.782 -121.764 36.782 -121.773 36.741 -121.819 36.667 -121.876 36.642 -121.962 36.559 -121.931 36.468 -121.896 36.384 -121.874 36.301 -121.815 36.235 -121.666 36.151 -121.598 36.068 -121.490 35.977 -121.445 35.893 -121.377 35.810 -121.289 35.718 -121.244 35.695 -121.121 35.612 -121.062 35.521 -120.959 35.480 -120.835 35.396 -120.826 35.305 -120.842 35.222 -120.714 35.206 -120.605 35.123 -120.575 35.115 -120.570 35.031 -120.600 34.948 -120.585 34.857 -120.581 34.774 -120.560 34.691 -120.599 34.600 -120.497 34.517 -120.400 34.532 -120.298 34.532 -120.089 34.524 -119.985 34.501 -119.916 34.486 -119.809 34.463 -119.698 34.486 -119.609 34.455 -119.485 34.381 -119.351 34.298 -119.262 34.215 -119.195 34.174 -119.076 34.126 -118.953 34.085 -118.825 34.108 -118.736 34.116 -118.631 34.101 -118.524 34.017 -118.457 33.927 -118.414 33.843 -118.445 33.786 -118.318 33.793 -118.294 33.834 -118.213 33.801 -118.098 33.710 -117.997 33.652 -117.871 33.561 -117.770 33.478 -117.632 33.395 -117.515 33.312 -117.448 33.145 -117.353 33.054 -117.320 32.971 -117.300 32.888 -117.318 32.804 -117.253 32.721 -117.223 32.605 -117.169 32.613 -117.085 32.613 -117.046 32.621 -116.941 32.629 -116.846 32.636 -116.740 32.644 -116.645 32.659 -116.534 32.659 -116.507 32.667 -116.402 32.667 -116.383 32.675 -116.287 32.683 -116.213 32.683 -116.203 32.691 -116.108 32.698 -116.003 32.698 -115.903 32.706 -115.799 32.714 -115.694 32.721 -115.640 32.729 -115.544 32.729 -115.456 32.737 -115.360 32.745 -115.256 32.752 -115.160 32.760 -115.055 32.760 -115.016 32.768 -114.920 32.776 -114.805 32.776 -114.778 32.768 -114.775 32.652 -114.860 32.569 -114.871 32.538 -114.769 32.505 -114.655 32.464 -114.528 32.431 -114.414 32.398 -114.291 32.365 -114.176 32.325 -114.059 32.294 -113.937 32.261 -113.823 32.220 -113.706 32.187 -113.583 32.147 -113.465 32.114 -113.343 32.081 -113.229 32.040 -113.112 32.010 -112.989 31.969 -112.872 31.953 -112.796 31.913 -112.679 31.880 -112.557 31.839 -112.440 31.808 -112.327 31.767 -112.201 31.735 -112.087 31.694 -111.970 31.661 -111.848 31.621 -111.731 31.580 -111.605 31.564 -111.540 31.524 -111.424 31.483 -111.298 31.458 -111.218 31.425 -111.105 31.425 -108.373 31.491 -108.264 31.789 -108.274 31.872 -108.210 31.872 -106.612 31.864 -106.590 31.839 -106.540 31.839 -106.512 31.816 -106.445 31.725 -106.379 31.642 -106.335 31.558 -106.272 31.493 -106.146 31.452 -106.020 31.369 -105.928 31.286 -105.845 31.203 -105.723 31.120 -105.640 31.036 -105.548 30.945 -105.432 30.887 -105.309 30.847 -105.193 30.773 -105.055 30.700 -104.985 30.616 -104.933 30.526 -104.904 30.443 -104.851 30.359 -104.789 30.268 -104.724 30.102 -104.733 30.053 -104.713 29.970 -104.663 29.880 -104.608 29.796 -104.573 29.738 -104.537 29.690 -104.494 29.657 -104.436 29.649 -104.415 29.626 -104.330 29.543 -104.247 29.502 -104.196 29.419 -104.063 29.394 -103.957 29.338 -103.842 29.272 -103.715 29.247 -103.609 29.164 -103.497 29.133 -103.389 29.107 -103.315 29.100 -103.265 29.216 -103.104 29.299 -103.052 29.372 -102.977 29.456 -102.954 29.547 -102.895 29.630 -102.863 29.713 -102.802 29.796 -102.759 29.837 -102.744 29.860 -102.653 29.885 -102.553 29.878 -102.452 29.961 -102.409 29.969 -102.313 29.920 -102.191 29.912 -102.091 29.905 -101.990 29.920 -101.887 29.887 -101.779 29.880 -101.670 29.880 -101.473 29.788 -101.436 29.740 -101.374 29.700 -101.296 29.609 -101.229 29.568 -101.119 29.485 -101.085 29.469 -101.041 29.454 -101.009 29.371 -100.886 29.280 -100.850 29.197 -100.756 29.113 -100.722 29.030 -100.707 29.015 -100.693 28.924 -100.627 28.792 -100.588 28.709 -100.506 28.618 -100.461 28.535 -100.445 28.452 -100.402 28.361 -100.336 28.287 -100.207 28.221 -100.170 28.131 -100.125 28.065 -100.057 27.982 -100.005 27.899 -99.942 27.883 -99.928 27.792 -99.844 27.759 -99.767 27.719 -99.657 27.711 -99.645 27.628 -99.639 27.620 -99.637 27.579 -99.616 27.496 -99.630 27.405 -99.612 27.322 -99.570 27.239 -99.572 27.148 -99.564 27.065 -99.471 27.034 -99.444 26.935 -99.376 26.852 -99.334 26.769 -99.310 26.686 -99.303 26.678 -99.291 26.637 -99.223 26.554 -99.226 26.539 -99.183 26.531 -99.083 26.500 -98.977 26.492 -98.907 26.409 -98.817 26.393 -98.715 26.353 -98.597 26.337 -98.495 26.246 -98.421 26.223 -98.357 26.223 -98.251 26.208 -98.149 26.208 -97.946 26.177 -97.839 26.127 -97.728 26.043 -97.627 26.035 -97.598 25.995 -97.489 26.078 -97.456 26.111 -97.359 26.119 -97.264 26.202 -97.288 26.129 -97.364 26.219 -97.447 26.302 -97.432 26.386 -97.465 26.477 -97.491 26.560 -97.534 26.643 -97.567 26.734 -97.575 26.949 -97.637 27.032 -97.688 27.122 -97.705 27.164 -97.620 27.246 -97.635 27.329 -97.590 27.421 -97.578 27.388 -97.667 27.395 -97.766 27.411 -97.868 27.502 -97.847 27.585 -97.910 27.502 -97.808 27.486 -97.697 27.471 -97.595 27.471 -97.568 27.554 -97.535 27.645 -97.493 27.811 -97.426 27.902 -97.529 27.986 -97.536 27.986 -97.544 27.978 -97.640 27.993 -97.653 28.009 -97.560 28.016 -97.515 28.016 -97.301 28.100 -97.248 28.191 -97.176 28.257 -97.177 28.198 -97.258 28.206 -97.367 28.297 -97.325 28.305 -97.230 28.272 -97.163 28.355 -97.101 28.272 -97.095 28.320 -97.011 28.403 -96.937 28.570 -96.929 28.610 -96.949 28.527 -96.859 28.486 -96.750 28.527 -96.654 28.568 -96.568 28.593 -96.557 28.608 -96.659 28.699 -96.695 28.783 -96.757 28.806 -96.707 28.773 -96.599 28.725 -96.595 28.808 -96.562 28.874 -96.590 28.874 -96.572 28.790 -96.509 28.814 -96.417 28.765 -96.306 28.765 -96.287 28.742 -96.320 28.727 -96.334 28.759 -96.245 28.785 -96.154 28.711 -96.231 28.670 -96.317 28.630 -96.363 28.663 -96.274 28.711 -96.190 28.744 -96.102 28.775 -96.003 28.815 -95.917 28.792 -96.008 28.767 -96.099 28.840 -96.022 28.874 -95.934 28.866 -95.824 28.906 -95.738 28.955 -95.653 28.996 -95.568 29.011 -95.524 29.059 -95.440 29.133 -95.363 29.181 -95.278 29.272 -95.286 29.320 -95.201 29.404 -95.127 29.436 -95.038 29.444 -95.031 29.500 -94.960 29.549 -95.072 29.640 -95.117 29.723 -95.101 29.806 -95.152 29.837 -95.123 29.829 -95.111 29.788 -95.001 29.872 -94.947 29.905 -94.858 29.814 -94.824 29.730 -94.848 29.647 -94.893 29.671 -94.792 29.686 -94.698 29.678 -94.598 29.671 -94.595 29.647 -94.687 29.607 -94.744 29.566 -94.830 29.483 -94.905 29.483 -94.896 29.491 -94.889 29.547 -94.807 29.587 -94.711 29.628 -94.625 29.661 -94.526 29.694 -94.438 29.719 -94.346 29.767 -94.262 29.790 -94.161 29.790 -94.063 29.798 -93.967 29.872 -94.026 29.930 -94.061 30.013 -94.008 30.096 -93.932 30.104 -93.907 30.021 -93.885 29.937 -93.958 29.872 -93.997 29.848 -93.883 29.872 -93.791 29.880 -93.695 29.880 -93.499 29.920 -93.471 30.003 -93.476 30.094 -93.462 30.110 -93.459 30.193 -93.451 30.110 -93.393 30.019 -93.359 29.953 -93.437 29.922 -93.456 29.897 -93.350 29.872 -93.236 29.841 -93.129 29.808 -93.022 29.750 -92.907 29.709 -92.798 29.694 -92.686 29.686 -92.586 29.661 -92.471 29.661 -92.373 29.701 -92.286 29.701 -92.179 29.734 -92.215 29.818 -92.220 29.901 -92.145 29.934 -92.047 29.941 -91.950 29.858 -91.975 29.866 -91.879 29.858 -91.770 29.775 -91.756 29.692 -91.667 29.667 -91.562 29.611 -91.448 29.694 -91.373 29.653 -91.380 29.570 -91.385 29.487 -91.293 29.396 -91.250 29.312 -91.218 29.328 -91.124 29.245 -91.015 29.270 -90.924 29.245 -90.819 29.260 -90.775 29.344 -90.771 29.427 -90.715 29.402 -90.610 29.386 -90.508 29.378 -90.408 29.295 -90.395 29.212 -90.372 29.227 -90.307 29.284 -90.224 29.324 -90.188 29.408 -90.210 29.498 -90.166 29.581 -90.267 29.665 -90.328 29.680 -90.305 29.632 -90.194 29.599 -90.128 29.574 -90.023 29.533 -89.913 29.442 -89.916 29.427 -89.805 29.361 -89.689 29.361 -89.591 29.278 -89.568 29.245 -89.461 29.162 -89.487 29.071 -89.540 29.046 -89.551 29.179 -89.392 29.105 -89.264 29.189 -89.269 29.229 -89.172 29.303 -89.164 29.344 -89.283 29.434 -89.307 29.434 -89.316 29.467 -89.432 29.498 -89.539 29.498 -89.646 29.581 -89.677 29.607 -89.732 29.690 -89.823 29.781 -89.779 29.773 -89.679 29.856 -89.701 29.905 -89.616 29.889 -89.505 29.972 -89.470 30.055 -89.488 30.112 -89.547 30.119 -89.648 30.112 -89.684 30.021 -89.700 29.988 -89.787 30.046 -89.905 30.112 -89.957 30.152 -89.873 30.210 -89.795 30.251 -89.771 30.210 -89.864 30.259 -89.969 30.259 -89.977 30.193 -90.052 30.185 -90.118 30.185 -90.127 30.177 -90.262 30.177 -90.408 30.251 -90.542 30.334 -90.504 30.407 -90.422 30.433 -90.413 30.489 -90.335 30.473 -90.222 30.425 -90.127 30.367 -90.008 30.326 -89.935 30.342 -89.902 30.284 -89.783 30.284 -89.735 30.268 -89.730 30.294 -89.640 30.324 -89.553 30.390 -89.478 30.431 -89.435 30.439 -89.447 30.439 -89.301 30.464 -89.212 30.487 -89.112 30.495 -89.016 30.503 -88.991 30.510 -89.022 30.526 -89.019 30.518 -88.968 30.444 -88.843 30.460 -88.741 30.483 -88.731 30.483 -88.721 30.417 -88.599 30.483 -88.536 30.491 -88.440 30.465 -88.333 30.499 -88.237 30.582 -88.239 30.665 -88.230 30.748 -88.202 30.796 -88.171 30.829 -88.174 30.796 -88.162 30.771 -88.144 30.764 -88.102 30.680 -88.063 30.597 -88.072 30.514 -88.052 30.431 -87.945 30.348 -87.984 30.355 -88.085 30.332 -87.979 30.332 -87.871 30.348 -87.778 30.396 -87.697 30.446 -87.616 30.503 -87.579 30.568 -87.563 30.510 -87.495 30.427 -87.564 30.394 -87.651 30.394 -87.552 30.409 -87.450 30.493 -87.392 30.516 -87.343 30.599 -87.304 30.607 -87.316 30.614 -87.319 30.638 -87.278 30.531 -87.241 30.622 -87.195 30.671 -87.173 30.678 -87.157 30.595 -87.167 30.539 -87.049 30.507 -87.136 30.499 -87.142 30.491 -87.178 30.475 -87.281 30.475 -87.182 30.483 -87.077 30.499 -86.985 30.499 -86.886 30.507 -86.781 30.507 -86.742 30.547 -86.658 30.605 -86.570 30.572 -86.460 30.580 -86.365 30.524 -86.288 30.483 -86.322 30.483 -86.489 30.491 -86.558 30.499 -86.588 30.499 -86.627 30.465 -86.517 30.450 -86.404 30.417 -86.295 30.334 -86.069 30.278 -85.951 30.286 -85.876 30.369 -85.982 30.377 -85.976 30.369 -85.875 30.377 -85.799 30.377 -85.701 30.344 -85.788 30.288 -85.835 30.222 -85.735 30.230 -85.630 30.146 -85.610 30.187 -85.732 30.104 -85.655 30.096 -85.643 30.096 -85.671 30.040 -85.553 29.957 -85.471 29.866 -85.438 29.783 -85.465 29.783 -85.408 29.798 -85.314 29.814 -85.210 29.822 -85.114 29.837 -85.109 29.845 -85.092 29.893 -85.006 29.852 -85.005 29.860 -84.909 29.908 -84.823 29.949 -84.726 29.997 -84.640 30.005 -84.544 30.089 -84.591 30.089 -84.514 30.146 -84.435 30.177 -84.347 30.177 -84.141 30.104 -84.018 30.089 -83.974 30.032 -83.856 29.949 -83.746 29.858 -83.714 29.775 -83.615 29.692 -83.537 29.609 -83.534 29.525 -83.426 29.434 -83.326 29.394 -83.306 29.310 -83.228 29.280 -83.122 29.264 -83.011 29.173 -82.931 29.090 -82.910 29.007 -82.851 28.924 -82.811 28.833 -82.807 28.750 -82.805 28.659 -82.809 28.576 -82.827 28.492 -82.854 28.409 -82.899 28.318 -82.915 28.235 -82.951 28.152 -82.949 28.069 -82.966 27.978 -83.000 27.962 -83.015 27.871 -82.964 27.788 -82.916 27.871 -82.946 27.788 -82.848 27.879 -82.794 27.962 -82.767 28.018 -82.878 28.102 -82.851 28.127 -82.858 28.053 -82.733 27.970 -82.703 28.026 -82.619 27.943 -82.571 27.860 -82.598 27.786 -82.677 27.703 -82.734 27.695 -82.741 27.612 -82.777 27.589 -82.869 27.506 -82.750 27.423 -82.721 27.331 -82.698 27.165 -82.618 27.074 -82.568 27.018 -82.536 26.935 -82.468 26.910 -82.364 26.993 -82.346 27.076 -82.415 27.036 -82.307 27.068 -82.218 26.985 -82.254 26.902 -82.224 26.811 -82.249 26.645 -82.208 26.645 -82.121 26.652 -82.115 26.726 -82.085 26.792 -82.004 26.807 -81.951 26.742 -82.032 26.658 -82.089 26.650 -82.114 26.643 -82.112 26.643 -82.121 26.618 -82.172 26.545 -82.047 26.453 -82.006 26.287 -81.984 26.204 -81.963 26.121 -81.886 26.065 -81.890 26.039 -81.787 26.008 -81.682 25.958 -81.572 25.875 -81.484 25.792 -81.426 25.709 -81.387 25.617 -81.356 25.534 -81.297 25.451 -81.209 25.410 -81.093 25.327 -81.081 25.368 -81.188 25.451 -81.276 25.368 -81.313 25.285 -81.283 25.237 -81.174 25.252 -81.081 25.285 -80.983 25.252 -80.878 25.267 -80.785 25.350 -80.708 25.302 -80.599 25.393 -80.544 25.476 -80.459 25.559 -80.488 25.643 -80.460 25.726 -80.453 25.809 -80.406 25.875 -80.345 25.958 -80.338 26.041 -80.281 26.132 -80.285 26.215 -80.278 26.306 -80.273 26.389 -80.254 26.639 -80.229 26.730 -80.212 26.804 -80.221 26.887 -80.223 26.977 -80.245 27.026 -80.275 27.041 -80.279 27.124 -80.281 27.216 -80.330 27.299 -80.407 27.299 -80.425 27.291 -80.451 27.307 -80.436 27.397 -80.431 27.481 -80.479 27.572 -80.510 27.655 -80.539 27.738 -80.559 27.821 -80.598 27.912 -80.638 27.995 -80.686 28.162 -80.765 28.253 -80.806 28.419 -80.885 28.467 -80.906 28.550 -80.936 28.808 -80.999 28.725 -80.951 28.684 -80.834 28.601 -80.757 28.518 -80.784 28.426 -80.789 28.343 -80.787 28.260 -80.775 28.169 -80.744 28.003 -80.647 27.962 -80.619 28.053 -80.659 28.136 -80.718 28.219 -80.747 28.303 -80.768 28.386 -80.770 28.469 -80.763 28.560 -80.708 28.643 -80.737 28.727 -80.785 28.810 -80.844 28.900 -80.905 28.984 -80.953 29.067 -81.012 29.125 -81.045 29.208 -81.093 29.291 -81.131 29.382 -81.172 29.549 -81.252 29.632 -81.282 29.723 -81.322 29.889 -81.382 29.972 -81.393 30.063 -81.430 30.096 -81.441 30.179 -81.459 30.262 -81.486 30.346 -81.523 30.437 -81.535 30.477 -81.530 30.568 -81.569 30.651 -81.654 30.734 -81.583 30.800 -81.653 30.891 -81.665 30.975 -81.665 31.058 -81.626 31.141 -81.644 31.224 -81.614 31.265 -81.520 31.331 -81.443 31.414 -81.558 31.446 -81.656 31.431 -81.552 31.423 -81.451 31.506 -81.497 31.474 -81.447 31.557 -81.387 31.640 -81.514 31.648 -81.408 31.688 -81.322 31.779 -81.304 31.746 -81.402 31.837 -81.441 31.822 -81.337 31.855 -81.249 31.938 -81.315 31.961 -81.215 31.976 -81.121 32.060 -81.121 32.075 -81.027 32.108 -81.066 32.191 -81.015 32.275 -80.973 32.191 -80.994 32.232 -80.909 32.315 -80.858 32.388 -80.960 32.472 -80.978 32.555 -81.006 32.464 -80.948 32.381 -80.863 32.472 -80.866 32.381 -80.826 32.365 -80.722 32.431 -80.635 32.424 -80.732 32.482 -80.652 32.530 -80.767 32.545 -80.673 32.570 -80.780 32.603 -80.692 32.555 -80.577 32.578 -80.485 32.661 -80.314 32.687 -80.224 32.687 -80.184 32.710 -80.182 32.717 -80.185 32.741 -80.094 32.824 -80.081 32.915 -80.130 32.922 -80.123 32.839 -80.047 32.862 -79.956 32.928 -79.868 32.969 -79.782 33.052 -79.782 33.101 -79.698 33.075 -79.591 33.159 -79.509 33.217 -79.519 33.232 -79.424 33.315 -79.424 33.398 -79.470 33.481 -79.397 33.398 -79.449 33.315 -79.382 33.398 -79.340 33.489 -79.312 33.563 -79.236 33.646 -79.164 33.720 -79.088 33.786 -79.010 33.834 -78.926 33.882 -78.842 33.907 -78.750 33.938 -78.742 33.931 -78.721 33.955 -78.620 33.963 -78.523 33.971 -78.426 33.971 -78.326 33.948 -78.210 34.031 -78.137 34.114 -78.115 34.198 -78.114 34.114 -78.087 34.031 -78.079 34.122 -78.050 34.205 -78.037 34.371 -77.891 34.445 -77.815 34.493 -77.730 34.534 -77.644 34.567 -77.554 34.658 -77.593 34.741 -77.550 34.658 -77.523 34.642 -77.418 34.700 -77.337 34.791 -77.287 34.751 -77.164 34.776 -77.072 34.783 -76.975 34.776 -76.872 34.799 -76.908 34.824 -76.807 34.783 -76.694 34.840 -76.612 34.931 -76.552 34.989 -76.470 35.045 -76.442 35.045 -76.470 34.996 -76.561 35.045 -76.561 35.045 -76.680 35.029 -76.774 34.971 -76.854 34.996 -76.971 35.029 -77.083 35.045 -77.099 35.136 -77.174 35.088 -77.055 35.047 -76.999 35.039 -76.896 35.047 -76.871 35.105 -76.784 35.161 -76.707 35.245 -76.748 35.278 -76.661 35.361 -76.703 35.394 -76.825 35.435 -76.941 35.483 -77.060 35.557 -77.189 35.507 -77.069 35.491 -76.963 35.476 -76.848 35.443 -76.734 35.526 -76.767 35.575 -76.676 35.491 -76.711 35.451 -76.586 35.451 -76.485 35.394 -76.363 35.386 -76.302 35.437 -76.212 35.521 -76.165 35.586 -76.090 35.678 -76.058 35.646 -75.936 35.738 -75.943 35.821 -75.908 35.905 -75.921 35.988 -75.982 35.930 -76.059 35.930 -76.160 35.839 -76.152 35.755 -76.160 35.707 -76.242 35.798 -76.207 35.881 -76.230 35.973 -76.198 36.046 -76.327 36.031 -76.421 35.990 -76.506 36.023 -76.628 35.990 -76.726 35.982 -76.823 35.990 -76.866 36.082 -76.883 36.165 -76.924 36.248 -76.938 36.339 -76.886 36.248 -76.908 36.165 -76.885 36.082 -76.782 36.056 -76.672 36.114 -76.594 36.138 -76.514 36.221 -76.626 36.180 -76.509 36.149 -76.397 36.233 -76.457 36.174 -76.325 36.207 -76.237 36.299 -76.322 36.233 -76.186 36.324 -76.142 36.233 -76.048 36.149 -76.016 36.241 -76.011 36.324 -76.043 36.407 -76.104 36.491 -76.176 36.582 -76.212 36.598 -76.208 36.639 -76.234 36.598 -76.199 36.598 -76.159 36.689 -76.166 36.598 -76.072 36.514 -76.049 36.431 -76.017 36.339 -76.000 36.256 -75.940 36.172 -75.917 36.082 -75.863 35.998 -75.812 35.915 -75.771 35.998 -75.784 36.082 -75.835 36.165 -75.895 36.248 -75.928 36.331 -75.969 36.423 -75.995 36.590 -76.041 36.689 -76.079 36.772 -76.121 36.864 -76.147 36.947 -76.180 36.962 -76.287 36.978 -76.394 36.993 -76.501 36.937 -76.507 36.896 -76.491 36.953 -76.614 36.904 -76.696 36.988 -76.679 37.079 -76.774 37.162 -76.846 37.228 -76.974 37.252 -77.093 37.335 -77.197 37.335 -77.298 37.343 -77.402 37.384 -77.437 37.360 -77.327 37.353 -77.222 37.294 -77.089 37.286 -76.985 37.271 -76.878 37.271 -76.849 37.188 -76.807 37.104 -76.694 37.013 -76.609 37.054 -76.524 37.137 -76.468 37.220 -76.529 37.271 -76.650 37.337 -76.786 37.428 -76.862 37.511 -76.944 37.428 -76.821 37.387 -76.796 37.314 -76.657 37.337 -76.565 37.428 -76.641 37.421 -76.537 37.428 -76.438 37.479 -76.439 37.562 -76.462 37.570 -76.567 37.661 -76.621 37.669 -76.726 37.752 -76.787 37.843 -76.912 37.927 -76.973 38.010 -77.065 38.094 -77.107 38.063 -77.086 37.980 -76.973 37.896 -76.912 37.830 -76.784 37.739 -76.720 37.690 -76.600 37.747 -76.520 37.830 -76.494 37.921 -76.429 37.946 -76.439 38.003 -76.562 38.051 -76.649 38.102 -76.709 38.193 -76.786 38.193 -76.887 38.209 -76.964 38.224 -77.072 38.232 -77.094 38.280 -77.132 38.364 -77.224 38.389 -77.345 38.374 -77.429 38.457 -77.521 38.449 -77.490 38.533 -77.482 38.573 -77.458 38.657 -77.421 38.665 -77.365 38.665 -77.346 38.690 -77.316 38.723 -77.310 38.764 -77.224 38.830 -77.222 38.870 -77.219 38.936 -77.245 38.903 -77.204 38.837 -77.206 38.754 -77.201 38.705 -77.284 38.649 -77.363 38.558 -77.438 38.474 -77.434 38.434 -77.316 38.474 -77.230 38.391 -77.148 38.325 -77.020 38.408 -77.043 38.408 -77.015 38.325 -76.991 38.284 -76.874 38.251 -76.759 38.211 -76.642 38.127 -76.559 38.211 -76.521 38.301 -76.585 38.385 -76.689 38.476 -76.815 38.560 -76.857 38.643 -76.862 38.717 -76.862 38.626 -76.855 38.542 -76.831 38.459 -76.748 38.376 -76.605 38.466 -76.591 38.550 -76.683 38.633 -76.697 38.717 -76.701 38.808 -76.737 38.892 -76.711 38.983 -76.728 39.066 -76.711 39.041 -76.590 39.124 -76.694 39.132 -76.595 39.216 -76.699 39.299 -76.761 39.258 -76.633 39.342 -76.657 39.350 -76.558 39.406 -76.552 39.439 -76.515 39.355 -76.463 39.439 -76.436 39.462 -76.436 39.487 -76.396 39.404 -76.404 39.437 -76.315 39.520 -76.298 39.594 -76.258 39.594 -76.156 39.602 -76.130 39.511 -76.184 39.560 -76.092 39.608 -76.009 39.524 -76.066 39.476 -76.149 39.410 -76.021 39.402 -76.130 39.402 -76.232 39.361 -76.318 39.278 -76.397 39.187 -76.451 39.103 -76.409 39.169 -76.332 39.086 -76.349 39.055 -76.337 39.021 -76.426 39.014 -76.525 38.931 -76.552 38.961 -76.462 38.977 -76.440 38.911 -76.312 38.828 -76.369 38.860 -76.483 38.770 -76.528 38.793 -76.435 38.709 -76.363 38.635 -76.232 38.610 -76.231 38.643 -76.346 38.651 -76.450 38.567 -76.378 38.494 -76.460 38.410 -76.455 38.354 -76.331 38.263 -76.237 38.354 -76.232 38.313 -76.167 38.387 -76.094 38.303 -76.102 38.213 -76.137 38.189 -76.017 38.106 -75.975 38.057 -76.057 37.974 -76.074 38.014 -75.979 38.014 -75.878 37.999 -75.853 37.958 -75.938 37.875 -75.906 37.841 -75.994 37.758 -75.990 37.710 -76.073 37.618 -76.138 37.535 -76.164 37.444 -76.169 37.360 -76.207 37.277 -76.203 37.203 -76.164 37.219 -76.069 37.302 -76.062 37.385 -76.045 37.469 -76.007 37.535 -75.931 37.560 -75.840 37.652 -75.805 37.735 -75.769 37.826 -75.715 37.909 -75.646 37.993 -75.629 38.067 -75.577 38.150 -75.539 38.216 -75.463 38.300 -75.394 38.350 -75.312 38.434 -75.325 38.490 -75.288 38.490 -75.269 38.406 -75.277 38.490 -75.250 38.573 -75.263 38.614 -75.381 38.670 -75.301 38.678 -75.344 38.762 -75.275 38.845 -75.376 38.929 -75.467 39.012 -75.500 39.103 -75.576 39.187 -75.599 39.270 -75.582 39.353 -75.633 39.445 -75.710 39.528 -75.761 39.695 -75.724 39.779 -75.655 39.845 -75.591 39.885 -75.504 39.901 -75.398 39.926 -75.327 39.893 -75.355 39.878 -75.460 39.847 -75.551 39.831 -75.573 39.747 -75.631 39.674 -75.714 39.582 -75.688 39.542 -75.722 39.375 -75.535 39.301 -75.404 39.245 -75.281 39.229 -75.163 39.146 -75.080 39.063 -75.139 38.979 -75.156 38.995 -75.060 39.020 -75.010 39.093 -74.937 39.185 -74.870 39.352 -74.731 39.375 -74.638 39.466 -74.633 39.550 -74.584 39.542 -74.479 39.625 -74.470 39.641 -74.458 39.689 -74.374 39.773 -74.347 39.864 -74.323 39.948 -74.274 40.031 -74.290 40.031 -74.218 39.864 -74.254 40.031 -74.199 40.115 -74.210 40.207 -74.181 40.291 -74.170 40.375 -74.150 40.460 -74.160 40.468 -74.266 40.475 -74.382 40.542 -74.454 40.626 -74.412 40.718 -74.352 40.734 -74.340 40.718 -74.314 40.751 -74.227 40.800 -74.221 40.884 -74.169 40.976 -74.130 41.017 -74.121 41.101 -74.131 41.193 -74.146 41.278 -74.204 41.334 -74.190 41.250 -74.141 41.166 -74.101 41.082 -74.091 40.990 -74.108 40.906 -74.141 40.822 -74.192 40.788 -74.205 40.837 -74.115 40.845 -74.017 40.937 -73.978 40.978 -73.885 41.027 -73.857 41.053 -73.766 41.084 -73.677 41.125 -73.584 41.158 -73.497 41.184 -73.396 41.207 -73.303 41.248 -73.209 41.315 -73.137 41.282 -73.019 41.274 -72.903 41.299 -72.811 41.291 -72.704 41.291 -72.601 41.325 -72.576 41.383 -72.593 41.325 -72.566 41.325 -72.463 41.332 -72.363 41.340 -72.264 41.364 -72.162 41.340 -72.070 41.356 -71.974 41.371 -71.878 41.397 -71.776 41.422 -71.685 41.514 -71.645 41.599 -71.664 41.683 -71.652 41.767 -71.620 41.683 -71.551 41.724 -71.466 41.765 -71.381 41.690 -71.429 41.599 -71.428 41.514 -71.429 41.522 -71.351 41.522 -71.247 41.556 -71.159 41.647 -71.129 41.647 -71.025 41.696 -70.944 41.745 -70.853 41.661 -70.866 41.569 -70.875 41.569 -70.771 41.602 -70.674 41.643 -70.589 41.651 -70.479 41.667 -70.383 41.675 -70.274 41.675 -70.223 41.749 -70.153 41.833 -70.200 41.917 -70.187 41.992 -70.230 42.076 -70.328 42.092 -70.439 42.007 -70.309 41.923 -70.291 41.923 -70.218 41.908 -70.221 41.867 -70.222 41.818 -70.219 41.776 -70.304 41.761 -70.401 41.720 -70.496 41.753 -70.614 41.794 -70.714 41.886 -70.746 41.970 -70.844 42.054 -70.882 42.139 -70.900 42.223 -70.948 42.279 -71.056 42.256 -71.149 42.340 -71.257 42.424 -71.191 42.473 -71.110 42.557 -71.056 42.581 -70.963 42.622 -70.878 42.706 -70.998 42.790 -71.016 42.831 -71.077 42.882 -71.039 43.050 -70.929 43.082 -70.953 43.115 -70.864 43.207 -70.813 43.291 -70.791 43.357 -70.717 43.398 -70.631 43.455 -70.553 43.540 -70.559 43.573 -70.460 43.657 -70.498 43.723 -70.414 43.798 -70.343 43.829 -70.243 43.862 -70.206 43.839 -70.206 43.831 -70.212 43.782 -70.209 43.749 -70.204 43.833 -70.150 43.749 -70.195 43.815 -70.110 43.731 -70.053 43.706 -70.041 43.790 -69.987 43.874 -70.005 43.966 -70.027 43.958 -70.065 44.043 -70.021 44.068 -69.971 43.983 -70.016 43.899 -69.997 43.815 -69.969 43.899 -69.965 43.966 -69.903 43.981 -69.891 43.966 -69.884 43.892 -69.860 43.966 -69.788 43.874 -69.779 43.843 -69.724 43.935 -69.672 44.019 -69.605 43.985 -69.476 44.001 -69.379 44.052 -69.297 44.136 -69.283 44.228 -69.241 44.302 -69.170 44.395 -69.179 44.461 -69.094 44.502 -69.008 44.568 -68.996 44.477 -68.974 44.393 -68.956 44.309 -68.899 44.267 -68.776 44.234 -68.732 44.318 -68.760 44.410 -68.769 44.402 -68.660 44.486 -68.666 44.402 -68.619 44.459 -68.539 44.518 -68.450 44.502 -68.338 44.334 -68.264 44.385 -68.181 44.477 -68.222 44.477 -68.117 44.551 -68.045 44.592 -67.949 44.500 -67.928 44.500 -67.908 44.525 -67.814 44.618 -67.762 44.610 -67.644 44.659 -67.560 44.659 -67.455 44.674 -67.347 44.741 -67.271 44.790 -67.178 44.874 -67.214 44.842 -67.306 44.935 -67.307 44.976 -67.241 45.061 -67.282 45.094 -67.308 45.162 -67.392 45.177 -67.432 45.126 -67.522 45.211 -67.615 45.297 -67.648 45.390 -67.620 45.475 -67.681 45.542 -67.609 45.576 -67.625 45.584 -67.690 45.600 -67.814 45.658 -67.948 45.743 -68.000 45.792 -67.963 45.885 -67.957 45.978 -67.984 46.149 -67.984 46.242 -67.989 46.327 -67.992 46.420 -67.996 46.506 -67.996 46.599 -68.001 46.684 -68.001 46.778 -68.018 46.863 -68.018 46.956 -68.023 47.041 -68.023 47.057 -68.041 47.142 -68.177 47.210 -68.254 47.303 -68.407 47.336 -68.531 47.269 -68.604 47.277 -68.724 47.244 -68.814 47.212 -68.915 47.196 -69.014 47.162 -69.113 47.178 -69.142 47.263 -69.269 47.338 -69.275 47.424 -69.338 47.439 -69.453 47.424 -69.465 47.356 -69.537 47.281 -69.616 47.205 -69.694 47.138 -69.766 47.063 -69.845 46.988 -69.923 46.912 -69.990 46.761 -70.147 46.694 -70.219 46.686 -70.224 46.601 -70.233 46.508 -70.249 46.422 -70.258 46.407 -70.269 46.349 -70.356 46.282 -70.428 46.197 -70.490 46.103 -70.462 46.080 -70.489 45.995 -70.497 45.909 -70.454 45.842 -70.525 45.792 -70.605 45.707 -70.656 45.665 -70.740 45.616 -70.821 45.540 -70.897 45.491 -70.914 45.398 -70.907 45.405 -71.017 45.321 -71.015 45.261 -71.090 45.346 -71.185 45.304 -71.269 45.271 -71.303 45.271 -71.419 45.278 -71.528 45.194 -71.578 45.100 -71.635 45.015 -71.662 45.015 -73.165 45.007 -73.266 45.007 -73.634 44.999 -73.745 44.999 -73.965 44.991 -74.077 44.991 -74.654 44.999 -74.700 44.999 -74.856 45.007 -74.966 44.991 -75.063 44.976 -75.171 44.944 -75.217 44.911 -75.316 44.870 -75.401 44.836 -75.490 44.788 -75.581 44.729 -75.658 44.680 -75.749 44.624 -75.827 44.565 -75.914 44.508 -75.990 44.408 -76.035 44.357 -76.125 44.300 -76.202 44.259 -76.296 44.234 -76.389 44.185 -76.480 44.144 -76.565 44.060 -76.514 44.093 -76.425 44.009 -76.425 44.009 -76.311 44.024 -76.277 43.958 -76.349 43.884 -76.418 43.800 -76.450 43.708 -76.434 43.624 -76.423 43.540 -76.486 43.555 -76.608 43.506 -76.689 43.491 -76.732 43.457 -76.820 43.408 -76.910 43.357 -76.990 43.334 -77.082 43.285 -77.163 43.309 -77.279 43.324 -77.401 43.316 -77.501 43.316 -77.605 43.293 -77.707 43.277 -77.804 43.361 -77.950 43.387 -78.077 43.402 -78.189 43.410 -78.297 43.402 -78.407 43.410 -78.525 43.418 -78.633 43.410 -78.734 43.395 -78.840 43.371 -78.933 43.363 -79.033 43.340 -79.135 43.314 -79.227 43.307 -79.284 43.215 -79.267 43.140 -79.280 43.132 -79.286 43.107 -79.159 43.066 -79.110 42.974 -79.124 42.890 -79.092 42.806 -79.111 42.772 -79.198 42.724 -79.278 42.649 -79.344 42.600 -79.433 42.559 -79.516 42.510 -79.606 42.411 -79.763 42.379 -79.851 42.328 -79.959 42.312 -79.979 42.279 -80.076 42.256 -80.168 42.223 -80.223 42.189 -80.310 42.197 -80.324 42.156 -80.407 42.115 -80.490 42.081 -80.586 42.058 -80.678 42.033 -80.747 42.009 -80.838 41.984 -80.929 41.958 -81.029 41.927 -81.117 41.902 -81.217 41.876 -81.307 41.845 -81.395 41.820 -81.485 41.786 -81.572 41.737 -81.650 41.688 -81.739 41.630 -81.812 41.581 -81.899 41.565 -81.995 41.558 -82.104 41.581 -82.219 41.565 -82.314 41.540 -82.414 41.506 -82.500 41.498 -82.599 41.457 -82.681 41.491 -82.802 41.532 -82.926 41.540 -83.043 41.498 -83.125 41.524 -83.242 41.558 -83.156 41.565 -83.057 41.581 -82.951 41.614 -83.082 41.599 -83.177 41.683 -83.312 41.706 -83.437 41.755 -83.566 41.770 -83.665 41.794 -83.677 41.886 -83.634 41.953 -83.566 41.994 -83.484 42.078 -83.424 42.162 -83.407 42.254 -83.383 42.338 -83.345 42.372 -83.302 42.372 -83.292 42.413 -83.210 42.446 -83.123 42.530 -83.107 42.622 -83.082 42.706 -83.044 42.747 -82.952 42.690 -82.871 42.616 -82.884 42.623 -82.817 42.683 -82.756 42.767 -82.727 42.951 -82.700 43.017 -82.652 43.066 -82.648 43.089 -82.670 43.173 -82.714 43.342 -82.760 43.434 -82.779 43.518 -82.782 43.602 -82.825 43.686 -82.840 43.778 -82.859 43.862 -82.874 43.954 -82.912 44.039 -82.976 44.105 -83.125 44.097 -83.225 44.056 -83.309 44.024 -83.501 43.950 -83.577 43.782 -83.698 43.757 -83.789 43.690 -83.858 43.665 -83.959 43.706 -84.085 43.706 -84.095 43.790 -84.180 43.882 -84.169 43.966 -84.140 44.041 -84.075 44.056 -83.979 44.097 -83.886 44.138 -83.803 44.230 -83.790 44.315 -83.743 44.338 -83.650 44.371 -83.553 44.455 -83.537 44.512 -83.537 44.604 -83.535 44.688 -83.506 44.780 -83.513 44.864 -83.516 44.948 -83.590 45.033 -83.656 45.108 -83.596 45.132 -83.494 45.217 -83.574 45.302 -83.595 45.388 -83.707 45.404 -83.822 45.453 -83.957 45.495 -84.087 45.529 -84.213 45.570 -84.344 45.663 -84.419 45.705 -84.550 45.697 -84.587 45.697 -84.692 45.782 -84.859 45.824 -84.990 45.798 -85.081 45.790 -85.192 45.705 -85.201 45.697 -85.226 45.637 -85.306 45.552 -85.306 45.459 -85.198 45.443 -85.115 45.409 -85.200 45.409 -85.220 45.417 -85.330 45.392 -85.420 45.350 -85.510 45.293 -85.581 45.207 -85.581 45.122 -85.559 45.029 -85.573 44.954 -85.605 44.870 -85.665 44.821 -85.753 44.913 -85.697 44.997 -85.714 44.913 -85.761 44.864 -85.840 44.948 -85.802 45.033 -85.821 45.067 -85.800 45.152 -85.800 45.237 -85.778 45.195 -85.858 45.120 -85.918 45.035 -85.981 44.993 -86.049 44.985 -86.160 44.960 -86.252 44.792 -86.285 44.776 -86.381 44.717 -86.464 44.633 -86.428 44.541 -86.461 44.457 -86.466 44.373 -86.504 44.205 -86.622 44.148 -86.705 44.064 -86.720 43.980 -86.684 43.896 -86.658 43.804 -86.680 43.737 -86.749 43.653 -86.764 43.569 -86.718 43.477 -86.678 43.393 -86.632 43.309 -86.483 43.293 -86.515 43.209 -86.530 43.117 -86.490 43.050 -86.454 42.798 -86.441 42.714 -86.468 42.622 -86.469 42.530 -86.490 42.446 -86.526 42.361 -86.572 42.277 -86.631 42.211 -86.698 42.119 -86.753 42.035 -86.789 41.960 -86.852 41.894 -86.929 41.845 -87.006 41.820 -87.053 41.778 -87.144 41.745 -87.230 41.722 -87.329 41.688 -87.415 41.688 -87.518 41.712 -87.634 41.778 -87.740 41.863 -87.805 41.947 -87.832 42.031 -87.877 42.115 -87.883 42.207 -87.983 42.291 -88.039 42.375 -88.044 42.467 -88.035 42.551 -88.030 42.677 -88.038 42.761 -88.002 42.845 -87.997 42.929 -88.063 43.013 -88.068 43.105 -88.118 43.273 -88.129 43.357 -88.114 43.449 -88.083 43.524 -88.019 43.616 -88.019 43.690 -87.956 43.782 -87.924 43.866 -87.941 43.950 -87.946 44.035 -87.910 44.126 -87.867 44.183 -87.785 44.242 -87.712 44.334 -87.744 44.418 -87.729 44.502 -87.702 44.594 -87.670 44.669 -87.606 44.760 -87.551 44.844 -87.515 44.929 -87.644 44.896 -87.731 44.872 -87.824 44.797 -87.897 44.713 -87.943 44.680 -88.030 44.624 -88.113 44.598 -88.204 44.682 -88.222 44.766 -88.186 44.840 -88.112 44.907 -88.043 44.991 -88.007 45.007 -87.901 45.041 -87.817 45.057 -87.817 45.150 -87.791 45.183 -87.792 45.318 -87.665 45.394 -87.606 45.461 -87.542 45.554 -87.493 45.630 -87.425 45.705 -87.366 45.763 -87.296 45.848 -87.265 45.897 -87.179 45.812 -87.188 45.719 -87.160 45.752 -87.075 45.905 -86.958 45.897 -86.847 45.905 -86.746 45.820 -86.799 45.752 -86.864 45.667 -86.873 45.701 -86.788 45.776 -86.728 45.810 -86.633 45.844 -86.548 45.893 -86.537 45.969 -86.477 45.995 -86.387 46.002 -86.286 45.969 -86.149 46.010 -86.069 46.010 -85.953 46.018 -85.842 46.085 -85.777 46.127 -85.696 46.127 -85.581 46.102 -85.449 46.078 -85.329 46.044 -85.202 45.995 -85.143 45.909 -85.029 45.893 -84.904 45.978 -84.936 46.072 -84.898 46.072 -84.792 46.048 -84.662 46.040 -84.552 46.024 -84.436 46.016 -84.315 46.000 -84.200 46.050 -84.124 46.135 -84.259 46.220 -84.351 46.244 -84.472 46.286 -84.391 46.456 -84.474 46.542 -84.587 46.542 -84.597 46.518 -84.657 46.468 -84.733 46.536 -84.880 46.502 -84.976 46.510 -85.097 46.525 -85.213 46.593 -85.233 46.678 -85.244 46.772 -85.226 46.813 -85.222 46.805 -85.311 46.805 -85.427 46.779 -85.518 46.754 -85.609 46.722 -85.696 46.722 -85.812 46.730 -85.923 46.730 -86.040 46.738 -86.151 46.712 -86.242 46.720 -86.363 46.686 -86.449 46.645 -86.539 46.611 -86.625 46.577 -86.710 46.527 -86.786 46.512 -86.828 46.496 -86.881 46.529 -87.008 46.504 -87.098 46.579 -87.251 46.546 -87.346 46.546 -87.463 46.613 -87.611 46.698 -87.716 46.791 -87.816 46.877 -87.921 46.944 -88.070 46.952 -88.192 46.960 -88.313 46.944 -88.410 46.894 -88.485 46.980 -88.445 46.894 -88.604 46.827 -88.678 46.920 -88.695 47.006 -88.664 47.091 -88.738 47.184 -88.859 47.269 -88.893 47.220 -88.969 47.170 -89.053 47.120 -89.128 47.053 -89.193 47.037 -89.299 47.012 -89.390 46.962 -89.475 46.920 -89.565 46.894 -89.655 46.894 -89.771 46.886 -89.873 46.886 -89.979 46.853 -90.074 46.752 -90.222 46.736 -90.255 46.710 -90.354 46.694 -90.451 46.669 -90.550 46.635 -90.635 46.619 -90.667 46.652 -90.795 46.728 -90.950 46.678 -91.034 46.686 -91.146 46.761 -91.078 46.847 -91.081 46.914 -91.018 46.999 -91.031 46.991 -91.133 46.976 -91.239 46.942 -91.323 46.942 -91.430 46.892 -91.515 46.859 -91.599 46.835 -91.690 46.819 -91.787 46.795 -91.887 46.779 -91.983 46.756 -92.074 46.748 -92.176 46.833 -92.348 46.849 -92.338 46.898 -92.265 46.940 -92.175 46.982 -92.096 47.023 -92.006 47.065 -91.917 47.166 -91.769 47.208 -91.679 47.257 -91.605 47.315 -91.526 47.374 -91.458 47.441 -91.395 47.491 -91.310 47.533 -91.230 47.574 -91.140 47.626 -91.067 47.675 -90.982 47.699 -90.890 47.733 -90.794 47.767 -90.709 47.783 -90.613 47.808 -90.512 47.824 -90.415 47.850 -90.325 47.876 -90.224 47.900 -90.165 47.925 -90.064 47.959 -89.979 48.001 -89.898 48.032 -89.801 48.040 -89.869 48.056 -89.996 48.030 -90.086 48.064 -90.226 48.132 -90.279 48.147 -90.397 48.139 -90.499 48.132 -90.612 48.132 -90.719 48.139 -90.842 48.124 -90.939 48.209 -91.047 48.240 -91.057 48.240 -91.047 48.257 -91.048 48.248 -91.150 48.215 -91.245 48.215 -91.255 48.181 -91.341 48.139 -91.430 48.106 -91.516 48.090 -91.613 48.082 -91.660 48.082 -91.670 48.090 -91.783 48.132 -91.863 48.147 -91.915 48.207 -91.935 48.231 -92.068 48.316 -92.219 48.383 -92.381 48.367 -92.478 48.282 -92.497 48.274 -92.522 48.349 -92.657 48.435 -92.661 48.469 -92.800 48.554 -92.827 48.577 -92.960 48.611 -93.091 48.645 -93.231 48.645 -93.338 48.661 -93.467 48.629 -93.554 48.637 -93.579 48.637 -93.589 48.629 -93.604 48.570 -93.682 48.562 -93.784 48.546 -93.881 48.562 -94.009 48.647 -94.047 48.663 -94.165 48.663 -94.283 48.671 -94.396 48.728 -94.543 48.720 -94.646 48.736 -94.774 48.786 -94.870 48.879 -94.903 48.936 -94.900 49.021 -94.927 49.107 -94.965 49.200 -94.998 49.285 -95.014 49.371 -95.115 49.371 -95.266 49.386 -95.330 49.379 -95.335 49.277 -95.341 49.184 -95.340 49.117 -95.346 49.016 -95.340 49.016 -122.974 48.940 -122.961 48.855 -122.930 48.770 -122.837 48.762 -122.723 48.677 -122.722 48.592 -122.659 48.524 -122.719 48.491 -122.798 48.516 -122.927 48.423 -122.868 48.415 -122.840 48.415 -122.811 48.407 -122.804 48.391 -122.728 48.334 -122.626 48.282 -122.624 48.189 -122.597 48.104 -122.554 48.019 -122.451 47.985 -122.530 47.900 -122.575 47.824 -122.618 47.731 -122.633 47.646 -122.570 47.579 -122.620 47.493 -122.590 47.408 -122.547 47.374 -122.625 47.332 -122.696 47.299 -122.775 47.231 -122.834 47.172 -122.891 47.222 -123.049 47.180 -123.121 47.095 -123.110 47.180 -123.163 47.138 -123.234 47.205 -123.185 47.198 -123.285 47.222 -123.199 47.307 -123.154 47.323 -123.138 47.356 -123.092 47.388 -123.013 47.303 -123.047 47.218 -122.984 47.388 -122.938 47.414 -122.853 47.329 -122.875 47.354 -122.789 47.430 -122.769 47.515 -122.758 47.600 -122.820 47.576 -122.907 47.662 -122.917 47.695 -122.839 47.781 -122.882 47.789 -122.782 47.846 -122.714 47.939 -122.803 47.882 -122.871 47.824 -122.929 47.757 -122.979 47.699 -123.047 47.673 -123.132 47.624 -123.206 47.564 -123.262 47.515 -123.295 47.430 -123.242 47.463 -123.164 47.489 -123.079 47.448 -123.150 47.414 -123.228 47.456 -123.371 47.590 -123.272 47.648 -123.214 47.699 -123.141 47.774 -123.098 47.816 -123.027 47.731 -123.039 47.806 -122.976 47.874 -122.927 47.923 -122.852 48.008 -122.905 48.094 -122.988 48.179 -123.018 48.137 -123.100 48.052 -123.079 48.145 -123.190 48.104 -123.261 48.189 -123.409 48.155 -123.488 48.155 -123.595 48.171 -123.716 48.179 -123.840 48.195 -123.962 48.195 -124.079 48.211 -124.200 48.268 -124.368 48.294 -124.497 48.336 -124.641 48.403 -124.807 48.419 -124.939 48.351 -124.880 48.266 -124.913 48.173 -124.927 48.088 -124.905 47.995 -124.867 47.909 -124.783 47.816 -124.682 47.731 -124.609 47.646 -124.577 47.561 -124.556 47.475 -124.545 47.382 -124.484 47.358 -124.483 47.265 -124.413 47.095 -124.373 47.001 -124.335 47.087 -124.324 47.012 -124.143 47.003 -124.029 46.995 -124.052 46.972 -124.148 46.946 -124.233 46.938 -124.342 46.853 -124.312 46.767 -124.258 46.767 -124.132 46.718 -123.983 46.734 -124.103 46.649 -124.137 46.555 -124.118 46.470 -124.129 46.437 -124.207 46.529 -124.235 46.615 -124.266 46.529 -124.254 46.444 -124.255 46.351 -124.218 46.293 -124.053 46.325 -123.974 46.317 -123.861 46.310 -123.748 46.284 -123.610 46.199 -123.464 46.214 -123.393 46.173 -123.464 46.207 -123.608 46.256 -123.756 46.230 -123.841 46.256 -123.969 46.207 -124.043 46.214 -124.165 46.129 -124.122 46.036 -124.105 45.976 -124.170 45.891 -124.139 45.806 -124.160 45.713 -124.080 45.628 -124.113 45.534 -124.025 45.527 -124.133 45.356 -124.114 45.263 -124.118 45.177 -124.119 45.092 -124.152 45.007 -124.154 44.923 -124.182 44.831 -124.217 44.747 -124.215 44.663 -124.170 44.614 -124.238 44.529 -124.257 44.438 -124.248 44.346 -124.283 44.261 -124.281 44.169 -124.304 44.085 -124.311 43.993 -124.314 43.909 -124.343 43.825 -124.362 43.741 -124.359 43.767 -124.337 43.759 -124.270 43.743 -124.363 43.709 -124.398 43.625 -124.427 43.534 -124.462 43.449 -124.481 43.499 -124.414 43.406 -124.374 43.422 -124.490 43.338 -124.508 43.395 -124.522 43.328 -124.586 43.236 -124.599 43.152 -124.627 43.060 -124.650 42.986 -124.698 42.901 -124.739 42.817 -124.716 42.733 -124.643 42.649 -124.608 42.557 -124.622 42.465 -124.625 42.391 -124.639 42.299 -124.611 42.215 -124.567 42.131 -124.504 42.046 -124.400 42.021 -124.391 41.929 -124.394 41.845 -124.434 41.761 -124.330 41.677 -124.309 41.593 -124.255 41.518 -124.240 41.434 -124.238 41.350 -124.266 41.258 -124.279 41.174 -124.320 41.090 -124.276 41.006 -124.283 40.921 -124.311 40.829 -124.346 40.863 -124.258 40.822 -124.340 40.771 -124.414 40.686 -124.443 40.645 -124.471 40.561 -124.500 40.470 -124.503 40.385 -124.460 40.301 -124.447 40.209 -124.310 40.125 -124.176 40.041 -124.095 40.025 -124.074 39.942 -124.000 39.891 -123.960 39.808 -123.937 39.724 -123.895 39.641 -123.894 39.550 -123.908 39.466 -123.928 39.383 -123.927 39.299 -123.894 39.208 -123.848 39.124 -123.826 39.033 -123.829 38.950 -123.819 38.866 -123.718 38.783 -123.608 38.699 -123.548 38.608 -123.452 38.525 -123.300 38.442 -123.231 38.358 -123.199 ; #766 9 47.249 -123.003 47.343 -123.021 47.334 -123.066 ; #767 9 55.997 -131.677 56.022 -131.617 56.022 -131.638 55.989 -131.711 ; #768 9 58.362 -134.687 58.370 -134.708 58.370 -134.730 ; #769 9 58.370 -134.733 58.379 -134.790 58.354 -134.885 58.257 -134.747 58.257 -134.620 58.283 -134.538 58.362 -134.687 58.370 -134.730 ; #770 9 48.425 -122.739 48.433 -122.746 48.433 -122.775 ; #771 9 48.437 -122.781 48.385 -122.845 48.318 -122.905 48.233 -122.874 48.147 -122.781 48.062 -122.719 47.969 -122.587 48.010 -122.505 48.096 -122.588 48.112 -122.709 48.205 -122.736 48.290 -122.839 48.349 -122.782 48.349 -122.675 48.425 -122.739 48.433 -122.775 ; #772 9 27.610 -97.383 27.684 -97.327 27.775 -97.277 27.858 -97.244 27.775 -97.306 27.684 -97.377 27.517 -97.466 27.434 -97.498 27.351 -97.483 27.434 -97.460 27.517 -97.427 27.608 -97.385 ; #773 9 28.251 -96.905 28.193 -96.888 28.251 -96.807 28.349 -96.640 28.432 -96.556 28.392 -96.642 28.343 -96.736 28.295 -96.820 28.255 -96.906 ; #774 9 29.355 -94.979 29.307 -95.033 29.251 -95.125 29.177 -95.202 29.276 -95.034 29.334 -94.943 29.400 -94.875 29.367 -94.964 29.359 -94.980 ; #775 9 29.622 -91.817 29.638 -91.821 29.686 -91.933 29.678 -92.029 29.630 -92.122 29.581 -92.011 29.549 -91.895 ; #776 9 29.297 -91.257 29.388 -91.264 29.404 -91.366 29.320 -91.382 29.289 -91.275 29.297 -91.259 ; #777 9 54.449 11.103 54.441 11.114 54.449 11.226 54.449 11.302 54.536 11.227 54.552 11.138 54.536 11.025 ; #778 9 29.837 -85.465 29.920 -85.469 29.837 -85.486 29.746 -85.453 29.746 -85.414 ; #779 9 29.680 -85.173 29.665 -85.071 29.705 -84.983 29.736 -84.884 29.794 -84.801 29.754 -84.889 29.721 -84.987 29.673 -85.073 29.688 -85.175 ; #780 9 26.861 -82.389 26.778 -82.377 26.861 -82.379 ; #781 9 26.604 -82.313 26.521 -82.275 26.513 -82.175 26.579 -82.289 ; #782 9 26.564 -82.206 26.564 -82.188 26.647 -82.208 26.738 -82.278 26.654 -82.240 26.564 -82.208 ; #783 9 26.606 -82.053 26.614 -82.055 26.606 -82.063 ; #784 9 26.612 -82.055 26.620 -82.029 26.703 -81.973 26.769 -81.892 26.753 -81.945 26.688 -82.026 26.614 -82.055 ; #785 9 1.660 -78.985 1.569 -78.908 1.513 -78.861 1.430 -78.765 1.347 -78.688 1.339 -78.679 1.347 -78.642 1.281 -78.614 1.273 -78.520 1.190 -78.443 1.124 -78.347 1.068 -78.251 1.002 -78.155 0.987 -78.051 0.961 -77.967 0.896 -77.871 0.927 -77.769 0.896 -77.702 0.812 -77.691 0.772 -77.624 0.747 -77.521 0.664 -77.493 0.581 -77.482 0.489 -77.462 0.449 -77.358 0.441 -77.283 0.441 -77.180 0.449 -77.125 0.383 -77.029 0.368 -76.965 0.335 -76.870 0.327 -76.767 0.350 -76.673 0.319 -76.578 0.335 -76.475 0.342 -76.449 0.441 -76.460 0.482 -76.461 0.489 -76.358 0.474 -76.263 0.466 -76.169 0.400 -76.073 0.310 -76.016 0.226 -75.911 0.211 -75.893 0.128 -75.788 0.120 -75.685 0.105 -75.590 0.097 -75.581 0.031 -75.485 0.006 -75.381 -0.027 -75.335 0.064 -75.253 0.015 -75.148 -0.025 -75.054 -0.098 -74.953 -0.106 -74.850 -0.190 -74.777 -0.281 -74.714 -0.321 -74.612 -0.404 -74.548 -0.437 -74.454 -0.478 -74.437 -0.561 -74.422 -0.660 -74.415 -0.743 -74.352 -0.826 -74.354 -0.917 -74.310 -0.950 -74.199 -0.934 -74.095 -1.025 -74.080 -1.058 -73.986 -1.141 -73.922 -1.182 -73.829 -1.182 -73.725 -1.265 -73.633 -1.356 -73.635 -1.447 -73.563 -1.530 -73.565 -1.613 -73.584 -1.697 -73.502 -1.755 -73.401 -1.739 -73.306 -1.805 -73.213 -1.896 -73.178 -1.979 -73.162 -2.070 -73.156 -2.161 -73.213 -2.252 -73.169 -2.267 -73.075 -2.358 -72.982 -2.374 -72.888 -2.341 -72.793 -2.325 -72.690 -2.333 -72.596 -2.325 -72.492 -2.318 -72.465 -2.376 -72.364 -2.343 -72.269 -2.310 -72.173 -2.262 -72.069 -2.269 -72.023 -2.196 -71.918 -2.113 -71.870 -2.056 -71.814 -2.097 -71.721 -2.130 -71.618 -2.228 -71.574 -2.236 -71.462 -2.252 -71.368 -2.260 -71.265 -2.194 -71.161 -2.111 -71.055 -2.119 -70.961 -2.184 -70.860 -2.240 -70.758 -2.339 -70.705 -2.346 -70.611 -2.403 -70.509 -2.380 -70.405 -2.463 -70.312 -2.546 -70.251 -2.612 -70.158 -2.619 -70.149 -2.702 -70.206 -2.794 -70.263 -2.877 -70.320 -2.967 -70.377 -3.059 -70.425 -3.150 -70.493 -3.240 -70.541 -3.331 -70.609 -3.422 -70.657 -3.513 -70.714 -3.596 -70.771 -3.670 -70.764 -3.703 -70.701 -3.736 -70.636 -3.710 -70.541 -3.670 -70.436 -3.736 -70.343 -3.819 -70.262 -3.902 -70.237 -3.993 -70.156 -4.041 -70.093 -4.115 -70.049 -4.090 -70.039 -4.006 -70.020 -3.915 -70.000 -3.832 -69.990 -3.741 -69.970 -3.650 -69.960 -3.567 -69.940 -3.477 -69.929 -3.385 -69.918 -3.294 -69.899 -3.212 -69.888 -3.120 -69.868 -3.029 -69.857 -2.939 -69.847 -2.855 -69.827 -2.764 -69.817 -2.757 -69.816 -2.674 -69.797 -2.583 -69.786 -2.491 -69.767 -2.401 -69.756 -2.318 -69.736 -2.227 -69.725 -2.143 -69.706 -2.053 -69.695 -1.962 -69.676 -1.878 -69.665 -1.788 -69.645 -1.697 -69.635 -1.605 -69.615 -1.522 -69.605 -1.432 -69.585 -1.416 -69.584 -1.333 -69.574 -1.308 -69.564 -1.225 -69.507 -1.043 -69.521 -0.977 -69.566 -0.911 -69.565 -0.828 -69.637 -0.745 -69.682 -0.654 -69.726 -0.570 -69.706 -0.488 -69.713 -0.404 -69.729 -0.356 -69.822 -0.282 -69.924 -0.217 -70.016 -0.134 -70.109 -0.126 -70.109 -0.042 -70.161 0.107 -70.163 0.190 -70.156 0.545 -70.164 0.629 -70.157 0.694 -70.122 0.702 -70.018 0.702 -69.924 0.758 -69.831 0.743 -69.728 0.816 -69.635 0.809 -69.540 0.752 -69.445 0.720 -69.350 0.720 -69.332 0.803 -69.279 0.886 -69.281 0.969 -69.265 1.136 -69.400 1.161 -69.495 1.161 -69.787 1.192 -69.891 1.161 -69.974 1.252 -69.967 1.807 -69.980 1.823 -69.886 1.830 -69.782 1.879 -69.689 1.853 -69.594 1.823 -69.510 1.823 -68.379 1.906 -68.364 1.989 -68.375 2.072 -68.339 2.047 -68.235 1.956 -68.207 1.873 -68.159 1.840 -68.064 1.873 -67.961 1.956 -67.880 2.047 -67.816 2.130 -67.743 2.203 -67.650 2.227 -67.556 2.144 -67.460 2.060 -67.421 1.977 -67.355 1.886 -67.298 1.803 -67.250 1.720 -67.223 1.637 -67.212 1.554 -67.210 1.471 -67.226 1.379 -67.233 1.296 -67.231 1.288 -67.136 1.312 -67.034 1.312 -67.016 1.403 -67.035 1.486 -67.046 1.569 -67.074 1.652 -67.113 1.743 -67.124 1.991 -67.213 2.074 -67.280 2.107 -67.264 2.190 -67.266 2.281 -67.333 2.364 -67.361 2.447 -67.326 2.530 -67.422 2.614 -67.507 2.697 -67.584 2.763 -67.680 2.854 -67.728 2.884 -67.823 2.910 -67.927 2.877 -67.981 2.960 -67.974 3.059 -67.864 3.157 -67.763 3.256 -67.653 3.339 -67.572 3.339 -67.525 3.430 -67.462 3.513 -67.437 3.587 -67.533 3.670 -67.561 3.753 -67.609 3.811 -67.705 3.894 -67.773 3.977 -67.811 4.069 -67.831 4.125 -67.841 4.157 -67.860 4.240 -67.916 4.324 -67.935 4.415 -67.912 4.506 -67.914 4.589 -67.990 4.672 -67.974 4.763 -67.968 4.846 -67.943 4.929 -67.945 5.013 -67.938 5.069 -67.923 5.134 -67.918 5.218 -67.948 5.258 -67.933 5.341 -67.963 5.425 -67.949 5.433 -67.941 5.506 -67.851 5.589 -67.760 5.672 -67.764 5.755 -67.777 5.847 -67.756 5.929 -67.685 6.012 -67.605 6.096 -67.563 6.179 -67.622 6.262 -67.589 6.270 -67.627 6.336 -67.725 6.359 -67.821 6.367 -67.916 6.342 -68.017 6.276 -68.109 6.276 -68.203 6.283 -68.307 6.251 -68.400 6.243 -68.494 6.251 -68.598 6.225 -68.692 6.202 -68.785 6.233 -68.881 6.249 -68.985 6.257 -69.080 6.272 -69.175 6.223 -69.267 6.150 -69.367 6.216 -69.465 6.183 -69.566 6.266 -69.634 6.291 -69.654 6.390 -69.733 6.481 -69.804 6.564 -69.863 6.655 -69.942 6.738 -70.013 6.829 -70.082 6.885 -70.131 6.984 -70.202 7.032 -70.250 7.032 -70.259 7.024 -70.353 6.999 -70.446 7.048 -70.552 7.081 -70.649 7.129 -70.746 7.145 -70.850 7.137 -70.944 7.088 -71.045 7.040 -71.137 7.048 -71.241 7.040 -71.344 7.073 -71.449 7.088 -71.545 7.073 -71.647 7.113 -71.753 7.088 -71.855 7.040 -71.947 7.065 -72.052 7.065 -72.069 7.113 -72.175 7.113 -72.184 7.197 -72.235 7.288 -72.277 7.312 -72.287 7.396 -72.273 7.444 -72.380 7.452 -72.475 7.460 -72.521 7.543 -72.592 7.626 -72.579 7.709 -72.592 7.800 -72.588 7.858 -72.564 7.941 -72.569 8.033 -72.547 8.098 -72.456 8.181 -72.460 8.264 -72.491 8.355 -72.496 8.439 -72.527 8.439 -72.544 8.529 -72.633 8.613 -72.713 8.678 -72.771 8.686 -72.780 8.770 -72.793 8.860 -72.816 9.027 -72.862 9.118 -72.884 9.126 -72.894 9.150 -72.869 9.184 -72.974 9.176 -73.069 9.259 -73.073 9.350 -73.104 9.284 -73.195 9.228 -73.296 9.220 -73.390 9.220 -73.474 9.303 -73.412 9.387 -73.379 9.470 -73.320 9.553 -73.278 9.644 -73.188 9.727 -73.155 9.810 -73.105 9.893 -73.063 9.976 -73.076 10.042 -73.072 10.126 -73.053 10.217 -73.035 10.307 -73.034 10.390 -73.024 10.464 -73.022 10.555 -72.966 10.638 -72.927 10.721 -72.869 10.804 -72.830 10.896 -72.792 10.979 -72.704 11.069 -72.666 11.153 -72.618 11.186 -72.526 11.201 -72.424 11.292 -72.338 11.383 -72.290 11.424 -72.267 11.515 -72.220 11.681 -72.123 11.714 -72.030 11.729 -71.919 11.770 -71.828 11.795 -71.735 11.818 -71.625 11.851 -71.533 11.884 -71.469 11.940 -71.436 11.998 -71.347 12.072 -71.258 12.155 -71.275 12.246 -71.320 12.329 -71.365 12.369 -71.415 12.403 -71.513 12.443 -71.612 12.474 -71.710 12.426 -71.809 12.369 -71.899 12.385 -71.995 12.312 -72.093 12.228 -72.039 12.188 -72.139 12.271 -72.100 12.286 -72.119 12.271 -72.213 12.248 -72.315 12.164 -72.281 12.081 -72.311 11.998 -72.350 11.907 -72.408 11.857 -72.507 11.816 -72.598 11.793 -72.700 11.752 -72.792 11.737 -72.874 11.737 -72.883 11.671 -72.972 11.605 -73.041 11.565 -73.104 11.517 -73.194 11.451 -73.292 11.360 -73.379 11.319 -73.470 11.312 -73.573 11.312 -73.867 11.319 -73.962 11.352 -74.060 11.393 -74.168 11.368 -74.260 11.302 -74.349 11.219 -74.359 11.135 -74.351 11.045 -74.389 11.037 -74.398 10.963 -74.418 10.938 -74.442 10.855 -74.471 10.781 -74.560 10.814 -74.658 10.905 -74.721 10.930 -74.620 11.013 -74.619 11.013 -74.506 11.021 -74.489 11.029 -74.585 11.062 -74.692 11.095 -74.790 11.128 -74.887 11.159 -74.985 11.103 -75.055 11.019 -75.131 10.928 -75.178 10.896 -75.269 10.840 -75.359 10.789 -75.372 10.749 -75.369 10.741 -75.452 10.685 -75.541 10.601 -75.628 10.518 -75.621 10.435 -75.630 10.352 -75.623 10.311 -75.714 10.228 -75.744 10.221 -75.648 10.137 -75.687 10.129 -75.686 10.046 -75.687 10.006 -75.692 9.922 -75.734 9.839 -75.747 9.756 -75.797 9.683 -75.689 9.592 -75.693 9.508 -75.735 9.478 -75.828 9.493 -75.924 9.478 -76.018 9.412 -76.117 9.329 -76.207 9.245 -76.287 9.162 -76.319 9.079 -76.361 8.988 -76.431 8.963 -76.533 8.922 -76.540 8.839 -76.639 8.806 -76.732 8.723 -76.822 8.700 -76.915 8.652 -77.007 8.568 -76.965 8.485 -76.905 8.402 -76.874 8.319 -76.887 8.236 -76.865 8.152 -76.851 8.119 -76.841 8.036 -76.845 7.971 -76.936 8.029 -77.043 8.112 -76.973 8.195 -76.951 8.226 -77.047 8.309 -77.098 8.324 -77.154 8.407 -77.213 8.491 -77.285 8.557 -77.383 8.564 -77.392 8.648 -77.414 8.731 -77.474 8.648 -77.525 8.622 -77.541 8.539 -77.582 8.456 -77.483 8.373 -77.469 8.206 -77.348 8.116 -77.316 8.033 -77.294 7.967 -77.385 7.893 -77.436 7.810 -77.458 7.794 -77.439 7.711 -77.518 7.655 -77.610 7.597 -77.701 7.680 -77.743 7.764 -77.814 7.680 -77.864 7.589 -77.822 7.557 -77.846 7.473 -77.936 7.390 -77.958 7.374 -77.966 7.291 -77.988 7.291 -77.978 7.266 -77.960 7.183 -77.860 7.100 -77.772 7.017 -77.785 6.934 -77.743 6.842 -77.663 6.759 -77.612 6.703 -77.515 6.620 -77.443 6.537 -77.457 6.454 -77.498 6.371 -77.476 6.321 -77.576 6.237 -77.581 6.071 -77.439 5.980 -77.397 5.897 -77.354 5.813 -77.332 5.730 -77.403 5.690 -77.504 5.657 -77.596 5.566 -77.591 5.500 -77.493 5.333 -77.446 5.243 -77.450 5.160 -77.454 5.069 -77.440 5.020 -77.446 4.947 -77.435 4.856 -77.387 4.773 -77.393 4.690 -77.409 4.599 -77.407 4.515 -77.442 4.432 -77.466 4.366 -77.438 4.343 -77.401 4.336 -77.334 4.252 -77.521 4.161 -77.528 4.078 -77.517 4.063 -77.422 4.146 -77.387 4.138 -77.292 4.055 -77.308 4.005 -77.410 3.922 -77.353 3.947 -77.259 3.954 -77.164 3.888 -77.201 3.830 -77.294 3.747 -77.225 3.691 -77.318 3.659 -77.327 3.633 -77.420 3.542 -77.436 3.459 -77.498 3.376 -77.513 3.310 -77.566 3.227 -77.619 3.144 -77.655 3.136 -77.701 3.113 -77.794 3.030 -77.726 2.946 -77.750 2.873 -77.852 2.857 -77.869 2.774 -77.876 2.691 -77.848 2.683 -77.874 2.652 -77.937 2.701 -78.032 2.618 -78.096 2.592 -78.190 2.600 -78.216 2.592 -78.216 2.608 -78.234 2.623 -78.289 2.583 -78.383 2.567 -78.477 2.526 -78.570 2.486 -78.672 2.395 -78.716 2.312 -78.760 2.297 -78.769 2.205 -78.749 2.122 -78.701 2.039 -78.681 1.956 -78.642 1.873 -78.666 1.906 -78.770 1.898 -78.836 1.931 -78.931 1.875 -79.024 1.791 -79.097 1.708 -79.120 1.683 -79.025 1.683 -79.017 ; #786 9 2.614 -78.223 2.606 -78.205 2.679 -78.181 2.712 -78.276 2.629 -78.248 2.614 -78.230 ; #787 9 2.598 -78.212 2.606 -78.212 2.614 -78.230 ; #788 9 25.391 -80.350 25.358 -80.439 25.275 -80.446 25.219 -80.529 25.136 -80.557 25.053 -80.623 25.126 -80.543 25.192 -80.462 25.283 -80.416 25.366 -80.360 25.391 -80.347 ; #789 9 2.691 -77.860 2.731 -77.853 2.773 -77.949 2.689 -77.863 ; #790 9 30.911 -81.577 30.827 -81.568 30.911 -81.538 30.994 -81.517 31.002 -81.520 ; #791 9 28.384 -80.772 28.467 -80.765 28.550 -80.747 28.633 -80.806 28.550 -80.842 28.467 -80.831 28.384 -80.802 28.301 -80.763 28.384 -80.774 ; #792 9 27.819 -80.527 27.736 -80.489 27.645 -80.457 27.562 -80.428 27.479 -80.408 27.388 -80.359 27.305 -80.320 27.388 -80.340 27.479 -80.381 27.562 -80.419 27.645 -80.439 27.736 -80.471 27.819 -80.509 27.902 -80.538 27.902 -80.547 ; #793 9 4.421 -77.479 4.413 -77.505 4.330 -77.569 4.322 -77.466 4.353 -77.372 4.361 -77.381 4.361 -77.407 4.384 -77.417 4.417 -77.473 ; #794 9 35.097 -76.123 35.123 -76.132 35.049 -76.204 ; #795 9 35.288 -75.607 35.371 -75.569 35.455 -75.561 35.545 -75.556 35.629 -75.539 35.720 -75.565 35.804 -75.587 35.712 -75.571 35.629 -75.558 35.545 -75.575 35.455 -75.579 35.371 -75.596 35.315 -75.675 35.282 -75.762 35.282 -75.662 35.290 -75.607 ; #796 9 40.690 -74.165 40.698 -74.197 40.647 -74.276 40.563 -74.296 40.597 -74.209 40.688 -74.161 ; #797 9 40.730 -73.513 40.745 -73.439 40.779 -73.343 40.794 -73.247 40.794 -73.144 40.810 -73.048 40.818 -72.949 40.851 -72.852 40.859 -72.753 40.884 -72.652 40.908 -72.560 40.941 -72.462 40.974 -72.375 41.016 -72.281 41.041 -72.190 41.072 -72.091 41.131 -72.015 41.098 -72.113 41.064 -72.201 41.090 -72.315 41.090 -72.427 41.031 -72.504 40.964 -72.576 40.988 -72.700 41.047 -72.614 41.088 -72.529 41.162 -72.451 41.211 -72.371 41.185 -72.462 41.144 -72.555 41.045 -72.716 41.029 -72.821 41.021 -72.921 41.021 -73.249 40.964 -73.326 40.988 -73.439 40.996 -73.555 40.970 -73.646 40.945 -73.747 40.861 -73.811 40.853 -73.910 40.845 -74.019 40.761 -74.082 40.677 -74.125 40.651 -74.010 40.651 -73.907 40.620 -73.995 40.643 -73.894 40.643 -73.792 40.659 -73.687 40.667 -73.793 40.683 -73.697 40.698 -73.602 40.714 -73.506 ; #798 9 19.674 -16.451 19.758 -16.399 19.841 -16.384 19.932 -16.379 19.849 -16.452 19.758 -16.486 19.674 -16.454 ; #799 9 51.791 5.947 51.757 6.035 51.583 6.171 51.496 6.207 51.445 6.218 51.429 6.219 51.378 6.190 51.291 6.095 51.249 6.076 51.162 6.068 51.085 5.951 50.998 6.007 50.964 6.062 50.931 6.083 50.897 6.031 50.889 6.011 50.863 6.021 50.820 6.013 50.794 6.014 50.778 6.024 50.770 6.035 50.770 6.088 50.762 6.108 50.675 6.164 50.675 6.228 50.659 6.249 50.563 6.198 50.555 6.308 50.460 6.353 50.434 6.344 50.375 6.389 50.349 6.280 50.290 6.173 50.203 6.142 50.187 6.133 50.092 6.126 50.058 6.137 50.034 6.158 49.948 6.236 49.914 6.310 49.872 6.420 49.797 6.497 49.771 6.498 49.740 6.433 49.654 6.362 49.613 6.363 49.596 6.353 49.529 6.354 49.529 6.375 49.513 6.483 49.428 6.581 49.343 6.646 49.293 6.700 49.226 6.810 49.293 6.917 49.285 6.926 49.277 6.937 49.261 7.000 49.186 7.031 49.202 7.139 49.194 7.258 49.244 7.352 49.236 7.461 49.210 7.471 49.160 7.580 49.119 7.634 49.119 7.923 49.103 7.956 49.071 8.064 49.055 8.150 49.055 8.160 49.047 8.203 49.014 8.150 48.929 8.088 48.835 7.995 48.768 7.877 48.682 7.783 48.659 7.784 48.583 7.764 48.516 7.733 48.441 7.734 48.399 7.682 48.314 7.641 48.255 7.589 48.205 7.560 48.137 7.561 48.122 7.581 48.096 7.602 48.088 7.612 47.918 7.530 47.868 7.521 47.800 7.502 47.715 7.565 47.691 7.576 47.684 7.576 47.691 7.586 47.707 7.648 47.673 7.618 47.666 7.609 47.650 7.716 47.658 7.768 47.691 7.875 47.658 7.982 47.684 8.099 47.715 8.205 47.715 8.216 47.691 8.288 47.675 8.405 47.684 8.477 47.725 8.539 47.709 8.540 47.693 8.549 47.769 8.581 47.776 8.571 47.751 8.464 47.767 8.412 47.852 8.441 47.901 8.558 47.868 8.665 47.852 8.705 47.844 8.695 47.802 8.696 47.787 8.771 47.761 8.856 47.776 8.963 47.785 9.070 47.769 9.102 47.769 9.155 47.753 9.272 47.711 9.379 47.662 9.496 47.646 9.538 47.638 9.646 47.646 9.698 47.654 9.708 47.662 9.708 47.646 9.825 47.654 9.932 47.612 9.964 47.596 9.974 47.511 10.049 47.495 10.166 47.410 10.165 47.384 10.146 47.400 10.253 47.485 10.360 47.570 10.434 47.612 10.403 47.697 10.435 47.648 10.542 47.671 10.562 47.664 10.646 47.664 10.657 47.630 10.774 47.630 10.881 47.614 10.838 47.598 10.890 47.590 10.890 47.505 10.997 47.531 11.114 47.515 11.221 47.515 11.230 47.566 11.338 47.616 11.381 47.624 11.488 47.691 11.596 47.699 11.703 47.691 11.810 47.723 11.927 47.731 12.034 47.723 12.142 47.723 12.152 47.715 12.161 47.731 12.172 47.806 12.143 47.798 12.260 47.798 12.367 47.749 12.474 47.749 12.526 47.791 12.634 47.783 12.728 47.697 12.746 47.622 12.852 47.614 12.872 47.581 12.979 47.614 13.019 47.699 13.010 47.785 13.045 47.826 12.938 47.876 12.897 47.943 12.951 47.951 12.960 47.959 12.971 48.044 12.900 48.094 12.829 48.179 12.735 48.264 12.799 48.366 12.994 48.373 13.014 48.397 13.131 48.405 13.239 48.463 13.358 48.504 13.392 48.562 13.393 48.647 13.405 48.663 13.405 48.663 13.415 48.671 13.448 48.671 13.468 48.655 13.576 48.613 13.682 48.699 13.770 48.784 13.772 48.869 13.794 48.918 13.742 48.968 13.671 49.043 13.565 49.067 13.480 49.075 13.372 49.091 13.362 49.099 13.362 49.184 13.278 49.200 13.171 49.200 13.161 49.216 13.141 49.301 13.047 49.386 12.963 49.402 12.845 49.418 12.805 49.486 12.698 49.553 12.613 49.723 12.487 49.757 12.478 49.824 12.371 49.910 12.457 49.902 12.468 49.910 12.468 49.995 12.489 50.072 12.382 50.098 12.329 50.157 12.221 50.165 12.212 50.173 12.181 50.189 12.171 50.276 12.140 50.302 12.087 50.389 12.068 50.448 11.960 50.474 11.927 50.483 11.884 50.456 11.811 50.483 11.768 50.466 11.682 50.458 11.651 50.450 11.542 50.501 11.433 50.588 11.381 50.579 11.327 50.537 11.241 50.442 11.260 50.355 11.239 50.339 11.228 50.416 11.120 50.432 11.011 50.456 10.902 50.464 10.859 50.432 10.750 50.398 10.697 50.311 10.792 50.276 10.683 50.335 10.574 50.422 10.542 50.464 10.423 50.541 10.314 50.567 10.261 50.610 10.151 50.583 10.042 50.652 10.032 50.739 9.989 50.739 9.978 50.713 9.869 50.808 9.923 50.895 9.986 50.895 10.006 50.938 10.027 50.980 9.994 50.980 9.984 51.007 9.930 51.007 9.951 50.998 9.981 51.014 10.025 51.023 10.014 51.075 10.068 51.067 10.078 51.059 10.165 51.067 10.175 51.075 10.175 51.117 10.112 51.204 10.152 51.188 10.152 51.188 10.185 51.239 10.206 51.247 10.195 51.279 10.086 51.348 9.976 51.348 9.946 51.382 9.925 51.441 9.925 51.467 9.978 51.492 10.012 51.500 10.132 51.542 10.242 51.567 10.276 51.643 10.396 51.609 10.506 51.635 10.626 51.686 10.670 51.755 10.637 51.842 10.551 51.936 10.615 51.971 10.581 52.058 10.552 52.101 10.662 52.101 10.773 52.108 10.883 52.177 11.004 52.264 11.015 52.264 11.036 52.317 11.016 52.404 11.037 52.481 10.940 52.497 10.919 52.531 10.919 52.547 10.973 52.574 10.943 52.669 10.954 52.712 10.856 52.798 10.769 52.885 10.749 52.885 10.859 52.928 10.971 52.952 11.047 52.944 11.158 52.920 11.246 52.944 11.356 52.987 11.479 53.074 11.557 53.116 11.446 53.100 11.325 53.158 11.250 53.201 11.139 53.201 11.027 53.252 10.917 53.294 10.795 53.381 10.707 53.397 10.596 53.397 10.586 53.405 10.586 53.482 10.630 53.506 10.685 53.541 10.807 53.591 10.883 53.591 10.917 53.678 10.927 53.721 10.839 53.773 10.728 53.797 10.738 53.814 10.749 53.838 10.739 53.854 10.728 53.897 10.784 53.905 10.794 53.913 10.906 53.963 10.885 53.971 10.875 53.971 10.865 53.980 10.854 54.022 10.742 54.099 10.855 54.159 10.978 54.246 11.055 54.342 11.055 54.392 11.077 54.392 11.066 54.384 11.056 54.376 11.045 54.376 10.932 54.342 10.820 54.315 10.707 54.358 10.595 54.392 10.473 54.427 10.360 54.418 10.248 54.418 10.227 54.331 10.148 54.366 10.127 54.374 10.117 54.461 10.182 54.485 10.060 54.477 9.981 54.453 9.858 54.522 9.970 54.522 9.981 54.609 10.002 54.669 9.980 54.661 9.915 54.688 9.980 54.714 9.980 54.791 9.892 54.775 9.779 54.809 9.655 54.843 9.532 54.827 9.419 54.835 9.388 54.819 9.343 54.811 9.309 54.811 9.254 54.862 9.130 54.878 9.007 54.904 8.883 54.904 8.873 54.912 8.830 54.896 8.731 54.912 8.652 54.888 8.576 54.880 8.464 54.906 8.350 54.993 8.383 54.993 8.349 54.951 8.315 54.864 8.285 54.777 8.297 54.864 8.296 54.855 8.419 54.880 8.531 54.880 8.644 54.871 8.644 54.784 8.666 54.697 8.767 54.603 8.857 54.534 8.970 54.447 8.926 54.422 8.814 54.406 8.692 54.319 8.593 54.295 8.716 54.303 8.815 54.319 8.927 54.261 8.829 54.174 8.819 54.158 8.931 54.071 8.998 54.054 8.885 53.967 8.876 53.917 8.999 53.909 9.111 53.909 9.121 53.901 9.233 53.858 9.345 53.771 9.422 53.703 9.533 53.616 9.622 53.589 9.721 53.573 9.810 53.557 9.810 53.565 9.745 53.589 9.633 53.642 9.521 53.729 9.432 53.816 9.333 53.884 9.220 53.884 9.108 53.860 8.997 53.852 8.885 53.860 8.772 53.877 8.730 53.903 8.618 53.816 8.531 53.729 8.477 53.642 8.499 53.547 8.555 53.539 8.544 53.452 8.491 53.383 8.491 53.399 8.481 53.442 8.470 53.529 8.500 53.597 8.388 53.630 8.276 53.543 8.222 53.456 8.278 53.447 8.166 53.490 8.054 53.577 8.141 53.733 7.915 53.725 7.803 53.725 7.769 53.717 7.658 53.701 7.546 53.708 7.434 53.708 7.322 53.684 7.211 53.623 7.100 53.536 7.092 53.449 7.006 53.363 7.049 53.363 7.161 53.346 7.273 53.320 7.351 53.337 7.239 53.268 7.186 53.209 7.198 53.201 7.187 53.027 7.191 52.940 7.139 52.871 7.076 52.863 7.076 52.776 7.057 52.760 7.048 52.673 7.039 52.673 6.928 52.681 6.817 52.673 6.740 52.657 6.709 52.570 6.691 52.536 6.692 52.493 6.814 52.467 6.926 52.442 7.024 52.355 7.036 52.347 7.026 52.339 7.026 52.270 7.038 52.254 6.972 52.246 6.961 52.159 6.853 52.151 6.756 52.064 6.737 51.977 6.793 51.969 6.783 51.953 6.673 51.929 6.563 51.894 6.454 51.894 6.334 51.911 6.223 51.945 6.135 51.945 6.124 51.876 6.157 51.900 6.046 51.866 5.937 51.858 5.948 51.824 5.969 51.791 5.937 ; #800 9 54.085 13.806 54.061 13.917 54.061 14.029 54.026 13.905 53.939 13.934 53.905 13.834 53.897 13.834 53.889 13.855 53.889 13.977 53.913 14.090 53.913 14.223 53.965 14.225 54.103 14.005 54.127 13.893 54.204 13.783 54.117 13.812 54.083 13.800 ; #801 9 12.873 21.883 12.789 21.928 12.706 22.022 12.706 22.117 12.739 22.221 12.787 22.317 12.730 22.411 12.698 22.515 12.615 22.485 12.524 22.437 12.441 22.492 12.350 22.519 12.267 22.546 12.184 22.545 12.110 22.527 12.151 22.631 12.068 22.667 11.985 22.649 11.894 22.630 11.811 22.620 11.720 22.610 11.637 22.655 11.563 22.758 11.480 22.840 11.487 22.944 11.404 22.999 11.314 23.026 11.230 23.007 11.139 22.968 11.056 22.950 11.000 22.931 10.909 22.976 10.818 23.039 10.735 23.121 10.569 23.309 10.545 23.337 10.454 23.411 10.364 23.456 10.281 23.512 10.197 23.566 10.106 23.611 10.081 23.628 9.990 23.682 9.907 23.718 9.824 23.727 9.741 23.726 9.657 23.690 9.559 23.680 9.468 23.697 9.385 23.687 9.301 23.640 9.261 23.537 9.220 23.518 9.129 23.509 9.064 23.517 9.096 23.621 9.005 23.629 8.922 23.593 8.839 23.555 8.823 23.658 8.808 23.762 8.816 23.856 8.808 23.960 8.793 24.063 8.777 24.158 8.785 24.222 8.702 24.285 8.618 24.249 8.528 24.202 8.437 24.201 8.371 24.304 8.346 24.399 8.361 24.493 8.296 24.596 8.311 24.691 8.296 24.794 8.272 24.889 8.264 24.897 8.181 24.991 8.098 25.019 8.075 25.048 7.992 25.130 7.999 25.234 7.909 25.308 7.826 25.325 7.742 25.333 7.694 25.229 7.611 25.245 7.545 25.339 7.462 25.394 7.414 25.488 7.373 25.591 7.307 25.694 7.274 25.788 7.218 25.891 7.145 25.985 7.111 26.088 7.021 26.104 6.938 26.161 6.854 26.255 6.814 26.349 6.748 26.443 6.665 26.396 6.574 26.337 6.490 26.354 6.417 26.448 6.334 26.550 6.251 26.503 6.160 26.586 6.129 26.680 6.121 26.783 6.121 26.792 6.030 26.866 6.007 26.961 5.956 27.054 5.901 27.148 5.817 27.242 5.726 27.267 5.643 27.295 5.552 27.265 5.519 27.274 5.436 27.290 5.353 27.327 5.279 27.429 5.188 27.483 5.140 27.483 5.125 27.511 5.042 27.585 5.026 27.679 4.943 27.724 4.918 27.724 4.835 27.808 4.752 27.807 4.686 27.901 4.693 28.004 4.610 28.050 4.569 28.153 4.486 28.208 4.486 28.311 4.413 28.405 4.413 28.423 4.486 28.518 4.543 28.612 4.616 28.707 4.682 28.802 4.608 28.896 4.608 29.000 4.583 29.094 4.509 29.188 4.517 29.291 4.601 29.386 4.684 29.450 4.774 29.480 4.790 29.574 4.757 29.677 4.709 29.771 4.618 29.826 4.527 29.816 4.479 29.911 4.395 29.956 4.355 30.011 4.272 30.065 4.221 30.168 4.138 30.203 4.082 30.306 4.067 30.361 4.016 30.455 4.009 30.558 3.918 30.575 3.834 30.592 3.751 30.563 3.743 30.600 3.776 30.704 3.751 30.798 3.668 30.853 3.627 30.861 3.683 30.888 3.767 30.943 3.840 31.038 3.906 31.142 3.929 31.236 3.898 31.340 3.848 31.434 3.792 31.528 3.832 31.631 3.840 31.669 3.914 31.764 3.906 31.858 3.823 31.932 3.732 31.949 3.724 32.024 3.724 32.052 3.716 32.061 3.651 32.164 3.651 32.192 3.742 32.193 3.807 32.288 3.873 32.392 3.881 32.486 3.881 32.581 3.888 32.675 3.904 32.779 3.937 32.873 3.985 32.968 3.977 33.071 3.904 33.165 3.896 33.174 3.896 33.277 3.888 33.371 3.888 33.466 3.881 33.503 3.972 33.598 4.055 33.682 4.138 33.766 4.304 33.936 4.355 33.983 4.521 34.153 4.612 34.237 4.695 34.321 4.736 34.368 4.744 34.471 4.744 35.594 4.752 35.677 4.752 35.922 4.842 35.838 4.925 35.756 5.216 35.760 5.299 35.816 5.382 35.780 5.455 35.799 5.488 35.705 5.496 35.610 5.544 35.517 5.544 35.414 5.479 35.318 5.562 35.256 5.645 35.257 5.711 35.155 5.809 35.090 5.901 35.037 5.974 34.992 6.065 34.964 6.131 34.974 6.214 34.947 6.305 34.893 6.388 34.849 6.479 34.842 6.562 34.785 6.645 34.769 6.736 34.742 6.819 34.668 6.852 34.566 6.926 34.501 6.999 34.484 7.055 34.391 7.071 34.296 7.154 34.223 7.237 34.187 7.311 34.093 7.394 34.031 7.477 34.032 7.560 33.958 7.651 33.865 7.692 33.771 7.775 33.678 7.790 33.575 7.831 33.481 7.839 33.386 7.839 33.292 7.887 33.189 7.887 33.094 7.971 33.000 7.986 32.992 8.077 33.019 8.100 33.029 8.183 33.105 8.241 33.181 8.324 33.173 8.407 33.165 8.499 33.167 8.531 33.196 8.555 33.291 8.531 33.385 8.555 33.480 8.547 33.575 8.514 33.678 8.466 33.772 8.481 33.781 8.529 33.885 8.545 33.980 8.628 34.076 8.676 34.112 8.851 34.115 8.934 34.125 9.017 34.126 9.116 34.119 9.199 34.112 9.290 34.104 9.373 34.096 9.456 34.098 9.547 34.091 9.630 34.083 9.729 34.102 9.812 34.121 9.895 34.151 9.986 34.190 10.077 34.210 10.085 34.210 10.183 34.288 10.267 34.325 10.366 34.327 10.449 34.312 10.540 34.297 10.623 34.282 10.638 34.282 10.654 34.291 10.737 34.360 10.820 34.408 10.903 34.485 10.969 34.591 10.896 34.684 10.812 34.765 10.764 34.764 10.946 34.958 11.037 34.926 11.120 34.955 11.211 34.975 11.234 34.984 11.282 34.986 11.298 34.968 11.338 34.952 11.412 34.991 11.503 35.031 11.586 35.060 11.669 35.080 11.752 35.053 11.844 35.056 11.927 35.104 11.967 35.200 12.008 35.248 12.091 35.315 12.174 35.335 12.258 35.401 12.356 35.441 12.606 35.589 12.689 35.676 12.739 35.677 12.755 35.781 12.770 35.886 12.785 35.981 12.760 36.085 12.776 36.123 12.859 36.125 12.942 36.136 13.016 36.120 13.107 36.132 13.205 36.164 13.289 36.184 13.372 36.204 13.462 36.242 13.546 36.301 13.637 36.369 13.720 36.380 13.811 36.411 13.894 36.451 13.985 36.425 14.084 36.436 14.167 36.457 14.250 36.485 14.316 36.506 14.356 36.498 14.455 36.483 14.538 36.476 14.621 36.461 14.713 36.455 14.879 36.442 14.970 36.427 15.136 36.416 15.202 36.409 15.250 36.467 15.334 36.526 15.424 36.548 15.498 36.606 15.589 36.601 15.755 36.643 15.846 36.714 15.937 36.755 16.028 36.786 16.111 36.818 16.194 36.848 16.277 36.890 16.361 36.922 16.444 36.917 16.535 36.863 16.618 36.866 16.701 36.879 16.784 36.947 16.875 36.968 17.042 36.975 17.082 37.073 17.074 37.168 17.108 37.265 17.084 37.369 17.084 37.377 17.167 37.437 17.251 37.478 17.341 37.473 17.357 37.465 17.398 37.562 17.413 37.659 17.496 37.738 17.488 37.833 17.554 37.932 17.595 38.039 17.603 38.135 17.651 38.232 17.701 38.319 17.792 38.361 17.876 38.391 17.974 38.481 18.032 38.550 18.073 38.534 18.164 38.453 18.237 38.361 18.237 38.256 18.320 38.233 18.280 38.136 18.363 38.054 18.446 38.020 18.537 37.949 18.603 37.856 18.653 37.753 18.736 37.672 18.744 37.577 18.767 37.473 18.858 37.412 18.941 37.378 19.033 37.373 19.116 37.310 19.198 37.295 19.290 37.282 19.381 37.267 19.464 37.253 19.555 37.228 19.638 37.205 19.729 37.227 19.820 37.222 19.911 37.196 19.936 37.180 20.027 37.146 20.118 37.169 20.201 37.146 20.291 37.141 20.383 37.137 20.474 37.142 20.557 37.193 20.648 37.171 20.739 37.137 20.829 37.133 20.913 37.128 20.996 37.095 21.087 37.061 21.170 37.084 21.162 37.188 21.072 37.240 21.155 37.226 21.245 37.145 21.336 37.054 21.420 37.000 21.510 36.939 21.677 36.872 21.768 36.858 21.851 36.844 21.934 36.849 22.017 36.862 22.041 36.872 22.124 36.791 22.182 36.698 22.255 36.596 22.321 36.502 22.379 36.400 22.462 36.348 22.553 36.267 22.644 36.216 22.685 36.112 22.692 36.016 22.741 35.913 22.791 35.809 22.874 35.737 22.965 35.676 23.049 35.642 23.139 35.620 23.083 35.550 23.033 35.500 22.950 35.400 22.859 35.299 22.793 35.190 22.824 35.086 22.849 34.991 22.816 34.942 22.726 34.899 22.642 34.857 22.635 34.857 22.543 34.814 22.453 34.774 22.354 34.731 22.288 34.632 22.272 34.526 22.257 34.419 22.242 34.314 22.226 34.216 22.201 34.159 22.110 34.126 22.019 34.095 21.961 34.083 21.870 34.041 21.787 33.990 21.779 33.885 21.764 33.778 21.756 33.673 21.749 33.576 21.814 33.474 21.888 33.380 21.954 33.278 22.019 33.184 22.019 31.500 22.027 31.462 22.118 31.495 22.201 31.516 22.226 31.499 22.250 31.471 22.219 31.385 22.128 31.343 22.105 31.324 22.079 31.314 22.023 31.207 22.023 25.004 21.749 25.005 21.526 24.999 21.029 25.002 20.532 24.998 20.034 24.993 20.034 23.996 19.868 24.001 19.669 23.997 19.537 24.003 19.272 23.997 19.141 24.003 18.792 23.995 18.709 24.002 18.378 23.995 18.280 24.001 17.974 23.995 17.883 24.002 17.545 23.994 17.421 24.001 17.181 23.995 17.050 24.001 16.719 23.994 16.519 23.998 16.287 23.993 16.156 23.999 15.757 23.991 15.782 23.896 15.808 23.792 15.815 23.696 15.815 23.592 15.790 23.496 15.750 23.400 15.750 23.296 15.765 23.201 15.765 23.116 15.682 23.030 15.624 22.933 15.591 22.915 15.507 22.951 15.417 22.996 15.368 22.995 15.285 22.984 15.202 22.936 15.136 22.840 15.088 22.801 15.065 22.773 14.981 22.743 14.898 22.667 14.807 22.683 14.792 22.692 14.743 22.627 14.711 22.531 14.678 22.427 14.595 22.379 14.504 22.444 14.420 22.470 14.329 22.451 14.314 22.488 14.231 22.562 14.165 22.466 14.099 22.370 14.059 22.265 14.002 22.201 13.904 22.133 13.821 22.132 13.737 22.140 13.654 22.223 13.571 22.230 13.540 22.239 13.449 22.293 13.366 22.236 13.283 22.169 13.234 22.073 13.169 21.977 13.086 21.921 13.002 21.882 12.919 21.854 12.894 21.846 12.886 21.836 ; #802 9 48.710 46.588 48.625 46.548 48.532 46.494 48.439 46.556 48.413 46.678 48.405 46.696 48.405 46.727 48.379 46.838 48.345 46.947 48.322 47.069 48.296 47.083 48.211 47.095 48.118 47.168 48.060 47.047 47.975 47.099 47.882 47.086 47.815 47.177 47.773 47.285 47.866 47.359 47.874 47.469 47.840 47.568 47.824 47.681 47.832 47.790 47.840 47.909 47.832 48.014 47.791 48.111 47.705 48.208 47.620 48.271 47.535 48.357 47.485 48.452 47.392 48.536 47.299 48.585 47.214 48.639 47.128 48.689 47.035 48.783 46.942 48.867 46.857 48.952 46.763 48.886 46.756 48.758 46.805 48.664 46.831 48.564 46.746 48.436 46.730 48.423 46.662 48.512 46.662 48.522 46.629 48.631 46.613 48.688 46.546 48.788 46.553 48.852 46.496 48.954 46.454 49.049 46.413 49.155 46.470 49.108 46.454 49.220 46.540 49.231 46.547 49.340 46.632 49.245 46.649 49.239 46.607 49.345 46.557 49.438 46.651 49.410 46.601 49.504 46.617 49.614 46.617 49.731 46.658 49.848 46.692 49.941 46.778 50.069 46.793 50.179 46.879 50.285 46.964 50.369 46.938 50.469 46.988 50.589 46.972 50.701 47.057 50.775 47.115 50.897 47.130 51.008 47.172 51.126 47.156 51.238 47.140 51.340 47.124 51.453 47.049 51.540 47.008 51.645 47.008 51.655 46.982 51.764 46.940 51.860 46.924 51.973 46.883 52.078 46.875 52.182 46.960 52.299 47.045 52.364 47.053 52.473 47.012 52.569 47.012 52.675 47.019 52.794 46.970 52.855 46.892 52.881 46.857 52.968 46.754 52.959 46.669 52.998 46.625 53.008 46.540 53.004 46.446 53.072 46.361 53.081 46.276 53.058 46.183 53.043 46.133 52.997 46.040 52.971 45.955 52.909 45.870 52.844 45.784 52.737 45.691 52.670 45.606 52.666 45.598 52.664 45.574 52.763 45.532 52.858 45.499 52.964 45.457 53.058 45.415 53.153 45.382 53.038 45.390 52.934 45.390 52.829 45.424 52.722 45.431 52.619 45.457 52.520 45.481 52.421 45.481 52.306 45.473 52.198 45.465 52.091 45.465 51.975 45.439 51.853 45.473 51.756 45.514 51.652 45.429 51.546 45.413 51.426 45.405 51.319 45.312 51.223 45.227 51.181 45.142 51.129 45.074 50.997 44.999 50.914 44.915 50.914 44.831 51.105 44.747 51.190 44.672 51.278 44.672 51.393 44.588 51.478 44.604 51.377 44.627 51.277 44.578 51.161 44.563 51.042 44.604 50.947 44.670 50.857 44.704 50.760 44.696 50.653 44.711 50.542 44.711 50.332 44.696 50.213 44.604 50.153 44.520 50.163 44.436 50.176 44.395 50.271 44.369 50.370 44.369 50.485 44.354 50.587 44.320 50.694 44.253 50.783 44.169 50.805 44.078 50.855 43.993 50.928 43.901 50.948 43.817 51.011 43.733 51.062 43.674 51.153 43.674 51.163 43.583 51.224 43.499 51.256 43.414 51.246 43.330 51.226 43.246 51.268 43.254 51.374 43.262 51.489 43.270 51.595 43.185 51.617 43.101 51.711 43.017 51.755 42.933 51.839 42.949 51.947 42.974 52.066 42.941 52.162 42.907 52.269 42.915 52.375 42.899 52.485 42.833 52.573 42.802 52.679 42.718 52.620 42.774 52.530 42.690 52.601 42.606 52.613 42.514 52.581 42.430 52.530 42.346 52.459 42.262 52.369 42.178 52.349 42.085 52.369 42.001 52.430 41.917 52.411 41.833 52.381 41.933 52.509 41.958 52.555 42.143 52.806 42.209 52.926 42.250 53.039 42.281 53.150 42.322 53.274 42.348 53.384 42.363 53.491 42.372 53.606 42.387 53.692 42.403 53.800 42.418 53.873 42.426 53.979 42.418 54.091 42.385 54.186 42.328 54.285 42.287 54.379 42.246 54.482 42.205 54.576 42.154 54.667 42.098 54.766 42.031 54.852 41.863 54.934 41.778 55.016 41.694 55.086 41.602 55.154 41.518 55.224 41.477 55.326 41.393 55.365 41.352 55.458 41.352 55.571 41.377 55.681 41.411 55.802 41.418 55.907 41.418 55.926 41.587 55.928 41.712 55.931 41.804 55.936 41.888 55.929 42.005 55.939 42.090 55.932 42.189 55.938 42.373 55.944 42.465 55.939 42.565 55.945 42.657 55.940 42.757 55.946 42.856 55.943 42.949 55.947 43.048 55.944 43.132 55.946 43.225 55.950 43.324 55.945 43.424 55.951 43.516 55.944 43.616 55.949 43.708 55.942 43.800 55.946 43.808 55.948 43.907 55.943 43.999 55.947 44.099 55.941 44.199 55.947 44.291 55.940 44.391 55.936 44.482 55.940 44.583 55.937 44.682 55.943 44.774 55.938 44.874 55.932 44.966 55.936 45.051 55.929 45.059 55.940 45.085 56.063 45.116 56.187 45.150 56.323 45.175 56.455 45.199 56.567 45.225 56.680 45.241 56.756 45.275 56.891 45.300 57.014 45.334 57.149 45.358 57.281 45.383 57.404 45.417 57.540 45.441 57.672 45.475 57.808 45.501 57.931 45.525 58.044 45.540 58.154 45.572 58.289 45.598 58.423 45.614 58.479 45.598 58.516 45.598 58.526 45.548 58.626 45.507 58.729 45.457 58.828 45.441 58.866 45.400 58.968 45.350 59.068 45.300 59.168 45.284 59.205 45.277 59.212 45.235 59.314 45.219 59.351 45.186 59.412 45.051 59.695 44.833 60.187 44.614 60.648 44.598 60.685 44.447 60.986 44.363 61.025 44.271 61.060 44.214 61.148 44.140 61.231 44.074 61.327 44.007 61.412 43.933 61.495 43.866 61.591 43.792 61.674 43.725 61.759 43.651 61.851 43.584 61.936 43.559 61.960 43.575 62.069 43.590 62.188 43.606 62.317 43.622 62.445 43.629 62.561 43.645 62.690 43.661 62.819 43.676 62.928 43.692 63.046 43.700 63.153 43.692 63.275 43.676 63.384 43.668 63.497 43.661 63.608 43.653 63.730 43.645 63.842 43.637 63.963 43.629 64.075 43.622 64.197 43.622 64.311 43.645 64.442 43.694 64.571 43.745 64.692 43.794 64.820 43.745 64.920 43.678 64.982 43.612 65.066 43.538 65.147 43.479 65.234 43.395 65.436 43.303 65.499 43.211 65.574 43.111 65.636 43.011 65.696 42.978 65.800 43.027 65.929 43.042 66.038 42.951 66.028 42.858 66.031 42.774 66.023 42.690 66.017 42.590 65.995 42.498 65.986 42.415 65.950 42.322 65.940 42.238 65.945 42.154 65.938 42.080 66.038 42.080 66.390 41.988 66.443 41.896 66.455 41.811 66.469 41.712 66.488 41.620 66.519 41.436 66.565 41.344 66.596 41.252 66.617 41.244 66.656 41.236 66.766 41.228 66.867 41.228 67.195 41.236 67.310 41.244 67.415 41.260 67.523 41.268 67.629 41.252 67.727 41.252 67.777 41.268 67.811 41.276 67.824 41.184 67.897 41.142 67.987 41.135 68.035 41.078 68.036 41.004 68.012 40.962 67.989 40.878 67.971 40.822 68.056 40.796 68.098 40.763 68.147 40.730 68.239 40.706 68.313 40.714 68.418 40.698 68.516 40.790 68.515 40.874 68.461 40.898 68.468 40.931 68.460 41.016 68.497 41.031 68.533 41.072 68.616 41.156 68.653 41.240 68.783 41.272 68.897 41.364 68.965 41.448 68.954 41.514 69.067 41.540 69.179 41.563 69.227 41.647 69.327 41.698 69.457 41.755 69.579 41.780 69.691 41.788 69.797 41.855 69.889 41.863 69.922 41.937 70.060 42.021 70.120 42.105 70.218 42.172 70.344 42.115 70.429 42.146 70.543 42.230 70.612 42.271 70.729 42.330 70.863 42.372 70.763 42.395 70.771 42.411 70.787 42.495 70.847 42.579 70.958 42.663 70.976 42.729 71.060 42.737 71.052 42.821 71.151 42.821 71.161 42.829 71.268 42.862 71.383 42.829 71.463 42.878 71.572 42.886 71.689 42.886 71.793 42.870 71.901 42.829 71.991 42.837 72.107 42.829 72.208 42.796 72.301 42.755 72.400 42.755 72.514 42.729 72.609 42.663 72.699 42.622 72.789 42.622 72.902 42.629 73.009 42.596 73.101 42.588 73.212 42.504 73.286 42.512 73.402 42.520 73.405 42.604 73.331 42.688 73.310 42.780 73.343 42.864 73.404 42.895 73.405 42.921 73.404 43.013 73.428 43.097 73.458 43.123 73.498 43.156 73.614 43.197 73.743 43.213 73.809 43.254 73.928 43.262 74.044 43.303 74.101 43.328 74.078 43.320 74.116 43.236 74.295 43.203 74.397 43.162 74.486 43.103 74.569 43.080 74.592 43.054 74.687 43.039 74.785 42.998 74.874 42.982 74.951 42.951 75.044 42.925 75.148 42.917 75.249 42.909 75.351 42.909 75.455 42.876 75.556 42.925 75.625 43.009 75.666 43.017 75.709 43.017 75.814 43.001 75.912 43.009 76.029 43.001 76.130 42.976 76.225 42.968 76.335 42.984 76.445 42.992 76.552 43.015 76.675 43.048 76.791 43.048 76.896 43.041 76.997 42.992 77.092 42.984 77.089 42.976 77.200 43.001 77.314 42.994 77.425 42.986 77.526 42.986 77.630 42.962 77.735 42.962 77.839 42.947 77.937 42.947 78.155 42.955 78.262 42.962 78.369 42.937 78.464 42.895 78.552 42.888 78.662 42.872 78.760 42.856 78.868 42.856 78.972 42.864 78.994 42.815 79.079 42.731 79.119 42.698 79.220 42.606 79.288 42.549 79.370 42.541 79.480 42.557 79.591 42.532 79.694 42.524 79.795 42.475 79.880 42.409 79.967 42.334 80.041 42.283 80.114 42.368 80.156 42.393 80.157 42.477 80.119 42.561 80.121 42.645 80.072 42.729 80.054 42.821 80.119 42.905 80.142 42.913 80.260 42.955 80.380 42.962 80.445 43.029 80.368 43.070 80.280 43.154 80.395 43.221 80.526 43.187 80.627 43.271 80.679 43.363 80.655 43.396 80.555 43.481 80.597 43.565 80.599 43.657 80.543 43.741 80.494 43.833 80.448 43.892 80.430 43.892 80.420 43.983 80.386 44.068 80.315 44.152 80.285 44.236 80.235 44.251 80.242 44.344 80.268 44.428 80.238 44.520 80.214 44.688 80.261 44.780 80.368 44.836 80.286 44.852 80.187 44.894 80.088 44.878 79.967 44.862 79.900 44.870 79.851 44.911 79.762 44.995 79.786 45.045 79.849 45.061 79.888 45.102 80.021 45.110 80.130 45.110 80.235 45.168 80.377 45.175 80.485 45.207 80.605 45.192 80.713 45.225 80.833 45.241 80.946 45.291 81.084 45.316 81.201 45.332 81.314 45.366 81.434 45.407 81.568 45.358 81.651 45.273 81.655 45.247 81.748 45.215 81.839 45.257 81.973 45.289 82.103 45.273 82.202 45.215 82.281 45.181 82.380 45.223 82.441 45.257 82.457 45.265 82.470 45.350 82.499 45.435 82.506 45.520 82.440 45.536 82.342 45.544 82.230 45.604 82.174 45.689 82.213 45.782 82.245 45.868 82.317 45.953 82.365 46.123 82.424 46.209 82.431 46.302 82.484 46.387 82.556 46.472 82.585 46.540 82.627 46.632 82.660 46.861 82.766 46.946 82.835 47.031 82.885 47.124 82.896 47.210 82.903 47.267 83.047 47.225 83.144 47.210 83.243 47.168 83.331 47.126 83.418 47.100 83.512 47.085 83.622 47.051 83.713 47.035 83.812 47.035 83.928 47.069 84.157 47.061 84.260 47.045 84.359 47.053 84.470 47.045 84.583 46.970 84.654 46.910 84.732 46.970 84.867 47.037 85.015 47.113 85.158 47.113 85.265 47.120 85.386 47.188 85.428 47.273 85.554 47.358 85.575 47.452 85.568 47.527 85.498 47.553 85.490 47.638 85.489 47.731 85.482 47.824 85.465 47.909 85.431 48.003 85.415 48.028 85.427 48.052 85.448 48.137 85.480 48.223 85.491 48.308 85.553 48.401 85.609 48.476 85.753 48.484 85.865 48.484 85.982 48.476 86.096 48.552 86.241 48.552 86.358 48.637 86.485 48.722 86.580 48.808 86.633 48.901 86.679 48.960 86.600 49.053 86.614 49.139 86.709 49.147 86.821 49.172 86.942 49.165 87.057 49.148 87.157 49.141 87.206 49.226 87.163 49.275 87.122 49.291 87.012 49.291 86.959 49.299 86.910 49.357 86.831 49.450 86.791 49.484 86.700 49.569 86.667 49.594 86.571 49.618 86.464 49.704 86.517 49.789 86.602 49.830 86.514 49.789 86.407 49.757 86.339 49.749 86.335 49.725 86.333 49.658 86.191 49.658 86.181 49.573 86.109 49.565 85.997 49.557 85.884 49.614 85.804 49.591 85.674 49.614 85.577 49.664 85.483 49.632 85.359 49.664 85.256 49.622 85.127 49.690 85.052 49.783 85.034 49.843 84.945 49.928 84.900 49.935 84.851 49.935 84.841 50.021 84.821 50.037 84.830 50.037 84.840 50.114 84.841 50.141 84.747 50.183 84.662 50.199 84.563 50.226 84.458 50.258 84.358 50.250 84.245 50.292 84.149 50.379 84.122 50.474 84.067 50.561 84.073 50.648 84.013 50.675 83.974 50.717 83.878 50.725 83.873 50.725 83.863 50.812 83.848 50.863 83.767 50.915 83.677 50.940 83.581 50.974 83.481 50.990 83.380 51.032 83.274 51.032 83.012 50.938 82.938 50.922 82.820 50.938 82.709 50.842 82.593 50.792 82.456 50.776 82.337 50.792 82.237 50.749 82.094 50.749 81.985 50.800 81.893 50.808 81.821 50.800 81.707 50.774 81.573 50.766 81.472 50.774 81.379 50.861 81.361 50.947 81.322 51.000 81.231 50.984 81.112 50.984 81.003 51.071 80.984 51.166 81.056 51.174 81.060 51.217 81.073 51.233 81.072 51.233 81.008 51.225 80.893 51.312 80.821 51.312 80.701 51.336 80.604 51.249 80.537 51.249 80.417 51.154 80.322 51.067 80.372 50.980 80.326 50.956 80.193 50.861 80.068 50.887 79.963 50.800 79.993 50.835 79.902 50.842 79.886 50.893 79.859 50.980 79.786 51.326 79.534 51.429 79.469 51.524 79.399 51.611 79.325 51.698 79.241 51.793 79.171 51.880 79.107 51.957 79.027 52.026 78.976 52.113 78.902 52.200 78.838 52.295 78.757 52.382 78.682 52.469 78.607 52.545 78.527 52.561 78.514 52.639 78.434 52.726 78.369 52.794 78.295 52.871 78.213 52.958 78.128 53.027 78.053 53.114 77.977 53.209 77.895 53.286 77.824 53.344 77.733 53.360 77.708 53.422 77.608 53.472 77.512 53.523 77.407 53.565 77.306 53.599 77.249 53.642 77.160 53.692 77.064 53.735 76.953 53.761 76.923 53.804 76.823 53.846 76.712 53.889 76.602 53.939 76.505 53.955 76.470 54.042 76.403 54.119 76.320 54.154 76.461 54.127 76.559 54.214 76.693 54.309 76.753 54.360 76.667 54.455 76.806 54.429 76.680 54.420 76.563 54.326 76.401 54.326 76.268 54.333 76.196 54.246 76.096 54.204 75.940 54.170 75.811 54.127 75.676 54.103 75.586 54.095 75.469 54.087 75.343 53.992 75.349 53.933 75.207 53.873 75.077 53.830 74.991 53.814 74.961 53.822 74.911 53.838 74.797 53.769 74.640 53.692 74.479 53.589 74.406 53.494 74.358 53.511 74.245 53.605 74.170 53.581 74.025 53.581 74.014 53.640 73.932 53.656 73.842 53.623 73.703 53.571 73.555 53.484 73.447 53.442 73.371 53.529 73.349 53.563 73.254 53.650 73.175 53.658 73.180 53.753 73.281 53.840 73.345 53.873 73.483 53.873 73.639 53.967 73.666 53.984 73.663 54.052 73.619 54.061 73.613 54.077 73.600 53.982 73.464 53.974 73.338 53.957 73.197 53.974 73.093 54.008 72.987 54.095 72.918 54.119 72.817 54.127 72.699 54.127 72.576 54.040 72.456 54.056 72.576 53.980 72.650 53.971 72.534 53.903 72.378 53.998 72.359 54.085 72.313 54.137 72.427 54.161 72.316 54.257 72.274 54.317 72.180 54.368 72.072 54.273 72.026 54.196 72.101 54.196 71.988 54.239 71.887 54.246 71.767 54.143 71.673 54.117 71.548 54.109 71.432 54.178 71.332 54.117 71.190 54.143 71.081 54.186 71.001 54.273 70.931 54.307 71.070 54.394 71.146 54.481 71.088 54.576 71.079 54.672 71.190 54.714 71.087 54.740 70.987 54.827 70.940 54.896 70.883 54.912 70.891 54.971 70.885 55.067 70.903 55.138 70.828 55.199 70.747 55.288 70.715 55.288 70.602 55.253 70.470 55.269 70.379 55.180 70.300 55.128 70.160 55.145 70.055 55.180 69.939 55.180 69.918 55.223 69.817 55.275 69.721 55.319 69.609 55.328 69.489 55.336 69.359 55.363 69.273 55.319 69.185 55.371 69.098 55.398 68.978 55.406 68.869 55.317 68.923 55.309 68.805 55.333 68.694 55.333 68.649 55.244 68.614 55.165 68.461 55.165 68.337 55.174 68.228 55.076 68.157 55.032 68.248 54.997 68.175 54.971 68.153 54.963 68.128 54.928 68.036 54.928 67.923 54.944 67.817 54.857 67.678 54.831 67.543 54.831 67.430 54.823 67.303 54.772 67.168 54.772 67.055 54.738 66.916 54.738 66.803 54.704 66.664 54.696 66.548 54.696 66.435 54.669 66.312 54.645 66.177 54.619 66.053 54.603 65.968 54.690 65.906 54.647 65.775 54.587 65.635 54.612 65.534 54.605 65.418 54.536 65.265 54.449 65.152 54.362 65.179 54.311 65.045 54.370 64.958 54.370 64.948 54.378 64.839 54.328 64.728 54.344 64.612 54.368 64.557 54.352 64.438 54.317 64.300 54.301 64.170 54.301 64.058 54.214 63.977 54.180 63.863 54.188 63.845 54.230 63.741 54.222 63.625 54.188 63.498 54.154 63.361 54.161 63.289 54.170 63.180 54.083 63.100 54.083 62.988 54.074 62.861 54.067 62.746 54.058 62.620 53.971 62.574 53.884 62.548 53.911 62.447 53.998 62.438 54.006 62.330 54.006 62.218 54.014 62.109 53.927 62.008 53.935 61.878 53.985 61.787 53.985 61.654 53.969 61.613 53.985 61.508 53.994 61.501 54.044 61.399 54.010 61.262 53.923 61.228 53.939 61.122 53.931 61.007 53.862 61.101 53.820 61.196 53.759 61.162 53.672 61.049 53.648 60.927 53.605 61.022 53.571 61.121 53.545 61.232 53.571 61.365 53.579 61.480 53.502 61.561 53.433 61.422 53.476 61.327 53.415 61.191 53.328 61.146 53.270 61.245 53.270 61.366 53.227 61.461 53.211 61.566 53.237 61.688 53.168 61.782 53.152 61.887 53.136 62.002 53.110 62.103 53.023 62.122 52.936 61.976 52.978 61.871 52.971 61.746 52.954 61.629 52.996 61.534 53.023 61.424 52.989 61.288 53.015 61.187 52.989 61.123 52.980 60.998 52.885 61.014 52.825 60.879 52.756 60.741 52.669 60.707 52.634 60.804 52.547 60.835 52.505 60.949 52.418 60.969 52.341 61.050 52.325 61.000 52.248 60.848 52.161 60.704 52.161 60.473 52.074 60.329 52.005 60.181 52.005 60.017 51.955 59.997 51.878 60.088 51.886 60.202 51.844 60.296 51.828 60.410 51.741 60.451 51.637 60.521 51.637 60.761 51.629 60.868 51.629 60.932 51.534 60.948 51.492 61.042 51.476 61.146 51.476 61.255 51.460 61.359 51.443 61.473 51.443 61.483 51.356 61.546 51.288 61.629 51.279 61.669 51.247 61.546 51.160 61.512 51.065 61.485 51.032 61.472 50.938 61.445 50.851 61.421 50.800 61.291 50.776 61.173 50.760 61.057 50.725 60.925 50.701 60.806 50.684 60.680 50.701 60.577 50.701 60.467 50.709 60.351 50.735 60.252 50.794 60.155 50.871 60.141 50.887 60.038 50.871 59.978 50.855 59.962 50.847 59.959 50.760 59.915 50.664 59.869 50.648 59.853 50.561 59.710 50.545 59.595 50.537 59.483 50.624 59.549 50.659 59.442 50.659 59.333 50.693 59.227 50.693 59.117 50.709 59.014 50.709 58.961 50.735 58.861 50.812 58.770 50.820 58.664 50.889 58.580 50.984 58.595 51.071 58.594 51.097 58.484 51.097 58.420 51.184 58.333 51.158 58.249 51.089 58.104 51.105 58.000 51.121 57.897 51.138 57.793 51.112 57.750 51.025 57.752 50.929 57.727 50.945 57.623 50.885 57.491 50.885 57.482 50.911 57.382 50.998 57.316 51.041 57.212 51.128 57.179 51.094 57.057 51.094 56.948 51.085 56.835 51.094 56.719 51.007 56.657 51.057 56.565 51.073 56.451 50.978 56.397 50.920 56.267 50.861 56.137 50.826 56.125 50.739 56.063 50.663 55.927 50.628 55.806 50.559 55.673 50.618 55.574 50.687 55.489 50.670 55.363 50.721 55.272 50.782 55.183 50.833 55.081 50.920 55.002 50.927 54.951 50.970 54.879 51.012 54.773 51.055 54.678 51.021 54.547 50.934 54.571 50.856 54.664 50.762 54.652 50.675 54.677 50.588 54.637 50.545 54.513 50.545 54.502 50.606 54.414 50.693 54.423 50.780 54.432 50.875 54.508 50.909 54.400 50.925 54.296 50.986 54.207 51.081 54.152 51.132 54.096 51.132 54.085 51.190 53.995 51.206 53.880 51.223 53.776 51.257 53.678 51.344 53.631 51.439 53.588 51.465 53.477 51.508 53.381 51.508 53.261 51.492 53.135 51.492 53.015 51.467 52.943 51.502 52.845 51.485 52.719 51.478 52.597 51.512 52.534 51.528 52.518 51.615 52.480 51.702 52.398 51.797 52.376 51.746 52.249 51.678 52.106 51.694 51.991 51.652 51.857 51.565 51.819 51.478 51.725 51.554 51.639 51.504 51.513 51.488 51.434 51.575 51.351 51.662 51.379 51.712 51.285 51.704 51.162 51.704 51.008 51.755 50.904 51.781 50.802 51.694 50.818 51.607 50.832 51.641 50.732 51.657 50.627 51.563 50.567 51.476 50.550 51.417 50.422 51.330 50.375 51.288 50.252 51.271 50.137 51.255 50.023 51.221 49.959 51.204 49.933 51.128 49.790 51.128 49.560 51.101 49.442 51.014 49.396 50.920 49.464 50.833 49.341 50.816 49.227 50.739 49.095 50.663 48.953 50.620 48.831 50.646 48.729 50.670 48.617 50.620 48.711 50.533 48.706 50.438 48.721 50.351 48.738 50.177 48.816 50.100 48.902 50.058 48.923 50.023 48.893 49.948 48.753 49.916 48.659 49.882 48.533 49.866 48.420 49.900 48.320 49.967 48.228 50.025 48.157 50.112 48.129 50.189 48.043 50.240 47.984 50.309 47.895 50.377 47.795 50.438 47.704 50.480 47.607 50.404 47.466 50.309 47.330 50.222 47.315 50.153 47.361 50.066 47.326 50.023 47.284 49.955 47.148 49.922 47.031 49.837 46.935 49.428 46.837 49.353 46.872 49.311 46.980 49.244 47.072 49.158 47.084 49.065 47.009 49.006 46.887 48.998 46.865 48.982 46.828 48.889 46.764 48.839 46.742 48.764 46.704 48.706 46.670 ; #803 9 9.064 98.368 9.064 98.322 8.980 98.326 ; #804 9 8.274 98.372 8.274 98.354 8.191 98.358 8.108 98.345 8.017 98.322 7.934 98.355 7.850 98.387 7.934 98.467 8.017 98.471 8.108 98.486 8.191 98.490 8.247 98.399 8.272 98.374 ; #805 9 8.199 98.603 8.199 98.595 8.108 98.644 8.025 98.677 8.116 98.673 ; #806 9 7.549 99.171 7.640 99.148 7.723 99.089 7.640 99.102 ; #807 9 6.794 99.733 6.754 99.696 6.671 99.673 6.630 99.766 6.713 99.753 6.796 99.740 ; #808 9 9.661 100.060 9.596 100.000 9.512 100.059 9.568 100.118 9.659 100.059 ; #809 9 9.876 100.052 9.876 100.034 9.793 100.058 9.793 100.133 9.876 100.054 ; #810 9 12.087 102.371 12.079 102.465 12.162 102.456 12.228 102.368 12.138 102.367 12.089 102.371 ; #811 9 11.840 102.640 11.840 102.631 11.756 102.614 11.673 102.670 11.756 102.687 ; #812 9 52.790 173.182 52.867 173.322 52.884 173.465 52.857 173.543 52.865 173.673 52.891 173.586 52.960 173.562 52.976 173.461 53.019 173.403 53.019 173.292 53.011 173.171 53.035 173.080 53.035 172.969 52.958 172.760 52.958 172.872 52.916 172.929 52.924 173.051 52.829 172.997 52.829 173.108 52.786 173.176 ; #813 9 51.860 177.555 51.876 177.586 51.963 177.709 51.979 177.850 52.038 177.816 52.125 177.928 52.108 177.797 52.021 177.738 51.996 177.594 51.909 177.502 51.858 177.547 ; #814 9 51.807 178.630 51.850 178.575 51.858 178.476 51.833 178.554 ; #815 9 51.936 178.778 51.996 178.855 51.971 178.713 ; #816 9 51.659 179.123 51.659 178.916 51.625 178.982 51.617 179.081 51.591 179.167 51.548 179.222 51.514 179.298 51.472 179.363 51.437 179.438 51.395 179.493 51.403 179.557 51.411 179.677 51.427 179.678 51.427 179.658 51.443 179.558 51.460 179.470 51.502 179.415 51.536 179.339 51.570 179.264 51.613 179.209 51.645 179.130 51.654 179.141 51.654 179.121 ; #817 9 51.911 179.902 51.911 179.911 51.998 -179.975 52.032 179.950 52.058 179.874 51.971 179.740 51.929 179.804 51.913 179.904 ; #818 9 57.149 -170.029 57.219 -169.906 57.255 -169.975 57.211 -170.160 57.184 -170.088 57.150 -170.026 ; #819 9 51.694 -177.390 51.746 -177.267 51.771 -177.124 51.728 -177.060 51.779 -176.882 51.866 -176.877 51.953 -176.815 51.945 -176.936 51.850 -176.966 51.807 -177.132 51.757 -177.309 51.741 -177.451 51.698 -177.387 ; #820 9 51.625 -176.700 51.702 -176.588 51.650 -176.537 51.737 -176.357 51.789 -176.177 51.876 -176.171 51.807 -176.153 51.765 -176.089 51.824 -176.010 51.900 -176.028 51.876 -176.171 51.876 -176.281 51.953 -176.299 52.021 -176.318 51.945 -176.531 51.858 -176.537 51.824 -176.461 51.824 -176.582 51.840 -176.671 51.779 -176.631 51.684 -176.737 51.625 -176.705 ; #821 9 51.815 -175.883 51.866 -175.826 51.850 -175.738 51.892 -175.791 51.850 -175.958 ; #822 9 52.172 -174.292 52.139 -174.326 52.147 -174.436 52.139 -174.557 52.070 -174.760 52.087 -174.848 52.054 -175.013 52.054 -174.782 52.078 -174.639 52.070 -174.529 52.078 -174.397 52.113 -174.241 52.163 -174.061 52.163 -173.830 52.206 -173.883 52.275 -173.910 52.282 -173.789 52.369 -173.735 52.404 -173.809 52.438 -173.874 52.412 -174.020 52.325 -174.159 52.325 -174.048 52.238 -174.079 52.170 -174.292 ; #823 9 52.060 -173.228 52.076 -173.216 52.076 -173.106 52.110 -172.949 52.110 -172.828 52.127 -172.695 52.135 -172.795 52.143 -172.894 52.143 -173.235 52.177 -173.299 52.170 -173.431 52.145 -173.575 52.161 -173.674 52.161 -173.784 52.137 -173.696 52.094 -173.633 52.087 -173.533 52.087 -173.423 52.094 -173.302 ; #824 9 52.284 -172.258 52.311 -172.191 52.398 -172.051 52.414 -172.150 52.380 -172.308 52.293 -172.363 52.284 -172.263 ; #825 9 52.572 -170.525 52.596 -170.501 52.683 -170.293 52.726 -170.355 52.710 -170.488 52.623 -170.576 ; #826 9 -10.075 142.198 -10.067 142.225 -9.977 142.251 -9.992 142.158 -10.075 142.196 ; #827 9 -10.151 142.341 -10.110 142.364 -10.027 142.361 -10.067 142.272 -10.151 142.338 ; #828 9 -8.620 143.717 -8.537 143.710 -8.472 143.610 -8.398 143.500 -8.375 143.403 -8.350 143.306 -8.408 143.406 -8.498 143.508 -8.539 143.607 -8.622 143.718 ; #829 9 -8.380 143.657 -8.348 143.701 -8.265 143.647 -8.257 143.552 -8.313 143.453 -8.353 143.551 -8.378 143.657 ; #830 9 -8.330 143.776 -8.265 143.770 -8.249 143.666 -8.332 143.776 ; #831 9 -7.990 143.813 -7.949 143.809 -7.964 143.716 ; #832 9 -7.715 144.082 -7.674 144.078 -7.634 143.980 -7.717 144.082 ; #833 9 -4.656 146.026 -4.600 146.118 -4.517 146.133 -4.426 146.075 -4.492 145.983 -4.575 145.949 -4.658 146.026 ; #834 9 -5.347 147.201 -5.314 147.302 -5.223 147.285 -5.140 147.260 -5.099 147.162 -5.173 147.074 -5.256 147.110 ; #835 9 -5.746 148.068 -5.688 148.128 -5.605 148.148 -5.513 148.130 -5.448 148.030 -5.399 147.931 -5.407 147.837 -5.498 147.837 -5.581 147.891 -5.665 147.961 -5.748 148.063 ; #836 9 -2.246 147.869 -2.246 147.932 -2.163 147.912 ; #837 9 -5.362 148.185 -5.355 148.193 -5.272 148.157 -5.362 148.183 ; #838 9 -5.846 148.956 -5.894 149.006 -5.953 149.115 -6.036 149.178 -5.985 149.268 -5.955 149.368 -5.970 149.464 -6.011 149.562 -6.101 149.625 -6.185 149.696 -6.192 149.792 -6.185 149.885 -6.185 149.980 -6.177 150.082 -6.210 150.085 -6.194 150.179 -6.163 150.270 -6.179 150.375 -6.187 150.471 -6.146 150.570 -6.081 150.659 -6.055 150.751 -6.039 150.844 -6.007 150.867 -5.916 150.897 -5.924 150.992 -5.931 151.096 -5.875 151.185 -5.842 151.277 -5.759 151.353 -5.751 151.381 -5.686 151.469 -5.603 151.500 -5.519 151.527 -5.428 151.519 -5.436 151.623 -5.436 151.717 -5.444 151.813 -5.484 151.911 -5.436 152.009 -5.380 152.099 -5.297 152.186 -5.214 152.187 -5.123 152.104 -5.040 152.022 -4.956 152.025 -4.873 152.051 -4.888 152.146 -4.896 152.241 -4.848 152.342 -4.765 152.402 -4.681 152.445 -4.591 152.470 -4.508 152.466 -4.417 152.426 -4.409 152.425 -4.326 152.459 -4.243 152.447 -4.243 152.353 -4.159 152.246 -4.076 152.300 -4.109 152.207 -4.150 152.105 -4.233 152.054 -4.200 151.958 -4.117 151.891 -4.101 151.787 -4.101 151.693 -4.167 151.601 -4.250 151.622 -4.341 151.671 -4.424 151.703 -4.508 151.715 -4.598 151.728 -4.681 151.722 -4.765 151.743 -4.848 151.700 -4.856 151.655 -4.848 151.560 -4.823 151.455 -4.871 151.363 -4.937 151.271 -5.020 151.181 -5.103 151.113 -5.187 151.086 -5.270 151.084 -5.353 151.017 -5.378 150.925 -5.378 150.830 -5.444 150.733 -5.452 150.725 -5.368 150.623 -5.353 150.519 -5.401 150.428 -5.459 150.339 -5.452 150.235 -5.368 150.181 -5.285 150.137 -5.202 150.092 -5.111 150.141 -5.028 150.168 -4.962 150.259 -4.912 150.162 -4.986 150.071 -5.069 150.060 -5.159 150.060 -5.243 149.983 -5.326 150.046 -5.409 149.979 -5.409 149.875 -5.467 149.786 -5.426 149.687 -5.450 149.595 -5.458 149.587 -5.465 149.493 -5.481 149.391 -5.496 149.298 -5.413 149.188 -5.380 149.090 -5.388 148.996 -5.428 148.906 -5.388 148.807 -5.380 148.703 -5.428 148.613 -5.345 148.511 -5.401 148.421 -5.484 148.401 -5.567 148.399 -5.651 148.453 -5.691 148.551 -5.732 148.658 -5.732 148.752 -5.815 148.854 -5.840 148.951 ; #839 9 -4.616 149.630 -4.560 149.628 -4.593 149.535 ; #840 9 -1.499 149.838 -1.458 149.882 -1.376 149.833 -1.285 149.774 -1.285 149.671 -1.376 149.646 -1.449 149.744 -1.498 149.839 ; #841 9 -9.410 150.411 -9.394 150.419 -9.311 150.440 -9.220 150.423 -9.137 150.387 -9.096 150.288 -9.179 150.192 -9.263 150.199 -9.346 150.302 -9.412 150.411 ; #842 9 -9.601 150.920 -9.593 150.928 -9.503 150.975 -9.420 150.959 -9.336 150.894 -9.320 150.797 -9.288 150.691 -9.239 150.592 -9.280 150.492 -9.363 150.528 -9.446 150.591 -9.529 150.515 -9.514 150.608 -9.547 150.706 -9.547 150.809 -9.603 150.918 ; #843 9 -2.405 150.119 -2.478 150.206 -2.561 150.283 -2.569 150.378 -2.577 150.472 -2.529 150.574 -2.437 150.570 -2.354 150.512 -2.322 150.408 -2.273 150.303 -2.314 150.210 -2.362 150.117 -2.403 150.119 ; #844 9 -10.539 150.953 -10.515 150.966 -10.431 150.954 -10.431 150.859 -10.515 150.854 ; #845 9 -9.884 150.965 -9.884 151.049 -9.917 151.006 -10.000 151.077 -10.025 151.176 -10.056 151.284 -9.973 151.319 -9.882 151.349 -9.816 151.287 -9.882 151.199 -9.922 151.202 -9.882 151.104 -9.858 151.093 -9.775 151.019 -9.692 150.917 -9.634 150.817 -9.717 150.880 -9.800 150.933 -9.884 150.958 ; #846 9 -8.721 151.228 -8.655 151.193 -8.572 151.194 -8.481 151.224 -8.398 151.198 -8.307 151.217 -8.348 151.117 -8.431 151.096 -8.464 151.203 -8.547 151.172 -8.638 151.134 -8.721 151.226 ; #847 9 -3.751 152.777 -3.718 152.681 -3.635 152.660 -3.544 152.611 -3.511 152.515 -3.428 152.465 -3.379 152.360 -3.296 152.274 -3.213 152.215 -3.130 152.108 -3.105 152.013 -3.072 151.917 -2.989 151.831 -2.923 151.734 -2.882 151.638 -2.799 151.531 -2.766 151.435 -2.774 151.341 -2.691 151.301 -2.650 151.204 -2.594 151.099 -2.521 151.002 -2.604 151.023 -2.627 150.929 -2.677 151.026 -2.685 151.129 -2.741 151.225 -2.815 151.323 -2.881 151.420 -2.937 151.526 -3.020 151.604 -3.061 151.708 -3.144 151.806 -3.227 151.893 -3.293 151.990 -3.358 152.087 -3.366 152.190 -3.391 152.286 -3.457 152.383 -3.540 152.470 -3.624 152.491 -3.714 152.569 -3.797 152.647 -3.889 152.697 -3.972 152.726 -4.055 152.776 -4.138 152.788 -4.221 152.782 -4.312 152.768 -4.395 152.772 -4.478 152.804 -4.562 152.825 -4.645 152.903 -4.736 152.961 -4.653 153.053 -4.562 153.104 -4.529 153.111 -4.438 153.154 -4.355 153.133 -4.271 153.213 -4.181 153.218 -4.098 153.160 -4.014 153.119 -3.931 153.050 -3.865 152.953 -3.774 152.931 -3.782 152.829 -3.751 152.772 ; #848 9 -10.598 152.819 -10.532 152.904 -10.532 152.809 -10.524 152.713 -10.516 152.617 -10.557 152.718 ; #849 9 -2.745 152.076 -2.738 152.084 -2.654 152.063 ; #850 9 -2.896 152.176 -2.896 152.185 -2.813 152.127 ; #851 9 -9.119 152.909 -9.119 152.938 -9.079 153.029 -8.988 153.059 -8.930 152.959 -8.874 152.850 -8.858 152.754 -8.916 152.664 -8.982 152.765 -9.065 152.808 -9.123 152.908 ; #852 9 -11.172 153.296 -11.106 153.286 -11.098 153.190 ; #853 9 -11.530 153.654 -11.505 153.735 -11.449 153.821 -11.391 153.717 -11.367 153.618 -11.319 153.516 -11.261 153.403 -11.286 153.312 -11.369 153.409 -11.460 153.460 -11.445 153.562 -11.536 153.651 ; #854 9 -3.128 152.761 -3.045 152.784 -2.954 152.697 -3.037 152.683 ; #855 9 -11.321 154.203 -11.281 154.280 -11.273 154.383 -11.207 154.277 -11.255 154.190 -11.271 154.089 -11.319 154.200 ; #856 9 -4.482 154.324 -4.474 154.324 -4.391 154.312 ; #857 9 -5.347 154.709 -5.264 154.776 -5.181 154.777 -5.097 154.796 -5.007 154.761 -4.924 154.674 -5.007 154.641 -5.090 154.648 -5.181 154.648 -5.264 154.673 ; #858 9 -6.111 155.090 -6.169 155.190 -6.192 155.287 -6.284 155.324 -6.367 155.314 -6.450 155.293 -6.541 155.357 -6.624 155.430 -6.680 155.530 -6.728 155.629 -6.736 155.647 -6.744 155.743 -6.728 155.836 -6.662 155.933 -6.678 156.029 -6.587 156.058 -6.504 156.013 -6.421 156.014 -6.413 156.005 -6.322 155.941 -6.239 155.858 -6.156 155.787 -6.073 155.725 -6.065 155.629 -6.009 155.529 -5.926 155.504 -5.842 155.441 -5.769 155.340 -5.686 155.277 -5.595 155.231 -5.511 155.186 -5.428 155.075 -5.436 154.981 -5.370 154.881 -5.330 154.773 -5.413 154.836 -5.496 154.835 -5.587 154.806 -5.670 154.796 -5.753 154.841 -5.836 154.840 -5.920 154.932 -5.993 155.033 -6.084 155.070 -6.107 155.098 ; #859 9 -7.017 155.865 -6.993 155.958 -6.903 155.903 -6.903 155.808 -6.986 155.770 -7.019 155.868 ; #860 9 -6.875 156.182 -6.792 156.192 -6.709 156.166 ; #861 9 -2.128 146.683 -2.087 146.776 -2.029 146.868 -2.077 146.973 -2.085 147.068 -2.085 147.162 -2.070 147.256 -2.062 147.350 -1.979 147.384 -1.954 147.487 -1.938 147.494 -1.931 147.431 -1.898 147.335 -1.882 147.240 -1.857 147.145 -1.857 147.050 -1.850 146.947 -1.882 146.854 -1.867 146.759 -1.958 146.716 -2.041 146.636 -2.124 146.676 -2.132 146.685 ; #862 9 -1.940 147.494 -1.940 147.532 -1.892 147.513 -1.940 147.497 ; #863 9 63.455 -170.702 63.472 -170.828 63.489 -170.663 63.461 -170.581 63.444 -170.489 63.435 -170.371 63.407 -170.288 63.381 -170.213 63.353 -170.142 63.325 -170.059 63.299 -169.984 63.226 -169.984 63.226 -169.850 63.181 -169.762 63.513 -169.778 63.577 -169.832 63.631 -169.856 63.659 -169.939 63.685 -170.014 63.713 -170.087 63.722 -170.193 63.704 -170.347 63.631 -170.614 63.622 -170.763 63.631 -170.870 63.648 -170.973 63.648 -171.107 63.639 -171.245 63.693 -171.270 63.710 -171.374 63.747 -171.440 63.773 -171.516 63.691 -171.531 63.590 -171.641 63.461 -171.607 63.427 -171.535 63.398 -171.463 63.381 -171.361 63.364 -171.259 63.437 -170.993 63.463 -170.824 63.455 -170.705 ; #864 9 51.625 -176.695 51.702 -176.583 51.650 -176.532 51.737 -176.352 51.789 -176.172 51.876 -176.166 51.876 -176.277 51.953 -176.294 52.021 -176.313 51.945 -176.526 51.858 -176.531 51.824 -176.457 51.824 -176.577 51.840 -176.666 51.779 -176.626 51.684 -176.732 51.625 -176.700 ; #865 9 51.809 -176.145 51.767 -176.081 51.826 -176.002 51.902 -176.021 51.878 -176.164 ; #866 9 33.387 38.821 33.263 38.857 33.124 38.911 33.015 38.937 32.766 39.019 32.750 39.027 32.710 39.032 32.611 39.070 32.563 39.083 32.522 39.097 32.522 39.079 32.507 39.029 32.499 39.019 32.474 39.034 32.466 39.034 32.425 39.048 32.342 39.106 32.375 39.239 32.383 39.269 32.367 39.295 32.277 39.325 32.261 39.314 32.245 39.294 32.162 39.186 32.139 39.331 32.123 39.459 32.116 39.487 32.100 39.622 32.085 39.729 32.070 39.825 32.044 40.009 32.036 40.068 32.021 40.184 31.996 40.329 31.980 40.426 31.889 40.593 31.806 40.740 31.707 40.915 31.634 41.054 31.510 41.257 31.419 41.423 31.412 41.432 31.363 41.543 31.331 41.648 31.323 41.655 31.239 41.862 31.199 41.956 31.166 42.060 31.050 42.214 30.926 42.376 30.835 42.494 30.736 42.620 30.595 42.810 30.529 42.900 30.464 43.000 30.373 43.135 30.299 43.244 30.234 43.334 30.150 43.441 30.067 43.568 30.059 43.576 30.052 43.584 29.978 43.683 29.922 43.786 29.914 43.794 29.824 43.911 29.740 44.032 29.609 44.225 29.510 44.362 29.427 44.482 29.344 44.600 29.270 44.700 29.262 44.827 29.255 44.934 29.247 44.981 29.239 45.088 29.231 45.262 29.216 45.436 29.201 45.599 29.193 45.763 29.177 45.907 29.162 46.090 29.146 46.285 29.139 46.391 29.169 46.493 29.177 46.523 29.193 46.533 29.258 46.626 29.299 46.640 29.299 46.658 29.314 46.669 29.406 46.726 29.489 46.791 29.555 46.846 29.638 46.902 29.721 46.949 29.804 46.975 29.895 47.023 29.978 47.050 30.069 47.109 30.094 47.143 30.117 47.244 30.150 47.356 30.150 47.681 30.142 47.698 30.110 47.801 30.087 47.896 30.102 47.898 30.168 47.889 30.085 47.916 30.108 48.018 30.100 48.115 30.067 48.209 30.019 48.300 29.993 48.404 29.993 48.503 30.019 48.488 30.027 48.489 30.027 48.498 30.067 48.406 30.141 48.386 30.224 48.359 30.307 48.322 30.390 48.246 30.405 48.150 30.489 48.123 30.497 48.115 30.520 48.031 30.603 48.003 30.694 47.997 30.785 48.000 30.876 48.004 30.959 48.006 31.050 48.010 31.058 47.912 31.058 47.706 31.141 47.669 31.232 47.672 31.398 47.676 31.489 47.689 31.572 47.730 31.663 47.761 31.746 47.802 31.779 47.816 31.863 47.836 31.946 47.769 32.029 47.693 32.060 47.679 32.068 47.681 32.075 47.672 32.149 47.595 32.164 47.578 32.164 47.560 32.247 47.523 32.331 47.468 32.396 47.410 32.404 47.420 32.495 47.384 32.528 47.301 32.528 47.261 32.520 47.242 32.512 47.183 32.545 47.088 32.611 46.998 32.667 46.897 32.741 46.808 32.814 46.709 32.870 46.617 32.878 46.600 32.928 46.507 32.969 46.443 32.992 46.347 33.000 46.249 32.992 46.139 33.075 46.141 33.133 46.049 33.165 46.132 33.222 46.197 33.306 46.169 33.389 46.071 33.472 46.043 33.505 46.007 33.520 45.910 33.603 45.930 33.660 45.838 33.667 45.751 33.741 45.652 33.824 45.604 33.907 45.548 33.965 45.456 33.973 45.427 34.006 45.404 34.014 45.432 34.039 45.445 34.205 45.545 34.288 45.575 34.371 45.537 34.412 45.454 34.495 45.434 34.578 45.503 34.627 45.510 34.586 45.613 34.578 45.712 34.662 45.695 34.753 45.637 34.836 45.667 34.919 45.757 34.935 45.759 34.967 45.863 35.016 45.861 35.107 45.906 35.115 45.916 35.074 46.010 35.115 46.126 35.130 46.147 35.196 46.158 35.280 46.111 35.311 46.125 35.394 46.050 35.485 45.985 35.569 45.980 35.625 46.008 35.709 46.061 35.716 46.163 35.750 46.269 35.833 46.331 35.825 46.220 35.866 46.126 35.858 46.024 35.851 45.923 35.827 45.819 35.860 45.723 35.984 45.624 35.977 45.595 36.010 45.551 36.025 45.514 36.010 45.331 36.017 45.333 36.101 45.364 36.184 45.320 36.200 45.322 36.283 45.295 36.374 45.270 36.474 45.084 36.539 45.015 36.623 45.038 36.679 45.065 36.763 45.011 36.763 45.001 36.788 44.904 36.879 44.881 36.962 44.894 37.046 44.877 37.104 44.785 37.153 44.793 37.176 44.737 37.192 44.639 37.117 44.526 37.061 44.416 36.978 44.323 37.044 44.233 37.127 44.218 37.211 44.268 37.294 44.192 37.320 44.094 37.304 43.991 37.230 43.878 37.238 43.779 37.238 43.677 37.261 43.570 37.269 43.482 37.318 43.379 37.325 43.279 37.358 43.183 37.358 43.081 37.325 42.975 37.351 42.869 37.374 42.771 37.333 42.737 37.250 42.663 37.158 42.591 37.143 42.530 37.117 42.425 37.110 42.365 37.069 42.387 36.986 42.295 36.970 42.274 36.930 42.231 36.873 42.162 36.825 42.096 36.817 42.086 36.784 42.050 36.693 41.948 36.609 41.826 36.594 41.723 36.570 41.619 36.555 41.516 36.506 41.399 36.466 41.374 36.409 41.336 36.394 41.324 36.378 41.312 36.112 41.275 36.021 41.302 35.937 41.348 35.847 41.394 35.755 41.391 35.664 41.397 35.581 41.336 35.507 41.285 35.416 41.273 35.332 41.252 35.249 41.222 35.165 41.219 35.149 41.217 35.127 41.223 35.027 41.228 34.994 41.223 34.903 41.231 34.813 41.231 34.729 41.172 34.638 41.101 34.548 41.063 34.465 41.024 34.439 40.981 34.406 40.910 34.350 40.804 34.343 40.773 34.317 40.733 34.284 40.650 34.186 40.439 34.128 40.333 34.079 40.219 34.039 40.136 33.991 40.021 33.965 39.979 33.917 39.874 33.869 39.760 33.843 39.708 33.795 39.594 33.696 39.384 33.638 39.279 33.539 39.069 33.491 38.955 33.476 38.935 33.427 38.830 ; #867 9 24.811 -81.481 24.811 -81.499 24.728 -81.408 24.811 -81.479 ; #868 9 24.834 -81.010 24.786 -81.098 24.826 -81.008 ; #869 9 18.046 -66.022 18.079 -65.951 18.162 -65.876 18.253 -65.820 18.286 -65.729 18.369 -65.712 18.452 -65.739 18.475 -65.838 18.516 -65.939 18.531 -66.036 18.506 -66.129 18.539 -66.238 18.555 -66.336 18.562 -66.441 18.555 -66.536 18.562 -66.642 18.570 -66.739 18.562 -66.834 18.570 -66.939 18.570 -67.035 18.593 -67.134 18.570 -67.227 18.487 -67.243 18.454 -67.335 18.363 -67.297 18.280 -67.220 18.197 -67.257 18.105 -67.255 18.022 -67.189 18.048 -67.096 18.022 -66.997 18.030 -66.903 18.053 -66.810 18.053 -66.705 18.046 -66.608 18.038 -66.512 18.046 -66.417 18.005 -66.316 18.013 -66.221 18.038 -66.120 18.038 -66.024 ; #870 9 -14.254 -170.654 -14.223 -170.622 -14.140 -170.543 -14.170 -170.632 ; #871 9 18.794 145.788 18.794 145.806 18.885 145.779 ; #872 9 13.317 144.821 13.343 144.861 13.434 144.874 13.517 144.904 13.600 145.011 13.683 145.033 13.658 144.925 13.575 144.866 13.492 144.750 13.409 144.755 13.317 144.817 ; #873 9 18.121 145.853 18.121 145.861 18.205 145.897 18.121 145.850 ; #874 9 14.987 145.706 14.987 145.714 15.071 145.740 15.161 145.713 15.071 145.667 ; #875 9 15.171 145.821 15.171 145.830 15.254 145.866 15.338 145.875 15.254 145.793 ; #876 9 45.538 13.551 45.546 13.459 45.461 13.498 45.376 13.570 45.368 13.550 45.282 13.558 45.190 13.576 45.190 13.681 45.122 13.618 45.055 13.688 45.005 13.748 44.913 13.778 44.829 13.868 44.888 13.931 44.972 13.974 45.098 14.007 45.057 14.038 45.057 14.121 45.132 14.113 45.217 14.189 45.241 14.200 45.326 14.221 45.411 14.285 45.396 14.349 45.354 14.453 45.287 14.557 45.278 14.576 45.211 14.680 45.179 14.793 45.094 14.833 45.061 14.841 45.061 14.851 44.976 14.859 44.892 14.824 44.807 14.842 44.723 14.871 44.639 14.940 44.598 15.012 44.514 15.114 44.440 15.217 44.414 15.258 44.373 15.371 44.332 15.475 44.324 15.475 44.340 15.383 44.371 15.279 44.356 15.173 44.340 15.058 44.255 15.107 44.171 15.209 44.080 15.311 44.005 15.392 43.939 15.504 43.882 15.585 43.831 15.698 43.800 15.801 43.749 15.892 43.665 15.870 43.581 15.937 43.557 16.041 43.598 16.147 43.622 16.252 43.629 16.303 43.588 16.416 43.522 16.623 43.489 16.726 43.481 16.830 43.396 16.931 43.313 17.020 43.256 17.122 43.223 17.225 43.207 17.266 43.140 17.367 43.132 17.376 43.117 17.395 43.076 17.413 43.035 17.515 43.035 17.525 43.060 17.618 43.126 17.602 43.142 17.592 43.142 17.583 43.183 17.533 43.225 17.431 43.258 17.381 43.342 17.271 43.357 17.252 43.406 17.223 43.491 17.206 43.506 17.207 43.514 17.217 43.571 17.105 43.612 17.015 43.670 16.944 43.737 16.864 43.812 16.753 43.845 16.691 43.929 16.643 44.013 16.553 44.037 16.523 44.095 16.420 44.144 16.317 44.228 16.249 44.261 16.199 44.285 16.169 44.402 16.173 44.410 16.163 44.451 16.113 44.492 16.105 44.543 16.087 44.592 16.028 44.684 15.960 44.733 15.930 44.766 15.900 44.766 15.880 44.774 15.809 44.848 15.706 44.915 15.760 44.999 15.731 45.048 15.742 45.124 15.726 45.148 15.727 45.241 15.759 45.267 15.792 45.275 15.834 45.275 15.949 45.217 15.998 45.192 16.039 45.106 16.142 45.048 16.245 45.048 16.254 45.057 16.264 45.114 16.328 45.199 16.414 45.241 16.436 45.249 16.446 45.273 16.466 45.273 16.572 45.257 16.687 45.241 16.791 45.275 16.793 45.324 16.857 45.282 16.960 45.267 16.950 45.225 17.063 45.199 17.177 45.199 17.292 45.183 17.406 45.168 17.457 45.168 17.563 45.192 17.606 45.134 17.708 45.118 17.749 45.118 17.854 45.170 17.897 45.177 17.916 45.201 17.947 45.134 18.058 45.150 18.153 45.158 18.268 45.150 18.373 45.116 18.401 45.116 18.421 45.124 18.473 45.116 18.543 45.085 18.647 45.051 18.654 45.051 18.706 44.991 18.683 44.917 18.795 44.909 18.899 44.917 18.961 44.941 18.942 45.033 19.041 45.048 19.032 45.098 19.034 45.183 18.988 45.199 19.040 45.207 19.082 45.223 19.198 45.223 19.323 45.280 19.327 45.280 19.285 45.297 19.181 45.312 19.191 45.321 19.163 45.312 19.120 45.321 19.111 45.336 19.061 45.404 18.949 45.489 18.934 45.540 18.957 45.572 19.010 45.572 19.000 45.588 18.959 45.588 18.854 45.663 18.858 45.756 18.833 45.756 18.844 45.824 18.857 45.883 18.789 45.891 18.789 45.949 18.751 45.956 18.645 45.956 18.603 45.871 18.537 45.838 18.493 45.796 18.385 45.788 18.270 45.788 18.259 45.796 18.218 45.820 18.158 45.820 17.946 45.828 17.841 45.828 17.831 45.851 17.726 45.868 17.611 45.883 17.593 45.969 17.525 45.976 17.419 45.984 17.368 45.976 17.348 45.984 17.319 45.976 17.309 46.018 17.249 46.034 17.250 46.042 17.220 46.050 17.221 46.066 17.211 46.082 17.203 46.089 17.203 46.115 17.175 46.131 17.165 46.139 17.136 46.199 17.087 46.240 16.983 46.264 16.900 46.323 16.841 46.332 16.841 46.381 16.811 46.397 16.773 46.430 16.668 46.490 16.564 46.498 16.512 46.531 16.408 46.555 16.366 46.547 16.259 46.480 16.215 46.413 16.254 46.397 16.264 46.397 16.147 46.422 16.129 46.407 16.044 46.332 16.021 46.298 15.904 46.290 15.832 46.290 15.823 46.264 15.770 46.240 15.727 46.240 15.633 46.173 15.579 46.087 15.637 46.046 15.678 45.971 15.665 45.921 15.653 45.887 15.662 45.887 15.672 45.879 15.672 45.853 15.523 45.853 15.503 45.822 15.440 45.806 15.388 45.790 15.305 45.741 15.219 45.733 15.219 45.725 15.251 45.701 15.365 45.685 15.365 45.685 15.335 45.669 15.303 45.610 15.281 45.560 15.299 45.544 15.308 45.469 15.200 45.469 15.191 45.510 15.076 45.536 15.036 45.529 15.003 45.536 14.984 45.520 14.868 45.546 14.753 45.570 14.690 45.663 14.599 45.695 14.591 45.703 14.561 45.677 14.550 45.619 14.497 45.568 14.464 45.527 14.357 45.527 14.296 45.534 14.264 45.542 14.245 45.534 14.193 45.518 14.141 45.518 14.109 45.560 14.004 45.503 13.961 45.495 13.951 45.479 13.857 45.505 13.752 45.505 13.691 45.512 13.620 45.520 13.588 ; #877 9 45.031 14.353 44.982 14.301 44.890 14.330 44.805 14.367 44.721 14.397 44.690 14.501 44.782 14.472 44.866 14.454 44.950 14.456 45.035 14.407 45.120 14.368 45.213 14.309 45.120 14.297 45.035 14.356 ; #878 9 44.598 14.462 44.682 14.350 44.598 14.440 44.514 14.521 ; #879 9 45.037 14.628 44.995 14.688 45.037 14.794 45.053 14.785 45.112 14.672 45.197 14.642 45.239 14.528 45.154 14.464 45.068 14.514 45.035 14.628 ; #880 9 44.868 14.699 44.809 14.698 44.817 14.803 44.866 14.699 ; #881 9 44.238 14.892 44.261 14.893 44.302 14.789 44.236 14.892 ; #882 9 44.484 15.008 44.459 15.037 44.375 15.108 44.408 15.214 44.492 15.111 44.525 15.007 44.583 15.009 44.624 14.947 44.657 14.842 44.741 14.740 44.649 14.810 44.565 14.901 44.481 15.004 ; #883 9 44.082 15.002 44.007 15.061 43.976 15.165 44.043 15.062 44.134 15.003 44.160 14.899 44.085 15.002 ; #884 9 44.338 15.124 44.371 15.020 44.330 15.124 ; #885 9 43.901 15.235 43.835 15.338 43.786 15.451 43.860 15.349 43.917 15.236 ; #886 9 44.091 15.241 44.117 15.137 44.060 15.240 ; #887 9 43.708 15.629 43.674 15.741 43.715 15.629 ; #888 9 43.545 16.218 43.530 16.218 43.555 16.323 43.547 16.218 ; #889 9 43.396 16.380 43.412 16.277 43.371 16.379 ; #890 9 43.307 16.692 43.314 16.754 43.381 16.860 43.406 16.757 43.422 16.643 43.430 16.539 43.430 16.435 43.346 16.471 43.313 16.583 43.305 16.687 ; #891 9 42.976 16.978 42.960 17.091 42.976 17.196 43.017 17.083 43.025 16.979 42.999 16.874 43.015 16.771 42.966 16.656 42.958 16.769 42.943 16.872 ; #892 9 43.158 17.067 43.183 17.172 43.183 17.059 43.191 16.955 43.199 16.851 43.207 16.747 43.258 16.645 43.242 16.540 43.219 16.435 43.167 16.641 43.175 16.746 43.167 16.850 43.160 16.954 43.160 17.067 ; #893 9 42.739 17.747 42.747 17.747 42.780 17.635 42.806 17.532 42.798 17.428 42.782 17.531 42.767 17.644 42.741 17.747 ; #894 9 41.681 -71.372 41.597 -71.416 41.504 -71.405 41.589 -71.330 41.681 -71.333 ; #895 9 41.512 -70.669 41.504 -70.769 41.438 -70.842 41.397 -70.927 41.397 -70.824 41.405 -70.724 41.430 -70.623 41.514 -70.670 ; #896 9 41.293 -70.110 41.293 -70.101 41.377 -70.107 41.444 -70.156 41.360 -70.138 41.344 -70.234 41.329 -70.340 41.295 -70.212 41.295 -70.109 ; #897 9 44.412 -68.992 44.328 -68.986 44.412 -68.950 ; #898 9 44.320 -68.724 44.313 -68.781 44.220 -68.802 44.236 -68.704 44.320 -68.721 ; #899 9 44.244 -68.498 44.203 -68.584 44.236 -68.484 ; #900 9 44.479 -68.321 44.494 -68.357 44.445 -68.440 44.371 -68.512 44.279 -68.420 44.346 -68.345 44.397 -68.253 44.481 -68.321 ; #901 9 56.629 -135.283 56.672 -135.225 56.743 -135.190 56.727 -135.054 56.674 -135.113 56.622 -135.161 56.587 -135.230 56.489 -135.171 56.400 -135.088 56.310 -134.985 56.221 -134.870 56.265 -134.812 56.444 -134.812 56.533 -134.825 56.622 -134.849 56.693 -134.814 56.783 -134.827 56.872 -134.886 56.961 -134.921 57.051 -134.934 57.149 -134.993 57.238 -135.041 57.327 -135.146 57.425 -135.191 57.477 -135.374 57.512 -135.535 57.477 -135.616 57.521 -135.546 57.556 -135.719 57.485 -135.742 57.441 -135.811 57.406 -135.881 57.317 -135.797 57.283 -135.628 57.257 -135.625 57.196 -135.624 57.221 -135.531 57.169 -135.590 57.080 -135.485 57.019 -135.533 56.930 -135.495 56.895 -135.576 56.860 -135.404 56.851 -135.404 56.835 -135.393 56.764 -135.382 56.780 -135.278 56.720 -135.316 56.641 -135.294 ; #902 9 57.924 -136.608 57.826 -136.512 57.647 -136.163 57.647 -136.278 57.558 -136.116 57.468 -135.989 57.558 -136.186 57.468 -136.091 57.406 -135.895 57.450 -135.825 57.493 -135.766 57.583 -135.781 57.672 -135.886 57.681 -136.024 57.705 -135.929 57.795 -136.024 57.743 -135.841 57.654 -135.633 57.564 -135.415 57.493 -135.197 57.493 -135.081 57.564 -135.057 57.654 -135.071 57.751 -135.116 57.787 -135.278 57.760 -135.370 57.768 -135.497 57.857 -135.645 57.947 -135.888 57.938 -135.761 57.860 -135.543 57.815 -135.359 57.815 -135.243 57.840 -135.160 57.930 -135.357 57.922 -135.219 57.948 -135.138 58.019 -135.114 58.109 -135.298 58.136 -135.449 58.171 -135.622 58.109 -135.657 58.074 -135.738 58.021 -135.786 57.986 -135.867 58.076 -135.892 58.103 -135.800 58.138 -135.720 58.227 -135.756 58.262 -135.918 58.279 -136.056 58.252 -136.148 58.209 -136.207 58.225 -136.356 58.146 -136.369 58.236 -136.464 58.184 -136.511 58.167 -136.606 58.078 -136.556 57.988 -136.418 57.899 -136.268 57.988 -136.453 57.996 -136.590 58.030 -136.577 58.127 -136.673 58.119 -136.708 57.978 -136.755 57.888 -136.648 57.924 -136.614 ; #903 9 57.441 -135.033 57.468 -135.090 57.441 -135.180 57.352 -135.009 ; #904 9 56.469 -133.763 56.485 -133.669 56.537 -133.611 56.510 -133.462 56.502 -133.326 56.564 -133.290 56.654 -133.303 56.662 -133.428 56.741 -133.402 56.830 -133.516 56.741 -133.370 56.652 -133.236 56.660 -133.121 56.757 -133.154 56.847 -133.201 56.891 -133.141 56.980 -133.223 57.032 -133.404 57.007 -133.487 57.051 -133.658 57.076 -133.815 57.103 -133.965 57.119 -134.112 57.094 -134.195 57.005 -134.137 56.916 -133.967 56.924 -134.092 56.835 -133.967 56.878 -133.908 56.780 -133.898 56.691 -133.899 56.602 -133.887 56.512 -133.853 56.458 -133.764 ; #905 9 54.649 -130.889 54.649 -130.920 54.657 -131.042 54.589 -131.079 54.502 -131.081 54.536 -130.997 54.578 -130.931 54.647 -130.884 ; #906 9 56.496 -132.895 56.496 -132.906 56.479 -133.010 56.487 -133.134 56.444 -133.204 56.365 -133.219 56.275 -133.026 56.292 -132.933 56.308 -132.840 56.398 -132.838 ; #907 9 56.826 -133.003 56.853 -133.153 56.764 -133.130 56.674 -133.083 56.631 -133.154 56.533 -133.009 56.585 -132.949 56.585 -132.823 56.645 -132.775 56.735 -132.898 56.824 -133.001 ; #908 9 54.831 -130.584 54.823 -130.630 54.736 -130.589 54.831 -130.581 ; #909 9 57.924 -136.605 58.030 -136.572 58.127 -136.667 58.119 -136.703 57.978 -136.749 57.888 -136.642 57.924 -136.608 ; #910 9 57.360 -135.919 57.360 -135.951 57.335 -136.034 57.246 -136.032 57.149 -135.963 57.121 -136.042 57.024 -136.017 57.032 -135.913 57.059 -135.833 57.111 -135.785 57.209 -135.810 57.260 -135.762 57.358 -135.910 ; #911 9 55.433 -133.595 55.442 -133.627 55.433 -133.740 55.363 -133.775 55.265 -133.731 55.336 -133.696 55.379 -133.637 55.431 -133.590 ; #912 9 55.932 -134.280 55.959 -134.303 55.959 -134.428 55.943 -134.521 55.853 -134.429 55.897 -134.359 55.930 -134.277 ; #913 9 55.469 -133.787 55.486 -133.777 55.575 -133.799 55.531 -133.867 55.487 -133.926 55.471 -133.792 ; #914 9 55.363 -133.437 55.354 -133.493 55.321 -133.575 55.232 -133.552 55.232 -133.429 55.265 -133.357 55.363 -133.435 ; #915 9 55.550 -133.638 55.550 -133.670 55.461 -133.634 55.550 -133.633 ; #916 9 54.918 -132.734 54.960 -132.871 54.873 -132.862 54.786 -132.754 54.873 -132.807 54.916 -132.732 ; #917 9 55.067 -132.615 55.016 -132.664 54.999 -132.530 54.912 -132.455 54.835 -132.481 54.851 -132.386 54.783 -132.432 54.724 -132.254 54.732 -132.140 54.819 -132.124 54.906 -132.156 54.956 -132.099 55.044 -132.104 55.028 -132.196 55.020 -132.309 55.064 -132.240 55.107 -132.182 55.167 -132.143 55.238 -132.107 55.230 -132.220 55.246 -132.354 55.273 -132.275 55.363 -132.285 55.423 -132.484 55.423 -132.598 55.450 -132.507 55.466 -132.404 55.527 -132.604 55.502 -132.697 55.466 -132.776 55.519 -132.717 55.571 -132.669 55.562 -132.534 55.473 -132.309 55.562 -132.376 55.750 -132.610 55.839 -132.655 55.928 -132.768 56.018 -132.891 56.053 -133.059 56.080 -133.207 56.169 -133.220 56.267 -133.241 56.356 -133.365 56.348 -133.469 56.356 -133.594 56.373 -133.730 56.321 -133.789 56.250 -133.813 56.196 -133.620 56.205 -133.516 56.169 -133.493 56.186 -133.569 56.161 -133.652 56.107 -133.698 56.107 -133.823 56.063 -133.881 56.019 -133.940 55.930 -133.882 55.974 -133.814 56.001 -133.723 56.044 -133.664 56.036 -133.540 56.072 -133.470 56.124 -133.470 56.107 -133.460 56.018 -133.413 55.928 -133.401 55.895 -133.380 55.903 -133.504 55.814 -133.403 55.893 -133.377 55.839 -133.341 55.778 -133.379 55.762 -133.482 55.700 -133.517 55.610 -133.416 55.619 -133.313 55.654 -133.233 55.670 -133.140 55.564 -133.234 55.475 -133.143 55.377 -132.975 55.377 -133.100 55.404 -133.258 55.396 -133.360 55.307 -133.349 55.290 -133.204 55.298 -133.101 55.255 -133.160 55.246 -133.026 55.298 -132.977 55.209 -132.897 55.174 -132.730 55.271 -132.785 55.174 -132.695 55.113 -132.733 55.140 -132.643 55.069 -132.611 ; #918 9 55.908 -134.100 55.881 -134.034 55.959 -134.020 55.959 -134.076 55.924 -134.098 55.916 -134.098 55.908 -134.098 ; #919 9 55.220 -132.953 55.211 -132.963 55.113 -132.920 55.053 -132.958 55.044 -132.835 55.124 -132.820 55.221 -132.952 ; #920 9 55.558 -133.422 55.585 -133.456 55.506 -133.481 ; #921 9 56.005 -133.563 56.022 -133.584 55.978 -133.643 ; #922 9 55.442 -131.962 55.381 -132.000 55.292 -131.979 55.203 -131.847 55.263 -131.809 55.353 -131.806 ; #923 9 55.263 -131.592 55.298 -131.668 55.228 -131.704 55.138 -131.707 55.049 -131.651 55.032 -131.518 55.084 -131.458 55.174 -131.480 55.263 -131.590 ; #924 9 57.924 -136.605 57.951 -136.595 57.994 -136.584 57.924 -136.608 ; #925 9 55.899 -133.385 55.908 -133.510 55.818 -133.408 55.897 -133.382 ; #926 9 45.035 -87.441 44.960 -87.490 44.876 -87.361 44.950 -87.297 45.035 -87.252 45.102 -87.210 45.154 -87.136 45.239 -87.137 45.332 -87.112 45.306 -87.201 45.221 -87.254 45.188 -87.349 45.094 -87.375 45.037 -87.445 ; #927 9 48.203 -88.593 48.229 -88.610 48.195 -88.696 48.169 -88.787 48.137 -88.884 48.096 -88.975 48.070 -89.066 48.036 -89.162 47.969 -89.333 47.876 -89.264 47.909 -89.178 47.969 -89.109 48.001 -89.012 48.027 -88.921 48.042 -88.824 48.084 -88.743 48.159 -88.683 48.201 -88.592 ; #928 9 47.378 -88.104 47.435 -88.151 47.444 -88.049 47.435 -87.926 47.521 -87.938 47.529 -88.050 47.529 -88.167 47.521 -88.269 47.487 -88.354 47.456 -88.442 47.430 -88.532 47.311 -88.671 47.244 -88.745 47.158 -88.619 47.190 -88.533 47.122 -88.606 47.037 -88.543 47.113 -88.484 47.180 -88.410 47.255 -88.350 47.289 -88.264 47.338 -88.189 47.372 -88.103 ; #929 9 45.776 -85.606 45.810 -85.656 45.717 -85.693 45.632 -85.661 45.689 -85.580 45.774 -85.603 ; #930 9 46.151 -83.735 46.151 -83.745 46.083 -83.811 45.998 -83.866 45.998 -83.760 45.975 -83.630 46.060 -83.639 46.153 -83.736 ; #931 9 45.855 -84.515 45.864 -84.529 45.778 -84.572 45.853 -84.511 ; #932 9 47.378 -88.104 47.435 -88.151 47.444 -88.049 47.435 -87.926 47.521 -87.938 47.529 -88.050 47.529 -88.167 47.521 -88.269 47.487 -88.354 47.456 -88.442 47.430 -88.532 47.311 -88.671 47.244 -88.745 47.158 -88.619 47.190 -88.533 47.122 -88.606 47.037 -88.543 47.113 -88.484 47.180 -88.410 47.255 -88.350 47.289 -88.264 47.338 -88.189 47.372 -88.103 ; #933 9 48.203 -88.593 48.229 -88.610 48.195 -88.696 48.169 -88.787 48.137 -88.884 48.096 -88.975 48.070 -89.066 48.036 -89.162 47.969 -89.333 47.876 -89.264 47.909 -89.178 47.969 -89.109 48.001 -89.012 48.027 -88.921 48.042 -88.824 48.084 -88.743 48.159 -88.683 48.201 -88.592 ; #934 9 46.151 -83.735 46.151 -83.745 46.083 -83.811 45.998 -83.866 45.998 -83.760 45.975 -83.630 46.060 -83.639 46.153 -83.736 ; #935 9 45.776 -85.606 45.810 -85.656 45.717 -85.693 45.632 -85.661 45.689 -85.580 45.774 -85.603 ; #936 9 45.035 -87.441 44.960 -87.490 44.876 -87.361 44.950 -87.297 45.035 -87.252 45.102 -87.210 45.154 -87.136 45.239 -87.137 45.332 -87.112 45.306 -87.201 45.221 -87.254 45.188 -87.349 45.094 -87.375 45.037 -87.445 ; #937 10 -38.915 -62.020 -38.874 -62.006 -38.889 -62.113 ; #938 10 -39.089 -61.904 -39.016 -61.890 -38.967 -61.976 -38.990 -62.085 -39.048 -62.002 ; #939 10 77.515 -72.471 77.515 -72.586 77.425 -72.628 77.405 -72.441 77.360 -72.222 77.370 -72.091 77.370 -71.945 77.380 -71.814 77.415 -71.713 77.449 -71.598 77.449 -71.758 77.470 -71.931 77.490 -72.117 77.501 -72.291 77.512 -72.464 ; #940 10 76.817 -70.204 76.797 -70.033 76.786 -69.850 76.765 -69.665 76.734 -69.469 76.734 -69.325 76.723 -69.154 76.713 -68.996 76.723 -68.866 76.723 -68.695 76.734 -68.551 76.744 -68.419 76.755 -68.289 76.642 -68.206 76.632 -68.350 76.632 -68.678 76.642 -68.861 76.632 -68.992 76.587 -69.080 76.556 -69.198 76.535 -69.316 76.514 -69.446 76.504 -69.577 76.493 -69.720 76.451 -69.825 76.372 -69.582 76.351 -69.399 76.331 -69.230 76.255 -68.980 76.221 -68.795 76.210 -68.638 76.189 -68.756 76.134 -68.561 76.134 -68.465 76.113 -68.283 76.113 -68.114 76.092 -67.932 76.092 -67.777 76.082 -67.608 76.061 -67.428 76.050 -67.259 76.030 -67.091 76.019 -66.936 76.050 -66.818 76.105 -67.027 76.218 -67.306 76.252 -67.504 76.273 -67.386 76.328 -67.297 76.328 -67.154 76.229 -66.891 76.152 -66.642 76.229 -66.578 76.273 -66.488 76.351 -66.413 76.331 -66.245 76.341 -66.102 76.299 -65.895 76.244 -65.986 76.155 -66.022 76.100 -65.814 76.100 -65.658 76.134 -65.543 76.247 -65.576 76.203 -65.368 76.192 -65.199 76.258 -65.233 76.247 -65.051 76.226 -64.884 76.349 -64.915 76.317 -64.722 76.349 -64.616 76.339 -64.447 76.226 -64.329 76.226 -64.186 76.236 -64.029 76.281 -63.938 76.336 -63.845 76.380 -63.740 76.456 -63.685 76.435 -63.504 76.414 -63.323 76.394 -63.130 76.270 -63.001 76.336 -62.920 76.336 -62.590 76.304 -62.399 76.315 -62.267 76.281 -62.086 76.260 -61.905 76.239 -61.712 76.260 -61.579 76.249 -61.426 76.239 -61.257 76.218 -61.077 76.105 -61.035 76.095 -60.880 76.126 -60.759 76.116 -60.605 76.116 -60.463 76.050 -60.221 76.030 -60.212 76.008 -60.215 76.019 -60.072 76.040 -59.938 75.940 -59.972 75.920 -59.807 75.940 -59.674 75.951 -59.531 75.930 -59.352 75.896 -59.457 75.784 -59.266 75.784 -59.124 75.794 -58.980 75.804 -58.850 75.804 -58.695 75.749 -58.791 75.715 -58.599 75.603 -58.439 75.503 -58.488 75.472 -58.609 75.461 -58.738 75.430 -58.859 75.409 -58.683 75.464 -58.600 75.474 -58.458 75.385 -58.504 75.273 -58.397 75.252 -58.222 75.163 -58.268 75.108 -58.070 75.074 -57.880 75.042 -57.707 75.031 -57.683 74.988 -57.500 74.969 -57.329 74.978 -57.197 74.897 -56.984 74.847 -57.079 74.837 -57.223 74.734 -57.156 74.775 -57.039 74.713 -56.818 74.713 -56.678 74.610 -56.547 74.619 -56.416 74.548 -56.491 74.538 -56.636 74.519 -56.770 74.529 -56.918 74.478 -56.721 74.478 -56.569 74.488 -56.438 74.438 -56.546 74.438 -56.698 74.428 -56.828 74.378 -56.632 74.388 -56.488 74.356 -56.599 74.337 -56.721 74.306 -56.832 74.287 -56.968 74.277 -57.110 74.246 -57.246 74.236 -57.389 74.206 -57.501 74.196 -57.340 74.206 -57.198 74.225 -57.063 74.225 -56.912 74.244 -56.777 74.275 -56.666 74.304 -56.539 74.335 -56.416 74.232 -56.463 74.172 -56.561 74.131 -56.361 74.122 -56.201 74.090 -56.312 74.009 -56.102 73.978 -55.937 73.937 -56.051 73.834 -55.974 73.825 -55.828 73.805 -55.961 73.856 -56.156 73.794 -56.240 73.784 -56.093 73.755 -56.206 73.715 -56.033 73.674 -55.860 73.571 -55.716 73.540 -55.551 73.521 -55.397 73.461 -55.320 73.490 -55.482 73.439 -55.588 73.370 -55.678 73.351 -55.525 73.310 -55.639 73.219 -55.710 73.238 -55.889 73.188 -55.696 73.159 -55.535 73.140 -55.381 73.181 -55.254 73.131 -55.074 73.028 -54.932 72.925 -55.006 72.906 -55.126 72.874 -54.963 72.915 -54.849 72.865 -54.955 72.783 -55.021 72.733 -55.115 72.695 -55.231 72.664 -55.069 72.623 -54.885 72.632 -54.745 72.623 -54.589 72.603 -54.733 72.603 -54.882 72.613 -55.026 72.603 -55.165 72.623 -55.318 72.623 -55.467 72.632 -55.623 72.623 -55.763 72.582 -55.877 72.523 -55.677 72.573 -55.585 72.513 -55.398 72.532 -55.266 72.551 -55.134 72.500 -54.942 72.481 -55.075 72.431 -55.168 72.362 -55.244 72.321 -55.328 72.312 -55.362 72.271 -55.462 72.190 -55.541 72.190 -55.688 72.117 -55.761 72.077 -55.592 72.058 -55.441 72.067 -55.302 72.067 -55.154 72.098 -55.046 72.149 -54.953 72.218 -54.865 72.290 -54.778 72.328 -54.674 72.247 -54.754 72.156 -54.812 72.116 -54.925 72.034 -55.126 72.024 -55.278 72.024 -55.412 72.014 -55.552 71.934 -55.630 71.914 -55.760 71.886 -55.871 71.876 -56.010 71.816 -56.093 71.766 -55.916 71.663 -55.828 71.551 -55.655 71.519 -55.482 71.529 -55.356 71.631 -55.493 71.560 -55.298 71.509 -55.122 71.490 -54.972 71.500 -54.822 71.500 -54.688 71.519 -54.545 71.529 -54.420 71.557 -54.296 71.577 -54.179 71.646 -54.090 71.749 -54.269 71.852 -54.329 71.771 -54.115 71.780 -53.988 71.883 -54.126 71.883 -53.980 71.893 -53.840 71.921 -53.729 71.984 -53.634 72.087 -53.731 72.199 -53.849 72.280 -54.052 72.486 -54.118 72.486 -53.821 72.477 -53.961 72.448 -54.098 72.345 -54.000 72.233 -53.814 72.130 -53.663 72.017 -53.596 71.914 -53.551 71.955 -53.438 71.964 -53.298 72.067 -53.236 72.098 -53.127 72.117 -52.994 72.058 -53.094 71.955 -53.156 71.936 -53.275 71.905 -53.384 71.836 -53.462 71.826 -53.319 71.826 -52.878 71.766 -52.683 71.756 -52.529 71.756 -52.382 71.775 -52.251 71.794 -52.119 71.855 -52.033 71.845 -51.890 71.773 -51.967 71.734 -52.083 71.725 -52.223 71.715 -52.349 71.715 -52.496 71.706 -52.635 71.696 -52.761 71.677 -52.892 71.649 -53.003 71.608 -53.116 71.557 -53.209 71.548 -53.068 71.529 -52.919 71.519 -52.764 71.529 -52.626 71.548 -52.508 71.577 -52.397 71.596 -52.265 71.615 -52.134 71.634 -52.016 71.644 -51.889 71.644 -51.742 71.625 -51.580 71.586 -51.697 71.605 -51.846 71.586 -51.977 71.577 -52.104 71.567 -52.242 71.538 -52.366 71.507 -52.474 71.404 -52.510 71.373 -52.631 71.354 -52.749 71.313 -52.583 71.332 -52.452 71.371 -52.349 71.402 -52.240 71.452 -52.135 71.483 -52.013 71.503 -51.882 71.400 -51.788 71.400 -51.934 71.390 -52.072 71.371 -52.204 71.332 -52.306 71.292 -52.408 71.242 -52.234 71.270 -52.111 71.280 -51.972 71.248 -51.802 71.268 -51.671 71.277 -51.533 71.227 -51.627 71.155 -51.437 71.155 -51.291 71.165 -51.165 71.105 -51.276 71.095 -51.401 71.126 -51.559 71.145 -51.732 71.177 -51.890 71.205 -52.046 71.165 -52.173 71.126 -51.996 71.064 -51.801 71.036 -51.633 71.036 -51.500 70.985 -51.328 71.004 -51.197 71.014 -51.072 70.911 -50.967 70.873 -51.069 70.923 -51.254 70.942 -51.402 70.901 -51.503 70.892 -51.628 70.832 -51.449 70.873 -51.348 70.822 -51.176 70.813 -51.036 70.784 -50.868 70.794 -51.020 70.784 -51.158 70.681 -50.945 70.710 -51.113 70.681 -51.223 70.722 -51.387 70.722 -51.519 70.650 -51.318 70.610 -51.154 70.610 -51.299 70.559 -51.115 70.559 -50.970 70.600 -50.870 70.672 -50.781 70.569 -50.833 70.466 -50.794 70.466 -50.926 70.485 -51.073 70.495 -51.212 70.535 -51.388 70.555 -51.535 70.555 -51.680 70.595 -51.844 70.626 -52.013 70.677 -52.185 70.746 -52.386 70.787 -52.551 70.846 -52.731 70.878 -52.901 70.887 -53.042 70.897 -53.194 70.906 -53.335 70.897 -53.473 70.887 -53.610 70.897 -53.763 70.928 -53.946 70.938 -54.087 70.957 -54.235 70.957 -54.381 70.938 -54.498 70.897 -54.609 70.868 -54.731 70.806 -54.812 70.724 -54.612 70.621 -54.410 70.540 -54.211 70.511 -54.031 70.502 -53.879 70.492 -53.739 70.482 -53.587 70.482 -53.442 70.442 -53.277 70.413 -53.098 70.373 -52.933 70.281 -52.717 70.178 -52.518 70.159 -52.360 70.178 -52.243 70.138 -52.068 70.138 -51.780 70.128 -51.736 70.088 -51.664 70.128 -51.552 70.178 -51.475 70.198 -51.359 70.148 -51.215 70.128 -51.332 70.097 -51.452 70.088 -51.313 70.088 -51.169 70.128 -50.937 70.128 -50.873 70.159 -50.741 70.169 -50.605 70.169 -50.461 70.128 -50.442 70.128 -50.454 70.097 -50.562 70.028 -50.652 69.988 -50.492 69.882 -50.418 69.891 -50.567 69.909 -50.711 69.871 -50.828 69.794 -50.918 69.803 -50.781 69.737 -50.605 69.756 -50.749 69.774 -50.904 69.735 -51.020 69.638 -50.992 69.638 -50.718 69.677 -50.614 69.638 -50.457 69.638 -50.600 69.582 -50.705 69.620 -50.873 69.602 -51.004 69.525 -51.093 69.429 -51.075 69.411 -51.193 69.345 -51.278 69.327 -51.135 69.336 -51.011 69.372 -50.905 69.420 -50.795 69.438 -50.666 69.341 -50.559 69.293 -50.396 69.264 -50.507 69.273 -50.643 69.217 -50.734 69.199 -50.592 69.151 -50.429 69.142 -50.553 69.083 -50.643 69.180 -50.749 69.219 -50.906 69.201 -51.023 69.192 -51.147 69.269 -51.070 69.277 -51.218 69.242 -51.323 69.145 -51.296 69.038 -51.285 69.030 -51.303 69.003 -51.427 68.906 -51.474 68.896 -51.326 68.926 -51.217 68.955 -51.095 68.964 -50.971 68.926 -51.087 68.878 -51.195 68.772 -51.086 68.791 -51.241 68.734 -51.343 68.734 -51.473 68.705 -51.593 68.714 -51.741 68.685 -51.850 68.694 -51.986 68.741 -52.160 68.732 -52.269 68.761 -52.160 68.797 -52.070 68.770 -52.180 68.797 -52.329 68.788 -52.465 68.741 -52.573 68.741 -52.419 68.732 -52.283 68.732 -52.413 68.714 -52.542 68.705 -52.676 68.669 -52.793 68.669 -52.663 68.622 -52.759 68.603 -52.888 68.585 -53.016 68.538 -53.111 68.520 -53.240 68.502 -53.368 68.463 -53.482 68.463 -53.353 68.473 -53.230 68.481 -53.095 68.509 -52.986 68.500 -52.826 68.481 -52.967 68.396 -53.035 68.453 -52.946 68.434 -52.792 68.367 -52.615 68.385 -52.487 68.385 -52.347 68.412 -52.236 68.412 -52.095 68.430 -51.979 68.448 -51.862 68.448 -51.593 68.525 -51.517 68.525 -51.658 68.590 -51.832 68.572 -51.679 68.581 -51.556 68.590 -51.421 68.608 -51.304 68.637 -51.183 68.646 -51.048 68.608 -51.163 68.599 -51.286 68.552 -51.394 68.455 -51.403 68.416 -51.516 68.389 -51.369 68.351 -51.214 68.360 -51.349 68.378 -51.502 68.349 -51.611 68.319 -51.462 68.272 -51.288 68.216 -51.121 68.207 -50.986 68.177 -50.826 68.121 -50.659 68.112 -50.524 68.103 -50.377 68.094 -50.512 68.112 -50.665 68.094 -50.781 68.130 -50.946 68.159 -51.107 68.197 -51.261 68.236 -51.417 68.236 -51.557 68.227 -51.679 68.236 -51.827 68.227 -51.949 68.218 -52.083 68.236 -52.237 68.254 -52.378 68.301 -52.551 68.339 -52.707 68.358 -52.849 68.339 -52.965 68.301 -52.809 68.236 -52.623 68.263 -52.782 68.281 -52.923 68.308 -53.071 68.326 -53.213 68.362 -53.367 68.353 -53.502 68.335 -53.618 68.335 -53.348 68.238 -53.229 68.170 -53.052 68.144 -52.892 68.135 -52.757 68.135 -52.629 68.125 -52.482 68.125 -52.354 68.107 -52.481 68.117 -52.616 68.125 -52.751 68.125 -52.892 68.164 -53.048 68.220 -53.228 68.211 -53.351 68.193 -53.478 68.164 -53.317 68.164 -53.188 68.145 -53.304 68.128 -53.431 68.092 -53.534 68.083 -53.387 68.035 -53.482 68.073 -53.650 67.977 -53.519 67.968 -53.640 68.006 -53.808 67.988 -53.924 67.941 -53.854 67.950 -54.000 67.853 -53.907 67.938 -53.855 67.882 -53.776 67.834 -53.871 67.796 -53.983 67.690 -53.919 67.699 -53.786 67.737 -53.685 67.767 -53.566 67.814 -53.472 67.871 -53.372 67.918 -53.265 67.936 -53.150 67.965 -53.030 67.965 -52.902 67.983 -52.774 68.013 -52.667 68.051 -52.553 68.069 -52.437 68.069 -52.296 68.078 -52.174 68.107 -52.054 68.125 -51.938 68.144 -51.810 68.096 -51.918 68.087 -52.040 68.049 -52.153 68.049 -52.423 68.020 -52.531 67.943 -52.337 67.925 -52.196 67.934 -52.074 67.963 -51.954 67.916 -52.061 67.878 -51.895 67.925 -51.800 67.916 -51.665 67.972 -51.563 68.078 -51.738 68.087 -51.616 68.123 -51.500 68.141 -51.385 68.094 -51.211 68.076 -51.339 68.067 -51.462 68.049 -51.578 67.952 -51.460 67.943 -51.325 67.961 -51.198 67.961 -51.070 67.990 -50.949 68.017 -51.108 68.073 -51.006 68.055 -50.853 68.047 -50.719 68.008 -50.552 67.990 -50.669 67.990 -50.797 67.972 -50.925 67.934 -51.039 67.925 -51.161 67.898 -51.283 67.898 -51.539 67.851 -51.379 67.833 -51.239 67.814 -51.098 67.823 -50.964 67.841 -50.836 67.871 -50.727 67.900 -50.619 67.909 -50.524 67.871 -50.638 67.853 -50.766 67.823 -50.875 67.806 -50.990 67.776 -51.110 67.720 -50.943 67.690 -50.795 67.690 -50.656 67.681 -50.522 67.681 -50.394 67.664 -50.522 67.672 -50.655 67.664 -50.790 67.672 -50.923 67.737 -51.108 67.785 -51.268 67.814 -51.428 67.853 -51.595 67.834 -51.710 67.826 -51.833 67.816 -51.966 67.816 -52.106 67.893 -52.288 67.902 -52.422 67.920 -52.574 67.950 -52.723 67.931 -52.851 67.931 -52.979 67.923 -52.833 67.893 -52.940 67.902 -53.087 67.893 -53.209 67.857 -53.323 67.866 -53.190 67.828 -53.302 67.799 -53.410 67.751 -53.504 67.724 -53.613 67.695 -53.732 67.668 -53.853 67.639 -53.961 67.600 -54.061 67.494 -54.112 67.397 -54.043 67.415 -53.929 67.445 -53.811 67.463 -53.683 67.471 -53.562 67.519 -53.457 67.471 -53.295 67.490 -53.168 67.508 -53.053 67.517 -52.921 67.544 -52.800 67.553 -52.666 67.562 -52.545 67.571 -52.423 67.553 -52.271 67.535 -52.131 67.544 -51.998 67.544 -51.870 67.553 -51.748 67.571 -51.633 67.580 -51.500 67.598 -51.384 67.571 -51.493 67.553 -51.609 67.544 -51.742 67.447 -51.625 67.350 -51.473 67.323 -51.327 67.350 -51.219 67.368 -51.091 67.386 -50.976 67.395 -50.843 67.377 -50.691 67.368 -50.825 67.368 -50.964 67.359 -51.085 67.332 -51.206 67.314 -51.321 67.314 -51.460 67.411 -51.627 67.517 -51.786 67.526 -51.920 67.517 -52.053 67.517 -52.181 67.526 -52.327 67.544 -52.468 67.526 -52.582 67.496 -52.701 67.505 -52.835 67.478 -52.956 67.470 -53.078 67.451 -53.204 67.433 -53.331 67.442 -53.465 67.424 -53.579 67.424 -53.707 67.406 -53.833 67.397 -53.688 67.379 -53.814 67.379 -53.941 67.370 -54.063 67.323 -54.157 67.287 -54.003 67.278 -53.870 67.287 -53.749 67.305 -53.622 67.276 -53.741 67.266 -53.862 67.266 -53.989 67.210 -53.822 67.210 -53.694 67.201 -53.550 67.192 -53.682 67.183 -53.802 67.183 -54.069 67.147 -53.916 67.109 -53.750 67.109 -53.623 67.118 -53.491 67.118 -53.351 67.109 -53.218 67.100 -53.126 67.100 -53.253 67.090 -53.374 67.090 -53.501 67.073 -53.627 67.007 -53.720 67.025 -53.606 67.043 -53.479 67.052 -53.359 67.088 -53.245 67.097 -53.125 67.097 -53.113 67.088 -53.071 67.097 -52.939 67.115 -52.824 67.172 -52.724 67.124 -52.564 67.086 -52.665 67.038 -52.493 67.012 -52.613 67.050 -52.766 67.059 -52.912 67.059 -53.039 67.030 -53.146 67.038 -53.290 67.021 -53.139 67.012 -53.006 66.955 -53.094 66.955 -53.232 66.937 -53.346 66.910 -53.200 66.928 -53.075 66.928 -52.936 66.899 -53.054 66.881 -53.180 66.881 -53.307 66.890 -53.440 66.881 -53.572 66.851 -53.690 66.754 -53.484 66.754 -53.357 66.773 -53.231 66.773 -53.093 66.764 -52.960 66.746 -52.809 66.754 -52.689 66.727 -52.796 66.727 -52.935 66.746 -53.074 66.746 -53.201 66.707 -53.312 66.699 -53.445 66.716 -53.584 66.716 -53.457 66.734 -53.607 66.716 -53.721 66.707 -53.854 66.610 -53.862 66.545 -53.954 66.448 -53.863 66.457 -53.731 66.466 -53.611 66.475 -53.480 66.484 -53.360 66.466 -53.484 66.448 -53.610 66.439 -53.730 66.391 -53.823 66.335 -53.871 66.306 -53.725 66.315 -53.594 66.344 -53.488 66.371 -53.369 66.401 -53.251 66.439 -53.152 66.486 -53.058 66.552 -52.977 66.581 -52.860 66.619 -52.748 66.655 -52.646 66.674 -52.521 66.701 -52.413 66.759 -52.327 66.845 -52.247 66.874 -52.140 66.903 -52.022 66.931 -51.902 66.987 -51.814 67.025 -51.713 67.055 -51.595 67.093 -51.481 67.120 -51.373 67.138 -51.258 67.174 -51.143 67.192 -51.017 67.210 -50.901 67.239 -50.782 67.249 -50.661 67.257 -50.528 67.231 -50.649 67.231 -50.776 67.192 -50.623 67.183 -50.478 67.183 -50.339 67.154 -50.459 67.183 -50.605 67.174 -50.738 67.192 -50.889 67.174 -51.004 67.147 -51.113 67.118 -51.232 67.041 -51.041 67.059 -50.915 67.041 -50.764 67.041 -50.637 67.023 -50.763 67.041 -50.902 67.012 -51.022 67.021 -51.166 67.059 -51.319 67.041 -51.434 67.012 -51.553 66.973 -51.654 66.935 -51.755 66.888 -51.861 66.861 -51.981 66.843 -52.096 66.786 -52.196 66.721 -52.277 66.664 -52.376 66.647 -52.491 66.637 -52.623 66.590 -52.716 66.572 -52.842 66.525 -52.935 66.448 -53.008 66.410 -53.120 66.383 -53.228 66.353 -53.344 66.324 -53.462 66.297 -53.581 66.259 -53.692 66.241 -53.553 66.232 -53.410 66.204 -53.528 66.204 -53.654 66.148 -53.489 66.175 -53.382 66.204 -53.276 66.232 -53.169 66.196 -53.270 66.157 -53.381 66.128 -53.486 66.080 -53.328 66.110 -53.223 66.128 -53.097 66.196 -53.018 66.187 -52.886 66.204 -52.762 66.107 -52.569 66.173 -52.488 66.202 -52.370 66.229 -52.263 66.247 -52.149 66.274 -52.031 66.169 -51.996 66.198 -52.142 66.198 -52.268 66.169 -52.374 66.130 -52.473 66.033 -52.532 66.080 -52.702 66.110 -52.848 66.119 -52.992 66.080 -53.091 66.072 -53.210 66.024 -53.315 65.977 -53.420 65.968 -53.276 65.997 -53.159 65.938 -53.256 65.930 -53.387 65.873 -53.211 65.882 -53.092 65.920 -52.992 66.006 -52.926 65.909 -52.882 65.871 -52.981 65.871 -52.845 65.824 -52.938 65.758 -53.029 65.729 -52.884 65.794 -52.792 65.871 -52.707 65.774 -52.766 65.688 -52.845 65.706 -52.720 65.609 -52.741 65.627 -52.617 65.637 -52.498 65.693 -52.411 65.693 -52.274 65.731 -52.175 65.828 -52.180 65.866 -52.080 65.896 -51.964 65.923 -51.857 65.952 -51.739 65.970 -51.614 65.988 -51.500 65.979 -51.369 65.979 -51.232 65.932 -51.075 65.950 -50.949 65.941 -50.920 65.893 -50.938 65.875 -50.801 65.875 -50.938 65.923 -51.095 65.952 -51.240 65.952 -51.514 65.943 -51.633 65.925 -51.759 65.907 -51.872 65.869 -51.983 65.772 -52.042 65.724 -52.147 65.686 -52.258 65.668 -52.371 65.612 -52.469 65.602 -52.588 65.567 -52.689 65.460 -52.677 65.384 -52.750 65.431 -52.657 65.528 -52.587 65.499 -52.442 65.402 -52.464 65.440 -52.365 65.488 -52.272 65.422 -52.353 65.346 -52.425 65.239 -52.377 65.142 -52.273 65.114 -52.390 65.017 -52.313 65.025 -52.194 64.979 -52.300 64.996 -52.175 65.052 -52.088 65.129 -52.004 65.206 -51.932 65.167 -51.781 65.082 -51.848 65.118 -51.736 65.156 -51.637 65.174 -51.513 65.136 -51.624 65.080 -51.711 65.070 -51.829 65.043 -51.947 65.014 -52.052 64.960 -52.152 64.932 -52.258 64.878 -52.360 64.785 -52.240 64.693 -52.253 64.600 -52.254 64.508 -52.245 64.406 -52.181 64.415 -52.051 64.480 -51.957 64.572 -51.918 64.606 -51.804 64.663 -51.716 64.744 -51.643 64.837 -51.577 64.919 -51.505 64.955 -51.393 64.938 -51.258 64.902 -51.359 64.809 -51.425 64.809 -51.289 64.854 -51.182 64.880 -51.062 64.936 -50.962 64.990 -50.871 65.095 -50.917 65.192 -50.958 65.211 -51.095 65.307 -51.147 65.413 -51.206 65.355 -51.031 65.384 -50.926 65.346 -51.025 65.239 -51.004 65.142 -50.902 65.037 -50.821 64.943 -50.663 64.925 -50.517 64.981 -50.427 65.017 -50.326 65.055 -50.214 65.045 -50.208 65.028 -50.257 64.971 -50.345 64.878 -50.337 64.886 -50.207 64.869 -50.207 64.860 -50.237 64.788 -50.316 64.695 -50.213 64.650 -50.062 64.624 -49.922 64.523 -49.837 64.596 -50.129 64.632 -50.223 64.686 -50.380 64.779 -50.460 64.871 -50.567 64.900 -50.708 64.882 -50.833 64.865 -50.698 64.820 -50.794 64.837 -50.940 64.828 -51.059 64.774 -50.890 64.729 -50.738 64.693 -50.839 64.630 -50.665 64.639 -50.547 64.675 -50.434 64.594 -50.519 64.594 -50.643 64.611 -50.777 64.620 -50.917 64.620 -51.053 64.574 -51.159 64.492 -51.232 64.465 -51.091 64.419 -51.186 64.428 -51.315 64.394 -51.417 64.385 -51.547 64.421 -51.693 64.421 -51.828 64.404 -51.941 64.396 -51.801 64.387 -51.660 64.378 -51.778 64.333 -51.885 64.296 -51.727 64.305 -51.609 64.314 -51.480 64.322 -51.362 64.339 -51.249 64.368 -51.131 64.396 -51.025 64.421 -50.918 64.458 -50.806 64.494 -50.705 64.548 -50.615 64.475 -50.693 64.413 -50.778 64.404 -50.649 64.421 -50.536 64.439 -50.412 64.346 -50.309 64.400 -50.477 64.363 -50.578 64.335 -50.696 64.363 -50.836 64.354 -50.965 64.318 -51.078 64.301 -51.191 64.283 -51.303 64.283 -51.426 64.275 -51.555 64.247 -51.661 64.256 -51.790 64.256 -51.802 64.191 -51.626 64.099 -51.652 64.062 -51.494 64.099 -51.394 64.116 -51.281 64.133 -51.169 64.105 -51.275 64.079 -51.381 64.014 -51.464 64.006 -51.594 63.988 -51.717 63.935 -51.806 63.943 -51.678 63.907 -51.778 63.833 -51.609 63.741 -51.443 63.833 -51.440 63.870 -51.340 63.853 -51.196 63.853 -51.061 63.870 -50.949 63.879 -50.832 63.853 -50.939 63.844 -51.068 63.844 -51.324 63.752 -51.352 63.752 -51.230 63.760 -51.113 63.769 -50.996 63.741 -51.101 63.724 -51.212 63.707 -51.336 63.670 -51.436 63.661 -51.308 63.596 -51.145 63.596 -51.012 63.605 -50.895 63.622 -50.771 63.639 -50.648 63.594 -50.754 63.586 -50.871 63.586 -50.994 63.577 -51.122 63.577 -51.244 63.569 -51.361 63.467 -51.322 63.433 -51.167 63.467 -51.066 63.413 -51.155 63.431 -51.043 63.439 -50.926 63.448 -50.798 63.420 -50.659 63.448 -50.554 63.456 -50.425 63.431 -50.532 63.413 -50.655 63.351 -50.739 63.323 -50.844 63.230 -50.764 63.185 -50.614 63.239 -50.525 63.138 -50.586 63.045 -50.614 63.110 -50.521 63.183 -50.443 63.192 -50.315 63.183 -50.333 63.129 -50.422 63.067 -50.506 62.974 -50.571 62.983 -50.455 63.020 -50.356 63.065 -50.250 63.118 -50.160 63.045 -50.238 63.037 -50.255 63.037 -50.267 62.955 -50.350 62.918 -50.449 62.826 -50.515 62.724 -50.575 62.632 -50.437 62.539 -50.260 62.584 -50.154 62.483 -50.021 62.483 -49.767 62.466 -49.636 62.466 -49.757 62.384 -49.841 62.384 -49.720 62.367 -49.577 62.332 -49.689 62.358 -49.837 62.322 -49.936 62.305 -49.805 62.223 -49.877 62.251 -49.773 62.223 -49.624 62.251 -49.520 62.268 -49.397 62.369 -49.388 62.414 -49.293 62.322 -49.239 62.305 -49.108 62.296 -49.223 62.251 -49.328 62.206 -49.434 62.206 -49.555 62.141 -49.637 62.048 -49.630 62.085 -49.520 61.984 -49.541 62.011 -49.437 62.104 -49.410 62.149 -49.305 62.212 -49.211 62.195 -49.079 62.158 -49.190 62.085 -49.267 62.059 -49.372 61.966 -49.377 61.975 -49.250 62.020 -49.145 61.956 -49.239 61.863 -49.279 61.854 -49.154 61.863 -49.028 61.863 -48.907 61.846 -49.018 61.828 -49.128 61.828 -49.259 61.837 -49.384 61.783 -49.473 61.728 -49.320 61.710 -49.178 61.728 -49.069 61.756 -48.953 61.783 -48.849 61.801 -48.729 61.801 -48.608 61.773 -48.712 61.764 -48.587 61.756 -48.702 61.747 -48.817 61.719 -48.932 61.710 -49.047 61.682 -49.162 61.600 -49.234 61.645 -49.141 61.637 -49.016 61.637 -48.896 61.620 -48.765 61.592 -48.629 61.529 -48.724 61.529 -48.843 61.437 -48.779 61.437 -48.648 61.465 -48.544 61.372 -48.597 61.389 -48.475 61.482 -48.507 61.555 -48.418 61.572 -48.308 61.564 -48.172 61.547 -48.293 61.473 -48.371 61.428 -48.465 61.336 -48.316 61.353 -48.206 61.381 -48.103 61.279 -48.092 61.279 -48.223 61.271 -48.338 61.262 -48.464 61.226 -48.562 61.226 -48.443 61.217 -48.307 61.245 -48.203 61.245 -47.965 61.208 -48.062 61.172 -48.172 61.155 -48.294 61.118 -48.392 61.073 -48.485 61.073 -48.366 61.101 -48.263 61.092 -48.127 61.084 -47.991 61.067 -47.863 61.075 -47.737 61.137 -47.653 61.129 -47.767 61.120 -47.893 61.148 -48.028 61.157 -47.914 61.165 -47.788 61.182 -47.667 61.200 -47.557 61.182 -47.428 61.182 -47.297 61.174 -47.173 61.092 -47.257 61.047 -47.102 61.084 -47.003 61.185 -47.071 61.176 -46.947 61.176 -46.827 61.269 -46.809 61.305 -46.710 61.314 -46.584 61.222 -46.474 61.275 -46.384 61.331 -46.535 61.303 -46.400 61.303 -46.280 61.357 -46.190 61.450 -46.209 61.495 -46.354 61.478 -46.224 61.540 -46.139 61.549 -46.013 61.456 -46.093 61.394 -45.938 61.312 -46.013 61.295 -46.123 61.267 -46.238 61.165 -46.240 61.202 -46.130 61.211 -46.015 61.247 -45.916 61.301 -45.814 61.364 -45.729 61.456 -45.707 61.364 -45.646 61.391 -45.541 61.437 -45.446 61.344 -45.515 61.308 -45.615 61.308 -45.626 61.245 -45.711 61.208 -45.810 61.191 -45.932 61.182 -46.047 61.165 -46.157 61.137 -46.272 61.075 -46.368 61.112 -46.258 61.112 -46.138 61.075 -46.248 61.047 -46.352 60.993 -46.442 60.967 -46.308 61.060 -46.240 61.094 -46.139 61.077 -46.000 61.004 -46.089 61.013 -45.975 61.067 -45.875 61.112 -45.769 61.241 -45.600 61.148 -45.513 61.139 -45.628 61.094 -45.734 61.049 -45.829 60.996 -45.919 60.933 -46.014 60.933 -45.895 60.905 -45.999 60.868 -46.098 60.823 -46.203 60.815 -46.080 60.887 -46.000 60.896 -45.875 60.834 -45.960 60.834 -45.841 60.741 -45.801 60.823 -45.727 60.896 -45.648 60.924 -45.544 60.924 -45.425 60.896 -45.528 60.842 -45.618 60.750 -45.687 60.787 -45.577 60.832 -45.483 60.866 -45.371 60.804 -45.467 60.711 -45.510 60.711 -45.391 60.720 -45.277 60.773 -45.187 60.838 -45.092 60.930 -45.037 60.956 -44.932 60.894 -45.017 60.801 -45.061 60.709 -45.092 60.616 -45.172 60.554 -45.257 60.509 -45.351 60.407 -45.354 60.444 -45.255 60.453 -45.141 60.535 -45.067 60.599 -44.972 60.644 -44.877 60.726 -44.802 60.763 -44.703 60.690 -44.783 60.616 -44.873 60.535 -44.959 60.442 -45.028 60.424 -45.137 60.407 -45.247 60.354 -45.336 60.281 -45.178 60.343 -45.093 60.250 -44.999 60.250 -44.928 60.343 -44.897 60.250 -44.883 60.250 -44.790 60.312 -44.730 60.405 -44.661 60.405 -44.531 60.487 -44.456 60.588 -44.488 60.526 -44.336 60.618 -44.302 60.526 -44.288 60.433 -44.333 60.424 -44.210 60.407 -44.107 60.416 -44.230 60.352 -44.315 60.298 -44.167 60.289 -44.034 60.252 -44.143 60.235 -44.099 60.198 -43.950 60.162 -43.813 60.255 -43.732 60.328 -43.771 60.291 -43.621 60.255 -43.473 60.255 -43.390 60.317 -43.434 60.334 -43.561 60.352 -43.700 60.360 -43.834 60.388 -43.967 60.405 -44.081 60.414 -43.967 60.386 -43.823 60.369 -43.695 60.341 -43.551 60.332 -43.428 60.369 -43.328 60.461 -43.435 60.461 -43.553 60.496 -43.452 60.496 -43.323 60.588 -43.451 60.616 -43.585 60.653 -43.486 60.636 -43.595 60.601 -43.696 60.573 -43.811 60.636 -43.714 60.728 -43.669 60.756 -43.814 60.765 -43.938 60.782 -44.066 60.808 -44.199 60.862 -44.357 60.836 -44.224 60.827 -44.100 60.810 -43.972 60.883 -43.892 60.791 -43.785 60.763 -43.651 60.726 -43.512 60.744 -43.392 60.797 -43.550 60.780 -43.411 60.789 -43.297 60.797 -43.182 60.825 -43.066 60.834 -43.201 60.851 -43.329 60.842 -43.205 60.851 -43.080 60.933 -43.003 60.896 -43.103 60.870 -43.209 60.887 -43.348 60.916 -43.482 60.907 -43.358 60.898 -43.235 60.907 -43.120 61.008 -43.115 61.034 -43.248 61.034 -43.378 61.051 -43.506 61.077 -43.639 61.068 -43.515 61.068 -43.396 61.041 -43.251 61.032 -43.127 61.060 -43.011 61.086 -43.144 61.094 -43.279 61.120 -43.412 61.137 -43.541 61.182 -43.695 61.155 -43.550 61.146 -43.426 61.129 -43.297 61.137 -43.171 61.155 -43.050 61.247 -43.040 61.301 -42.948 61.293 -43.064 61.310 -43.192 61.327 -43.332 61.336 -43.417 61.336 -43.548 61.344 -43.683 61.372 -43.818 61.372 -43.698 61.355 -43.558 61.355 -43.319 61.346 -43.194 61.346 -43.064 61.383 -42.963 61.411 -43.109 61.428 -43.237 61.445 -43.378 61.445 -43.127 61.419 -42.982 61.493 -42.901 61.484 -43.016 61.484 -43.136 61.521 -43.036 61.549 -43.170 61.557 -43.294 61.583 -43.439 61.574 -43.314 61.566 -43.179 61.557 -43.055 61.549 -42.930 61.583 -42.828 61.665 -42.751 61.766 -42.792 61.766 -43.150 61.831 -43.305 61.814 -43.175 61.797 -43.034 61.797 -42.903 61.788 -42.779 61.814 -42.660 61.906 -42.639 61.962 -42.548 61.925 -42.649 61.934 -42.774 61.971 -42.914 62.025 -43.063 62.016 -42.938 61.971 -42.793 61.988 -42.670 61.997 -42.555 62.061 -42.456 62.154 -42.553 62.163 -42.425 62.263 -42.489 62.246 -42.612 62.193 -42.705 62.210 -42.747 62.283 -42.654 62.376 -42.570 62.468 -42.498 62.561 -42.605 62.578 -42.736 62.615 -42.888 62.677 -43.042 62.750 -43.213 62.742 -43.088 62.733 -42.961 62.660 -42.790 62.632 -42.654 62.606 -42.520 62.623 -42.407 62.669 -42.552 62.722 -42.702 62.705 -42.572 62.798 -42.657 62.852 -42.807 62.815 -42.909 62.888 -43.081 62.914 -43.216 62.987 -43.377 62.950 -43.235 62.933 -43.105 62.916 -42.974 62.916 -42.841 62.961 -42.744 63.054 -42.815 63.063 -42.687 63.097 -42.826 63.088 -42.700 63.106 -42.587 63.032 -42.416 63.024 -42.363 63.032 -42.501 63.015 -42.614 62.923 -42.636 62.923 -42.565 62.940 -42.452 62.968 -42.345 63.002 -42.230 63.011 -42.283 63.065 -42.190 63.047 -42.047 63.149 -42.015 63.132 -41.884 63.233 -41.949 63.241 -42.086 63.241 -42.208 63.315 -42.369 63.407 -42.395 63.315 -42.250 63.315 -42.127 63.252 -41.972 63.261 -41.844 63.353 -41.940 63.416 -42.107 63.398 -41.964 63.317 -41.799 63.334 -41.674 63.427 -41.700 63.527 -41.861 63.519 -41.990 63.612 -42.073 63.646 -42.069 63.601 -41.936 63.519 -41.771 63.446 -41.600 63.429 -41.346 63.502 -41.372 63.575 -41.544 63.629 -41.695 63.674 -41.816 63.638 -41.674 63.584 -41.523 63.530 -41.373 63.612 -41.538 63.665 -41.688 63.638 -41.552 63.730 -41.600 63.667 -41.444 63.622 -41.299 63.715 -41.432 63.661 -41.270 63.762 -41.237 63.726 -41.095 63.734 -40.977 63.827 -41.074 63.892 -41.241 63.892 -41.264 63.909 -41.407 63.982 -41.691 63.973 -41.821 64.038 -41.720 63.993 -41.574 63.965 -41.425 63.939 -41.288 63.911 -41.140 63.902 -41.013 63.928 -40.891 63.911 -40.760 64.004 -40.819 64.096 -40.821 64.150 -40.971 64.178 -40.863 64.271 -40.776 64.363 -40.910 64.372 -41.050 64.354 -41.288 64.372 -41.420 64.380 -41.548 64.462 -41.726 64.536 -41.630 64.536 -41.506 64.527 -41.366 64.527 -41.231 64.544 -41.116 64.589 -41.016 64.581 -40.888 64.536 -40.730 64.544 -40.610 64.637 -40.696 64.663 -40.833 64.755 -40.797 64.848 -40.808 64.940 -40.980 65.014 -41.155 65.120 -41.312 65.159 -41.209 65.256 -41.275 65.284 -41.166 65.284 -40.905 65.312 -40.795 65.226 -40.613 65.199 -40.473 65.226 -40.364 65.294 -40.264 65.294 -40.218 65.303 -40.211 65.341 -40.342 65.341 -40.217 65.380 -40.215 65.398 -40.213 65.454 -40.120 65.445 -39.978 65.542 -40.130 65.598 -40.023 65.637 -40.181 65.637 -40.219 65.666 -40.360 65.772 -40.331 65.763 -40.227 65.754 -40.211 65.706 -40.048 65.803 -40.016 65.880 -39.933 65.841 -39.774 65.744 -39.661 65.763 -39.545 65.819 -39.450 65.916 -39.550 65.869 -39.387 65.792 -39.209 65.810 -39.094 65.792 -38.958 65.792 -38.833 65.889 -38.995 65.889 -38.870 65.898 -38.749 65.801 -38.722 65.860 -38.628 65.830 -38.487 65.927 -38.401 66.024 -38.379 66.072 -38.529 66.128 -38.685 66.234 -38.669 66.137 -38.579 66.110 -38.427 66.119 -38.306 66.204 -38.225 66.311 -38.294 66.349 -38.176 66.446 -38.166 66.511 -38.063 66.529 -38.199 66.585 -38.366 66.585 -38.240 66.577 -38.097 66.567 -37.966 66.532 -37.821 66.532 -37.809 66.558 -37.696 66.532 -37.556 66.522 -37.414 66.505 -37.542 66.457 -37.644 66.401 -37.752 66.324 -37.838 66.277 -37.939 66.211 -38.031 66.114 -38.026 66.153 -37.920 66.094 -37.753 66.038 -37.597 66.047 -37.477 66.038 -37.334 66.135 -37.373 66.232 -37.400 66.249 -37.272 66.153 -37.321 66.056 -37.221 66.142 -37.140 66.142 -37.003 66.171 -36.892 66.200 -36.781 66.297 -36.792 66.229 -36.632 66.124 -36.601 66.162 -36.495 66.144 -36.349 66.191 -36.247 66.288 -36.158 66.356 -36.066 66.338 -35.931 66.346 -35.810 66.443 -35.897 66.540 -35.907 66.617 -36.085 66.655 -35.977 66.558 -35.893 66.502 -35.738 66.502 -35.600 66.464 -35.455 66.455 -35.324 66.552 -35.458 66.637 -35.374 66.532 -35.310 66.513 -35.162 66.570 -35.064 66.617 -34.950 66.655 -34.842 66.732 -34.753 66.759 -34.640 66.856 -34.750 66.953 -34.671 66.856 -34.635 66.894 -34.527 66.798 -34.542 66.854 -34.430 66.910 -34.331 67.007 -34.317 66.971 -34.172 67.077 -34.236 67.174 -34.233 67.165 -34.090 67.212 -34.186 67.239 -34.100 67.257 -33.981 67.305 -33.877 67.341 -33.755 67.438 -33.790 67.485 -33.662 67.582 -33.748 67.564 -33.611 67.661 -33.546 67.758 -33.593 67.749 -33.460 67.806 -33.360 67.902 -33.332 67.902 -33.203 67.920 -33.072 67.958 -32.962 68.015 -32.849 68.073 -32.775 68.083 -32.651 68.065 -32.502 68.055 -32.370 68.152 -32.325 68.259 -32.364 68.259 -32.236 68.364 -32.336 68.383 -32.486 68.430 -32.638 68.421 -32.492 68.459 -32.381 68.556 -32.557 68.592 -32.703 68.698 -32.778 68.716 -32.658 68.813 -32.656 68.716 -32.571 68.619 -32.473 68.657 -32.362 68.560 -32.304 68.455 -32.230 68.463 -32.105 68.455 -31.959 68.425 -31.805 68.387 -31.927 68.290 -31.858 68.272 -31.721 68.311 -31.610 68.272 -31.451 68.263 -31.319 68.254 -31.186 68.272 -31.065 68.263 -30.932 68.281 -30.800 68.299 -30.679 68.396 -30.810 68.455 -30.966 68.436 -30.829 68.339 -30.644 68.292 -30.493 68.311 -30.361 68.319 -30.236 68.425 -30.347 68.455 -30.501 68.463 -30.364 68.446 -30.227 68.463 -30.223 68.560 -30.231 68.570 -30.235 68.578 -30.188 68.513 -30.018 68.446 -29.858 68.410 -29.713 68.436 -29.584 68.493 -29.480 68.493 -29.339 68.590 -29.382 68.543 -29.232 68.525 -29.095 68.563 -28.982 68.590 -28.865 68.599 -28.740 68.635 -28.614 68.694 -28.510 68.646 -28.360 68.655 -28.223 68.761 -28.230 68.675 -28.051 68.732 -27.934 68.761 -27.817 68.732 -27.675 68.791 -27.571 68.791 -27.429 68.772 -27.280 68.840 -27.179 68.840 -27.049 68.849 -26.911 68.849 -26.640 68.876 -26.510 68.973 -26.447 68.973 -26.176 69.032 -26.070 69.059 -25.938 69.145 -25.843 69.183 -25.716 69.192 -25.863 69.248 -25.743 69.239 -25.610 69.210 -25.468 69.307 -25.531 69.289 -25.393 69.298 -25.254 69.395 -25.230 69.404 -25.376 69.471 -25.260 69.442 -25.118 69.415 -24.965 69.433 -24.842 69.463 -24.984 69.490 -24.852 69.587 -24.954 69.560 -24.800 69.530 -24.658 69.595 -24.554 69.613 -24.484 69.584 -24.342 69.681 -24.304 69.729 -24.453 69.729 -24.322 69.747 -24.198 69.670 -24.026 69.708 -23.910 69.785 -23.796 69.882 -23.937 69.900 -24.076 69.891 -23.929 69.882 -23.794 69.911 -23.662 69.911 -23.531 70.009 -23.569 69.970 -23.422 69.923 -23.261 69.951 -23.140 70.009 -23.294 70.009 -23.425 70.028 -23.302 70.090 -23.196 70.040 -23.032 70.099 -22.926 70.099 -22.782 70.159 -22.691 70.159 -22.510 70.210 -22.399 70.279 -22.559 70.260 -22.695 70.251 -22.835 70.241 -22.963 70.241 -23.107 70.251 -23.243 70.251 -23.399 70.260 -23.535 70.260 -23.679 70.270 -23.827 70.301 -23.972 70.291 -24.099 70.341 -24.266 70.360 -24.406 70.379 -24.546 70.379 -24.690 70.430 -24.844 70.471 -25.007 70.511 -25.170 70.511 -25.301 70.461 -25.423 70.430 -25.541 70.542 -25.476 70.552 -25.612 70.533 -25.736 70.514 -25.871 70.482 -26.001 70.463 -26.125 70.423 -26.250 70.404 -26.373 70.363 -26.499 70.363 -26.631 70.373 -26.767 70.413 -26.943 70.413 -27.087 70.363 -27.207 70.354 -27.335 70.251 -27.403 70.159 -27.491 70.119 -27.604 70.159 -27.739 70.210 -27.775 70.200 -27.914 70.191 -28.054 70.172 -28.188 70.231 -28.349 70.222 -28.476 70.212 -28.603 70.252 -28.767 70.252 -28.622 70.293 -28.511 70.303 -28.384 70.284 -28.231 70.255 -28.085 70.284 -27.967 70.303 -27.832 70.322 -27.709 70.373 -27.590 70.413 -27.477 70.432 -27.341 70.473 -27.229 70.463 -27.092 70.454 -26.944 70.463 -26.816 70.495 -26.699 70.564 -26.586 70.634 -26.751 70.643 -26.900 70.634 -27.028 70.614 -27.151 70.605 -27.291 70.614 -27.441 70.595 -27.576 70.595 -27.708 70.576 -27.988 70.566 -28.115 70.547 -28.251 70.547 -28.383 70.557 -28.520 70.669 -28.627 70.650 -28.763 70.640 -28.903 70.631 -29.031 70.612 -29.165 70.581 -29.282 70.631 -29.440 70.631 -29.308 70.662 -29.179 70.681 -29.056 70.691 -28.928 70.700 -28.788 70.700 -28.631 70.791 -28.543 70.801 -28.415 70.861 -28.299 70.952 -28.211 71.055 -28.261 71.115 -28.436 71.155 -28.590 71.136 -28.447 71.155 -28.310 71.145 -28.172 71.126 -28.018 71.145 -27.881 71.208 -28.045 71.311 -28.148 71.311 -28.002 71.208 -27.862 71.105 -27.679 71.105 -27.533 71.115 -27.405 71.115 -27.259 71.105 -27.109 71.115 -26.968 71.124 -26.839 71.134 -26.699 71.174 -26.584 71.205 -26.453 71.224 -26.329 71.256 -26.210 71.275 -26.073 71.285 -26.052 71.316 -25.933 71.419 -25.941 71.387 -25.780 71.438 -25.669 71.541 -25.730 71.612 -25.909 71.651 -26.061 71.670 -26.216 71.651 -26.354 71.670 -26.497 71.670 -26.644 71.651 -26.782 71.641 -26.911 71.672 -27.060 71.691 -27.215 71.691 -27.497 71.733 -27.369 71.742 -27.508 71.773 -27.670 71.783 -27.821 71.763 -27.971 71.754 -28.101 71.734 -28.225 71.725 -28.355 71.715 -28.484 71.734 -28.641 71.744 -28.499 71.744 -28.365 71.794 -28.243 71.775 -28.099 71.804 -27.966 71.813 -27.836 71.804 -27.686 71.886 -27.591 71.916 -27.752 71.955 -27.906 71.995 -28.073 72.067 -28.244 72.067 -28.096 72.087 -28.253 72.087 -28.400 72.096 -28.540 72.096 -28.687 72.209 -28.665 72.299 -28.846 72.240 -28.669 72.180 -28.504 72.149 -28.353 72.158 -28.210 72.130 -28.061 72.039 -27.881 71.979 -27.717 71.938 -27.550 71.836 -27.406 71.754 -27.233 71.725 -27.085 71.715 -26.946 71.725 -26.804 71.794 -26.703 71.744 -26.532 71.744 -26.397 71.734 -26.247 71.744 -26.117 71.704 -25.951 71.713 -25.930 71.651 -25.755 71.591 -25.593 71.509 -25.410 71.478 -25.262 71.469 -25.111 71.498 -24.978 71.438 -24.818 71.325 -24.677 71.234 -24.504 71.131 -24.458 71.028 -24.437 70.916 -24.375 70.813 -24.253 70.743 -24.090 70.712 -23.944 70.653 -23.773 70.612 -23.623 70.593 -23.470 70.583 -23.322 70.593 -23.181 70.593 -22.917 70.674 -22.818 70.777 -22.821 70.880 -22.877 70.983 -22.828 70.954 -22.683 70.923 -22.682 70.820 -22.704 70.717 -22.649 70.614 -22.517 70.634 -22.392 70.664 -22.260 70.561 -22.138 70.593 -22.019 70.593 -21.886 70.653 -21.778 70.756 -21.845 70.765 -21.981 70.878 -21.950 70.897 -21.813 70.947 -21.978 70.976 -22.123 70.957 -21.982 71.069 -21.935 71.129 -21.827 71.148 -21.968 71.139 -22.122 71.242 -22.031 71.232 -22.173 71.223 -22.302 71.223 -22.436 71.242 -22.310 71.251 -22.168 71.354 -22.077 71.323 -21.931 71.426 -21.998 71.435 -22.148 71.454 -22.022 71.493 -21.892 71.533 -22.055 71.574 -21.926 71.605 -22.072 71.644 -22.234 71.644 -22.381 71.593 -22.506 71.503 -22.602 71.421 -22.702 71.524 -22.733 71.627 -22.777 71.739 -22.705 71.749 -22.575 71.749 -22.429 71.831 -22.328 71.871 -22.186 71.881 -22.336 71.912 -22.484 71.831 -22.597 71.799 -22.730 71.739 -22.839 71.842 -22.871 71.893 -22.745 71.912 -22.900 71.881 -23.022 71.840 -23.151 71.799 -23.281 71.902 -23.247 71.934 -23.113 71.974 -22.996 72.024 -22.883 72.043 -22.756 72.116 -22.922 72.144 -23.081 72.163 -23.224 72.154 -23.368 72.257 -23.532 72.276 -23.675 72.304 -23.836 72.295 -23.967 72.398 -24.000 72.379 -24.127 72.429 -24.297 72.479 -24.455 72.499 -24.600 72.570 -24.780 72.570 -24.929 72.589 -25.073 72.549 -25.190 72.539 -25.280 72.529 -25.395 72.479 -25.521 72.398 -25.618 72.369 -25.753 72.450 -25.656 72.563 -25.641 72.563 -25.790 72.553 -25.934 72.584 -26.084 72.584 -25.935 72.594 -25.791 72.594 -25.359 72.613 -25.207 72.632 -25.080 72.661 -24.945 72.764 -24.966 72.867 -25.080 72.886 -25.225 72.906 -25.383 72.956 -25.555 72.975 -25.714 72.975 -25.850 72.934 -25.992 72.893 -26.122 72.874 -26.262 72.865 -26.393 72.814 -26.519 72.776 -26.637 72.888 -26.554 72.879 -26.699 72.879 -26.997 72.898 -26.857 72.939 -26.728 72.968 -26.890 72.977 -27.031 72.977 -27.193 72.958 -27.333 72.968 -27.474 73.009 -27.631 72.999 -27.489 72.980 -27.344 72.999 -27.203 73.018 -27.064 73.018 -26.915 72.980 -26.747 72.949 -26.596 72.930 -26.437 72.939 -26.293 72.968 -26.170 73.018 -26.057 73.049 -25.923 73.049 -25.787 73.039 -25.620 73.068 -25.497 73.099 -25.362 73.190 -25.267 73.231 -25.423 73.231 -25.573 73.250 -25.719 73.260 -25.873 73.300 -26.042 73.341 -26.199 73.341 -26.336 73.332 -26.468 73.332 -26.605 73.322 -26.750 73.262 -26.858 73.252 -27.003 73.262 -27.145 73.281 -27.291 73.281 -27.441 73.210 -27.542 73.107 -27.613 73.097 -27.744 73.166 -27.629 73.279 -27.723 73.298 -27.870 73.298 -27.720 73.308 -27.575 73.327 -27.448 73.327 -27.311 73.295 -27.145 73.265 -26.968 73.336 -26.866 73.427 -26.773 73.427 -26.910 73.437 -27.052 73.466 -27.216 73.485 -27.363 73.545 -27.530 73.585 -27.700 73.614 -27.565 73.564 -27.402 73.504 -27.222 73.463 -27.065 73.454 -26.897 73.463 -26.752 73.454 -26.610 73.384 -26.427 73.374 -26.272 73.384 -26.127 73.393 -25.981 73.435 -25.850 73.475 -25.732 73.578 -25.618 73.597 -25.489 73.597 -25.352 73.607 -25.206 73.617 -25.073 73.626 -24.940 73.686 -25.118 73.715 -25.269 73.818 -25.372 73.858 -25.542 73.908 -25.717 74.011 -25.916 74.031 -25.775 73.940 -25.593 73.858 -25.417 73.839 -25.270 73.736 -25.209 73.705 -25.044 73.696 -24.902 73.676 -24.742 73.779 -24.710 73.860 -24.583 73.911 -24.468 73.921 -24.322 73.870 -24.148 73.851 -24.001 73.851 -23.863 73.841 -23.708 73.810 -23.556 73.781 -23.406 73.750 -23.241 73.700 -23.081 73.691 -22.927 73.710 -22.784 73.741 -22.660 73.750 -22.513 73.720 -22.638 73.691 -22.763 73.681 -22.909 73.681 -23.047 73.710 -23.210 73.750 -23.366 73.770 -23.525 73.820 -23.699 73.829 -23.866 73.839 -24.021 73.839 -24.172 73.726 -24.243 73.676 -24.070 73.573 -23.748 73.533 -23.580 73.514 -23.422 73.475 -23.254 73.456 -23.108 73.446 -22.967 73.416 -22.804 73.387 -22.641 73.377 -22.487 73.406 -22.362 73.456 -22.234 73.487 -22.084 73.506 -21.955 73.525 -21.812 73.607 -21.709 73.588 -21.564 73.578 -21.410 73.588 -21.276 73.588 -20.988 73.578 -20.833 73.597 -20.691 73.700 -20.759 73.760 -20.703 73.873 -20.708 73.903 -20.582 74.006 -20.569 74.006 -20.707 73.997 -20.855 74.006 -20.997 74.047 -21.152 74.057 -21.320 74.088 -21.471 74.126 -21.639 74.158 -21.804 74.177 -21.950 74.148 -22.090 74.045 -22.129 73.942 -21.989 73.829 -21.954 73.779 -22.071 73.882 -22.088 73.985 -22.065 74.088 -22.247 74.138 -22.421 74.158 -22.568 74.188 -22.733 74.208 -22.589 74.208 -22.438 74.311 -22.360 74.392 -22.546 74.411 -22.694 74.402 -22.551 74.421 -22.407 74.421 -22.268 74.452 -22.129 74.502 -22.012 74.605 -22.137 74.674 -22.320 74.665 -22.163 74.562 -21.979 74.543 -21.818 74.552 -21.671 74.562 -21.522 74.562 -21.231 74.543 -21.070 74.552 -20.923 74.543 -20.766 74.543 -20.613 74.440 -20.462 74.378 -20.298 74.368 -20.226 74.359 -20.128 74.349 -19.973 74.339 -19.816 74.359 -19.672 74.378 -19.541 74.428 -19.409 74.510 -19.302 74.579 -19.164 74.589 -19.320 74.658 -19.486 74.761 -19.527 74.751 -19.663 74.720 -19.790 74.669 -19.923 74.701 -20.075 74.711 -20.231 74.761 -20.391 74.751 -20.540 74.761 -20.684 74.751 -20.832 74.732 -20.964 74.722 -21.113 74.732 -21.257 74.742 -21.108 74.761 -20.964 74.811 -20.845 74.924 -20.989 75.029 -20.937 75.141 -20.866 75.152 -21.025 75.152 -21.179 75.173 -21.342 75.084 -21.606 75.053 -21.744 75.031 -21.874 75.042 -22.033 75.086 -22.208 75.199 -22.404 75.233 -22.576 75.223 -22.430 75.189 -22.259 75.089 -22.069 75.079 -21.897 75.100 -21.754 75.144 -21.635 75.189 -21.504 75.199 -21.355 75.220 -21.212 75.220 -21.071 75.199 -20.907 75.220 -20.763 75.320 -20.965 75.375 -21.132 75.409 -21.303 75.443 -21.461 75.508 -21.634 75.529 -21.786 75.540 -21.932 75.550 -22.092 75.550 -22.247 75.571 -22.398 75.561 -22.252 75.561 -21.943 75.540 -21.778 75.639 -21.969 75.684 -22.145 75.704 -22.311 75.726 -22.463 75.747 -22.318 75.702 -22.128 75.692 -21.968 75.647 -21.805 75.605 -21.629 75.505 -21.439 75.461 -21.263 75.427 -21.079 75.372 -20.899 75.383 -20.763 75.403 -20.632 75.424 -20.487 75.403 -20.323 75.383 -20.245 75.348 -20.241 75.259 -20.242 75.228 -20.074 75.218 -19.928 75.249 -19.789 75.304 -19.661 75.417 -19.618 75.540 -19.619 75.652 -19.657 75.765 -19.851 75.833 -19.741 75.932 -19.929 76.022 -20.126 76.032 -20.274 76.032 -20.586 76.053 -20.764 76.064 -20.912 76.064 -21.223 76.074 -21.371 76.064 -21.522 76.064 -22.135 76.074 -21.997 76.085 -21.834 76.074 -21.686 76.095 -21.553 76.095 -21.397 76.105 -21.234 76.095 -21.086 76.095 -20.931 76.085 -20.769 76.085 -20.627 76.105 -20.468 76.137 -20.340 76.158 -20.281 76.158 -19.995 76.270 -20.005 76.359 -20.217 76.359 -20.286 76.349 -20.438 76.328 -20.585 76.328 -20.741 76.359 -20.913 76.380 -21.066 76.412 -21.238 76.401 -21.376 76.367 -21.203 76.313 -21.033 76.270 -20.870 76.236 -20.696 76.236 -20.839 76.281 -21.004 76.313 -21.176 76.367 -21.346 76.378 -21.507 76.357 -21.654 76.325 -21.808 76.336 -21.956 76.459 -21.892 76.524 -22.081 76.524 -22.238 76.514 -22.389 76.524 -22.552 76.524 -22.696 76.569 -22.561 76.535 -22.400 76.535 -22.100 76.579 -21.979 76.579 -22.136 76.559 -22.282 76.590 -22.141 76.611 -22.009 76.655 -22.174 76.634 -22.321 76.668 -22.195 76.713 -22.361 76.723 -22.511 76.611 -22.610 76.734 -22.771 76.768 -22.932 76.844 -22.814 76.844 -22.657 76.957 -22.601 76.946 -22.437 76.880 -22.246 76.768 -22.045 76.758 -21.882 76.802 -21.760 76.846 -21.625 76.880 -21.484 76.891 -21.345 76.923 -21.190 76.967 -21.369 76.967 -21.816 76.978 -21.980 76.998 -21.846 76.988 -21.682 76.988 -21.538 76.998 -21.385 76.988 -21.222 76.967 -21.067 77.012 -20.944 77.056 -21.124 77.045 -21.263 77.077 -21.108 77.088 -20.955 77.067 -20.655 77.045 -20.486 77.056 -20.334 77.056 -20.161 77.022 -19.987 77.012 -19.838 76.967 -19.645 76.967 -19.487 76.957 -19.338 76.957 -19.193 76.923 -19.019 76.912 -18.870 76.923 -18.730 76.957 -18.601 76.990 -18.445 77.103 -18.426 77.216 -18.450 77.328 -18.515 77.452 -18.686 77.452 -18.991 77.472 -19.160 77.452 -19.309 77.339 -19.416 77.360 -19.584 77.349 -19.738 77.462 -19.846 77.496 -20.008 77.507 -20.159 77.496 -20.299 77.496 -20.445 77.486 -20.600 77.507 -20.756 77.517 -20.934 77.538 -20.799 77.517 -20.629 77.517 -20.469 77.538 -20.320 77.559 -20.476 77.570 -20.655 77.580 -20.819 77.590 -20.984 77.611 -21.141 77.632 -21.310 77.632 -21.164 77.611 -20.995 77.600 -20.829 77.611 -20.689 77.643 -20.850 77.663 -20.701 77.653 -20.536 77.708 -20.710 77.718 -20.888 77.750 -21.050 77.750 -21.210 77.784 -21.067 77.805 -20.918 77.784 -20.747 77.805 -20.611 77.816 -20.470 77.805 -20.304 77.805 -20.291 77.773 -20.129 77.740 -19.952 77.695 -19.785 77.674 -19.615 77.695 -19.465 77.706 -19.324 77.818 -19.449 77.860 -19.615 77.881 -19.799 77.881 -19.959 77.891 -20.124 77.912 -20.281 77.934 -20.467 77.954 -20.624 77.999 -20.806 78.064 -20.986 78.085 -21.143 78.051 -21.287 78.007 -21.412 77.952 -21.544 77.886 -21.657 77.773 -21.688 77.674 -21.797 77.629 -21.934 77.698 -21.823 77.763 -22.017 77.763 -22.323 77.863 -22.215 77.917 -22.097 77.972 -21.964 78.085 -21.965 78.117 -21.834 78.172 -21.687 78.182 -21.854 78.192 -22.006 78.214 -21.695 78.269 -21.562 78.391 -21.612 78.470 -21.504 78.570 -21.407 78.625 -21.287 78.693 -21.470 78.672 -21.621 78.717 -21.483 78.727 -21.325 78.839 -21.296 78.850 -21.450 78.871 -21.299 78.882 -21.141 78.902 -21.002 78.937 -20.870 78.915 -20.683 78.905 -20.501 78.915 -20.343 78.926 -20.275 79.038 -20.245 79.059 -20.269 79.125 -20.274 79.136 -20.206 79.146 -20.047 79.146 -19.870 79.246 -19.755 79.287 -19.612 79.246 -19.441 79.321 -19.314 79.342 -19.474 79.331 -19.633 79.342 -19.802 79.253 -19.908 79.243 -20.068 79.308 -19.950 79.421 -19.855 79.533 -19.925 79.588 -19.802 79.701 -19.738 79.746 -19.609 79.777 -19.459 79.777 -19.142 79.767 -18.958 79.746 -18.797 79.735 -18.626 79.746 -18.465 79.777 -18.315 79.811 -18.180 79.856 -18.049 79.921 -17.914 79.966 -17.769 79.976 -17.746 80.026 -17.617 80.108 -17.818 80.120 -18.004 80.134 -18.177 80.120 -18.337 80.120 -18.503 80.108 -18.678 80.094 -18.824 80.081 -18.984 80.068 -19.145 80.081 -19.316 80.094 -19.475 80.068 -19.629 80.029 -19.791 80.002 -19.958 79.992 -20.119 79.981 -20.159 79.981 -20.220 79.926 -20.325 79.813 -20.375 79.834 -20.234 79.813 -20.223 79.803 -20.398 79.758 -20.526 79.848 -20.751 79.858 -20.908 79.934 -20.796 79.978 -20.685 80.012 -20.687 80.068 -20.562 80.094 -20.727 80.120 -20.435 80.189 -20.288 80.257 -20.168 80.283 -20.014 80.283 -19.680 80.271 -19.507 80.245 -19.343 80.232 -19.170 80.232 -18.990 80.218 -18.802 80.206 -18.631 80.206 -18.464 80.218 -18.303 80.232 -18.142 80.232 -17.809 80.218 -17.636 80.218 -17.470 80.232 -17.309 80.245 -17.134 80.271 -16.993 80.424 -16.906 80.385 -16.694 80.454 -16.570 80.480 -16.428 80.535 -16.283 80.561 -16.448 80.575 -16.621 80.575 -16.803 80.588 -16.990 80.588 -17.143 80.614 -17.337 80.640 -17.516 80.653 -17.690 80.627 -17.845 80.601 -18.001 80.588 -18.149 80.575 -18.325 80.575 -18.492 80.561 -18.668 80.588 -18.848 80.588 -19.001 80.614 -19.180 80.614 -19.516 80.627 -19.675 80.653 -19.856 80.666 -20.030 80.666 -20.212 80.653 -20.373 80.597 -20.499 80.585 -20.675 80.571 -20.822 80.516 -20.948 80.571 -21.142 80.571 -21.295 80.585 -21.455 80.597 -21.308 80.597 -20.955 80.611 -20.780 80.636 -20.639 80.676 -20.505 80.702 -20.351 80.702 -20.043 80.689 -19.854 80.676 -19.681 80.663 -19.493 80.663 -19.310 80.650 -19.122 80.636 -18.949 80.650 -18.772 80.676 -18.602 80.718 -18.468 80.732 -18.307 80.826 -18.196 80.826 -18.027 80.774 -17.850 80.774 -17.342 80.761 -17.169 80.748 -16.995 80.735 -16.822 80.748 -16.659 80.761 -16.497 80.761 -16.343 80.748 -16.170 80.859 -16.048 80.872 -15.871 80.885 -15.707 80.898 -15.530 80.898 -15.176 80.911 -15.013 81.022 -14.903 81.036 -15.063 81.133 -15.257 81.173 -15.118 81.186 -14.954 81.173 -14.765 81.173 -14.240 81.199 -14.067 81.238 -13.913 81.323 -13.762 81.349 -13.616 81.363 -13.438 81.418 -13.288 81.461 -13.149 81.487 -12.975 81.500 -12.809 81.526 -12.663 81.552 -12.503 81.578 -12.357 81.676 -12.221 81.689 -12.411 81.702 -12.587 81.771 -12.768 81.797 -12.934 81.823 -13.100 81.836 -13.309 81.850 -13.471 81.862 -13.631 81.876 -13.793 81.876 -13.964 81.888 -14.126 81.915 -14.308 81.915 -14.464 81.941 -14.645 81.954 -14.808 81.967 -14.998 81.980 -15.161 81.980 -15.317 81.967 -15.484 81.967 -15.640 81.954 -15.821 81.954 -16.006 81.980 -16.222 81.967 -16.373 81.967 -16.730 81.980 -16.922 81.912 -17.077 81.912 -17.405 81.898 -17.556 81.885 -17.720 81.745 -17.552 81.758 -17.729 81.784 -17.897 81.660 -18.011 81.646 -17.820 81.591 -17.980 81.605 -18.157 81.509 -18.283 81.483 -18.426 81.483 -18.597 81.538 -18.793 81.565 -18.961 81.538 -19.118 81.594 -19.315 81.581 -19.478 81.607 -19.676 81.581 -19.834 81.555 -19.992 81.542 -20.170 81.487 -20.298 81.461 -20.470 81.601 -20.448 81.670 -20.327 81.709 -20.175 81.696 -20.325 81.696 -20.495 81.670 -20.638 81.656 -20.802 81.643 -20.966 81.605 -21.103 81.562 -21.251 81.523 -21.402 81.497 -21.558 81.441 -21.685 81.359 -21.813 81.346 -21.976 81.277 -22.110 81.264 -22.286 81.222 -22.434 81.183 -22.597 81.140 -22.758 81.097 -22.905 81.016 -23.044 81.003 -23.220 80.960 -23.352 80.934 -23.521 80.934 -23.689 80.810 -23.791 80.784 -23.930 80.686 -24.045 80.647 -24.191 80.621 -24.345 80.595 -24.484 80.552 -24.656 80.693 -24.398 80.705 -24.587 80.732 -24.435 80.744 -24.273 80.800 -24.136 80.941 -24.044 80.996 -23.906 81.036 -23.759 81.078 -23.628 81.147 -23.481 81.189 -23.334 81.228 -23.186 81.297 -23.054 81.365 -22.920 81.392 -22.779 81.444 -22.637 81.500 -22.497 81.598 -22.379 81.722 -22.288 81.862 -22.223 82.003 -22.268 82.143 -22.499 82.157 -22.663 82.157 -22.835 82.143 -22.985 82.143 -23.172 82.130 -23.365 82.130 -23.727 82.117 -23.906 82.104 -24.056 82.078 -24.198 82.039 -24.348 81.898 -24.379 81.787 -24.502 81.787 -24.658 81.800 -24.837 81.761 -25.000 81.774 -25.178 81.748 -25.319 81.706 -25.480 81.679 -25.650 81.666 -25.813 81.653 -25.961 81.627 -26.131 81.614 -26.308 81.601 -26.485 81.588 -26.662 81.574 -26.824 81.533 -26.955 81.493 -27.116 81.480 -27.263 81.466 -27.425 81.454 -27.602 81.466 -27.765 81.466 -27.609 81.480 -27.448 81.533 -27.665 81.545 -27.828 81.598 -27.690 81.598 -27.520 81.624 -27.350 81.624 -27.165 81.650 -26.996 81.663 -26.834 81.689 -26.679 81.715 -26.523 81.728 -26.346 81.754 -26.191 81.781 -26.006 81.794 -25.857 81.807 -25.695 81.846 -25.561 81.987 -25.504 82.068 -25.723 82.068 -25.895 82.081 -26.074 82.081 -26.968 82.094 -27.148 82.094 -27.663 82.081 -27.813 82.081 -28.674 82.068 -28.837 82.068 -29.195 82.055 -29.373 82.042 -29.550 82.016 -29.720 81.960 -29.841 81.948 -29.988 81.999 -30.179 81.987 -30.343 81.987 -30.500 81.973 -30.676 81.960 -30.824 81.948 -30.988 81.948 -31.173 81.934 -31.350 81.921 -31.526 81.908 -31.674 81.908 -31.861 81.895 -32.037 81.869 -32.190 81.856 -32.337 81.830 -32.491 81.816 -32.653 81.761 -32.771 81.748 -32.918 81.748 -33.103 81.735 -33.250 81.876 -33.258 81.931 -33.140 81.944 -32.978 81.957 -32.831 81.970 -32.668 81.996 -32.501 81.996 -32.314 82.009 -32.137 82.035 -31.984 82.035 -31.812 82.049 -31.636 82.049 -31.450 82.075 -31.280 82.088 -31.118 82.101 -30.969 82.114 -30.821 82.127 -30.644 82.127 -30.457 82.153 -30.288 82.235 -30.514 82.248 -30.694 82.248 -31.230 82.261 -31.410 82.261 -31.769 82.274 -31.606 82.274 -31.104 82.261 -30.909 82.261 -30.564 82.248 -30.383 82.235 -30.203 82.209 -29.999 82.222 -29.821 82.209 -29.625 82.209 -29.454 82.222 -29.261 82.235 -29.083 82.248 -28.934 82.248 -28.446 82.261 -28.268 82.261 -28.096 82.248 -27.930 82.248 -27.571 82.235 -27.391 82.235 -26.871 82.222 -26.692 82.222 -25.323 82.235 -25.158 82.248 -25.008 82.261 -24.829 82.287 -24.657 82.313 -24.470 82.327 -24.320 82.339 -24.169 82.352 -23.990 82.352 -23.300 82.366 -23.149 82.378 -22.984 82.392 -22.819 82.405 -22.668 82.431 -22.524 82.526 -22.372 82.526 -22.200 82.552 -22.040 82.578 -21.896 82.591 -21.715 82.647 -21.586 82.702 -21.788 82.716 -22.001 82.757 -22.212 82.771 -22.393 82.797 -22.581 82.824 -22.768 82.810 -22.935 82.810 -23.108 82.836 -23.297 82.875 -23.507 82.889 -23.703 82.875 -23.885 82.824 -24.062 82.797 -24.236 82.921 -24.117 82.947 -24.291 82.921 -24.451 82.934 -24.647 82.934 -24.821 82.908 -24.995 82.882 -25.187 82.869 -25.368 82.843 -25.541 82.829 -25.737 82.817 -25.917 82.817 -26.092 82.829 -25.925 82.856 -25.768 82.869 -25.601 82.895 -25.443 82.947 -25.299 82.990 -25.150 83.033 -25.015 83.101 -25.215 83.196 -25.475 83.182 -25.627 83.170 -25.828 83.157 -25.980 83.157 -26.139 83.143 -26.306 83.143 -26.496 83.131 -26.662 83.105 -26.821 83.105 -26.981 83.091 -27.162 83.091 -27.351 83.105 -27.564 83.105 -27.946 83.117 -28.129 83.105 -28.296 83.091 -28.447 83.134 -28.664 83.146 -28.876 83.146 -29.084 83.160 -29.301 83.160 -29.461 83.173 -29.659 83.173 -29.867 83.160 -30.048 83.160 -30.223 83.146 -30.403 83.121 -30.575 83.121 -30.959 83.107 -31.139 83.081 -31.281 83.069 -31.446 83.055 -31.611 83.042 -31.762 82.973 -31.889 83.042 -32.096 83.042 -32.285 83.029 -32.484 83.029 -32.866 83.016 -33.030 83.016 -33.394 83.003 -33.574 83.003 -33.763 82.977 -33.903 82.865 -34.011 82.961 -34.285 82.961 -35.014 82.947 -35.178 82.934 -35.342 82.908 -35.497 82.839 -35.619 82.827 -35.769 82.869 -35.626 82.937 -35.504 82.951 -35.673 82.964 -35.510 82.964 -35.335 82.977 -35.171 82.977 -35.012 82.990 -34.832 82.990 -34.306 83.003 -34.141 83.016 -33.991 83.029 -33.812 83.042 -33.646 83.055 -33.482 83.055 -33.293 83.069 -33.094 83.069 -32.775 83.137 -32.999 83.163 -33.177 83.163 -33.385 83.176 -33.569 83.176 -33.220 83.163 -33.002 83.150 -32.833 83.137 -32.635 83.111 -32.441 83.098 -32.243 83.098 -31.879 83.124 -31.722 83.137 -31.572 83.150 -31.390 83.150 -31.057 83.176 -30.914 83.189 -30.763 83.189 -30.588 83.203 -30.408 83.203 -28.876 83.189 -28.658 83.176 -28.445 83.176 -27.267 83.189 -27.100 83.203 -26.934 83.203 -26.759 83.228 -26.599 83.228 -26.439 83.242 -26.258 83.268 -26.113 83.294 -25.920 83.362 -26.170 83.388 -26.361 83.402 -26.560 83.415 -26.728 83.428 -26.926 83.441 -27.140 83.454 -27.339 83.467 -27.537 83.467 -27.631 83.480 -27.830 83.480 -28.196 83.467 -28.378 83.467 -28.583 83.441 -28.392 83.428 -28.558 83.428 -28.748 83.441 -28.918 83.467 -29.095 83.480 -28.943 83.480 -28.753 83.523 -28.957 83.510 -29.154 83.484 -29.345 83.539 -29.543 83.552 -29.757 83.578 -29.985 83.578 -30.146 83.592 -30.330 83.592 -30.862 83.578 -31.029 83.565 -31.230 83.565 -31.435 83.578 -31.620 83.592 -31.821 83.592 -32.188 83.578 -32.354 83.604 -32.564 83.618 -32.749 83.618 -33.296 83.604 -33.448 83.604 -33.848 83.592 -34.030 83.578 -34.195 83.493 -33.942 83.467 -34.084 83.510 -34.291 83.592 -34.527 83.536 -34.646 83.592 -34.880 83.578 -35.045 83.552 -35.216 83.539 -35.367 83.552 -35.583 83.552 -36.691 83.539 -36.856 83.496 -36.999 83.470 -36.818 83.388 -36.578 83.388 -36.768 83.444 -36.988 83.457 -37.203 83.457 -37.364 83.484 -37.560 83.510 -37.772 83.496 -37.952 83.484 -38.103 83.402 -38.212 83.415 -38.383 83.428 -38.584 83.428 -38.793 83.441 -38.994 83.300 -38.879 83.215 -38.636 83.215 -38.107 83.189 -37.912 83.189 -37.737 83.163 -37.527 83.163 -37.337 83.176 -37.157 83.150 -37.312 83.150 -38.029 83.137 -38.208 83.137 -38.383 83.124 -38.562 83.111 -38.725 83.098 -38.890 83.071 -38.708 83.071 -37.754 83.059 -37.555 83.059 -38.079 83.045 -38.242 83.045 -39.162 83.019 -39.316 82.980 -39.109 82.869 -38.859 82.869 -38.700 82.800 -38.804 82.856 -39.024 82.951 -39.274 82.964 -39.444 83.003 -39.635 83.003 -39.824 82.990 -39.988 82.990 -40.148 83.003 -40.347 83.003 -40.695 83.029 -40.893 83.069 -41.086 83.095 -41.297 83.134 -41.490 83.146 -41.676 83.146 -41.850 83.121 -42.036 83.176 -41.894 83.245 -42.115 83.245 -42.527 83.284 -42.736 83.284 -43.325 83.245 -43.451 83.245 -43.261 83.232 -43.040 83.218 -43.218 83.232 -43.405 83.232 -43.993 83.189 -43.781 83.189 -43.572 83.176 -43.385 83.150 -43.173 83.124 -42.990 83.137 -43.177 83.163 -43.360 83.163 -43.709 83.137 -43.860 83.163 -44.073 83.176 -44.274 83.189 -44.461 83.189 -44.829 83.134 -44.938 83.160 -45.122 83.160 -45.297 83.146 -45.445 83.160 -45.631 83.105 -45.406 83.049 -45.195 83.023 -44.996 83.009 -44.825 82.997 -44.605 82.983 -44.420 82.957 -44.237 82.970 -44.456 82.970 -44.645 82.997 -44.843 82.983 -45.005 82.957 -45.156 82.970 -45.245 83.026 -45.341 83.039 -45.527 83.052 -45.699 83.078 -45.897 83.105 -46.096 83.091 -46.259 83.091 -46.433 83.078 -46.580 83.026 -46.706 83.026 -46.546 83.000 -46.314 82.944 -46.102 82.957 -46.289 82.983 -46.488 82.997 -46.690 82.970 -46.853 82.915 -46.627 82.901 -46.455 82.889 -46.255 82.875 -46.054 82.875 -45.880 82.918 -45.746 82.892 -45.563 82.892 -45.133 82.905 -44.986 82.944 -45.181 82.931 -45.009 82.892 -44.800 82.892 -44.419 82.879 -44.203 82.879 -43.837 82.892 -43.645 82.892 -42.169 82.879 -41.983 82.865 -41.798 82.853 -41.580 82.839 -41.410 82.827 -41.211 82.800 -40.981 82.774 -40.785 82.761 -40.615 82.774 -40.438 82.761 -40.254 82.676 -40.025 82.594 -40.116 82.555 -39.925 82.414 -39.997 82.555 -40.238 82.624 -40.467 82.624 -40.674 82.650 -40.855 82.692 -41.063 82.719 -41.244 82.761 -41.469 82.788 -41.650 82.800 -41.849 82.761 -41.988 82.676 -41.757 82.536 -41.749 82.578 -41.943 82.719 -42.078 82.813 -42.334 82.813 -42.507 82.827 -42.693 82.827 -43.979 82.813 -44.156 82.813 -44.835 82.827 -45.051 82.839 -45.237 82.827 -45.384 82.827 -45.591 82.771 -45.746 82.728 -45.519 82.716 -45.304 82.660 -45.080 82.634 -44.868 82.578 -44.646 82.536 -44.449 82.510 -44.268 82.483 -44.056 82.457 -43.860 82.402 -43.984 82.375 -43.773 82.363 -43.590 82.337 -43.394 82.349 -43.233 82.349 -43.046 82.337 -42.863 82.310 -42.667 82.284 -42.487 82.284 -42.675 82.310 -42.884 82.310 -43.467 82.323 -43.636 82.337 -43.850 82.349 -44.018 82.375 -44.228 82.375 -44.415 82.363 -44.562 82.349 -44.737 82.196 -44.772 82.157 -44.564 82.130 -44.727 82.117 -44.888 82.049 -44.983 82.035 -44.814 82.023 -44.631 81.954 -44.727 81.912 -44.518 81.898 -44.349 81.872 -44.483 81.859 -44.642 81.820 -44.778 81.846 -44.973 81.846 -45.130 81.859 -45.311 81.927 -45.545 81.970 -45.740 81.996 -45.921 82.107 -46.208 82.150 -46.420 82.176 -46.601 82.176 -46.805 82.189 -46.975 82.215 -47.186 82.229 -47.386 82.241 -47.569 82.297 -47.795 82.337 -48.004 82.363 -48.201 82.363 -48.359 82.375 -48.544 82.388 -48.744 82.444 -48.955 82.512 -49.194 82.539 -49.393 82.552 -49.608 82.565 -49.780 82.565 -51.056 82.552 -51.216 82.411 -50.950 82.270 -50.857 82.186 -50.616 82.147 -50.405 82.078 -50.166 82.052 -49.983 82.025 -49.770 81.999 -49.574 81.957 -49.703 81.931 -49.850 81.931 -50.021 81.957 -50.232 81.957 -50.403 81.970 -50.573 81.970 -50.760 81.984 -50.930 82.009 -51.126 81.912 -50.843 81.830 -50.606 81.816 -50.421 81.790 -50.240 81.764 -50.058 81.696 -49.821 81.670 -49.966 81.670 -50.137 81.696 -50.318 81.794 -50.599 81.820 -50.781 81.876 -50.993 81.902 -51.190 81.927 -51.387 81.954 -51.571 81.967 -51.740 81.967 -51.927 81.980 -52.111 82.023 -52.340 82.035 -52.525 82.061 -52.723 82.088 -52.908 82.075 -53.065 81.934 -53.030 81.866 -53.116 81.823 -53.243 81.797 -53.387 81.742 -53.516 81.715 -53.644 81.591 -53.701 81.591 -53.857 81.732 -53.879 81.814 -53.793 81.856 -53.680 81.938 -53.594 82.091 -53.725 82.232 -53.824 82.327 -54.081 82.382 -54.311 82.409 -54.512 82.409 -54.685 82.395 -54.829 82.395 -54.987 82.382 -55.145 82.369 -55.304 82.356 -55.447 82.342 -55.605 82.342 -55.418 82.301 -55.560 82.301 -55.732 82.313 -55.933 82.313 -56.134 82.258 -56.247 82.219 -56.391 82.287 -56.652 82.274 -56.824 82.261 -56.983 82.248 -57.126 82.235 -57.283 82.235 -57.488 82.222 -57.646 82.222 -57.818 82.209 -57.960 82.196 -58.133 82.183 -58.305 82.169 -58.461 82.169 -58.619 82.157 -58.777 82.143 -58.933 82.117 -59.076 82.104 -59.247 82.091 -59.390 82.065 -59.531 82.025 -59.330 82.013 -59.144 81.999 -58.943 81.973 -58.757 81.833 -58.462 81.722 -58.152 81.722 -57.967 81.682 -57.754 81.656 -57.569 81.605 -57.357 81.480 -57.036 81.480 -56.880 81.454 -56.683 81.454 -56.852 81.466 -57.021 81.480 -57.221 81.574 -57.480 81.643 -57.711 81.656 -57.928 81.670 -58.099 81.682 -58.283 81.696 -58.454 81.722 -58.653 81.862 -58.858 81.948 -59.139 81.960 -59.340 81.960 -59.511 81.973 -59.713 81.987 -59.899 82.013 -60.085 82.013 -60.162 81.999 -60.286 81.987 -60.457 81.987 -60.628 81.960 -60.783 81.948 -60.926 81.921 -61.080 81.908 -61.236 81.882 -61.363 81.742 -61.386 81.601 -61.067 81.558 -60.862 81.502 -60.954 81.477 -61.093 81.451 -61.234 81.356 -61.280 81.215 -60.996 81.173 -61.131 81.173 -61.300 81.159 -61.439 81.120 -61.595 81.147 -61.810 81.202 -62.042 81.241 -62.258 81.255 -62.428 81.255 -62.814 81.267 -62.984 81.267 -63.167 81.241 -63.292 81.215 -63.431 81.075 -63.340 80.934 -63.070 80.780 -62.801 80.892 -63.085 81.032 -63.418 81.173 -63.571 81.199 -63.756 81.156 -63.874 81.101 -63.992 81.087 -64.130 81.075 -64.285 81.062 -64.438 81.048 -64.590 81.036 -64.729 80.954 -64.800 80.941 -64.953 80.885 -65.054 80.816 -65.126 80.804 -65.264 80.790 -65.416 80.765 -65.568 80.696 -65.652 80.696 -65.987 80.657 -66.122 80.630 -66.257 80.617 -66.395 80.591 -66.531 80.578 -66.682 80.523 -66.768 80.467 -66.852 80.454 -67.004 80.411 -67.105 80.385 -67.254 80.372 -67.405 80.304 -67.502 80.163 -67.431 80.150 -67.249 80.038 -66.947 80.038 -66.767 80.052 -66.631 80.065 -66.495 80.078 -66.344 79.997 -66.081 79.986 -65.901 79.997 -65.748 80.009 -65.611 80.036 -65.477 80.062 -65.342 80.062 -65.190 80.048 -65.008 80.048 -64.828 80.074 -64.707 80.074 -64.509 80.117 -64.407 80.173 -64.306 80.146 -64.109 80.120 -63.897 80.120 -64.064 80.108 -64.216 80.065 -64.331 80.038 -64.452 80.038 -64.632 80.012 -64.768 80.000 -64.919 79.978 -65.058 79.866 -65.037 79.753 -65.062 79.640 -64.949 79.528 -64.896 79.484 -64.992 79.463 -65.131 79.408 -65.213 79.363 -65.322 79.353 -65.473 79.308 -65.595 79.274 -65.703 79.230 -65.811 79.209 -65.935 79.154 -66.031 79.154 -66.180 79.133 -66.303 79.164 -66.506 79.154 -66.643 79.154 -66.807 79.143 -66.943 79.143 -67.106 79.175 -67.296 79.143 -67.406 79.164 -67.596 79.133 -67.720 79.112 -67.842 79.081 -67.952 79.101 -68.143 79.101 -68.306 79.091 -68.470 79.081 -68.634 79.059 -68.770 79.049 -68.920 79.028 -69.056 79.007 -69.179 78.975 -69.300 78.941 -69.093 78.908 -69.212 78.897 -69.347 78.865 -69.455 78.855 -69.606 78.855 -69.931 78.845 -70.066 78.834 -70.142 78.824 -70.143 78.802 -70.142 78.792 -70.306 78.782 -70.468 78.782 -70.617 78.772 -70.780 78.750 -70.915 78.661 -70.959 78.682 -71.150 78.693 -71.312 78.703 -71.502 78.693 -71.637 78.682 -71.786 78.661 -71.905 78.640 -72.026 78.619 -72.146 78.609 -72.309 78.609 -72.470 78.599 -72.619 78.588 -72.766 78.522 -72.840 78.446 -72.900 78.426 -73.020 78.383 -72.801 78.350 -72.904 78.305 -72.991 78.250 -73.078 78.261 -73.254 78.229 -73.064 78.151 -72.798 78.151 -72.650 78.038 -72.455 78.017 -72.280 77.983 -72.088 78.004 -71.968 78.015 -71.822 77.970 -71.602 77.970 -71.455 77.926 -71.557 77.883 -71.648 77.863 -71.461 77.863 -71.300 77.873 -71.141 77.873 -70.967 77.894 -70.833 77.938 -70.717 77.949 -70.584 77.949 -70.438 77.938 -70.250 77.938 -70.222 77.917 -70.209 77.917 -70.370 77.897 -70.502 77.863 -70.619 77.831 -70.724 77.810 -70.857 77.766 -70.626 77.766 -70.452 77.776 -70.305 77.787 -70.217 77.797 -70.083 77.797 -69.924 77.831 -69.807 77.763 -69.881 77.742 -70.012 77.732 -70.160 77.721 -70.234 77.700 -70.367 77.679 -70.501 77.645 -70.310 77.645 -70.239 77.635 -70.051 77.625 -69.879 77.590 -69.689 77.570 -69.503 77.570 -69.330 77.590 -69.183 77.600 -69.036 77.611 -68.891 77.734 -68.989 77.766 -68.870 77.643 -68.597 77.611 -68.398 77.611 -68.239 77.622 -68.092 77.622 -67.946 77.632 -67.812 77.643 -67.666 77.663 -67.533 77.706 -67.425 77.773 -67.363 77.773 -67.203 77.784 -67.070 77.816 -66.936 77.726 -66.665 77.706 -66.493 77.593 -66.284 77.538 -66.376 77.527 -66.522 77.538 -66.695 77.527 -66.854 77.405 -66.717 77.383 -66.518 77.373 -66.651 77.407 -66.852 77.462 -67.065 77.472 -67.237 77.472 -67.397 77.483 -67.583 77.483 -67.728 77.493 -67.887 77.483 -68.047 77.483 -68.220 77.472 -68.366 77.472 -68.671 77.452 -68.790 77.431 -68.937 77.420 -69.083 77.399 -69.229 77.334 -68.986 77.323 -68.814 77.323 -68.655 77.313 -68.497 77.323 -68.350 77.334 -68.192 77.323 -68.020 77.313 -67.848 77.302 -67.676 77.292 -67.491 77.281 -67.332 77.260 -67.148 77.260 -66.989 77.271 -66.856 77.281 -66.698 77.292 -66.565 77.313 -66.445 77.268 -66.550 77.258 -66.683 77.247 -66.828 77.237 -66.974 77.237 -67.146 77.258 -67.317 77.268 -67.488 77.279 -67.674 77.289 -67.846 77.310 -68.017 77.310 -68.176 77.289 -68.308 77.279 -68.468 77.279 -68.771 77.289 -68.944 77.299 -69.129 77.310 -69.288 77.320 -69.460 77.331 -69.619 77.331 -69.923 77.342 -70.096 77.352 -70.237 77.352 -70.382 77.331 -70.501 77.331 -70.660 77.320 -70.805 77.299 -71.095 77.255 -71.197 77.244 -71.328 77.224 -71.460 77.179 -71.548 77.067 -71.415 77.077 -71.283 77.043 -71.081 77.043 -70.922 77.022 -71.054 77.012 -71.199 76.923 -70.926 76.902 -70.741 76.912 -70.610 76.946 -70.495 76.978 -70.378 77.012 -70.277 77.022 -70.219 77.033 -70.206 77.077 -70.091 77.122 -69.990 77.100 -69.804 77.090 -69.936 77.045 -70.037 76.990 -70.112 76.959 -70.229 76.880 -70.227 ; #941 10 76.435 -70.177 76.477 -70.074 76.498 -70.183 76.498 -70.327 76.433 -70.174 ; #942 10 77.515 -71.464 77.493 -71.463 77.428 -71.219 77.438 -71.073 77.438 -70.595 77.449 -70.463 77.470 -70.317 77.470 -70.477 77.480 -70.650 77.501 -70.836 77.512 -71.009 77.512 -71.155 77.522 -71.314 77.512 -71.460 ; #943 10 76.603 -70.202 76.582 -70.006 76.582 -69.849 76.603 -69.704 76.645 -69.901 76.645 -70.059 76.634 -70.189 76.624 -70.189 ; #944 10 77.651 -67.119 77.661 -66.985 77.695 -66.854 77.684 -66.987 ; #945 10 77.548 -66.772 77.548 -66.480 77.570 -66.506 77.570 -66.666 77.548 -66.768 77.527 -66.742 77.538 -66.583 77.548 -66.768 ; #946 10 65.600 -53.250 65.582 -53.164 65.591 -53.034 65.688 -53.054 65.670 -53.178 65.605 -53.258 ; #947 10 65.447 -52.982 65.447 -52.959 65.544 -53.048 65.497 -53.141 65.450 -52.983 ; #948 10 76.176 -61.711 76.186 -61.737 76.155 -61.857 ; #949 10 65.183 -52.330 65.212 -52.361 65.136 -52.434 ; #950 10 66.782 -53.467 66.773 -53.449 66.791 -53.335 66.838 -53.241 66.820 -53.368 ; #951 10 64.344 -51.398 64.352 -51.391 64.370 -51.538 64.288 -51.610 64.296 -51.492 64.342 -51.397 ; #952 10 63.114 -50.724 63.140 -50.740 63.106 -50.841 ; #953 10 63.215 -50.835 63.215 -50.883 63.123 -50.838 ; #954 10 64.574 -51.171 64.583 -51.176 64.583 -51.300 64.518 -51.383 64.465 -51.485 64.411 -51.575 64.411 -51.451 64.419 -51.333 64.482 -51.237 ; #955 10 63.233 -50.627 63.241 -50.632 63.149 -50.697 63.230 -50.625 ; #956 10 64.546 -50.869 64.572 -50.920 64.581 -51.060 64.508 -51.138 64.406 -51.199 64.314 -51.239 64.240 -51.316 64.277 -51.216 64.351 -51.127 64.423 -51.048 64.477 -50.947 64.542 -50.864 ; #957 10 70.009 -54.696 69.990 -54.645 69.972 -54.489 69.924 -54.322 69.943 -54.479 69.961 -54.623 69.979 -54.780 69.893 -54.860 69.796 -54.828 69.778 -54.672 69.692 -54.478 69.731 -54.649 69.760 -54.801 69.769 -54.939 69.692 -55.013 69.627 -54.834 69.588 -54.675 69.580 -54.526 69.588 -54.402 69.580 -54.252 69.571 -54.115 69.571 -53.972 69.523 -54.068 69.523 -53.925 69.541 -53.808 69.485 -53.898 69.494 -53.773 69.541 -53.665 69.598 -53.575 69.598 -53.444 69.580 -53.562 69.483 -53.622 69.465 -53.479 69.465 -53.752 69.446 -53.870 69.465 -54.026 69.465 -54.156 69.456 -54.304 69.359 -54.209 69.349 -54.060 69.293 -53.877 69.284 -53.806 69.266 -53.652 69.304 -53.536 69.314 -53.400 69.343 -53.279 69.352 -53.155 69.381 -53.034 69.381 -52.903 69.408 -52.792 69.426 -52.663 69.444 -52.545 69.474 -52.423 69.491 -52.294 69.521 -52.171 69.560 -52.056 69.625 -51.959 69.722 -52.015 69.819 -52.096 69.848 -52.248 69.857 -52.386 69.884 -52.560 69.923 -52.719 70.009 -52.913 70.111 -53.083 70.181 -53.270 70.222 -53.447 70.252 -53.616 70.262 -53.768 70.281 -53.915 70.291 -54.055 70.310 -54.214 70.329 -54.374 70.320 -54.498 70.291 -54.619 70.272 -54.747 70.243 -54.855 70.130 -54.894 70.028 -54.785 70.009 -54.705 ; #958 10 62.261 -49.725 62.279 -49.735 62.214 -49.818 62.260 -49.724 ; #959 10 61.958 -49.498 61.966 -49.503 61.921 -49.596 ; #960 10 68.110 -53.565 68.053 -53.450 68.150 -53.457 68.112 -53.569 ; #961 10 61.706 -49.168 61.714 -49.173 61.687 -49.276 61.704 -49.166 ; #962 10 70.502 -55.050 70.502 -55.102 70.389 -54.944 70.471 -54.879 ; #963 10 61.319 -48.810 61.336 -48.820 61.301 -48.931 ; #964 10 69.553 -54.308 69.523 -54.299 69.541 -54.169 69.550 -54.307 ; #965 10 61.394 -48.604 61.402 -48.609 61.402 -48.728 61.366 -48.827 61.357 -48.702 ; #966 10 68.525 -53.075 68.488 -53.164 68.421 -53.244 68.394 -53.097 68.430 -52.981 68.527 -53.074 ; #967 10 71.931 -55.916 71.861 -55.791 71.871 -55.652 71.974 -55.649 71.964 -55.747 71.934 -55.921 ; #968 10 60.830 -47.827 60.847 -47.895 60.864 -48.024 60.847 -48.145 60.819 -48.258 60.718 -48.107 60.709 -47.972 60.735 -47.868 60.827 -47.826 ; #969 10 61.125 -48.268 61.125 -48.279 61.088 -48.378 61.096 -48.263 61.105 -48.137 61.122 -48.266 ; #970 10 68.595 -53.008 68.603 -53.014 68.547 -53.103 ; #971 10 68.719 -52.954 68.727 -52.960 68.689 -53.075 68.716 -52.953 ; #972 10 72.817 -55.784 72.827 -55.781 72.817 -55.908 72.807 -56.048 72.779 -56.173 72.706 -56.259 72.716 -56.132 72.745 -55.995 72.745 -55.859 ; #973 10 72.589 -55.968 72.599 -55.964 72.640 -55.850 72.640 -55.999 72.599 -56.125 ; #974 10 73.720 -56.601 73.710 -56.731 73.710 -56.881 73.650 -56.965 73.659 -56.836 73.659 -56.698 73.678 -56.577 73.720 -56.464 ; #975 10 72.424 -55.148 72.415 -55.276 72.374 -55.389 72.343 -55.511 72.333 -55.638 72.273 -55.734 72.204 -55.515 72.242 -55.413 72.304 -55.330 72.355 -55.225 ; #976 10 68.747 -52.806 68.757 -52.801 68.719 -52.915 ; #977 10 72.558 -55.875 72.527 -55.873 72.568 -55.748 ; #978 10 73.566 -56.712 73.547 -56.695 73.566 -56.562 ; #979 10 73.832 -56.797 73.851 -56.826 73.832 -56.947 ; #980 10 74.533 -57.425 74.533 -57.437 74.492 -57.540 74.502 -57.397 74.492 -57.235 74.502 -57.079 74.502 -56.775 74.552 -56.681 74.562 -56.841 74.552 -56.985 74.543 -57.129 74.533 -57.286 ; #981 10 72.886 -55.328 72.846 -55.442 72.827 -55.575 72.807 -55.706 72.726 -55.786 72.706 -55.918 72.697 -55.761 72.647 -55.582 72.687 -55.468 72.747 -55.371 72.766 -55.238 72.836 -55.149 ; #982 10 68.216 -52.378 68.197 -52.365 68.197 -52.224 68.207 -52.090 68.150 -52.191 68.159 -52.069 68.177 -51.941 68.216 -51.839 68.225 -51.717 68.292 -51.622 68.274 -51.751 68.266 -51.874 68.256 -52.008 68.238 -52.124 68.229 -52.246 68.220 -52.381 ; #983 10 73.289 -55.961 73.279 -56.090 73.207 -56.177 73.126 -56.255 73.154 -56.131 73.226 -56.044 73.265 -55.941 73.284 -55.957 ; #984 10 73.575 -56.525 73.626 -56.432 73.667 -56.318 73.648 -56.451 ; #985 10 73.813 -56.433 73.813 -56.408 73.844 -56.297 73.894 -56.190 73.903 -56.350 73.913 -56.497 73.932 -56.664 73.841 -56.735 73.851 -56.605 73.810 -56.431 ; #986 10 68.128 -52.035 68.100 -52.017 68.110 -51.894 68.119 -51.772 68.128 -51.637 68.119 -51.503 68.175 -51.401 68.184 -51.548 68.157 -51.658 68.157 -51.786 68.148 -51.921 68.130 -52.037 ; #987 10 72.621 -55.168 72.630 -55.312 72.599 -55.433 72.580 -55.281 ; #988 10 74.624 -57.031 74.584 -57.146 74.574 -56.985 ; #989 10 72.958 -55.428 73.039 -55.361 73.070 -55.525 73.080 -55.670 73.020 -55.767 72.989 -55.603 ; #990 10 73.607 -56.061 73.607 -56.197 73.566 -56.025 73.506 -55.822 73.456 -55.628 73.547 -55.844 73.566 -55.999 ; #991 10 73.514 -56.075 73.473 -56.051 73.514 -55.937 ; #992 10 72.733 -55.128 72.724 -55.256 72.642 -55.334 72.652 -55.207 ; #993 10 71.335 -53.693 71.325 -53.803 71.275 -53.908 71.234 -54.008 71.131 -54.057 71.091 -53.891 71.060 -53.732 71.069 -53.607 71.129 -53.509 71.232 -53.556 ; #994 10 73.351 -55.674 73.392 -55.560 73.451 -55.461 73.411 -55.577 ; #995 10 60.920 -46.271 60.976 -46.290 60.959 -46.412 60.922 -46.510 60.887 -46.621 60.870 -46.731 60.789 -46.816 60.834 -46.722 60.842 -46.607 60.868 -46.503 60.885 -46.382 ; #996 10 60.801 -46.335 60.784 -46.445 60.730 -46.545 60.747 -46.436 ; #997 10 71.560 -53.326 71.579 -53.208 71.617 -53.105 71.649 -52.985 71.699 -52.891 71.689 -53.017 71.699 -53.184 71.699 -53.319 71.708 -53.460 71.680 -53.584 71.577 -53.474 71.557 -53.324 ; #998 10 71.376 -53.258 71.313 -53.256 71.210 -53.148 71.191 -52.987 71.201 -52.836 71.251 -52.731 71.282 -52.623 71.385 -52.559 71.385 -52.706 71.404 -52.867 71.414 -53.008 71.404 -53.147 ; #999 10 60.737 -45.993 60.728 -46.118 60.675 -46.219 60.692 -46.098 ; #1000 10 71.551 -52.982 71.570 -52.998 71.551 -53.116 71.500 -53.222 71.519 -53.104 ; #1001 10 69.929 -51.046 69.929 -51.201 69.893 -51.308 69.884 -51.158 69.819 -51.243 69.753 -51.341 69.724 -51.451 69.618 -51.352 69.541 -51.156 69.571 -51.033 69.677 -51.043 69.774 -50.980 69.782 -50.843 69.830 -50.745 69.906 -50.930 69.934 -51.052 ; #1002 10 60.403 -45.203 60.403 -45.415 60.302 -45.418 60.209 -45.426 60.255 -45.321 60.309 -45.231 60.401 -45.202 ; #1003 10 71.004 -52.066 70.995 -52.192 70.892 -52.122 70.882 -51.970 70.882 -51.824 70.923 -51.711 ; #1004 10 70.677 -51.607 70.708 -51.619 70.758 -51.803 70.748 -51.941 70.710 -51.778 70.679 -51.609 ; #1005 10 70.564 -51.746 70.545 -51.731 70.535 -51.591 70.566 -51.748 ; #1006 10 70.511 -51.308 70.521 -51.328 70.571 -51.500 70.561 -51.636 70.531 -51.468 ; #1007 10 60.448 -44.992 60.476 -45.008 60.395 -45.082 60.332 -45.167 60.367 -45.067 ; #1008 10 60.457 -45.066 60.474 -45.076 60.401 -45.155 60.455 -45.065 ; #1009 10 60.024 -44.540 60.024 -44.353 60.069 -44.248 60.162 -44.416 60.117 -44.520 ; #1010 10 60.024 -44.315 59.953 -44.396 59.909 -44.246 60.007 -44.212 59.998 -44.078 60.026 -44.047 60.043 -44.174 60.035 -44.298 60.026 -44.316 ; #1011 10 60.181 -44.244 60.181 -44.280 60.089 -44.151 ; #1012 10 60.024 -43.526 59.953 -43.490 60.024 -43.397 60.041 -43.416 ; #1013 10 60.024 -43.372 59.934 -43.396 60.024 -43.336 ; #1014 10 60.911 -42.992 60.903 -42.977 60.885 -42.848 60.930 -42.753 60.930 -42.872 60.913 -42.993 ; #1015 10 62.522 -42.258 62.615 -42.248 62.615 -42.369 62.522 -42.261 ; #1016 10 63.159 -41.289 63.213 -41.317 63.168 -41.416 ; #1017 10 64.288 -41.250 64.325 -41.269 64.288 -41.373 ; #1018 10 64.223 -41.081 64.223 -41.070 64.232 -40.952 64.232 -40.682 64.325 -40.767 64.325 -40.902 64.316 -41.021 ; #1019 10 64.454 -40.239 64.471 -40.236 64.563 -40.344 64.581 -40.488 64.674 -40.452 64.766 -40.500 64.858 -40.597 64.940 -40.764 64.886 -40.871 64.794 -40.762 64.693 -40.624 64.600 -40.588 64.499 -40.524 64.482 -40.391 64.456 -40.243 ; #1020 10 65.291 -39.649 65.348 -39.554 65.366 -39.689 65.339 -39.799 ; #1021 10 82.363 -52.339 82.349 -52.154 82.405 -52.038 82.431 -52.237 ; #1022 10 65.591 -37.799 65.677 -37.733 65.668 -37.603 65.650 -37.469 65.697 -37.368 65.803 -37.484 65.794 -37.354 65.930 -37.699 65.911 -37.815 65.846 -37.917 65.808 -38.023 65.711 -38.010 65.605 -37.931 65.596 -37.801 ; #1023 10 82.921 -50.214 82.908 -50.042 82.921 -49.866 82.934 -50.052 ; #1024 10 65.612 -37.074 65.709 -36.998 65.747 -37.155 65.699 -37.256 65.614 -37.075 ; #1025 10 65.765 -36.903 65.794 -36.842 65.900 -36.849 65.862 -36.954 65.765 -36.905 ; #1026 10 65.824 -36.754 65.824 -36.743 65.920 -36.667 65.977 -36.559 65.977 -36.684 65.920 -36.781 ; #1027 10 82.555 -48.445 82.542 -48.389 82.653 -48.337 82.680 -48.535 82.692 -48.736 82.653 -48.871 82.627 -48.673 82.558 -48.448 ; #1028 10 82.653 -47.366 82.512 -47.076 82.486 -46.879 82.460 -46.667 82.447 -46.497 82.421 -46.285 82.395 -46.103 82.382 -45.919 82.356 -45.708 82.317 -45.500 82.219 -45.253 82.219 -45.081 82.232 -44.921 82.356 -45.205 82.411 -45.097 82.438 -44.964 82.464 -44.830 82.477 -44.653 82.601 -44.938 82.656 -45.147 82.683 -45.330 82.709 -45.527 82.721 -45.712 82.748 -45.911 82.774 -46.108 82.800 -46.291 82.800 -46.498 82.813 -46.699 82.813 -46.857 82.774 -46.994 82.788 -47.213 82.788 -47.594 82.774 -47.785 82.689 -47.530 82.650 -47.368 ; #1029 10 82.977 -46.926 82.977 -46.545 82.990 -46.732 83.042 -46.970 83.055 -47.156 83.055 -47.346 83.013 -47.131 82.970 -46.916 ; #1030 10 68.254 -31.805 68.263 -31.822 68.225 -31.932 ; #1031 10 83.343 -41.719 83.343 -41.208 83.369 -41.439 83.369 -41.629 ; #1032 10 83.134 -39.733 83.146 -39.569 83.228 -39.461 83.242 -39.647 83.242 -39.837 83.284 -40.061 83.297 -40.278 83.297 -40.438 83.254 -40.577 83.215 -40.369 83.203 -40.154 83.146 -39.918 ; #1033 10 83.245 -39.058 83.245 -38.965 83.258 -38.770 83.300 -38.980 83.314 -39.196 83.326 -39.367 83.340 -39.538 83.379 -39.746 83.421 -39.941 83.421 -40.147 83.448 -40.359 83.448 -40.520 83.379 -40.638 83.379 -40.223 83.352 -40.026 83.310 -39.816 83.284 -39.619 83.271 -39.433 83.258 -39.262 83.245 -39.062 ; #1034 10 68.207 -30.059 68.177 -29.906 68.207 -29.790 68.272 -29.948 68.254 -30.054 68.207 -30.056 ; #1035 10 83.467 -39.689 83.441 -39.637 83.441 -39.476 83.415 -39.294 83.510 -39.197 83.523 -39.383 83.510 -39.548 ; #1036 10 70.901 -27.334 70.920 -27.408 70.911 -27.549 70.920 -27.686 70.880 -27.811 70.777 -27.672 70.818 -27.559 70.837 -27.436 70.897 -27.331 ; #1037 10 70.533 -26.129 70.552 -26.138 70.552 -26.282 70.502 -26.404 70.471 -26.245 70.531 -26.128 ; #1038 10 73.351 -25.061 73.360 -24.945 73.351 -24.803 73.332 -24.495 73.332 -24.358 73.322 -24.217 73.293 -24.053 73.284 -23.912 73.265 -23.767 73.265 -23.630 73.274 -23.485 73.305 -23.348 73.324 -23.494 73.365 -23.662 73.384 -23.808 73.403 -23.966 73.413 -24.121 73.444 -24.285 73.454 -24.426 73.454 -24.576 73.463 -24.731 73.463 -24.881 73.454 -25.026 73.444 -25.159 73.363 -25.271 73.353 -25.062 ; #1039 10 69.735 -23.293 69.744 -23.297 69.744 -23.440 69.677 -23.557 69.659 -23.407 ; #1040 10 72.374 -22.531 72.393 -22.688 72.505 -22.736 72.486 -22.592 72.477 -22.452 72.467 -22.301 72.436 -22.139 72.436 -22.004 72.539 -22.085 72.529 -22.216 72.611 -22.386 72.671 -22.548 72.652 -22.675 72.724 -22.854 72.764 -23.021 72.867 -23.185 72.877 -23.326 72.886 -23.479 72.877 -23.624 72.896 -23.794 72.906 -23.947 72.915 -24.100 72.906 -24.246 72.896 -24.390 72.886 -24.522 72.774 -24.458 72.671 -24.437 72.580 -24.261 72.580 -24.112 72.499 -23.928 72.470 -23.780 72.450 -23.623 72.422 -23.475 72.402 -23.318 72.364 -23.154 72.283 -22.971 72.242 -22.806 72.242 -22.658 72.182 -22.498 72.173 -22.346 72.201 -22.211 72.304 -22.163 72.336 -22.323 72.376 -22.476 72.386 -22.534 ; #1041 10 74.462 -20.998 74.471 -21.141 74.471 -21.293 74.452 -21.450 74.433 -21.581 74.414 -21.726 74.383 -21.864 74.323 -21.990 74.210 -21.861 74.191 -21.702 74.172 -21.542 74.141 -21.377 74.122 -21.218 74.131 -21.071 74.150 -20.940 74.150 -20.789 74.169 -20.632 74.179 -20.497 74.188 -20.337 74.208 -20.194 74.258 -20.353 74.361 -20.488 74.421 -20.651 74.440 -20.811 74.440 -20.963 74.459 -20.997 ; #1042 10 76.603 -21.253 76.692 -21.153 76.692 -21.453 76.637 -21.584 76.616 -21.416 76.605 -21.254 ; #1043 10 74.739 -20.023 74.780 -19.899 74.840 -19.770 74.909 -19.951 74.919 -20.024 74.900 -20.156 74.959 -20.027 74.969 -20.018 74.998 -20.016 75.031 -20.185 75.042 -20.343 75.031 -20.478 74.988 -20.599 74.885 -20.582 74.825 -20.697 74.753 -20.528 74.725 -20.364 74.706 -20.217 74.715 -20.068 74.734 -20.021 ; #1044 10 76.739 -21.320 76.750 -21.338 76.729 -21.472 ; #1045 10 76.412 -21.028 76.401 -21.023 76.401 -20.983 76.367 -20.867 76.325 -20.690 76.291 -20.531 76.346 -20.700 76.391 -20.865 76.401 -20.983 ; #1046 10 76.626 -20.733 76.637 -20.895 76.582 -21.011 76.603 -20.878 76.624 -20.731 ; #1047 10 76.380 -20.257 76.401 -20.267 76.412 -20.428 76.412 -20.585 76.380 -20.713 76.346 -20.540 76.380 -20.413 ; #1048 10 78.054 -21.206 78.064 -21.211 78.044 -21.362 77.944 -21.458 77.989 -21.334 ; #1049 10 76.467 -20.252 76.501 -20.282 76.467 -20.408 76.456 -20.546 76.422 -20.687 76.433 -20.548 76.433 -20.391 76.464 -20.250 ; #1050 10 78.101 -20.672 78.070 -20.670 78.111 -20.516 ; #1051 10 77.909 -20.079 77.889 -19.908 77.868 -19.578 77.857 -19.399 77.946 -19.588 77.936 -19.744 77.970 -19.920 78.001 -20.097 78.012 -20.088 78.022 -20.093 78.022 -20.240 78.033 -20.406 78.022 -20.548 77.967 -20.360 77.934 -20.196 77.912 -20.084 ; #1052 10 75.411 -17.955 75.411 -18.096 75.322 -18.211 75.312 -18.348 75.388 -18.535 75.367 -18.680 75.346 -18.811 75.233 -18.830 75.110 -18.886 74.998 -18.862 75.008 -18.714 74.998 -18.569 74.978 -18.422 75.019 -18.131 75.029 -17.983 75.029 -17.829 75.008 -17.667 74.957 -17.495 75.008 -17.374 75.131 -17.302 75.152 -17.464 75.097 -17.581 75.086 -17.730 75.141 -17.894 75.218 -18.080 75.262 -17.946 75.307 -17.812 75.406 -17.953 ; #1053 10 76.197 -18.672 76.320 -18.671 76.433 -18.735 76.545 -18.746 76.658 -18.683 76.770 -18.893 76.802 -19.051 76.689 -19.056 76.668 -18.890 76.634 -19.018 76.614 -19.152 76.490 -19.108 76.378 -18.987 76.265 -18.922 76.142 -18.810 76.030 -18.677 76.152 -18.649 76.195 -18.681 ; #1054 10 78.460 -19.254 78.460 -19.415 78.381 -19.217 ; #1055 10 81.728 -20.973 81.742 -20.841 81.742 -20.671 81.754 -20.506 81.797 -20.356 81.797 -20.527 81.836 -20.703 81.768 -20.840 81.728 -20.976 ; #1056 10 78.211 -18.899 78.232 -18.909 78.198 -19.054 78.143 -19.189 78.153 -19.033 78.208 -18.898 ; #1057 10 80.156 -19.061 80.182 -19.045 80.209 -19.210 80.251 -19.410 80.264 -19.582 80.264 -19.749 80.209 -19.890 80.098 -20.003 80.072 -19.839 80.084 -19.679 80.098 -19.533 80.124 -19.379 80.137 -19.218 80.150 -19.058 ; #1058 10 82.023 -20.261 82.009 -20.097 82.121 -19.966 82.176 -20.150 82.270 -20.369 82.313 -20.563 82.301 -20.743 82.160 -20.657 82.091 -20.466 ; #1059 10 78.709 -18.332 78.719 -18.351 78.719 -18.513 78.619 -18.615 78.664 -18.474 ; #1060 10 78.897 -18.167 78.897 -18.285 78.784 -18.274 78.897 -18.163 ; #1061 10 79.248 -17.716 79.258 -17.780 79.193 -17.913 79.148 -18.043 79.025 -18.028 79.081 -17.904 79.101 -17.736 79.136 -17.588 79.248 -17.712 ; #1062 10 81.771 -18.607 81.826 -18.462 81.895 -18.665 81.938 -18.856 81.938 -19.013 81.869 -19.166 81.843 -18.968 81.804 -18.778 81.778 -18.610 ; #1063 10 82.133 -19.029 82.121 -19.023 82.147 -18.878 82.229 -19.074 82.229 -19.246 82.130 -19.027 ; #1064 10 56.710 8.649 56.727 8.726 56.816 8.840 56.905 8.885 56.994 8.873 56.943 8.759 56.916 8.644 56.845 8.645 56.783 8.531 56.712 8.646 ; #1065 10 55.067 9.696 55.051 9.663 55.024 9.776 54.955 9.776 54.904 9.876 54.896 9.999 54.955 10.033 55.016 9.999 55.024 9.978 55.051 9.923 55.095 9.809 ; #1066 10 55.542 9.706 55.479 9.717 55.427 9.830 55.338 9.886 55.240 9.965 55.151 9.997 55.221 9.997 55.205 10.110 55.115 10.144 55.107 10.257 55.080 10.370 55.064 10.493 55.088 10.607 55.088 10.627 55.132 10.752 55.149 10.773 55.238 10.808 55.336 10.774 55.371 10.785 55.461 10.696 55.496 10.582 55.548 10.696 55.645 10.597 55.585 10.596 55.496 10.516 55.487 10.403 55.577 10.458 55.639 10.335 55.631 10.221 55.577 9.994 55.569 9.962 55.544 9.849 55.560 9.735 55.544 9.701 ; #1067 10 54.849 10.406 54.900 10.417 54.951 10.304 55.003 10.180 54.916 10.293 54.848 10.406 ; #1068 10 55.022 10.499 55.005 10.519 54.997 10.632 55.024 10.632 55.067 10.623 55.067 10.612 55.024 10.499 ; #1069 10 55.924 10.661 55.924 10.606 56.014 10.527 55.924 10.582 55.835 10.515 55.835 10.629 55.924 10.664 ; #1070 10 54.963 10.711 54.936 10.677 54.849 10.632 54.762 10.720 54.849 10.765 54.936 10.821 55.024 10.887 55.122 10.867 55.024 10.798 54.965 10.708 ; #1071 10 57.263 10.980 57.271 11.036 57.360 11.093 57.352 10.979 57.292 10.863 57.265 10.978 ; #1072 10 55.379 11.088 55.363 11.099 55.363 11.109 55.319 11.222 55.221 11.252 55.238 11.366 55.230 11.434 55.230 11.523 55.221 11.558 55.238 11.682 55.186 11.794 55.097 11.748 55.105 11.635 55.078 11.748 55.026 11.860 54.983 11.849 54.991 11.736 54.904 11.745 54.888 11.766 54.801 11.854 54.793 11.854 54.793 11.864 54.706 11.863 54.610 11.917 54.663 11.952 54.750 11.987 54.837 12.102 54.924 12.092 54.940 11.980 55.028 11.905 55.028 11.939 55.001 12.038 55.028 12.152 55.028 12.163 55.080 12.129 55.170 12.097 55.259 12.198 55.267 12.311 55.303 12.436 55.392 12.417 55.436 12.305 55.479 12.192 55.569 12.228 55.631 12.343 55.639 12.353 55.639 12.467 55.675 12.500 55.764 12.571 55.853 12.562 55.897 12.552 55.986 12.522 56.065 12.601 56.128 12.489 56.136 12.375 56.163 12.250 56.128 12.149 56.076 12.034 56.032 11.908 55.961 12.032 55.872 12.040 55.820 12.061 55.722 12.070 55.706 11.955 55.689 11.911 55.760 11.967 55.849 12.014 55.939 11.981 55.849 11.866 55.770 11.843 55.700 11.776 55.760 11.652 55.768 11.652 55.858 11.723 55.947 11.655 55.955 11.735 55.991 11.701 55.982 11.576 55.999 11.462 55.991 11.372 55.964 11.486 55.874 11.453 55.866 11.339 55.776 11.272 55.785 11.147 55.768 11.023 55.768 10.909 55.679 11.022 55.608 11.146 55.510 11.179 55.421 11.213 55.386 11.088 ; #1073 10 54.821 10.983 54.813 10.993 54.770 11.106 54.746 11.219 54.694 11.331 54.677 11.386 54.677 11.498 54.685 11.611 54.677 11.724 54.704 11.837 54.791 11.849 54.807 11.828 54.894 11.740 54.902 11.730 54.886 11.616 54.869 11.493 54.904 11.380 54.981 11.268 54.981 11.145 54.938 11.031 54.851 11.109 54.825 10.985 ; #1074 10 55.014 12.181 55.005 12.180 54.910 12.144 54.944 12.269 54.987 12.382 54.979 12.495 55.022 12.530 55.039 12.509 55.055 12.397 55.020 12.273 55.011 12.183 ; #1075 10 55.656 12.520 55.585 12.585 55.675 12.642 55.683 12.632 55.656 12.518 ; #1076 10 55.220 15.002 55.246 14.948 55.282 14.836 55.265 14.722 55.176 14.707 55.087 14.772 55.062 14.885 55.034 15.007 55.026 15.017 55.026 15.072 55.087 15.130 55.184 15.113 55.217 15.002 ; #1077 10 -29.098 -70.025 -29.113 -70.056 -29.204 -70.058 -29.287 -70.028 -29.371 -69.989 -29.461 -69.990 -29.544 -69.941 -29.578 -69.940 -29.661 -69.930 -29.744 -69.930 -29.835 -69.940 -29.918 -69.931 -29.984 -69.847 -30.058 -69.894 -30.141 -69.909 -30.224 -70.020 -30.224 -70.089 -30.193 -70.178 -30.276 -70.154 -30.367 -70.229 -30.450 -70.262 -30.541 -70.288 -30.624 -70.331 -30.715 -70.357 -30.798 -70.354 -30.882 -70.369 -30.965 -70.420 -30.942 -70.512 -31.025 -70.564 -31.115 -70.581 -31.199 -70.587 -31.282 -70.611 -31.365 -70.627 -31.456 -70.605 -31.539 -70.542 -31.623 -70.527 -31.706 -70.464 -31.713 -70.367 -31.796 -70.284 -31.880 -70.326 -31.864 -70.421 -31.955 -70.408 -32.039 -70.375 -32.054 -70.370 -32.137 -70.295 -32.152 -70.291 -32.244 -70.298 -32.300 -70.216 -32.383 -70.192 -32.466 -70.225 -32.549 -70.211 -32.632 -70.147 -32.648 -70.142 -32.688 -70.055 -32.729 -70.057 -32.785 -70.083 -32.868 -70.156 -32.942 -70.150 -33.033 -70.118 -33.116 -70.055 -33.116 -70.036 -33.068 -69.923 -33.158 -69.861 -33.242 -69.858 -33.325 -69.891 -33.416 -69.927 -33.499 -69.933 -33.590 -69.959 -33.673 -69.944 -33.756 -69.959 -33.839 -69.896 -33.922 -69.901 -34.014 -69.879 -34.104 -69.945 -34.089 -70.049 -34.104 -70.094 -34.170 -70.094 -34.261 -70.140 -34.344 -70.192 -34.428 -70.265 -34.518 -70.282 -34.584 -70.311 -34.667 -70.326 -34.751 -70.360 -34.842 -70.378 -34.898 -70.376 -34.989 -70.421 -35.014 -70.529 -35.080 -70.581 -35.120 -70.496 -35.204 -70.477 -35.295 -70.440 -35.379 -70.430 -35.462 -70.442 -35.553 -70.407 -35.720 -70.409 -35.811 -70.432 -35.852 -70.408 -35.943 -70.469 -35.969 -70.517 -35.984 -70.623 -36.067 -70.743 -36.151 -70.754 -36.242 -70.846 -36.209 -70.935 -36.275 -70.968 -36.283 -71.072 -36.357 -71.099 -36.440 -71.101 -36.531 -71.184 -36.623 -71.217 -36.706 -71.207 -36.729 -71.188 -36.755 -71.178 -36.829 -71.187 -36.912 -71.168 -36.995 -71.189 -37.079 -71.248 -37.170 -71.223 -37.253 -71.164 -37.337 -71.185 -37.428 -71.238 -37.512 -71.228 -37.603 -71.191 -37.686 -71.141 -37.778 -71.104 -37.861 -71.055 -37.952 -71.061 -38.009 -71.072 -38.176 -71.032 -38.259 -70.982 -38.307 -70.898 -38.391 -70.889 -38.474 -70.910 -38.507 -70.951 -38.532 -71.061 -38.589 -71.194 -38.637 -71.313 -38.703 -71.440 -38.787 -71.461 -38.870 -71.442 -38.954 -71.432 -39.045 -71.426 -39.128 -71.448 -39.212 -71.488 -39.295 -71.548 -39.379 -71.519 -39.394 -71.575 -39.369 -71.668 -39.418 -71.736 -39.501 -71.727 -39.592 -71.701 -39.607 -71.698 -39.691 -71.627 -39.774 -71.667 -39.790 -71.683 -39.874 -71.704 -39.866 -71.813 -39.949 -71.816 -40.033 -71.781 -40.066 -71.693 -40.150 -71.703 -40.234 -71.822 -40.319 -71.869 -40.411 -71.870 -40.502 -71.972 -40.528 -71.964 -40.612 -71.930 -40.704 -71.881 -40.788 -71.891 -40.873 -71.879 -40.964 -71.920 -41.056 -71.912 -41.141 -71.940 -41.232 -71.913 -41.316 -71.910 -41.400 -71.968 -41.493 -71.906 -41.577 -71.894 -41.661 -71.829 -41.753 -71.830 -41.778 -71.813 -41.862 -71.791 -41.911 -71.917 -41.903 -72.026 -41.988 -72.115 -42.072 -72.183 -42.129 -72.105 -42.212 -72.115 -42.297 -72.163 -42.389 -72.176 -42.557 -72.171 -42.649 -72.163 -42.733 -72.192 -42.825 -72.162 -42.882 -72.084 -42.890 -71.974 -42.905 -71.877 -42.937 -71.787 -43.028 -71.788 -43.086 -71.919 -43.170 -71.977 -43.236 -71.893 -43.310 -71.823 -43.326 -71.811 -43.341 -71.757 -43.434 -71.739 -43.518 -71.848 -43.592 -71.778 -43.659 -71.704 -43.674 -71.692 -43.708 -71.697 -43.792 -71.778 -43.799 -71.781 -43.883 -71.880 -43.968 -71.827 -44.052 -71.824 -44.144 -71.866 -44.144 -71.762 -44.159 -71.655 -44.152 -71.536 -44.144 -71.428 -44.169 -71.335 -44.177 -71.224 -44.295 -71.131 -44.379 -71.243 -44.471 -71.234 -44.545 -71.373 -44.504 -71.469 -44.504 -71.574 -44.520 -71.697 -44.496 -71.791 -44.520 -71.907 -44.512 -72.017 -44.596 -72.076 -44.655 -71.989 -44.686 -71.898 -44.670 -71.776 -44.719 -71.684 -44.719 -71.578 -44.735 -71.556 -44.827 -71.494 -44.901 -71.423 -44.950 -71.340 -45.043 -71.292 -45.128 -71.441 -45.213 -71.475 -45.263 -71.552 -45.255 -71.654 -45.340 -71.749 -45.433 -71.778 -45.518 -71.750 -45.586 -71.766 -45.610 -71.662 -45.635 -71.647 -45.669 -71.632 -45.727 -71.662 -45.752 -71.695 -45.837 -71.771 -45.861 -71.889 -45.937 -71.813 -46.022 -71.764 -46.030 -71.768 -46.064 -71.765 -46.157 -71.750 -46.242 -71.700 -46.258 -71.699 -46.282 -71.701 -46.367 -71.693 -46.460 -71.794 -46.518 -71.930 -46.611 -71.969 -46.696 -71.962 -46.781 -72.026 -46.823 -71.932 -46.916 -71.886 -46.924 -71.891 -46.932 -72.001 -46.990 -72.041 -47.015 -72.065 -47.101 -72.162 -47.124 -72.291 -47.209 -72.336 -47.303 -72.353 -47.388 -72.417 -47.481 -72.477 -47.567 -72.512 -47.659 -72.551 -47.709 -72.470 -47.769 -72.395 -47.854 -72.333 -47.939 -72.313 -48.024 -72.306 -48.118 -72.440 -48.151 -72.566 -48.193 -72.620 -48.278 -72.590 -48.363 -72.574 -48.449 -72.567 -48.534 -72.612 -48.601 -72.701 -48.651 -72.844 -48.667 -72.961 -48.752 -73.059 -48.837 -73.095 -48.930 -73.178 -48.956 -73.172 -49.006 -73.317 -49.006 -73.425 -49.099 -73.465 -49.184 -73.521 -49.269 -73.547 -49.355 -73.520 -49.448 -73.463 -49.533 -73.499 -49.619 -73.545 -49.678 -73.469 -49.694 -73.457 -49.779 -73.503 -49.864 -73.441 -49.914 -73.350 -49.973 -73.273 -50.067 -73.234 -50.241 -73.235 -50.319 -73.165 -50.413 -73.172 -50.456 -73.079 -50.379 -72.922 -50.321 -72.776 -50.337 -72.677 -50.345 -72.573 -50.302 -72.428 -50.328 -72.325 -50.387 -72.308 -50.482 -72.281 -50.569 -72.240 -50.665 -72.256 -50.751 -72.354 -50.838 -72.388 -50.889 -72.300 -50.948 -72.264 -50.974 -72.300 -51.061 -72.324 -51.156 -72.351 -51.243 -72.449 -51.269 -72.356 -51.364 -72.319 -51.381 -72.296 -51.407 -72.203 -51.449 -72.109 -51.500 -72.031 -51.558 -71.958 -51.653 -71.975 -51.678 -71.926 -51.678 -70.026 -51.704 -69.921 -51.728 -69.826 -51.754 -69.721 -51.781 -69.627 -51.797 -69.563 -51.823 -69.469 -51.823 -69.239 -51.848 -69.143 -51.855 -69.094 -51.890 -68.994 -51.924 -68.905 -51.933 -68.910 -51.959 -68.815 -51.959 -68.806 -51.967 -68.700 -51.983 -68.600 -51.991 -68.550 -52.015 -68.490 -52.031 -68.466 -52.056 -68.471 -52.040 -68.461 -52.040 -68.451 -51.945 -68.437 -51.876 -68.516 -51.807 -68.585 -51.748 -68.660 -51.672 -68.734 -51.603 -68.802 -51.516 -68.860 -51.421 -68.912 -51.352 -68.981 -51.292 -69.054 -51.352 -69.210 -51.283 -69.278 -51.267 -69.389 -51.275 -69.503 -51.301 -69.629 -51.301 -69.639 -51.249 -69.497 -51.233 -69.368 -51.259 -69.274 -51.283 -69.168 -51.241 -69.033 -51.154 -69.001 -51.067 -69.045 -50.980 -69.089 -50.885 -69.109 -50.798 -69.153 -50.711 -69.154 -50.660 -69.232 -50.747 -69.394 -50.756 -69.419 -50.669 -69.304 -50.582 -69.175 -50.486 -69.150 -50.399 -69.141 -50.304 -69.104 -50.217 -69.072 -50.130 -68.989 -50.043 -68.904 -49.958 -68.748 -49.915 -68.608 -49.890 -68.486 -49.797 -68.385 -49.763 -68.487 -49.678 -68.552 -49.670 -68.666 -49.670 -68.775 -49.662 -68.866 -49.678 -68.907 -49.678 -68.928 -49.694 -69.012 -49.678 -68.993 -49.662 -68.944 -49.654 -68.875 -49.646 -68.763 -49.638 -68.650 -49.553 -68.617 -49.519 -68.640 -49.452 -68.671 -49.410 -68.745 -49.442 -68.653 -49.450 -68.647 -49.517 -68.628 -49.584 -68.555 -49.670 -68.480 -49.678 -68.484 -49.753 -68.403 -49.795 -68.316 -49.787 -68.194 -49.753 -68.068 -49.678 -67.921 -49.593 -67.803 -49.499 -67.765 -49.414 -67.742 -49.321 -67.725 -49.236 -67.715 -49.142 -67.678 -49.057 -67.668 -48.972 -67.635 -49.057 -67.731 -49.065 -67.853 -48.980 -67.725 -48.887 -67.667 -48.801 -67.657 -48.716 -67.605 -48.631 -67.477 -48.546 -67.371 -48.453 -67.240 -48.367 -67.177 -48.300 -67.026 -48.266 -66.901 -48.173 -66.761 -48.106 -66.620 -48.030 -66.475 -47.945 -66.349 -47.878 -66.199 -47.792 -66.127 -47.784 -66.005 -47.699 -65.996 -47.668 -65.874 -47.574 -65.935 -47.489 -65.988 -47.505 -66.113 -47.528 -66.232 -47.570 -66.359 -47.554 -66.436 -47.554 -66.329 -47.513 -66.202 -47.455 -66.057 -47.463 -65.953 -47.378 -65.892 -47.293 -65.841 -47.200 -65.805 -47.114 -65.796 -47.029 -65.785 -46.936 -65.814 -46.850 -65.879 -46.793 -65.967 -46.767 -66.061 -46.783 -66.186 -46.783 -66.399 -46.758 -66.503 -46.749 -66.605 -46.749 -66.711 -46.716 -66.801 -46.666 -66.893 -46.591 -66.963 -46.533 -67.051 -46.484 -67.133 -46.417 -67.206 -46.367 -67.287 -46.333 -67.377 -46.276 -67.465 -46.105 -67.593 -46.012 -67.631 -45.927 -67.653 -45.841 -67.662 -45.749 -67.637 -45.707 -67.626 -45.622 -67.564 -45.536 -67.471 -45.451 -67.397 -45.358 -67.370 -45.273 -67.277 -45.102 -67.111 -45.009 -67.034 -44.925 -66.903 -44.925 -66.789 -44.909 -66.676 -44.917 -66.575 -44.833 -66.570 -44.759 -66.423 -44.733 -66.307 -44.709 -66.277 -44.676 -66.157 -44.692 -66.059 -44.707 -66.027 -44.731 -65.932 -44.707 -65.921 -44.707 -65.870 -44.731 -65.775 -44.739 -65.673 -44.707 -65.650 -44.623 -65.595 -44.565 -65.684 -44.531 -65.775 -44.439 -65.746 -44.355 -65.700 -44.289 -65.557 -44.263 -65.431 -44.179 -65.396 -44.087 -65.337 -44.003 -65.343 -43.919 -65.390 -43.835 -65.322 -43.751 -65.297 -43.667 -65.353 -43.574 -65.375 -43.490 -65.402 -43.406 -65.417 -43.322 -65.372 -43.238 -65.276 -43.154 -65.190 -43.062 -65.142 -43.030 -65.128 -42.939 -64.997 -42.872 -64.865 -42.847 -64.741 -42.814 -64.624 -42.772 -64.492 -42.688 -64.417 -42.696 -64.524 -42.663 -64.623 -42.655 -64.724 -42.614 -64.820 -42.573 -64.907 -42.547 -65.000 -42.522 -65.093 -42.438 -65.089 -42.363 -64.945 -42.279 -64.806 -42.246 -64.678 -42.238 -64.562 -42.262 -64.468 -42.328 -64.392 -42.369 -64.306 -42.453 -64.350 -42.538 -64.293 -42.612 -64.220 -42.587 -64.106 -42.579 -63.999 -42.563 -63.879 -42.514 -63.754 -42.430 -63.730 -42.338 -63.682 -42.254 -63.686 -42.170 -63.702 -42.086 -63.687 -42.002 -63.722 -41.909 -63.787 -41.825 -63.835 -41.825 -63.938 -41.882 -64.065 -41.915 -64.182 -41.956 -64.313 -41.956 -64.425 -41.990 -64.326 -41.982 -64.220 -42.039 -64.140 -42.123 -64.165 -42.156 -64.282 -42.148 -64.382 -42.164 -64.502 -42.156 -64.603 -42.140 -64.700 -42.056 -64.633 -41.972 -64.617 -41.972 -64.721 -41.956 -64.828 -41.890 -65.007 -41.833 -65.096 -41.800 -65.123 -41.743 -65.159 -41.651 -65.162 -41.567 -65.117 -41.483 -65.101 -41.391 -65.113 -41.307 -65.088 -41.223 -65.084 -41.139 -65.161 -41.054 -65.186 -40.962 -65.210 -40.878 -65.235 -40.786 -65.247 -40.702 -65.240 -40.610 -65.202 -40.526 -65.129 -40.501 -65.006 -40.452 -64.883 -40.526 -64.811 -40.542 -64.921 -40.557 -64.815 -40.581 -64.722 -40.606 -64.630 -40.630 -64.527 -40.655 -64.435 -40.689 -64.346 -40.730 -64.260 -40.730 -64.147 -40.778 -64.064 -40.827 -63.982 -40.877 -63.890 -40.884 -63.790 -40.884 -63.687 -40.877 -63.571 -40.884 -63.471 -40.877 -63.365 -40.884 -63.256 -40.877 -63.150 -40.835 -63.031 -40.794 -62.911 -40.771 -62.842 -40.737 -62.726 -40.681 -62.600 -40.640 -62.481 -40.547 -62.375 -40.463 -62.322 -40.372 -62.267 -40.397 -62.379 -40.313 -62.326 -40.229 -62.395 -40.195 -62.484 -40.104 -62.519 -40.019 -62.545 -39.936 -62.435 -39.844 -62.414 -39.761 -62.425 -39.728 -62.405 -39.645 -62.386 -39.561 -62.378 -39.585 -62.283 -39.577 -62.221 -39.485 -62.191 -39.402 -62.173 -39.311 -62.162 -39.227 -62.135 -39.169 -62.217 -39.103 -62.307 -39.119 -62.201 -39.028 -62.221 -39.012 -62.327 -38.946 -62.407 -38.862 -62.429 -38.779 -62.411 -38.696 -62.365 -38.622 -62.442 -38.538 -62.474 -38.546 -62.375 -38.546 -62.273 -38.620 -62.196 -38.678 -62.113 -38.694 -62.007 -38.719 -61.913 -38.711 -61.809 -38.744 -61.718 -38.744 -61.607 -38.721 -61.497 -38.729 -61.398 -38.729 -61.185 -38.713 -61.078 -38.713 -60.976 -38.705 -60.872 -38.690 -60.765 -38.674 -60.649 -38.666 -60.545 -38.651 -60.438 -38.626 -60.319 -38.618 -60.214 -38.602 -60.108 -38.602 -60.098 -38.587 -59.982 -38.579 -59.878 -38.546 -59.766 -38.523 -59.657 -38.507 -59.540 -38.484 -59.431 -38.468 -59.316 -38.453 -59.199 -38.427 -59.090 -38.387 -58.975 -38.346 -58.852 -38.331 -58.745 -38.298 -58.634 -38.264 -58.512 -38.241 -58.403 -38.200 -58.289 -38.135 -58.167 -38.035 -57.933 -37.977 -57.814 -37.894 -57.687 -37.803 -57.650 -37.719 -57.653 -37.628 -57.625 -37.545 -57.550 -37.461 -57.465 -37.378 -57.372 -37.287 -57.273 -37.203 -57.198 -37.112 -57.143 -37.028 -57.077 -36.945 -57.021 -36.853 -56.956 -36.687 -56.805 -36.596 -56.787 -36.504 -56.787 -36.421 -56.802 -36.330 -56.793 -36.246 -56.806 -36.155 -56.818 -36.107 -56.843 -36.073 -56.882 -36.124 -56.998 -36.108 -57.094 -36.067 -57.192 -36.011 -57.275 -35.945 -57.356 -35.862 -57.419 -35.771 -57.460 -35.687 -57.495 -35.596 -57.486 -35.530 -57.457 -35.446 -57.401 -35.363 -57.327 -35.272 -57.251 -35.188 -57.225 -35.097 -57.277 -34.930 -57.431 -34.882 -57.519 -34.816 -57.603 -34.784 -57.695 -34.776 -57.693 -34.727 -57.790 -34.669 -57.875 -34.629 -57.965 -34.605 -58.059 -34.565 -58.159 -34.540 -58.252 -34.499 -58.351 -34.443 -58.437 -34.385 -58.471 -34.344 -58.561 -34.261 -58.609 -34.178 -58.608 -34.095 -58.665 -34.079 -58.680 -34.064 -58.576 -34.031 -58.528 -33.998 -58.520 -33.958 -58.501 -33.867 -58.497 -33.809 -58.570 -33.752 -58.575 -33.704 -58.572 -33.630 -58.602 -33.547 -58.660 -33.464 -58.667 -33.373 -58.644 -33.282 -58.640 -33.199 -58.619 -33.116 -58.550 -33.033 -58.547 -32.949 -58.536 -32.884 -58.420 -32.891 -58.323 -32.808 -58.274 -32.725 -58.263 -32.642 -58.300 -32.551 -58.307 -32.468 -58.324 -32.385 -58.342 -32.302 -58.340 -32.253 -58.319 -32.220 -58.301 -32.137 -58.223 -32.054 -58.232 -32.021 -58.261 -31.998 -58.286 -31.907 -58.281 -31.899 -58.270 -31.816 -58.268 -31.732 -58.296 -31.642 -58.264 -31.576 -58.149 -31.493 -58.119 -31.402 -58.087 -31.318 -58.145 -31.296 -58.188 -31.212 -58.098 -31.179 -58.090 -31.096 -58.042 -31.013 -58.012 -30.930 -58.001 -30.846 -57.990 -30.748 -58.013 -30.692 -57.901 -30.609 -57.899 -30.568 -57.908 -30.528 -57.916 -30.444 -57.962 -30.353 -57.979 -30.346 -57.977 -30.263 -57.869 -30.179 -57.762 -30.088 -57.710 -30.005 -57.708 -30.005 -57.690 -29.990 -57.639 -29.906 -57.537 -29.823 -57.434 -29.732 -57.408 -29.642 -57.392 -29.601 -57.286 -29.568 -57.183 -29.527 -57.148 -29.444 -57.073 -29.361 -57.001 -29.270 -56.918 -29.237 -56.894 -29.154 -56.802 -29.063 -56.776 -28.980 -56.732 -28.914 -56.613 -28.831 -56.529 -28.740 -56.447 -28.656 -56.432 -28.583 -56.321 -28.500 -56.249 -28.417 -56.148 -28.326 -56.140 -28.301 -56.038 -28.218 -56.041 -28.194 -55.931 -28.243 -55.842 -28.152 -55.807 -28.094 -55.895 -28.011 -55.803 -27.970 -55.768 -27.954 -55.747 -27.906 -55.641 -27.881 -55.559 -27.798 -55.487 -27.757 -55.472 -27.717 -55.367 -27.691 -55.265 -27.625 -55.146 -27.552 -55.056 -27.461 -55.031 -27.403 -54.914 -27.355 -54.808 -27.322 -54.705 -27.256 -54.596 -27.241 -54.487 -27.217 -54.385 -27.134 -54.305 -27.086 -54.199 -27.003 -54.087 -27.018 -53.992 -26.962 -53.974 -26.879 -53.923 -26.796 -53.879 -26.705 -53.855 -26.622 -53.888 -26.538 -53.883 -26.447 -53.885 -26.281 -53.857 -26.198 -53.851 -26.115 -53.799 -26.099 -53.796 -26.026 -53.831 -25.935 -53.881 -25.851 -53.914 -25.768 -53.957 -25.685 -53.960 -25.602 -53.994 -25.511 -54.005 -25.437 -54.090 -25.405 -54.190 -25.389 -54.285 -25.430 -54.389 -25.430 -54.486 -25.521 -54.549 -25.463 -54.645 -25.432 -54.696 -25.432 -54.726 -25.439 -54.727 -25.513 -54.767 -25.604 -54.755 -25.687 -54.722 -25.770 -54.746 -25.853 -54.787 -25.945 -54.776 -26.028 -54.782 -26.094 -54.802 -26.177 -54.807 -26.260 -54.831 -26.343 -54.893 -26.434 -54.918 -26.517 -54.950 -26.517 -55.047 -26.608 -55.081 -26.641 -55.135 -26.697 -55.242 -26.788 -55.258 -26.796 -55.357 -26.788 -55.374 -26.813 -55.484 -26.980 -55.688 -27.063 -55.712 -27.153 -55.719 -27.245 -55.833 -27.277 -55.916 -27.194 -56.007 -27.179 -56.102 -27.146 -56.194 -27.179 -56.306 -27.270 -56.409 -27.353 -56.442 -27.436 -56.495 -27.388 -56.594 -27.304 -56.665 -27.304 -56.772 -27.353 -56.857 -27.312 -56.947 -27.264 -57.036 -27.312 -57.142 -27.337 -57.254 -27.312 -57.347 -27.279 -57.438 -27.272 -57.535 -27.239 -57.635 -27.223 -57.730 -27.175 -57.828 -27.142 -57.919 -27.134 -58.025 -27.119 -58.119 -27.134 -58.219 -27.119 -58.314 -27.127 -58.422 -27.142 -58.523 -27.142 -58.629 -27.165 -58.731 -27.125 -58.724 -27.041 -58.785 -26.950 -58.682 -26.867 -58.629 -26.784 -58.595 -26.736 -58.480 -26.720 -58.450 -26.629 -58.424 -26.546 -58.370 -26.455 -58.297 -26.440 -58.312 -26.349 -58.334 -26.265 -58.337 -26.182 -58.294 -26.099 -58.231 -26.008 -58.233 -25.960 -58.127 -25.877 -58.006 -25.793 -57.991 -25.710 -57.937 -25.687 -57.924 -25.604 -57.879 -25.521 -57.846 -25.480 -57.742 -25.397 -57.688 -25.314 -57.673 -25.240 -57.757 -25.157 -57.780 -25.132 -57.814 -25.116 -57.829 -25.033 -57.870 -24.967 -57.957 -24.944 -58.051 -24.911 -58.153 -24.871 -58.245 -24.863 -58.252 -24.813 -58.352 -24.853 -58.454 -24.770 -58.520 -24.714 -58.610 -24.698 -58.714 -24.673 -58.807 -24.658 -58.911 -24.600 -59.001 -24.534 -59.089 -24.476 -59.187 -24.453 -59.281 -24.395 -59.370 -24.395 -59.388 -24.329 -59.486 -24.246 -59.571 -24.188 -59.661 -24.122 -59.749 -24.081 -59.840 -24.023 -59.929 -23.967 -60.028 -23.919 -60.118 -23.911 -60.117 -23.911 -60.232 -23.919 -60.330 -23.904 -60.425 -23.904 -60.443 -23.880 -60.525 -23.855 -60.618 -23.799 -60.707 -23.784 -60.802 -23.768 -60.897 -23.760 -60.943 -23.710 -61.042 -23.679 -61.135 -23.663 -61.141 -23.580 -61.216 -23.490 -61.231 -23.474 -61.258 -23.434 -61.349 -23.375 -61.447 -23.360 -61.463 -23.319 -61.554 -23.246 -61.641 -23.189 -61.739 -23.157 -61.831 -23.074 -61.876 -22.990 -61.961 -22.942 -62.060 -22.859 -62.114 -22.775 -62.161 -22.685 -62.234 -22.602 -62.290 -22.518 -62.355 -22.435 -62.353 -22.379 -62.450 -22.371 -62.488 -22.288 -62.573 -22.230 -62.670 -22.147 -62.744 -22.081 -62.820 -21.998 -62.894 -21.907 -62.911 -21.907 -63.371 -21.915 -63.486 -21.915 -63.755 -21.930 -63.786 -21.946 -63.818 -21.953 -63.819 -21.961 -63.829 -21.905 -63.964 -21.988 -64.081 -22.079 -64.112 -22.162 -64.171 -22.245 -64.211 -22.337 -64.233 -22.420 -64.312 -22.503 -64.351 -22.594 -64.372 -22.677 -64.384 -22.768 -64.406 -22.775 -64.407 -22.775 -64.416 -22.710 -64.445 -22.619 -64.488 -22.586 -64.502 -22.561 -64.527 -22.478 -64.516 -22.387 -64.579 -22.220 -64.632 -22.130 -64.658 -22.081 -64.756 -22.089 -64.795 -22.048 -64.886 -22.033 -64.989 -22.000 -65.081 -22.000 -65.157 -22.008 -65.272 -22.008 -65.571 -22.000 -65.666 -22.008 -65.676 -22.015 -65.745 -22.015 -65.841 -21.932 -65.934 -21.841 -66.007 -21.816 -66.118 -21.725 -66.201 -21.692 -66.301 -21.942 -66.364 -22.025 -66.414 -22.040 -66.482 -22.073 -66.583 -22.122 -66.704 -22.178 -66.818 -22.261 -66.830 -22.335 -66.858 -22.375 -66.970 -22.458 -67.087 -22.557 -67.093 -22.640 -67.201 -22.723 -67.251 -22.749 -67.228 -22.839 -67.136 -22.922 -67.080 -23.253 -67.205 -23.344 -67.227 -23.443 -67.259 -23.542 -67.283 -23.633 -67.314 -23.641 -67.315 -23.731 -67.338 -23.830 -67.370 -23.921 -67.410 -23.971 -67.514 -24.012 -67.626 -24.035 -67.686 -24.043 -67.696 -24.083 -67.808 -24.124 -67.910 -24.165 -68.013 -24.205 -68.116 -24.246 -68.219 -24.337 -68.329 -24.368 -68.352 -24.408 -68.443 -24.491 -68.532 -24.583 -68.564 -24.666 -68.603 -24.756 -68.578 -24.797 -68.487 -24.880 -68.473 -24.929 -68.442 -25.012 -68.416 -25.037 -68.518 -25.078 -68.545 -25.168 -68.582 -25.225 -68.612 -25.316 -68.631 -25.399 -68.621 -25.648 -68.529 -25.739 -68.521 -25.989 -68.459 -26.080 -68.505 -26.163 -68.620 -26.246 -68.637 -26.329 -68.646 -26.413 -68.636 -26.504 -68.569 -26.587 -68.489 -26.753 -68.371 -26.769 -68.365 -26.852 -68.382 -26.935 -68.486 -26.950 -68.586 -27.016 -68.707 -26.976 -68.796 -27.034 -68.906 -27.125 -68.952 -27.208 -68.961 -27.299 -69.028 -27.382 -69.073 -27.465 -69.108 -27.556 -69.128 -27.639 -69.184 -27.672 -69.191 -27.763 -69.220 -27.846 -69.324 -27.929 -69.389 -28.013 -69.425 -28.096 -69.541 -28.186 -69.599 -28.260 -69.712 -28.301 -69.712 -28.392 -69.713 -28.475 -69.759 -28.566 -69.797 -28.649 -69.776 -28.732 -69.803 -28.815 -69.839 -28.899 -69.829 -28.982 -69.857 -29.038 -69.976 -29.121 -70.033 ; #1078 10 77.548 -66.775 77.548 -66.483 77.570 -66.510 77.570 -66.668 77.548 -66.772 ; #1079 10 77.527 -66.746 77.538 -66.586 77.548 -66.772 ; #1080 10 67.715 -53.767 67.801 -53.716 67.810 -53.861 67.713 -53.769 ; #1081 10 66.940 -52.970 66.940 -53.097 66.931 -53.218 66.931 -53.344 66.913 -53.471 66.847 -53.563 66.865 -53.449 66.883 -53.323 66.892 -53.203 66.928 -53.089 66.937 -52.969 ; #1082 10 63.011 -50.090 63.011 -50.079 63.028 -49.967 63.090 -49.871 63.056 -49.973 63.020 -50.084 63.002 -50.144 ; #1083 10 63.472 -41.917 63.525 -41.837 63.498 -41.689 63.489 -41.662 63.581 -41.818 63.519 -41.920 63.474 -41.919 ; #1084 10 83.049 -44.029 83.049 -43.662 83.062 -43.500 83.062 -44.201 ; #1085 10 76.401 -21.023 76.401 -20.983 76.412 -21.028 ; #1086 10 76.367 -20.863 76.325 -20.687 76.291 -20.527 76.346 -20.697 76.391 -20.862 76.401 -20.979 ; #1087 10 14.469 0.242 14.395 0.338 14.304 0.403 14.221 0.395 14.138 0.396 14.055 0.423 14.006 0.481 13.916 0.509 13.832 0.594 13.825 0.623 13.741 0.624 13.733 0.719 13.685 0.814 13.670 0.910 13.604 1.006 13.521 1.033 13.462 1.137 13.462 1.146 13.447 1.242 13.407 1.289 13.391 1.193 13.366 1.176 13.381 1.121 13.422 1.025 13.349 0.997 13.257 0.998 13.167 0.990 13.151 0.990 13.068 1.104 13.002 1.208 12.911 1.313 12.904 1.322 12.896 1.331 12.813 1.427 12.730 1.532 12.689 1.587 12.681 1.682 12.674 1.786 12.706 1.890 12.789 1.984 12.782 2.039 12.757 2.135 12.674 2.202 12.590 2.220 12.507 2.258 12.474 2.164 12.443 2.069 12.352 2.107 12.262 2.163 12.178 2.228 12.130 2.266 12.074 2.313 11.965 2.380 11.965 2.389 11.973 2.398 12.056 2.435 12.140 2.405 12.230 2.378 12.314 2.368 12.339 2.463 12.354 2.558 12.369 2.662 12.443 2.756 12.459 2.831 12.375 2.916 12.302 3.011 12.136 3.183 12.112 3.201 12.112 3.210 12.105 3.218 12.056 3.247 12.000 3.265 11.967 3.361 11.952 3.379 11.952 3.387 11.901 3.483 11.828 3.539 11.770 3.585 11.770 3.594 11.861 3.660 11.944 3.604 12.043 3.639 12.076 3.647 12.166 3.618 12.265 3.626 12.356 3.643 12.447 3.642 12.530 3.633 12.621 3.670 12.704 3.774 12.787 3.886 12.886 3.969 12.969 4.015 13.052 4.070 13.151 4.087 13.234 4.104 13.325 4.104 13.416 4.111 13.500 4.111 13.548 4.215 13.647 4.318 13.737 4.431 13.771 4.526 13.778 4.590 13.801 4.693 13.827 4.806 13.793 4.902 13.793 4.957 13.809 5.061 13.801 5.174 13.809 5.240 13.900 5.324 13.933 5.428 13.948 5.503 13.900 5.598 13.859 5.703 13.776 5.911 13.743 6.024 13.710 6.128 13.743 6.232 13.687 6.336 13.662 6.374 13.564 6.479 13.480 6.554 13.389 6.638 13.298 6.685 13.215 6.732 13.124 6.798 13.058 6.912 13.058 6.978 13.091 7.073 13.124 7.108 13.190 7.166 13.182 7.201 13.167 7.296 13.215 7.409 13.281 7.522 13.337 7.625 13.403 7.738 13.410 7.764 13.395 7.869 13.379 7.973 13.339 8.077 13.283 8.172 13.283 8.181 13.242 8.227 13.169 8.331 13.128 8.360 13.153 8.416 13.120 8.511 13.029 8.586 12.989 8.681 12.956 8.777 12.931 8.872 12.923 8.889 12.915 8.936 12.915 9.031 12.900 9.126 12.892 9.230 12.900 9.334 12.884 9.380 12.884 9.475 12.877 9.559 12.975 9.643 13.066 9.727 13.149 9.792 13.233 9.886 13.248 9.924 13.297 10.019 13.345 10.114 13.360 10.218 13.391 10.408 13.424 10.513 13.440 10.559 13.447 10.663 13.447 10.758 13.432 10.854 13.424 10.957 13.424 11.052 13.440 11.148 13.440 11.347 13.414 11.451 13.389 11.546 13.358 11.641 13.343 11.716 13.302 11.811 13.246 11.906 13.231 11.953 13.174 12.057 13.174 12.065 13.182 12.160 13.149 12.255 13.142 12.340 13.215 12.434 13.298 12.482 13.347 12.576 13.430 12.672 13.513 12.776 13.571 12.872 13.612 12.967 13.627 13.157 13.710 13.187 13.743 13.233 13.784 13.262 13.784 13.536 13.882 13.519 13.966 13.501 14.049 13.484 14.057 13.476 14.140 13.458 14.223 13.441 14.306 13.423 14.390 13.406 14.405 13.406 14.478 13.388 14.561 13.453 14.577 13.537 14.668 13.604 14.751 13.631 14.800 13.707 14.890 13.689 14.974 13.718 15.057 13.756 15.148 13.821 15.238 13.897 15.330 13.953 15.421 14.018 15.519 14.085 15.610 14.150 15.701 14.218 15.800 14.293 15.981 14.465 16.080 14.551 16.171 14.647 16.262 14.732 16.353 14.817 16.444 14.902 16.527 14.987 16.618 15.072 16.717 15.157 16.807 15.254 16.899 15.339 16.939 15.377 17.022 15.387 17.113 15.396 17.204 15.397 17.295 15.407 17.369 15.416 17.467 15.417 17.558 15.427 17.657 15.428 17.748 15.438 17.846 15.438 17.938 15.448 18.036 15.449 18.127 15.459 18.318 15.460 18.417 15.470 18.508 15.471 18.607 15.480 18.698 15.481 18.796 15.491 18.880 15.500 18.978 15.510 19.069 15.520 19.168 15.530 19.259 15.549 19.357 15.558 19.448 15.568 19.547 15.578 19.638 15.597 19.736 15.606 19.827 15.616 19.926 15.626 20.017 15.665 20.025 15.674 20.116 15.722 20.207 15.778 20.297 15.826 20.389 15.846 20.479 15.761 20.536 15.715 20.619 15.631 20.709 15.547 20.783 15.451 20.866 15.434 20.957 15.482 21.040 15.445 21.124 15.390 21.215 15.335 21.298 15.278 21.381 15.213 21.464 15.138 21.555 15.083 21.838 15.086 21.936 15.077 22.019 15.078 22.118 15.061 22.209 15.044 22.257 15.036 22.348 15.019 22.447 15.002 22.530 14.985 22.629 14.967 22.712 14.950 22.803 14.933 22.901 14.916 22.985 14.899 22.993 14.899 22.993 14.890 22.934 14.784 22.886 14.669 22.830 14.563 22.782 14.457 22.724 14.351 22.675 14.245 22.619 14.139 22.702 14.034 22.710 14.025 22.793 13.929 22.876 13.824 23.043 13.632 23.116 13.527 23.172 13.431 23.213 13.335 23.228 13.238 23.254 13.133 23.279 13.027 23.302 12.930 23.317 12.825 23.341 12.719 23.366 12.614 23.381 12.517 23.407 12.412 23.429 12.306 23.445 12.201 23.469 12.104 23.493 11.998 23.509 11.893 23.469 11.816 23.403 11.710 23.345 11.604 23.288 11.498 23.222 11.393 23.166 11.287 23.134 11.228 23.078 11.123 23.012 11.017 22.896 10.806 22.830 10.700 22.772 10.594 22.716 10.489 22.650 10.383 22.594 10.278 22.586 10.260 22.520 10.154 22.520 10.145 22.455 10.040 22.447 10.022 22.391 9.925 22.358 9.878 22.302 9.773 22.236 9.667 22.220 9.629 22.195 9.591 22.188 9.573 22.172 9.555 22.114 9.450 22.107 9.441 22.081 9.394 22.066 9.376 22.010 9.270 21.944 9.165 21.888 9.060 21.830 8.964 21.764 8.858 21.706 8.753 21.640 8.648 21.582 8.543 21.516 8.438 21.458 8.341 21.327 8.131 21.271 8.026 21.205 7.922 21.149 7.825 21.083 7.720 21.027 7.616 20.961 7.511 20.905 7.415 20.864 7.356 20.807 7.292 20.708 7.178 20.617 7.065 20.518 6.952 20.435 6.856 20.419 6.827 20.321 6.722 20.230 6.609 20.131 6.496 19.965 6.305 19.874 6.191 19.775 6.078 19.576 5.851 19.493 5.756 19.485 5.718 19.469 5.604 19.445 5.500 19.429 5.386 19.404 5.281 19.388 5.167 19.363 5.063 19.348 4.958 19.332 4.862 19.309 4.748 19.294 4.644 19.270 4.530 19.245 4.425 19.230 4.312 19.204 4.207 19.131 4.199 17.870 4.210 17.787 4.202 17.115 4.209 17.016 4.180 16.926 4.172 16.843 4.155 16.494 4.158 16.453 4.132 16.380 4.037 16.289 4.010 16.206 3.972 16.123 3.946 16.040 3.939 15.949 3.882 15.865 3.873 15.782 3.848 15.742 3.753 15.691 3.658 15.600 3.564 15.517 3.506 15.434 3.490 15.442 3.452 15.449 3.405 15.449 3.379 15.465 3.274 15.473 3.218 15.488 3.114 15.504 3.001 15.413 2.973 15.413 2.869 15.421 2.765 15.421 2.556 15.413 2.452 15.413 2.348 15.405 2.235 15.397 2.130 15.397 2.035 15.390 1.940 15.390 1.827 15.382 1.723 15.374 1.619 15.374 1.506 15.366 1.401 15.366 1.297 15.341 1.269 15.258 1.174 15.175 1.091 15.076 0.989 15.051 0.942 15.051 0.838 15.043 0.734 15.028 0.696 15.043 0.612 15.076 0.507 15.076 0.499 15.051 0.424 15.051 0.328 15.076 0.233 15.076 0.224 14.960 0.225 14.877 0.209 14.778 0.219 14.612 0.163 14.513 0.210 14.505 0.219 ; #1088 10 56.616 8.160 56.608 8.150 56.519 8.140 56.331 8.143 56.234 8.156 56.144 8.125 56.047 8.159 56.144 8.167 56.109 8.282 56.019 8.326 55.930 8.407 55.870 8.307 55.922 8.193 56.019 8.146 55.930 8.168 55.833 8.191 55.743 8.193 55.654 8.149 55.556 8.196 55.521 8.320 55.610 8.329 55.567 8.351 55.487 8.466 55.479 8.590 55.390 8.657 55.354 8.668 55.257 8.669 55.221 8.593 55.205 8.480 55.115 8.558 55.124 8.671 55.026 8.651 54.949 8.673 54.932 8.751 54.949 8.851 54.940 8.893 54.940 8.904 54.914 9.027 54.898 9.151 54.848 9.275 54.848 9.330 54.855 9.364 54.871 9.409 54.864 9.440 54.871 9.461 54.940 9.574 54.932 9.605 54.890 9.615 54.873 9.739 54.969 9.739 55.028 9.670 55.037 9.660 55.072 9.547 55.072 9.434 55.161 9.454 55.221 9.567 55.300 9.691 55.390 9.612 55.442 9.580 55.459 9.590 55.548 9.580 55.556 9.693 55.564 9.703 55.592 9.714 55.652 9.827 55.687 9.703 55.722 9.579 55.731 9.589 55.739 9.644 55.704 9.758 55.712 9.872 55.729 9.997 55.755 10.018 55.845 9.997 55.878 9.872 55.895 9.997 55.895 10.121 55.930 10.235 56.019 10.246 56.109 10.246 56.207 10.235 56.207 10.246 56.285 10.361 56.277 10.475 56.180 10.405 56.128 10.530 56.163 10.551 56.252 10.618 56.209 10.732 56.298 10.823 56.396 10.901 56.485 10.923 56.556 10.809 56.556 10.694 56.548 10.580 56.548 10.465 56.583 10.351 56.583 10.226 56.494 10.170 56.583 10.204 56.645 10.319 56.725 10.274 56.725 10.159 56.732 10.114 56.725 10.114 56.716 10.103 56.681 9.988 56.672 9.863 56.681 9.863 56.707 9.988 56.707 9.999 56.743 10.114 56.743 10.319 56.833 10.263 56.922 10.253 57.011 10.218 57.046 10.103 57.107 9.988 57.107 9.967 57.090 9.932 57.082 9.911 57.082 9.740 57.021 9.625 57.049 9.510 57.049 9.394 57.032 9.279 56.953 9.165 56.893 9.198 56.803 9.177 56.714 9.178 56.722 9.292 56.564 9.293 56.654 9.271 56.662 9.156 56.670 9.041 56.750 9.156 56.839 9.065 56.839 9.030 56.822 8.915 56.732 8.849 56.672 8.735 56.583 8.736 56.531 8.726 56.514 8.612 56.612 8.544 56.604 8.544 56.587 8.523 56.622 8.408 56.639 8.293 56.710 8.177 56.620 8.136 ; #1089 10 56.710 8.409 56.710 8.420 56.620 8.536 56.620 8.547 56.718 8.534 56.718 8.420 56.727 8.409 56.743 8.524 56.833 8.501 56.922 8.614 56.993 8.705 57.009 8.819 57.034 8.862 57.069 9.092 57.086 9.113 57.061 9.159 57.034 9.274 57.034 9.285 57.051 9.330 57.076 9.445 57.076 9.560 57.103 9.675 57.127 9.790 57.094 9.916 57.094 9.938 57.111 9.973 57.119 9.994 57.111 10.015 57.059 10.130 57.024 10.245 57.103 10.360 57.192 10.417 57.263 10.532 57.317 10.511 57.406 10.501 57.504 10.501 57.594 10.424 57.682 10.481 57.772 10.583 57.737 10.467 57.685 10.351 57.641 10.225 57.624 10.109 57.624 9.994 57.581 9.902 57.502 9.787 57.413 9.707 57.323 9.615 57.234 9.500 57.190 9.375 57.182 9.260 57.173 9.145 57.190 9.030 57.190 8.997 57.154 8.882 57.138 8.767 57.165 8.641 57.138 8.572 57.067 8.482 56.978 8.368 56.888 8.278 56.799 8.291 56.710 8.407 ; #1090 10 46.133 20.312 46.076 20.370 45.990 20.438 45.941 20.541 45.907 20.644 45.822 20.710 45.814 20.719 45.780 20.749 45.788 20.843 45.695 20.846 45.636 20.810 45.550 20.866 45.518 20.825 45.485 20.894 45.459 20.901 45.409 20.981 45.342 21.082 45.318 21.164 45.277 21.267 45.269 21.298 45.261 21.330 45.245 21.399 45.219 21.512 45.203 21.521 45.118 21.505 45.025 21.415 44.991 21.518 44.907 21.513 44.858 21.405 44.817 21.431 44.809 21.536 44.784 21.639 44.758 21.647 44.702 21.717 44.694 21.821 44.686 21.936 44.670 22.040 44.637 22.057 44.629 22.067 44.545 22.121 44.537 22.226 44.622 22.283 44.647 22.305 44.713 22.415 44.739 22.522 44.672 22.609 44.657 22.713 44.598 22.792 44.566 22.726 44.590 22.623 44.533 22.504 44.508 22.493 44.475 22.522 44.467 22.531 44.434 22.539 44.350 22.603 44.350 22.635 44.275 22.713 44.224 22.814 44.175 22.915 44.152 23.018 44.152 23.028 44.078 23.042 44.062 22.990 44.054 22.948 44.031 22.907 44.022 22.907 44.007 22.896 43.966 22.883 43.958 22.873 43.917 22.889 43.892 22.960 43.884 22.979 43.876 23.030 43.868 23.070 43.868 23.122 43.884 23.193 43.899 23.245 43.907 23.288 43.907 23.392 43.915 23.453 43.899 23.503 43.899 23.523 43.884 23.551 43.858 23.654 43.866 23.717 43.866 23.768 43.841 23.827 43.833 23.868 43.808 23.971 43.792 24.040 43.776 24.089 43.769 24.109 43.761 24.127 43.753 24.168 43.761 24.273 43.761 24.334 43.769 24.386 43.802 24.459 43.827 24.503 43.819 24.572 43.788 24.662 43.788 24.694 43.780 24.798 43.780 24.808 43.788 24.922 43.788 24.996 43.780 25.014 43.757 25.095 43.757 25.209 43.731 25.289 43.698 25.350 43.698 25.442 43.706 25.462 43.713 25.504 43.713 25.565 43.737 25.618 43.753 25.670 43.761 25.722 43.810 25.797 43.843 25.861 43.851 25.861 43.876 25.895 43.892 25.907 43.925 25.951 43.940 25.984 43.948 25.995 43.964 26.025 43.980 26.036 43.987 26.047 43.987 26.056 44.044 26.154 44.044 26.174 44.052 26.206 44.060 26.226 44.068 26.246 44.084 26.287 44.084 26.328 44.091 26.380 44.091 26.399 44.099 26.471 44.107 26.577 44.115 26.609 44.130 26.681 44.130 26.732 44.171 26.841 44.179 26.883 44.187 26.998 44.187 27.059 44.171 27.119 44.179 27.224 44.171 27.233 44.164 27.242 44.089 27.339 44.066 27.442 44.074 27.557 44.041 27.646 44.015 27.759 44.048 27.867 43.964 27.919 43.880 28.003 43.847 28.104 43.815 28.206 43.808 28.309 43.800 28.422 43.800 28.537 43.884 28.546 43.968 28.586 44.060 28.615 44.144 28.595 44.228 28.614 44.313 28.581 44.404 28.642 44.488 28.712 44.572 28.814 44.657 28.864 44.572 28.750 44.657 28.708 44.698 28.817 44.713 28.924 44.729 28.936 44.721 28.830 44.706 28.723 44.721 28.724 44.795 28.837 44.888 28.857 44.972 28.805 45.039 28.905 45.039 28.989 44.954 28.979 44.870 28.999 44.786 28.919 44.794 29.025 44.835 29.135 44.842 29.241 44.850 29.357 44.858 29.463 44.925 29.541 45.009 29.570 45.035 29.583 45.128 29.595 45.186 29.621 45.245 29.590 45.295 29.605 45.370 29.583 45.419 29.528 45.427 29.487 45.435 29.478 45.443 29.428 45.467 29.360 45.467 29.295 45.459 29.189 45.459 29.179 45.443 29.148 45.402 29.069 45.394 29.026 45.362 28.917 45.354 28.916 45.330 28.830 45.346 28.726 45.261 28.696 45.261 28.667 45.277 28.553 45.300 28.451 45.326 28.349 45.394 28.251 45.479 28.167 45.495 28.137 45.518 28.120 45.604 28.056 45.689 28.108 45.774 28.108 45.860 28.066 45.945 28.076 46.038 28.044 46.123 28.064 46.155 28.078 46.240 28.068 46.282 28.082 46.308 28.105 46.393 28.157 46.478 28.196 46.563 28.177 46.649 28.196 46.819 28.110 46.819 28.100 46.886 28.076 46.972 28.053 47.057 27.946 47.107 27.845 47.174 27.747 47.225 27.742 47.233 27.743 47.319 27.636 47.394 27.537 47.479 27.537 47.511 27.434 47.527 27.426 47.612 27.341 47.636 27.323 47.729 27.226 47.815 27.194 47.900 27.164 47.985 27.120 48.017 27.091 48.025 27.092 48.100 26.993 48.185 26.917 48.237 26.816 48.260 26.700 48.268 26.594 48.227 26.495 48.211 26.385 48.203 26.277 48.187 26.275 48.102 26.236 48.017 26.153 48.001 26.066 48.001 26.004 47.993 25.938 47.985 25.820 47.959 25.710 47.951 25.602 47.959 25.508 47.943 25.399 47.935 25.281 47.868 25.167 47.774 25.086 47.749 24.976 47.749 24.967 47.741 24.901 47.757 24.850 47.842 24.751 47.884 24.648 47.969 24.548 47.969 24.486 47.977 24.379 47.945 24.269 47.945 24.142 47.969 24.037 47.977 23.930 47.953 23.876 48.003 23.763 48.003 23.720 48.019 23.605 48.027 23.521 48.010 23.487 48.010 23.414 48.052 23.311 48.112 23.208 48.096 23.100 48.010 22.985 47.977 22.875 47.920 22.798 47.852 22.685 47.802 22.629 47.794 22.521 47.787 22.413 47.771 22.337 47.721 22.226 47.636 22.177 47.612 22.103 47.553 22.003 47.537 21.993 47.495 21.999 47.410 21.983 47.343 21.871 47.257 21.832 47.172 21.786 47.156 21.785 47.140 21.763 47.055 21.650 47.047 21.682 46.962 21.624 46.877 21.543 46.791 21.485 46.724 21.480 46.690 21.437 46.656 21.329 46.656 21.319 46.631 21.307 46.538 21.259 46.452 21.242 46.419 21.188 46.325 21.119 46.302 21.012 46.302 20.906 46.310 20.800 46.302 20.790 46.216 20.732 46.201 20.711 46.192 20.691 46.192 20.597 46.226 20.493 46.192 20.491 46.201 20.386 46.159 20.267 ; #1091 10 26.846 53.331 26.861 53.351 26.861 53.428 26.895 53.334 26.879 53.226 26.846 53.329 ; #1092 10 26.548 54.075 26.597 54.081 26.564 53.980 ; #1093 10 26.987 55.880 26.939 55.817 26.848 55.767 26.800 55.655 26.767 55.544 26.718 55.432 26.718 55.326 26.627 55.333 26.635 55.440 26.658 55.540 26.707 55.652 26.757 55.756 26.772 55.874 26.765 55.971 26.813 56.074 26.896 56.182 26.979 56.230 27.013 56.341 27.045 56.298 27.061 56.202 27.036 56.092 26.970 55.987 26.985 55.882 ; #1094 10 26.846 55.697 26.902 55.781 26.927 55.686 26.844 55.694 ; #1095 10 20.514 92.846 20.499 92.818 20.425 92.902 20.516 92.849 ; #1096 10 20.073 92.990 20.065 92.989 19.982 93.042 19.899 93.078 19.982 93.059 20.073 93.026 20.156 92.963 20.073 92.988 ; #1097 10 20.025 93.472 20.017 93.442 19.934 93.477 19.851 93.562 19.934 93.556 ; #1098 10 18.959 93.705 18.959 93.667 18.918 93.557 18.835 93.631 18.752 93.716 18.777 93.815 18.860 93.817 18.943 93.801 18.959 93.707 ; #1099 10 19.443 94.028 19.526 93.964 19.549 93.871 19.622 93.785 19.531 93.717 19.448 93.790 19.365 93.844 19.373 93.941 19.439 94.025 ; #1100 10 16.326 94.721 16.310 94.701 16.227 94.623 16.144 94.566 16.070 94.452 15.987 94.516 16.070 94.611 16.154 94.698 16.237 94.738 16.328 94.721 ; #1101 10 16.001 94.897 16.001 94.859 15.917 94.886 ; #1102 10 12.379 98.062 12.387 98.080 12.471 98.115 12.463 98.019 12.379 98.058 ; #1103 10 11.747 98.125 11.747 98.143 11.830 98.124 11.913 98.077 11.830 98.105 ; #1104 10 12.254 98.145 12.254 98.203 12.345 98.127 ; #1105 10 13.060 98.355 13.076 98.375 13.159 98.400 13.225 98.311 13.142 98.332 13.058 98.351 ; #1106 10 11.538 98.238 11.538 98.284 11.621 98.356 11.712 98.356 11.795 98.382 11.878 98.343 11.795 98.318 11.704 98.309 11.621 98.264 ; #1107 10 12.453 98.392 12.422 98.380 12.463 98.479 12.554 98.543 12.636 98.487 12.728 98.478 12.712 98.382 12.629 98.391 12.538 98.409 12.455 98.392 ; #1108 10 10.085 98.211 10.002 98.221 10.085 98.312 10.143 98.318 10.085 98.209 ; #1109 10 11.696 98.489 11.648 98.511 11.623 98.604 11.706 98.621 11.797 98.620 11.880 98.545 11.865 98.439 11.782 98.449 11.698 98.487 ; #1110 10 12.087 98.518 12.055 98.541 11.971 98.580 12.045 98.682 12.085 98.591 12.168 98.504 12.085 98.514 ; #1111 10 21.269 92.272 21.221 92.294 21.137 92.346 21.046 92.361 20.963 92.395 20.872 92.428 20.789 92.453 20.723 92.539 20.640 92.591 20.566 92.656 20.483 92.728 20.400 92.751 20.483 92.802 20.574 92.789 20.657 92.784 20.607 92.805 20.566 92.895 20.483 92.909 20.427 92.929 20.354 92.880 20.271 92.858 20.205 92.944 20.253 92.980 20.336 93.029 20.427 93.081 20.510 93.085 20.576 93.114 20.632 93.140 20.559 93.120 20.468 93.097 20.443 93.111 20.476 93.134 20.468 93.161 20.377 93.100 20.293 93.049 20.286 93.144 20.301 93.185 20.218 93.125 20.127 93.064 20.086 93.104 20.003 93.147 19.920 93.201 20.003 93.165 20.086 93.187 20.086 93.196 19.996 93.229 19.913 93.274 20.003 93.248 20.086 93.214 20.178 93.181 20.152 93.253 20.137 93.347 20.145 93.357 20.186 93.392 20.170 93.437 20.086 93.450 20.062 93.543 19.978 93.606 19.994 93.704 19.911 93.693 19.820 93.652 19.812 93.747 19.779 93.839 19.795 93.879 19.712 93.792 19.638 93.878 19.582 93.967 19.499 94.040 19.466 94.045 19.383 93.987 19.342 93.935 19.326 93.857 19.334 93.802 19.407 93.716 19.491 93.651 19.435 93.547 19.352 93.601 19.268 93.657 19.177 93.730 19.112 93.730 19.063 93.829 18.997 93.916 18.957 94.006 19.040 94.046 19.123 94.019 19.206 94.021 19.290 93.975 19.259 94.067 19.342 94.095 19.433 94.098 19.448 94.100 19.441 94.118 19.274 94.095 19.183 94.092 19.100 94.110 19.009 94.098 18.926 94.143 18.893 94.234 18.845 94.324 18.829 94.226 18.773 94.293 18.682 94.317 18.599 94.335 18.516 94.400 18.433 94.473 18.350 94.480 18.291 94.499 18.201 94.545 18.117 94.542 18.026 94.530 17.943 94.557 17.860 94.581 17.693 94.655 17.610 94.635 17.570 94.629 17.486 94.636 17.403 94.652 17.320 94.585 17.287 94.516 17.204 94.552 17.121 94.522 17.038 94.511 16.947 94.462 16.899 94.464 16.815 94.424 16.724 94.412 16.641 94.392 16.558 94.326 16.475 94.305 16.384 94.302 16.301 94.282 16.210 94.270 16.126 94.268 16.102 94.360 16.167 94.465 16.250 94.531 16.341 94.570 16.425 94.656 16.508 94.743 16.591 94.736 16.632 94.733 16.616 94.760 16.632 94.788 16.540 94.767 16.457 94.756 16.374 94.728 16.318 94.738 16.235 94.735 16.152 94.686 16.061 94.610 16.094 94.718 16.177 94.776 16.260 94.825 16.276 94.845 16.185 94.806 16.102 94.766 16.036 94.653 15.953 94.746 16.036 94.813 16.126 94.901 16.218 94.904 16.301 94.933 16.333 95.004 16.359 95.043 16.343 95.032 16.335 95.004 16.287 94.940 16.196 94.928 16.146 94.968 16.063 94.881 15.979 94.896 15.897 94.894 15.873 94.987 15.906 95.047 15.997 95.106 16.080 95.117 16.164 95.110 16.254 95.180 16.262 95.181 16.247 95.214 16.239 95.231 16.156 95.145 16.148 95.181 15.974 95.158 15.900 95.243 15.983 95.254 16.067 95.283 16.124 95.320 16.034 95.299 16.117 95.385 16.208 95.380 16.208 95.372 16.231 95.375 16.264 95.405 16.173 95.411 16.082 95.399 15.999 95.359 15.916 95.321 15.833 95.385 15.865 95.494 15.881 95.505 15.964 95.600 16.047 95.687 16.130 95.727 16.214 95.765 16.297 95.759 16.329 95.763 16.281 95.861 16.337 95.964 16.371 96.064 16.453 96.104 16.494 96.052 16.446 96.141 16.469 96.239 16.517 96.351 16.600 96.333 16.684 96.280 16.717 96.275 16.800 96.252 16.833 96.247 16.873 96.226 16.889 96.274 16.914 96.296 16.922 96.335 16.831 96.276 16.765 96.304 16.682 96.339 16.616 96.426 16.616 96.522 16.640 96.630 16.690 96.692 16.773 96.770 16.856 96.837 16.904 96.870 16.988 96.873 17.003 96.857 17.086 96.933 17.169 96.953 17.243 96.908 17.334 96.902 17.417 96.952 17.500 96.879 17.548 96.923 17.465 96.959 17.409 97.047 17.369 97.076 17.285 97.150 17.202 97.156 17.235 97.216 17.152 97.213 17.069 97.231 16.978 97.245 16.895 97.280 16.811 97.306 16.728 97.371 16.645 97.386 16.630 97.488 16.645 97.586 16.638 97.660 16.670 97.703 16.678 97.731 16.670 97.767 16.655 97.718 16.572 97.660 16.514 97.652 16.431 97.658 16.347 97.665 16.256 97.643 16.208 97.627 16.117 97.597 16.034 97.681 15.951 97.745 15.867 97.734 15.784 97.749 15.736 97.760 15.652 97.775 15.569 97.781 15.486 97.760 15.403 97.740 15.312 97.785 15.229 97.809 15.146 97.806 15.031 97.791 14.999 97.795 14.916 97.825 14.832 97.852 14.881 97.952 14.790 97.990 14.813 97.897 14.730 97.898 14.647 97.937 14.556 97.963 14.472 97.973 14.390 98.011 14.356 98.035 14.273 98.094 14.190 98.077 14.107 98.060 14.024 98.098 13.933 98.098 13.850 98.090 13.767 98.158 13.675 98.140 13.759 98.194 13.850 98.174 13.933 98.182 14.016 98.182 14.099 98.198 14.147 98.176 14.173 98.179 14.140 98.202 14.057 98.232 13.974 98.242 13.890 98.243 13.799 98.298 13.716 98.337 13.633 98.395 13.550 98.413 13.466 98.452 13.410 98.484 13.327 98.531 13.244 98.561 13.153 98.570 13.070 98.599 12.987 98.629 12.904 98.639 12.838 98.679 12.755 98.662 12.672 98.607 12.614 98.697 12.573 98.598 12.532 98.603 12.459 98.691 12.426 98.641 12.410 98.545 12.327 98.603 12.327 98.707 12.254 98.616 12.170 98.692 12.079 98.701 12.006 98.599 12.014 98.695 11.923 98.622 11.840 98.614 11.871 98.712 11.954 98.814 11.913 98.793 11.830 98.840 11.807 98.734 11.724 98.726 11.633 98.744 11.549 98.689 11.466 98.719 11.376 98.739 11.292 98.713 11.209 98.688 11.126 98.688 11.043 98.663 11.002 98.564 10.946 98.585 10.862 98.550 10.830 98.444 10.747 98.453 10.663 98.472 10.648 98.470 10.565 98.480 10.474 98.498 10.307 98.464 10.224 98.474 10.133 98.494 10.118 98.510 10.133 98.529 10.141 98.529 10.224 98.575 10.315 98.619 10.398 98.673 10.482 98.710 10.565 98.736 10.648 98.790 10.739 98.752 10.822 98.760 10.905 98.835 10.905 98.861 10.961 98.961 11.045 98.969 11.128 99.072 11.161 99.113 11.244 99.205 11.335 99.243 11.418 99.297 11.433 99.299 11.517 99.371 11.600 99.417 11.690 99.434 11.764 99.536 11.847 99.600 11.931 99.625 12.021 99.550 12.105 99.567 12.188 99.520 12.271 99.528 12.362 99.453 12.453 99.424 12.536 99.423 12.619 99.403 12.702 99.411 12.768 99.322 12.842 99.226 12.925 99.207 13.008 99.169 13.099 99.168 13.182 99.093 13.265 99.109 13.321 99.179 13.405 99.178 13.430 99.172 13.521 99.190 13.604 99.180 13.687 99.142 13.778 99.141 13.844 99.148 13.935 99.101 14.018 99.054 14.101 98.998 14.184 98.949 14.250 98.860 14.306 98.770 14.390 98.703 14.422 98.610 14.513 98.535 14.596 98.497 14.679 98.441 14.846 98.286 14.937 98.230 15.020 98.230 15.103 98.186 15.111 98.188 15.194 98.172 15.278 98.193 15.343 98.193 15.409 98.298 15.368 98.387 15.376 98.398 15.467 98.401 15.483 98.508 15.573 98.575 15.656 98.559 15.748 98.553 15.773 98.566 15.856 98.560 15.939 98.589 16.022 98.583 16.113 98.596 16.162 98.574 16.227 98.678 16.227 98.783 16.310 98.852 16.401 98.911 16.485 98.923 16.568 98.859 16.485 98.810 16.393 98.721 16.485 98.668 16.576 98.654 16.659 98.590 16.742 98.546 16.807 98.517 16.891 98.520 16.974 98.532 17.057 98.505 17.140 98.441 17.156 98.348 17.181 98.334 17.264 98.290 17.347 98.206 17.438 98.123 17.522 98.059 17.605 98.024 17.736 97.851 17.819 97.786 17.902 97.740 17.928 97.708 17.959 97.703 18.049 97.754 18.133 97.739 18.216 97.704 18.299 97.648 18.382 97.660 18.374 97.563 18.425 97.465 18.508 97.447 18.591 97.404 18.682 97.378 18.667 97.385 18.593 97.471 18.601 97.568 18.657 97.671 18.665 97.777 18.756 97.799 18.839 97.772 18.930 97.758 19.013 97.694 19.096 97.752 19.179 97.820 19.270 97.850 19.303 97.846 19.386 97.840 19.469 97.813 19.561 97.855 19.659 97.868 19.700 97.979 19.783 98.029 19.874 98.041 19.874 98.137 19.816 98.225 19.775 98.316 19.783 98.413 19.783 98.477 19.775 98.572 19.800 98.623 19.849 98.726 19.905 98.830 19.839 98.916 19.862 98.949 19.945 99.025 20.029 99.029 20.086 99.030 20.170 99.061 20.210 99.144 20.203 99.239 20.152 99.327 20.178 99.427 20.226 99.500 20.317 99.524 20.400 99.491 20.408 99.589 20.400 99.646 20.415 99.744 20.499 99.854 20.514 99.875 20.522 99.972 20.491 99.996 20.433 100.071 20.433 100.081 20.516 100.112 20.600 100.135 20.690 100.160 20.773 100.191 20.857 100.282 20.907 100.386 20.891 100.489 20.916 100.590 20.924 100.609 20.973 100.626 20.950 100.526 21.033 100.513 21.056 100.526 21.139 100.616 21.222 100.669 21.313 100.693 21.386 100.714 21.379 100.809 21.452 100.927 21.509 101.033 21.592 101.133 21.650 101.133 21.681 101.156 21.764 101.115 21.847 101.111 21.847 101.093 21.781 100.985 21.756 100.885 21.733 100.863 21.650 100.784 21.634 100.763 21.561 100.654 21.538 100.545 21.571 100.454 21.619 100.366 21.545 100.257 21.512 100.216 21.586 100.123 21.669 100.110 21.752 100.162 21.768 100.060 21.776 100.005 21.859 99.972 21.866 99.965 21.950 99.960 22.041 99.994 22.124 99.970 22.131 99.875 22.131 99.778 22.147 99.684 22.178 99.593 22.178 99.584 22.203 99.483 22.170 99.381 22.178 99.286 22.211 99.186 22.226 99.180 22.310 99.223 22.393 99.255 22.476 99.307 22.567 99.389 22.650 99.394 22.741 99.363 22.824 99.350 22.880 99.406 22.963 99.447 22.979 99.546 23.062 99.533 23.136 99.528 23.136 99.510 23.143 99.415 23.159 99.321 23.166 99.236 23.166 99.140 23.232 99.045 23.248 98.951 23.248 98.942 23.331 98.927 23.422 98.924 23.505 98.909 23.521 98.903 23.586 98.817 23.670 98.896 23.753 98.833 23.836 98.762 23.909 98.709 23.992 98.705 24.076 98.786 24.149 98.895 24.215 98.898 24.190 98.866 24.174 98.767 24.167 98.709 24.134 98.607 24.190 98.519 24.182 98.421 24.167 98.322 24.174 98.218 24.149 98.117 24.134 98.057 24.101 97.987 24.035 97.879 24.012 97.866 23.979 97.764 23.913 97.668 23.979 97.582 24.070 97.644 24.153 97.714 24.236 97.766 24.244 97.758 24.285 97.747 24.368 97.684 24.451 97.698 24.501 97.601 24.584 97.567 24.668 97.580 24.759 97.578 24.782 97.573 24.865 97.672 24.890 97.782 24.974 97.749 25.057 97.737 25.140 97.747 25.223 97.823 25.306 97.852 25.265 97.939 25.348 98.035 25.356 98.076 25.440 98.134 25.455 98.165 25.538 98.146 25.629 98.196 25.645 98.191 25.637 98.287 25.621 98.380 25.629 98.400 25.712 98.420 25.796 98.487 25.886 98.556 25.862 98.647 25.902 98.734 25.985 98.715 26.076 98.639 26.159 98.611 26.152 98.716 26.242 98.776 26.326 98.710 26.417 98.770 26.507 98.791 26.591 98.793 26.674 98.822 26.757 98.813 26.848 98.825 26.931 98.797 27.015 98.799 27.105 98.821 27.196 98.765 27.279 98.747 27.363 98.785 27.446 98.757 27.529 98.747 27.612 98.758 27.643 98.659 27.693 98.573 27.734 98.485 27.651 98.483 27.593 98.372 27.676 98.344 27.742 98.321 27.825 98.284 27.908 98.226 27.991 98.228 28.082 98.202 28.165 98.213 28.198 98.191 28.221 98.149 28.262 98.061 28.353 98.016 28.409 97.932 28.417 97.836 28.500 97.787 28.516 97.693 28.581 97.610 28.498 97.582 28.415 97.535 28.324 97.523 28.258 97.409 28.119 97.376 28.036 97.443 27.953 97.337 27.869 97.231 27.786 97.114 27.779 97.074 27.688 96.986 27.604 96.966 27.521 96.966 27.488 96.976 27.405 97.034 27.322 97.112 27.239 97.190 27.148 97.207 27.132 97.126 27.181 97.040 27.222 96.952 27.305 96.915 27.388 96.848 27.380 96.740 27.347 96.635 27.339 96.526 27.339 96.428 27.316 96.316 27.291 96.213 27.243 96.115 27.152 96.047 27.068 95.970 27.028 95.864 26.945 95.797 26.871 95.683 26.863 95.584 26.780 95.535 26.765 95.522 26.724 95.415 26.732 95.320 26.641 95.213 26.558 95.155 26.475 95.166 26.384 95.136 26.300 95.144 26.217 95.164 26.134 95.231 26.051 95.194 25.960 95.076 25.877 95.084 25.869 95.082 25.786 95.054 25.736 95.013 25.653 94.938 25.629 94.933 25.546 94.828 25.498 94.719 25.472 94.705 25.389 94.659 25.306 94.622 25.140 94.779 25.057 94.751 25.049 94.749 24.966 94.723 24.875 94.661 24.859 94.659 24.769 94.626 24.735 94.574 24.645 94.532 24.562 94.472 24.478 94.440 24.395 94.371 24.304 94.347 24.246 94.329 24.163 94.298 24.072 94.283 23.989 94.223 23.905 94.200 23.931 94.166 23.979 94.077 24.012 93.977 24.004 93.869 24.060 93.782 24.060 93.676 24.020 93.573 24.093 93.487 24.093 93.391 24.010 93.416 23.919 93.448 23.845 93.455 23.838 93.463 23.797 93.466 23.757 93.477 23.757 93.486 23.741 93.492 23.501 93.455 23.410 93.422 23.327 93.436 23.244 93.433 23.153 93.409 23.128 93.396 23.079 93.292 23.112 93.201 23.029 93.196 22.946 93.183 22.855 93.160 22.772 93.156 22.681 93.189 22.598 93.176 22.515 93.230 22.431 93.256 22.348 93.260 22.257 93.228 22.250 93.198 22.274 93.105 22.184 93.073 22.060 93.054 22.052 92.947 22.135 92.904 22.186 92.856 22.226 92.766 22.135 92.752 22.052 92.662 21.969 92.687 21.878 92.665 21.795 92.660 21.712 92.666 21.545 92.675 21.454 92.700 21.371 92.725 21.364 92.639 21.454 92.596 21.447 92.499 21.480 92.486 21.510 92.395 21.427 92.285 21.344 92.273 21.261 92.251 ; #1112 10 62.059 -7.233 62.087 -7.191 62.132 -7.078 62.167 -7.204 62.184 -7.328 62.091 -7.360 62.055 -7.233 ; #1113 10 62.188 -6.893 62.225 -7.020 62.317 -7.095 62.343 -7.220 62.251 -7.241 62.158 -7.130 62.122 -7.003 62.029 -6.881 61.975 -6.751 61.975 -6.740 62.068 -6.755 62.096 -6.881 62.188 -6.896 62.134 -6.781 62.227 -6.844 62.134 -6.747 62.098 -6.693 62.191 -6.649 62.320 -6.913 62.365 -7.041 62.263 -7.047 62.201 -6.916 62.193 -6.903 ; #1114 10 61.419 -6.682 61.512 -6.697 61.594 -6.830 61.667 -6.974 61.574 -6.922 61.482 -6.825 61.426 -6.697 61.417 -6.684 ; #1115 10 61.781 -6.683 61.809 -6.651 61.902 -6.703 61.865 -6.817 61.783 -6.683 ; #1116 10 62.208 -6.549 62.216 -6.539 62.309 -6.458 62.391 -6.593 62.298 -6.577 62.206 -6.551 ; #1117 10 62.184 -6.887 62.130 -6.771 62.223 -6.834 62.130 -6.738 62.094 -6.684 62.186 -6.641 62.315 -6.904 62.360 -7.032 62.260 -7.038 62.197 -6.906 62.188 -6.893 ; #1118 10 62.188 -6.890 62.225 -7.017 62.317 -7.092 62.343 -7.217 62.251 -7.238 62.158 -7.127 62.122 -7.000 62.029 -6.878 61.975 -6.749 61.975 -6.737 62.068 -6.752 62.096 -6.878 62.188 -6.893 ; #1119 11 14.633 -92.296 14.567 -92.213 14.527 -92.162 14.444 -92.057 14.360 -91.953 14.287 -91.850 14.271 -91.821 14.215 -91.720 14.190 -91.690 14.134 -91.589 14.101 -91.501 14.086 -91.473 14.055 -91.374 14.030 -91.267 14.014 -91.170 14.014 -90.980 14.030 -90.886 14.022 -90.790 14.030 -90.696 14.014 -90.639 13.989 -90.532 13.906 -90.333 13.898 -90.314 13.882 -90.275 13.842 -90.166 13.882 -90.180 13.966 -90.162 14.049 -90.076 14.057 -90.059 14.130 -89.972 14.155 -89.928 14.155 -89.910 14.140 -89.813 14.213 -89.804 14.279 -89.736 14.287 -89.736 14.302 -89.692 14.318 -89.598 14.450 -89.639 14.474 -89.604 14.498 -89.589 14.513 -89.564 14.505 -89.508 14.521 -89.426 14.536 -89.427 14.619 -89.361 14.645 -89.337 14.670 -89.313 14.718 -89.223 14.802 -89.205 14.842 -89.236 14.925 -89.292 14.991 -89.252 14.999 -89.253 15.082 -89.257 15.155 -89.222 15.163 -89.197 15.194 -89.107 15.252 -89.020 15.318 -88.926 15.376 -88.840 15.376 -88.831 15.432 -88.744 15.581 -88.577 15.589 -88.560 15.654 -88.475 15.746 -88.405 15.746 -88.396 15.794 -88.308 15.809 -88.357 15.834 -88.379 15.900 -88.484 15.949 -88.567 15.989 -88.678 15.906 -88.590 15.898 -88.644 15.815 -88.669 15.808 -88.677 15.767 -88.697 15.817 -88.713 15.825 -88.724 15.881 -88.828 15.921 -88.872 15.929 -88.968 15.955 -88.990 15.955 -89.008 15.970 -89.106 15.962 -89.209 15.955 -89.303 16.053 -89.301 16.220 -89.289 16.310 -89.285 16.393 -89.281 16.477 -89.276 16.492 -89.279 16.583 -89.275 16.749 -89.263 16.841 -89.260 17.007 -89.248 17.098 -89.244 17.146 -89.252 17.229 -89.247 17.313 -89.251 17.396 -89.247 17.444 -89.254 17.535 -89.251 17.618 -89.255 17.701 -89.250 17.792 -89.256 17.876 -89.251 17.876 -91.097 17.844 -91.101 17.678 -91.092 17.595 -91.097 17.504 -91.091 17.421 -91.095 17.338 -91.091 17.315 -91.154 17.315 -91.546 17.274 -91.492 17.208 -91.377 17.125 -91.317 17.042 -91.219 16.958 -91.150 16.903 -91.037 16.869 -90.936 16.796 -90.829 16.747 -90.795 16.664 -90.781 16.640 -90.759 16.548 -90.661 16.540 -90.622 16.485 -90.517 16.401 -90.522 16.318 -90.575 16.235 -90.544 16.152 -90.558 16.144 -90.574 16.144 -91.755 16.128 -91.848 16.045 -91.899 15.962 -91.941 15.879 -91.995 15.831 -92.013 15.815 -92.020 15.732 -92.071 15.684 -92.101 15.600 -92.143 15.517 -92.196 15.434 -92.238 15.351 -92.291 15.268 -92.231 15.235 -92.208 15.152 -92.148 15.121 -92.161 15.037 -92.232 15.012 -92.227 14.929 -92.256 14.846 -92.246 14.763 -92.228 14.755 -92.236 14.714 -92.258 14.631 -92.324 ; #1120 11 60.330 19.627 60.229 19.549 60.212 19.666 60.304 19.652 60.332 19.633 ; #1121 11 60.134 19.893 60.134 19.997 60.198 20.050 60.300 20.002 60.309 20.003 60.317 20.087 60.216 20.135 60.233 20.255 60.326 20.241 60.399 20.120 60.390 20.000 60.435 19.957 60.418 19.837 60.326 19.911 60.224 19.829 60.326 19.795 60.317 19.676 60.224 19.711 60.132 19.760 60.132 19.890 ; #1122 11 60.089 20.007 60.063 20.122 60.026 20.129 60.026 20.234 60.108 20.242 60.126 20.126 60.108 20.006 60.091 20.004 ; #1123 11 60.024 20.330 60.007 20.446 60.024 20.459 ; #1124 11 63.207 21.282 63.215 21.379 63.308 21.426 63.336 21.296 63.291 21.169 63.209 21.282 ; #1125 11 63.392 21.462 63.384 21.327 63.384 21.461 ; #1126 11 60.569 21.382 60.561 21.392 60.578 21.513 60.614 21.398 ; #1127 11 63.418 22.113 63.384 21.975 63.392 22.098 ; #1128 11 63.381 22.267 63.373 22.144 63.319 22.271 63.384 22.268 ; #1129 11 60.431 22.007 60.513 21.887 60.412 21.839 60.367 21.952 60.375 22.083 60.421 21.970 60.429 22.007 ; #1130 11 60.201 21.944 60.209 21.967 60.238 21.841 60.201 21.941 ; #1131 11 60.209 21.992 60.209 22.097 60.246 22.112 60.209 21.989 ; #1132 11 60.384 22.332 60.384 22.213 60.375 22.331 ; #1133 11 60.255 22.223 60.255 22.245 60.263 22.246 ; #1134 11 63.872 22.939 63.864 22.804 63.810 22.931 63.911 22.967 63.874 22.940 ; #1135 11 60.347 22.386 60.338 22.503 60.392 22.452 60.384 22.418 60.347 22.391 ; #1136 11 60.024 22.421 60.024 22.501 60.061 22.623 60.033 22.738 60.126 22.879 60.218 22.869 60.310 22.999 60.265 22.864 60.257 22.722 60.229 22.600 60.238 22.483 60.181 22.595 60.155 22.473 60.063 22.404 60.026 22.421 ; #1137 11 60.024 22.833 59.934 22.941 59.934 23.069 60.024 23.113 60.024 23.021 59.996 22.899 60.024 22.845 ; #1138 11 60.117 22.999 60.100 22.879 60.108 22.998 ; #1139 11 65.010 24.607 65.000 24.617 64.983 24.750 65.012 24.890 65.059 24.874 65.041 25.008 65.070 25.012 65.100 24.881 65.091 24.744 65.064 24.616 65.017 24.608 ; #1140 11 3.659 -57.745 3.625 -57.698 3.542 -57.679 3.452 -57.677 3.452 -57.631 3.436 -57.537 3.469 -57.434 3.469 -57.339 3.378 -57.329 3.295 -57.327 3.204 -57.297 3.121 -57.250 3.037 -57.256 2.946 -57.246 2.863 -57.181 2.773 -57.113 2.689 -57.074 2.606 -57.027 2.523 -56.970 2.432 -56.922 2.391 -56.922 2.308 -56.865 2.217 -56.809 2.126 -56.741 2.126 -56.620 2.043 -56.524 2.028 -56.430 2.004 -56.335 1.996 -56.240 1.956 -56.136 1.948 -56.042 2.031 -55.960 2.114 -55.970 2.198 -56.000 2.364 -56.192 2.447 -56.156 2.498 -56.063 2.588 -56.047 2.604 -55.953 2.556 -55.849 2.507 -55.753 2.540 -55.660 2.548 -55.565 2.540 -55.462 2.623 -55.380 2.616 -55.285 2.673 -55.183 2.689 -55.089 2.689 -55.081 2.697 -55.063 2.614 -54.998 2.540 -54.893 2.564 -54.839 2.472 -54.771 2.432 -54.676 2.432 -54.667 2.457 -54.573 2.530 -54.546 2.581 -54.453 2.664 -54.408 2.747 -54.374 2.830 -54.319 2.921 -54.266 3.171 -54.244 3.254 -54.272 3.310 -54.246 3.393 -54.173 3.393 -54.164 3.484 -54.119 3.550 -54.075 3.633 -54.085 3.716 -54.069 3.800 -54.154 3.890 -54.193 3.964 -54.289 4.047 -54.365 4.131 -54.421 4.221 -54.405 4.304 -54.471 4.395 -54.455 4.469 -54.491 4.509 -54.501 4.593 -54.502 4.684 -54.475 4.767 -54.494 4.858 -54.524 4.941 -54.526 5.032 -54.500 5.115 -54.503 5.198 -54.432 5.289 -54.381 5.297 -54.372 5.388 -54.293 5.438 -54.220 5.521 -54.177 5.612 -54.117 5.696 -54.112 5.779 -54.089 5.869 -54.084 5.926 -54.181 5.966 -54.277 5.982 -54.381 5.997 -54.476 6.005 -54.571 6.030 -54.666 6.046 -54.771 6.046 -54.779 6.061 -54.883 6.069 -54.978 6.069 -55.167 5.986 -55.172 5.945 -55.068 5.970 -54.974 5.937 -54.937 5.937 -55.067 5.945 -55.162 5.904 -55.198 5.988 -55.230 5.980 -55.293 5.995 -55.322 6.028 -55.399 6.053 -55.494 6.053 -55.776 6.046 -55.878 5.990 -55.971 5.924 -55.959 5.883 -55.966 5.800 -55.934 5.759 -55.961 5.850 -55.965 5.891 -56.061 5.914 -56.157 5.947 -56.252 5.980 -56.348 5.995 -56.453 6.028 -56.549 6.028 -56.643 6.020 -56.669 6.044 -56.765 6.059 -56.860 6.067 -56.963 6.067 -57.058 6.042 -57.083 6.026 -57.120 5.970 -57.135 5.887 -57.178 5.796 -57.192 5.713 -57.205 5.630 -57.220 5.574 -57.301 5.490 -57.315 5.399 -57.374 5.351 -57.278 5.326 -57.259 5.243 -57.247 5.194 -57.348 5.111 -57.327 5.111 -57.384 5.104 -57.392 5.088 -57.486 5.104 -57.581 5.096 -57.685 5.065 -57.778 5.024 -57.870 4.941 -57.952 4.858 -57.933 4.774 -57.885 4.684 -57.912 4.601 -57.947 4.517 -57.992 4.434 -57.999 4.343 -58.044 4.260 -58.116 4.177 -58.097 4.093 -58.096 4.003 -57.999 3.920 -57.943 3.828 -57.904 3.745 -57.876 3.662 -57.771 ; #1141 11 49.888 5.735 49.803 5.790 49.743 5.865 49.694 5.887 49.678 5.887 49.670 5.867 49.611 5.848 49.587 5.796 49.579 5.796 49.579 5.816 49.555 5.827 49.539 5.936 49.497 5.980 49.513 6.088 49.513 6.108 49.547 6.183 49.547 6.236 49.506 6.345 49.573 6.344 49.589 6.353 49.630 6.352 49.716 6.424 49.747 6.488 49.773 6.487 49.848 6.410 49.890 6.300 49.924 6.227 50.009 6.148 50.034 6.127 50.068 6.117 50.163 6.123 50.179 6.050 50.211 6.016 50.195 5.963 50.108 5.870 50.074 5.850 50.032 5.809 50.015 5.829 49.922 5.723 49.906 5.767 49.890 5.737 ; #1142 11 50.339 12.103 50.252 12.122 50.226 12.174 50.139 12.206 50.123 12.216 50.114 12.246 50.106 12.256 50.048 12.364 50.021 12.416 49.946 12.524 49.860 12.502 49.852 12.502 49.860 12.492 49.775 12.405 49.708 12.512 49.674 12.522 49.504 12.648 49.436 12.732 49.369 12.839 49.353 12.879 49.337 12.997 49.252 13.081 49.167 13.175 49.150 13.195 49.150 13.205 49.135 13.313 49.049 13.396 49.042 13.396 49.025 13.406 49.018 13.514 48.994 13.598 48.918 13.704 48.869 13.776 48.819 13.828 48.778 13.935 48.718 14.041 48.643 14.147 48.627 14.264 48.627 14.372 48.643 14.412 48.695 14.456 48.661 14.563 48.635 14.670 48.627 14.680 48.720 14.703 48.806 14.791 48.821 14.899 48.821 14.952 48.871 14.943 48.956 14.979 49.057 14.982 49.049 15.100 49.000 15.206 49.023 15.325 49.016 15.367 48.992 15.474 48.958 15.526 48.933 15.621 48.909 15.728 48.924 15.824 48.909 15.823 48.875 15.930 48.826 16.000 48.809 16.053 48.802 16.160 48.794 16.268 48.794 16.330 48.851 16.429 48.859 16.439 48.851 16.546 48.835 16.608 48.794 16.714 48.768 16.821 48.776 16.841 48.784 16.852 48.691 16.901 48.675 16.920 48.725 16.955 48.766 16.977 48.800 16.998 48.885 17.098 48.918 17.152 48.918 17.205 48.903 17.266 48.879 17.373 48.863 17.480 48.871 17.491 48.879 17.524 48.903 17.633 48.954 17.744 48.996 17.854 49.071 17.897 49.079 18.006 49.087 18.039 49.180 18.077 49.222 18.079 49.315 18.137 49.349 18.267 49.434 18.357 49.434 18.377 49.491 18.489 49.543 18.610 49.535 18.718 49.561 18.805 49.646 18.790 49.721 18.685 49.755 18.579 49.787 18.581 49.846 18.531 49.914 18.524 49.948 18.417 49.973 18.300 49.965 18.300 49.950 18.279 49.999 18.173 50.034 18.066 50.084 18.003 50.034 17.914 50.017 17.805 50.034 17.785 50.121 17.695 50.146 17.653 50.233 17.678 50.320 17.704 50.304 17.594 50.313 17.485 50.313 17.465 50.304 17.454 50.313 17.346 50.337 17.304 50.371 17.197 50.422 17.091 50.448 16.983 50.472 16.865 50.385 16.881 50.290 16.972 50.231 16.860 50.224 16.829 50.163 16.717 50.128 16.662 50.128 16.652 50.171 16.545 50.258 16.510 50.345 16.405 50.414 16.299 50.440 16.181 50.456 16.161 50.533 16.285 50.576 16.363 50.663 16.347 50.697 16.239 50.670 16.185 50.687 16.088 50.636 15.990 50.713 15.960 50.721 15.960 50.713 15.851 50.771 15.744 50.788 15.635 50.804 15.516 50.838 15.408 50.812 15.344 50.899 15.271 50.986 15.264 51.012 15.212 51.012 15.102 51.047 15.040 51.039 15.019 51.039 14.979 50.891 14.973 50.891 14.810 50.883 14.800 50.856 14.689 50.925 14.618 50.942 14.585 51.010 14.567 51.061 14.495 51.069 14.495 51.069 14.485 51.061 14.475 51.053 14.365 51.037 14.255 50.960 14.362 50.917 14.251 50.909 14.230 50.909 14.220 50.883 14.209 50.849 14.099 50.840 13.979 50.790 13.881 50.764 13.771 50.764 13.760 50.755 13.640 50.755 13.630 50.687 13.519 50.644 13.409 50.612 13.299 50.596 13.212 50.537 13.101 50.468 12.990 50.444 12.927 50.487 12.819 50.444 12.709 50.444 12.600 50.418 12.490 50.331 12.392 50.244 12.317 50.228 12.327 50.201 12.316 50.201 12.306 50.296 12.264 50.357 12.146 50.357 12.093 ; #1143 11 14.517 13.500 14.444 13.517 14.428 13.517 14.345 13.534 14.262 13.551 14.179 13.569 14.095 13.586 14.088 13.595 14.004 13.613 13.921 13.630 13.823 13.647 13.739 13.705 13.656 13.768 13.565 13.823 13.558 13.832 13.517 13.861 13.418 13.935 13.335 13.991 13.244 14.045 13.196 14.091 13.196 14.461 13.112 14.516 13.088 14.534 13.031 14.533 12.941 14.570 12.875 14.570 12.826 14.674 12.776 14.731 12.753 14.826 12.745 14.835 12.662 14.852 12.578 14.851 12.495 14.906 12.445 14.915 12.362 14.906 12.271 14.896 12.263 14.905 12.223 15.009 12.215 15.035 12.215 15.044 12.207 15.053 12.141 15.052 12.051 15.061 11.967 15.087 11.884 15.086 11.801 15.068 11.710 15.085 11.627 15.122 11.543 15.067 11.460 15.048 11.370 15.039 11.286 15.030 11.203 15.030 11.163 15.038 11.071 15.066 10.988 15.075 10.898 15.074 10.814 15.120 10.731 15.148 10.640 15.148 10.574 15.242 10.491 15.279 10.400 15.343 10.400 15.351 10.344 15.397 10.261 15.472 10.187 15.566 10.129 15.661 10.122 15.678 10.106 15.614 10.081 15.520 10.058 15.416 10.089 15.321 10.122 15.226 10.114 15.123 10.106 15.096 10.091 15.001 10.098 14.946 10.083 14.851 10.068 14.748 10.091 14.653 10.116 14.559 10.131 14.464 10.131 14.408 10.124 14.305 10.116 14.201 10.108 14.192 10.017 14.155 9.934 14.099 9.851 14.004 9.835 13.995 9.752 14.024 9.696 14.070 9.613 14.144 9.522 14.219 9.439 14.294 9.348 14.349 9.333 14.349 9.249 14.444 9.166 14.547 9.092 14.641 9.027 14.736 8.961 14.830 8.905 14.934 8.822 14.999 8.822 15.008 8.738 15.102 8.655 15.177 8.582 15.232 8.557 15.232 8.473 15.269 8.383 15.304 8.300 15.350 8.216 15.379 8.125 15.406 8.042 15.433 7.959 15.479 7.926 15.496 7.910 15.571 7.852 15.571 7.762 15.553 7.678 15.498 7.671 15.533 7.671 15.627 7.630 15.722 7.622 15.817 7.638 15.920 7.694 16.015 7.752 16.109 7.760 16.204 7.816 16.299 7.824 16.403 7.907 16.403 7.997 16.487 8.021 16.551 7.980 16.551 7.897 16.614 7.814 16.632 7.783 16.706 7.692 16.801 7.775 16.867 7.800 16.962 7.849 17.057 7.874 17.151 7.947 17.215 7.995 17.310 8.036 17.414 8.077 17.509 8.100 17.604 8.125 17.687 8.125 17.696 8.110 17.800 8.110 17.895 8.141 17.990 8.156 18.093 8.164 18.197 8.164 18.291 8.172 18.386 8.172 18.489 8.187 18.593 8.278 18.611 8.361 18.695 8.385 18.742 8.458 18.837 8.549 18.901 8.632 18.965 8.716 19.032 8.798 19.088 8.823 19.088 8.889 18.984 8.930 18.890 8.961 18.853 9.019 18.882 9.092 18.977 9.141 19.081 9.126 19.127 9.141 19.173 9.148 19.219 9.124 19.314 9.139 19.409 9.131 19.512 9.139 19.607 9.154 19.702 9.170 19.805 9.178 19.900 9.218 19.967 9.241 20.051 9.241 20.145 9.234 20.249 9.226 20.344 9.309 20.439 9.393 20.457 9.393 20.486 9.417 20.581 9.491 20.685 9.532 20.780 9.572 20.798 9.663 20.882 9.747 20.958 9.837 20.976 9.845 20.976 9.878 21.051 9.911 21.069 9.994 21.133 10.017 21.151 10.083 21.256 10.106 21.351 10.122 21.360 10.288 21.457 10.321 21.552 10.394 21.648 10.478 21.677 10.561 21.687 10.644 21.651 10.735 21.670 10.783 21.765 10.816 21.861 10.847 21.956 10.930 22.041 10.923 22.135 11.006 22.221 11.054 22.316 11.054 22.325 11.095 22.420 11.079 22.524 11.064 22.619 11.056 22.713 11.033 22.797 11.025 22.825 11.081 22.844 11.165 22.862 11.255 22.902 11.338 22.920 11.429 22.893 11.513 22.839 11.505 22.735 11.588 22.652 11.662 22.549 11.745 22.504 11.836 22.514 11.919 22.524 12.010 22.543 12.093 22.562 12.176 22.525 12.136 22.421 12.209 22.440 12.292 22.441 12.375 22.413 12.467 22.386 12.550 22.332 12.640 22.379 12.724 22.409 12.755 22.306 12.813 22.211 12.764 22.116 12.732 22.011 12.732 21.916 12.815 21.822 12.898 21.777 12.905 21.786 12.931 21.795 13.014 21.823 13.097 21.861 13.180 21.918 13.246 22.014 13.295 22.110 13.378 22.177 13.461 22.233 13.552 22.179 13.583 22.171 13.666 22.163 13.749 22.080 13.832 22.072 13.916 22.073 14.014 22.141 14.070 22.206 14.111 22.310 14.177 22.406 14.243 22.502 14.326 22.429 14.341 22.391 14.432 22.410 14.515 22.385 14.606 22.319 14.689 22.367 14.722 22.472 14.755 22.567 14.803 22.632 14.819 22.624 14.910 22.607 14.993 22.683 15.076 22.714 15.099 22.741 15.148 22.780 15.214 22.876 15.297 22.925 15.380 22.935 15.428 22.936 15.519 22.892 15.602 22.855 15.635 22.874 15.693 22.971 15.776 23.056 15.776 23.141 15.761 23.236 15.761 23.340 15.802 23.436 15.827 23.532 15.827 23.637 15.819 23.732 15.794 23.836 15.769 23.931 16.167 23.939 16.299 23.934 16.531 23.939 16.730 23.934 17.061 23.941 17.193 23.935 17.432 23.940 17.556 23.935 17.897 23.942 17.988 23.935 18.293 23.942 18.392 23.935 18.723 23.942 18.806 23.935 19.154 23.943 19.286 23.937 19.551 23.943 19.841 23.395 20.048 22.998 20.071 22.943 20.329 22.441 20.427 22.263 20.584 21.940 20.700 21.721 20.890 21.351 20.897 21.322 21.038 21.048 21.112 20.906 21.385 20.356 21.534 20.052 21.582 19.947 21.648 19.824 21.772 19.568 21.828 19.454 21.926 19.255 22.067 18.950 22.174 18.720 22.308 18.456 22.374 18.322 22.540 17.959 22.688 17.644 22.704 17.616 22.729 17.560 22.786 17.446 22.844 17.323 22.909 17.180 22.967 17.055 23.015 16.941 23.072 16.816 23.130 16.703 23.178 16.597 23.234 16.463 23.308 16.311 23.356 16.197 23.414 16.074 23.463 15.969 23.354 15.728 23.321 15.671 23.281 15.565 23.215 15.411 23.166 15.314 23.076 15.111 23.019 14.976 23.004 14.976 22.921 14.993 22.822 15.010 22.731 15.027 22.648 15.044 22.549 15.061 22.466 15.078 22.368 15.095 22.276 15.112 22.228 15.121 22.137 15.138 22.039 15.155 21.956 15.154 21.857 15.162 21.574 15.159 21.484 15.214 21.400 15.290 21.317 15.354 21.234 15.411 21.143 15.466 21.060 15.521 20.976 15.559 20.886 15.511 20.803 15.528 20.729 15.623 20.638 15.707 20.555 15.791 20.499 15.838 20.408 15.921 20.317 15.903 20.226 15.855 20.135 15.798 20.044 15.750 20.036 15.741 19.945 15.702 19.847 15.692 19.756 15.682 19.657 15.673 19.566 15.654 19.467 15.644 19.377 15.635 19.278 15.624 19.187 15.606 19.089 15.596 18.997 15.587 18.899 15.577 18.816 15.567 18.717 15.557 18.626 15.556 18.527 15.546 18.436 15.546 18.338 15.536 18.146 15.535 18.055 15.525 17.957 15.524 17.866 15.514 17.767 15.514 17.676 15.504 17.578 15.503 17.486 15.493 17.388 15.492 17.315 15.483 17.223 15.473 17.133 15.472 17.042 15.462 16.958 15.453 16.918 15.415 16.827 15.330 16.736 15.233 16.638 15.148 16.546 15.063 16.463 14.978 16.372 14.892 16.281 14.808 16.190 14.722 16.100 14.626 16.001 14.541 15.819 14.369 15.720 14.293 15.629 14.226 15.539 14.161 15.440 14.094 15.349 14.028 15.258 13.973 15.167 13.897 15.076 13.832 14.993 13.794 14.910 13.764 14.819 13.782 14.770 13.706 14.687 13.679 14.596 13.613 14.581 13.528 14.498 13.464 ; #1144 11 40.692 19.294 40.636 19.341 40.569 19.440 40.554 19.389 40.470 19.466 40.385 19.443 40.377 19.423 40.434 19.388 40.468 19.287 40.383 19.352 40.291 19.417 40.233 19.525 40.192 19.626 40.161 19.727 40.109 19.826 40.053 19.873 40.012 19.909 39.928 19.977 39.862 19.983 39.747 19.978 39.747 19.987 39.740 20.006 39.724 20.096 39.709 20.197 39.800 20.304 39.874 20.288 39.866 20.390 39.950 20.354 39.957 20.344 40.049 20.299 40.057 20.369 40.131 20.445 40.123 20.547 40.131 20.566 40.146 20.598 40.231 20.653 40.315 20.687 40.399 20.742 40.483 20.766 40.491 20.766 40.532 20.871 40.599 20.978 40.655 21.022 40.740 21.018 40.747 21.018 40.755 21.009 40.839 20.954 40.855 20.965 40.904 20.958 40.945 20.961 40.978 20.860 40.962 20.799 40.962 20.718 41.047 20.682 41.131 20.658 41.139 20.659 41.139 20.599 41.146 20.589 41.315 20.496 41.356 20.489 41.440 20.545 41.448 20.545 41.532 20.490 41.540 20.480 41.606 20.454 41.632 20.537 41.716 20.510 41.800 20.505 41.841 20.549 41.925 20.554 42.009 20.610 42.094 20.583 42.150 20.557 42.191 20.550 42.207 20.542 42.291 20.476 42.299 20.477 42.348 20.376 42.355 20.345 42.363 20.242 42.448 20.206 42.514 20.180 42.588 20.081 42.555 19.997 42.530 19.882 42.514 19.821 42.598 19.753 42.631 19.774 42.673 19.663 42.657 19.643 42.573 19.597 42.489 19.523 42.405 19.426 42.389 19.416 42.381 19.416 42.373 19.424 42.289 19.350 42.205 19.327 42.121 19.385 42.096 19.383 42.046 19.391 41.955 19.354 41.921 19.372 41.896 19.371 41.904 19.422 41.880 19.524 41.796 19.570 41.712 19.566 41.628 19.570 41.579 19.517 41.495 19.472 41.411 19.418 41.327 19.516 41.234 19.480 41.150 19.457 41.066 19.443 41.017 19.509 40.933 19.455 40.949 19.386 40.857 19.400 40.773 19.367 40.688 19.313 ; #1145 11 60.226 22.300 60.291 22.261 60.255 22.257 ; #1146 11 60.295 22.262 60.312 22.381 60.330 22.384 60.338 22.363 60.347 22.245 60.319 22.123 60.319 22.242 60.293 22.261 ; #1147 11 60.423 22.478 60.423 22.442 60.395 22.417 ; #1148 11 33.340 35.670 33.315 35.677 33.323 35.705 33.323 35.715 33.157 35.699 33.116 35.677 33.108 35.667 33.075 35.654 33.002 35.657 32.977 35.664 32.969 35.663 32.954 35.671 32.888 35.683 32.880 35.692 32.880 35.701 32.855 35.708 32.830 35.705 32.830 35.696 32.822 35.686 32.822 35.677 32.789 35.644 32.781 35.652 32.766 35.681 32.758 35.708 32.766 35.718 32.806 35.789 32.822 35.799 32.822 35.818 32.806 35.915 32.799 35.924 32.799 35.942 32.774 35.980 32.733 36.015 32.717 36.062 32.667 36.085 32.601 36.178 32.593 36.195 32.601 36.236 32.576 36.270 32.460 36.457 32.460 36.467 32.445 36.532 32.445 36.541 32.429 36.639 32.414 36.745 32.406 36.823 32.439 36.926 32.495 37.030 32.561 37.145 32.576 37.176 32.693 37.387 32.749 37.501 32.764 37.521 32.880 37.731 32.936 37.845 32.961 37.885 33.009 37.989 33.065 38.094 33.124 38.199 33.180 38.314 33.195 38.334 33.246 38.439 33.302 38.553 33.358 38.658 33.408 38.763 33.416 38.773 33.431 38.814 33.479 38.919 33.495 38.939 33.543 39.053 33.642 39.263 33.700 39.368 33.799 39.578 33.847 39.693 33.872 39.744 33.921 39.858 33.969 39.963 33.994 40.006 34.043 40.120 34.083 40.203 34.132 40.318 34.190 40.424 34.288 40.635 34.321 40.717 34.346 40.757 34.354 40.788 34.410 40.894 34.443 40.965 34.469 41.007 34.551 41.047 34.642 41.086 34.733 41.157 34.817 41.215 34.907 41.216 34.998 41.208 35.031 41.212 35.130 41.207 35.153 41.201 35.169 41.204 35.253 41.206 35.336 41.236 35.419 41.257 35.511 41.270 35.585 41.320 35.668 41.381 35.759 41.375 35.851 41.379 35.941 41.333 36.025 41.286 36.116 41.259 36.382 41.297 36.398 41.308 36.413 41.320 36.470 41.358 36.510 41.383 36.559 41.500 36.574 41.603 36.598 41.707 36.613 41.810 36.697 41.932 36.788 42.035 36.821 42.070 36.828 42.080 36.877 42.146 36.933 42.215 36.974 42.259 36.990 42.280 37.073 42.372 37.114 42.350 37.180 42.328 37.271 42.302 37.327 42.209 37.236 42.106 37.178 41.997 37.155 41.904 37.129 41.790 37.121 41.709 37.129 41.701 37.121 41.650 37.096 41.597 37.089 41.526 37.089 41.436 37.081 41.334 37.081 41.233 37.106 41.136 37.121 41.037 37.129 40.958 37.121 40.856 37.114 40.745 37.089 40.671 37.048 40.554 37.025 40.450 36.966 40.341 36.933 40.269 36.892 40.183 36.885 40.142 36.862 40.080 36.846 40.060 36.830 40.018 36.798 39.913 36.764 39.798 36.757 39.696 36.741 39.593 36.725 39.490 36.718 39.449 36.703 39.346 36.687 39.243 36.703 39.144 36.725 39.046 36.725 39.016 36.718 38.966 36.718 38.764 36.766 38.669 36.782 38.643 36.866 38.553 36.896 38.456 36.912 38.348 36.928 38.249 36.894 38.144 36.846 38.037 36.838 38.026 36.805 37.921 36.772 37.816 36.757 37.704 36.723 37.599 36.675 37.525 36.667 37.505 36.675 37.405 36.683 37.296 36.667 37.193 36.642 37.089 36.733 37.060 36.792 36.967 36.800 36.949 36.807 36.849 36.840 36.742 36.848 36.704 36.848 36.685 36.764 36.644 36.681 36.625 36.598 36.615 36.514 36.575 36.423 36.594 36.398 36.631 36.349 36.625 36.333 36.681 36.260 36.713 36.252 36.601 36.252 36.543 36.237 36.441 36.252 36.414 36.245 36.404 36.211 36.400 36.120 36.399 36.037 36.398 36.021 36.396 35.980 36.291 35.897 36.202 35.849 36.177 35.897 36.082 35.930 36.037 35.955 35.951 35.939 35.940 35.866 35.831 35.782 35.870 35.699 35.803 35.616 35.774 35.532 35.835 35.459 35.935 35.375 35.944 35.292 35.944 35.284 35.953 35.200 35.943 35.117 35.914 34.977 35.898 34.894 35.910 34.803 35.950 34.720 35.970 34.679 35.984 34.687 35.995 34.672 36.072 34.672 36.132 34.679 36.133 34.672 36.160 34.672 36.260 34.679 36.310 34.695 36.320 34.702 36.312 34.710 36.322 34.718 36.323 34.710 36.362 34.702 36.361 34.695 36.369 34.672 36.407 34.664 36.406 34.648 36.423 34.565 36.354 34.532 36.361 34.540 36.450 34.491 36.494 34.469 36.561 34.410 36.537 34.327 36.608 34.244 36.630 34.178 36.584 34.095 36.497 34.054 36.394 33.971 36.307 33.897 36.399 33.872 36.397 33.888 36.299 33.880 36.198 33.880 36.189 33.895 36.172 33.870 36.090 33.780 36.015 33.724 35.991 33.658 36.052 33.642 36.069 33.627 36.077 33.579 35.972 33.579 35.963 33.530 35.968 33.481 35.915 33.474 35.884 33.466 35.874 33.400 35.810 33.393 35.779 33.385 35.760 33.336 35.686 33.336 35.658 33.329 35.648 ; #1149 11 26.130 56.120 26.105 56.215 26.014 56.213 25.757 56.181 25.724 56.195 25.691 56.288 25.699 56.307 25.782 56.308 25.865 56.395 25.956 56.436 26.039 56.437 26.123 56.477 26.206 56.411 26.206 56.507 26.289 56.518 26.372 56.481 26.430 56.402 26.422 56.401 26.339 56.409 26.281 56.304 26.322 56.253 26.231 56.185 26.148 56.127 26.132 56.125 ; #1150 11 40.135 69.576 40.051 69.567 39.967 69.541 40.015 69.453 39.932 69.348 39.849 69.336 39.757 69.370 39.674 69.388 39.590 69.384 39.590 69.589 39.631 69.702 39.639 69.815 39.590 69.914 39.616 70.023 39.590 70.076 39.623 70.187 39.672 70.312 39.580 70.296 39.614 70.408 39.654 70.530 39.629 70.626 39.604 70.731 39.556 70.746 39.472 70.794 39.449 70.899 39.480 71.010 39.472 71.110 39.556 71.152 39.588 71.263 39.604 71.370 39.654 71.496 39.639 71.593 39.556 71.580 39.499 71.676 39.515 71.782 39.499 71.837 39.415 71.813 39.332 71.858 39.355 71.967 39.406 72.083 39.355 72.171 39.307 72.269 39.250 72.322 39.334 72.377 39.408 72.510 39.431 72.627 39.456 72.737 39.431 72.832 39.415 72.929 39.415 73.041 39.431 73.148 39.415 73.245 39.439 73.354 39.447 73.375 39.503 73.494 39.518 73.610 39.511 73.710 39.503 73.717 39.511 73.821 39.552 73.936 39.642 74.012 39.684 73.984 39.775 73.970 39.858 73.892 39.942 73.957 40.025 74.014 40.041 74.019 40.115 74.158 40.157 74.275 40.140 74.381 40.192 74.502 40.276 74.622 40.360 74.755 40.375 74.863 40.460 74.862 40.544 74.902 40.528 75.008 40.513 75.063 40.505 75.162 40.497 75.272 40.571 75.402 40.602 75.453 40.669 75.590 40.643 75.683 40.552 75.690 40.468 75.729 40.383 75.730 40.360 75.824 40.352 75.923 40.418 76.060 40.434 76.168 40.450 76.276 40.416 76.367 40.442 76.488 40.526 76.569 40.694 76.694 40.787 76.708 40.870 76.799 40.912 76.855 40.919 76.858 41.004 76.870 41.070 76.998 41.086 77.106 41.060 77.200 41.053 77.310 41.068 77.419 41.043 77.512 41.027 77.619 41.043 77.727 41.076 77.843 41.109 77.968 41.094 78.168 41.178 78.291 41.203 78.311 41.295 78.386 41.303 78.420 41.395 78.436 41.479 78.559 41.512 78.685 41.604 78.832 41.645 78.951 41.686 79.071 41.745 79.197 41.786 79.316 41.820 79.442 41.843 79.554 41.884 79.674 41.917 79.790 42.001 79.893 42.058 80.028 42.066 80.072 42.058 80.172 42.058 80.286 42.150 80.331 42.225 80.298 42.275 80.226 42.350 80.152 42.416 80.064 42.465 79.980 42.473 79.879 42.498 79.775 42.483 79.665 42.491 79.555 42.547 79.473 42.639 79.405 42.673 79.304 42.757 79.265 42.806 79.180 42.798 79.157 42.798 79.053 42.813 78.945 42.829 78.848 42.837 78.737 42.878 78.648 42.903 78.555 42.895 78.448 42.888 78.341 42.888 78.123 42.903 78.024 42.903 77.920 42.927 77.815 42.927 77.711 42.935 77.611 42.943 77.500 42.917 77.386 42.925 77.275 42.933 77.278 42.982 77.183 42.990 77.082 42.990 76.978 42.957 76.861 42.933 76.738 42.925 76.631 42.909 76.522 42.917 76.411 42.943 76.316 42.951 76.215 42.943 76.098 42.958 76.000 42.958 75.896 42.951 75.852 42.866 75.811 42.817 75.742 42.851 75.641 42.851 75.537 42.858 75.436 42.866 75.335 42.892 75.230 42.923 75.138 42.939 75.061 42.980 74.972 42.996 74.874 43.021 74.779 43.044 74.756 43.103 74.673 43.144 74.584 43.177 74.482 43.262 74.304 43.270 74.266 43.244 74.288 43.203 74.232 43.195 74.115 43.154 73.996 43.138 73.930 43.097 73.801 43.064 73.685 43.039 73.645 42.955 73.615 42.862 73.592 42.837 73.592 42.806 73.591 42.722 73.530 42.629 73.497 42.545 73.518 42.461 73.592 42.454 73.589 42.446 73.472 42.530 73.398 42.538 73.288 42.571 73.196 42.563 73.089 42.563 72.976 42.604 72.886 42.671 72.796 42.696 72.701 42.696 72.588 42.737 72.488 42.770 72.396 42.778 72.294 42.770 72.178 42.812 72.089 42.827 71.980 42.827 71.876 42.819 71.760 42.770 71.651 42.804 71.571 42.770 71.455 42.763 71.349 42.763 71.339 42.679 71.240 42.671 71.247 42.604 71.164 42.520 71.145 42.436 71.034 42.352 70.974 42.336 70.959 42.312 70.951 42.271 71.050 42.305 71.166 42.264 71.264 42.223 71.354 42.148 71.225 42.081 71.099 42.066 70.980 41.982 70.933 41.933 70.813 41.867 70.687 41.782 70.586 41.698 70.455 41.642 70.332 41.550 70.260 41.542 70.276 41.542 70.380 41.508 70.472 41.442 70.553 41.465 70.664 41.498 70.778 41.414 70.841 41.330 70.851 41.274 70.945 41.225 71.032 41.217 71.132 41.185 71.233 41.201 71.342 41.185 71.440 41.160 71.460 41.217 71.511 41.301 71.508 41.327 71.620 41.418 71.714 41.502 71.711 41.587 71.721 41.502 71.773 41.461 71.759 41.487 71.841 41.403 71.915 41.377 71.944 41.293 71.956 41.236 72.039 41.236 72.049 41.203 72.141 41.236 72.215 41.228 72.241 41.203 72.251 41.119 72.260 41.094 72.271 41.037 72.251 41.062 72.363 41.078 72.378 41.062 72.485 41.047 72.561 40.913 72.720 40.906 72.821 40.913 72.936 40.872 72.941 40.865 72.957 40.898 73.020 40.906 73.041 40.880 73.135 40.806 73.141 40.775 73.027 40.759 72.990 40.736 72.912 40.736 72.903 40.643 72.821 40.620 72.794 40.561 72.661 40.602 72.572 40.643 72.474 40.559 72.436 40.544 72.468 40.452 72.477 40.460 72.377 40.475 72.280 40.509 72.273 40.475 72.158 40.391 72.089 40.350 72.015 40.293 72.077 40.293 71.974 40.286 71.869 40.252 71.857 40.211 71.793 40.211 71.784 40.295 71.722 40.254 71.596 40.321 71.516 40.344 71.422 40.377 71.330 40.321 71.199 40.321 71.087 40.295 71.028 40.221 70.901 40.172 70.782 40.088 70.704 40.047 70.690 39.998 70.571 39.990 70.509 40.047 70.588 40.062 70.593 40.088 70.592 40.113 70.498 40.129 70.400 40.186 70.307 40.194 70.208 40.243 70.112 40.258 70.088 40.258 70.048 40.250 70.014 40.225 69.903 40.202 69.793 40.168 69.679 40.153 69.572 40.127 69.544 ; #1151 11 6.552 99.917 6.504 99.857 6.448 99.751 6.357 99.849 6.388 99.945 6.471 99.978 6.554 99.919 ; #1152 11 6.355 99.897 6.347 99.879 6.264 99.892 ; #1153 11 5.539 100.368 5.554 100.343 5.531 100.248 5.448 100.243 5.357 100.246 5.365 100.350 5.448 100.372 ; #1154 11 2.964 104.267 2.964 104.239 2.873 104.210 2.881 104.305 2.964 104.269 ; #1155 11 2.596 111.397 2.540 111.395 2.507 111.488 2.590 111.464 2.765 111.469 2.855 111.388 2.765 111.386 2.681 111.401 2.598 111.399 ; #1156 11 5.373 115.227 5.365 115.302 5.455 115.271 ; #1157 11 7.276 116.944 7.316 117.011 7.400 117.063 7.359 116.957 7.276 116.943 ; #1158 11 7.384 117.179 7.311 117.145 7.228 117.177 7.268 117.274 7.352 117.364 7.435 117.275 7.384 117.177 ; #1159 11 6.759 117.420 6.736 117.418 6.785 117.525 ; #1160 11 4.767 118.463 4.752 118.462 4.718 118.556 4.744 118.651 4.759 118.557 ; #1161 11 6.522 100.184 6.438 100.216 6.347 100.248 6.347 100.266 6.257 100.327 6.173 100.359 6.090 100.400 5.924 100.426 5.841 100.421 5.749 100.390 5.666 100.394 5.651 100.410 5.568 100.434 5.477 100.420 5.386 100.470 5.303 100.473 5.220 100.442 5.186 100.403 5.104 100.435 5.020 100.525 4.947 100.617 4.863 100.661 4.780 100.642 4.690 100.639 4.606 100.675 4.515 100.644 4.432 100.615 4.349 100.668 4.266 100.703 4.210 100.805 4.127 100.831 4.119 100.926 4.093 100.850 4.037 100.755 3.954 100.807 3.947 100.902 3.864 100.937 3.780 101.009 3.707 101.111 3.623 101.135 3.540 101.199 3.450 101.280 3.366 101.352 3.283 101.368 3.192 101.412 3.109 101.427 3.018 101.341 2.935 101.405 2.879 101.498 2.795 101.560 2.745 101.653 2.705 101.755 2.705 101.773 2.697 101.827 2.606 101.880 2.523 101.933 2.507 102.035 2.416 102.127 2.325 102.209 2.293 102.320 2.244 102.421 2.211 102.524 2.203 102.533 2.163 102.597 2.072 102.678 1.981 102.733 1.973 102.827 1.915 102.929 1.859 103.031 1.801 103.133 1.735 103.234 1.702 103.336 1.637 103.429 1.554 103.462 1.455 103.497 1.495 103.592 1.544 103.696 1.577 103.781 1.577 103.789 1.592 103.884 1.552 103.986 1.642 104.043 1.734 104.000 1.766 103.992 1.683 104.065 1.668 104.167 1.584 104.090 1.501 104.134 1.469 104.237 1.559 104.314 1.642 104.316 1.726 104.289 1.824 104.255 1.915 104.231 2.006 104.159 2.105 104.144 2.188 104.089 2.279 104.036 2.362 104.012 2.453 103.986 2.544 103.894 2.635 103.868 2.718 103.815 2.774 103.722 2.782 103.676 2.840 103.614 2.923 103.541 3.014 103.498 3.097 103.482 3.188 103.485 3.271 103.496 3.354 103.489 3.446 103.474 3.529 103.476 3.619 103.496 3.678 103.469 3.761 103.408 3.852 103.381 3.935 103.421 4.018 103.423 4.101 103.463 4.192 103.436 4.276 103.485 4.349 103.505 4.432 103.524 4.523 103.489 4.606 103.483 4.690 103.485 4.773 103.478 4.863 103.463 4.947 103.439 5.038 103.387 5.121 103.346 5.204 103.294 5.295 103.264 5.378 103.223 5.461 103.171 5.535 103.111 5.618 103.022 5.666 102.930 5.732 102.831 5.805 102.741 5.889 102.671 5.955 102.580 6.028 102.521 6.112 102.480 6.195 102.447 6.278 102.378 6.309 102.285 6.301 102.238 6.334 102.146 6.319 102.145 6.285 102.134 6.202 102.138 6.119 102.038 6.104 102.029 6.020 101.986 5.929 101.955 5.929 101.946 5.847 101.846 5.862 101.744 5.918 101.712 6.001 101.651 5.976 101.555 5.960 101.516 5.920 101.420 5.847 101.312 5.763 101.261 5.779 101.167 5.845 101.068 5.877 101.052 5.910 101.054 5.993 101.094 6.084 101.174 6.167 101.170 6.251 101.138 6.342 101.106 6.334 101.002 6.390 100.902 6.390 100.910 6.448 100.896 6.539 100.873 6.572 100.780 6.564 100.762 6.556 100.667 6.607 100.576 6.622 100.482 6.637 100.446 6.663 100.418 6.746 100.386 6.794 100.362 6.802 100.268 6.779 100.258 6.695 100.245 6.605 100.239 6.522 100.188 ; #1162 11 2.173 109.696 2.082 109.667 1.998 109.599 1.907 109.625 1.875 109.718 1.791 109.716 1.708 109.722 1.617 109.803 1.534 109.875 1.509 109.969 1.476 110.006 1.428 110.013 1.387 110.040 1.304 110.133 1.288 110.227 1.198 110.287 1.114 110.323 1.091 110.417 1.008 110.497 0.959 110.590 0.991 110.686 1.006 110.780 1.072 110.877 1.122 110.982 1.130 111.076 1.153 111.180 1.186 111.275 1.138 111.368 1.112 111.462 1.072 111.555 1.122 111.651 1.122 111.754 1.097 111.848 1.180 111.933 1.236 112.029 1.236 112.133 1.262 112.168 1.345 112.180 1.435 112.217 1.484 112.247 1.567 112.267 1.608 112.372 1.633 112.467 1.666 112.562 1.666 112.656 1.658 112.759 1.650 112.853 1.676 112.957 1.668 113.052 1.577 113.066 1.526 113.168 1.486 113.262 1.471 113.356 1.397 113.448 1.412 113.543 1.354 113.635 1.362 113.738 1.420 113.835 1.503 113.912 1.552 114.016 1.567 114.111 1.559 114.129 1.526 114.222 1.526 114.230 1.577 114.335 1.608 114.431 1.559 114.524 1.552 114.618 1.642 114.620 1.726 114.689 1.809 114.718 1.892 114.728 1.975 114.834 2.058 114.874 2.142 114.894 2.225 114.813 2.316 114.816 2.374 114.921 2.464 114.980 2.490 115.084 2.573 115.170 2.614 115.266 2.697 115.202 2.705 115.176 2.788 115.122 2.871 115.161 2.954 115.155 3.045 115.213 3.128 115.290 3.088 115.383 3.121 115.487 3.204 115.527 3.287 115.530 3.370 115.549 3.461 115.570 3.544 115.647 3.635 115.623 3.693 115.588 3.784 115.590 3.867 115.610 3.950 115.631 3.974 115.603 4.057 115.634 4.140 115.662 4.206 115.664 4.289 115.713 4.355 115.818 4.438 115.849 4.479 115.868 4.438 115.970 4.380 116.063 4.463 116.149 4.447 116.243 4.471 116.347 4.380 116.418 4.413 116.514 4.496 116.545 4.440 116.647 4.440 116.710 4.424 116.804 4.449 116.900 4.424 116.993 4.432 117.097 4.440 117.192 4.399 117.294 4.359 117.387 4.276 117.479 4.276 117.573 4.268 117.590 4.351 117.639 4.434 117.624 4.517 117.644 4.451 117.737 4.393 117.829 4.345 117.922 4.345 118.026 4.386 118.122 4.401 118.217 4.424 118.312 4.449 118.341 4.442 118.435 4.442 118.538 4.525 118.635 4.616 118.583 4.591 118.488 4.674 118.482 4.707 118.379 4.763 118.287 4.854 118.195 4.937 118.141 5.020 118.172 5.069 118.270 5.125 118.368 5.042 118.446 5.049 118.550 5.034 118.643 5.059 118.739 5.090 118.845 5.123 118.942 5.148 119.038 5.188 119.136 5.279 119.236 5.446 119.248 5.529 119.159 5.488 119.053 5.521 118.961 5.473 118.920 5.556 118.862 5.612 118.763 5.686 118.673 5.638 118.575 5.721 118.564 5.804 118.523 5.860 118.424 5.868 118.341 5.901 118.249 5.817 118.148 5.792 118.052 5.769 117.947 5.852 117.916 5.885 118.012 5.926 118.110 6.016 118.078 6.100 118.049 6.100 117.955 6.026 117.855 5.978 117.757 5.986 117.663 5.986 117.560 5.953 117.463 5.993 117.569 6.052 117.668 6.135 117.645 6.218 117.633 6.301 117.621 6.332 117.718 6.415 117.741 6.498 117.738 6.506 117.738 6.589 117.661 6.620 117.568 6.703 117.537 6.620 117.494 6.678 117.394 6.711 117.302 6.794 117.290 6.885 117.241 6.968 117.265 7.051 117.213 7.067 117.111 6.976 117.049 6.893 117.061 6.810 117.001 6.727 116.931 6.653 116.823 6.736 116.811 6.819 116.863 6.902 116.869 6.994 116.866 7.077 116.816 6.994 116.736 6.902 116.692 6.819 116.669 6.736 116.626 6.645 116.556 6.562 116.522 6.488 116.422 6.405 116.342 6.315 116.318 6.299 116.222 6.216 116.162 6.125 116.156 6.042 116.112 5.958 116.080 5.868 116.000 5.835 115.951 5.751 115.928 5.668 115.885 5.602 115.786 5.610 115.692 5.602 115.625 5.686 115.640 5.602 115.560 5.519 115.459 5.429 115.389 5.395 115.405 5.312 115.494 5.287 115.587 5.204 115.590 5.113 115.529 5.047 115.430 4.981 115.332 5.038 115.240 4.989 115.162 4.933 115.207 4.842 115.250 4.759 115.285 4.676 115.301 4.593 115.298 4.502 115.321 4.419 115.319 4.444 115.217 4.477 115.123 4.560 115.108 4.651 115.082 4.734 115.047 4.790 115.049 4.815 115.041 4.931 115.044 4.980 115.037 4.897 114.931 4.897 114.913 4.831 114.809 4.748 114.814 4.656 114.830 4.573 114.836 4.490 114.897 4.392 114.857 4.366 114.874 4.283 114.834 4.192 114.794 4.119 114.698 4.175 114.605 4.258 114.513 4.341 114.451 4.382 114.349 4.465 114.343 4.556 114.311 4.639 114.229 4.662 114.135 4.670 114.127 4.670 114.109 4.678 114.015 4.604 114.013 4.521 114.028 4.438 113.997 4.355 113.977 4.264 113.917 4.181 113.851 4.097 113.794 4.014 113.708 3.931 113.611 3.858 113.515 3.691 113.415 3.608 113.358 3.517 113.280 3.434 113.214 3.350 113.146 3.268 113.098 3.235 113.061 3.202 112.966 3.177 112.862 3.145 112.767 3.130 112.672 3.097 112.568 3.082 112.473 3.066 112.409 3.041 112.314 3.016 112.210 2.993 112.114 2.978 112.020 2.970 111.916 2.954 111.822 2.938 111.727 2.931 111.709 2.865 111.613 2.792 111.516 2.709 111.496 2.618 111.511 2.534 111.491 2.451 111.563 2.459 111.480 2.492 111.378 2.500 111.284 2.409 111.273 2.325 111.307 2.242 111.250 2.250 111.354 2.257 111.448 2.209 111.410 2.217 111.315 2.161 111.276 2.070 111.256 1.987 111.217 1.904 111.186 1.821 111.192 1.737 111.284 1.787 111.182 1.722 111.086 1.638 111.084 1.548 111.156 1.499 111.249 1.515 111.352 1.449 111.445 1.441 111.399 1.499 111.317 1.474 111.213 1.523 111.120 1.606 111.039 1.646 110.946 1.606 110.841 1.582 110.794 1.674 110.734 1.697 110.640 1.722 110.546 1.737 110.547 1.821 110.540 1.821 110.437 1.904 110.413 1.821 110.393 1.772 110.374 1.787 110.280 1.795 110.186 1.787 110.083 1.819 109.989 1.902 109.888 1.952 109.795 2.035 109.741 2.118 109.734 2.174 109.735 ; #1163 11 -7.839 156.803 -7.765 156.814 -7.682 156.889 -7.599 156.882 -7.558 156.775 -7.467 156.702 -7.508 156.611 -7.591 156.601 -7.674 156.684 -7.757 156.701 -7.841 156.803 ; #1164 11 -8.098 156.693 -8.015 156.703 -7.924 156.695 -7.841 156.632 -8.007 156.647 -8.098 156.691 ; #1165 11 -7.009 156.942 -7.092 157.015 -7.175 157.117 -7.232 157.217 -7.239 157.312 -7.280 157.419 -7.295 157.515 -7.270 157.608 -7.196 157.506 -7.164 157.408 -7.073 157.316 -6.989 157.243 -6.906 157.226 -6.823 157.172 -6.750 157.070 -6.709 156.963 -6.660 156.863 -6.577 156.772 -6.537 156.674 -6.504 156.576 -6.595 156.556 -6.678 156.610 -6.752 156.712 -6.835 156.814 -6.918 156.879 -7.001 156.942 ; #1166 11 -8.040 157.247 -8.007 157.281 -7.924 157.291 -7.833 157.282 -7.750 157.211 -7.757 157.117 -7.841 157.050 -7.932 157.067 -8.015 157.139 -8.040 157.245 ; #1167 11 -8.620 157.471 -8.562 157.429 -8.479 157.430 -8.396 157.496 -8.305 157.459 -8.371 157.371 -8.454 157.295 -8.537 157.387 -8.620 157.469 ; #1168 11 -8.464 157.884 -8.472 157.979 -8.388 157.998 -8.297 157.972 -8.214 157.926 -8.131 157.854 -8.131 157.760 -8.040 157.714 -7.949 157.714 -7.866 157.622 -7.881 157.529 -7.964 157.453 -8.056 157.415 -8.104 157.325 -8.195 157.326 -8.203 157.429 -8.170 157.521 -8.154 157.614 -8.245 157.698 -8.328 157.679 -8.402 157.781 -8.450 157.880 -8.458 157.890 ; #1169 11 -7.367 157.817 -7.367 157.881 -7.284 157.809 ; #1170 11 -8.663 158.081 -8.655 158.107 -8.589 158.195 -8.498 158.149 -8.415 158.150 -8.415 158.056 -8.498 157.969 -8.582 157.977 -8.665 158.079 ; #1171 11 -8.729 158.277 -8.721 158.285 -8.638 158.259 ; #1172 11 -7.450 158.514 -7.409 158.510 -7.409 158.415 ; #1173 11 -7.548 158.627 -7.541 158.626 -7.467 158.524 -7.492 158.423 -7.516 158.520 ; #1174 11 -8.005 159.201 -8.071 159.302 -8.102 159.399 -8.160 159.500 -8.208 159.608 -8.241 159.706 -8.325 159.797 -8.408 159.900 -8.325 159.918 -8.241 159.910 -8.158 159.876 -8.092 159.766 -8.044 159.687 -7.961 159.595 -7.870 159.503 -7.877 159.400 -7.821 159.300 -7.796 159.203 -7.740 159.103 -7.657 159.040 -7.584 158.938 -7.500 158.864 -7.467 158.758 -7.467 158.663 -7.419 158.564 -7.510 158.619 -7.601 158.693 -7.684 158.747 -7.767 158.819 -7.815 158.918 -7.899 159.010 -7.972 159.112 -8.005 159.198 ; #1175 11 -9.004 159.184 -8.996 159.239 -8.905 159.247 -8.920 159.154 -9.004 159.180 ; #1176 11 -9.710 160.076 -9.717 160.141 -9.710 160.244 -9.702 160.338 -9.717 160.434 -9.775 160.543 -9.806 160.641 -9.798 160.735 -9.775 160.836 -9.692 160.875 -9.609 160.820 -9.526 160.737 -9.435 160.665 -9.412 160.568 -9.320 160.484 -9.313 160.379 -9.313 160.284 -9.320 160.190 -9.320 160.096 -9.328 160.079 -9.303 159.982 -9.212 159.909 -9.147 159.808 -9.179 159.717 -9.270 159.688 -9.354 159.696 -9.437 159.713 -9.520 159.749 -9.603 159.821 -9.677 159.923 -9.692 160.028 -9.708 160.076 ; #1177 11 -11.454 160.092 -11.480 160.153 -11.536 160.258 -11.510 160.348 -11.594 160.446 -11.677 160.497 -11.717 160.599 -11.634 160.622 -11.551 160.514 -11.510 160.404 -11.445 160.298 -11.397 160.195 -11.356 160.094 -11.371 160.078 ; #1178 11 -8.812 160.084 -8.804 160.093 -8.796 160.092 ; #1179 11 -9.019 160.349 -8.978 160.371 -8.895 160.328 -8.887 160.233 -8.978 160.250 ; #1180 11 -9.036 160.945 -9.110 161.047 -9.201 161.122 -9.249 161.221 -9.332 161.304 -9.416 161.350 -9.506 161.434 -9.423 161.452 -9.332 161.417 -9.249 161.371 -9.166 161.317 -9.083 161.364 -9.000 161.309 -8.916 161.264 -8.825 161.229 -8.742 161.126 -8.684 161.026 -8.593 161.043 -8.510 161.093 -8.427 161.019 -8.336 160.946 -8.253 160.909 -8.197 160.809 -8.212 160.716 -8.295 160.706 -8.386 160.779 -8.636 160.777 -8.719 160.820 -8.810 160.857 -8.893 160.874 -8.976 160.911 -9.034 160.943 ; #1181 11 -10.640 161.913 -10.665 162.021 -10.673 162.118 -10.706 162.227 -10.706 162.322 -10.722 162.428 -10.630 162.375 -10.547 162.315 -10.464 162.266 -10.373 162.222 -10.365 162.118 -10.332 162.017 -10.332 161.923 -10.292 161.821 -10.226 161.706 -10.160 161.601 -10.102 161.496 -10.095 161.400 -10.178 161.357 -10.218 161.458 -10.251 161.559 -10.342 161.574 -10.425 161.616 -10.516 161.706 -10.574 161.810 -10.640 161.916 ; #1182 11 -10.756 165.970 -10.700 166.025 -10.675 166.115 -10.660 166.207 -10.568 166.221 -10.553 166.114 -10.561 166.021 -10.611 165.926 -10.702 165.866 -10.758 165.971 ; #1183 11 -11.255 166.613 -11.247 166.621 -11.164 166.589 ; #1184 11 -11.580 166.943 -11.548 167.021 -11.464 166.931 -11.497 166.842 -11.580 166.940 ; #1185 11 -13.391 -172.484 -13.414 -172.564 -13.399 -172.662 -13.482 -172.608 -13.565 -172.516 -13.648 -172.463 -13.681 -172.361 -13.674 -172.268 -13.658 -172.175 -13.610 -172.090 -13.527 -172.088 -13.435 -172.123 -13.352 -172.195 -13.352 -172.290 -13.376 -172.389 -13.391 -172.481 ; #1186 11 -13.941 -171.341 -13.857 -171.358 -13.774 -171.469 -13.749 -171.569 -13.708 -171.681 -13.693 -171.779 -13.716 -171.870 -13.766 -171.955 -13.850 -171.855 -13.881 -171.754 -13.931 -171.640 -13.931 -171.441 -13.939 -171.344 ; #1187 12 3.877 -159.446 3.877 -159.437 3.960 -159.478 3.877 -159.448 ; #1188 12 1.799 -157.385 1.815 -157.331 1.981 -157.507 2.072 -157.511 2.103 -157.616 2.012 -157.586 1.929 -157.591 1.944 -157.686 1.879 -157.588 1.853 -157.484 1.797 -157.387 ; #1189 12 8.340 -82.479 8.300 -82.468 8.315 -82.443 8.348 -82.418 8.363 -82.456 8.338 -82.481 ; #1190 12 7.732 -81.818 7.684 -81.870 7.611 -81.960 7.527 -81.929 7.444 -81.829 7.477 -81.737 7.560 -81.788 7.643 -81.793 7.734 -81.816 ; #1191 12 7.566 -81.326 7.599 -81.233 7.665 -81.143 7.632 -81.235 ; #1192 12 -2.538 -79.934 -2.538 -79.916 -2.455 -79.906 -2.372 -79.941 -2.455 -79.960 -2.538 -79.936 ; #1193 12 -2.397 -79.885 -2.397 -79.876 -2.314 -79.929 ; #1194 12 8.547 -78.944 8.547 -78.990 8.456 -79.031 8.373 -79.018 8.381 -78.923 8.464 -78.919 8.547 -78.941 ; #1195 12 50.036 -127.307 49.950 -127.311 49.892 -127.140 49.908 -127.046 49.993 -127.037 49.908 -126.991 49.950 -126.909 49.926 -126.780 49.841 -126.757 49.747 -126.716 49.755 -126.605 49.747 -126.607 49.690 -126.438 49.706 -126.344 49.721 -126.249 49.688 -126.315 49.672 -126.410 49.680 -126.535 49.646 -126.614 49.620 -126.699 49.535 -126.699 49.442 -126.702 49.442 -126.594 49.426 -126.471 49.460 -126.383 49.460 -126.274 49.484 -126.178 49.390 -126.190 49.399 -126.089 49.465 -126.040 49.381 -126.074 49.331 -126.138 49.315 -126.016 49.364 -125.951 49.272 -125.879 49.255 -125.757 49.196 -125.813 49.147 -125.887 49.154 -126.012 49.062 -125.835 48.976 -125.674 48.992 -125.580 49.042 -125.506 49.065 -125.408 49.016 -125.483 49.000 -125.361 49.042 -125.280 49.034 -125.165 49.042 -125.064 49.117 -125.011 49.184 -124.952 49.277 -124.960 49.184 -124.922 49.109 -124.974 49.042 -125.023 49.008 -125.102 48.966 -125.173 48.916 -125.238 48.867 -125.313 48.782 -125.280 48.740 -125.126 48.706 -124.988 48.621 -124.807 48.587 -124.660 48.613 -124.574 48.528 -124.448 48.476 -124.295 48.435 -124.151 48.419 -124.030 48.403 -123.899 48.377 -123.769 48.411 -123.691 48.469 -123.623 48.452 -123.501 48.528 -123.459 48.621 -123.528 48.706 -123.560 48.673 -123.639 48.598 -123.681 48.682 -123.702 48.768 -123.756 48.853 -123.754 48.946 -123.835 49.032 -123.972 49.083 -123.909 49.169 -123.972 49.254 -124.100 49.303 -124.261 49.371 -124.428 49.404 -124.576 49.430 -124.707 49.497 -124.884 49.583 -124.989 49.668 -125.044 49.736 -124.995 49.821 -125.100 49.914 -125.235 49.999 -125.320 50.041 -125.333 50.050 -125.332 50.231 -125.518 50.318 -125.565 50.405 -125.731 50.398 -125.832 50.424 -125.978 50.424 -126.087 50.492 -126.267 50.509 -126.404 50.525 -126.530 50.525 -126.639 50.517 -126.739 50.586 -126.920 50.594 -127.048 50.628 -127.193 50.652 -127.327 50.729 -127.527 50.816 -127.695 50.858 -127.859 50.893 -128.005 50.901 -128.123 50.901 -128.242 50.877 -128.327 50.851 -128.419 50.835 -128.521 50.766 -128.557 50.670 -128.487 50.583 -128.376 50.496 -128.220 50.505 -128.120 50.521 -128.028 50.529 -127.927 50.553 -127.834 50.614 -127.788 50.638 -127.923 50.638 -127.814 50.614 -127.668 50.614 -127.559 50.597 -127.651 50.521 -127.690 50.434 -127.630 50.521 -127.721 50.529 -127.839 50.503 -127.920 50.494 -128.030 50.444 -128.087 50.357 -128.049 50.357 -127.930 50.270 -127.902 50.209 -127.947 50.141 -127.984 50.132 -127.866 50.185 -127.813 50.159 -127.676 50.151 -127.559 50.064 -127.448 50.114 -127.392 50.123 -127.281 50.149 -127.200 50.106 -127.264 50.037 -127.301 ; #1196 12 52.703 -129.134 52.719 -129.029 52.797 -129.001 52.873 -128.963 52.960 -128.945 53.003 -128.869 52.916 -128.887 52.855 -128.933 52.778 -128.961 52.691 -128.955 52.667 -128.808 52.754 -128.790 52.831 -128.762 52.918 -128.734 53.013 -128.738 53.100 -128.777 53.186 -128.827 53.273 -129.032 53.342 -129.218 53.310 -129.295 53.215 -129.290 53.128 -129.307 53.096 -129.384 53.009 -129.412 52.974 -129.252 53.033 -129.205 53.076 -129.129 53.163 -129.233 53.067 -129.053 53.051 -129.157 52.991 -129.203 52.940 -129.259 52.906 -129.344 52.819 -129.304 52.732 -129.190 52.707 -129.143 ; #1197 12 52.833 -128.596 52.841 -128.605 52.790 -128.661 52.695 -128.647 52.608 -128.652 52.513 -128.638 52.426 -128.575 52.477 -128.518 52.564 -128.514 52.651 -128.530 52.746 -128.554 52.833 -128.593 ; #1198 12 52.197 -127.817 52.232 -127.743 52.266 -127.658 52.291 -127.573 52.317 -127.491 52.367 -127.434 52.454 -127.451 52.447 -127.564 52.420 -127.647 52.369 -127.704 52.335 -127.778 52.301 -127.862 52.293 -127.964 52.242 -128.031 52.183 -128.080 52.010 -128.116 52.010 -128.005 52.034 -127.921 52.129 -127.901 52.181 -127.846 52.197 -127.819 ; #1199 12 53.561 -129.182 53.569 -129.212 53.500 -129.249 53.449 -129.316 53.355 -129.325 53.379 -129.239 53.379 -129.118 53.474 -129.143 ; #1200 12 52.859 -128.392 52.825 -128.443 52.817 -128.546 52.730 -128.506 52.643 -128.500 52.712 -128.453 52.780 -128.415 52.857 -128.387 ; #1201 12 50.418 -125.779 50.468 -125.712 50.444 -125.806 50.428 -125.898 50.420 -125.781 ; #1202 12 49.626 -124.942 49.618 -124.965 49.533 -124.847 49.626 -124.939 ; #1203 12 50.036 -125.297 50.036 -125.267 50.165 -125.336 50.242 -125.296 50.329 -125.406 50.295 -125.480 50.208 -125.453 50.121 -125.344 50.034 -125.298 ; #1204 12 50.496 -125.523 50.470 -125.605 50.420 -125.672 50.404 -125.536 50.462 -125.488 ; #1205 12 50.236 -125.112 50.167 -125.161 50.080 -125.072 50.157 -125.042 50.233 -125.110 ; #1206 12 49.531 -124.253 49.616 -124.337 49.701 -124.433 49.769 -124.610 49.826 -124.769 49.741 -124.714 49.656 -124.554 49.581 -124.380 49.529 -124.249 ; #1207 12 49.549 -124.476 49.489 -124.423 49.523 -124.345 ; #1208 12 50.331 -125.036 50.331 -125.056 50.244 -125.062 50.157 -124.930 50.244 -124.956 ; #1209 12 48.970 -123.722 48.936 -123.746 48.843 -123.686 48.758 -123.612 48.792 -123.523 48.877 -123.577 48.970 -123.720 ; #1210 12 50.331 -124.850 50.339 -124.879 50.252 -124.899 50.244 -124.782 ; #1211 12 49.030 -123.729 48.944 -123.592 48.929 -123.470 48.962 -123.562 ; #1212 12 48.647 -123.260 48.655 -123.277 48.587 -123.337 48.494 -123.194 48.562 -123.144 ; #1213 12 49.805 -124.147 49.805 -124.176 49.779 -124.273 49.686 -124.267 49.753 -124.208 49.803 -124.143 ; #1214 12 48.748 -123.046 48.714 -123.113 48.639 -123.156 48.631 -123.041 48.665 -122.952 48.750 -123.046 ; #1215 12 48.596 -123.021 48.596 -123.050 48.502 -123.013 48.596 -123.018 ; #1216 12 49.438 -123.447 49.454 -123.460 49.369 -123.495 49.436 -123.445 ; #1217 12 49.541 -123.461 49.573 -123.498 49.497 -123.541 49.539 -123.459 ; #1218 12 48.774 -122.853 48.774 -122.873 48.688 -122.770 ; #1219 12 69.541 -139.254 69.588 -139.191 69.647 -139.149 69.647 -139.280 69.629 -139.392 69.582 -139.454 69.543 -139.258 ; #1220 12 69.465 -135.707 69.521 -135.800 69.512 -135.928 ; #1221 12 69.591 -135.694 69.582 -135.680 69.611 -135.598 69.667 -135.548 69.650 -135.649 ; #1222 12 69.620 -134.241 69.611 -134.226 69.629 -134.126 ; #1223 12 69.600 -134.132 69.582 -134.103 69.629 -134.037 69.602 -134.136 ; #1224 12 69.456 -131.016 69.446 -131.001 69.543 -131.013 69.458 -131.019 ; #1225 12 69.582 -130.918 69.573 -130.903 69.650 -130.884 ; #1226 12 70.626 -128.289 70.677 -128.390 70.626 -128.445 70.576 -128.489 70.616 -128.416 ; #1227 12 -32.487 -58.238 -32.487 -58.229 -32.396 -58.255 ; #1228 12 -54.726 -64.619 -54.649 -64.452 -54.641 -64.334 -54.641 -64.098 -54.598 -63.961 -54.564 -63.828 -54.548 -63.932 -54.548 -64.055 -54.556 -64.172 -54.548 -64.280 -54.580 -64.411 -54.623 -64.559 -54.657 -64.692 ; #1229 5 -51.797 -60.992 -51.754 -60.882 -51.667 -60.899 -51.702 -61.027 -51.615 -60.980 -51.649 -61.108 -51.745 -61.074 -51.795 -60.991 ; #1230 5 -51.233 -59.994 -51.285 -59.989 -51.301 -59.987 -51.301 -59.997 -51.328 -60.121 -51.320 -60.227 -51.287 -60.330 -51.235 -60.411 -51.210 -60.517 -51.210 -60.627 -51.269 -60.539 -51.277 -60.434 -51.364 -60.450 -51.407 -60.353 -51.441 -60.252 -51.491 -60.169 -51.526 -60.077 -51.518 -60.139 -51.491 -60.245 -51.500 -60.360 -51.532 -60.498 -51.558 -60.621 -51.627 -60.549 -51.575 -60.411 -51.542 -60.283 -51.601 -60.194 -51.601 -60.304 -51.688 -60.351 -51.593 -60.387 -51.680 -60.444 -51.775 -60.526 -51.740 -60.388 -51.827 -60.522 -51.803 -60.629 -51.846 -60.762 -51.862 -60.881 -51.888 -61.016 -51.931 -60.919 -51.963 -60.826 -51.989 -60.719 -51.931 -60.798 -51.939 -60.692 -52.026 -60.673 -52.060 -60.571 -51.973 -60.469 -51.989 -60.368 -51.902 -60.257 -51.807 -60.226 -51.823 -60.125 -51.799 -59.991 -51.807 -59.941 -51.712 -59.827 -51.625 -59.726 -51.538 -59.605 -51.443 -59.522 -51.401 -59.379 -51.314 -59.299 -51.227 -59.233 -51.194 -59.325 -51.194 -59.435 -51.281 -59.461 -51.255 -59.567 -51.271 -59.685 -51.239 -59.778 -51.205 -59.869 -51.229 -60.002 ; #1231 5 -51.207 -60.276 -51.230 -60.215 -51.214 -60.096 -51.127 -60.114 -51.136 -60.238 -51.205 -60.155 -51.205 -60.275 ; #1232 5 -51.077 -59.781 -51.101 -59.793 -51.118 -59.682 -51.134 -59.581 -51.109 -59.458 -51.093 -59.560 -51.093 -59.669 ; #1233 5 -52.084 -59.759 -52.093 -59.733 -52.006 -59.697 -51.997 -59.803 -52.084 -59.762 ; #1234 5 -51.945 -59.718 -51.953 -59.722 -51.995 -59.625 -52.072 -59.555 -52.123 -59.472 -52.131 -59.366 -52.044 -59.417 -51.957 -59.350 -51.991 -59.258 -52.034 -59.159 -52.050 -59.058 -51.963 -59.033 -51.894 -59.106 -51.844 -59.199 -51.844 -59.079 -51.868 -58.982 -51.919 -58.899 -51.868 -58.761 -51.876 -58.655 -51.789 -58.642 -51.789 -58.753 -51.738 -58.846 -51.651 -58.911 -51.694 -58.823 -51.720 -58.716 -51.728 -58.600 -51.712 -58.482 -51.712 -58.361 -51.625 -58.275 -51.609 -58.156 -51.585 -58.254 -51.585 -58.220 -51.593 -58.114 -51.576 -57.985 -51.560 -57.867 -51.526 -57.729 -51.526 -57.839 -51.439 -57.814 -51.423 -57.926 -51.423 -58.036 -51.372 -58.120 -51.346 -57.996 -51.372 -57.889 -51.364 -57.765 -51.287 -57.845 -51.210 -57.915 -51.219 -58.029 -51.227 -58.143 -51.253 -58.277 -51.340 -58.355 -51.364 -58.248 -51.441 -58.168 -51.433 -58.284 -51.399 -58.330 -51.364 -58.421 -51.277 -58.450 -51.269 -58.326 -51.182 -58.367 -51.140 -58.465 -51.148 -58.578 -51.164 -58.697 -51.129 -58.799 -51.129 -58.908 -51.216 -58.911 -51.303 -59.077 -51.338 -58.975 -51.415 -59.016 -51.362 -59.108 -51.457 -59.094 -51.500 -58.997 -51.587 -59.022 -51.526 -59.100 -51.560 -59.238 -51.647 -59.359 -51.734 -59.492 -51.821 -59.583 -51.908 -59.585 -51.942 -59.714 ; #1235 5 -51.850 -58.510 -51.866 -58.519 -51.900 -58.427 ; #1236 5 -54.750 -36.076 -54.700 -35.968 -54.631 -36.067 -54.673 -35.959 -54.613 -35.814 -54.536 -35.899 -54.449 -35.980 -54.424 -36.084 -54.337 -36.052 -54.311 -36.165 -54.252 -36.257 -54.165 -36.291 -54.139 -36.393 -54.226 -36.383 -54.210 -36.500 -54.123 -36.557 -54.131 -36.682 -54.044 -36.583 -53.986 -36.674 -54.018 -36.808 -53.949 -36.895 -53.933 -37.001 -53.933 -37.124 -53.959 -37.246 -53.925 -37.345 -53.874 -37.438 -53.890 -37.566 -53.883 -37.675 -53.890 -37.801 -53.874 -37.907 -53.890 -38.036 -53.925 -37.937 -53.925 -37.825 -53.975 -37.721 -54.052 -37.637 -54.010 -37.499 -54.026 -37.393 -54.034 -37.273 -54.058 -37.405 -54.145 -37.361 -54.121 -37.230 -54.145 -37.126 -54.206 -37.026 -54.206 -36.914 -54.275 -36.826 -54.343 -36.729 -54.386 -36.622 -54.386 -36.509 -54.473 -36.418 -54.542 -36.330 -54.629 -36.263 -54.748 -36.080 ; #1237 12 -5.912 39.212 -6.003 39.223 -6.094 39.215 -6.177 39.263 -6.152 39.300 -6.235 39.396 -6.326 39.462 -6.342 39.557 -6.301 39.584 -6.218 39.554 -6.127 39.544 -6.043 39.525 -6.084 39.431 -5.993 39.438 -5.910 39.408 -5.894 39.399 -5.804 39.368 -5.720 39.376 -5.637 39.339 -5.720 39.303 -5.761 39.275 -5.844 39.202 -5.910 39.212 ; #1238 12 -4.890 39.684 -4.924 39.702 -5.007 39.702 -5.090 39.750 -5.097 39.667 -5.153 39.763 -5.227 39.670 -5.310 39.654 -5.351 39.749 -5.268 39.804 -5.185 39.849 -5.094 39.865 -5.061 39.864 -4.978 39.845 -4.886 39.880 -4.871 39.880 -4.838 39.785 -4.805 39.690 -4.888 39.682 ; #1239 12 -7.324 72.474 -7.324 72.483 -7.241 72.517 -7.158 72.496 -7.241 72.482 -7.158 72.404 -7.241 72.471 ; #1240 5 -60.586 -44.639 -60.549 -44.500 -60.513 -44.362 -60.522 -44.496 -60.530 -44.619 -60.530 -44.738 -60.584 -44.638 ; #1241 12 69.444 -93.303 69.435 -93.329 69.338 -93.319 69.252 -93.348 69.176 -93.401 69.167 -93.248 69.090 -93.301 69.120 -93.193 69.217 -93.176 69.282 -93.111 69.338 -93.046 69.424 -93.004 69.433 -93.157 69.442 -93.299 ; #1242 12 69.882 -93.768 69.854 -93.787 69.826 -93.884 69.729 -93.806 69.663 -93.871 69.690 -93.772 69.787 -93.784 69.884 -93.767 ; #1243 12 69.591 -93.163 69.591 -93.175 69.564 -93.286 69.496 -93.337 69.525 -93.241 69.478 -93.316 69.487 -93.196 69.525 -93.098 69.525 -92.955 69.582 -92.879 69.600 -93.031 ; #1244 12 70.009 -92.841 69.990 -92.895 69.972 -93.017 69.916 -93.082 69.877 -93.167 69.839 -93.266 69.848 -93.133 69.866 -93.023 69.943 -92.971 69.961 -92.861 70.009 -92.774 70.028 -92.723 ; #1245 12 71.663 -94.248 71.634 -94.288 71.531 -94.227 71.551 -94.094 71.663 -94.245 ; #1246 12 68.777 -82.137 68.874 -82.150 68.844 -82.261 68.874 -82.434 68.777 -82.320 68.759 -82.443 68.732 -82.556 68.723 -82.676 68.732 -82.815 68.635 -82.726 68.644 -82.594 68.615 -82.422 68.662 -82.342 68.671 -82.223 68.680 -82.102 68.777 -82.140 ; #1247 12 68.991 -136.082 68.935 -135.903 68.944 -135.787 68.973 -135.706 69.000 -135.609 69.010 -135.612 68.962 -135.392 68.926 -135.191 68.944 -135.078 69.000 -135.041 69.010 -135.005 68.991 -134.912 68.797 -134.645 68.732 -134.409 68.829 -134.604 68.926 -134.699 69.032 -134.836 69.050 -134.842 69.088 -134.762 69.135 -134.698 69.145 -134.571 69.174 -134.489 69.221 -134.424 69.269 -134.372 69.316 -134.307 69.354 -134.239 69.401 -134.174 69.420 -134.062 69.496 -133.901 69.582 -133.899 69.555 -133.998 69.516 -134.076 69.593 -134.333 69.640 -134.268 69.677 -134.471 69.629 -134.524 69.582 -134.589 69.546 -134.660 69.460 -134.650 69.487 -134.825 69.496 -134.981 69.496 -135.188 69.478 -135.289 69.451 -135.387 69.366 -135.376 69.280 -135.326 69.356 -135.713 69.289 -135.732 69.336 -135.952 69.289 -136.004 69.192 -135.819 69.145 -135.599 69.145 -135.729 69.242 -135.980 69.242 -136.122 69.145 -136.104 69.038 -135.865 69.048 -135.750 69.048 -135.687 69.030 -135.787 69.020 -135.902 69.020 -135.977 69.048 -136.164 68.991 -136.095 ; #1248 12 70.181 -124.843 70.181 -124.711 70.222 -124.637 70.202 -124.748 70.183 -124.847 ; #1249 12 72.537 -125.507 72.496 -125.571 72.467 -125.668 72.407 -125.710 72.336 -125.731 72.295 -125.795 72.285 -125.926 72.216 -125.939 72.185 -126.018 72.094 -126.004 72.034 -126.034 72.014 -126.147 72.005 -125.996 72.014 -125.878 72.024 -125.747 72.024 -125.453 72.005 -125.272 71.964 -125.347 71.893 -125.087 71.842 -124.865 71.813 -124.668 71.783 -124.468 71.701 -124.192 71.598 -124.067 71.495 -123.864 71.383 -123.748 71.280 -123.664 71.177 -123.487 71.126 -123.268 71.136 -123.127 71.136 -122.994 71.218 -122.866 71.237 -122.765 71.266 -122.668 71.275 -122.550 71.294 -122.438 71.313 -122.337 71.354 -122.272 71.395 -122.196 71.435 -122.131 71.474 -122.051 71.505 -121.956 71.424 -121.685 71.433 -121.554 71.443 -121.425 71.462 -121.311 71.471 -121.182 71.490 -121.067 71.509 -120.965 71.529 -120.865 71.557 -120.765 71.598 -120.701 71.720 -120.613 71.811 -120.632 71.893 -120.623 71.995 -120.663 72.024 -120.577 72.106 -120.420 72.166 -120.387 72.257 -120.393 72.247 -120.228 72.247 -120.094 72.266 -119.979 72.297 -119.883 72.326 -119.796 72.345 -119.682 72.364 -119.579 72.436 -119.551 72.486 -119.489 72.546 -119.454 72.606 -119.406 72.656 -119.355 72.676 -119.240 72.695 -119.136 72.724 -119.049 72.755 -118.953 72.764 -118.820 72.774 -118.688 72.824 -118.624 72.843 -118.519 72.884 -118.290 72.903 -118.186 72.934 -118.089 72.953 -117.985 72.984 -117.901 73.004 -117.785 73.035 -117.687 73.054 -117.583 73.054 -117.434 73.085 -117.350 73.104 -117.232 73.123 -117.127 73.154 -117.030 73.186 -116.946 73.214 -116.844 73.224 -116.709 73.255 -116.624 73.265 -116.505 73.284 -116.386 73.293 -116.252 73.334 -116.020 73.353 -115.903 73.372 -115.784 73.403 -115.699 73.435 -115.613 73.454 -115.494 73.545 -115.550 73.648 -115.776 73.676 -115.961 73.779 -116.226 73.860 -116.501 73.963 -116.741 74.076 -117.054 74.158 -117.344 74.198 -117.551 74.208 -117.720 74.208 -117.732 74.217 -117.912 74.236 -118.097 74.236 -118.249 74.227 -118.384 74.208 -118.490 74.198 -118.625 74.188 -118.747 74.169 -118.865 74.088 -118.889 74.050 -118.963 74.009 -119.044 73.990 -119.162 73.981 -119.285 74.040 -119.249 74.081 -119.168 74.184 -119.265 74.184 -119.416 74.193 -119.584 74.155 -119.657 74.105 -119.721 74.085 -119.839 74.005 -119.850 74.095 -119.910 74.126 -119.826 74.167 -119.745 74.208 -119.664 74.208 -119.828 74.227 -120.013 74.236 -120.084 74.236 -120.122 74.246 -120.278 74.287 -120.489 74.327 -120.711 74.378 -120.938 74.468 -121.236 74.488 -121.423 74.507 -121.609 74.507 -121.760 74.488 -121.879 74.478 -122.013 74.459 -122.119 74.449 -122.254 74.440 -122.377 74.430 -122.524 74.421 -122.659 74.421 -122.824 74.411 -122.960 74.411 -123.293 74.402 -123.428 74.392 -123.562 74.392 -123.701 74.383 -123.836 74.373 -123.970 74.373 -124.136 74.354 -124.241 74.354 -124.380 74.344 -124.527 74.335 -124.661 74.253 -124.654 74.150 -124.592 74.038 -124.512 73.935 -124.366 73.832 -124.195 73.750 -123.899 73.700 -123.961 73.681 -124.077 73.652 -124.164 73.580 -124.174 73.580 -124.199 73.521 -124.245 73.480 -124.309 73.480 -124.459 73.439 -124.525 73.379 -124.568 73.351 -124.654 73.300 -124.701 73.250 -124.762 73.210 -124.840 73.159 -124.887 73.128 -124.981 73.059 -125.007 73.039 -124.824 72.936 -124.708 72.917 -124.811 72.908 -124.956 72.898 -125.075 72.888 -125.194 72.869 -125.310 72.766 -125.165 72.697 -125.191 72.594 -125.145 72.584 -125.276 72.556 -125.361 72.524 -125.454 ; #1250 12 70.009 -117.517 69.911 -117.449 69.814 -117.372 69.717 -117.180 69.670 -116.980 69.613 -117.029 69.566 -116.830 69.584 -116.714 69.498 -116.720 69.401 -116.466 69.366 -116.272 69.318 -116.073 69.318 -115.943 69.309 -115.788 69.291 -115.632 69.291 -115.502 69.273 -115.346 69.282 -115.216 69.309 -115.112 69.282 -114.944 69.291 -114.814 69.300 -114.684 69.309 -114.555 69.318 -114.438 69.280 -114.253 69.280 -114.122 69.251 -113.939 69.232 -113.783 69.165 -113.831 69.068 -113.798 68.874 -113.786 68.777 -113.714 68.671 -113.590 68.605 -113.370 68.549 -113.421 68.511 -113.238 68.520 -113.122 68.511 -112.968 68.520 -112.840 68.549 -112.739 68.549 -112.598 68.567 -112.494 68.567 -112.212 68.577 -112.083 68.577 -111.941 68.585 -111.824 68.585 -111.683 68.567 -111.517 68.577 -111.400 68.615 -111.582 68.624 -111.454 68.624 -111.312 68.642 -111.207 68.651 -111.078 68.612 -111.167 68.612 -111.026 68.622 -110.909 68.640 -110.792 68.649 -110.663 68.619 -110.494 68.657 -110.416 68.667 -110.288 68.657 -110.161 68.675 -110.044 68.667 -109.903 68.675 -109.773 68.705 -109.683 68.723 -109.578 68.732 -109.449 68.741 -109.320 68.759 -109.215 68.768 -109.098 68.806 -109.008 68.836 -108.918 68.863 -108.824 68.892 -108.733 68.969 -108.694 68.969 -108.423 68.960 -108.269 68.960 -108.127 68.978 -108.021 68.987 -107.892 68.996 -107.774 69.005 -107.644 69.023 -107.538 69.050 -107.444 69.097 -107.377 69.145 -107.298 69.174 -107.207 69.212 -107.128 69.269 -107.073 69.366 -107.071 69.374 -106.940 69.413 -106.861 69.460 -106.793 69.498 -106.702 69.422 -106.469 69.325 -106.416 69.269 -106.473 69.221 -106.540 69.165 -106.336 69.165 -106.194 69.174 -106.064 69.183 -105.945 69.183 -105.803 69.106 -105.561 69.106 -105.431 69.088 -105.277 69.117 -105.173 69.011 -105.164 69.011 -105.294 68.973 -105.387 68.917 -105.183 68.899 -105.018 68.890 -104.877 68.890 -104.748 68.919 -104.643 68.955 -104.548 68.964 -104.430 68.878 -104.178 68.878 -104.049 68.849 -103.881 68.849 -103.739 68.802 -103.537 68.858 -103.480 68.867 -103.362 68.820 -103.159 68.829 -103.041 68.856 -102.946 68.914 -102.879 68.885 -102.701 68.914 -102.608 68.971 -102.537 68.962 -102.385 68.980 -102.278 69.018 -102.197 69.000 -102.032 69.068 -101.987 69.115 -101.917 69.221 -101.950 69.259 -102.128 69.203 -102.198 69.374 -102.132 69.413 -102.051 69.490 -102.279 69.498 -102.433 69.490 -102.564 69.431 -102.632 69.413 -102.739 69.384 -102.844 69.384 -102.974 69.318 -103.021 69.280 -103.102 69.224 -103.172 69.185 -103.264 69.129 -103.323 69.226 -103.305 69.255 -103.212 69.321 -103.154 69.406 -103.134 69.503 -103.143 69.456 -103.225 69.553 -103.325 69.600 -103.530 69.697 -103.579 69.697 -103.435 69.600 -103.180 69.562 -102.988 69.553 -102.833 69.553 -102.691 69.600 -102.621 69.685 -102.587 69.782 -102.596 69.809 -102.500 69.848 -102.406 69.904 -102.335 69.807 -102.134 69.722 -101.894 69.704 -101.728 69.760 -101.669 69.828 -101.624 69.893 -101.565 69.796 -101.572 69.699 -101.460 69.670 -101.292 69.670 -101.150 69.688 -101.042 69.753 -100.981 69.850 -100.973 69.956 -101.019 69.985 -101.032 70.088 -101.097 70.138 -101.312 70.169 -101.487 70.107 -101.542 70.138 -101.718 70.241 -101.732 70.291 -101.935 70.241 -102.008 70.331 -102.269 70.401 -102.501 70.452 -102.716 70.492 -102.919 70.595 -103.015 70.664 -103.259 70.574 -103.261 70.564 -103.379 70.583 -103.552 70.593 -103.697 70.705 -103.913 70.737 -104.104 70.849 -104.230 70.952 -104.380 70.992 -104.573 71.105 -104.803 71.155 -104.731 71.196 -104.646 71.308 -104.678 71.359 -104.606 71.359 -104.472 71.462 -104.506 71.574 -104.566 71.677 -104.694 71.780 -104.847 71.883 -105.036 71.986 -105.071 72.098 -105.226 72.161 -105.172 72.273 -105.287 72.376 -105.416 72.479 -105.424 72.582 -105.541 72.652 -105.511 72.724 -105.644 72.743 -105.537 72.846 -105.718 72.958 -105.864 73.061 -106.129 73.042 -106.235 73.083 -106.435 73.186 -106.685 73.224 -106.880 73.295 -107.141 73.295 -107.194 73.255 -107.282 73.173 -107.305 73.245 -107.553 73.305 -107.783 73.315 -107.948 73.334 -108.115 73.343 -108.279 73.293 -108.337 73.190 -108.082 73.190 -108.368 73.159 -108.470 73.056 -108.376 72.953 -108.366 72.747 -108.290 72.719 -108.246 72.616 -108.206 72.513 -108.114 72.410 -108.062 72.307 -107.917 72.297 -108.049 72.194 -107.970 72.091 -107.800 71.989 -107.709 71.876 -107.444 71.876 -107.578 71.785 -107.574 71.775 -107.707 71.747 -107.809 71.706 -107.895 71.696 -108.014 71.615 -107.980 71.634 -108.156 71.706 -108.400 71.809 -108.452 71.900 -108.443 71.950 -108.386 71.931 -108.491 71.991 -108.607 72.072 -108.586 72.175 -108.732 72.278 -108.784 72.381 -108.849 72.450 -108.809 72.532 -108.799 72.602 -109.056 72.563 -109.144 72.654 -109.125 72.716 -109.276 72.755 -109.374 72.745 -109.507 72.817 -109.755 72.920 -109.863 72.910 -109.997 72.972 -110.191 72.991 -110.369 73.001 -110.534 73.001 -110.833 72.972 -110.936 72.869 -110.760 72.838 -110.698 72.819 -110.532 72.747 -110.270 72.738 -110.188 72.728 -110.013 72.668 -110.067 72.697 -110.191 72.716 -110.370 72.676 -110.454 72.656 -110.288 72.618 -110.190 72.515 -110.003 72.484 -110.090 72.515 -110.192 72.565 -110.407 72.494 -110.200 72.453 -110.189 72.524 -110.438 72.534 -110.601 72.515 -110.706 72.565 -110.934 72.524 -111.017 72.474 -111.086 72.455 -111.192 72.417 -111.280 72.314 -111.237 72.374 -111.478 72.434 -111.426 72.443 -111.577 72.402 -111.659 72.383 -111.778 72.302 -111.784 72.273 -111.886 72.214 -111.927 72.295 -111.921 72.336 -111.850 72.326 -111.982 72.396 -111.957 72.415 -111.852 72.434 -111.735 72.474 -111.650 72.524 -111.595 72.553 -111.493 72.603 -111.437 72.654 -111.380 72.704 -111.394 72.735 -111.592 72.805 -111.839 72.846 -112.040 72.877 -112.226 72.886 -112.390 72.896 -112.542 72.956 -112.801 72.965 -112.952 72.984 -113.119 72.984 -113.268 72.965 -113.373 72.934 -113.472 72.893 -113.556 72.843 -113.623 72.803 -113.706 72.764 -113.792 72.755 -113.777 72.735 -113.609 72.666 -113.633 72.647 -113.751 72.618 -113.841 72.656 -113.753 72.656 -113.889 72.637 -114.007 72.647 -114.171 72.627 -114.288 72.608 -114.393 72.589 -114.511 72.558 -114.596 72.558 -114.744 72.599 -114.786 72.618 -114.668 72.656 -114.582 72.676 -114.465 72.757 -114.448 72.788 -114.363 72.788 -114.227 72.798 -114.147 72.910 -114.210 72.991 -114.206 73.061 -114.171 73.112 -114.116 73.214 -114.218 73.317 -114.452 73.348 -114.641 73.358 -114.820 73.339 -114.926 73.329 -114.935 73.310 -115.041 73.290 -115.158 73.281 -115.306 73.250 -115.391 73.240 -115.524 73.210 -115.623 73.190 -115.728 73.181 -115.862 73.171 -115.982 73.152 -116.100 73.133 -116.218 73.123 -116.338 73.104 -116.443 73.085 -116.561 73.066 -116.678 73.047 -116.796 73.028 -116.900 72.999 -117.002 72.968 -117.086 72.958 -117.220 72.939 -117.336 72.939 -117.473 72.920 -117.590 72.869 -117.655 72.841 -117.756 72.809 -117.839 72.719 -118.092 72.690 -118.192 72.671 -118.296 72.652 -118.413 72.611 -118.480 72.580 -118.576 72.551 -118.676 72.510 -118.756 72.460 -118.820 72.369 -118.532 72.360 -118.380 72.257 -118.344 72.238 -118.460 72.228 -118.579 72.218 -118.709 72.199 -118.826 72.168 -118.921 72.098 -118.952 72.067 -119.035 72.048 -119.138 71.967 -119.296 71.907 -119.331 71.837 -119.361 71.747 -119.344 71.644 -119.184 71.672 -119.098 71.691 -118.983 71.691 -118.702 71.631 -118.468 71.670 -118.386 71.701 -118.291 71.701 -118.145 71.710 -118.013 71.670 -118.093 71.641 -118.179 71.641 -118.045 71.581 -118.079 71.581 -118.213 71.572 -118.345 71.553 -118.447 71.512 -118.526 71.409 -118.209 71.419 -118.079 71.428 -117.961 71.409 -117.784 71.450 -117.717 71.519 -117.698 71.438 -117.417 71.457 -117.314 71.457 -117.169 71.467 -117.051 71.486 -116.935 71.495 -116.806 71.514 -116.703 71.524 -116.572 71.524 -116.426 71.543 -116.323 71.553 -116.193 71.562 -116.061 71.581 -115.958 71.581 -115.824 71.522 -115.581 71.531 -115.450 71.551 -115.347 71.509 -115.428 71.500 -115.559 71.490 -115.677 71.522 -115.874 71.522 -116.008 71.503 -116.124 71.483 -116.226 71.464 -116.341 71.426 -116.133 71.435 -116.014 71.395 -116.094 71.395 -116.228 71.376 -116.344 71.385 -116.504 71.376 -116.623 71.366 -116.753 71.347 -116.856 71.327 -116.969 71.297 -117.025 71.277 -117.126 71.277 -117.273 71.268 -117.391 71.248 -117.504 71.229 -117.607 71.220 -117.738 71.210 -117.867 71.210 -118.013 71.191 -118.115 71.160 -118.210 71.131 -118.296 71.112 -118.409 71.093 -118.511 71.062 -118.606 70.959 -118.542 70.846 -118.279 70.787 -118.049 70.684 -117.905 70.643 -117.694 70.662 -117.580 70.653 -117.420 70.643 -117.260 70.643 -116.983 70.653 -116.854 70.672 -116.740 70.672 -116.451 70.610 -116.206 70.629 -116.092 70.629 -115.671 70.638 -115.553 70.638 -115.263 70.648 -115.146 70.658 -115.030 70.658 -114.885 70.667 -114.767 70.686 -114.665 70.705 -114.551 70.705 -114.407 70.715 -114.289 70.743 -114.189 70.743 -114.057 70.715 -113.879 70.684 -113.686 70.684 -113.554 70.674 -113.393 70.602 -113.148 70.602 -113.004 70.593 -112.856 70.552 -112.648 70.552 -112.516 70.533 -112.341 70.420 -112.179 70.401 -112.058 70.382 -111.883 70.392 -111.766 70.301 -111.770 70.301 -111.902 70.291 -112.043 70.301 -112.190 70.320 -112.351 70.289 -112.447 70.260 -112.534 70.270 -112.693 70.229 -112.761 70.248 -112.936 70.279 -113.115 70.279 -113.259 70.298 -113.421 70.308 -113.567 70.298 -113.685 70.289 -113.801 70.298 -113.948 70.308 -114.107 70.336 -114.284 70.346 -114.432 70.336 -114.560 70.336 -114.692 70.327 -114.809 70.317 -114.926 70.308 -115.054 70.308 -115.330 70.298 -115.447 70.279 -115.548 70.279 -115.692 70.270 -115.809 70.270 -115.953 70.260 -116.069 70.251 -116.186 70.231 -116.286 70.222 -116.403 70.212 -116.519 70.202 -116.648 70.183 -116.749 70.174 -116.866 70.164 -116.981 70.154 -117.109 70.145 -117.226 70.126 -117.338 70.095 -117.432 70.066 -117.517 70.035 -117.556 ; #1251 12 67.907 -114.175 67.925 -114.201 67.916 -114.328 ; #1252 12 67.993 -114.295 68.001 -114.294 67.983 -114.409 ; #1253 12 67.857 -113.966 67.866 -113.979 67.866 -114.107 ; #1254 12 67.945 -113.473 67.963 -113.498 67.945 -113.614 67.936 -113.730 67.936 -113.589 ; #1255 12 70.564 -117.335 70.564 -117.203 70.583 -117.102 70.593 -117.250 ; #1256 12 70.533 -116.940 70.504 -116.894 70.514 -116.777 ; #1257 12 70.583 -116.878 70.564 -116.846 70.583 -116.733 ; #1258 12 70.583 -116.136 70.564 -116.105 70.605 -116.038 70.585 -116.139 ; #1259 12 68.197 -112.294 68.216 -112.319 68.207 -112.435 ; #1260 12 68.322 -111.679 68.339 -111.692 68.331 -111.821 68.254 -111.856 68.301 -111.792 68.319 -111.676 ; #1261 12 67.983 -110.986 67.993 -110.999 67.956 -111.090 67.927 -111.179 67.889 -111.255 67.907 -111.151 67.925 -111.048 67.981 -110.983 ; #1262 12 68.080 -110.475 68.089 -110.500 68.053 -110.579 ; #1263 12 68.515 -110.885 68.583 -110.965 68.565 -111.069 68.500 -111.122 68.509 -111.005 68.518 -110.888 ; #1264 12 68.119 -110.168 68.119 -110.118 68.175 -110.065 68.148 -110.169 68.139 -110.193 68.121 -110.298 68.083 -110.386 68.092 -110.258 68.121 -110.169 ; #1265 12 75.872 -120.222 75.893 -120.111 75.914 -120.011 75.948 -119.938 76.003 -119.908 75.993 -119.716 76.116 -119.898 76.150 -119.823 76.262 -119.910 76.351 -119.950 76.372 -119.822 76.260 -119.633 76.137 -119.482 76.137 -119.327 76.158 -119.213 76.203 -119.161 76.291 -119.198 76.313 -119.086 76.313 -118.943 76.354 -118.884 76.433 -118.886 76.509 -119.199 76.553 -119.146 76.574 -119.031 76.532 -118.802 76.574 -118.730 76.585 -118.609 76.660 -118.619 76.726 -118.595 76.805 -118.611 76.794 -118.431 76.794 -118.274 76.839 -118.207 76.726 -118.136 76.681 -118.189 76.626 -118.234 76.538 -118.212 76.482 -118.257 76.438 -118.324 76.349 -117.974 76.284 -117.686 76.294 -117.564 76.304 -117.429 76.336 -117.336 76.357 -117.221 76.446 -117.257 76.559 -117.326 76.569 -117.189 76.590 -117.076 76.600 -116.938 76.590 -116.748 76.600 -116.611 76.622 -116.497 76.642 -116.368 76.687 -116.299 76.707 -116.156 76.831 -116.289 76.909 -116.591 76.951 -116.519 76.920 -116.297 76.920 -116.140 76.941 -116.023 77.030 -116.360 77.142 -116.644 77.174 -116.563 77.208 -116.473 77.218 -116.335 77.229 -116.198 77.263 -116.095 77.273 -115.956 77.284 -115.805 77.318 -115.729 77.441 -116.061 77.462 -116.262 77.527 -116.541 77.559 -116.764 77.548 -116.889 77.548 -117.194 77.483 -117.234 77.483 -117.380 77.407 -117.065 77.339 -117.073 77.349 -117.252 77.370 -117.441 77.305 -117.466 77.326 -117.654 77.336 -117.835 77.357 -118.023 77.368 -118.217 77.378 -118.397 77.368 -118.535 77.368 -119.012 77.347 -119.129 77.336 -119.265 77.336 -119.410 77.315 -119.513 77.281 -119.601 77.226 -119.645 77.195 -119.725 77.174 -119.827 77.153 -119.928 77.132 -120.044 77.098 -120.118 77.064 -120.206 77.043 -120.306 77.009 -120.395 76.967 -120.466 76.923 -120.531 76.912 -120.654 76.844 -120.671 76.813 -120.750 76.778 -120.850 76.768 -120.986 76.758 -121.122 76.723 -121.195 76.703 -121.322 76.703 -121.466 76.648 -121.495 76.614 -121.582 76.582 -121.686 76.514 -121.701 76.482 -121.779 76.461 -121.892 76.451 -122.029 76.472 -122.242 76.451 -122.342 76.441 -122.463 76.430 -122.597 76.409 -122.696 76.399 -122.819 76.367 -122.896 76.299 -122.910 76.268 -123.000 76.258 -123.122 76.213 -123.171 76.158 -123.212 76.113 -123.288 76.134 -123.163 76.178 -123.100 76.189 -122.979 76.200 -122.845 76.155 -122.894 76.155 -122.752 76.100 -122.793 76.056 -122.856 76.011 -122.919 75.956 -122.649 75.977 -122.525 76.008 -122.433 76.042 -122.361 76.064 -122.250 76.064 -122.094 76.042 -121.895 75.953 -121.568 75.987 -121.483 76.008 -121.383 76.019 -121.250 76.097 -121.269 76.163 -121.262 76.207 -121.183 76.197 -121.020 76.097 -120.957 76.032 -120.681 75.964 -120.683 75.898 -120.705 75.867 -120.474 75.909 -120.416 75.867 -120.219 ; #1266 12 76.097 -123.089 76.053 -123.123 76.064 -123.003 76.097 -122.930 76.097 -123.086 ; #1267 12 75.951 -122.871 75.930 -122.853 75.951 -122.729 ; #1268 12 68.274 -109.749 68.283 -109.750 68.256 -109.842 68.227 -109.943 68.180 -110.008 68.197 -109.903 68.245 -109.838 68.272 -109.746 ; #1269 12 67.819 -109.218 67.837 -109.242 67.810 -109.334 ; #1270 12 67.063 -108.271 66.967 -108.219 66.985 -108.116 67.062 -108.266 ; #1271 12 67.023 -107.953 67.041 -107.988 66.985 -108.042 66.899 -108.056 66.946 -107.980 ; #1272 12 67.578 -108.461 67.605 -108.497 67.519 -108.524 67.575 -108.458 ; #1273 12 70.377 -112.355 70.317 -112.262 70.308 -112.115 70.308 -111.983 70.327 -111.869 70.327 -112.001 70.368 -112.195 ; #1274 12 67.498 -108.039 67.528 -108.078 67.490 -108.167 67.393 -108.168 67.411 -108.064 67.496 -108.036 ; #1275 12 67.684 -108.143 67.702 -108.295 67.595 -108.244 67.510 -108.259 67.578 -108.220 67.587 -108.093 67.684 -108.146 ; #1276 12 67.934 -108.512 67.963 -108.551 67.963 -108.691 67.925 -108.781 67.934 -108.652 ; #1277 12 75.951 -121.121 75.961 -121.141 75.951 -121.276 75.875 -121.262 75.841 -121.334 75.752 -121.320 75.786 -121.234 75.820 -121.162 75.875 -121.106 ; #1278 12 67.983 -108.204 68.013 -108.243 67.995 -108.348 67.918 -108.387 67.918 -108.246 ; #1279 12 76.155 -117.893 76.155 -117.950 76.145 -118.085 76.103 -118.169 76.082 -118.284 76.061 -118.384 76.016 -118.436 76.016 -118.579 75.995 -118.693 75.975 -118.793 75.953 -118.905 75.854 -119.171 75.810 -119.224 75.778 -119.328 75.744 -119.415 75.710 -119.514 75.621 -119.489 75.611 -119.314 75.576 -119.103 75.542 -118.880 75.553 -118.760 75.574 -118.648 75.594 -118.548 75.629 -118.475 75.684 -118.430 75.718 -118.344 75.739 -118.243 75.773 -118.156 75.839 -118.132 75.869 -118.053 75.938 -118.034 75.959 -117.920 76.003 -117.868 76.048 -117.814 76.160 -117.897 ; #1280 12 75.108 -116.259 75.129 -116.159 75.086 -116.217 75.076 -116.338 75.021 -116.091 74.981 -115.863 74.991 -115.714 75.034 -115.642 75.147 -115.792 75.113 -115.587 75.123 -115.440 75.168 -115.374 75.068 -115.333 74.981 -115.029 75.021 -114.767 75.055 -114.692 75.066 -114.558 75.100 -114.484 75.155 -114.436 75.267 -114.571 75.278 -114.746 75.333 -114.698 75.244 -114.385 75.265 -114.271 75.320 -114.237 75.375 -114.188 75.487 -114.264 75.398 -113.951 75.409 -113.805 75.430 -113.690 75.430 -113.537 75.409 -113.650 75.377 -113.744 75.367 -113.865 75.333 -113.954 75.278 -114.003 75.223 -114.038 75.202 -113.856 75.168 -113.958 75.147 -114.071 75.068 -113.767 75.079 -113.635 75.079 -113.495 75.089 -113.347 75.120 -113.266 75.110 -113.081 75.120 -112.947 75.141 -112.832 75.230 -112.861 75.275 -112.793 75.241 -112.574 75.165 -112.584 75.131 -112.366 75.141 -112.231 75.141 -112.078 75.163 -111.965 75.197 -111.889 75.175 -111.708 75.175 -111.555 75.210 -111.478 75.275 -111.293 75.265 -111.133 75.210 -111.184 75.165 -111.241 75.131 -111.331 75.120 -111.451 75.066 -111.501 75.066 -111.655 75.011 -111.692 74.991 -111.937 75.011 -112.125 75.000 -112.246 75.000 -112.706 74.991 -112.843 74.981 -112.967 74.972 -113.104 74.943 -113.210 74.912 -113.311 74.902 -113.434 74.861 -113.520 74.852 -113.644 74.852 -113.810 74.833 -113.931 74.823 -114.067 74.804 -114.175 74.785 -114.309 74.766 -114.417 74.737 -114.522 74.706 -114.609 74.603 -114.340 74.533 -114.085 74.483 -113.849 74.464 -113.679 74.454 -113.523 74.445 -113.368 74.445 -112.899 74.454 -112.763 74.454 -112.611 74.464 -112.475 74.483 -112.367 74.492 -112.217 74.512 -112.110 74.521 -111.986 74.531 -111.849 74.560 -111.731 74.579 -111.623 74.589 -111.487 74.617 -111.381 74.627 -111.243 74.665 -111.028 74.696 -110.938 74.715 -110.817 74.797 -110.810 74.797 -110.657 74.816 -110.535 74.856 -110.448 74.847 -110.293 74.856 -110.142 74.856 -110.129 74.875 -110.007 74.866 -109.839 74.866 -109.686 74.897 -109.597 74.957 -109.386 74.976 -109.276 74.986 -109.152 75.005 -109.045 75.060 -108.979 75.060 -108.839 74.986 -108.846 74.967 -108.675 74.928 -108.461 74.928 -108.307 74.938 -108.170 74.967 -108.063 75.008 -107.977 75.042 -107.873 75.097 -107.891 74.986 -107.803 74.935 -107.583 74.935 -107.430 74.916 -107.260 74.926 -107.121 74.945 -107.012 74.976 -106.908 75.005 -106.788 75.005 -106.636 75.016 -106.515 75.016 -106.361 75.037 -106.246 75.047 -106.125 75.137 -106.131 75.147 -106.008 75.259 -106.057 75.304 -105.984 75.325 -105.867 75.369 -105.805 75.446 -105.789 75.545 -105.826 75.556 -105.691 75.621 -105.666 75.655 -105.586 75.880 -105.709 75.993 -105.970 76.037 -106.206 76.037 -106.219 76.058 -106.401 76.079 -106.595 76.068 -106.717 76.068 -106.873 76.037 -106.971 76.003 -107.065 75.959 -107.125 75.869 -107.117 75.825 -106.881 75.814 -107.017 75.770 -107.078 75.704 -107.100 75.817 -107.249 75.906 -107.270 75.927 -107.464 75.927 -107.762 75.906 -107.866 75.896 -107.990 75.841 -108.055 75.810 -108.153 75.898 -108.175 75.932 -108.096 75.998 -107.906 76.087 -108.227 76.077 -108.362 76.077 -108.687 76.155 -108.678 76.210 -108.624 76.231 -108.521 76.241 -108.383 76.310 -108.355 76.422 -108.592 76.443 -108.788 76.487 -108.773 76.600 -108.884 76.677 -108.872 76.710 -108.777 76.833 -108.983 76.854 -109.179 76.854 -109.482 76.833 -109.600 76.789 -109.673 76.768 -109.790 76.723 -109.851 76.658 -109.883 76.624 -109.975 76.593 -110.073 76.524 -110.101 76.514 -110.224 76.514 -110.294 76.493 -110.398 76.472 -110.529 76.472 -110.672 76.396 -110.671 76.273 -110.324 76.262 -110.291 76.273 -110.142 76.229 -109.902 76.152 -109.615 76.108 -109.675 76.042 -109.708 76.022 -109.824 75.990 -109.907 75.979 -110.043 75.969 -110.166 75.948 -110.282 75.914 -110.258 75.904 -110.095 75.914 -109.973 75.839 -109.663 75.804 -109.444 75.729 -109.161 75.629 -109.117 75.594 -109.195 75.519 -109.209 75.553 -109.428 75.553 -109.710 75.574 -109.903 75.574 -110.538 75.608 -110.757 75.597 -110.891 75.608 -111.053 75.587 -111.181 75.566 -111.296 75.566 -111.437 75.678 -111.637 75.744 -111.620 75.867 -111.868 75.867 -111.712 75.877 -111.887 75.877 -112.042 75.867 -112.178 75.877 -112.353 75.857 -112.455 75.912 -112.405 75.932 -112.290 75.932 -112.147 75.953 -112.018 76.053 -112.365 76.074 -112.547 76.186 -112.804 76.262 -113.093 76.307 -113.336 76.296 -113.458 76.307 -113.649 76.286 -113.765 76.276 -113.900 76.255 -114.016 76.255 -114.159 76.244 -114.294 76.357 -114.431 76.433 -114.424 76.545 -114.758 76.545 -115.072 76.567 -115.271 76.532 -115.361 76.532 -115.517 76.511 -115.618 76.511 -115.775 76.490 -115.891 76.469 -115.993 76.435 -116.095 76.414 -116.210 76.349 -116.236 76.294 -115.984 76.294 -115.658 76.273 -115.461 76.231 -115.209 76.231 -115.054 76.210 -115.167 76.221 -115.345 76.241 -115.528 76.241 -115.684 76.252 -115.862 76.252 -116.317 76.262 -116.480 76.252 -116.617 76.231 -116.744 76.210 -116.858 76.178 -116.965 76.134 -117.019 76.035 -116.977 75.990 -117.030 75.935 -116.778 75.935 -116.636 75.924 -116.460 75.924 -116.318 75.946 -116.192 75.956 -116.056 75.946 -115.880 75.946 -115.427 75.956 -115.292 75.967 -115.157 75.922 -115.239 75.922 -115.395 75.912 -115.528 75.901 -115.677 75.901 -115.831 75.912 -115.995 75.891 -116.109 75.880 -116.230 75.869 -116.378 75.869 -116.972 75.859 -117.108 75.839 -117.208 75.807 -117.314 75.762 -117.380 75.718 -117.447 75.673 -117.513 75.631 -117.289 75.631 -116.979 75.621 -116.803 75.621 -116.648 75.631 -116.515 75.631 -116.373 75.663 -116.280 75.673 -116.146 75.684 -116.025 75.704 -115.897 75.715 -115.777 75.715 -115.636 75.736 -115.478 75.757 -115.364 75.692 -115.547 75.657 -115.634 75.647 -115.768 75.637 -115.916 75.603 -116.004 75.582 -116.118 75.548 -116.192 75.537 -116.326 75.537 -117.384 75.516 -117.497 75.495 -117.610 75.464 -117.703 75.419 -117.769 75.365 -117.814 75.320 -117.879 75.230 -117.562 75.210 -117.367 75.199 -117.192 75.178 -116.998 75.178 -116.858 75.223 -116.792 75.233 -116.657 75.254 -116.545 75.165 -116.525 75.155 -116.351 ; #1281 12 68.603 -104.822 68.612 -104.858 68.612 -105.117 68.547 -105.173 68.461 -104.921 68.432 -104.755 68.441 -104.637 68.506 -104.579 68.603 -104.819 ; #1282 12 68.797 -101.826 68.816 -101.850 68.833 -102.002 68.843 -102.155 68.786 -102.213 68.757 -102.305 68.671 -102.326 68.644 -102.163 68.605 -101.985 68.682 -101.940 68.700 -101.821 68.797 -101.830 ; #1283 12 76.750 -114.365 76.760 -114.242 76.770 -114.104 76.760 -113.928 76.805 -113.857 76.883 -113.840 76.938 -114.106 76.938 -114.408 76.928 -114.560 76.928 -114.718 76.917 -114.854 76.906 -114.991 76.873 -115.082 76.807 -115.109 76.797 -114.930 76.786 -114.753 76.776 -114.561 76.755 -114.376 ; #1284 12 69.224 -101.637 69.232 -101.661 69.176 -101.720 69.120 -101.791 69.138 -101.671 ; #1285 12 75.906 -111.816 75.917 -111.823 75.906 -111.945 75.875 -112.053 75.885 -111.918 ; #1286 12 73.607 -107.844 73.657 -107.935 73.657 -108.073 73.575 -108.096 73.585 -107.961 73.604 -107.840 ; #1287 12 69.020 -100.448 69.057 -100.545 69.057 -100.675 68.971 -100.697 68.913 -100.766 68.806 -100.684 68.759 -100.484 68.806 -100.413 68.836 -100.308 68.921 -100.284 69.018 -100.442 ; #1288 12 77.179 -113.667 77.179 -113.680 77.134 -113.736 ; #1289 12 69.523 -101.159 69.553 -101.184 69.600 -101.387 69.523 -101.420 69.426 -101.309 69.444 -101.189 69.521 -101.156 ; #1290 12 62.429 -92.582 62.457 -92.599 62.421 -92.694 ; #1291 12 77.975 -110.327 77.986 -110.188 78.007 -110.053 78.038 -109.954 78.082 -109.893 78.148 -110.181 78.148 -110.445 78.158 -110.626 78.148 -110.795 78.148 -110.943 78.137 -111.068 78.103 -111.162 78.137 -111.391 78.127 -111.531 78.117 -111.657 78.106 -111.811 78.085 -111.931 78.075 -112.072 78.075 -112.367 78.054 -112.498 78.054 -112.645 78.044 -112.786 78.033 -112.925 77.989 -113.159 77.967 -113.263 77.967 -113.424 77.957 -113.550 77.912 -113.608 77.857 -113.658 77.734 -113.560 77.655 -113.563 77.533 -113.293 77.512 -113.092 77.522 -112.952 77.399 -112.626 77.389 -112.432 77.399 -112.308 77.409 -112.169 77.420 -112.030 77.441 -111.912 77.452 -111.774 77.472 -111.655 77.472 -111.510 77.462 -111.329 77.472 -111.190 77.507 -111.084 77.507 -110.911 77.527 -110.792 77.548 -110.673 77.570 -110.542 77.600 -110.442 77.669 -110.414 77.758 -110.441 77.823 -110.713 77.813 -110.881 77.813 -111.028 77.926 -111.101 77.926 -110.927 77.936 -110.800 77.946 -110.660 77.946 -110.486 77.967 -110.367 77.967 -110.326 ; #1292 12 68.477 -96.667 68.495 -96.559 68.504 -96.430 68.552 -96.345 68.590 -96.261 68.628 -96.166 68.637 -96.048 68.694 -95.974 68.759 -95.910 68.768 -95.780 68.739 -95.603 68.777 -95.519 68.804 -95.410 68.863 -95.350 68.910 -95.536 68.872 -95.632 68.843 -95.727 68.890 -95.925 68.987 -95.966 69.083 -96.057 69.180 -96.110 69.190 -96.264 69.083 -96.266 69.190 -96.330 69.257 -96.281 69.354 -96.411 69.431 -96.634 69.449 -96.786 69.496 -96.974 69.593 -97.183 69.690 -97.354 69.643 -97.439 69.740 -97.521 69.787 -97.710 69.873 -97.947 69.873 -98.090 69.814 -98.160 69.796 -98.269 69.749 -98.367 69.672 -98.403 69.607 -98.465 69.501 -98.243 69.566 -98.466 69.584 -98.620 69.537 -98.692 69.440 -98.703 69.343 -98.491 69.304 -98.586 69.287 -98.695 69.269 -98.814 69.192 -98.862 69.183 -98.981 69.156 -99.078 69.156 -99.208 69.165 -99.362 69.147 -99.481 69.147 -99.611 69.090 -99.671 68.993 -99.614 68.888 -99.432 68.869 -99.268 68.946 -99.233 68.964 -99.125 68.955 -98.973 68.878 -99.008 68.822 -98.809 68.775 -98.609 68.811 -98.524 68.869 -98.453 68.772 -98.410 68.714 -98.210 68.705 -98.057 68.687 -97.906 68.581 -97.675 68.581 -97.546 68.552 -97.382 68.552 -97.240 68.570 -97.132 68.533 -96.959 68.504 -96.784 68.475 -96.674 ; #1293 12 67.760 -97.487 67.769 -97.498 67.731 -97.592 67.665 -97.641 67.692 -97.546 ; #1294 12 70.686 -100.598 70.686 -100.690 70.658 -100.795 70.555 -100.715 70.514 -100.512 70.504 -100.367 70.616 -100.513 70.616 -100.368 ; #1295 12 78.371 -110.304 78.350 -110.088 78.350 -109.926 78.360 -109.784 78.381 -109.679 78.446 -109.643 78.491 -109.583 78.604 -109.744 78.638 -109.958 78.727 -110.281 78.761 -110.512 78.795 -110.728 78.784 -110.870 78.784 -111.032 78.764 -111.140 78.753 -111.281 78.743 -111.423 78.709 -111.532 78.688 -111.653 78.643 -111.726 78.633 -111.855 78.611 -111.974 78.601 -112.117 78.601 -112.455 78.591 -112.609 78.570 -112.730 78.559 -112.870 78.549 -112.998 78.504 -113.232 78.493 -113.387 78.460 -113.481 78.418 -113.571 78.350 -113.274 78.371 -113.154 78.391 -113.034 78.402 -112.894 78.412 -112.752 78.412 -112.604 78.423 -112.464 78.402 -112.261 78.337 -111.982 78.326 -111.800 78.381 -111.762 78.381 -111.600 78.436 -111.548 78.426 -111.365 78.360 -111.087 78.350 -110.892 78.339 -110.709 78.360 -110.589 78.371 -110.434 78.381 -110.325 ; #1296 12 67.848 -96.199 67.878 -96.221 67.830 -96.305 ; #1297 12 67.278 -95.464 67.296 -95.485 67.239 -95.546 ; #1298 12 68.254 -96.463 68.292 -96.520 68.234 -96.580 68.252 -96.460 ; #1299 12 53.225 -81.227 53.241 -81.283 53.250 -81.410 53.266 -81.533 53.257 -81.649 53.250 -81.755 53.233 -81.855 53.225 -81.971 53.191 -82.058 53.140 -82.144 53.045 -82.150 52.994 -82.003 52.978 -81.880 52.936 -81.739 52.909 -81.599 52.902 -81.482 52.859 -81.330 52.808 -81.183 52.792 -81.061 52.768 -80.933 52.784 -80.823 52.879 -80.859 52.966 -80.910 53.053 -80.992 53.140 -81.107 53.235 -81.229 ; #1300 12 75.074 -103.900 75.108 -103.807 75.152 -103.718 75.265 -103.848 75.388 -104.026 75.453 -104.296 75.453 -104.308 75.443 -104.416 75.443 -104.557 75.409 -104.663 75.377 -104.762 75.333 -104.836 75.267 -104.860 75.212 -104.903 75.178 -104.983 75.055 -104.668 75.034 -104.476 75.024 -104.306 75.045 -104.202 75.055 -104.067 75.076 -103.938 75.076 -103.912 ; #1301 12 69.562 -96.234 69.580 -96.255 69.553 -96.366 69.580 -96.542 69.580 -96.672 69.588 -96.825 69.491 -96.644 69.395 -96.384 69.395 -96.254 69.463 -96.205 69.560 -96.231 ; #1302 12 52.137 -79.437 52.145 -79.497 52.103 -79.588 52.068 -79.674 52.052 -79.784 51.957 -79.750 51.983 -79.657 51.983 -79.547 52.042 -79.466 52.137 -79.434 ; #1303 12 69.582 -95.580 69.629 -95.728 69.638 -95.882 69.620 -95.991 69.555 -96.056 69.487 -96.105 69.390 -95.988 69.446 -95.913 69.553 -95.937 69.543 -95.784 69.446 -95.770 69.341 -95.719 69.370 -95.611 69.397 -95.513 69.483 -95.485 69.580 -95.578 ; #1304 12 53.207 -80.002 53.215 -80.038 53.120 -80.050 53.207 -79.999 ; #1305 12 76.121 -104.631 76.111 -104.487 76.100 -104.311 76.066 -104.095 76.077 -103.971 76.077 -103.517 76.097 -103.398 76.108 -103.249 76.119 -103.125 76.129 -102.987 76.163 -102.904 76.207 -102.814 76.331 -102.920 76.341 -102.952 76.351 -103.126 76.351 -103.269 76.341 -103.408 76.320 -103.539 76.320 -103.696 76.310 -103.834 76.299 -103.958 76.288 -104.095 76.278 -104.233 76.268 -104.357 76.268 -104.513 76.258 -104.578 76.215 -104.645 76.126 -104.640 ; #1306 12 76.111 -102.577 76.131 -102.726 76.121 -102.863 76.111 -103.001 76.100 -103.137 76.090 -103.289 76.068 -103.407 76.058 -103.545 76.037 -103.662 76.016 -103.781 76.016 -103.937 75.995 -104.055 75.940 -104.099 75.940 -103.814 75.951 -103.678 75.951 -103.523 75.972 -103.417 75.982 -103.279 75.993 -103.130 76.003 -102.980 76.024 -102.874 76.035 -102.751 76.045 -102.613 76.111 -102.573 ; #1307 12 75.906 -103.535 75.917 -103.723 75.906 -103.859 75.906 -104.001 75.862 -103.781 75.883 -103.663 75.893 -103.540 75.904 -103.530 ; #1308 12 75.975 -102.207 76.008 -102.293 76.019 -102.455 76.008 -102.591 75.998 -102.715 75.987 -102.865 75.977 -102.990 75.956 -103.094 75.946 -103.232 75.912 -103.314 75.867 -103.377 75.836 -103.476 75.791 -103.566 75.781 -103.406 75.781 -103.109 75.791 -102.972 75.802 -102.835 75.822 -102.704 75.888 -102.677 75.920 -102.577 75.930 -102.426 75.951 -102.308 75.972 -102.206 ; #1309 12 74.986 -100.067 74.986 -99.913 74.976 -99.759 74.976 -99.606 74.996 -99.495 75.071 -99.467 75.126 -99.420 75.050 -99.432 74.996 -99.189 75.005 -99.064 75.060 -99.003 74.996 -98.755 75.005 -98.616 75.016 -98.468 75.027 -98.333 75.027 -98.193 75.016 -98.035 75.129 -98.155 75.228 -98.167 75.115 -97.952 75.115 -97.786 75.137 -97.668 75.249 -97.911 75.304 -98.157 75.369 -98.125 75.424 -98.063 75.424 -97.909 75.456 -98.116 75.524 -98.077 75.503 -97.901 75.582 -97.877 75.469 -97.633 75.511 -97.561 75.600 -97.556 75.666 -97.524 75.710 -97.767 75.744 -97.966 75.799 -97.904 75.830 -97.801 75.875 -97.734 75.987 -97.841 76.042 -97.792 76.119 -97.778 76.163 -97.697 76.276 -97.875 76.388 -97.969 76.433 -97.901 76.545 -98.221 76.579 -98.423 76.590 -98.585 76.600 -98.458 76.700 -98.787 76.710 -98.962 76.700 -99.101 76.666 -98.885 76.677 -98.760 76.634 -98.831 76.634 -99.132 76.624 -99.271 76.511 -99.146 76.490 -99.268 76.425 -99.312 76.538 -99.436 76.538 -99.580 76.614 -99.868 76.634 -100.048 76.645 -100.224 76.645 -100.237 76.666 -100.431 76.655 -100.583 76.634 -100.690 76.614 -100.811 76.593 -100.932 76.559 -101.042 76.538 -101.163 76.425 -100.978 76.391 -100.775 76.401 -100.636 76.391 -100.462 76.336 -100.223 76.315 -100.213 76.304 -100.222 76.336 -100.420 76.304 -100.535 76.304 -100.691 76.215 -100.380 76.226 -100.256 76.226 -100.212 76.181 -99.979 76.171 -99.792 76.140 -99.880 76.160 -100.072 76.171 -100.204 76.160 -100.328 76.061 -100.196 76.050 -100.204 76.030 -100.182 75.975 -99.945 75.985 -99.792 75.985 -99.766 75.951 -99.864 75.930 -99.970 75.909 -100.089 75.943 -100.191 75.932 -100.315 76.045 -100.453 76.100 -100.718 76.145 -100.639 76.134 -100.777 76.123 -100.901 76.236 -101.040 76.270 -101.270 76.394 -101.389 76.469 -101.680 76.480 -101.842 76.490 -102.003 76.480 -102.155 76.446 -102.238 76.391 -102.298 76.336 -102.357 76.270 -102.383 76.260 -102.209 76.260 -101.896 76.281 -101.621 76.247 -101.717 76.226 -101.824 76.215 -101.961 76.171 -102.069 76.126 -102.133 76.013 -101.892 76.024 -101.755 76.024 -101.613 75.993 -101.713 75.959 -101.795 75.846 -101.529 75.814 -101.320 75.836 -101.202 75.802 -101.284 75.791 -101.421 75.781 -101.558 75.880 -101.887 75.924 -102.133 75.914 -102.257 75.904 -102.380 75.883 -102.500 75.839 -102.576 75.817 -102.397 75.749 -102.433 75.759 -102.593 75.749 -102.717 75.718 -102.830 75.663 -102.875 75.663 -103.016 75.540 -102.826 75.540 -102.672 75.561 -102.554 75.571 -102.404 75.571 -102.263 75.582 -102.114 75.592 -101.990 75.603 -101.840 75.613 -101.705 75.623 -101.581 75.613 -101.396 75.623 -101.272 75.634 -101.135 75.634 -100.994 75.655 -100.874 75.666 -100.751 75.666 -100.442 75.686 -100.336 75.686 -100.168 75.697 -100.032 75.707 -99.908 75.718 -99.771 75.707 -99.597 75.718 -99.461 75.718 -99.306 75.729 -99.170 75.697 -99.284 75.697 -99.580 75.686 -99.717 75.686 -99.859 75.676 -99.982 75.600 -100.020 75.579 -100.139 75.579 -100.152 75.568 -100.160 75.568 -100.006 75.558 -100.156 75.558 -100.169 75.548 -100.305 75.537 -100.441 75.527 -100.257 75.527 -100.162 75.505 -100.151 75.505 -100.305 75.495 -100.456 75.495 -100.301 75.474 -100.420 75.474 -100.574 75.464 -100.697 75.464 -100.851 75.419 -100.621 75.388 -100.721 75.388 -100.862 75.322 -100.582 75.333 -100.446 75.299 -100.541 75.278 -100.366 75.267 -100.180 75.267 -100.141 75.257 -100.136 75.257 -100.584 75.226 -100.685 75.113 -100.505 75.000 -100.161 75.000 -100.092 ; #1310 12 77.166 -105.109 77.187 -104.975 77.187 -104.830 77.221 -104.734 77.276 -104.676 77.389 -104.842 77.464 -105.140 77.454 -105.268 77.530 -105.262 77.643 -105.444 77.755 -105.783 77.800 -105.967 77.810 -106.147 77.810 -106.219 77.789 -106.340 77.677 -106.170 77.598 -106.170 77.475 -105.953 77.362 -105.859 77.239 -105.547 77.218 -105.336 77.163 -105.107 ; #1311 12 74.122 -97.804 74.141 -97.982 74.131 -98.120 74.122 -98.258 74.112 -98.382 74.081 -98.502 74.062 -98.612 74.062 -98.931 74.031 -99.037 74.021 -99.161 73.981 -99.254 73.971 -99.391 73.961 -99.528 73.889 -99.272 73.879 -99.120 73.870 -99.271 73.851 -99.079 73.851 -98.941 73.870 -98.830 73.870 -98.680 73.879 -98.542 73.899 -98.432 73.908 -98.295 73.949 -98.203 73.968 -98.066 74.000 -97.960 74.038 -97.876 74.079 -97.796 74.119 -97.800 ; #1312 12 77.224 -104.388 77.224 -104.560 77.134 -104.569 77.145 -104.430 ; #1313 12 56.238 -80.123 56.265 -80.030 56.300 -79.933 56.333 -79.845 56.388 -79.773 56.466 -79.711 56.556 -79.668 56.485 -79.726 56.423 -79.791 56.406 -79.903 56.371 -79.989 56.371 -80.104 56.363 -80.118 56.303 -80.184 56.240 -80.125 ; #1314 12 75.592 -100.522 75.647 -100.463 75.637 -100.613 75.637 -100.768 75.616 -100.887 75.605 -101.023 75.584 -101.141 75.584 -100.987 75.594 -100.850 75.605 -100.700 75.594 -100.527 ; #1315 12 73.216 -96.954 73.226 -97.089 73.195 -97.194 73.154 -97.287 73.073 -97.321 72.960 -97.137 72.970 -97.014 72.989 -96.879 73.049 -96.814 73.109 -96.762 73.212 -96.945 ; #1316 12 74.359 -98.727 74.359 -98.879 74.318 -98.958 74.318 -98.806 ; #1317 12 56.899 -79.975 56.899 -80.053 56.810 -80.002 56.899 -79.973 ; #1318 12 56.103 -79.129 56.014 -79.136 55.934 -79.188 55.837 -79.212 55.916 -79.149 56.005 -79.119 ; #1319 12 72.187 -95.094 72.177 -95.216 72.158 -95.337 72.098 -95.389 72.037 -95.145 72.046 -95.023 72.056 -94.889 72.056 -94.742 72.065 -94.619 72.046 -94.446 72.027 -94.273 72.098 -94.236 72.067 -94.328 72.127 -94.275 72.199 -94.237 72.249 -94.157 72.299 -94.077 72.350 -94.010 72.369 -93.889 72.400 -93.795 72.460 -93.728 72.520 -93.674 72.623 -93.813 72.735 -93.991 72.745 -94.152 72.764 -94.314 72.764 -94.451 72.793 -94.354 72.803 -94.206 72.803 -94.070 72.812 -93.934 72.803 -93.785 72.831 -93.675 72.831 -93.538 72.812 -93.364 72.793 -93.189 72.774 -93.028 72.764 -92.853 72.755 -92.705 72.735 -92.529 72.755 -92.408 72.774 -92.284 72.824 -92.215 72.855 -92.108 72.893 -92.010 72.996 -91.850 73.059 -91.797 73.109 -91.715 73.169 -91.644 73.210 -91.563 73.248 -91.750 73.257 -91.601 73.276 -91.477 73.327 -91.395 73.377 -91.325 73.418 -91.242 73.468 -91.160 73.559 -91.131 73.559 -90.968 73.588 -90.869 73.638 -90.798 73.678 -90.702 73.729 -90.619 73.779 -90.535 73.860 -90.505 73.860 -90.367 73.911 -90.573 73.940 -90.762 73.959 -90.926 73.978 -91.103 73.997 -91.280 73.997 -91.569 74.006 -91.720 74.006 -91.871 73.997 -92.010 73.978 -92.135 73.947 -92.231 73.937 -92.381 74.040 -92.535 74.090 -92.742 74.071 -92.826 74.122 -93.045 74.131 -93.197 74.150 -93.362 74.150 -93.681 74.141 -93.820 74.059 -93.858 74.119 -94.093 74.119 -94.243 74.109 -94.368 74.100 -94.507 74.081 -94.632 74.071 -94.756 74.062 -94.894 74.031 -95.003 74.011 -95.140 74.002 -95.291 73.982 -95.415 73.913 -95.456 73.851 -95.205 73.748 -95.141 73.678 -94.906 73.648 -95.001 73.678 -95.195 73.760 -95.446 73.770 -95.598 73.739 -95.718 73.698 -95.799 73.638 -95.852 73.535 -95.775 73.466 -95.828 73.363 -95.764 73.260 -95.742 73.147 -95.677 73.128 -95.800 72.934 -95.816 72.853 -95.840 72.750 -95.763 72.637 -95.500 72.534 -95.358 72.462 -95.395 72.350 -95.319 72.269 -95.344 72.166 -95.322 72.166 -95.187 72.175 -95.052 72.175 -94.917 72.166 -95.052 ; #1320 12 56.452 -78.787 56.479 -78.843 56.425 -78.915 56.328 -78.939 56.248 -79.002 56.159 -79.033 56.175 -78.931 56.211 -78.845 56.263 -78.772 56.361 -78.771 56.450 -78.785 ; #1321 12 78.538 -105.330 78.426 -105.119 78.313 -104.760 78.302 -104.579 78.292 -104.399 78.292 -104.207 78.334 -104.123 78.355 -103.985 78.365 -103.830 78.376 -103.702 78.386 -103.573 78.408 -103.437 78.408 -103.275 78.418 -103.146 78.408 -102.966 78.363 -103.045 78.298 -102.764 78.308 -102.621 78.318 -102.466 78.318 -102.318 78.308 -102.151 78.298 -101.970 78.287 -101.790 78.232 -101.529 78.243 -101.387 78.130 -101.068 78.085 -101.134 77.972 -100.973 77.873 -100.635 77.873 -100.475 77.852 -100.320 77.852 -100.160 77.863 -100.019 77.863 -99.859 77.873 -99.704 77.894 -99.594 77.915 -99.457 77.936 -99.333 78.025 -99.316 78.080 -99.266 78.203 -99.543 78.316 -99.802 78.326 -99.981 78.449 -100.054 78.504 -99.977 78.546 -99.905 78.591 -99.836 78.656 -100.130 78.646 -100.259 78.680 -100.248 78.711 -100.156 78.756 -100.236 78.776 -100.422 78.831 -100.698 78.811 -100.823 78.811 -100.987 78.790 -101.111 78.821 -101.317 78.900 -101.298 78.931 -101.206 78.965 -101.418 79.054 -101.743 79.085 -101.951 79.085 -102.100 79.065 -102.212 79.044 -102.337 79.044 -102.469 79.023 -102.580 78.947 -102.588 78.926 -102.713 78.894 -102.804 79.007 -102.880 79.062 -102.819 79.185 -103.093 79.298 -103.345 79.308 -103.542 79.329 -103.733 79.363 -103.960 79.374 -104.131 79.363 -104.289 79.353 -104.420 79.353 -104.598 79.331 -104.736 79.331 -104.900 79.321 -105.045 79.311 -105.203 79.311 -105.353 79.331 -105.557 79.276 -105.615 79.256 -105.726 79.201 -105.771 79.136 -105.811 79.046 -105.463 79.046 -105.313 79.067 -105.204 79.057 -105.020 78.968 -105.016 78.923 -105.094 78.889 -105.193 78.847 -105.264 78.837 -105.094 78.857 -104.984 78.879 -104.862 78.913 -104.777 78.957 -104.698 78.989 -104.593 79.010 -104.469 78.999 -104.286 78.886 -104.206 78.855 -104.325 78.834 -104.448 78.792 -104.325 78.802 -104.182 78.834 -104.077 78.802 -103.856 78.824 -103.719 78.747 -103.740 78.703 -103.833 78.703 -104.145 78.682 -104.255 78.661 -104.052 78.661 -103.741 78.573 -103.725 78.538 -103.810 78.559 -104.025 78.559 -104.173 78.570 -104.342 78.591 -104.529 78.611 -104.729 78.611 -105.040 78.591 -105.177 78.556 -105.274 78.536 -105.322 ; #1322 12 76.773 -100.579 76.784 -100.540 76.805 -100.748 76.805 -101.063 76.784 -101.171 76.762 -101.290 76.732 -101.379 76.710 -101.499 76.700 -101.625 76.689 -101.763 76.614 -101.801 76.614 -101.643 76.624 -101.503 76.645 -101.371 76.666 -101.237 76.687 -101.103 76.707 -100.969 76.729 -100.849 76.750 -100.715 76.770 -100.581 ; #1323 12 57.569 -79.902 57.560 -79.839 57.658 -79.882 ; #1324 12 69.735 -91.619 69.774 -91.547 69.879 -91.567 69.844 -91.668 69.737 -91.621 ; #1325 12 69.638 -91.063 69.620 -91.184 69.611 -91.032 ; #1326 12 68.757 -90.121 68.747 -89.969 68.844 -89.976 68.844 -90.105 68.836 -90.120 68.818 -90.124 68.761 -90.123 ; #1327 12 69.435 -90.296 69.465 -90.317 69.446 -90.426 69.420 -90.539 69.352 -90.615 69.276 -90.387 69.352 -90.343 69.438 -90.298 ; #1328 12 78.313 -103.180 78.324 -103.227 78.302 -103.336 78.282 -103.459 78.169 -103.413 78.203 -103.301 78.224 -103.178 ; #1329 12 77.941 -101.961 77.952 -102.141 77.952 -102.475 77.941 -102.602 77.931 -102.745 77.899 -102.834 77.787 -102.701 77.753 -102.493 77.742 -102.313 77.732 -102.148 77.753 -102.026 77.763 -101.899 77.773 -101.757 77.784 -101.603 77.773 -101.437 77.784 -101.297 77.897 -101.571 77.917 -101.755 77.938 -101.953 ; #1330 12 76.773 -100.273 76.773 -100.217 76.762 -100.054 76.721 -99.824 76.762 -99.739 76.797 -99.943 76.797 -100.113 76.807 -100.289 76.786 -100.280 76.776 -100.275 ; #1331 12 59.799 -80.075 59.807 -80.072 59.905 -80.083 59.905 -80.094 59.872 -80.185 59.774 -80.184 59.801 -80.077 ; #1332 12 63.047 -82.747 63.065 -82.763 63.011 -82.835 63.045 -82.745 ; #1333 12 78.279 -101.968 78.247 -102.071 78.214 -102.172 78.203 -101.991 ; #1334 12 75.657 -95.035 75.647 -95.159 75.626 -95.293 75.616 -95.418 75.582 -95.516 75.582 -95.658 75.561 -95.778 75.540 -95.884 75.505 -95.969 75.417 -95.978 75.438 -96.153 75.427 -96.289 75.417 -96.132 75.406 -95.960 75.375 -96.062 75.354 -96.169 75.333 -96.289 75.322 -96.130 75.288 -96.215 75.254 -96.300 75.244 -96.436 75.199 -96.503 75.168 -96.593 75.123 -96.673 75.034 -96.666 75.024 -96.509 74.972 -96.289 75.024 -96.229 74.919 -96.155 74.849 -95.916 74.840 -95.749 74.830 -95.595 74.821 -95.443 74.780 -95.232 74.720 -94.995 74.660 -94.758 74.660 -94.618 74.669 -94.491 74.669 -94.339 74.679 -94.200 74.669 -94.047 74.679 -93.909 74.679 -93.756 74.711 -93.647 74.833 -93.538 74.914 -93.511 75.019 -93.566 75.131 -93.593 75.254 -93.692 75.367 -93.817 75.456 -94.102 75.579 -94.400 75.655 -94.678 75.655 -94.820 75.676 -94.995 75.676 -95.065 ; #1335 12 74.655 -95.731 74.636 -95.843 74.567 -95.898 74.536 -95.701 74.516 -95.534 74.526 -95.395 74.629 -95.554 74.658 -95.734 ; #1336 12 66.027 -85.010 66.035 -85.107 66.053 -85.251 65.948 -85.251 65.851 -85.236 65.754 -85.158 65.677 -84.953 65.580 -84.780 65.627 -84.704 65.724 -84.720 65.830 -84.818 65.927 -84.918 66.024 -85.008 ; #1337 12 75.623 -96.180 75.644 -96.356 75.676 -96.563 75.611 -96.597 75.589 -96.729 75.579 -96.880 75.558 -96.987 75.537 -97.105 75.482 -97.155 75.369 -96.981 75.391 -96.876 75.411 -96.756 75.456 -96.688 75.545 -96.682 75.576 -96.593 75.487 -96.291 75.519 -96.188 75.553 -96.077 75.618 -96.172 ; #1338 12 68.197 -86.564 68.294 -86.631 68.342 -86.823 68.294 -86.900 68.247 -86.990 68.170 -87.035 68.094 -87.092 67.997 -86.987 67.950 -87.076 67.853 -87.007 67.776 -86.796 67.794 -86.687 67.841 -86.597 67.909 -86.531 68.006 -86.507 68.103 -86.549 68.200 -86.567 ; #1339 12 66.047 -84.040 66.094 -84.162 66.112 -84.306 66.159 -84.481 66.121 -84.567 66.024 -84.479 65.977 -84.293 65.880 -84.228 65.774 -84.168 65.774 -83.781 65.697 -83.839 65.688 -83.694 65.679 -83.559 65.650 -83.404 65.756 -83.428 65.756 -83.553 65.794 -83.728 65.841 -83.902 65.880 -83.805 65.977 -83.843 66.042 -84.035 ; #1340 12 61.725 -80.115 61.708 -80.077 61.607 -79.903 61.661 -79.820 61.717 -79.749 61.809 -79.711 61.871 -79.647 61.934 -79.582 62.083 -79.451 62.165 -79.403 62.257 -79.390 62.350 -79.495 62.443 -79.660 62.434 -79.773 62.434 -80.026 62.397 -80.114 62.363 -80.168 62.289 -80.233 62.244 -80.314 62.171 -80.380 62.078 -80.403 61.977 -80.408 61.885 -80.398 61.792 -80.292 61.730 -80.116 ; #1341 12 71.488 -90.164 71.385 -90.056 71.354 -89.882 71.345 -89.737 71.325 -89.578 71.316 -89.433 71.325 -89.299 71.306 -89.141 71.297 -88.983 71.277 -88.812 71.277 -88.667 71.268 -88.522 71.268 -88.376 71.258 -88.218 71.299 -88.135 71.299 -87.989 71.196 -87.941 71.136 -87.733 71.086 -87.537 71.055 -87.352 71.045 -87.207 71.045 -87.340 71.036 -87.474 70.985 -87.544 70.995 -87.689 70.995 -87.834 70.985 -87.968 70.976 -88.088 70.976 -88.233 70.985 -88.379 71.067 -88.627 71.098 -88.799 71.088 -88.921 71.088 -89.066 71.079 -89.199 71.079 -89.345 71.129 -89.542 71.129 -89.687 71.026 -89.439 70.964 -89.505 70.882 -89.546 70.770 -89.338 70.667 -89.143 70.564 -89.026 70.482 -88.766 70.473 -88.623 70.454 -88.467 70.425 -88.287 70.375 -88.092 70.365 -88.212 70.375 -88.368 70.334 -88.185 70.274 -87.967 70.284 -87.847 70.315 -87.741 70.334 -87.897 70.354 -87.789 70.363 -87.657 70.344 -87.489 70.334 -87.345 70.325 -87.202 70.344 -87.093 70.425 -87.326 70.476 -87.256 70.504 -87.147 70.423 -86.915 70.392 -87.008 70.363 -86.841 70.413 -86.758 70.463 -86.676 70.482 -86.567 70.514 -86.473 70.463 -86.556 70.444 -86.664 70.341 -86.683 70.238 -86.593 70.135 -86.363 70.085 -86.170 70.035 -85.966 70.025 -85.917 70.025 -85.761 70.035 -85.630 70.025 -85.529 70.016 -85.387 70.025 -85.359 70.075 -85.550 70.095 -85.718 70.085 -85.850 70.126 -85.767 70.126 -85.492 70.116 -85.337 70.097 -85.051 70.138 -84.956 70.025 -84.769 70.025 -84.534 70.006 -84.367 70.006 -84.224 69.988 -83.941 69.979 -83.787 69.988 -83.653 69.997 -83.533 70.028 -83.425 70.028 -83.149 69.970 -82.954 69.940 -82.779 69.875 -82.579 69.893 -82.454 69.816 -82.242 69.882 -82.180 69.882 -82.025 69.911 -81.924 69.958 -81.831 69.995 -82.012 70.025 -82.071 70.116 -82.322 70.167 -82.512 70.195 -82.690 70.236 -82.869 70.296 -83.071 70.267 -82.893 70.226 -82.713 70.195 -82.533 70.167 -82.368 70.126 -82.177 70.023 -81.925 69.983 -81.738 69.945 -81.566 69.859 -81.321 69.774 -81.101 69.764 -80.961 69.861 -80.997 69.958 -81.242 70.025 -81.326 70.045 -81.493 70.025 -81.534 70.025 -81.546 70.085 -81.759 70.135 -81.686 70.116 -81.521 70.116 -81.377 70.107 -81.221 70.088 -81.056 70.078 -80.914 70.069 -80.759 70.069 -80.628 70.028 -80.505 70.028 -80.242 69.970 -80.116 70.009 -80.012 69.902 -79.862 69.884 -79.701 69.913 -79.600 69.913 -79.194 69.923 -79.060 69.913 -78.919 69.949 -78.812 70.028 -78.779 70.130 -78.855 70.243 -78.929 70.346 -79.070 70.355 -79.225 70.346 -79.346 70.406 -79.546 70.425 -79.712 70.485 -79.636 70.526 -79.550 70.454 -79.325 70.557 -79.297 70.597 -79.211 70.710 -79.222 70.660 -79.032 70.610 -79.108 70.581 -79.232 70.468 -79.064 70.478 -78.930 70.375 -78.778 70.394 -78.667 70.291 -78.563 70.262 -78.387 70.281 -78.277 70.272 -78.122 70.291 -78.012 70.178 -77.822 70.075 -77.799 70.025 -77.807 69.918 -77.786 69.821 -77.765 69.812 -77.624 69.889 -77.558 69.906 -77.445 69.924 -77.319 69.954 -77.217 69.963 -77.084 69.934 -77.197 69.916 -77.323 69.877 -77.416 69.848 -77.256 69.877 -77.141 69.839 -76.960 69.742 -76.916 69.715 -77.020 69.715 -77.151 69.706 -77.284 69.629 -77.066 69.657 -76.962 69.620 -76.795 69.657 -76.688 69.724 -76.624 69.706 -76.463 69.697 -76.311 69.670 -76.428 69.688 -76.576 69.650 -76.681 69.602 -76.765 69.505 -76.605 69.458 -76.404 69.440 -76.256 69.401 -76.075 69.345 -75.891 69.248 -75.745 69.142 -75.745 69.142 -75.887 69.104 -75.979 69.086 -76.104 69.059 -76.207 69.106 -76.396 69.106 -76.538 69.097 -76.659 69.079 -76.771 68.993 -76.817 68.888 -76.713 68.849 -76.805 68.752 -76.788 68.743 -76.626 68.761 -76.514 68.779 -76.390 68.809 -76.289 68.836 -76.174 68.883 -76.090 68.901 -75.954 68.919 -75.842 68.948 -75.729 69.045 -75.720 69.072 -75.616 68.975 -75.420 68.958 -75.273 69.023 -75.206 69.079 -75.130 69.117 -75.037 69.100 -74.878 69.043 -74.966 69.043 -75.095 68.985 -75.182 68.993 -75.060 68.964 -75.162 68.973 -75.028 68.982 -74.907 68.906 -74.963 68.867 -75.068 68.838 -74.911 68.896 -74.825 68.820 -74.893 68.723 -74.713 68.617 -74.573 68.588 -74.404 68.588 -74.262 68.560 -74.107 68.667 -74.145 68.764 -74.339 68.772 -74.207 68.764 -74.069 68.716 -73.882 68.687 -73.996 68.590 -73.904 68.563 -74.020 68.495 -74.085 68.398 -73.982 68.380 -73.824 68.333 -73.791 68.342 -73.775 68.371 -73.674 68.389 -73.550 68.436 -73.453 68.380 -73.530 68.342 -73.622 68.351 -73.502 68.286 -73.312 68.294 -73.180 68.189 -73.156 68.092 -73.090 67.995 -73.113 67.927 -72.922 67.830 -72.782 67.733 -72.805 67.636 -72.653 67.539 -72.627 67.433 -72.541 67.336 -72.378 67.289 -72.462 67.204 -72.511 67.176 -72.626 67.159 -72.737 67.159 -72.864 67.122 -72.969 67.055 -73.046 66.978 -73.103 66.910 -73.167 66.813 -73.054 66.786 -72.903 66.786 -72.638 66.795 -72.520 66.777 -72.364 66.777 -72.238 66.750 -72.075 66.732 -71.932 66.705 -71.769 66.696 -71.635 66.752 -71.547 66.985 -71.376 67.082 -71.464 67.109 -71.361 67.118 -71.230 67.090 -71.067 67.062 -70.914 67.023 -71.006 66.976 -70.837 66.879 -70.788 66.831 -70.619 66.823 -70.473 66.804 -70.330 66.795 -70.196 66.748 -70.027 66.701 -69.847 66.642 -69.657 66.595 -69.742 66.604 -69.612 66.630 -69.509 66.592 -69.614 66.574 -69.736 66.527 -69.833 66.509 -69.667 66.565 -69.590 66.518 -69.463 66.500 -69.559 66.491 -69.678 66.473 -69.536 66.511 -69.457 66.482 -69.382 66.453 -69.495 66.416 -69.600 66.387 -69.713 66.290 -69.754 66.319 -69.917 66.367 -70.085 66.349 -70.195 66.349 -70.333 66.301 -70.417 66.293 -70.536 66.369 -70.729 66.360 -70.847 66.294 -70.926 66.277 -71.036 66.218 -71.110 66.182 -71.216 66.105 -71.273 66.067 -71.365 66.058 -71.494 66.114 -71.483 66.124 -71.365 66.191 -71.300 66.209 -71.442 66.277 -71.365 66.374 -71.375 66.471 -71.415 66.567 -71.490 66.674 -71.673 66.692 -71.828 66.709 -71.971 66.746 -72.130 66.775 -72.294 66.784 -72.441 66.775 -72.572 66.775 -72.825 66.784 -72.960 66.802 -73.115 66.820 -73.258 66.802 -73.380 66.773 -73.480 66.734 -73.571 66.658 -73.638 66.619 -73.730 66.590 -73.841 66.552 -73.932 66.505 -74.015 66.477 -74.127 66.430 -74.209 66.391 -74.300 66.363 -74.411 66.335 -74.523 66.297 -74.613 66.211 -74.672 66.105 -74.474 66.008 -74.309 65.923 -74.105 65.846 -73.897 65.740 -73.800 65.643 -73.750 65.546 -73.684 65.555 -73.817 65.620 -74.002 65.602 -74.122 65.630 -74.272 65.573 -74.357 65.564 -74.474 65.488 -74.540 65.460 -74.651 65.422 -74.741 65.488 -74.938 65.488 -75.063 65.470 -75.182 65.470 -75.293 65.364 -75.267 65.346 -75.375 65.355 -75.520 65.364 -75.664 65.411 -75.833 65.402 -75.961 65.355 -76.041 65.289 -75.855 65.204 -75.640 65.097 -75.504 65.136 -75.403 65.039 -75.450 65.039 -75.574 64.964 -75.642 64.927 -75.538 64.835 -75.468 64.843 -75.600 64.936 -75.718 65.030 -75.765 65.039 -75.638 65.115 -75.584 65.212 -75.723 65.309 -75.938 65.357 -76.107 65.375 -76.261 65.402 -76.411 65.440 -76.571 65.478 -76.743 65.508 -76.896 65.526 -77.050 65.497 -77.147 65.526 -77.300 65.544 -77.352 65.562 -77.494 65.544 -77.613 65.447 -77.510 65.456 -77.643 65.359 -77.599 65.262 -77.530 65.233 -77.627 65.233 -77.764 65.194 -77.863 65.167 -77.973 65.138 -78.070 65.100 -78.157 65.062 -78.257 64.966 -78.277 64.865 -78.269 64.811 -78.345 64.794 -78.465 64.785 -78.322 64.693 -78.313 64.648 -78.295 64.555 -78.140 64.462 -78.020 64.417 -77.844 64.408 -77.713 64.346 -77.522 64.372 -77.411 64.400 -77.312 64.363 -77.144 64.309 -76.973 64.309 -76.839 64.402 -76.909 64.411 -76.793 64.402 -76.651 64.385 -76.512 64.394 -76.385 64.466 -76.325 64.484 -76.206 64.484 -76.082 64.475 -75.940 64.568 -76.032 64.540 -75.872 64.632 -76.002 64.695 -75.934 64.660 -75.768 64.624 -75.601 64.559 -75.421 64.587 -75.321 64.525 -75.144 64.488 -74.988 64.497 -74.861 64.525 -74.762 64.617 -74.732 64.719 -74.745 64.792 -74.943 64.874 -75.139 64.874 -74.880 64.955 -74.826 64.983 -74.715 64.902 -74.780 64.848 -74.857 64.755 -74.730 64.682 -74.543 64.774 -74.499 64.766 -74.368 64.828 -74.298 64.736 -74.253 64.682 -74.330 64.637 -74.167 64.637 -74.291 64.544 -74.234 64.471 -74.295 64.471 -74.172 64.563 -74.127 64.600 -74.035 64.693 -74.104 64.639 -73.934 64.667 -73.822 64.760 -73.853 64.703 -73.681 64.611 -73.650 64.628 -73.530 64.720 -73.511 64.712 -73.368 64.648 -73.437 64.602 -73.534 64.548 -73.623 64.456 -73.533 64.394 -73.357 64.301 -73.278 64.301 -73.155 64.199 -73.069 64.107 -72.945 64.189 -72.891 64.088 -72.817 63.995 -72.837 63.933 -72.662 63.967 -72.556 63.995 -72.456 64.012 -72.348 63.967 -72.433 63.894 -72.494 63.793 -72.533 63.827 -72.439 63.836 -72.323 63.827 -72.182 63.855 -72.071 63.864 -72.201 63.928 -72.132 63.836 -71.984 63.836 -71.850 63.743 -71.713 63.752 -71.598 63.724 -71.452 63.650 -71.526 63.605 -71.611 63.596 -71.737 63.543 -71.816 63.551 -71.957 63.560 -72.086 63.560 -72.209 63.569 -72.338 63.551 -72.201 63.506 -72.042 63.413 -71.988 63.321 -71.877 63.228 -71.679 63.175 -71.513 63.175 -71.416 63.203 -71.317 63.228 -71.205 63.293 -71.136 63.201 -71.168 63.155 -71.265 63.138 -71.372 63.121 -71.225 63.075 -71.066 63.013 -70.894 62.996 -70.747 62.923 -70.555 62.886 -70.403 62.886 -70.282 62.895 -70.229 62.886 -70.101 62.931 -70.004 62.903 -69.860 62.903 -69.739 62.895 -69.611 62.878 -69.719 62.812 -69.787 62.720 -69.703 62.712 -69.575 62.619 -69.501 62.537 -69.315 62.520 -69.180 62.503 -69.045 62.410 -68.866 62.384 -68.713 62.376 -68.574 62.367 -68.446 62.367 -68.325 62.350 -68.180 62.350 -68.059 62.305 -67.891 62.296 -67.764 62.296 -67.643 62.242 -67.480 62.177 -67.299 62.169 -67.172 62.169 -67.040 62.123 -66.873 62.042 -66.690 62.016 -66.550 62.016 -66.418 62.025 -66.304 62.042 -66.186 62.134 -66.292 62.227 -66.385 62.236 -66.260 62.328 -66.223 62.384 -66.398 62.477 -66.446 62.494 -66.580 62.486 -66.706 62.522 -66.601 62.567 -66.732 62.660 -66.732 62.752 -66.848 62.778 -66.990 62.815 -67.139 62.843 -67.294 62.935 -67.329 62.953 -67.464 63.054 -67.543 63.118 -67.726 63.090 -67.826 63.144 -67.747 63.172 -67.902 63.099 -67.978 63.192 -67.965 63.209 -67.845 63.226 -67.992 63.254 -68.136 63.299 -68.305 63.334 -68.454 63.427 -68.505 63.519 -68.675 63.620 -68.838 63.713 -68.994 63.805 -69.091 63.859 -69.012 63.896 -68.906 63.859 -68.755 63.777 -68.566 63.814 -68.473 63.722 -68.389 63.667 -68.223 63.567 -68.061 63.513 -67.896 63.605 -67.946 63.707 -68.038 63.799 -68.062 63.892 -68.147 63.799 -68.013 63.698 -67.851 63.605 -67.729 63.513 -67.575 63.420 -67.417 63.411 -67.288 63.513 -67.258 63.420 -67.210 63.319 -67.142 63.310 -67.124 63.403 -67.074 63.310 -67.002 63.209 -66.972 63.136 -66.793 63.228 -66.910 63.265 -66.805 63.358 -66.843 63.420 -66.913 63.319 -66.775 63.226 -66.727 63.134 -66.610 63.116 -66.464 63.080 -66.390 63.172 -66.439 63.265 -66.533 63.172 -66.354 63.127 -66.186 63.172 -66.099 63.099 -66.176 63.099 -66.043 63.181 -65.983 63.088 -65.972 62.996 -65.879 62.968 -65.736 62.985 -65.627 63.067 -65.567 62.974 -65.486 62.957 -65.606 62.864 -65.573 62.763 -65.496 62.718 -65.341 62.755 -65.235 62.856 -65.227 62.949 -65.334 63.041 -65.452 63.134 -65.522 63.125 -65.383 63.043 -65.199 63.007 -65.038 63.043 -64.943 63.136 -65.013 63.228 -65.095 63.330 -65.160 63.312 -65.269 63.405 -65.362 63.405 -65.240 63.487 -65.179 63.541 -65.354 63.594 -65.272 63.687 -65.320 63.715 -65.219 63.816 -65.344 63.909 -65.487 63.816 -65.307 63.715 -65.170 63.622 -65.063 63.530 -65.030 63.437 -64.949 63.392 -64.781 63.437 -64.755 63.538 -64.869 63.547 -64.741 63.648 -64.758 63.741 -64.828 63.833 -64.801 63.879 -64.958 63.896 -65.105 63.969 -65.113 63.915 -64.963 63.853 -64.781 63.825 -64.626 63.917 -64.830 63.971 -64.737 64.025 -64.778 64.042 -64.925 63.961 -64.986 63.969 -65.115 63.997 -65.125 64.051 -65.043 64.088 -64.936 64.133 -65.094 64.142 -65.235 64.142 -65.370 64.187 -65.281 64.195 -65.411 64.288 -65.471 64.271 -65.581 64.316 -65.492 64.361 -65.587 64.361 -65.711 64.434 -65.644 64.408 -65.488 64.454 -65.400 64.527 -65.332 64.620 -65.320 64.602 -65.443 64.594 -65.571 64.557 -65.615 64.639 -65.554 64.611 -65.656 64.611 -65.780 64.602 -65.908 64.695 -65.946 64.731 -65.850 64.813 -65.789 64.813 -65.913 64.906 -65.875 64.979 -66.056 64.917 -66.132 64.824 -66.083 64.815 -66.212 64.917 -66.216 64.889 -66.330 64.796 -66.381 64.796 -66.404 64.889 -66.393 64.981 -66.367 64.981 -66.491 65.037 -66.673 65.134 -66.802 65.037 -66.858 64.943 -66.891 65.037 -66.955 65.134 -66.975 65.152 -67.115 65.170 -67.005 65.256 -66.953 65.237 -67.062 65.170 -67.130 65.170 -67.266 65.217 -67.169 65.314 -67.153 65.323 -67.285 65.420 -67.343 65.458 -67.500 65.440 -67.609 65.478 -67.506 65.470 -67.361 65.528 -67.286 65.575 -67.302 65.575 -67.427 65.557 -67.548 65.664 -67.604 65.711 -67.519 65.788 -67.709 65.779 -67.838 65.761 -67.948 65.713 -68.033 65.677 -68.139 65.630 -68.224 65.716 -68.160 65.801 -68.107 65.898 -68.065 65.916 -68.205 65.916 -68.343 66.013 -68.388 66.031 -68.540 66.069 -68.436 66.166 -68.581 66.090 -68.389 66.128 -68.296 66.225 -68.368 66.234 -68.501 66.301 -68.686 66.301 -68.812 66.293 -68.942 66.311 -69.084 66.319 -68.965 66.319 -68.839 66.338 -68.717 66.338 -68.591 66.252 -68.391 66.214 -68.221 66.128 -68.284 66.031 -68.178 66.002 -68.016 66.049 -67.931 66.031 -67.790 66.040 -67.660 66.049 -67.542 66.049 -67.417 66.146 -67.426 66.243 -67.620 66.301 -67.795 66.358 -67.970 66.455 -68.003 66.561 -68.117 66.570 -67.999 66.543 -67.837 66.534 -67.830 66.437 -67.700 66.401 -67.543 66.428 -67.428 66.525 -67.637 66.534 -67.506 66.563 -67.405 66.660 -67.600 66.669 -67.734 66.678 -67.880 66.716 -67.775 66.716 -67.648 66.669 -67.481 66.660 -67.347 66.669 -67.216 66.766 -67.322 66.739 -67.173 66.730 -67.153 66.721 -67.019 66.674 -67.105 66.577 -67.061 66.511 -66.867 66.538 -66.764 66.441 -66.744 66.344 -66.762 66.335 -66.629 66.374 -66.535 66.403 -66.421 66.356 -66.507 66.249 -66.331 66.241 -66.197 66.270 -66.096 66.308 -65.991 66.344 -65.895 66.412 -65.813 66.498 -65.758 66.516 -65.735 66.419 -65.780 66.333 -65.847 66.286 -65.934 66.259 -66.037 66.229 -66.138 66.164 -66.210 66.078 -66.126 66.097 -66.016 66.097 -65.753 66.105 -65.623 66.164 -65.546 66.164 -65.420 66.191 -65.305 66.209 -65.182 66.274 -65.110 66.360 -65.055 66.408 -64.956 66.435 -64.841 66.464 -64.738 66.473 -64.619 66.426 -64.707 66.398 -64.822 66.360 -64.929 66.293 -64.999 66.196 -65.057 66.099 -64.978 66.107 -65.122 66.107 -65.247 66.090 -65.358 66.062 -65.474 66.045 -65.584 65.988 -65.674 65.903 -65.729 65.806 -65.699 65.788 -65.547 65.788 -65.422 65.826 -65.328 65.853 -65.214 65.853 -65.088 65.835 -65.210 65.806 -65.311 65.758 -65.409 65.758 -65.535 65.672 -65.339 65.672 -65.214 65.740 -65.132 65.788 -65.046 65.702 -65.113 65.645 -65.191 65.627 -65.302 65.571 -65.392 65.524 -65.330 65.533 -65.200 65.551 -65.091 65.551 -64.954 65.569 -64.844 65.569 -64.719 65.560 -64.837 65.522 -64.942 65.495 -65.045 65.436 -65.121 65.400 -64.968 65.294 -64.942 65.228 -64.765 65.305 -64.702 65.411 -64.715 65.467 -64.625 65.524 -64.546 65.447 -64.608 65.350 -64.628 65.312 -64.472 65.321 -64.344 65.273 -64.442 65.177 -64.375 65.242 -64.303 65.233 -64.160 65.301 -64.090 65.204 -64.110 65.174 -63.962 65.136 -64.056 65.097 -63.889 65.000 -63.766 65.097 -63.719 65.145 -63.632 65.251 -63.592 65.348 -63.560 65.445 -63.614 65.542 -63.752 65.551 -63.623 65.657 -63.819 65.657 -63.682 65.695 -63.588 65.761 -63.766 65.779 -63.906 65.806 -63.802 65.806 -63.665 65.903 -63.668 66.008 -63.776 65.903 -63.603 65.806 -63.478 65.758 -63.315 65.711 -63.216 65.767 -63.136 65.864 -63.175 65.767 -63.110 65.749 -62.958 65.767 -62.847 65.835 -63.039 65.862 -62.923 65.959 -63.038 65.932 -62.880 65.923 -62.747 65.941 -62.624 66.038 -62.628 66.135 -62.817 66.144 -62.950 66.153 -63.082 66.239 -63.175 66.162 -62.987 66.153 -62.842 66.144 -62.698 66.105 -62.542 66.144 -62.447 66.144 -62.309 66.241 -62.421 66.288 -62.585 66.326 -62.741 66.335 -62.886 66.353 -63.027 66.450 -63.142 66.365 -62.948 66.374 -62.817 66.391 -62.693 66.421 -62.591 66.527 -62.737 66.518 -62.856 66.557 -62.749 66.538 -62.608 66.538 -62.596 66.441 -62.381 66.423 -62.241 66.423 -62.103 66.461 -62.007 66.480 -61.883 66.488 -61.764 66.536 -61.939 66.545 -62.073 66.527 -62.185 66.574 -62.096 66.583 -61.965 66.592 -61.846 66.699 -61.977 66.764 -62.168 66.754 -62.298 66.737 -62.411 66.773 -62.313 66.802 -62.209 66.773 -62.048 66.676 -61.859 66.667 -61.725 66.696 -61.622 66.744 -61.533 66.840 -61.622 66.937 -61.825 66.946 -61.970 66.985 -61.863 67.003 -62.004 67.012 -62.150 66.993 -62.262 67.023 -62.158 67.023 -62.020 67.088 -62.199 67.023 -62.285 67.120 -62.301 67.167 -62.466 67.090 -62.532 67.052 -62.640 66.955 -62.639 66.858 -62.561 66.955 -62.701 67.052 -62.803 67.070 -62.944 66.985 -63.002 66.888 -63.036 66.791 -63.084 66.791 -63.158 66.888 -63.098 66.985 -63.076 67.090 -63.111 67.090 -63.238 67.062 -63.342 67.034 -63.447 67.025 -63.578 66.928 -63.599 66.843 -63.657 66.940 -63.662 66.940 -63.789 66.931 -63.908 66.940 -64.054 66.948 -63.935 66.967 -63.811 67.034 -63.792 67.052 -63.668 67.070 -63.544 67.147 -63.479 67.244 -63.523 67.273 -63.407 67.300 -63.302 67.397 -63.253 67.445 -63.432 67.368 -63.508 67.359 -63.628 67.262 -63.676 67.204 -63.756 67.176 -63.873 67.147 -63.988 67.194 -63.888 67.232 -63.792 67.298 -63.706 67.356 -63.893 67.339 -64.006 67.356 -64.148 67.298 -64.240 67.298 -64.378 67.289 -64.498 67.262 -64.603 67.262 -64.743 67.224 -64.850 67.127 -64.896 67.127 -64.947 67.224 -64.938 67.271 -64.839 67.289 -64.714 67.298 -64.595 67.316 -64.482 67.325 -64.362 67.354 -64.247 67.381 -64.408 67.354 -64.513 67.346 -64.646 67.354 -64.781 67.336 -64.904 67.309 -65.021 67.356 -64.921 67.375 -64.809 67.366 -64.663 67.384 -64.538 67.422 -64.697 67.440 -64.852 67.449 -64.987 67.458 -64.867 67.449 -64.719 67.431 -64.426 67.422 -64.279 67.478 -64.198 67.575 -64.290 67.575 -64.430 67.567 -64.562 67.595 -64.447 67.632 -64.337 67.717 -64.331 67.717 -64.458 67.823 -64.522 67.814 -64.655 67.796 -64.768 67.778 -64.893 67.816 -64.785 67.826 -64.665 67.923 -64.769 67.941 -64.912 67.902 -65.009 67.806 -65.056 67.902 -65.137 67.884 -65.262 67.837 -65.362 67.760 -65.425 67.857 -65.405 67.886 -65.302 67.993 -65.263 68.049 -65.182 68.067 -65.057 68.164 -65.252 68.137 -65.358 68.069 -65.442 68.051 -65.566 68.022 -65.682 67.945 -65.746 67.848 -65.676 67.751 -65.594 67.848 -65.762 67.945 -65.794 68.022 -65.730 68.107 -65.931 68.089 -66.045 67.983 -66.044 67.954 -66.159 67.760 -66.250 67.857 -66.282 67.963 -66.244 68.060 -66.264 68.060 -66.276 68.175 -66.118 68.272 -66.176 68.175 -66.207 68.137 -66.303 68.089 -66.391 68.080 -66.512 68.013 -66.594 67.916 -66.613 67.945 -66.751 67.972 -66.902 67.972 -66.774 67.981 -66.653 68.067 -66.587 68.114 -66.499 68.182 -66.686 68.209 -66.568 68.256 -66.750 68.238 -66.874 68.132 -66.885 68.229 -66.918 68.211 -67.043 68.175 -67.140 68.272 -67.083 68.349 -67.021 68.367 -67.165 68.394 -67.329 68.376 -67.443 68.319 -67.535 68.252 -67.605 68.252 -67.746 68.261 -67.613 68.358 -67.568 68.396 -67.473 68.414 -67.347 68.461 -67.517 68.453 -67.651 68.425 -67.768 68.358 -67.838 68.434 -67.776 68.425 -67.909 68.416 -68.030 68.453 -67.921 68.461 -67.800 68.480 -67.687 68.498 -67.561 68.498 -67.432 68.461 -67.271 68.488 -67.154 68.527 -66.929 68.556 -67.095 68.538 -67.209 68.538 -67.338 68.520 -67.464 68.597 -67.660 68.597 -67.801 68.491 -67.822 68.597 -67.876 68.615 -67.763 68.653 -67.938 68.644 -68.059 68.567 -68.120 68.500 -68.190 68.605 -68.154 68.642 -68.315 68.689 -68.499 68.689 -68.640 68.671 -68.765 68.662 -68.887 68.680 -68.773 68.719 -68.937 68.689 -69.052 68.747 -68.951 68.757 -68.830 68.739 -68.672 68.739 -68.543 68.757 -68.429 68.766 -68.295 68.813 -68.479 68.822 -68.629 68.840 -68.786 68.831 -68.908 68.861 -69.063 68.831 -69.179 68.899 -69.369 68.908 -69.507 68.917 -69.385 68.946 -69.553 68.955 -69.420 68.937 -69.274 68.899 -69.097 68.899 -68.944 68.890 -68.794 68.926 -68.696 68.917 -68.558 68.908 -68.421 68.890 -68.276 68.872 -68.118 68.919 -68.289 68.948 -68.445 68.975 -68.611 68.985 -68.489 68.955 -68.334 68.955 -68.204 69.041 -68.410 69.068 -68.575 69.059 -68.697 69.088 -68.581 69.079 -68.444 69.061 -68.285 69.090 -68.181 69.090 -68.039 69.100 -67.917 69.165 -68.105 69.203 -68.281 69.232 -68.437 69.259 -68.604 69.242 -68.730 69.212 -68.846 69.194 -68.972 69.165 -69.076 69.088 -69.137 69.185 -69.149 69.176 -69.271 69.194 -69.145 69.224 -69.029 69.224 -68.898 69.259 -68.789 69.289 -68.957 69.289 -69.036 69.307 -68.909 69.307 -68.767 69.298 -68.617 69.289 -68.478 69.280 -68.328 69.356 -68.539 69.347 -68.673 69.377 -68.830 69.395 -68.977 69.413 -69.135 69.395 -69.262 69.368 -69.368 69.415 -69.280 69.433 -69.153 69.415 -69.007 69.397 -68.848 69.388 -68.710 69.379 -68.559 69.397 -68.433 69.349 -68.260 69.311 -68.096 69.264 -67.924 69.246 -67.765 69.264 -67.651 69.255 -67.501 69.264 -67.379 69.264 -67.236 69.228 -67.074 69.228 -66.932 69.293 -66.859 69.390 -66.968 69.476 -67.174 69.523 -67.357 69.541 -67.504 69.541 -67.634 69.550 -67.786 69.560 -67.925 69.541 -68.039 69.532 -68.173 69.562 -68.330 69.598 -68.493 69.636 -68.658 69.654 -68.818 69.654 -68.960 69.645 -69.083 69.618 -69.201 69.600 -69.328 69.591 -69.451 69.591 -69.593 69.609 -69.753 69.618 -69.892 69.609 -70.015 69.591 -70.153 69.591 -70.189 69.609 -70.194 69.618 -70.059 69.636 -69.945 69.636 -69.814 69.618 -69.654 69.609 -69.503 69.618 -69.380 69.636 -69.254 69.665 -69.126 69.692 -69.007 69.710 -68.868 69.692 -68.708 69.702 -68.586 69.729 -68.468 69.785 -68.374 69.823 -68.265 69.832 -68.143 69.841 -67.995 69.823 -67.848 69.796 -67.693 69.778 -67.546 69.787 -67.411 69.864 -67.348 69.961 -67.394 70.061 -67.540 70.164 -67.666 70.277 -67.909 70.336 -68.100 70.387 -68.293 70.336 -68.388 70.298 -68.494 70.207 -68.534 70.135 -68.607 70.116 -68.720 70.066 -68.786 70.006 -68.857 70.016 -68.998 70.016 -69.142 69.985 -69.257 69.958 -69.375 69.911 -69.464 69.864 -69.564 69.854 -69.699 69.882 -69.854 69.854 -69.973 69.787 -70.054 69.740 -70.142 69.702 -70.199 69.719 -70.203 69.729 -70.199 69.737 -70.195 69.785 -70.108 69.871 -70.043 69.909 -69.935 69.909 -69.791 69.891 -69.631 69.929 -69.534 69.976 -69.435 70.016 -69.341 70.047 -69.241 70.066 -69.171 70.085 -69.059 70.126 -68.955 70.198 -68.896 70.267 -69.109 70.277 -69.263 70.257 -69.375 70.248 -69.497 70.238 -69.644 70.219 -69.769 70.200 -69.894 70.159 -69.984 70.069 -69.928 70.018 -70.021 70.028 -70.174 70.028 -70.186 70.009 -70.298 69.970 -70.393 69.931 -70.501 69.913 -70.628 69.951 -70.532 69.979 -70.413 70.028 -70.330 70.059 -70.218 70.059 -70.193 70.049 -70.039 70.069 -70.011 70.128 -70.203 70.088 -70.305 70.138 -70.213 70.138 -70.200 70.169 -70.088 70.229 -70.017 70.260 -69.917 70.279 -69.792 70.310 -69.680 70.320 -69.558 70.339 -69.433 70.349 -69.311 70.358 -69.175 70.377 -69.039 70.387 -68.916 70.490 -68.887 70.540 -68.794 70.502 -68.611 70.561 -68.525 70.664 -68.654 70.693 -68.827 70.724 -69.004 70.756 -69.168 70.794 -69.339 70.856 -69.559 70.865 -69.701 70.846 -69.827 70.777 -69.890 70.777 -70.034 70.737 -70.138 70.708 -70.225 70.698 -70.372 70.688 -70.507 70.679 -70.643 70.576 -70.537 70.557 -70.650 70.660 -70.691 70.719 -70.607 70.719 -70.462 70.748 -70.359 70.789 -70.256 70.799 -70.241 70.839 -70.138 70.890 -70.057 70.930 -70.231 70.930 -70.244 70.899 -70.345 70.880 -70.458 70.861 -70.583 70.841 -70.695 70.813 -70.799 70.782 -70.912 70.741 -71.014 70.722 -71.152 70.672 -71.232 70.600 -71.303 70.518 -71.351 70.437 -71.411 70.325 -71.427 70.274 -71.507 70.193 -71.566 70.164 -71.616 70.114 -71.708 70.183 -71.636 70.255 -71.578 70.315 -71.509 70.418 -71.483 70.509 -71.445 70.590 -71.385 70.640 -71.582 70.660 -71.747 70.578 -71.794 70.518 -71.864 70.428 -71.914 70.377 -71.994 70.368 -72.048 70.418 -71.968 70.487 -72.173 70.518 -72.060 70.600 -71.881 70.681 -71.834 70.691 -71.699 70.662 -71.524 70.672 -71.402 70.741 -71.329 70.761 -71.204 70.789 -71.076 70.820 -70.976 70.911 -70.938 70.949 -70.831 71.012 -70.763 71.115 -70.845 71.196 -71.063 71.167 -71.179 71.126 -71.294 71.107 -71.407 71.026 -71.480 70.966 -71.551 70.957 -71.698 70.957 -71.844 70.928 -71.947 70.909 -72.060 70.880 -72.174 70.870 -72.322 70.851 -72.446 70.791 -72.516 70.741 -72.608 70.722 -72.732 70.722 -72.865 70.732 -72.731 70.772 -72.628 70.841 -72.569 70.892 -72.477 70.933 -72.665 70.914 -72.778 70.914 -72.924 70.933 -72.811 70.952 -72.685 70.971 -72.572 71.041 -72.501 71.071 -72.401 71.153 -72.341 71.184 -72.228 71.194 -72.106 71.174 -71.939 71.155 -71.786 71.186 -71.672 71.247 -71.602 71.297 -71.521 71.327 -71.408 71.440 -71.513 71.543 -71.687 71.612 -71.907 71.622 -72.063 71.663 -72.253 71.672 -72.397 71.704 -72.578 71.734 -72.744 71.715 -72.870 71.634 -72.902 71.603 -73.015 71.512 -73.064 71.503 -73.200 71.400 -73.224 71.318 -73.270 71.308 -73.419 71.218 -73.454 71.167 -73.546 71.139 -73.661 71.179 -73.559 71.248 -73.500 71.340 -73.440 71.349 -73.316 71.409 -73.514 71.428 -73.693 71.378 -73.785 71.327 -73.864 71.256 -73.921 71.165 -73.968 71.155 -74.091 71.186 -73.991 71.289 -73.957 71.371 -73.911 71.411 -73.809 71.462 -73.729 71.452 -73.865 71.555 -73.898 71.636 -73.839 71.675 -74.041 71.625 -74.121 71.533 -74.156 71.483 -74.247 71.402 -74.305 71.342 -74.374 71.292 -74.478 71.351 -74.396 71.421 -74.338 71.524 -74.304 71.524 -74.450 71.505 -74.575 71.536 -74.463 71.555 -74.349 71.605 -74.258 71.665 -74.176 71.706 -74.087 71.766 -74.005 71.797 -73.905 71.857 -74.129 71.847 -74.266 71.787 -74.335 71.725 -74.414 71.622 -74.408 71.725 -74.495 71.766 -74.405 71.807 -74.584 71.766 -74.686 71.747 -74.812 71.665 -74.869 71.636 -74.984 71.533 -74.924 71.443 -74.971 71.392 -75.050 71.342 -75.153 71.301 -75.242 71.361 -75.174 71.411 -75.096 71.462 -75.017 71.565 -75.130 71.615 -75.266 71.574 -75.368 71.625 -75.277 71.634 -75.140 71.663 -75.013 71.713 -74.934 71.744 -75.103 71.704 -75.192 71.684 -75.318 71.665 -75.431 71.636 -75.533 71.617 -75.658 71.649 -75.547 71.689 -75.445 71.718 -75.329 71.749 -75.217 71.790 -75.408 71.780 -75.545 71.771 -75.669 71.790 -75.543 71.809 -75.430 71.809 -75.136 71.828 -75.011 71.869 -74.908 71.919 -74.816 71.900 -74.636 71.910 -74.500 72.013 -74.478 72.072 -74.395 72.175 -74.643 72.175 -74.791 72.185 -74.949 72.194 -75.094 72.214 -75.264 72.214 -75.276 72.204 -75.331 72.154 -75.423 72.103 -75.503 72.094 -75.627 72.094 -75.773 72.013 -75.844 71.962 -75.923 71.893 -75.979 71.831 -76.057 71.802 -76.159 71.802 -76.307 71.811 -76.170 71.852 -76.069 71.912 -75.988 71.993 -75.944 72.075 -75.887 72.116 -75.798 72.116 -75.651 72.175 -75.569 72.206 -75.752 72.216 -75.898 72.196 -76.023 72.177 -76.150 72.158 -76.277 72.098 -76.344 72.058 -76.446 72.017 -76.535 71.986 -76.648 72.037 -76.557 72.067 -76.456 72.127 -76.377 72.177 -76.298 72.196 -76.184 72.216 -76.045 72.235 -75.919 72.235 -75.759 72.216 -75.590 72.235 -75.476 72.266 -75.363 72.317 -75.284 72.429 -75.342 72.532 -75.457 72.603 -75.672 72.642 -75.864 72.661 -76.035 72.671 -76.194 72.652 -76.321 72.561 -76.354 72.664 -76.429 72.692 -76.610 72.702 -76.757 72.721 -76.927 72.824 -77.194 72.833 -77.340 72.833 -77.774 72.824 -77.913 72.793 -78.025 72.783 -78.175 72.755 -78.291 72.745 -78.429 72.716 -78.544 72.676 -78.646 72.635 -78.734 72.594 -78.835 72.491 -78.770 72.441 -78.576 72.412 -78.407 72.393 -78.237 72.355 -78.045 72.293 -77.839 72.293 -77.556 72.254 -77.377 72.283 -77.611 72.273 -77.735 72.273 -77.883 72.192 -77.938 72.295 -77.936 72.357 -78.155 72.347 -78.292 72.388 -78.474 72.420 -78.659 72.369 -78.735 72.266 -78.695 72.369 -78.802 72.429 -79.018 72.360 -79.073 72.257 -78.913 72.225 -78.742 72.113 -78.626 72.082 -78.442 71.979 -78.233 71.919 -78.030 71.919 -78.165 72.022 -78.361 72.063 -78.543 71.950 -78.466 71.888 -78.248 71.907 -78.404 71.907 -78.430 72.010 -78.626 72.122 -78.702 72.225 -78.915 72.266 -79.098 72.194 -79.162 72.113 -79.203 72.053 -78.986 72.043 -79.122 72.075 -79.293 72.056 -79.418 72.146 -79.376 72.209 -79.314 72.278 -79.246 72.381 -79.247 72.462 -79.477 72.491 -79.646 72.441 -79.735 72.391 -79.812 72.362 -79.926 72.312 -80.003 72.393 -79.950 72.496 -80.018 72.599 -80.060 72.558 -80.160 72.520 -80.263 72.510 -80.302 72.472 -80.393 72.369 -80.353 72.338 -80.304 72.269 -80.075 72.269 -80.210 72.288 -80.298 72.391 -80.473 72.371 -80.598 72.290 -80.663 72.187 -80.648 72.146 -80.748 72.117 -80.874 72.098 -81.011 72.039 -81.076 72.008 -81.186 72.079 -81.124 72.161 -81.368 72.201 -81.281 72.211 -81.145 72.192 -80.987 72.201 -80.863 72.261 -81.069 72.364 -81.138 72.415 -81.062 72.465 -80.973 72.484 -80.848 72.553 -80.795 72.594 -80.979 72.553 -81.078 72.534 -81.204 72.484 -81.292 72.443 -81.379 72.393 -81.468 72.362 -81.579 72.402 -81.492 72.462 -81.428 72.503 -81.328 72.563 -81.251 72.594 -81.140 72.635 -81.039 72.664 -80.926 72.726 -80.851 72.764 -80.760 72.805 -80.660 72.836 -80.548 72.939 -80.790 73.042 -80.913 73.112 -80.860 73.192 -80.820 73.295 -81.080 73.315 -81.254 73.346 -81.428 73.449 -81.444 73.561 -81.471 73.664 -81.542 73.777 -81.720 73.808 -81.896 73.808 -82.046 73.818 -82.196 73.818 -82.348 73.808 -82.499 73.808 -82.650 73.818 -82.812 73.818 -83.114 73.777 -83.201 73.736 -83.302 73.746 -83.477 73.726 -83.616 73.707 -83.730 73.688 -83.858 73.669 -83.985 73.638 -84.109 73.619 -84.223 73.559 -84.011 73.456 -83.924 73.547 -84.187 73.566 -84.349 73.566 -84.499 73.547 -84.612 73.528 -84.752 73.509 -84.877 73.406 -84.775 73.406 -84.912 73.475 -85.148 73.456 -85.275 73.425 -85.385 73.355 -85.435 73.284 -85.208 73.245 -85.022 73.226 -84.849 73.216 -84.700 73.197 -84.540 73.166 -84.364 73.176 -84.226 73.135 -84.039 73.145 -84.201 73.145 -84.337 73.154 -84.486 73.164 -84.648 73.173 -84.797 73.183 -84.958 73.192 -85.106 73.231 -85.305 73.250 -85.478 73.169 -85.512 73.229 -85.724 73.159 -85.787 73.128 -85.598 73.128 -85.461 73.078 -85.261 73.028 -85.050 73.009 -84.890 72.958 -84.678 72.908 -84.479 72.888 -84.306 72.888 -84.442 72.917 -84.627 72.968 -84.838 72.977 -84.987 72.996 -85.159 73.037 -85.347 73.066 -85.532 73.075 -85.681 73.075 -85.830 73.025 -85.916 72.944 -85.950 72.862 -85.997 72.750 -85.992 72.690 -85.781 72.671 -85.893 72.568 -85.776 72.518 -85.565 72.499 -85.406 72.518 -85.294 72.549 -85.171 72.568 -85.059 72.518 -85.146 72.489 -84.961 72.479 -84.801 72.470 -84.926 72.470 -85.073 72.441 -85.173 72.338 -85.021 72.257 -84.785 72.166 -84.526 72.063 -84.465 72.166 -84.632 72.238 -84.855 72.297 -85.077 72.367 -85.312 72.376 -85.458 72.376 -85.741 72.304 -85.800 72.201 -85.791 72.173 -85.903 72.163 -86.039 72.144 -86.149 72.135 -86.285 72.075 -86.063 72.024 -85.865 71.921 -85.737 71.912 -85.860 71.809 -85.615 71.790 -85.456 71.771 -85.285 71.761 -85.139 71.802 -85.043 71.699 -84.929 71.586 -84.816 71.555 -84.912 71.536 -85.035 71.445 -85.057 71.342 -84.932 71.323 -85.067 71.232 -85.089 71.129 -85.028 71.047 -85.062 71.038 -85.197 71.150 -85.228 71.213 -85.394 71.232 -85.151 71.301 -85.369 71.263 -85.456 71.292 -85.625 71.292 -85.771 71.273 -85.894 71.263 -86.027 71.244 -86.150 71.215 -86.247 71.184 -86.367 71.153 -86.461 71.134 -86.583 71.115 -86.693 71.105 -86.826 71.105 -86.972 71.155 -86.889 71.165 -86.755 71.174 -86.621 71.194 -86.512 71.234 -86.416 71.266 -86.310 71.304 -86.223 71.313 -86.089 71.332 -85.979 71.301 -85.807 71.321 -85.697 71.371 -85.614 71.380 -85.478 71.411 -85.383 71.392 -85.213 71.411 -85.103 71.481 -85.163 71.512 -85.190 71.562 -85.385 71.581 -85.554 71.631 -85.751 71.734 -85.997 71.837 -86.218 71.950 -86.450 72.053 -86.591 72.156 -86.708 72.269 -86.742 72.371 -86.736 72.443 -86.680 72.484 -86.582 72.565 -86.549 72.668 -86.704 72.759 -86.968 72.862 -87.004 72.944 -86.972 73.004 -86.899 73.044 -86.813 73.083 -86.714 73.145 -86.656 73.183 -86.568 73.255 -86.509 73.305 -86.436 73.365 -86.363 73.416 -86.277 73.456 -86.191 73.496 -86.092 73.535 -85.991 73.566 -85.894 73.607 -85.807 73.626 -85.681 73.657 -85.570 73.698 -85.471 73.717 -85.358 73.748 -85.246 73.777 -85.145 73.879 -85.262 73.899 -85.425 73.908 -85.600 73.908 -85.751 73.918 -85.914 73.928 -86.078 73.928 -86.242 73.937 -86.405 73.928 -86.544 73.928 -86.846 73.918 -86.984 73.899 -87.111 73.899 -87.249 73.879 -87.374 73.870 -87.500 73.851 -87.627 73.841 -87.778 73.813 -87.904 73.794 -88.043 73.765 -88.156 73.746 -88.282 73.707 -88.382 73.676 -88.492 73.645 -88.602 73.607 -88.703 73.566 -88.800 73.535 -88.909 73.495 -88.994 73.456 -89.094 73.416 -89.178 73.384 -89.286 73.324 -89.358 73.284 -89.455 73.224 -89.512 73.173 -89.596 73.092 -89.626 72.989 -89.628 72.886 -89.560 72.886 -89.709 72.877 -89.846 72.774 -89.832 72.755 -89.955 72.704 -90.038 72.613 -90.055 72.582 -90.162 72.491 -90.192 72.410 -90.221 72.307 -90.124 72.307 -89.989 72.247 -90.058 72.228 -90.182 72.199 -90.279 72.190 -90.280 72.149 -90.280 72.139 -90.293 72.130 -90.293 72.079 -90.375 72.010 -90.285 71.907 -90.125 71.826 -90.167 71.797 -90.264 71.778 -90.280 71.768 -90.280 71.749 -90.281 71.718 -90.277 71.658 -90.265 71.649 -90.265 71.598 -90.266 ; #1342 12 65.862 -83.448 65.900 -83.487 65.835 -83.558 ; #1343 12 60.838 -78.329 60.847 -78.456 60.830 -78.572 60.812 -78.676 60.767 -78.766 60.758 -78.629 60.776 -78.525 60.793 -78.409 ; #1344 12 77.088 -97.529 77.077 -97.655 77.043 -97.741 77.022 -97.547 77.056 -97.434 ; #1345 12 66.793 -84.120 66.811 -84.139 66.746 -84.198 ; #1346 12 76.299 -94.122 76.288 -93.949 76.365 -93.931 76.354 -93.770 76.375 -93.661 76.396 -93.539 76.406 -93.386 76.294 -93.176 76.181 -92.924 76.068 -92.842 75.956 -92.591 75.912 -92.351 75.799 -92.326 75.686 -92.173 75.597 -92.186 75.576 -92.308 75.545 -92.399 75.501 -92.470 75.456 -92.539 75.391 -92.590 75.301 -92.589 75.189 -92.495 75.157 -92.292 75.157 -92.151 75.092 -92.201 75.058 -92.301 74.940 -92.154 74.837 -92.152 74.734 -91.972 74.744 -91.832 74.663 -91.581 74.682 -91.455 74.641 -91.247 74.744 -91.333 74.763 -91.205 74.804 -91.107 74.845 -91.011 74.885 -90.926 74.795 -90.955 74.763 -91.066 74.744 -90.887 74.641 -90.747 74.622 -90.556 74.641 -90.430 74.581 -90.197 74.600 -90.112 74.560 -89.906 74.569 -89.765 74.569 -89.626 74.598 -89.513 74.598 -89.360 74.629 -89.249 74.698 -89.202 74.758 -89.142 74.799 -89.044 74.687 -88.992 74.718 -88.880 74.787 -88.833 74.837 -88.760 74.847 -88.634 74.777 -88.401 74.768 -88.529 74.687 -88.573 74.636 -88.659 74.545 -88.678 74.505 -88.485 74.505 -88.319 74.495 -88.168 74.495 -88.002 74.536 -87.904 74.486 -87.686 74.516 -87.587 74.555 -87.486 74.486 -87.243 74.526 -87.156 74.486 -86.951 74.486 -86.799 74.589 -86.920 74.529 -86.702 74.510 -86.526 74.541 -86.414 74.622 -86.366 74.519 -86.259 74.510 -86.095 74.519 -85.942 74.519 -85.803 74.529 -85.663 74.631 -85.655 74.529 -85.511 74.519 -85.333 74.538 -85.218 74.629 -85.182 74.698 -85.131 74.586 -85.111 74.536 -84.895 74.526 -84.730 74.536 -84.591 74.526 -84.426 74.536 -84.286 74.555 -84.158 74.565 -84.018 74.565 -83.726 74.593 -83.610 74.674 -83.559 74.725 -83.483 74.837 -83.612 74.878 -83.509 74.828 -83.294 74.725 -83.245 74.622 -83.172 74.531 -82.920 74.531 -82.780 74.541 -82.627 74.521 -82.464 74.502 -82.288 74.492 -82.136 74.473 -81.961 74.492 -81.819 74.512 -81.691 74.541 -81.588 74.560 -81.458 74.579 -81.329 74.589 -81.189 74.579 -81.024 74.569 -80.861 74.569 -80.721 74.589 -80.606 74.589 -80.466 74.608 -80.350 74.698 -80.307 74.771 -80.255 74.883 -80.502 74.933 -80.424 74.924 -80.260 74.833 -80.122 74.823 -79.958 74.833 -79.817 74.852 -79.687 74.861 -79.546 74.890 -79.441 74.993 -79.633 75.013 -79.800 75.002 -79.951 74.983 -80.081 74.983 -80.094 74.952 -80.196 74.943 -80.338 75.050 -80.409 75.060 -80.283 75.071 -80.144 75.082 -80.107 75.137 -80.043 75.168 -79.933 75.168 -79.780 75.202 -79.686 75.257 -79.608 75.369 -79.624 75.469 -79.904 75.479 -80.073 75.479 -80.154 75.469 -80.281 75.458 -80.407 75.490 -80.310 75.511 -80.198 75.521 -80.144 75.542 -80.161 75.621 -80.412 75.631 -80.582 75.642 -80.752 75.642 -80.906 75.631 -81.033 75.631 -81.174 75.652 -81.359 75.731 -81.329 75.796 -81.564 75.807 -81.722 75.807 -82.032 75.828 -82.217 75.828 -82.359 75.839 -82.529 75.828 -82.656 75.817 -82.796 75.796 -82.920 75.762 -83.026 75.752 -83.167 75.731 -83.277 75.741 -83.461 75.786 -83.667 75.786 -83.822 75.807 -84.009 75.786 -84.133 75.765 -84.257 75.744 -84.381 75.700 -84.471 75.700 -84.639 75.689 -84.778 75.634 -84.838 75.655 -85.024 75.655 -85.166 75.623 -85.273 75.603 -85.384 75.558 -85.460 75.558 -85.615 75.579 -85.787 75.545 -85.890 75.545 -86.045 75.524 -86.181 75.424 -85.852 75.414 -85.696 75.403 -85.821 75.414 -85.978 75.424 -86.147 75.414 -86.273 75.393 -86.383 75.372 -86.492 75.362 -86.644 75.393 -86.537 75.482 -86.811 75.482 -86.952 75.594 -87.277 75.616 -87.464 75.584 -87.558 75.550 -87.660 75.450 -87.663 75.563 -87.792 75.574 -87.949 75.553 -88.072 75.532 -88.195 75.498 -88.297 75.487 -88.422 75.532 -88.350 75.608 -88.607 75.686 -88.882 75.631 -88.939 75.621 -89.064 75.498 -88.918 75.443 -88.975 75.487 -89.197 75.600 -89.397 75.600 -89.551 75.566 -89.667 75.556 -89.793 75.576 -89.683 75.587 -89.854 75.631 -89.769 75.621 -89.597 75.642 -89.475 75.673 -89.369 75.741 -89.333 75.854 -89.607 75.875 -89.795 75.820 -89.851 75.943 -89.961 76.032 -90.196 75.987 -90.282 75.967 -90.391 75.967 -90.534 75.946 -90.656 75.979 -90.865 75.979 -91.021 75.935 -91.106 75.924 -91.231 75.859 -91.270 75.948 -91.243 75.969 -91.120 76.035 -91.069 76.045 -90.929 76.056 -90.803 76.056 -90.505 76.077 -90.396 76.097 -90.584 76.108 -90.743 76.087 -90.866 76.077 -91.018 76.119 -90.943 76.163 -91.156 76.174 -91.315 76.174 -91.472 76.163 -91.597 76.197 -91.496 76.262 -91.742 76.262 -91.586 76.207 -91.355 76.207 -91.200 76.186 -91.010 76.186 -90.855 76.176 -90.695 76.155 -90.506 76.145 -90.347 76.176 -90.552 76.186 -90.426 76.197 -90.273 76.186 -90.203 76.176 -90.030 76.186 -89.904 76.186 -89.735 76.197 -89.583 76.229 -89.489 76.341 -89.809 76.341 -89.978 76.375 -90.174 76.375 -90.218 76.396 -90.408 76.417 -90.584 76.417 -90.741 76.438 -90.931 76.449 -91.104 76.469 -91.307 76.469 -91.594 76.514 -91.509 76.493 -91.332 76.527 -91.229 76.482 -91.001 76.472 -90.828 76.482 -90.701 76.595 -90.964 76.671 -91.230 76.681 -91.390 76.703 -91.581 76.703 -91.896 76.692 -92.050 76.681 -92.189 76.648 -92.293 76.637 -92.432 76.616 -92.556 76.637 -92.733 76.616 -92.843 76.626 -93.017 76.637 -93.178 76.637 -93.322 76.571 -93.385 76.527 -93.456 76.493 -93.557 76.472 -93.680 76.438 -93.780 76.493 -93.728 76.538 -93.630 76.559 -93.521 76.626 -93.475 76.668 -93.400 76.791 -93.531 76.868 -93.801 76.933 -94.066 76.933 -94.224 76.902 -94.317 76.902 -94.475 76.933 -94.670 76.988 -94.920 76.988 -95.065 77.009 -95.272 77.009 -95.417 77.064 -95.654 77.064 -95.812 77.074 -95.974 77.064 -96.129 77.053 -96.255 77.053 -96.413 77.043 -96.567 76.988 -96.631 76.988 -96.934 76.943 -97.004 76.831 -96.758 76.820 -96.596 76.810 -96.737 76.765 -96.832 76.820 -97.083 76.755 -97.129 76.710 -96.896 76.700 -96.722 76.645 -96.458 76.600 -96.225 76.579 -96.047 76.590 -95.908 76.624 -95.821 76.569 -95.872 76.535 -95.973 76.535 -96.130 76.524 -96.282 76.412 -96.053 76.401 -95.879 76.391 -95.706 76.412 -95.584 76.357 -95.350 76.357 -95.206 76.346 -95.032 76.346 -95.189 76.313 -95.289 76.302 -95.428 76.302 -95.584 76.247 -95.337 76.258 -95.198 76.278 -95.063 76.313 -94.963 76.291 -94.784 76.291 -94.456 76.270 -94.265 76.270 -94.096 ; #1347 12 64.240 -81.484 64.249 -81.480 64.214 -81.583 ; #1348 12 66.288 -83.056 66.306 -83.051 66.288 -83.170 66.374 -83.396 66.277 -83.308 66.229 -83.122 66.286 -83.054 ; #1349 12 70.009 -87.228 70.009 -87.021 69.979 -86.856 69.979 -86.712 69.988 -86.579 70.006 -86.536 70.109 -86.661 70.109 -86.949 70.159 -87.154 70.128 -87.247 70.119 -87.367 70.006 -87.228 ; #1350 12 76.008 -94.688 76.008 -94.830 75.987 -94.938 75.987 -95.094 75.865 -95.018 75.775 -94.730 75.786 -94.591 75.807 -94.471 75.920 -94.612 ; #1351 12 76.176 -95.076 76.186 -95.094 76.155 -95.185 76.087 -95.242 76.097 -95.102 76.174 -95.073 ; #1352 12 77.842 -97.170 77.863 -97.059 77.897 -96.957 77.897 -96.798 77.907 -96.990 77.928 -96.879 77.949 -96.768 77.915 -96.548 77.926 -96.393 77.936 -96.263 77.946 -96.108 77.967 -95.969 77.978 -95.841 77.989 -95.698 78.009 -95.560 77.999 -95.394 78.030 -95.301 78.064 -95.212 78.130 -95.150 78.253 -95.489 78.253 -95.637 78.287 -95.535 78.308 -95.408 78.328 -95.296 78.350 -95.172 78.383 -95.081 78.473 -95.382 78.518 -95.621 78.538 -95.819 78.538 -95.967 78.518 -96.093 78.518 -96.255 78.551 -96.462 78.606 -96.409 78.682 -96.690 78.703 -96.888 78.703 -97.037 78.772 -97.320 78.782 -97.501 78.813 -97.718 78.824 -97.886 78.824 -98.361 78.802 -98.472 78.747 -98.523 78.672 -98.537 78.559 -98.252 78.549 -98.396 78.559 -98.576 78.504 -98.627 78.426 -98.326 78.337 -98.317 78.302 -98.109 78.258 -98.179 78.247 -98.012 78.227 -97.801 78.237 -97.658 78.216 -97.460 78.182 -97.240 78.106 -97.255 78.117 -97.435 78.117 -97.742 78.127 -97.908 78.082 -98.004 78.038 -97.767 77.983 -97.524 77.962 -97.341 77.907 -97.393 77.831 -97.162 ; #1353 12 79.890 -100.206 79.879 -100.084 79.879 -99.886 79.890 -99.727 79.868 -99.522 79.756 -99.317 79.735 -99.114 79.714 -98.925 79.758 -98.839 79.801 -98.751 79.913 -98.853 79.992 -98.844 80.130 -99.143 80.130 -99.310 80.117 -99.453 80.156 -99.701 80.156 -99.868 80.143 -99.979 80.117 -100.086 80.074 -100.192 79.994 -100.218 79.984 -100.228 79.895 -100.214 ; #1354 12 62.632 -78.146 62.586 -78.106 62.632 -78.024 ; #1355 12 62.632 -77.928 62.578 -77.881 62.623 -77.800 ; #1356 12 63.530 -78.321 63.521 -78.447 63.493 -78.545 63.484 -78.671 63.384 -78.557 63.291 -78.404 63.198 -78.236 63.134 -78.046 63.151 -77.939 63.185 -77.836 63.203 -77.730 63.265 -77.652 63.358 -77.685 63.450 -77.804 63.459 -77.945 63.504 -78.108 63.504 -78.230 63.521 -78.316 ; #1357 12 63.538 -78.573 63.556 -78.589 63.493 -78.655 ; #1358 12 69.796 -83.653 69.814 -83.672 69.823 -83.825 69.758 -83.886 69.776 -83.775 69.794 -83.650 ; #1359 12 68.371 -82.130 68.389 -82.149 68.416 -82.318 68.378 -82.408 68.360 -82.260 68.369 -82.128 ; #1360 12 64.030 -77.725 64.055 -77.748 64.055 -77.871 64.047 -77.986 64.002 -78.080 63.973 -77.932 63.973 -77.809 ; #1361 12 63.521 -76.797 63.614 -76.855 63.659 -77.029 63.713 -77.199 63.713 -77.332 63.722 -77.463 63.685 -77.553 63.593 -77.423 63.510 -77.217 63.448 -77.040 63.411 -76.874 63.439 -76.777 63.484 -76.694 ; #1362 12 64.030 -77.613 64.038 -77.620 63.993 -77.703 ; #1363 12 78.324 -94.776 78.334 -94.835 78.279 -94.903 78.214 -94.645 78.326 -94.776 ; #1364 12 69.814 -82.862 69.729 -82.640 69.767 -82.550 69.805 -82.721 ; #1365 12 69.882 -82.711 69.816 -82.629 69.834 -82.517 ; #1366 12 79.989 -96.689 79.934 -96.424 79.913 -96.236 79.903 -96.397 79.903 -96.548 79.892 -96.695 79.871 -96.492 79.758 -96.353 79.691 -96.082 79.659 -95.876 79.659 -95.395 79.669 -95.247 79.680 -95.114 79.680 -94.935 79.714 -94.830 79.735 -94.701 79.756 -94.557 79.787 -94.433 79.698 -94.444 79.677 -94.559 79.657 -94.701 79.622 -94.821 79.612 -94.967 79.612 -95.132 79.591 -95.275 79.591 -95.454 79.581 -95.587 79.581 -95.751 79.559 -95.879 79.504 -95.947 79.405 -95.594 79.439 -95.490 79.327 -95.426 79.305 -95.239 79.327 -95.112 79.337 -94.951 79.358 -94.839 79.368 -94.692 79.400 -94.568 79.434 -94.462 79.413 -94.263 79.423 -94.101 79.389 -94.207 79.368 -94.335 79.313 -94.404 79.293 -94.218 79.303 -94.073 79.324 -93.930 79.345 -93.802 79.379 -93.696 79.411 -93.600 79.455 -93.512 79.379 -93.546 79.389 -93.413 79.400 -93.267 79.499 -93.272 79.434 -92.996 79.478 -92.743 79.478 -92.579 79.468 -92.411 79.447 -92.525 79.437 -92.659 79.402 -92.751 79.392 -92.568 79.382 -92.373 79.371 -92.205 79.371 -92.054 79.392 -91.939 79.402 -91.779 79.402 -91.600 79.413 -91.440 79.382 -91.552 79.371 -91.697 79.360 -91.844 79.350 -91.991 79.339 -92.137 79.350 -92.320 79.339 -92.452 79.339 -92.766 79.305 -92.872 79.264 -92.624 79.253 -92.441 79.253 -91.932 79.274 -91.818 79.264 -91.623 79.274 -91.491 79.284 -91.329 79.284 -90.823 79.295 -90.663 79.264 -90.805 79.264 -90.955 79.243 -91.099 79.243 -91.263 79.232 -91.423 79.232 -91.601 79.221 -91.761 79.221 -91.925 79.211 -92.057 79.211 -92.235 79.201 -92.367 79.191 -92.528 79.201 -92.708 79.211 -92.876 79.201 -93.022 79.201 -93.336 79.211 -93.518 79.201 -93.677 79.146 -93.761 79.104 -93.853 79.104 -94.167 79.083 -94.280 79.073 -94.426 79.052 -94.554 78.928 -94.193 78.908 -93.994 78.908 -93.845 78.886 -93.646 78.853 -93.440 78.819 -93.544 78.839 -93.742 78.850 -93.924 78.839 -94.082 78.750 -93.767 78.661 -93.467 78.672 -93.324 78.693 -93.196 78.703 -93.052 78.672 -92.822 78.661 -92.642 78.651 -92.477 78.651 -92.328 78.640 -92.148 78.640 -91.986 78.619 -92.100 78.609 -92.258 78.609 -92.599 78.599 -92.745 78.578 -92.858 78.578 -93.034 78.588 -93.199 78.567 -93.313 78.455 -93.006 78.389 -92.735 78.410 -92.595 78.298 -92.366 78.331 -92.260 78.310 -92.078 78.279 -91.865 78.269 -91.686 78.269 -91.525 78.237 -91.312 78.237 -90.825 78.247 -90.694 78.347 -90.696 78.379 -90.909 78.412 -90.816 78.423 -90.686 78.423 -90.524 78.379 -90.348 78.313 -90.080 78.247 -89.826 78.360 -89.936 78.483 -90.110 78.562 -90.338 78.674 -90.423 78.695 -90.325 78.583 -90.141 78.470 -89.857 78.347 -89.599 78.258 -89.280 78.269 -89.150 78.324 -89.091 78.436 -88.949 78.491 -88.889 78.604 -89.044 78.703 -89.056 78.638 -88.801 78.549 -88.496 78.570 -88.381 78.601 -88.283 78.656 -88.210 78.745 -88.515 78.845 -88.526 78.934 -88.521 79.023 -88.503 79.067 -88.397 79.067 -88.234 79.112 -88.155 79.143 -88.042 79.088 -88.103 79.044 -88.210 78.968 -88.250 78.902 -88.294 78.790 -88.212 78.724 -87.931 78.766 -87.850 78.811 -87.744 78.855 -87.667 78.889 -87.558 78.920 -87.445 78.941 -87.315 78.983 -87.220 79.096 -87.268 79.020 -86.984 79.054 -86.873 79.120 -86.815 79.140 -86.670 79.151 -86.537 79.162 -86.391 79.172 -86.243 79.183 -86.083 79.203 -85.966 79.214 -85.818 79.224 -85.684 79.235 -85.538 79.279 -85.443 79.290 -85.264 79.311 -85.134 79.423 -85.384 79.536 -85.664 79.636 -85.988 79.591 -86.067 79.526 -86.128 79.481 -86.207 79.594 -86.236 79.672 -86.541 79.683 -86.723 79.672 -86.857 79.651 -86.989 79.586 -87.047 79.620 -87.268 79.599 -87.385 79.557 -87.481 79.567 -87.649 79.622 -87.574 79.643 -87.442 79.677 -87.333 79.732 -87.271 79.808 -87.228 79.863 -87.152 79.929 -87.106 79.908 -87.238 79.887 -87.370 79.866 -87.487 79.856 -87.636 79.876 -87.518 79.911 -87.408 79.945 -87.312 79.955 -87.162 80.012 -87.283 80.094 -87.575 80.094 -87.894 80.081 -88.025 80.176 -88.007 80.189 -87.859 80.202 -87.728 80.326 -87.767 80.467 -87.986 80.493 -88.209 80.493 -88.376 80.506 -88.564 80.480 -88.690 80.454 -88.817 80.359 -88.835 80.247 -88.493 80.179 -88.553 80.124 -88.619 80.150 -88.825 80.206 -89.066 80.329 -89.413 80.372 -89.300 80.441 -89.241 80.441 -89.393 80.496 -89.328 80.621 -89.708 80.595 -89.834 80.595 -89.987 80.581 -90.119 80.607 -90.189 80.621 -90.364 80.621 -90.532 80.647 -90.755 80.633 -90.887 80.702 -90.816 80.813 -91.163 80.954 -91.496 81.108 -91.840 81.176 -92.122 81.202 -92.010 81.343 -92.346 81.369 -92.559 81.411 -92.799 81.425 -92.991 81.451 -93.205 81.477 -93.403 81.477 -93.493 81.490 -93.700 81.421 -93.770 81.464 -94.011 81.477 -94.188 81.477 -94.372 81.464 -94.488 81.408 -94.563 81.313 -94.234 81.313 -94.065 81.327 -93.903 81.327 -93.564 81.284 -93.323 81.215 -93.379 81.189 -93.517 81.189 -93.842 81.202 -94.019 81.202 -94.357 81.215 -94.548 81.159 -94.299 81.147 -94.110 81.147 -94.278 81.108 -94.367 81.094 -94.514 81.068 -94.639 81.150 -94.961 81.163 -95.137 81.137 -95.276 81.111 -95.415 81.055 -95.489 81.029 -95.600 80.990 -95.379 80.964 -95.489 80.950 -95.635 80.895 -95.373 80.895 -95.204 80.908 -95.073 80.882 -95.197 80.826 -94.950 80.813 -94.759 80.826 -94.692 80.839 -94.545 80.813 -94.333 80.787 -94.458 80.787 -94.794 80.689 -94.463 80.676 -94.272 80.650 -94.061 80.636 -94.207 80.636 -94.881 80.676 -95.115 80.689 -95.291 80.676 -95.436 80.676 -95.757 80.663 -95.918 80.676 -96.121 80.581 -96.129 80.568 -96.259 80.542 -96.062 80.460 -95.756 80.447 -95.903 80.460 -96.077 80.460 -96.244 80.447 -96.404 80.421 -96.540 80.421 -96.846 80.395 -96.649 80.352 -96.729 80.326 -96.518 80.283 -96.294 80.257 -96.084 80.271 -95.939 80.297 -95.802 80.283 -95.612 80.297 -95.482 80.271 -95.591 80.257 -95.721 80.176 -95.420 80.189 -95.259 80.202 -95.130 80.215 -94.970 80.242 -94.833 80.281 -94.746 80.254 -94.521 80.242 -94.333 80.215 -94.456 80.215 -94.637 80.189 -94.760 80.163 -94.883 80.038 -94.543 80.038 -94.708 80.078 -94.940 80.091 -95.129 80.078 -95.258 80.078 -95.576 80.091 -95.765 80.104 -95.953 80.117 -96.156 80.160 -96.380 80.199 -96.626 80.199 -96.779 80.173 -96.901 80.104 -96.619 80.078 -96.739 80.038 -96.765 ; #1367 12 76.514 -90.234 76.559 -90.148 76.579 -90.037 76.692 -90.089 76.726 -89.985 76.791 -89.944 76.880 -90.230 76.891 -90.261 76.880 -90.371 76.880 -90.529 76.860 -90.667 76.839 -90.778 76.750 -90.792 76.626 -90.539 ; #1368 12 77.313 -91.352 77.302 -91.464 77.226 -91.499 77.206 -91.307 77.195 -91.145 77.318 -91.199 77.318 -91.357 ; #1369 12 62.781 -74.603 62.707 -74.648 62.679 -74.503 62.653 -74.349 62.645 -74.220 62.707 -74.151 62.724 -74.298 62.716 -74.412 62.781 -74.600 ; #1370 12 77.265 -90.262 77.299 -90.158 77.334 -90.054 77.365 -89.945 77.478 -89.980 77.600 -90.265 77.600 -90.279 77.669 -90.549 77.679 -90.712 77.679 -90.872 77.700 -91.052 77.700 -91.212 77.669 -91.321 77.658 -91.449 77.582 -91.486 77.483 -91.470 77.370 -91.229 77.339 -91.033 77.305 -90.819 77.260 -90.575 77.271 -90.433 77.271 -90.274 ; #1371 12 64.372 -75.749 64.344 -75.724 64.344 -75.601 ; #1372 12 69.515 -80.095 69.591 -80.085 69.659 -80.091 69.629 -79.930 69.629 -79.787 69.638 -79.665 69.667 -79.552 69.706 -79.449 69.803 -79.511 69.812 -79.663 69.803 -79.785 69.764 -79.876 69.747 -80.014 69.747 -80.078 69.737 -80.211 69.796 -80.402 69.805 -80.542 69.708 -80.495 69.747 -80.677 69.756 -80.818 69.708 -80.899 69.679 -80.726 69.679 -80.596 69.582 -80.432 69.629 -80.350 69.523 -80.164 69.515 -80.104 ; #1373 12 68.380 -79.217 68.380 -79.256 68.304 -79.308 68.207 -79.160 68.245 -79.070 68.281 -78.953 68.378 -79.085 68.378 -79.214 ; #1374 12 80.744 -95.215 80.758 -95.392 80.758 -96.096 80.744 -96.241 80.702 -95.987 80.715 -95.856 80.689 -95.630 80.676 -95.439 80.676 -95.257 80.689 -95.112 80.744 -95.219 ; #1375 12 69.406 -78.537 69.397 -78.670 69.361 -78.764 69.293 -78.839 69.237 -78.924 69.172 -78.988 69.133 -79.079 69.115 -79.204 69.115 -79.334 69.038 -79.398 68.982 -79.471 68.885 -79.461 68.876 -79.310 68.914 -79.206 68.924 -79.074 68.941 -78.962 68.989 -78.856 69.055 -78.792 69.102 -78.710 69.169 -78.648 69.226 -78.574 69.235 -78.440 69.291 -78.367 69.388 -78.361 69.406 -78.522 69.406 -78.534 ; #1376 12 68.477 -78.915 68.495 -78.792 68.592 -78.759 68.657 -78.684 68.687 -78.854 68.669 -78.978 68.612 -78.792 68.585 -78.894 68.556 -78.994 68.509 -79.076 68.480 -78.918 ; #1377 12 67.460 -77.299 67.363 -77.240 67.278 -77.018 67.269 -76.882 67.269 -76.743 67.278 -76.612 67.278 -76.485 67.305 -76.372 67.305 -76.232 67.296 -76.097 67.305 -75.966 67.334 -75.855 67.343 -75.724 67.391 -75.641 67.391 -75.514 67.447 -75.440 67.476 -75.328 67.523 -75.246 67.600 -75.179 67.697 -75.169 67.794 -75.184 67.900 -75.237 67.997 -75.292 68.053 -75.204 68.130 -75.137 68.227 -75.206 68.274 -75.380 68.283 -75.529 68.319 -75.693 68.358 -75.859 68.358 -75.999 68.339 -76.110 68.322 -76.234 68.360 -76.400 68.333 -76.514 68.324 -76.647 68.306 -76.758 68.267 -76.861 68.211 -76.936 68.164 -77.018 68.107 -77.103 68.051 -77.176 67.983 -77.239 67.868 -77.383 67.783 -77.440 67.686 -77.420 67.589 -77.364 67.483 -77.362 67.465 -77.309 ; #1378 12 59.156 -69.280 59.181 -69.342 59.165 -69.448 59.076 -69.394 58.978 -69.441 58.978 -69.324 59.067 -69.260 ; #1379 12 69.465 -77.200 69.465 -77.249 69.435 -77.362 69.338 -77.421 69.242 -77.439 69.145 -77.268 69.162 -77.143 69.154 -76.993 69.251 -77.000 69.289 -76.896 69.327 -76.803 69.424 -76.874 69.415 -77.008 69.463 -77.198 ; #1380 12 62.817 -70.701 62.862 -70.859 62.871 -70.999 62.897 -71.142 62.835 -71.213 62.835 -71.080 62.781 -70.903 62.781 -71.036 62.688 -70.950 62.586 -70.831 62.578 -70.703 62.569 -70.563 62.586 -70.456 62.679 -70.398 62.772 -70.543 ; #1381 12 62.955 -71.260 62.938 -71.246 62.938 -71.113 ; #1382 12 62.994 -71.269 62.968 -71.259 62.959 -71.119 62.996 -71.270 ; #1383 12 78.493 -88.300 78.483 -88.415 78.408 -88.469 78.386 -88.596 78.298 -88.602 78.318 -88.487 78.363 -88.397 78.428 -88.354 78.493 -88.296 ; #1384 12 72.496 -79.724 72.496 -79.778 72.393 -79.707 72.496 -79.721 ; #1385 12 60.588 -68.024 60.606 -68.143 60.569 -68.244 60.476 -68.292 60.431 -68.376 60.338 -68.434 60.246 -68.421 60.255 -68.298 60.283 -68.201 60.317 -68.109 60.345 -68.001 60.399 -67.924 60.492 -67.889 60.584 -68.018 ; #1386 12 68.371 -75.113 68.371 -75.062 68.380 -74.930 68.477 -74.984 68.525 -74.900 68.622 -75.056 68.719 -75.173 68.747 -75.342 68.700 -75.426 68.644 -75.513 68.538 -75.498 68.470 -75.304 68.373 -75.109 ; #1387 12 68.042 -73.773 68.033 -73.892 68.072 -74.057 68.100 -74.224 68.100 -74.365 68.197 -74.405 68.159 -74.498 68.103 -74.585 68.121 -74.731 68.112 -74.863 68.015 -74.899 67.909 -74.787 67.833 -74.574 67.814 -74.429 67.823 -74.298 67.833 -74.178 67.833 -74.038 67.814 -73.881 67.823 -73.762 67.814 -73.625 67.833 -73.502 68.026 -73.554 68.055 -73.722 68.047 -73.777 ; #1388 12 72.477 -79.105 72.486 -79.142 72.383 -79.129 72.474 -79.099 ; #1389 12 68.709 -74.881 68.700 -74.923 68.595 -74.909 68.595 -74.780 68.612 -74.656 68.709 -74.878 ; #1390 12 77.637 -85.521 77.627 -85.665 77.593 -85.785 77.593 -85.612 77.517 -85.336 77.527 -85.207 77.572 -85.101 77.637 -85.347 ; #1391 12 68.498 -74.447 68.498 -74.471 68.401 -74.454 68.294 -74.252 68.401 -74.239 68.498 -74.444 ; #1392 12 79.091 -86.115 79.081 -86.126 79.070 -86.259 79.049 -86.390 79.015 -86.513 78.960 -86.575 78.939 -86.691 78.928 -86.525 78.939 -86.392 78.949 -86.232 78.960 -86.072 78.981 -85.941 78.992 -85.781 79.002 -85.633 79.012 -85.501 79.081 -85.445 79.091 -85.624 ; #1393 12 76.221 -81.610 76.186 -81.547 76.231 -81.469 ; #1394 12 60.338 -64.589 60.384 -64.503 60.401 -64.505 60.474 -64.677 60.492 -64.808 60.483 -64.932 60.390 -64.817 60.373 -64.675 60.336 -64.590 ; #1395 12 71.775 -74.662 71.747 -74.630 71.775 -74.516 ; #1396 12 72.249 -74.873 72.269 -74.907 72.209 -74.976 ; #1397 12 61.624 -64.759 61.706 -64.951 61.723 -65.084 61.723 -65.204 61.714 -65.329 61.706 -65.443 61.688 -65.550 61.596 -65.503 61.542 -65.332 61.450 -65.168 61.441 -65.042 61.413 -64.890 61.467 -64.810 61.559 -64.784 61.624 -64.762 ; #1398 12 61.411 -64.827 61.419 -64.834 61.366 -64.925 ; #1399 12 61.966 -65.170 61.984 -65.253 61.949 -65.359 61.857 -65.290 61.792 -65.122 61.775 -64.977 61.868 -65.057 61.968 -65.166 ; #1400 12 71.335 -73.211 71.354 -73.113 71.457 -73.146 71.548 -73.097 71.517 -73.197 71.498 -73.311 71.601 -73.287 71.581 -73.400 71.500 -73.459 71.387 -73.403 71.337 -73.217 ; #1401 12 71.737 -73.359 71.706 -73.473 71.603 -73.496 71.672 -73.436 71.734 -73.356 ; #1402 12 65.765 -67.462 65.765 -67.572 65.729 -67.679 65.738 -67.562 65.765 -67.459 ; #1403 12 62.632 -64.991 62.640 -64.997 62.632 -65.112 62.578 -65.204 62.569 -65.065 ; #1404 12 71.684 -73.074 71.593 -73.111 71.574 -72.957 71.593 -72.843 71.706 -72.939 71.687 -73.077 ; #1405 12 62.567 -64.494 62.576 -64.501 62.593 -64.635 62.584 -64.749 62.602 -64.895 62.529 -64.962 62.455 -65.028 62.427 -64.874 62.410 -64.740 62.427 -64.632 62.520 -64.580 62.565 -64.493 ; #1406 12 71.088 -71.923 71.088 -72.068 71.028 -72.151 70.957 -72.209 70.947 -72.343 70.844 -72.130 70.885 -72.041 70.894 -71.918 70.914 -71.780 70.933 -71.667 70.933 -71.534 71.045 -71.602 71.064 -71.756 71.083 -71.921 ; #1407 12 63.586 -65.053 63.586 -65.149 63.493 -64.971 ; #1408 12 64.714 -65.336 64.751 -65.375 64.742 -65.492 64.680 -65.568 64.634 -65.668 64.542 -65.706 64.568 -65.603 64.604 -65.495 64.622 -65.385 64.714 -65.333 ; #1409 12 71.179 -71.178 71.189 -71.189 71.170 -71.302 71.098 -71.373 71.117 -71.247 71.177 -71.176 ; #1410 12 66.423 -66.913 66.432 -67.047 66.356 -66.856 66.374 -66.745 66.421 -66.911 ; #1411 12 64.380 -65.080 64.363 -65.190 64.271 -65.154 64.262 -65.024 64.354 -65.060 ; #1412 12 63.667 -64.416 63.685 -64.489 63.639 -64.589 63.547 -64.497 63.455 -64.461 63.353 -64.337 63.390 -64.242 63.482 -64.349 63.575 -64.395 ; #1413 12 63.771 -64.152 63.771 -64.275 63.734 -64.124 ; #1414 12 68.660 -68.078 68.633 -68.043 68.642 -67.922 ; #1415 12 77.920 -77.922 77.909 -78.068 77.831 -78.116 77.852 -77.986 77.917 -77.918 ; #1416 12 68.342 -67.039 68.324 -67.023 68.324 -66.894 ; #1417 12 68.186 -66.429 68.186 -66.405 68.283 -66.402 68.274 -66.522 68.256 -66.635 68.218 -66.731 68.209 -66.595 68.191 -66.439 ; #1418 12 68.207 -65.756 68.150 -65.719 68.186 -65.610 68.204 -65.754 ; #1419 12 67.675 -64.039 67.645 -64.089 67.548 -64.122 67.548 -63.982 67.578 -63.879 67.675 -64.033 ; #1420 12 67.305 -63.557 67.334 -63.469 67.361 -63.618 67.379 -63.772 67.311 -63.856 67.311 -63.705 67.303 -63.559 ; #1421 12 65.756 -62.338 65.756 -62.437 65.747 -62.567 65.641 -62.384 65.659 -62.273 ; #1422 12 67.152 -63.305 67.134 -63.303 67.152 -63.178 ; #1423 12 67.093 -63.065 67.120 -63.214 67.055 -63.023 ; #1424 12 66.308 -62.325 66.317 -62.344 66.249 -62.417 ; #1425 12 67.102 -62.999 67.093 -62.992 67.084 -62.846 67.111 -62.741 67.149 -62.644 67.226 -62.567 67.217 -62.698 67.169 -62.800 67.142 -62.905 67.104 -63.001 ; #1426 12 67.257 -62.577 67.276 -62.592 67.237 -62.700 67.255 -62.576 ; #1427 12 78.821 -74.756 78.745 -74.814 78.724 -74.621 78.802 -74.553 78.824 -74.760 ; #1428 12 53.937 -10.026 53.963 -9.962 54.050 -10.030 54.050 -10.041 54.042 -10.162 54.010 -10.269 54.002 -10.156 53.943 -10.024 ; #1429 12 53.128 -9.690 53.144 -9.693 53.168 -9.807 53.126 -9.690 ; #1430 5 50.618 -1.304 50.618 -1.294 50.642 -1.187 50.729 -1.085 50.771 -1.198 50.806 -1.321 50.703 -1.530 50.668 -1.418 ; #1431 12 14.397 -83.391 14.390 -83.391 14.298 -83.335 14.314 -83.328 ; #1432 12 70.047 -124.520 70.056 -124.472 70.159 -124.571 70.159 -124.715 70.109 -124.760 70.049 -124.527 ; #1433 12 10.443 -85.951 10.420 -85.948 10.336 -85.948 10.253 -85.913 10.162 -85.877 10.079 -85.802 10.064 -85.783 9.973 -85.720 9.957 -85.624 9.942 -85.528 9.909 -85.431 9.826 -85.332 9.810 -85.322 9.745 -85.280 9.688 -85.182 9.771 -85.113 9.855 -85.023 9.946 -85.002 10.029 -85.045 10.054 -85.143 10.085 -85.241 10.110 -85.261 10.126 -85.281 10.191 -85.334 10.283 -85.343 10.366 -85.378 10.333 -85.337 10.277 -85.314 10.251 -85.265 10.243 -85.169 10.178 -85.096 10.170 -85.069 10.087 -84.966 10.056 -84.925 10.040 -84.829 9.957 -84.795 9.874 -84.735 9.866 -84.735 9.783 -84.776 9.700 -84.724 9.609 -84.635 9.609 -84.532 9.584 -84.435 9.576 -84.408 9.561 -84.313 9.478 -84.242 9.445 -84.136 9.437 -84.127 9.387 -84.029 9.303 -83.929 9.230 -83.830 9.147 -83.750 9.064 -83.719 8.980 -83.696 8.922 -83.719 8.866 -83.733 8.783 -83.803 8.717 -83.854 8.634 -83.774 8.551 -83.703 8.543 -83.608 8.503 -83.511 8.469 -83.405 8.495 -83.398 8.578 -83.403 8.661 -83.454 8.727 -83.553 8.810 -83.596 8.835 -83.502 8.835 -83.493 8.752 -83.394 8.704 -83.296 8.613 -83.253 8.529 -83.222 8.447 -83.254 8.381 -83.155 8.298 -83.067 8.214 -83.025 8.131 -83.020 8.214 -83.016 8.298 -83.038 8.381 -83.089 8.381 -83.116 8.464 -83.112 8.520 -83.021 8.570 -82.958 8.578 -82.950 8.601 -82.951 8.642 -82.944 8.692 -82.947 8.775 -82.979 8.866 -83.030 8.949 -82.941 8.965 -82.924 9.005 -82.832 9.054 -82.843 9.128 -82.942 9.160 -83.039 9.243 -83.044 9.327 -83.041 9.410 -83.046 9.501 -83.042 9.584 -82.972 9.592 -82.946 9.650 -82.987 9.683 -82.885 9.600 -82.797 9.592 -82.721 9.657 -82.670 9.690 -82.718 9.723 -82.815 9.807 -82.915 9.890 -83.004 9.920 -83.023 10.004 -83.083 10.087 -83.129 10.087 -83.193 10.120 -83.223 10.203 -83.297 10.211 -83.298 10.294 -83.362 10.377 -83.434 10.385 -83.444 10.476 -83.508 10.642 -83.600 10.665 -83.611 10.723 -83.635 10.806 -83.738 10.840 -83.704 10.923 -83.703 11.006 -83.750 10.965 -83.763 10.874 -83.771 10.859 -83.865 10.826 -83.936 10.803 -84.029 10.834 -84.059 10.849 -84.164 10.864 -84.260 10.864 -84.287 10.905 -84.317 10.996 -84.382 11.079 -84.457 11.039 -84.508 11.105 -84.636 11.145 -84.735 11.120 -84.836 11.079 -84.898 11.031 -84.997 11.064 -85.095 11.089 -85.162 11.120 -85.260 11.145 -85.309 11.186 -85.397 11.201 -85.493 11.234 -85.591 11.292 -85.701 11.284 -85.710 11.161 -85.780 11.105 -85.830 11.021 -85.821 11.021 -85.916 10.956 -85.947 10.890 -85.845 10.824 -85.743 10.657 -85.763 10.625 -85.855 10.542 -85.855 10.450 -85.930 ; #1434 12 9.520 -82.333 9.520 -82.360 9.437 -82.309 9.520 -82.331 ; #1435 12 9.435 -82.260 9.419 -82.259 9.396 -82.163 9.437 -82.260 ; #1436 12 72.158 -106.569 72.177 -106.560 72.187 -106.710 72.149 -106.786 72.046 -106.709 72.137 -106.699 72.156 -106.568 ; #1437 12 0.969 -79.708 0.944 -79.699 0.977 -79.699 1.002 -79.718 ; #1438 12 67.219 -107.786 67.122 -107.598 67.152 -107.509 67.237 -107.748 ; #1439 12 32.311 -64.928 32.362 -64.833 32.321 -64.930 32.313 -64.928 ; #1440 12 -22.137 -62.728 -22.220 -62.653 -22.279 -62.556 -22.361 -62.471 -22.369 -62.434 -22.425 -62.336 -22.508 -62.338 -22.592 -62.273 -22.675 -62.217 -22.766 -62.144 -22.849 -62.097 -22.932 -62.043 -22.980 -61.944 -23.064 -61.859 -23.147 -61.814 -23.180 -61.722 -23.236 -61.624 -23.310 -61.537 -23.350 -61.446 -23.366 -61.430 -23.424 -61.332 -23.464 -61.241 -23.480 -61.213 -23.571 -61.199 -23.654 -61.125 -23.669 -61.117 -23.701 -61.025 -23.751 -60.926 -23.758 -60.880 -23.774 -60.785 -23.789 -60.691 -23.846 -60.601 -23.870 -60.508 -23.894 -60.425 -23.894 -60.407 -23.910 -60.313 -23.902 -60.215 -23.902 -60.100 -23.910 -60.101 -23.958 -60.011 -24.014 -59.912 -24.072 -59.824 -24.113 -59.732 -24.178 -59.644 -24.236 -59.555 -24.320 -59.469 -24.385 -59.371 -24.385 -59.353 -24.443 -59.264 -24.466 -59.170 -24.525 -59.072 -24.590 -58.983 -24.648 -58.894 -24.664 -58.790 -24.689 -58.697 -24.704 -58.593 -24.760 -58.503 -24.844 -58.437 -24.803 -58.335 -24.853 -58.236 -24.861 -58.227 -24.902 -58.136 -24.935 -58.034 -24.958 -57.940 -25.024 -57.853 -25.107 -57.811 -25.122 -57.796 -25.148 -57.762 -25.230 -57.739 -25.304 -57.655 -25.387 -57.670 -25.471 -57.724 -25.511 -57.828 -25.594 -57.862 -25.678 -57.906 -25.701 -57.919 -25.784 -57.973 -25.867 -57.988 -25.950 -58.109 -25.998 -58.215 -26.090 -58.214 -26.173 -58.277 -26.256 -58.319 -26.339 -58.316 -26.430 -58.294 -26.446 -58.279 -26.536 -58.352 -26.620 -58.406 -26.711 -58.432 -26.726 -58.462 -26.775 -58.577 -26.858 -58.611 -26.941 -58.665 -27.032 -58.768 -27.115 -58.706 -27.155 -58.713 -27.132 -58.611 -27.132 -58.505 -27.117 -58.405 -27.109 -58.296 -27.125 -58.202 -27.109 -58.101 -27.125 -58.007 -27.132 -57.902 -27.165 -57.810 -27.213 -57.712 -27.229 -57.618 -27.262 -57.517 -27.270 -57.421 -27.302 -57.329 -27.328 -57.236 -27.302 -57.125 -27.254 -57.019 -27.302 -56.930 -27.343 -56.839 -27.295 -56.754 -27.295 -56.647 -27.378 -56.576 -27.426 -56.478 -27.343 -56.424 -27.260 -56.391 -27.169 -56.289 -27.136 -56.176 -27.169 -56.085 -27.185 -55.990 -27.268 -55.898 -27.235 -55.815 -27.144 -55.702 -27.053 -55.694 -26.970 -55.671 -26.803 -55.467 -26.778 -55.356 -26.786 -55.339 -26.778 -55.240 -26.687 -55.224 -26.631 -55.117 -26.598 -55.064 -26.508 -55.030 -26.508 -54.933 -26.424 -54.900 -26.333 -54.875 -26.250 -54.813 -26.167 -54.789 -26.084 -54.784 -26.018 -54.764 -25.935 -54.758 -25.844 -54.770 -25.761 -54.728 -25.678 -54.705 -25.594 -54.738 -25.503 -54.749 -25.430 -54.709 -25.422 -54.708 -25.356 -54.706 -25.323 -54.709 -25.275 -54.709 -25.192 -54.668 -25.109 -54.595 -25.025 -54.554 -24.935 -54.559 -24.851 -54.549 -24.760 -54.520 -24.677 -54.510 -24.587 -54.460 -24.513 -54.433 -24.430 -54.423 -24.339 -54.439 -24.256 -54.382 -24.165 -54.371 -24.081 -54.428 -23.991 -54.444 -23.908 -54.358 -23.867 -54.418 -23.859 -54.426 -23.786 -54.514 -23.729 -54.604 -23.689 -54.695 -23.704 -54.794 -23.737 -54.904 -23.803 -55.009 -23.836 -55.110 -23.844 -55.129 -23.859 -55.227 -23.867 -55.334 -23.851 -55.428 -23.810 -55.520 -23.727 -55.528 -23.637 -55.535 -23.553 -55.552 -23.462 -55.626 -23.379 -55.625 -23.364 -55.631 -23.281 -55.612 -23.189 -55.648 -23.106 -55.629 -23.074 -55.634 -22.990 -55.682 -22.907 -55.690 -22.824 -55.727 -22.733 -55.744 -22.650 -55.743 -22.567 -55.715 -22.476 -55.742 -22.410 -55.830 -22.319 -55.837 -22.236 -55.874 -22.178 -55.963 -22.162 -56.057 -22.147 -56.152 -22.147 -56.257 -22.098 -56.348 -22.042 -56.437 -21.959 -56.492 -21.951 -56.587 -21.983 -56.620 -22.008 -56.641 -22.098 -56.729 -22.124 -56.829 -22.164 -56.930 -22.116 -57.021 -22.100 -57.095 -22.108 -57.193 -22.077 -57.294 -22.077 -57.390 -22.070 -57.486 -22.062 -57.581 -22.038 -57.643 -21.988 -57.742 -21.981 -57.838 -22.006 -57.937 -21.990 -58.032 -21.967 -58.076 -21.876 -58.064 -21.793 -58.027 -21.702 -58.033 -21.654 -58.027 -21.580 -57.989 -21.565 -57.995 -21.481 -58.021 -21.449 -58.007 -21.365 -58.035 -21.282 -57.986 -21.191 -57.974 -21.108 -57.937 -21.025 -57.935 -20.934 -57.942 -20.851 -57.904 -20.768 -57.990 -20.684 -58.035 -20.593 -57.977 -20.568 -58.070 -20.485 -58.086 -20.394 -58.092 -20.311 -58.091 -20.228 -58.176 -20.145 -58.241 -20.054 -58.239 -19.980 -58.212 -19.889 -58.211 -19.798 -58.237 -19.715 -58.236 -19.584 -58.450 -19.500 -58.595 -19.417 -58.738 -19.361 -58.845 -19.328 -58.898 -19.189 -59.132 -19.181 -59.150 -19.181 -59.274 -19.189 -59.418 -19.189 -60.009 -19.197 -60.075 -19.212 -60.134 -19.237 -60.242 -19.261 -60.350 -19.293 -60.458 -19.319 -60.575 -19.351 -60.683 -19.359 -60.722 -19.375 -60.829 -19.390 -60.936 -19.406 -61.051 -19.421 -61.149 -19.446 -61.256 -19.462 -61.363 -19.477 -61.479 -19.493 -61.585 -19.508 -61.692 -19.539 -61.810 -19.622 -61.837 -19.705 -61.864 -19.789 -61.900 -19.880 -61.929 -19.953 -61.955 -19.961 -61.965 -20.009 -61.999 -20.092 -62.058 -20.175 -62.125 -20.266 -62.184 -20.350 -62.242 -20.350 -62.251 -20.433 -62.309 -20.441 -62.310 -20.531 -62.314 -20.615 -62.307 -20.698 -62.310 -20.789 -62.313 -20.872 -62.306 -20.963 -62.319 -21.046 -62.348 -21.129 -62.368 -21.296 -62.426 -21.379 -62.447 -21.470 -62.477 -21.553 -62.506 -21.561 -62.507 -21.601 -62.522 -21.684 -62.542 -21.768 -62.571 -21.851 -62.601 -21.942 -62.631 -22.025 -62.651 -22.108 -62.681 ; #1441 12 66.811 -84.445 66.811 -84.456 66.793 -84.450 ; #1442 12 1.625 7.389 1.633 7.398 1.716 7.427 1.799 7.398 1.716 7.323 ; #1443 12 4.527 7.425 4.575 7.519 4.567 7.425 4.535 7.330 ; #1444 12 59.753 -64.264 59.744 -64.140 59.780 -64.035 59.870 -64.117 59.842 -64.203 59.764 -64.254 59.755 -64.260 ; #1445 12 63.315 -66.784 63.407 -66.748 63.344 -66.822 63.317 -66.789 ; #1446 12 66.144 -63.011 66.153 -63.018 66.153 -63.029 ; #1447 12 83.019 -78.590 83.045 -78.454 83.088 -78.343 83.101 -78.536 83.033 -78.624 ; #1448 12 11.073 -15.003 11.081 -14.966 11.066 -14.871 11.081 -14.776 11.122 -14.673 11.056 -14.776 10.965 -14.744 10.882 -14.771 10.799 -14.760 10.882 -14.667 10.799 -14.636 10.882 -14.592 10.973 -14.511 10.890 -14.546 10.806 -14.610 10.758 -14.626 10.667 -14.632 10.584 -14.668 10.584 -14.564 10.609 -14.537 10.518 -14.552 10.435 -14.465 10.352 -14.463 10.336 -14.368 10.263 -14.271 10.240 -14.176 10.157 -14.145 10.247 -14.083 10.271 -14.018 10.180 -13.998 10.106 -14.025 10.106 -14.016 10.033 -13.910 9.959 -13.814 10.000 -13.720 10.056 -13.695 10.048 -13.686 9.957 -13.721 9.874 -13.758 9.874 -13.663 9.948 -13.655 9.865 -13.579 9.781 -13.624 9.690 -13.660 9.624 -13.564 9.665 -13.501 9.582 -13.526 9.524 -13.431 9.441 -13.430 9.449 -13.326 9.365 -13.325 9.282 -13.314 9.365 -13.250 9.282 -13.173 9.249 -13.277 9.191 -13.305 9.143 -13.304 9.184 -13.229 9.150 -13.125 9.201 -13.031 9.292 -12.978 9.292 -12.949 9.383 -12.913 9.398 -12.819 9.481 -12.764 9.564 -12.691 9.656 -12.665 9.739 -12.601 9.795 -12.584 9.878 -12.521 9.961 -12.522 10.002 -12.428 10.027 -12.325 10.012 -12.221 9.988 -12.126 9.996 -12.089 10.019 -11.985 10.102 -11.892 10.102 -11.289 10.062 -11.184 9.978 -11.174 9.922 -11.078 9.839 -11.002 9.756 -10.955 9.665 -10.890 9.582 -10.860 9.499 -10.823 9.450 -10.719 9.359 -10.700 9.276 -10.754 9.186 -10.698 9.170 -10.603 9.154 -10.603 9.071 -10.630 8.980 -10.620 8.897 -10.584 8.814 -10.517 8.723 -10.581 8.640 -10.655 8.557 -10.683 8.466 -10.737 8.392 -10.736 8.441 -10.708 8.441 -10.613 8.473 -10.519 8.557 -10.456 8.622 -10.362 8.607 -10.298 8.615 -10.232 8.630 -10.138 8.557 -10.033 8.557 -10.024 8.613 -9.930 8.613 -9.913 8.678 -9.810 8.605 -9.726 8.531 -9.621 8.466 -9.525 8.433 -9.563 8.407 -9.553 8.317 -9.561 8.234 -9.496 8.150 -9.504 8.176 -9.476 8.117 -9.457 8.034 -9.474 7.943 -9.446 7.860 -9.399 7.777 -9.424 7.686 -9.423 7.603 -9.459 7.512 -9.514 7.479 -9.522 7.504 -9.447 7.535 -9.344 7.527 -9.336 7.479 -9.240 7.396 -9.175 7.312 -9.157 7.328 -9.128 7.361 -9.034 7.402 -8.980 7.417 -8.885 7.508 -8.869 7.591 -8.786 7.675 -8.770 7.723 -8.761 7.814 -8.725 7.806 -8.621 7.806 -8.604 7.740 -8.612 7.675 -8.527 7.715 -8.473 7.715 -8.378 7.675 -8.303 7.667 -8.265 7.750 -8.240 7.833 -8.166 7.916 -8.141 7.973 -8.176 8.063 -8.142 8.146 -8.115 8.146 -8.106 8.131 -8.011 8.197 -8.058 8.288 -8.105 8.303 -8.200 8.386 -8.296 8.469 -8.279 8.553 -8.297 8.601 -8.203 8.616 -8.109 8.609 -8.015 8.535 -7.919 8.535 -7.824 8.485 -7.729 8.485 -7.700 8.501 -7.709 8.584 -7.728 8.750 -7.747 8.833 -7.814 8.881 -7.909 8.907 -8.013 8.990 -7.986 9.081 -7.978 9.154 -7.884 9.178 -7.789 9.236 -7.854 9.276 -7.950 9.359 -7.959 9.450 -7.931 9.524 -7.915 9.491 -8.018 9.514 -8.113 9.598 -8.189 9.681 -8.190 9.771 -8.182 9.855 -8.174 9.903 -8.166 9.994 -8.185 10.077 -8.195 10.093 -8.187 10.100 -8.187 10.116 -8.178 10.172 -8.084 10.255 -8.022 10.346 -7.995 10.429 -8.035 10.437 -8.130 10.520 -8.168 10.528 -8.186 10.503 -8.232 10.586 -8.318 10.677 -8.337 10.760 -8.339 10.851 -8.350 10.934 -8.351 11.025 -8.335 11.081 -8.336 11.131 -8.432 11.147 -8.536 11.056 -8.590 11.056 -8.656 11.041 -8.719 11.124 -8.695 11.207 -8.659 11.290 -8.594 11.381 -8.512 11.374 -8.417 11.457 -8.410 11.497 -8.486 11.581 -8.582 11.565 -8.611 11.605 -8.707 11.689 -8.735 11.737 -8.753 11.745 -8.754 11.722 -8.789 11.722 -8.797 11.770 -8.873 11.853 -8.857 11.936 -8.842 12.085 -8.845 12.116 -8.940 12.200 -8.942 12.283 -9.010 12.298 -9.028 12.306 -9.028 12.389 -9.003 12.472 -9.031 12.513 -9.127 12.538 -9.174 12.561 -9.259 12.576 -9.354 12.576 -9.363 12.561 -9.401 12.478 -9.370 12.395 -9.342 12.329 -9.387 12.329 -9.491 12.271 -9.584 12.230 -9.687 12.147 -9.714 12.107 -9.808 12.132 -9.904 12.164 -9.942 12.196 -10.047 12.228 -10.085 12.254 -10.180 12.269 -10.276 12.294 -10.371 12.211 -10.465 12.138 -10.558 12.055 -10.620 11.971 -10.693 12.027 -10.779 12.110 -10.838 12.202 -10.876 12.292 -10.952 12.285 -11.047 12.269 -11.085 12.186 -11.138 12.103 -11.200 12.070 -11.275 12.120 -11.371 12.128 -11.380 12.202 -11.476 12.232 -11.515 12.306 -11.488 12.389 -11.463 12.480 -11.410 12.505 -11.506 12.497 -11.609 12.472 -11.704 12.449 -11.798 12.465 -11.894 12.465 -11.989 12.480 -12.084 12.439 -12.178 12.424 -12.196 12.409 -12.299 12.393 -12.336 12.377 -12.373 12.461 -12.470 12.453 -12.565 12.437 -12.611 12.511 -12.708 12.536 -12.804 12.602 -12.910 12.546 -13.003 12.586 -13.099 12.602 -13.100 12.685 -13.084 12.718 -13.180 12.718 -13.275 12.726 -13.339 12.733 -13.386 12.741 -13.490 12.749 -13.585 12.749 -13.746 12.683 -13.754 12.592 -13.714 12.509 -13.674 12.453 -13.701 12.369 -13.728 12.329 -13.822 12.321 -13.925 12.273 -13.999 12.232 -13.998 12.232 -13.972 12.176 -13.867 12.110 -13.770 12.027 -13.750 11.944 -13.748 11.853 -13.737 11.770 -13.818 11.754 -13.913 11.729 -14.007 11.729 -14.102 11.745 -14.178 11.752 -14.273 11.687 -14.366 11.646 -14.460 11.598 -14.554 11.598 -14.649 11.573 -14.743 11.489 -14.807 11.398 -14.851 11.316 -14.875 11.232 -14.919 11.141 -14.963 11.058 -15.027 ; #1449 12 51.666 -10.058 51.708 -9.967 51.716 -9.858 51.732 -9.751 51.767 -9.646 51.741 -9.521 51.714 -9.627 51.682 -9.732 51.613 -9.843 51.648 -9.727 51.664 -9.620 51.613 -9.722 51.526 -9.796 51.561 -9.691 51.577 -9.584 51.569 -9.462 51.561 -9.351 51.611 -9.138 51.619 -9.029 51.645 -8.923 51.637 -8.802 51.696 -8.700 51.670 -8.586 51.757 -8.524 51.765 -8.472 51.797 -8.366 51.884 -8.368 51.936 -8.486 51.953 -8.444 51.953 -8.357 51.945 -8.246 51.858 -8.277 51.866 -8.158 51.916 -8.055 51.943 -7.948 52.030 -7.916 52.030 -7.906 52.003 -7.858 52.030 -7.751 52.054 -7.644 52.141 -7.667 52.149 -7.637 52.149 -7.583 52.173 -7.465 52.190 -7.357 52.181 -7.258 52.181 -7.148 52.234 -7.044 52.321 -7.056 52.329 -7.067 52.329 -7.057 52.337 -7.058 52.329 -7.046 52.295 -7.041 52.208 -6.943 52.259 -6.839 52.250 -6.727 52.234 -6.604 52.234 -6.494 52.277 -6.388 52.371 -6.445 52.406 -6.559 52.406 -6.472 52.430 -6.431 52.517 -6.354 52.604 -6.268 52.699 -6.290 52.786 -6.213 52.802 -6.215 52.889 -6.161 52.976 -6.084 53.072 -6.117 53.158 -6.107 53.245 -6.159 53.272 -6.173 53.359 -6.249 53.401 -6.285 53.444 -6.179 53.486 -6.205 53.511 -6.208 53.527 -6.166 53.603 -6.142 53.664 -6.261 53.715 -6.302 53.757 -6.307 53.800 -6.302 53.887 -6.313 53.929 -6.431 54.016 -6.421 54.024 -6.310 54.058 -6.202 54.117 -6.322 54.125 -6.323 54.141 -6.403 54.091 -6.428 54.091 -6.439 54.083 -6.550 54.074 -6.661 54.117 -6.708 54.204 -6.709 54.204 -6.788 54.291 -6.911 54.352 -6.919 54.420 -7.017 54.404 -7.138 54.362 -7.245 54.335 -7.252 54.285 -7.200 54.198 -7.288 54.182 -7.307 54.174 -7.340 54.158 -7.369 54.141 -7.356 54.150 -7.391 54.166 -7.469 54.174 -7.491 54.158 -7.601 54.208 -7.720 54.234 -7.744 54.226 -7.754 54.226 -7.866 54.321 -7.924 54.330 -7.980 54.364 -8.030 54.433 -8.152 54.449 -8.175 54.500 -8.138 54.507 -8.094 54.550 -7.987 54.566 -7.877 54.582 -7.859 54.625 -7.752 54.633 -7.787 54.720 -7.912 54.712 -7.798 54.762 -7.693 54.815 -7.576 54.839 -7.525 54.839 -7.514 54.848 -7.516 54.864 -7.496 54.951 -7.453 54.975 -7.446 55.001 -7.429 55.037 -7.413 55.072 -7.305 55.072 -7.295 55.132 -7.225 55.176 -7.119 55.255 -7.017 55.280 -7.134 55.342 -7.256 55.298 -7.363 55.282 -7.474 55.230 -7.590 55.132 -7.499 55.043 -7.520 54.999 -7.626 54.999 -7.668 55.051 -7.676 55.095 -7.569 55.184 -7.627 55.273 -7.697 55.257 -7.807 55.167 -7.762 55.167 -7.876 55.211 -7.996 55.167 -8.101 55.151 -8.223 55.151 -8.336 55.062 -8.387 55.001 -8.491 54.932 -8.491 54.845 -8.423 54.853 -8.548 54.758 -8.513 54.775 -8.628 54.748 -8.747 54.661 -8.800 54.627 -8.683 54.627 -8.559 54.594 -8.442 54.610 -8.331 54.603 -8.218 54.516 -8.250 54.489 -8.311 54.481 -8.423 54.481 -8.502 54.413 -8.604 54.344 -8.670 54.293 -8.539 54.241 -8.655 54.275 -8.772 54.267 -8.883 54.301 -9.011 54.267 -9.118 54.180 -9.171 54.154 -9.177 54.170 -9.180 54.257 -9.234 54.326 -9.357 54.317 -9.479 54.326 -9.593 54.326 -9.705 54.267 -9.808 54.275 -9.898 54.232 -10.014 54.319 -10.039 54.232 -10.090 54.145 -10.108 54.232 -10.032 54.174 -9.968 54.087 -10.000 54.111 -9.891 54.016 -9.886 53.929 -9.829 53.963 -9.855 53.921 -9.960 53.878 -9.944 53.895 -9.834 53.921 -9.726 53.895 -9.610 53.808 -9.617 53.808 -9.739 53.791 -9.849 53.723 -9.950 53.636 -9.849 53.628 -9.736 53.619 -9.799 53.636 -9.913 53.628 -10.034 53.593 -10.029 53.569 -10.035 53.593 -10.060 53.551 -10.165 53.492 -10.044 53.433 -10.147 53.407 -10.031 53.449 -9.949 53.442 -9.837 53.355 -9.888 53.346 -9.765 53.346 -9.653 53.259 -9.552 53.268 -9.441 53.276 -9.321 53.276 -9.210 53.292 -9.101 53.250 -9.050 53.250 -8.928 53.181 -9.030 53.154 -9.124 53.163 -9.237 53.120 -9.342 53.033 -9.427 52.946 -9.393 52.772 -9.566 52.740 -9.672 52.671 -9.772 52.602 -9.883 52.618 -9.775 52.643 -9.657 52.651 -9.638 52.667 -9.529 52.641 -9.404 52.632 -9.292 52.648 -9.183 52.735 -9.085 52.804 -8.974 52.728 -8.898 52.703 -8.773 52.695 -8.850 52.687 -8.960 52.655 -9.066 52.647 -9.176 52.614 -9.282 52.614 -9.457 52.606 -9.566 52.606 -9.688 52.519 -9.752 52.477 -9.856 52.469 -9.966 52.374 -9.874 52.287 -9.817 52.279 -9.926 52.295 -10.039 52.346 -10.067 52.277 -10.167 52.311 -10.283 52.268 -10.398 52.226 -10.502 52.139 -10.478 52.155 -10.370 52.163 -10.260 52.163 -10.150 52.179 -10.032 52.188 -9.946 52.161 -9.831 52.170 -9.943 52.083 -10.040 52.083 -10.060 52.066 -10.168 52.032 -10.284 51.945 -10.311 51.911 -10.416 51.824 -10.372 51.824 -10.261 51.791 -10.146 51.815 -10.030 51.824 -10.011 51.840 -9.903 51.882 -9.799 51.882 -9.678 51.856 -9.795 51.787 -9.895 51.795 -9.939 51.718 -10.038 51.710 -10.047 51.633 -10.145 51.641 -10.036 ; #1450 12 5.206 -3.112 5.239 -3.215 5.181 -3.120 5.181 -3.111 ; #1451 12 7.986 2.681 7.961 2.699 7.920 2.717 7.837 2.735 7.754 2.726 7.698 2.735 7.615 2.774 7.531 2.802 7.516 2.756 7.433 2.756 7.334 2.766 7.251 2.775 7.167 2.767 7.085 2.729 6.994 2.748 6.910 2.739 6.819 2.786 6.736 2.740 6.695 2.749 6.612 2.732 6.554 2.714 6.464 2.715 6.479 2.809 6.487 2.913 6.487 3.007 6.479 3.102 6.487 3.197 6.487 3.300 6.494 3.394 6.560 3.377 6.568 3.385 6.583 3.385 6.667 3.431 6.626 3.526 6.641 3.629 6.699 3.713 6.707 3.807 6.624 3.713 6.599 3.609 6.550 3.515 6.550 3.392 6.543 3.392 6.510 3.487 6.518 3.581 6.518 3.676 6.526 3.770 6.526 3.865 6.518 3.968 6.510 4.063 6.494 4.166 6.487 4.261 6.471 4.316 6.456 4.411 6.430 4.457 6.374 4.552 6.301 4.656 6.235 4.750 6.152 4.814 6.069 4.909 5.986 4.975 5.962 4.993 5.955 5.002 5.871 5.048 5.945 5.143 5.953 5.160 6.009 5.254 6.009 5.272 5.984 5.263 5.935 5.169 5.862 5.075 5.779 5.092 5.696 5.187 5.746 5.282 5.829 5.318 5.804 5.328 5.721 5.310 5.753 5.405 5.696 5.500 5.688 5.491 5.688 5.396 5.680 5.301 5.688 5.273 5.622 5.178 5.531 5.263 5.500 5.366 5.540 5.403 5.548 5.421 5.614 5.515 5.630 5.598 5.546 5.515 5.488 5.561 5.457 5.467 5.450 5.458 5.465 5.363 5.382 5.338 5.291 5.347 5.299 5.441 5.250 5.479 5.200 5.450 5.117 5.422 5.034 5.440 4.943 5.486 4.935 5.495 4.852 5.541 4.819 5.550 4.736 5.587 4.653 5.671 4.579 5.774 4.571 5.774 4.488 5.858 4.504 5.952 4.496 5.970 4.413 6.016 4.496 6.016 4.529 6.025 4.445 6.053 4.390 6.082 4.397 6.185 4.481 6.203 4.571 6.211 4.604 6.211 4.521 6.229 4.438 6.220 4.423 6.315 4.445 6.409 4.438 6.512 4.529 6.550 4.595 6.532 4.618 6.523 4.610 6.532 4.595 6.532 4.537 6.570 4.453 6.579 4.537 6.633 4.620 6.625 4.645 6.642 4.554 6.651 4.645 6.669 4.660 6.677 4.718 6.695 4.635 6.686 4.545 6.686 4.461 6.677 4.453 6.761 4.537 6.790 4.620 6.771 4.711 6.789 4.794 6.734 4.885 6.717 4.908 6.754 4.817 6.745 4.734 6.809 4.711 6.818 4.628 6.792 4.545 6.829 4.486 6.923 4.569 6.950 4.585 6.941 4.676 6.941 4.759 6.877 4.792 6.868 4.815 6.963 4.774 6.991 4.691 6.974 4.608 6.991 4.575 7.086 4.658 7.123 4.742 7.114 4.825 7.031 4.759 7.125 4.676 7.200 4.660 7.209 4.693 7.312 4.693 7.321 4.670 7.415 4.701 7.479 4.784 7.479 4.817 7.517 4.734 7.499 4.686 7.525 4.630 7.620 4.614 7.723 4.630 7.723 4.645 7.826 4.653 7.921 4.668 8.024 4.668 8.119 4.653 8.222 4.736 8.316 4.819 8.290 4.910 8.252 4.943 8.224 4.951 8.233 5.042 8.198 5.017 8.224 4.933 8.298 4.959 8.382 4.867 8.364 4.819 8.459 4.902 8.505 4.927 8.552 4.960 8.598 5.043 8.626 5.134 8.681 5.218 8.718 5.301 8.782 5.374 8.790 5.457 8.790 5.548 8.819 5.632 8.828 5.723 8.874 5.805 8.790 5.847 8.819 5.937 8.819 5.970 8.865 6.018 8.959 6.102 9.014 6.185 9.089 6.259 9.183 6.349 9.267 6.432 9.322 6.506 9.417 6.539 9.500 6.622 9.583 6.622 9.658 6.630 9.658 6.713 9.676 6.796 9.713 6.887 9.788 6.936 9.883 6.986 9.946 7.051 10.021 7.067 10.124 6.976 10.219 6.976 10.454 7.059 10.492 7.143 10.510 7.233 10.538 7.143 10.585 7.094 10.679 7.061 10.782 6.895 10.857 6.879 10.952 6.839 10.998 6.672 11.015 6.582 11.033 6.574 11.042 6.541 11.136 6.541 11.200 6.548 11.294 6.639 11.350 6.705 11.388 6.761 11.491 6.844 11.508 6.928 11.480 7.011 11.544 7.094 11.639 7.160 11.733 7.243 11.790 7.326 11.724 7.410 11.733 7.500 11.790 7.549 11.846 7.632 11.921 7.715 11.967 7.806 11.958 7.889 11.996 7.980 12.060 8.063 12.135 8.104 12.126 8.187 12.118 8.270 12.164 8.354 12.164 8.437 12.155 8.528 12.202 8.561 12.296 8.601 12.343 8.684 12.316 8.700 12.334 8.692 12.334 8.708 12.428 8.716 12.532 8.781 12.627 8.864 12.722 8.947 12.740 9.031 12.749 9.114 12.766 9.205 12.767 9.238 12.776 9.321 12.822 9.336 12.822 9.419 12.831 9.445 12.756 9.445 12.774 9.594 12.964 9.602 13.067 9.685 13.162 9.717 13.153 9.801 13.171 9.884 13.200 9.974 13.143 10.058 13.172 10.081 13.172 10.097 13.163 10.180 13.227 10.187 13.302 10.221 13.340 10.269 13.375 10.352 13.384 10.443 13.402 10.526 13.412 10.609 13.429 10.700 13.456 10.791 13.503 10.874 13.569 10.958 13.616 11.013 13.672 11.097 13.672 11.188 13.756 11.271 13.803 11.271 13.812 11.354 13.896 11.346 13.942 11.314 14.037 11.362 14.132 11.420 14.227 11.476 14.331 11.534 14.427 11.617 14.522 11.708 14.531 11.791 14.457 11.874 14.503 11.965 14.521 12.049 14.530 12.132 14.531 12.223 14.560 12.288 14.465 12.371 14.408 12.412 14.353 12.420 14.316 12.420 14.117 12.435 14.079 12.509 14.080 12.542 14.088 12.633 14.080 12.799 14.045 12.883 14.028 12.966 14.011 13.049 13.993 13.148 13.976 13.196 13.930 13.287 13.875 13.370 13.820 13.468 13.745 13.509 13.717 13.517 13.708 13.608 13.653 13.691 13.589 13.774 13.532 13.774 13.258 13.733 13.229 13.701 13.182 13.618 13.153 13.602 12.962 13.562 12.867 13.503 12.772 13.420 12.668 13.337 12.572 13.289 12.477 13.205 12.430 13.132 12.335 13.140 12.251 13.173 12.156 13.165 12.061 13.165 12.052 13.221 11.948 13.236 11.902 13.293 11.807 13.333 11.712 13.349 11.636 13.379 11.541 13.405 11.446 13.430 11.342 13.430 11.143 13.414 11.048 13.414 10.953 13.422 10.849 13.438 10.754 13.438 10.659 13.430 10.554 13.414 10.508 13.381 10.404 13.351 10.214 13.335 10.110 13.287 10.015 13.238 9.920 13.223 9.882 13.140 9.787 13.056 9.723 12.966 9.639 12.867 9.555 12.875 9.471 12.875 9.376 12.890 9.329 12.883 9.226 12.890 9.121 12.905 9.026 12.905 8.931 12.913 8.885 12.921 8.867 12.946 8.772 12.979 8.677 13.020 8.582 13.110 8.506 13.144 8.411 13.118 8.356 13.159 8.327 13.233 8.223 13.273 8.176 13.273 8.167 13.329 8.072 13.370 7.968 13.385 7.864 13.401 7.760 13.393 7.734 13.327 7.621 13.271 7.517 13.205 7.405 13.157 7.292 13.173 7.196 13.180 7.161 13.114 7.104 13.082 7.069 13.049 6.974 13.049 6.907 13.114 6.795 13.205 6.727 13.289 6.681 13.379 6.634 13.470 6.550 13.554 6.474 13.652 6.369 13.677 6.332 13.733 6.227 13.701 6.124 13.733 6.019 13.767 5.907 13.850 5.698 13.890 5.594 13.938 5.498 13.923 5.424 13.890 5.319 13.799 5.236 13.792 5.169 13.799 5.056 13.784 4.952 13.784 4.897 13.817 4.802 13.792 4.689 13.769 4.585 13.761 4.521 13.728 4.426 13.637 4.314 13.538 4.210 13.490 4.106 13.407 4.107 13.316 4.099 13.225 4.100 13.142 4.082 13.043 4.065 12.960 4.011 12.877 3.965 12.778 3.881 12.695 3.769 12.612 3.666 12.521 3.629 12.437 3.638 12.347 3.639 12.256 3.622 12.157 3.614 12.066 3.643 12.033 3.634 11.935 3.600 11.851 3.656 11.760 3.590 11.760 3.581 11.752 3.573 11.745 3.564 11.720 3.546 11.629 3.511 11.545 3.474 11.447 3.493 11.364 3.559 11.273 3.615 11.190 3.711 11.141 3.711 11.058 3.729 10.967 3.747 10.919 3.730 10.828 3.760 10.745 3.824 10.661 3.834 10.571 3.788 10.488 3.733 10.503 3.638 10.412 3.593 10.329 3.576 10.230 3.660 10.147 3.603 10.074 3.595 10.042 3.595 9.959 3.540 9.926 3.446 9.893 3.343 9.837 3.314 9.747 3.332 9.706 3.237 9.615 3.200 9.516 3.117 9.433 3.146 9.350 3.138 9.259 3.112 9.176 3.074 9.143 2.971 9.143 2.773 9.060 2.765 8.977 2.765 8.893 2.747 8.853 2.730 8.770 2.730 8.686 2.740 8.620 2.740 8.537 2.732 8.447 2.703 8.363 2.713 8.280 2.731 8.189 2.713 8.106 2.696 8.081 2.697 7.997 2.679 7.982 2.670 ; #1452 12 4.577 6.557 4.593 6.557 4.601 6.548 ; #1453 12 34.101 7.519 34.093 7.519 34.002 7.511 33.919 7.502 33.836 7.531 33.820 7.531 33.737 7.550 33.654 7.609 33.555 7.677 33.472 7.717 33.340 7.718 33.250 7.788 33.234 7.897 33.176 7.997 33.153 8.097 33.054 8.176 32.963 8.246 32.864 8.304 32.766 8.314 32.675 8.333 32.592 8.343 32.559 8.391 32.503 8.491 32.437 8.600 32.305 8.817 32.232 8.935 32.158 9.043 32.068 9.073 32.060 9.073 31.969 9.092 31.870 9.122 31.779 9.141 31.681 9.171 31.590 9.190 31.491 9.220 31.393 9.239 31.301 9.269 31.203 9.288 31.112 9.318 31.013 9.336 30.922 9.366 30.823 9.385 30.725 9.415 30.634 9.433 30.535 9.464 30.444 9.482 30.346 9.512 30.322 9.512 30.363 9.619 30.403 9.718 30.427 9.816 30.427 9.864 30.510 9.942 30.568 9.981 30.651 10.050 30.742 10.098 30.825 10.197 30.909 10.233 30.992 10.263 31.040 10.245 31.131 10.236 31.222 10.208 31.313 10.178 31.396 10.151 31.487 10.103 31.578 10.112 31.661 10.190 31.745 10.250 31.777 10.277 31.803 10.376 31.810 10.475 31.934 10.593 32.025 10.602 32.050 10.642 32.073 10.750 32.081 10.768 32.164 10.826 32.238 10.914 32.279 11.013 32.319 11.131 32.327 11.149 32.377 11.258 32.418 11.366 32.466 11.466 32.474 11.484 32.565 11.543 32.648 11.485 32.731 11.437 32.814 11.447 32.905 11.448 32.963 11.438 33.004 11.448 33.052 11.458 33.135 11.467 33.161 11.477 33.184 11.486 33.232 11.486 33.265 11.387 33.313 11.299 33.272 11.200 33.323 11.100 33.346 11.200 33.420 11.101 33.420 11.070 33.503 11.062 33.594 11.071 33.677 10.993 33.685 10.905 33.602 10.886 33.553 10.786 33.545 10.677 33.629 10.669 33.712 10.687 33.737 10.588 33.704 10.479 33.704 10.430 33.745 10.321 33.810 10.222 33.894 10.122 33.985 10.055 33.993 10.055 34.076 10.006 34.158 9.987 34.224 9.987 34.308 10.036 34.381 10.146 34.439 10.246 34.488 10.346 34.561 10.446 34.592 10.546 34.675 10.603 34.716 10.704 34.799 10.732 34.882 10.832 34.965 10.881 35.039 10.930 35.130 10.980 35.138 10.980 35.222 11.041 35.305 11.060 35.396 10.993 35.563 10.993 35.604 10.984 35.688 10.984 35.710 10.884 35.769 10.784 35.817 10.684 35.825 10.655 35.909 10.567 36.000 10.500 36.033 10.490 36.116 10.441 36.207 10.432 36.291 10.442 36.374 10.481 36.400 10.491 36.440 10.601 36.489 10.702 36.555 10.803 36.722 10.905 36.805 10.964 36.879 11.074 36.962 11.065 37.046 11.026 37.087 10.915 37.003 10.814 36.937 10.713 36.904 10.612 36.830 10.511 36.764 10.401 36.757 10.391 36.780 10.280 36.805 10.262 36.838 10.253 36.823 10.234 36.848 10.253 36.922 10.311 37.046 10.161 37.129 10.171 37.137 10.180 37.160 10.180 37.244 10.161 37.269 10.060 37.277 9.980 37.284 9.870 37.292 9.851 37.201 9.889 37.178 9.779 37.261 9.778 37.302 9.837 37.325 9.837 37.358 9.736 37.358 9.625 37.325 9.524 37.294 9.414 37.261 9.313 37.254 9.211 37.203 9.110 37.195 9.052 37.129 8.951 37.046 8.872 36.995 8.771 36.995 8.660 36.972 8.602 36.931 8.593 36.858 8.584 36.842 8.556 36.759 8.455 36.675 8.367 36.617 8.267 36.534 8.166 36.518 8.246 36.477 8.356 36.444 8.357 36.396 8.348 36.363 8.339 36.279 8.311 36.264 8.302 36.180 8.312 36.097 8.283 36.006 8.264 35.922 8.246 35.839 8.256 35.748 8.306 35.664 8.325 35.616 8.335 35.590 8.344 35.524 8.326 35.441 8.288 35.350 8.307 35.316 8.407 35.225 8.378 35.218 8.378 35.134 8.311 35.043 8.281 34.960 8.251 34.877 8.261 34.785 8.252 34.753 8.216 34.670 8.186 34.578 8.098 34.578 8.079 34.530 7.980 34.489 7.871 34.457 7.832 34.449 7.823 34.365 7.805 34.282 7.727 34.250 7.627 34.166 7.528 34.141 7.519 34.110 7.510 ; #1454 12 33.698 10.872 33.746 10.910 33.787 10.970 33.878 11.038 33.944 10.929 33.936 10.829 33.944 10.729 33.853 10.720 33.770 10.729 33.778 10.829 33.694 10.868 ; #1455 12 52.869 14.140 52.819 14.213 52.768 14.322 52.691 14.431 52.657 14.484 52.606 14.593 52.598 14.613 52.582 14.623 52.523 14.621 52.465 14.575 52.378 14.541 52.343 14.560 52.335 14.570 52.309 14.569 52.275 14.679 52.259 14.698 52.172 14.675 52.094 14.749 52.018 14.703 52.001 14.692 51.985 14.702 51.969 14.701 51.943 14.680 51.856 14.589 51.769 14.640 51.700 14.735 51.657 14.744 51.570 14.720 51.554 14.729 51.522 14.838 51.453 14.956 51.403 14.965 51.352 14.983 51.326 15.015 51.291 15.014 51.197 14.977 51.170 14.976 51.083 14.942 51.067 14.921 50.980 14.877 50.938 14.832 50.929 14.821 50.903 14.820 50.903 14.983 51.051 14.989 51.051 15.030 51.059 15.051 51.025 15.113 51.025 15.223 50.998 15.275 50.911 15.282 50.824 15.354 50.851 15.419 50.816 15.527 50.800 15.646 50.784 15.755 50.725 15.862 50.733 15.971 50.725 15.971 50.648 16.000 50.699 16.099 50.683 16.195 50.709 16.249 50.675 16.357 50.588 16.373 50.545 16.295 50.468 16.172 50.452 16.192 50.426 16.309 50.357 16.415 50.270 16.520 50.183 16.556 50.141 16.663 50.141 16.673 50.175 16.728 50.236 16.840 50.244 16.871 50.302 16.983 50.398 16.892 50.485 16.876 50.460 16.994 50.434 17.101 50.383 17.208 50.349 17.315 50.325 17.357 50.317 17.465 50.325 17.476 50.325 17.496 50.317 17.604 50.333 17.714 50.246 17.689 50.159 17.664 50.132 17.705 50.045 17.797 50.029 17.816 50.045 17.925 50.096 18.015 50.045 18.077 50.011 18.183 49.961 18.289 49.977 18.310 49.985 18.311 49.959 18.428 49.926 18.535 49.858 18.542 49.799 18.592 49.767 18.590 49.733 18.696 49.658 18.801 49.573 18.816 49.565 18.826 49.557 18.943 49.446 18.937 49.462 19.046 49.495 19.167 49.581 19.257 49.622 19.368 49.622 19.477 49.614 19.486 49.529 19.524 49.454 19.627 49.454 19.648 49.446 19.756 49.420 19.764 49.335 19.779 49.250 19.827 49.257 19.847 49.266 19.956 49.307 20.067 49.315 20.077 49.390 20.190 49.448 20.280 49.440 20.387 49.456 20.399 49.424 20.515 49.456 20.625 49.464 20.646 49.388 20.750 49.347 20.865 49.404 20.977 49.472 21.100 49.487 21.210 49.472 21.317 49.472 21.349 49.464 21.457 49.480 21.567 49.464 21.639 49.422 21.744 49.396 21.860 49.329 21.963 49.297 21.971 49.196 22.180 49.188 22.287 49.147 22.402 49.131 22.508 49.105 22.615 49.105 22.723 49.063 22.827 49.148 22.825 49.206 22.721 49.274 22.674 49.359 22.701 49.444 22.688 49.519 22.641 49.527 22.641 49.613 22.628 49.620 22.639 49.714 22.720 49.740 22.755 49.740 22.765 49.824 22.858 49.832 22.891 49.848 22.893 49.933 22.986 50.001 23.055 50.130 23.230 50.139 23.241 50.215 23.357 50.276 23.472 50.284 23.483 50.309 23.529 50.325 23.551 50.412 23.636 50.446 23.759 50.446 23.868 50.533 23.963 50.541 23.975 50.557 24.019 50.608 24.045 50.668 24.041 50.755 23.974 50.824 23.895 50.867 24.019 50.893 24.086 50.927 23.980 51.023 23.893 51.030 23.873 51.117 23.819 51.213 23.752 51.221 23.733 51.308 23.655 51.395 23.601 51.482 23.589 51.569 23.555 51.577 23.512 51.672 23.501 51.688 23.493 51.775 23.502 51.801 23.536 51.888 23.555 51.975 23.574 52.070 23.605 52.078 23.605 52.105 23.588 52.113 23.589 52.121 23.579 52.147 23.528 52.206 23.423 52.232 23.315 52.248 23.197 52.317 23.116 52.386 23.187 52.473 23.271 52.489 23.293 52.505 23.305 52.531 23.328 52.590 23.445 52.625 23.560 52.641 23.682 52.691 23.799 52.778 23.886 52.794 23.888 52.881 23.876 52.916 23.880 52.958 23.874 53.027 23.882 53.104 23.825 53.146 23.850 53.233 23.805 53.320 23.739 53.407 23.694 53.494 23.628 53.536 23.612 53.553 23.603 53.621 23.566 53.708 23.545 53.735 23.537 53.822 23.491 53.909 23.469 53.951 23.463 54.038 23.472 54.065 23.465 54.097 23.458 54.184 23.412 54.244 23.306 54.261 23.195 54.269 23.186 54.311 23.091 54.354 22.973 54.396 22.864 54.364 22.749 54.356 22.635 54.348 22.512 54.348 22.399 54.340 22.286 54.340 21.996 54.331 21.950 54.331 21.255 54.340 21.143 54.348 21.021 54.356 20.909 54.356 20.685 54.364 20.631 54.372 20.576 54.388 20.353 54.388 20.298 54.396 20.243 54.404 20.132 54.404 20.020 54.413 19.999 54.413 19.965 54.420 19.866 54.420 19.835 54.429 19.825 54.429 19.757 54.360 19.629 54.333 19.514 54.283 19.398 54.275 19.286 54.275 19.230 54.317 19.212 54.342 19.269 54.358 19.383 54.390 19.498 54.443 19.625 54.451 19.605 54.400 19.488 54.366 19.363 54.358 19.250 54.342 19.136 54.342 19.013 54.350 18.925 54.350 18.813 54.358 18.768 54.400 18.659 54.408 18.639 54.495 18.545 54.582 18.530 54.625 18.502 54.720 18.395 54.736 18.509 54.704 18.619 54.651 18.728 54.712 18.620 54.746 18.510 54.770 18.432 54.821 18.323 54.813 18.209 54.821 18.087 54.813 17.973 54.805 17.860 54.789 17.746 54.772 17.669 54.756 17.556 54.748 17.442 54.732 17.329 54.716 17.215 54.681 17.100 54.631 16.974 54.589 16.859 54.562 16.745 54.562 16.632 54.538 16.518 54.522 16.476 54.445 16.372 54.358 16.269 54.281 16.200 54.273 16.077 54.257 15.964 54.248 15.851 54.222 15.737 54.198 15.613 54.182 15.500 54.174 15.388 54.158 15.275 54.123 15.161 54.097 15.038 54.089 14.993 54.063 14.880 54.047 14.767 54.038 14.725 54.004 14.612 53.969 14.488 53.927 14.374 53.935 14.276 53.943 14.221 53.891 14.219 53.832 14.329 53.882 14.407 53.891 14.386 53.899 14.366 53.882 14.477 53.824 14.597 53.866 14.619 53.866 14.630 53.824 14.594 53.773 14.561 53.686 14.569 53.694 14.457 53.737 14.347 53.721 14.281 53.662 14.290 53.575 14.307 53.488 14.359 53.480 14.359 53.445 14.379 53.369 14.407 53.360 14.407 53.302 14.438 53.286 14.448 53.199 14.371 53.183 14.391 53.140 14.378 53.114 14.368 53.072 14.312 53.063 14.312 53.055 14.301 53.013 14.188 52.926 14.165 52.918 14.164 52.918 14.154 52.902 14.153 ; #1456 12 -23.018 14.445 -23.043 14.522 -23.058 14.619 -23.074 14.716 -23.033 14.706 -22.942 14.687 -22.859 14.669 -22.602 14.667 -22.510 14.674 -22.551 14.578 -22.551 14.540 -22.559 14.523 -22.642 14.532 -22.725 14.533 -22.766 14.524 -22.849 14.478 -22.758 14.439 -22.849 14.413 -22.940 14.422 -23.014 14.450 ; #1457 12 -28.425 16.529 -28.508 16.549 -28.599 16.610 -28.682 16.629 -28.765 16.717 -28.848 16.758 -28.939 16.846 -29.022 16.865 -29.106 16.906 -29.189 16.944 -29.280 16.984 -29.363 17.025 -29.446 17.044 -29.520 17.076 -29.603 17.086 -29.686 17.118 -29.769 17.146 -29.843 17.178 -29.926 17.197 -30.009 17.238 -30.100 17.279 -30.183 17.291 -30.266 17.341 -30.357 17.401 -30.440 17.462 -30.524 17.492 -30.615 17.552 -30.698 17.593 -30.729 17.603 -30.812 17.665 -30.895 17.725 -30.986 17.766 -30.994 17.776 -31.077 17.844 -31.160 17.895 -31.243 17.955 -31.326 18.035 -31.418 18.116 -31.501 18.176 -31.584 18.226 -31.675 18.239 -31.758 18.271 -31.806 18.281 -31.889 18.302 -31.980 18.305 -32.063 18.337 -32.120 18.349 -32.210 18.333 -32.302 18.336 -32.385 18.319 -32.468 18.283 -32.551 18.186 -32.609 18.130 -32.584 18.030 -32.543 17.930 -32.626 17.905 -32.710 17.877 -32.742 17.859 -32.825 17.881 -32.825 17.980 -32.841 18.019 -32.925 18.040 -33.015 18.121 -32.949 18.020 -33.033 18.071 -33.081 18.112 -33.172 18.152 -33.255 18.263 -33.339 18.314 -33.422 18.344 -33.504 18.416 -33.570 18.427 -33.654 18.469 -33.737 18.372 -33.811 18.335 -33.876 18.337 -33.959 18.300 -34.042 18.370 -34.133 18.403 -34.165 18.471 -34.081 18.460 -33.998 18.429 -33.915 18.485 -33.907 18.493 -33.892 18.593 -33.892 18.651 -33.899 18.760 -33.924 18.809 -34.016 18.803 -34.081 18.824 -34.165 18.796 -34.172 18.896 -34.165 19.005 -34.165 19.063 -34.238 19.166 -34.230 19.265 -34.313 19.338 -34.396 19.301 -34.422 19.380 -34.488 19.483 -34.561 19.595 -34.569 19.695 -34.569 19.804 -34.609 19.905 -34.635 19.973 -34.551 20.040 -34.493 20.138 -34.437 20.245 -34.381 20.343 -34.298 20.428 -34.265 20.536 -34.257 20.635 -34.273 20.745 -34.217 20.782 -34.184 20.881 -34.184 20.981 -34.199 21.081 -34.232 21.192 -34.247 21.292 -34.217 21.391 -34.176 21.498 -34.207 21.599 -34.215 21.708 -34.189 21.807 -34.165 21.843 -34.074 21.888 -34.025 21.985 -34.018 22.085 -33.934 22.099 -33.894 22.197 -33.878 22.306 -33.886 22.415 -33.828 22.512 -33.828 22.612 -33.835 22.631 -33.861 22.732 -33.853 22.740 -33.845 22.731 -33.837 22.731 -33.815 22.738 -33.847 22.759 -33.855 22.759 -33.896 22.861 -33.903 22.961 -33.878 22.989 -33.870 22.999 -33.911 23.100 -33.919 23.200 -33.926 23.310 -33.843 23.363 -33.828 23.462 -33.813 23.571 -33.805 23.598 -33.828 23.699 -33.843 23.808 -33.859 23.918 -33.867 24.018 -33.882 24.119 -33.913 24.229 -33.920 24.329 -33.977 24.432 -33.992 24.532 -33.984 24.632 -34.000 24.742 -33.917 24.837 -33.834 24.872 -33.783 24.957 -33.775 24.975 -33.775 25.133 -33.783 25.163 -33.809 25.264 -33.841 25.366 -33.849 25.466 -33.857 25.576 -33.834 25.662 -33.751 25.570 -33.659 25.583 -33.576 25.678 -33.546 25.775 -33.546 25.794 -33.530 25.902 -33.530 26.001 -33.546 26.102 -33.568 26.212 -33.568 26.311 -33.584 26.421 -33.544 26.519 -33.503 26.604 -33.462 26.701 -33.447 26.799 -33.399 26.896 -33.365 27.003 -33.309 27.069 -33.277 27.166 -33.203 27.261 -33.154 27.366 -33.081 27.461 -33.033 27.557 -32.992 27.622 -32.927 27.717 -32.878 27.814 -32.812 27.909 -32.746 28.012 -32.663 28.065 -32.630 28.102 -32.590 28.198 -32.541 28.294 -32.516 28.311 -32.460 28.406 -32.294 28.593 -32.220 28.697 -32.147 28.791 -31.980 28.957 -31.889 29.050 -31.806 29.101 -31.723 29.194 -31.632 29.287 -31.549 29.348 -31.493 29.443 -31.460 29.500 -31.394 29.594 -31.311 29.687 -31.270 29.783 -31.197 29.877 -31.149 29.939 -31.083 30.001 -31.000 30.064 -30.926 30.125 -30.835 30.197 -30.752 30.269 -30.669 30.350 -30.585 30.391 -30.570 30.400 -30.487 30.442 -30.472 30.470 -30.430 30.497 -30.181 30.652 -30.090 30.703 -30.065 30.719 -30.050 30.727 -30.017 30.743 -29.934 30.786 -29.860 30.860 -29.777 30.953 -29.736 30.981 -29.670 30.968 -29.630 30.983 -29.539 31.035 -29.456 31.087 -29.440 31.086 -29.357 31.159 -29.274 31.221 -29.191 31.303 -29.100 31.384 -29.074 31.392 -29.059 31.430 -28.976 31.523 -28.925 31.568 -28.842 31.650 -28.802 31.675 -28.794 31.704 -28.802 31.731 -28.779 31.828 -28.730 31.923 -28.672 31.902 -28.664 31.999 -28.591 32.102 -28.508 32.195 -28.425 32.276 -28.342 32.319 -28.258 32.314 -28.175 32.366 -28.142 32.394 -28.059 32.445 -27.968 32.469 -27.885 32.474 -27.802 32.496 -27.778 32.485 -27.687 32.509 -27.604 32.522 -27.513 32.546 -27.430 32.569 -27.347 32.593 -27.264 32.635 -27.215 32.651 -27.049 32.699 -26.966 32.742 -26.875 32.764 -26.792 32.768 -26.726 32.782 -26.726 32.675 -26.734 32.569 -26.734 32.230 -26.711 32.131 -26.718 32.025 -26.711 32.006 -26.685 31.907 -26.726 31.900 -26.817 31.897 -26.900 31.875 -26.984 31.861 -27.074 31.867 -27.165 31.881 -27.189 31.814 -27.189 31.465 -27.173 31.358 -27.107 31.159 -27.066 31.059 -26.984 30.997 -26.900 30.886 -26.817 30.882 -26.726 30.840 -26.685 30.820 -26.620 30.719 -26.403 30.707 -26.347 30.713 -26.273 30.738 -26.182 30.810 -26.092 30.891 -26.008 30.945 -25.917 30.996 -25.867 31.011 -25.827 31.018 -25.811 31.026 -25.728 31.119 -25.644 31.220 -25.612 31.316 -25.637 31.355 -25.678 31.424 -25.743 31.533 -25.809 31.643 -25.817 31.662 -25.865 31.751 -25.842 31.855 -25.743 31.832 -25.652 31.826 -25.569 31.869 -25.528 31.905 -25.362 31.877 -25.347 31.876 -25.331 31.884 -25.232 31.897 -25.142 31.901 -25.068 31.896 -24.977 31.900 -24.521 31.881 -24.437 31.895 -24.354 31.901 -24.339 31.901 -24.248 31.870 -24.081 31.786 -23.983 31.774 -23.851 31.768 -23.760 31.668 -23.677 31.626 -23.579 31.584 -23.488 31.553 -23.404 31.473 -23.321 31.432 -23.223 31.437 -23.139 31.451 -23.048 31.438 -22.958 31.405 -22.859 31.375 -22.768 31.342 -22.669 31.320 -22.578 31.287 -22.480 31.254 -22.389 31.223 -22.356 31.213 -22.325 31.203 -22.325 31.194 -22.267 31.095 -22.244 30.998 -22.236 30.921 -22.213 30.824 -22.205 30.718 -22.220 30.622 -22.245 30.527 -22.230 30.420 -22.245 30.325 -22.253 30.228 -22.205 30.130 -22.213 30.025 -22.197 30.007 -22.141 29.899 -22.134 29.881 -22.108 29.842 -22.100 29.776 -22.060 29.679 -22.052 29.573 -22.068 29.477 -22.083 29.381 -22.106 29.286 -22.106 29.151 -22.132 29.055 -22.132 29.026 -22.147 28.930 -22.155 28.930 -22.205 28.885 -22.288 28.879 -22.371 28.817 -22.363 28.788 -22.414 28.693 -22.445 28.598 -22.478 28.493 -22.485 28.397 -22.485 28.292 -22.536 28.188 -22.602 28.093 -22.660 28.078 -22.743 27.995 -22.826 27.950 -22.899 27.856 -22.915 27.848 -22.998 27.795 -23.006 27.786 -23.089 27.692 -23.114 27.597 -23.122 27.588 -23.178 27.493 -23.261 27.469 -23.294 27.373 -23.310 27.277 -23.350 27.222 -23.391 27.127 -23.474 27.033 -23.490 27.024 -23.580 26.971 -23.596 26.895 -23.654 26.888 -23.727 26.872 -23.810 26.846 -23.902 26.821 -23.992 26.806 -24.075 26.791 -24.091 26.791 -24.174 26.746 -24.207 26.651 -24.290 26.568 -24.348 26.473 -24.439 26.411 -24.523 26.346 -24.530 26.337 -24.523 26.230 -24.555 26.126 -24.555 26.108 -24.579 26.023 -24.587 26.023 -24.627 25.927 -24.635 25.830 -24.635 25.801 -24.718 25.813 -24.809 25.806 -24.892 25.771 -24.915 25.771 -24.999 25.736 -25.082 25.712 -25.155 25.668 -25.246 25.653 -25.279 25.637 -25.353 25.610 -25.451 25.558 -25.501 25.533 -25.509 25.533 -25.517 25.525 -25.573 25.421 -25.631 25.326 -25.639 25.229 -25.639 25.085 -25.606 24.986 -25.622 24.948 -25.687 24.854 -25.712 24.749 -25.704 24.651 -25.680 24.553 -25.631 24.436 -25.639 24.330 -25.598 24.232 -25.515 24.151 -25.515 24.054 -25.540 23.949 -25.507 23.851 -25.424 23.762 -25.341 23.682 -25.333 23.655 -25.275 23.556 -25.219 23.448 -25.178 23.349 -25.153 23.242 -25.153 23.145 -25.194 23.049 -25.186 22.973 -25.269 22.879 -25.353 22.843 -25.436 22.780 -25.527 22.766 -25.610 22.721 -25.701 22.724 -25.784 22.670 -25.867 22.682 -25.950 22.608 -25.991 22.592 -26.082 22.518 -26.097 22.421 -26.188 22.327 -26.221 22.230 -26.304 22.156 -26.387 22.121 -26.470 22.046 -26.527 21.951 -26.542 21.854 -26.550 21.747 -26.641 21.750 -26.724 21.667 -26.732 21.570 -26.724 21.472 -26.701 21.403 -26.709 21.306 -26.716 21.200 -26.741 21.103 -26.726 21.005 -26.677 20.898 -26.693 20.801 -26.743 20.705 -26.775 20.667 -26.759 20.658 -26.734 20.657 -26.651 20.598 -26.568 20.577 -26.476 20.604 -26.393 20.583 -26.320 20.591 -26.246 20.674 -26.163 20.740 -26.080 20.785 -25.997 20.821 -25.906 20.789 -25.823 20.787 -25.739 20.766 -25.656 20.726 -25.573 20.655 -25.482 20.652 -25.399 20.603 -25.316 20.592 -25.225 20.523 -25.142 20.483 -25.051 20.442 -24.884 20.323 -24.786 20.177 -24.737 20.079 -24.646 19.980 -24.770 19.983 -24.886 19.976 -25.260 19.985 -25.351 19.978 -25.666 19.987 -25.674 19.978 -26.012 19.987 -26.111 19.981 -26.393 19.988 -26.492 19.982 -26.715 19.988 -26.805 19.981 -27.095 19.989 -27.194 19.982 -27.424 19.989 -27.515 19.982 -27.806 19.990 -27.904 19.984 -28.154 19.990 -28.244 19.983 -28.285 19.984 -28.293 19.887 -28.359 19.782 -28.374 19.685 -28.382 19.587 -28.390 19.557 -28.473 19.494 -28.556 19.457 -28.587 19.360 -28.579 19.291 -28.670 19.236 -28.754 19.287 -28.779 19.201 -28.819 19.104 -28.786 18.996 -28.720 18.896 -28.713 18.798 -28.697 18.700 -28.713 18.593 -28.746 18.496 -28.754 18.398 -28.738 18.300 -28.754 18.202 -28.746 18.095 -28.690 17.996 -28.641 17.897 -28.616 17.789 -28.616 17.691 -28.641 17.644 -28.551 17.583 -28.558 17.485 -28.475 17.406 -28.384 17.357 -28.301 17.355 -28.218 17.392 -28.127 17.352 -28.103 17.253 -28.020 17.183 -27.970 17.164 -27.896 17.065 -27.920 16.968 -28.011 16.883 -28.094 16.807 -28.185 16.779 -28.268 16.772 -28.351 16.735 -28.359 16.628 -28.415 16.531 -28.440 16.493 ; #1458 12 69.426 34.225 69.370 34.067 69.361 34.207 69.388 34.357 ; #1459 12 30.085 24.742 30.001 24.776 29.910 24.791 29.820 24.796 29.736 24.841 29.605 24.836 29.514 24.871 29.431 24.904 29.340 24.948 29.249 24.954 29.165 24.950 29.082 24.956 28.734 24.951 28.643 24.957 28.560 24.953 28.469 24.959 28.287 24.951 28.204 24.957 28.005 24.949 27.906 24.954 27.823 24.951 27.757 24.957 27.576 24.950 27.492 24.956 27.318 24.949 27.212 24.954 27.096 24.949 27.013 24.954 26.863 24.948 26.674 24.950 26.449 24.950 26.293 24.944 26.177 24.948 26.045 24.943 25.896 24.946 25.747 24.940 25.608 24.943 25.492 24.938 25.401 24.944 25.202 24.936 25.111 24.942 24.972 24.937 24.780 24.940 24.614 24.944 24.464 24.940 24.215 24.942 23.992 24.936 23.819 24.940 23.619 24.934 23.528 24.941 23.480 24.939 23.114 24.938 22.933 24.933 22.842 24.939 22.667 24.934 22.577 24.941 22.302 24.933 22.211 24.939 22.120 24.937 22.120 31.141 22.176 31.249 22.201 31.258 22.224 31.277 22.315 31.319 22.346 31.406 22.323 31.434 22.298 31.451 22.215 31.429 22.124 31.397 22.116 31.435 22.116 33.119 22.050 33.212 21.984 33.315 21.911 33.408 21.845 33.510 21.853 33.607 21.860 33.713 21.876 33.819 21.884 33.925 21.967 33.976 22.058 34.018 22.116 34.029 22.207 34.061 22.298 34.094 22.323 34.151 22.338 34.249 22.354 34.354 22.370 34.461 22.385 34.567 22.451 34.666 22.549 34.709 22.640 34.749 22.731 34.792 22.739 34.792 22.822 34.834 22.913 34.876 22.946 34.925 22.921 35.020 22.890 35.125 22.955 35.234 23.047 35.335 23.130 35.435 23.180 35.485 23.236 35.555 23.302 35.511 23.385 35.486 23.469 35.472 23.559 35.437 23.642 35.424 23.726 35.418 23.817 35.441 23.900 35.407 23.983 35.411 24.074 35.433 24.041 35.528 24.026 35.633 24.026 35.730 24.109 35.658 24.124 35.611 24.198 35.509 24.231 35.414 24.314 35.359 24.405 35.287 24.488 35.194 24.571 35.121 24.654 35.069 24.737 35.034 24.821 35.012 24.912 34.930 24.927 34.922 25.010 34.917 25.101 34.876 25.184 34.816 25.275 34.765 25.366 34.724 25.457 34.673 25.540 34.620 25.623 34.578 25.707 34.547 25.798 34.506 25.888 34.426 25.972 34.375 26.055 34.321 26.146 34.271 26.229 34.220 26.320 34.169 26.403 34.136 26.486 34.085 26.577 34.043 26.668 33.993 26.751 33.901 26.842 33.915 26.933 33.969 27.024 33.906 27.115 33.856 27.198 33.804 27.281 33.800 27.365 33.749 27.455 33.658 27.538 33.624 27.622 33.523 27.705 33.509 27.738 33.559 27.745 33.551 27.829 33.527 27.837 33.527 27.920 33.446 27.879 33.541 27.962 33.528 27.988 33.521 28.071 33.469 28.119 33.365 28.193 33.272 28.200 33.264 28.241 33.218 28.257 33.219 28.339 33.138 28.422 33.084 28.448 33.058 28.471 33.042 28.529 33.009 28.545 33.001 28.552 32.983 28.568 32.975 28.641 32.882 28.725 32.839 28.808 32.814 28.881 32.732 29.048 32.608 29.131 32.613 29.197 32.644 29.280 32.610 29.363 32.589 29.446 32.554 29.570 32.416 29.653 32.334 29.709 32.347 29.725 32.339 29.781 32.360 29.864 32.423 29.947 32.455 30.031 32.509 30.071 32.541 30.071 32.551 30.023 32.556 29.932 32.598 29.866 32.612 29.858 32.621 29.843 32.638 29.760 32.663 29.676 32.658 29.611 32.693 29.527 32.697 29.479 32.792 29.396 32.805 29.330 32.849 29.256 32.942 29.173 33.035 29.117 33.100 29.084 33.146 29.001 33.150 28.918 33.145 28.835 33.196 28.752 33.173 28.711 33.188 28.703 33.188 28.620 33.240 28.612 33.249 28.605 33.248 28.522 33.340 28.438 33.413 28.398 33.508 28.382 33.537 28.299 33.597 28.215 33.661 28.125 33.741 28.042 33.822 27.986 33.916 27.912 34.009 27.887 34.105 27.864 34.172 27.823 34.226 27.879 34.221 27.945 34.243 27.953 34.292 28.036 34.353 28.119 34.398 28.142 34.409 28.233 34.405 28.299 34.380 28.382 34.376 28.473 34.412 28.556 34.445 28.622 34.479 28.705 34.532 28.796 34.568 28.962 34.597 29.046 34.603 29.129 34.626 29.212 34.641 29.295 34.683 29.394 34.689 29.477 34.755 29.560 34.817 29.568 34.845 29.576 34.845 29.632 34.822 29.682 34.807 29.738 34.811 29.822 34.789 29.905 34.756 29.995 34.723 30.079 34.703 30.162 34.671 30.187 34.665 30.210 34.657 30.294 34.628 30.384 34.588 30.467 34.527 30.551 34.516 30.634 34.484 30.717 34.462 30.740 34.455 30.823 34.423 30.872 34.400 30.955 34.359 31.038 34.328 31.063 34.320 31.230 34.257 31.278 34.243 31.286 34.244 31.319 34.228 31.334 34.220 31.342 34.221 31.391 34.198 31.350 34.125 31.317 34.084 31.293 34.024 31.253 33.922 31.228 33.821 31.220 33.781 31.195 33.680 31.180 33.580 31.195 33.483 31.203 33.385 31.180 33.355 31.172 33.256 31.122 33.153 31.114 33.122 31.197 33.129 31.230 33.033 31.189 32.982 31.164 32.980 31.164 33.010 31.124 32.976 31.148 32.891 31.164 32.893 31.164 32.865 31.133 32.784 31.118 32.755 31.126 32.657 31.133 32.676 31.133 32.589 31.182 32.495 31.189 32.486 31.237 32.441 31.303 32.348 31.303 32.291 31.344 32.294 31.352 32.247 31.352 32.207 31.336 32.245 31.295 32.281 31.237 32.276 31.182 32.242 31.174 32.223 31.158 32.135 31.150 32.134 31.166 32.105 31.118 32.102 31.184 32.049 31.199 32.042 31.257 32.037 31.265 31.939 31.313 31.844 31.353 31.799 31.419 31.840 31.419 31.850 31.476 31.873 31.558 31.861 31.534 31.958 31.450 32.009 31.427 32.064 31.369 32.168 31.427 32.073 31.500 31.980 31.584 31.929 31.592 31.831 31.543 31.728 31.518 31.628 31.510 31.561 31.510 31.552 31.543 31.455 31.592 31.351 31.592 31.342 31.632 31.246 31.648 31.180 31.663 31.083 31.648 30.983 31.624 31.080 31.534 30.995 31.493 30.904 31.500 30.806 31.508 30.789 31.483 30.688 31.443 30.586 31.526 30.700 31.574 30.802 31.615 30.904 31.607 30.805 31.566 30.703 31.543 30.602 31.518 30.502 31.551 30.405 31.510 30.393 31.427 30.318 31.353 30.214 31.346 30.177 31.338 30.176 31.346 30.275 31.305 30.291 31.297 30.191 31.321 30.154 31.336 30.174 31.336 30.155 31.344 30.098 31.393 30.063 31.344 30.002 31.270 29.898 31.255 29.888 31.205 29.785 31.156 29.713 31.083 29.609 31.083 29.600 31.017 29.497 30.934 29.293 30.909 29.193 30.893 29.093 30.901 29.028 30.934 28.931 30.990 28.827 30.998 28.828 31.056 28.733 31.079 28.627 31.120 28.531 31.152 28.425 31.129 28.325 31.137 28.227 31.152 28.120 31.160 28.022 31.168 27.924 31.251 27.881 31.274 27.784 31.241 27.683 31.249 27.584 31.272 27.487 31.321 27.391 31.412 27.349 31.435 27.252 31.443 27.153 31.476 27.047 31.500 26.950 31.493 26.851 31.534 26.745 31.541 26.647 31.564 26.540 31.572 26.433 31.580 26.334 31.603 26.258 31.619 26.160 31.652 26.063 31.667 25.955 31.667 25.856 31.634 25.756 31.619 25.647 31.586 25.546 31.560 25.446 31.553 25.347 31.578 25.240 31.626 25.176 31.700 25.162 31.634 25.080 31.543 25.045 31.528 25.014 31.462 24.912 31.379 24.879 31.288 24.893 31.205 24.879 31.122 24.905 31.038 24.949 30.947 24.971 30.881 25.006 30.798 25.011 30.791 25.002 30.708 24.988 30.624 24.944 30.541 24.922 30.450 24.857 30.367 24.786 30.276 24.734 30.193 24.720 30.102 24.772 30.061 24.788 ; #1460 12 23.058 25.008 23.066 25.008 23.431 25.010 ; #1461 12 69.516 32.501 69.487 32.363 69.449 32.210 69.467 32.358 69.515 32.500 ; #1462 12 31.307 30.171 31.284 30.209 31.291 30.308 31.332 30.293 31.325 30.193 31.309 30.174 ; #1463 12 -4.829 29.394 -4.920 29.430 -5.003 29.476 -5.094 29.506 -5.177 29.535 -5.260 29.554 -5.343 29.602 -5.434 29.631 -5.517 29.650 -5.601 29.651 -5.684 29.597 -5.767 29.532 -5.858 29.524 -5.941 29.543 -6.024 29.562 -6.115 29.571 -6.198 29.619 -6.282 29.686 -6.365 29.713 -6.448 29.752 -6.531 29.847 -6.597 29.951 -6.628 30.027 -6.668 30.082 -6.752 30.178 -6.835 30.243 -6.926 30.301 -7.009 30.357 -7.100 30.396 -7.183 30.424 -7.266 30.442 -7.357 30.452 -7.440 30.491 -7.524 30.538 -7.607 30.594 -7.698 30.659 -7.781 30.697 -7.864 30.727 -7.955 30.755 -8.013 30.773 -8.096 30.801 -8.187 30.848 -8.270 30.896 -8.353 30.963 -8.419 31.067 -8.419 31.162 -8.412 31.170 -8.436 31.265 -8.412 31.360 -8.452 31.455 -8.485 31.493 -8.576 31.558 -8.659 31.597 -8.733 31.692 -8.733 31.730 -8.700 31.776 -8.725 31.879 -8.816 31.927 -8.864 32.022 -8.872 32.087 -8.903 32.182 -8.944 32.277 -8.944 32.380 -8.976 32.476 -9.067 32.523 -9.083 32.618 -9.091 32.713 -9.123 32.749 -9.139 32.749 -9.147 32.767 -9.179 32.862 -9.212 32.926 -9.220 33.010 -9.286 33.106 -9.301 33.201 -9.286 33.295 -9.369 33.391 -9.425 33.487 -9.392 33.590 -9.408 33.685 -9.382 33.731 -9.448 33.836 -9.505 33.903 -9.497 33.911 -9.406 33.938 -9.348 33.929 -9.282 34.023 -9.373 34.119 -9.539 34.310 -9.630 34.359 -9.713 34.434 -9.796 34.491 -9.822 34.501 -9.913 34.502 -10.079 34.562 -10.162 34.547 -10.246 34.549 -10.329 34.561 -10.361 34.562 -10.445 34.630 -10.528 34.640 -10.694 34.627 -10.777 34.573 -10.868 34.593 -10.959 34.641 -11.042 34.698 -11.126 34.776 -11.199 34.873 -11.282 34.930 -11.365 34.942 -11.365 35.074 -11.373 35.186 -11.373 35.385 -11.389 35.481 -11.389 35.576 -11.305 35.668 -11.247 35.762 -11.224 35.864 -11.307 35.962 -11.339 36.058 -11.422 36.144 -11.505 36.241 -11.489 36.335 -11.474 36.439 -11.530 36.525 -11.514 36.619 -11.456 36.721 -11.373 36.782 -11.381 36.878 -11.381 36.973 -11.454 37.070 -11.480 37.174 -11.495 37.270 -11.510 37.365 -11.518 37.432 -11.445 37.524 -11.437 37.619 -11.371 37.712 -11.288 37.773 -11.197 37.809 -11.114 37.843 -11.074 37.937 -11.058 38.031 -11.050 38.058 -11.075 38.153 -11.100 38.249 -11.184 38.355 -11.207 38.451 -11.134 38.552 -11.068 38.645 -11.052 38.740 -10.986 38.833 -10.971 38.927 -10.955 39.021 -10.955 39.125 -10.971 39.220 -10.897 39.322 -10.839 39.415 -10.783 39.508 -10.750 39.602 -10.725 39.704 -10.669 39.797 -10.620 39.900 -10.613 39.957 -10.530 40.049 -10.464 40.141 -10.391 40.243 -10.350 40.336 -10.294 40.390 -10.210 40.396 -10.120 40.393 -10.151 40.299 -10.067 40.250 -10.075 40.147 -9.992 40.098 -9.942 40.002 -9.934 39.956 -10.025 39.949 -10.017 39.931 -9.926 39.920 -9.843 39.864 -9.810 39.799 -9.810 39.686 -9.727 39.760 -9.644 39.767 -9.561 39.662 -9.477 39.707 -9.386 39.667 -9.296 39.619 -9.212 39.543 -9.113 39.616 -9.023 39.614 -8.940 39.566 -8.948 39.471 -8.856 39.461 -8.765 39.460 -8.725 39.364 -8.709 39.458 -8.618 39.419 -8.535 39.323 -8.504 39.331 -8.421 39.330 -8.330 39.273 -8.239 39.280 -8.156 39.261 -8.090 39.268 -8.007 39.350 -7.916 39.386 -7.909 39.386 -7.825 39.430 -7.825 39.413 -7.734 39.394 -7.651 39.419 -7.618 39.392 -7.610 39.345 -7.610 39.317 -7.651 39.234 -7.560 39.269 -7.477 39.259 -7.386 39.257 -7.295 39.273 -7.212 39.329 -7.121 39.354 -7.030 39.398 -6.957 39.491 -6.873 39.507 -6.825 39.515 -6.734 39.467 -6.676 39.363 -6.684 39.260 -6.593 39.258 -6.510 39.201 -6.419 39.136 -6.336 39.050 -6.303 38.947 -6.220 38.851 -6.204 38.841 -6.113 38.822 -6.022 38.838 -5.989 38.828 -5.906 38.772 -5.840 38.762 -5.792 38.779 -5.709 38.806 -5.618 38.833 -5.527 38.866 -5.444 38.911 -5.353 38.947 -5.270 38.954 -5.262 38.954 -5.171 39.018 -5.088 39.054 -4.997 39.061 -4.914 39.097 -4.840 39.097 -4.757 39.114 -4.666 39.188 -4.575 39.187 -4.517 39.178 -4.444 39.083 -4.420 39.037 -4.347 38.942 -4.281 38.847 -4.215 38.752 -4.142 38.656 -4.076 38.561 -4.010 38.466 -4.002 38.449 -3.929 38.354 -3.863 38.259 -3.797 38.164 -3.724 38.069 -3.658 37.965 -3.592 37.870 -3.509 37.766 -3.484 37.748 -3.401 37.730 -3.385 37.701 -3.377 37.607 -3.294 37.580 -3.229 37.634 -3.188 37.671 -3.163 37.697 -3.148 37.697 -3.049 37.679 -2.983 37.669 -2.900 37.632 -2.884 37.614 -2.819 37.510 -2.770 37.398 -2.720 37.303 -2.664 37.208 -2.623 37.125 -2.567 37.030 -2.559 37.001 -2.536 36.966 -2.478 36.871 -2.430 36.768 -2.414 36.750 -2.366 36.646 -2.308 36.551 -2.260 36.457 -2.211 36.362 -2.145 36.258 -2.097 36.163 -2.041 36.060 -2.033 36.051 -2.025 36.024 -2.018 36.007 -1.977 35.952 -1.929 35.848 -1.871 35.753 -1.822 35.659 -1.766 35.555 -1.718 35.460 -1.660 35.365 -1.611 35.262 -1.571 35.198 -1.515 35.103 -1.464 35.000 -1.416 34.916 -1.360 34.812 -1.312 34.718 -1.271 34.652 -1.221 34.557 -1.165 34.462 -1.165 34.453 -1.108 34.358 -1.058 34.255 -1.002 34.160 -0.954 34.066 -0.921 34.019 -0.921 30.806 -0.905 30.777 -0.954 30.675 -0.986 30.581 -0.979 30.486 -1.037 30.468 -1.120 30.515 -1.203 30.551 -1.294 30.626 -1.302 30.681 -1.360 30.736 -1.426 30.745 -1.474 30.763 -1.507 30.792 -1.565 30.819 -1.739 30.820 -1.830 30.802 -1.838 30.802 -1.878 30.821 -1.962 30.867 -2.027 30.868 -2.111 30.842 -2.201 30.842 -2.284 30.785 -2.292 30.777 -2.284 30.759 -2.292 30.664 -2.308 30.570 -2.391 30.516 -2.474 30.479 -2.565 30.425 -2.557 30.519 -2.598 30.491 -2.681 30.445 -2.764 30.417 -2.855 30.483 -2.815 30.578 -2.881 30.681 -2.888 30.776 -2.881 30.839 -2.946 30.794 -3.029 30.831 -3.120 30.832 -3.204 30.778 -3.212 30.714 -3.270 30.620 -3.360 30.629 -3.393 30.535 -3.449 30.452 -3.532 30.434 -3.616 30.389 -3.682 30.398 -3.674 30.352 -3.757 30.297 -3.840 30.232 -3.923 30.215 -4.014 30.150 -4.098 30.056 -4.181 30.001 -4.196 29.984 -4.254 29.881 -4.303 29.786 -4.343 29.778 -4.343 29.431 -4.426 29.440 -4.517 29.414 -4.600 29.377 -4.683 29.349 -4.775 29.350 -4.858 29.359 -4.890 29.368 ; #1464 12 46.074 33.031 46.089 32.917 46.082 32.810 46.082 32.704 46.074 32.819 46.066 32.923 46.050 33.027 ; #1465 12 28.074 34.545 27.991 34.540 27.991 34.637 ; #1466 12 15.353 42.607 15.353 42.616 15.436 42.650 15.519 42.625 15.436 42.592 15.353 42.605 ; #1467 12 22.043 72.287 22.043 72.251 21.959 72.268 ; #1468 12 15.917 80.956 15.860 80.949 15.852 81.044 ; #1469 12 21.860 88.147 21.836 88.134 21.752 88.198 21.768 88.218 21.851 88.230 21.934 88.205 21.942 88.188 21.859 88.147 ; #1470 12 21.952 89.133 21.944 89.114 21.853 89.109 21.787 89.196 21.870 89.153 21.954 89.136 ; #1471 12 10.866 92.620 10.892 92.604 10.983 92.557 10.892 92.454 10.808 92.409 10.717 92.448 10.634 92.458 10.601 92.550 10.693 92.584 10.776 92.638 ; #1472 12 12.977 92.885 12.904 92.814 12.821 92.815 12.737 92.837 12.654 92.800 12.563 92.801 12.480 92.785 12.389 92.852 12.348 92.830 12.265 92.840 12.265 92.823 12.258 92.727 12.174 92.720 12.091 92.695 12.000 92.620 11.917 92.630 11.834 92.631 11.750 92.679 11.660 92.708 11.644 92.811 11.728 92.743 11.811 92.835 11.901 92.843 11.985 92.804 12.159 92.820 12.224 92.892 12.308 92.955 12.391 92.945 12.431 92.966 12.515 92.927 12.555 93.026 12.638 93.062 12.722 93.052 12.813 93.060 12.896 93.041 12.979 92.965 13.062 93.036 13.146 93.026 13.178 93.124 13.269 93.124 13.353 93.149 13.401 93.049 13.484 93.132 13.567 93.131 13.650 93.083 13.567 92.991 13.484 92.966 13.401 92.921 13.317 92.931 13.234 92.923 13.144 92.889 13.060 92.908 12.977 92.892 ; #1473 12 13.043 92.805 13.043 92.758 12.952 92.797 ; #1474 12 9.329 92.837 9.321 92.799 9.238 92.766 9.238 92.861 9.329 92.839 ; #1475 12 12.087 93.024 12.062 93.021 12.037 93.114 ; #1476 12 12.263 93.172 12.263 93.134 12.180 93.164 ; #1477 12 8.100 93.452 8.059 93.375 7.969 93.416 8.019 93.514 8.102 93.454 ; #1478 12 8.298 93.597 8.298 93.542 8.214 93.520 8.123 93.599 8.214 93.575 ; #1479 12 8.630 93.670 8.630 93.661 8.547 93.674 ; #1480 12 7.500 93.761 7.508 93.753 7.425 93.673 7.334 93.697 7.417 93.796 7.500 93.763 ; #1481 12 7.276 93.929 7.299 93.836 7.276 93.740 7.193 93.718 7.102 93.748 7.019 93.801 6.936 93.852 6.852 93.902 6.936 93.944 7.019 93.966 7.102 93.999 7.185 93.938 7.276 93.925 ; #1482 12 31.385 34.252 31.336 34.276 31.329 34.275 31.313 34.282 31.280 34.298 31.295 34.318 31.387 34.395 31.470 34.430 31.543 34.515 31.566 34.544 31.617 34.567 31.648 34.512 31.564 34.445 31.481 34.360 31.398 34.265 31.383 34.245 ; #1483 12 32.247 34.987 32.181 35.011 32.133 35.025 32.042 35.017 31.994 35.022 31.928 35.016 31.920 34.988 31.895 34.985 31.880 35.023 31.880 35.032 31.895 35.133 31.872 35.218 31.864 35.245 31.849 35.243 31.816 35.231 31.783 35.141 31.717 35.036 31.709 35.017 31.669 34.983 31.586 34.967 31.502 34.920 31.419 34.952 31.427 35.019 31.427 35.118 31.443 35.218 31.500 35.322 31.524 35.363 31.532 35.373 31.547 35.405 31.555 35.405 31.555 35.414 31.562 35.493 31.621 35.499 31.735 35.527 31.818 35.574 31.859 35.559 31.932 35.557 31.998 35.563 32.081 35.543 32.164 35.551 32.172 35.561 32.255 35.578 32.280 35.590 32.446 35.568 32.462 35.510 32.470 35.473 32.553 35.433 32.569 35.335 32.569 35.326 32.599 35.230 32.551 35.167 32.468 35.081 32.435 35.069 32.394 35.056 32.371 35.045 32.364 35.044 32.280 35.027 32.255 34.995 32.247 34.994 ; #1484 12 29.605 35.000 29.638 34.994 29.613 34.983 ; #1485 12 43.428 40.055 43.412 40.156 43.379 40.255 43.287 40.322 43.203 40.390 43.187 40.491 43.162 40.601 43.146 40.703 43.138 40.805 43.115 40.915 43.031 41.004 43.005 41.104 42.913 41.139 42.856 41.233 42.831 41.333 42.815 41.444 42.731 41.533 42.647 41.559 42.555 41.574 42.471 41.600 42.387 41.646 42.295 41.690 42.211 41.694 42.127 41.752 42.035 41.796 41.951 41.812 41.859 41.805 41.774 41.759 41.690 41.653 41.649 41.617 41.591 41.575 41.583 41.605 41.550 41.703 41.542 41.771 41.500 41.867 41.575 41.983 41.560 42.084 41.575 42.200 41.560 42.300 41.534 42.399 41.500 42.505 41.500 42.515 41.593 42.601 41.643 42.629 41.651 42.631 41.659 42.736 41.651 42.838 41.651 42.876 41.577 42.824 41.577 42.927 41.502 43.027 41.436 43.118 41.377 43.210 41.370 43.249 41.321 43.200 41.254 43.291 41.280 43.398 41.230 43.492 41.189 43.494 41.213 43.611 41.197 43.711 41.189 43.813 41.197 43.824 41.205 43.845 41.238 43.954 41.254 44.069 41.254 44.172 41.295 44.283 41.272 44.361 41.264 44.462 41.289 44.570 41.305 44.686 41.289 44.786 41.289 44.908 41.323 44.886 41.338 44.992 41.364 45.035 41.371 45.056 41.397 45.090 41.413 45.124 41.469 45.205 41.510 45.275 41.526 45.382 41.510 45.482 41.469 45.587 41.438 45.684 41.422 45.784 41.338 45.767 41.297 45.871 41.264 45.968 41.248 46.068 41.282 46.187 41.274 46.289 41.199 46.377 41.166 46.473 41.182 46.580 41.240 46.704 41.332 46.742 41.416 46.656 41.465 46.563 41.514 46.460 41.556 46.365 41.640 46.382 41.665 46.274 41.749 46.231 41.841 46.269 41.841 46.372 41.882 46.419 41.966 46.477 42.007 46.382 42.066 46.290 42.066 46.177 42.090 46.078 42.123 45.981 42.180 45.880 42.230 45.786 42.262 45.689 42.346 45.696 42.438 45.743 42.522 45.779 42.538 45.782 42.586 45.688 42.612 45.589 42.604 45.484 42.596 45.369 42.681 45.293 42.755 45.205 42.755 45.101 42.780 45.023 42.813 44.979 42.763 44.865 42.679 44.817 42.763 44.764 42.813 44.670 42.821 44.620 42.806 44.513 42.774 44.403 42.749 44.284 42.692 44.223 42.685 44.190 42.685 44.077 42.644 43.965 42.669 43.866 42.718 43.771 42.767 43.831 42.825 43.823 42.849 43.723 42.907 43.630 42.941 43.523 42.964 43.423 42.980 43.344 42.988 43.285 43.011 43.185 43.085 43.095 43.169 43.018 43.211 42.912 43.236 42.813 43.211 42.704 43.219 42.591 43.277 42.497 43.293 42.396 43.285 42.365 43.285 42.252 43.252 42.141 43.244 42.130 43.252 42.027 43.268 41.926 43.260 41.854 43.275 41.743 43.275 41.638 43.324 41.534 43.381 41.439 43.381 41.335 43.432 41.240 43.424 41.134 43.449 41.034 43.506 40.929 43.540 40.831 43.588 40.725 43.557 40.616 43.565 40.512 43.598 40.404 43.622 40.303 43.622 40.199 43.538 40.093 43.471 40.052 43.420 40.043 ; #1486 12 16.951 41.860 16.910 41.954 17.001 41.968 17.024 41.940 ; #1487 12 40.446 50.385 40.438 50.393 40.438 50.403 40.464 50.418 40.497 50.394 40.448 50.383 ; #1488 12 29.162 46.560 29.162 46.578 29.154 46.625 29.146 46.723 29.139 46.760 29.131 46.858 29.115 46.964 29.107 47.061 29.100 47.168 29.084 47.263 29.077 47.370 29.061 47.476 29.036 47.482 28.953 47.531 28.945 47.530 28.862 47.569 28.779 47.579 28.695 47.618 28.605 47.696 28.605 47.999 28.612 48.097 28.612 48.419 28.695 48.400 28.787 48.391 28.870 48.302 28.928 48.290 29.011 48.211 29.094 48.154 29.117 48.147 29.143 48.150 29.183 48.136 29.274 48.107 29.357 48.088 29.440 47.998 29.400 47.896 29.440 47.802 29.440 47.704 29.523 47.790 29.615 47.897 29.688 48.012 29.622 48.103 29.678 48.146 29.769 48.098 29.852 48.020 29.935 47.981 30.027 47.963 30.059 47.958 30.075 47.951 30.098 47.857 30.131 47.753 30.139 47.736 30.139 47.411 30.106 47.299 30.083 47.198 30.057 47.165 29.967 47.106 29.883 47.079 29.792 47.031 29.709 47.005 29.626 46.957 29.543 46.901 29.477 46.847 29.394 46.782 29.303 46.725 29.288 46.714 29.288 46.696 29.247 46.682 29.181 46.590 29.165 46.579 ; #1489 12 23.896 68.346 23.805 68.365 23.722 68.318 23.706 68.413 23.762 68.516 23.853 68.602 23.886 68.703 23.952 68.816 23.992 68.917 23.977 68.933 23.954 68.893 23.881 68.788 23.807 68.683 23.758 68.572 23.676 68.592 23.584 68.582 23.501 68.658 23.469 68.760 23.377 68.759 23.362 68.748 23.279 68.816 23.213 68.914 23.172 69.006 23.124 69.097 23.083 69.198 23.010 69.287 22.977 69.380 22.969 69.475 22.944 69.578 22.921 69.672 22.905 69.776 22.890 69.871 22.973 69.948 23.006 70.048 23.037 70.157 23.053 70.244 23.093 70.355 23.078 70.449 23.093 70.548 23.176 70.548 23.267 70.623 23.176 70.678 23.143 70.666 23.103 70.585 23.019 70.508 22.929 70.470 22.838 70.413 22.754 70.356 22.696 70.253 22.681 70.155 22.648 70.075 22.565 69.960 22.581 69.865 22.497 69.759 22.563 69.670 22.480 69.622 22.464 69.524 22.424 69.423 22.472 69.323 22.563 69.324 22.596 69.231 22.603 69.232 22.547 69.129 22.457 69.102 22.374 69.130 22.290 69.207 22.199 69.273 22.116 69.348 22.043 69.446 22.019 69.540 21.936 69.568 21.853 69.655 21.779 69.753 21.779 69.761 21.754 69.786 21.671 69.861 21.615 69.951 21.524 69.997 21.441 70.064 21.358 70.139 21.342 70.147 21.269 70.235 21.195 70.332 21.122 70.420 21.066 70.509 21.033 70.562 20.974 70.651 20.934 70.752 20.903 70.845 20.870 70.937 20.870 71.042 20.893 71.141 20.918 71.240 20.959 71.341 21.000 71.442 21.025 71.541 21.108 71.656 21.131 71.755 21.230 71.959 21.279 72.070 21.302 72.149 21.385 72.235 21.468 72.253 21.493 72.265 21.576 72.340 21.659 72.388 21.743 72.416 21.834 72.408 21.907 72.321 21.932 72.218 21.956 72.124 22.039 72.190 22.039 72.287 22.122 72.220 22.155 72.330 22.195 72.431 22.278 72.449 22.370 72.442 22.402 72.349 22.443 72.372 22.428 72.467 22.511 72.513 22.495 72.540 22.412 72.586 22.428 72.684 22.420 72.789 22.379 72.881 22.387 72.978 22.314 72.864 22.354 72.772 22.280 72.667 22.197 72.648 22.114 72.638 22.099 72.733 22.122 72.841 22.039 72.735 21.956 72.687 21.915 72.683 21.832 72.720 21.824 72.815 21.816 72.872 21.816 72.919 21.832 73.018 21.857 73.126 21.857 73.135 21.864 73.154 21.913 73.256 21.898 73.254 21.882 73.234 21.841 73.133 21.841 73.124 21.826 73.093 21.785 72.992 21.719 72.888 21.671 72.777 21.580 72.804 21.497 72.709 21.414 72.765 21.331 72.813 21.240 72.755 21.305 72.859 21.232 72.833 21.273 72.867 21.247 72.960 21.157 72.931 21.131 73.024 21.048 72.979 20.957 73.053 20.874 73.034 20.700 73.014 20.617 72.977 20.534 72.950 20.460 72.885 20.404 72.878 20.238 72.841 20.164 72.832 20.073 72.792 19.990 72.783 19.907 72.839 19.823 72.831 19.740 72.869 19.700 72.970 19.674 72.959 19.667 72.940 19.584 72.885 19.510 72.974 19.477 73.026 19.469 73.054 19.445 73.148 19.388 73.180 19.421 73.125 19.445 73.119 19.460 73.025 19.483 72.980 19.475 72.961 19.309 72.944 19.226 72.954 19.143 72.993 19.226 73.077 19.241 73.070 19.324 73.105 19.234 73.124 19.226 73.124 19.143 73.142 19.077 73.040 18.993 73.107 18.903 73.107 18.969 73.018 18.885 72.992 18.794 73.020 18.711 73.097 18.628 73.127 18.651 73.033 18.568 73.033 18.402 73.171 18.417 73.067 18.326 73.105 18.160 73.146 18.077 73.173 17.994 73.212 17.910 73.251 17.819 73.250 17.736 73.298 17.653 73.298 17.562 73.289 17.488 73.347 17.405 73.347 17.322 73.385 17.231 73.394 17.148 73.414 17.016 73.401 16.926 73.410 16.843 73.439 16.751 73.439 16.668 73.440 16.585 73.469 16.494 73.498 16.411 73.516 16.328 73.574 16.245 73.575 16.162 73.604 16.078 73.691 15.995 73.748 15.897 73.804 15.840 73.807 15.815 73.900 15.732 73.845 15.684 73.936 15.676 73.935 15.626 73.921 15.577 74.012 15.554 73.914 15.496 74.004 15.413 74.022 15.322 74.059 15.238 74.060 15.155 74.136 15.065 74.173 15.031 74.225 15.047 74.322 15.016 74.223 14.966 74.193 14.900 74.283 14.885 74.347 14.802 74.407 14.718 74.466 14.635 74.469 14.544 74.491 14.461 74.531 14.428 74.605 14.436 74.541 14.444 74.524 14.360 74.565 14.269 74.576 14.186 74.599 14.103 74.668 14.020 74.709 13.936 74.731 13.846 74.752 13.830 74.769 13.782 74.765 13.691 74.767 13.608 74.779 13.550 74.793 13.466 74.814 13.376 74.836 13.293 74.859 13.209 74.862 13.126 74.894 13.035 74.933 13.010 74.941 13.018 74.932 12.962 74.946 12.905 74.971 12.815 75.000 12.648 75.083 12.565 75.135 12.474 75.175 12.391 75.224 12.300 75.255 12.217 75.344 12.209 75.362 12.143 75.403 12.143 75.421 12.128 75.429 12.128 75.411 12.087 75.408 12.014 75.498 11.931 75.576 11.847 75.634 11.807 75.640 11.758 75.654 11.675 75.686 11.592 75.784 11.501 75.814 11.418 75.846 11.327 75.875 11.161 75.938 11.077 75.950 10.986 76.001 10.903 76.012 10.820 76.053 10.729 76.102 10.646 76.124 10.563 76.165 10.480 76.185 10.396 76.263 10.381 76.224 10.290 76.226 10.207 76.267 10.207 76.276 10.298 76.291 10.207 76.313 10.183 76.320 10.176 76.320 10.143 76.372 10.052 76.430 9.969 76.425 9.886 76.450 9.795 76.455 9.711 76.480 9.745 76.386 9.828 76.408 9.918 76.403 10.002 76.378 9.918 76.365 10.002 76.360 10.093 76.338 10.116 76.331 10.157 76.307 10.124 76.287 10.033 76.309 9.950 76.322 9.866 76.336 9.833 76.327 9.750 76.340 9.667 76.354 9.576 76.388 9.493 76.422 9.410 76.482 9.319 76.496 9.236 76.538 9.152 76.570 9.186 76.581 9.178 76.675 9.137 76.579 9.096 76.595 9.081 76.623 8.998 76.703 8.915 76.765 8.823 76.836 8.740 76.898 8.657 76.970 8.566 77.050 8.501 77.141 8.435 77.213 8.377 77.306 8.336 77.399 8.303 77.501 8.336 77.597 8.377 77.702 8.392 77.797 8.466 77.895 8.531 77.993 8.605 78.091 8.696 78.161 8.779 78.173 8.870 78.140 8.936 78.189 9.019 78.201 9.034 78.202 9.126 78.224 9.209 78.302 9.282 78.400 9.323 78.497 9.331 78.601 9.389 78.698 9.421 78.794 9.452 78.891 9.478 78.995 9.462 79.089 9.478 79.184 9.452 79.278 9.421 79.381 9.355 79.472 9.363 79.473 9.437 79.381 9.520 79.330 9.487 79.233 9.495 79.139 9.520 79.045 9.611 78.966 9.694 78.941 9.777 78.953 9.861 78.994 9.944 79.053 10.035 79.116 10.118 79.177 10.201 79.247 10.234 79.287 10.317 79.256 10.400 79.291 10.484 79.343 10.509 79.440 10.542 79.547 10.501 79.581 10.476 79.674 10.484 79.778 10.524 79.677 10.509 79.780 10.501 79.874 10.592 79.881 10.675 79.879 10.758 79.876 10.841 79.874 10.924 79.871 11.015 79.869 11.107 79.876 11.131 79.869 11.215 79.884 11.248 79.887 11.331 79.884 11.387 79.879 11.470 79.868 11.561 79.811 11.495 79.711 11.511 79.721 11.559 79.771 11.642 79.815 11.726 79.793 11.816 79.800 11.899 79.815 11.973 79.821 12.006 79.841 12.021 79.842 12.145 79.878 12.186 79.889 12.236 79.911 12.244 79.912 12.327 79.964 12.410 80.026 12.443 80.028 12.526 80.101 12.610 80.154 12.650 80.175 12.733 80.210 12.900 80.258 12.983 80.282 13.074 80.289 13.157 80.286 13.240 80.301 13.323 80.326 13.414 80.333 13.498 80.368 13.581 80.356 13.654 80.278 13.670 80.184 13.695 80.128 13.786 80.080 13.869 80.115 13.803 80.148 13.894 80.163 13.803 80.241 13.720 80.289 13.705 80.297 13.712 80.307 13.795 80.267 13.879 80.247 13.962 80.270 14.053 80.240 14.143 80.200 14.227 80.169 14.310 80.149 14.401 80.147 14.484 80.162 14.567 80.186 14.659 80.193 14.741 80.208 14.749 80.154 14.807 80.176 14.898 80.116 14.981 80.105 15.065 80.096 15.155 80.079 15.238 80.059 15.330 80.087 15.413 80.105 15.496 80.114 15.579 80.162 15.662 80.226 15.753 80.245 15.836 80.272 15.919 80.348 15.985 80.450 16.041 80.552 16.057 80.658 16.072 80.756 15.989 80.830 15.898 80.820 15.989 80.868 16.072 80.913 16.164 80.906 16.098 80.927 16.015 80.936 15.949 81.024 16.032 81.042 16.115 81.126 16.148 81.157 16.231 81.175 16.314 81.202 16.405 81.241 16.488 81.260 16.546 81.371 16.521 81.463 16.521 81.568 16.514 81.663 16.488 81.755 16.537 81.865 16.570 81.964 16.610 82.073 16.659 82.175 16.732 82.278 16.765 82.300 16.798 82.304 16.881 82.360 16.972 82.379 16.980 82.380 17.028 82.290 17.111 82.281 17.202 82.319 17.369 82.491 17.483 82.696 17.541 82.807 17.564 82.905 17.622 83.008 17.688 83.111 17.738 83.222 17.821 83.307 17.844 83.263 17.860 83.292 17.916 83.402 18.007 83.442 18.090 83.536 18.173 83.592 18.239 83.705 18.288 83.775 18.328 83.885 18.376 83.986 18.417 84.087 18.483 84.130 18.566 84.198 18.649 84.284 18.732 84.369 18.824 84.445 18.907 84.521 18.990 84.578 19.156 84.711 19.240 84.768 19.264 84.771 19.348 84.837 19.431 84.931 19.505 85.045 19.588 85.122 19.661 85.227 19.719 85.319 19.760 85.297 19.775 85.363 19.808 85.349 19.783 85.290 19.717 85.187 19.634 85.130 19.717 85.122 19.808 85.162 19.891 85.219 20.040 85.430 20.017 85.531 19.934 85.538 19.851 85.493 19.818 85.431 19.833 85.529 19.866 85.629 19.907 85.739 19.932 85.838 19.965 85.946 19.980 86.044 20.013 86.154 20.054 86.256 20.094 86.358 20.135 86.278 20.184 86.190 20.267 86.125 20.274 86.135 20.191 86.219 20.150 86.319 20.135 86.334 20.135 86.373 20.218 86.440 20.309 86.462 20.350 86.564 20.398 86.667 20.431 86.672 20.514 86.780 20.598 86.716 20.681 86.804 20.754 86.919 20.777 86.961 20.828 86.910 20.901 86.856 20.984 86.924 21.068 86.880 21.158 86.846 21.241 86.820 21.333 86.824 21.416 86.874 21.499 86.942 21.582 87.031 21.648 87.136 21.681 87.238 21.681 87.334 21.729 87.446 21.737 87.465 21.752 87.564 21.768 87.662 21.818 87.766 21.901 87.874 21.984 87.972 22.067 88.022 22.151 88.091 22.242 88.151 22.298 88.103 22.314 88.000 22.396 87.927 22.480 87.910 22.396 87.954 22.346 88.043 22.354 88.053 22.296 88.150 22.213 88.194 22.129 88.153 22.046 88.131 21.956 88.156 21.872 88.182 21.824 88.184 21.741 88.172 21.725 88.187 21.669 88.226 21.752 88.268 21.760 88.269 21.851 88.244 21.768 88.279 21.834 88.307 21.818 88.360 21.727 88.356 21.727 88.403 21.810 88.433 21.894 88.436 21.919 88.431 21.952 88.454 22.008 88.444 21.924 88.508 21.834 88.477 21.768 88.496 21.712 88.488 21.646 88.505 21.687 88.502 21.737 88.548 21.820 88.560 21.894 88.553 21.977 88.547 22.060 88.578 22.151 88.591 22.217 88.583 22.308 88.634 22.315 88.635 22.315 88.653 22.232 88.614 22.149 88.629 22.058 88.607 22.149 88.696 22.232 88.690 22.248 88.731 22.165 88.719 22.081 88.697 21.990 88.675 21.907 88.671 21.834 88.661 21.750 88.686 21.766 88.745 21.799 88.779 21.857 88.814 21.880 88.826 21.789 88.842 21.756 88.902 21.741 88.996 21.824 89.027 21.915 88.984 21.998 88.967 22.006 88.951 22.054 88.882 22.095 88.879 22.095 88.897 22.039 88.985 22.129 89.028 22.170 89.015 22.211 89.004 22.244 89.008 22.228 89.035 22.294 89.045 22.310 89.038 22.340 89.016 22.424 88.981 22.507 88.965 22.565 88.973 22.656 88.901 22.729 88.921 22.745 88.915 22.828 88.918 22.911 88.930 22.995 88.887 23.043 88.865 23.126 88.850 23.159 88.855 23.242 88.906 23.325 88.900 23.350 88.807 23.350 88.710 23.433 88.714 23.474 88.738 23.557 88.759 23.580 88.771 23.606 88.757 23.621 88.663 23.695 88.609 23.778 88.544 23.952 88.570 23.967 88.620 24.050 88.709 24.066 88.711 24.091 88.696 24.148 88.705 24.231 88.679 24.279 88.695 24.279 88.713 24.337 88.712 24.403 88.666 24.410 88.649 24.403 88.648 24.403 88.542 24.428 88.460 24.436 88.432 24.494 88.344 24.501 88.336 24.509 88.319 24.524 88.304 24.550 88.231 24.550 88.222 24.590 88.131 24.681 88.079 24.765 88.024 24.848 88.054 24.931 88.143 25.014 88.138 25.039 88.172 24.974 88.237 24.974 88.255 25.014 88.359 25.055 88.386 25.087 88.392 25.171 88.439 25.254 88.438 25.269 88.539 25.277 88.637 25.252 88.729 25.252 88.738 25.277 88.841 25.252 88.921 25.335 88.956 25.360 88.989 25.401 88.892 25.484 88.812 25.567 88.820 25.598 88.759 25.557 88.654 25.583 88.552 25.657 88.471 25.722 88.437 25.738 88.440 25.794 88.355 25.842 88.300 25.875 88.209 25.900 88.108 25.991 88.089 26.074 88.134 26.157 88.151 26.248 88.229 26.264 88.289 26.355 88.355 26.378 88.378 26.428 88.486 26.443 88.528 26.517 88.496 26.550 88.396 26.558 88.341 26.641 88.377 26.664 88.391 26.608 88.476 26.600 88.493 26.585 88.508 26.545 88.597 26.461 88.685 26.378 88.707 26.370 88.771 26.362 88.787 26.355 88.892 26.355 88.921 26.306 88.959 26.306 89.015 26.397 88.987 26.481 88.918 26.481 89.016 26.415 89.108 26.332 89.100 26.240 89.128 26.184 89.213 26.111 89.295 26.103 89.400 26.078 89.442 26.078 89.451 26.037 89.539 26.129 89.586 26.161 89.611 26.244 89.590 26.236 89.686 26.188 89.741 26.105 89.782 26.080 89.813 26.031 89.794 26.024 89.810 26.016 89.836 25.993 89.821 25.902 89.784 25.894 89.782 25.886 89.790 25.854 89.792 25.838 89.798 25.798 89.798 25.772 89.811 25.689 89.831 25.542 89.800 25.502 89.782 25.469 89.775 25.378 89.803 25.393 89.892 25.370 89.955 25.362 89.971 25.322 90.069 25.306 90.162 25.298 90.199 25.273 90.291 25.250 90.383 25.273 90.494 25.273 90.591 25.258 90.685 25.250 90.789 25.258 90.888 25.258 90.897 25.281 90.999 25.289 91.098 25.296 91.196 25.281 91.258 25.258 91.360 25.243 91.453 25.243 91.550 25.235 91.646 25.260 91.660 25.275 91.857 25.283 91.965 25.283 91.992 25.252 92.083 25.202 92.169 25.179 92.269 25.130 92.356 25.105 92.359 25.089 92.356 25.006 92.435 24.974 92.411 24.958 92.323 24.983 92.291 24.983 92.194 24.935 92.204 24.919 92.211 24.904 92.209 24.821 92.177 24.729 92.145 24.646 92.105 24.573 92.085 24.490 92.004 24.464 91.903 24.374 91.881 24.291 91.859 24.331 91.768 24.265 91.652 24.314 91.612 24.231 91.591 24.205 91.530 24.205 91.433 24.213 91.338 24.130 91.334 24.114 91.323 24.107 91.274 24.024 91.205 23.958 91.213 23.950 91.212 23.867 91.172 23.783 91.169 23.776 91.129 23.693 91.155 23.610 91.198 23.576 91.222 23.493 91.247 23.403 91.261 23.319 91.286 23.228 91.301 23.203 91.316 23.286 91.346 23.369 91.350 23.304 91.446 23.296 91.454 23.213 91.477 23.122 91.501 23.097 91.535 23.097 91.632 23.105 91.663 23.188 91.772 23.279 91.768 23.362 91.733 23.445 91.755 23.528 91.806 23.602 91.914 23.625 91.927 23.716 91.914 23.799 91.897 23.758 91.988 23.758 92.017 23.841 92.107 23.849 92.137 23.834 92.232 23.801 92.244 23.710 92.239 23.627 92.274 23.544 92.279 23.461 92.331 23.395 92.339 23.354 92.304 23.271 92.308 23.180 92.330 23.097 92.326 23.006 92.389 22.957 92.399 22.874 92.413 22.791 92.467 22.700 92.480 22.617 92.485 22.526 92.489 22.443 92.523 22.360 92.529 22.269 92.543 22.186 92.522 22.103 92.536 22.186 92.625 22.276 92.639 22.236 92.729 22.186 92.777 22.103 92.821 22.110 92.927 22.234 92.946 22.325 92.979 22.300 93.071 22.308 93.101 22.398 93.134 22.481 93.128 22.565 93.104 22.648 93.049 22.731 93.062 22.822 93.029 22.905 93.033 22.996 93.057 23.079 93.070 23.162 93.073 23.130 93.165 23.178 93.269 23.203 93.282 23.294 93.305 23.377 93.310 23.461 93.296 23.552 93.328 23.791 93.366 23.807 93.359 23.807 93.350 23.847 93.339 23.888 93.336 23.896 93.328 23.969 93.322 24.060 93.289 24.144 93.264 24.144 93.360 24.070 93.446 24.110 93.549 24.110 93.654 24.054 93.742 24.062 93.850 24.029 93.950 23.981 94.039 23.956 94.074 24.039 94.095 24.122 94.156 24.213 94.170 24.296 94.202 24.355 94.220 24.445 94.244 24.528 94.313 24.612 94.345 24.695 94.405 24.786 94.447 24.819 94.499 24.910 94.532 24.925 94.534 25.016 94.597 25.099 94.625 25.107 94.627 25.190 94.654 25.356 94.498 25.440 94.535 25.523 94.581 25.548 94.596 25.596 94.704 25.679 94.808 25.703 94.813 25.786 94.889 25.836 94.930 25.920 94.958 25.927 94.959 26.010 94.952 26.101 95.070 26.184 95.107 26.268 95.039 26.351 95.020 26.434 95.012 26.525 95.042 26.608 95.031 26.691 95.088 26.782 95.196 26.774 95.291 26.815 95.398 26.831 95.410 26.914 95.459 26.921 95.558 26.995 95.673 27.078 95.739 27.119 95.846 27.202 95.922 27.293 95.991 27.341 96.088 27.367 96.192 27.390 96.304 27.390 96.402 27.397 96.510 27.431 96.615 27.438 96.724 27.355 96.790 27.272 96.828 27.231 96.916 27.183 97.002 27.198 97.083 27.289 97.065 27.372 96.987 27.455 96.909 27.538 96.852 27.572 96.841 27.655 96.842 27.738 96.862 27.829 96.949 27.837 96.989 27.920 97.107 28.003 97.212 28.086 97.319 28.169 97.251 28.309 97.284 28.317 97.238 28.407 97.162 28.456 97.075 28.430 96.971 28.422 96.961 28.415 96.929 28.456 96.832 28.456 96.734 28.522 96.643 28.545 96.571 28.512 96.465 28.438 96.341 28.469 96.250 28.552 96.288 28.635 96.280 28.709 96.395 28.792 96.480 28.876 96.538 28.883 96.531 28.966 96.464 29.049 96.397 29.141 96.436 29.148 96.428 29.115 96.323 29.049 96.210 29.057 96.104 29.081 96.100 29.164 96.052 29.237 96.167 29.286 96.285 29.326 96.227 29.342 96.132 29.433 96.096 29.440 96.080 29.523 96.012 29.491 95.906 29.467 95.803 29.427 95.725 29.376 95.615 29.320 95.504 29.229 95.474 29.146 95.406 29.113 95.301 29.139 95.200 29.179 95.111 29.210 95.020 29.235 94.928 29.243 94.900 29.220 94.924 29.204 94.930 29.204 94.921 29.220 94.906 29.251 94.815 29.276 94.713 29.359 94.646 29.400 94.557 29.316 94.490 29.284 94.385 29.227 94.264 29.154 94.150 29.139 94.137 29.055 94.079 29.005 93.981 28.914 93.901 28.881 93.876 28.825 93.756 28.792 93.650 28.759 93.545 28.759 93.438 28.736 93.335 28.744 93.289 28.678 93.167 28.595 93.130 28.512 93.112 28.496 93.099 28.448 93.049 28.415 93.004 28.341 92.889 28.285 92.829 28.270 92.728 28.187 92.632 28.104 92.670 28.020 92.613 27.954 92.500 27.922 92.395 27.889 92.290 27.904 92.187 27.904 92.080 27.821 91.955 27.821 91.857 27.829 91.832 27.852 91.739 27.852 91.612 27.837 91.617 27.745 91.561 27.662 91.579 27.579 91.638 27.572 91.675 27.514 91.760 27.538 91.863 27.538 91.911 27.506 92.001 27.423 92.049 27.339 92.021 27.256 91.973 27.183 91.966 27.100 92.046 27.016 92.064 26.960 92.033 26.953 91.934 26.945 91.834 26.929 91.725 26.896 91.620 26.904 91.524 26.970 91.441 26.896 91.318 26.889 91.219 26.904 91.125 26.896 91.017 26.881 90.916 26.881 90.830 26.873 90.722 26.881 90.626 26.896 90.532 26.937 90.443 26.995 90.358 26.955 90.252 26.929 90.149 26.838 90.052 26.831 89.953 26.823 89.846 26.823 89.836 26.807 89.806 26.807 89.708 26.815 89.612 26.863 89.593 26.889 89.542 26.896 89.446 26.937 89.358 26.953 89.322 26.919 89.209 26.912 89.110 26.995 89.030 27.011 88.936 27.067 88.850 27.150 88.829 27.233 88.749 27.248 88.714 27.331 88.749 27.372 88.856 27.413 88.873 27.469 88.788 27.484 88.773 27.568 88.731 27.651 88.740 27.734 88.787 27.825 88.816 27.908 88.833 27.991 88.821 28.082 88.804 28.148 88.721 28.163 88.626 28.156 88.517 28.098 88.407 28.067 88.303 28.051 88.202 28.044 88.102 27.953 88.101 27.869 88.141 27.786 88.105 27.703 88.078 27.620 88.013 27.529 88.024 27.214 87.958 27.130 88.006 27.047 88.075 26.957 88.124 26.873 88.142 26.790 88.134 26.742 88.115 26.650 88.069 26.567 88.052 26.484 87.986 26.500 87.893 26.533 87.802 26.507 87.690 26.492 87.601 26.500 87.505 26.523 87.404 26.440 87.289 26.498 87.204 26.490 87.095 26.573 87.036 26.664 87.025 26.616 86.908 26.624 86.901 26.608 86.889 26.567 86.842 26.527 86.777 26.519 86.678 26.618 86.504 26.649 86.403 26.682 86.313 26.697 86.219 26.697 86.094 26.753 85.999 26.697 85.890 26.697 85.784 26.689 85.773 26.763 85.691 26.846 85.690 26.937 85.621 26.921 85.512 26.881 85.406 26.840 85.321 26.848 85.216 26.931 85.167 26.957 85.065 26.979 84.973 26.979 84.964 27.063 84.883 27.070 84.846 27.094 84.753 27.119 84.652 27.202 84.641 27.293 84.659 27.376 84.628 27.425 84.531 27.440 84.437 27.455 84.342 27.488 84.251 27.554 84.167 27.595 84.068 27.529 83.958 27.529 83.901 27.521 83.843 27.481 83.835 27.440 83.835 27.481 83.737 27.521 83.647 27.552 83.547 27.552 83.449 27.461 83.354 27.421 83.248 27.504 83.178 27.529 83.086 27.536 82.980 27.577 82.882 27.577 82.784 27.660 82.723 27.751 82.703 27.784 82.652 27.759 82.549 27.751 82.441 27.800 82.353 27.850 82.265 27.916 82.180 27.949 82.088 27.989 82.030 27.982 81.931 27.949 81.827 28.005 81.740 28.055 81.652 28.086 81.590 28.136 81.502 28.219 81.420 28.204 81.319 28.287 81.269 28.378 81.209 28.436 81.173 28.460 81.079 28.475 81.025 28.508 80.934 28.574 80.848 28.614 80.749 28.680 80.664 28.713 80.572 28.744 80.510 28.661 80.494 28.693 80.402 28.734 80.312 28.808 80.219 28.848 80.129 28.881 80.087 28.964 80.025 29.030 80.074 29.046 80.095 29.129 80.111 29.169 80.110 29.169 80.119 29.203 80.223 29.286 80.248 29.376 80.256 29.460 80.215 29.543 80.267 29.558 80.270 29.624 80.331 29.707 80.365 29.790 80.324 29.846 80.433 29.937 80.507 30.021 80.611 30.053 80.647 30.061 80.678 30.152 80.749 30.226 80.807 30.234 80.908 30.249 80.969 30.322 80.889 30.355 80.799 30.421 80.709 30.479 80.625 30.520 80.537 30.535 80.433 30.568 80.343 30.609 80.246 30.616 80.160 30.748 80.194 30.839 80.139 30.839 80.031 30.897 79.959 30.920 79.907 30.994 79.848 31.019 79.746 31.011 79.646 30.986 79.541 31.060 79.461 31.116 79.376 31.131 79.361 31.162 79.282 31.245 79.255 31.261 79.219 31.344 79.192 31.427 79.126 31.435 79.098 31.435 78.990 31.352 78.960 31.319 78.853 31.327 78.747 31.417 78.751 31.500 78.735 31.584 78.765 31.667 78.786 31.750 78.699 31.833 78.689 31.857 78.705 31.864 78.707 31.930 78.732 32.013 78.734 32.070 78.649 32.095 78.637 32.177 78.570 32.251 78.480 32.259 78.464 32.350 78.459 32.433 78.470 32.516 78.412 32.557 78.392 32.597 78.502 32.590 78.599 32.590 78.609 32.646 78.701 32.638 78.766 32.547 78.762 32.464 78.789 32.408 78.884 32.375 78.975 32.390 79.078 32.482 79.109 32.532 79.221 32.532 79.240 32.555 79.345 32.580 79.379 32.663 79.478 32.679 79.492 32.762 79.503 32.853 79.448 32.936 79.381 33.019 79.344 33.103 79.356 33.186 79.377 33.201 79.272 33.234 79.181 33.234 79.172 33.242 79.155 33.298 79.061 33.331 78.970 33.414 78.923 33.470 78.829 33.561 78.794 33.569 78.796 33.652 78.798 33.675 78.794 33.690 78.798 33.739 78.802 33.822 78.795 33.913 78.769 33.921 78.761 33.994 78.731 34.077 78.722 34.126 78.843 34.192 78.960 34.275 78.990 34.290 78.984 34.341 78.958 34.389 78.870 34.412 78.827 34.427 78.782 34.501 78.692 34.542 78.602 34.550 78.504 34.565 78.408 34.573 78.370 34.588 78.316 34.679 78.251 34.762 78.222 34.845 78.194 34.911 78.153 34.927 78.138 34.975 78.131 35.066 78.109 35.149 78.046 35.241 78.004 35.272 78.004 35.322 78.010 35.330 78.012 35.414 78.047 35.462 77.962 35.414 77.879 35.480 77.811 35.414 77.690 35.356 77.563 35.290 77.434 35.223 77.304 35.157 77.184 35.099 77.057 35.076 77.020 34.992 77.035 34.977 77.022 34.894 76.934 34.900 76.928 34.898 76.905 34.900 76.887 34.913 76.839 34.824 76.782 34.728 76.719 34.720 76.617 34.728 76.519 34.735 76.411 34.687 76.299 34.672 76.277 34.660 76.223 34.644 76.134 34.660 76.088 34.615 76.017 34.574 75.907 34.491 75.778 34.491 75.669 34.524 75.477 34.550 75.383 34.590 75.293 34.598 75.276 34.606 75.178 34.621 75.072 34.629 75.007 34.644 74.901 34.644 74.892 34.660 74.796 34.675 74.700 34.700 74.596 34.724 74.502 34.757 74.401 34.757 74.351 34.724 74.234 34.675 74.123 34.660 74.010 34.576 73.951 34.486 73.881 34.403 73.831 34.337 73.816 34.296 73.916 34.256 74.006 34.172 74.035 34.089 73.927 34.081 73.925 33.998 73.985 34.006 74.087 34.006 74.096 33.991 74.192 33.991 74.292 33.907 74.300 33.834 74.183 33.826 74.114 33.743 74.025 33.720 74.010 33.704 74.016 33.648 74.033 33.532 74.205 33.449 74.194 33.366 74.166 33.282 74.079 33.191 74.049 33.126 74.133 33.110 74.160 33.027 74.239 33.011 74.344 32.928 74.394 32.838 74.391 32.814 74.367 32.781 74.459 32.756 74.561 32.749 74.560 32.764 74.663 32.681 74.710 32.590 74.688 32.582 74.696 32.574 74.694 32.484 74.742 32.468 74.837 32.460 74.935 32.468 75.036 32.452 75.140 32.412 75.230 32.371 75.319 32.346 75.362 32.263 75.409 32.179 75.362 32.139 75.253 32.073 75.138 32.073 75.030 32.033 74.921 31.950 74.814 31.901 74.695 31.827 74.578 31.737 74.548 31.711 74.561 31.628 74.619 31.613 74.616 31.562 74.634 31.479 74.672 31.396 74.624 31.323 74.589 31.239 74.579 31.156 74.568 31.131 74.611 31.106 74.713 31.050 74.670 31.065 74.625 31.042 74.572 31.017 74.575 31.009 74.582 30.984 74.547 30.911 74.431 30.885 74.327 30.802 74.289 30.719 74.210 30.653 74.117 30.570 74.079 30.479 73.980 30.405 73.885 30.390 73.873 30.350 73.941 30.334 73.956 30.309 73.959 30.218 73.986 30.185 73.931 30.144 73.873 30.089 73.762 30.063 73.658 30.031 73.543 30.015 73.510 29.932 73.396 29.841 73.372 29.758 73.339 29.750 73.338 29.659 73.313 29.576 73.280 29.485 73.237 29.402 73.185 29.310 73.139 29.227 73.068 29.145 73.015 29.053 72.943 29.013 72.829 28.962 72.722 28.897 72.613 28.839 72.496 28.740 72.363 28.657 72.322 28.574 72.299 28.483 72.275 28.392 72.220 28.309 72.120 28.225 72.029 28.142 71.976 28.051 71.961 27.968 71.861 27.927 71.747 27.912 71.629 27.912 71.531 27.904 71.423 27.889 71.323 27.865 71.221 27.825 71.117 27.777 71.011 27.751 70.909 27.759 70.842 27.843 70.758 27.926 70.724 28.016 70.673 28.082 70.586 28.074 70.487 28.016 70.371 27.933 70.271 27.867 70.192 27.777 70.150 27.693 70.127 27.610 70.066 27.527 69.985 27.436 69.913 27.353 69.822 27.270 69.712 27.186 69.642 27.103 69.611 27.013 69.587 26.846 69.560 26.772 69.654 26.732 69.745 26.676 69.834 26.635 69.934 26.643 70.033 26.643 70.071 26.650 70.091 26.635 70.186 26.552 70.258 26.386 70.231 26.295 70.234 26.212 70.203 26.129 70.160 26.045 70.147 25.954 70.191 25.871 70.263 25.788 70.318 25.763 70.332 25.730 70.424 25.738 70.531 25.763 70.632 25.738 70.725 25.655 70.730 25.571 70.725 25.480 70.720 25.397 70.774 25.306 70.825 25.223 70.908 25.057 70.958 25.000 70.976 24.910 71.021 24.826 71.071 24.743 71.117 24.687 71.014 24.604 71.032 24.513 71.039 24.472 71.131 24.424 71.029 24.399 70.920 24.308 70.842 24.300 70.744 24.323 70.650 24.407 70.612 24.490 70.565 24.474 70.458 24.434 70.356 24.401 70.256 24.376 70.156 24.285 70.116 24.261 70.105 24.236 70.036 24.236 69.834 24.261 69.731 24.327 69.661 24.343 69.566 24.351 69.470 24.358 69.366 24.333 69.266 24.325 69.218 24.358 69.125 24.333 69.075 24.383 68.983 24.358 68.884 24.383 68.790 24.376 68.789 24.293 68.788 24.209 68.788 24.118 68.787 24.035 68.731 24.035 68.528 24.012 68.420 24.004 68.322 23.921 68.254 23.838 68.236 ; #1490 12 21.735 72.791 21.677 72.688 21.702 72.787 ; #1491 12 20.913 106.895 20.928 106.927 20.994 106.854 20.911 106.894 ; #1492 12 20.905 106.981 20.839 107.034 20.791 107.121 20.874 107.166 20.915 107.077 20.907 106.979 ; #1493 12 21.344 107.543 21.288 107.514 21.205 107.481 21.122 107.457 21.187 107.565 21.271 107.636 21.344 107.545 ; #1494 12 21.104 107.633 21.054 107.567 20.971 107.494 21.021 107.600 ; #1495 12 21.452 107.947 21.427 107.943 21.468 108.046 ; #1496 12 43.042 132.084 43.058 132.064 43.099 131.988 43.015 131.962 43.039 132.082 ; #1497 12 7.442 134.626 7.525 134.687 7.609 134.723 7.700 134.748 7.783 134.726 7.700 134.655 7.617 134.611 7.525 134.587 ; #1498 12 -13.232 -176.051 -13.232 -176.043 -13.141 -176.078 ; #1499 12 19.344 -81.471 19.344 -81.366 19.377 -81.274 19.425 -81.185 19.417 -81.280 19.402 -81.374 19.402 -81.470 ; #1500 12 18.715 -74.194 18.730 -74.223 18.746 -74.321 18.730 -74.415 18.675 -74.512 18.583 -74.526 18.500 -74.571 18.417 -74.513 18.359 -74.409 18.384 -74.317 18.336 -74.215 18.278 -74.111 18.187 -74.032 18.104 -73.965 18.145 -73.886 18.228 -73.906 18.276 -73.817 18.316 -73.726 18.332 -73.624 18.332 -73.528 18.299 -73.428 18.299 -73.323 18.274 -73.224 18.258 -73.117 18.243 -73.019 18.218 -72.920 18.251 -72.829 18.266 -72.735 18.299 -72.644 18.299 -72.539 18.307 -72.444 18.299 -72.338 18.307 -72.244 18.314 -72.149 18.274 -72.048 18.201 -71.942 18.117 -71.856 18.191 -71.838 18.274 -71.858 18.357 -71.813 18.440 -71.880 18.506 -71.984 18.597 -72.005 18.680 -72.082 18.688 -71.988 18.738 -71.899 18.812 -71.803 18.895 -71.805 18.986 -71.835 19.017 -71.935 19.042 -71.938 19.042 -71.929 19.083 -71.838 19.174 -71.754 19.174 -71.745 19.264 -71.710 19.348 -71.806 19.431 -71.799 19.522 -71.772 19.605 -71.774 19.688 -71.812 19.779 -71.823 19.779 -71.862 19.787 -71.959 19.787 -72.055 19.779 -72.109 19.812 -72.210 19.843 -72.319 19.835 -72.414 19.883 -72.516 19.909 -72.596 19.965 -72.708 19.998 -72.808 19.998 -72.904 19.990 -72.959 19.982 -73.054 19.982 -73.150 19.967 -73.253 19.919 -73.343 19.870 -73.441 19.787 -73.526 19.704 -73.478 19.696 -73.381 19.712 -73.287 19.696 -73.179 19.671 -73.080 19.572 -72.875 19.489 -72.808 19.398 -72.834 19.315 -72.861 19.307 -72.869 19.224 -72.820 19.168 -72.860 19.085 -72.840 19.001 -72.744 18.910 -72.665 18.837 -72.560 18.771 -72.455 18.688 -72.427 18.605 -72.454 18.630 -72.553 18.638 -72.650 18.589 -72.748 18.506 -72.822 18.514 -72.861 18.514 -72.957 18.539 -73.056 18.531 -73.151 18.562 -73.251 18.555 -73.354 18.587 -73.454 18.595 -73.551 18.587 -73.646 18.628 -73.757 18.653 -73.655 18.645 -73.759 18.645 -73.786 18.615 -73.877 18.645 -73.977 18.678 -74.086 18.711 -74.187 ; #1501 12 18.162 -73.675 18.154 -73.778 18.129 -73.670 ; #1502 12 18.769 -72.901 18.835 -72.883 18.918 -72.961 18.959 -73.062 18.999 -73.172 19.040 -73.273 19.007 -73.365 18.924 -73.316 18.891 -73.216 18.826 -73.112 18.818 -73.015 18.767 -72.903 ; #1503 12 20.073 -72.681 20.106 -72.724 20.137 -72.825 20.096 -72.915 20.073 -72.815 ; #1504 12 18.427 -64.952 18.419 -65.056 18.386 -64.956 ; #1505 12 18.800 -64.352 18.800 -64.448 18.767 -64.348 ; #1506 12 18.235 -63.243 18.258 -63.150 18.342 -63.063 18.293 -63.154 18.237 -63.243 ; #1507 12 21.812 -72.344 21.836 -72.292 21.884 -72.203 21.860 -72.296 21.894 -72.406 21.810 -72.346 ; #1508 12 21.894 -71.944 21.984 -72.014 21.894 -71.953 ; #1509 12 21.808 -71.729 21.816 -71.713 21.900 -71.743 21.859 -71.834 21.810 -71.730 ; #1510 12 21.729 -71.542 21.795 -71.552 21.810 -71.651 21.727 -71.542 ; #1511 12 -18.028 177.621 -18.061 177.725 -18.094 177.839 -18.134 177.945 -18.142 178.043 -18.134 178.146 -18.127 178.239 -18.069 178.320 -18.021 178.403 -17.987 178.490 -17.987 178.594 -17.980 178.659 -17.972 178.753 -17.889 178.806 -17.798 178.698 -17.715 178.733 -17.632 178.673 -17.549 178.706 -17.465 178.620 -17.407 178.509 -17.324 178.458 -17.349 178.368 -17.258 178.382 -17.218 178.276 -17.233 178.184 -17.274 178.090 -17.282 177.997 -17.266 177.897 -17.274 177.870 -17.357 177.701 -17.397 177.607 -17.481 177.545 -17.564 177.529 -17.655 177.477 -17.728 177.392 -17.812 177.368 -17.895 177.390 -17.978 177.430 -18.011 177.534 -18.026 177.623 ; #1512 12 -17.047 177.303 -16.974 177.380 -16.997 177.290 ; #1513 12 -18.469 177.758 -18.386 177.745 -18.469 177.749 ; #1514 12 -19.032 178.175 -19.024 178.192 -18.959 178.270 -18.893 178.348 -18.926 178.462 -18.901 178.551 -18.817 178.482 -18.817 178.386 -18.851 178.299 -18.924 178.214 -18.932 178.120 -19.022 178.079 -19.030 178.177 ; #1515 12 -16.724 177.534 -16.666 177.614 -16.583 177.687 -16.641 177.607 -16.707 177.529 -16.722 177.533 ; #1516 12 -17.630 178.873 -17.564 178.960 -17.531 178.856 -17.614 178.869 ; #1517 12 -16.051 -179.907 -16.036 -179.929 -16.076 179.986 -16.101 179.898 -16.101 179.802 -16.125 179.704 -16.150 179.615 -16.191 179.531 -16.281 179.488 -16.281 179.384 -16.289 179.291 -16.314 179.193 -16.330 179.102 -16.355 179.013 -16.446 178.961 -16.479 178.875 -16.544 178.797 -16.529 178.688 -16.603 178.612 -16.686 178.626 -16.693 178.732 -16.776 178.772 -16.868 178.796 -16.844 178.886 -16.761 178.959 -16.776 179.059 -16.720 179.139 -16.672 179.222 -16.589 179.304 -16.589 179.399 -16.680 179.442 -16.687 179.540 -16.672 179.631 -16.647 179.728 -16.606 179.813 -16.606 179.909 -16.599 -179.998 -16.515 179.989 -16.424 -179.980 -16.341 -179.965 -16.382 179.951 -16.448 179.864 -16.531 179.791 -16.597 179.704 -16.563 179.600 -16.490 179.676 -16.407 179.720 -16.351 179.800 -16.285 179.878 -16.194 179.929 -16.111 -179.989 -16.055 -179.908 ; #1518 12 -17.993 179.438 -17.945 179.463 -17.862 179.440 -17.821 179.334 -17.912 179.376 -17.995 179.436 ; #1519 12 -18.518 -179.998 -18.435 -179.936 -18.435 179.968 -18.518 179.991 -18.518 180.000 ; #1520 12 -17.196 -178.874 -17.105 -178.814 -17.179 -178.890 -17.194 -178.877 ; #1521 12 6.868 158.346 6.883 158.411 6.966 158.448 7.050 158.361 7.042 158.266 6.951 158.275 6.868 158.342 ; #1522 12 45.102 15.771 45.027 15.788 44.978 15.776 44.894 15.805 44.827 15.752 44.752 15.855 44.745 15.925 44.745 15.945 44.711 15.975 44.663 16.006 44.570 16.074 44.522 16.133 44.471 16.150 44.430 16.159 44.389 16.209 44.381 16.218 44.263 16.214 44.240 16.245 44.207 16.295 44.123 16.363 44.074 16.466 44.015 16.568 43.991 16.599 43.907 16.688 43.823 16.736 43.790 16.798 43.715 16.909 43.649 16.990 43.590 17.060 43.549 17.151 43.493 17.263 43.485 17.253 43.469 17.252 43.385 17.268 43.336 17.298 43.320 17.316 43.236 17.426 43.203 17.476 43.162 17.578 43.121 17.628 43.121 17.637 43.105 17.647 43.039 17.663 43.013 17.570 43.013 17.560 42.957 17.640 42.964 17.650 42.990 17.712 42.974 17.825 42.925 17.832 42.858 17.933 42.835 18.036 42.776 18.138 42.745 18.187 42.712 18.227 42.704 18.331 42.645 18.441 42.645 18.482 42.653 18.492 42.745 18.547 42.786 18.540 42.827 18.481 42.911 18.444 42.919 18.454 43.019 18.430 43.085 18.474 43.093 18.617 43.177 18.592 43.185 18.593 43.277 18.648 43.318 18.641 43.369 18.747 43.393 18.809 43.400 18.829 43.416 18.820 43.400 18.923 43.344 18.962 43.328 18.971 43.428 18.995 43.520 18.895 43.586 18.899 43.571 19.012 43.586 19.105 43.586 19.168 43.653 19.223 43.653 19.293 43.637 19.397 43.686 19.470 43.786 19.475 43.835 19.449 43.835 19.439 43.884 19.378 43.933 19.320 44.024 19.220 44.058 19.263 44.024 19.366 44.017 19.471 44.091 19.579 44.107 19.570 44.158 19.468 44.166 19.469 44.232 19.367 44.316 19.299 44.324 19.194 44.340 19.134 44.424 19.077 44.440 19.078 44.531 19.102 44.588 19.147 44.622 19.158 44.678 19.213 44.762 19.290 44.788 19.302 44.854 19.315 44.939 19.320 44.954 19.269 44.962 19.154 44.954 19.112 44.905 19.005 44.898 18.943 44.905 18.838 44.980 18.727 45.039 18.750 45.039 18.698 45.072 18.690 45.104 18.586 45.112 18.516 45.104 18.464 45.104 18.445 45.138 18.417 45.146 18.312 45.138 18.196 45.122 18.102 45.190 17.990 45.166 17.960 45.158 17.940 45.106 17.898 45.106 17.793 45.122 17.752 45.179 17.649 45.156 17.607 45.156 17.501 45.172 17.450 45.188 17.336 45.188 17.221 45.213 17.107 45.255 16.993 45.271 17.004 45.312 16.900 45.263 16.836 45.229 16.835 45.245 16.730 45.261 16.616 45.261 16.510 45.237 16.490 45.229 16.480 45.188 16.458 45.102 16.372 45.045 16.308 45.037 16.298 45.037 16.288 45.094 16.185 45.179 16.083 45.205 16.042 45.263 15.993 45.263 15.878 45.255 15.836 45.229 15.803 45.136 15.770 45.112 15.769 ; #1523 12 56.433 -61.645 56.441 -61.765 56.450 -61.895 56.379 -61.736 56.354 -61.595 56.425 -61.525 ; #1524 12 56.594 -61.656 56.533 -61.743 56.481 -61.585 56.489 -61.475 56.481 -61.346 56.571 -61.517 56.595 -61.647 56.595 -61.657 ; #1525 12 56.951 -61.458 56.968 -61.480 56.984 -61.605 56.932 -61.687 56.843 -61.721 56.753 -61.699 56.656 -61.547 56.727 -61.466 56.816 -61.487 56.833 -61.613 56.858 -61.514 56.947 -61.456 ; #1526 12 56.211 -61.189 56.157 -61.269 56.059 -61.253 56.042 -61.128 56.122 -61.053 ; #1527 12 57.496 -62.036 57.512 -61.955 57.591 -61.891 57.608 -62.017 57.581 -62.115 57.491 -62.036 ; #1528 12 57.907 -61.988 57.932 -62.120 57.843 -62.190 57.826 -62.063 57.905 -61.987 ; #1529 12 57.479 -61.910 57.452 -61.914 57.479 -61.816 57.479 -61.907 ; #1530 12 57.807 -61.763 57.870 -61.803 57.870 -61.919 57.791 -61.994 57.755 -61.845 ; #1531 12 54.605 -57.347 54.562 -57.437 54.554 -57.320 ; #1532 12 53.529 -55.980 53.486 -56.070 53.452 -55.940 53.511 -55.859 53.527 -55.979 ; #1533 12 47.047 -70.923 47.073 -70.937 47.039 -71.035 46.990 -71.116 46.905 -71.179 46.928 -71.084 46.970 -70.990 47.045 -70.922 ; #1534 12 47.190 -70.562 47.190 -70.602 47.104 -70.633 47.190 -70.560 ; #1535 12 47.471 -70.449 47.422 -70.531 47.463 -70.445 ; #1536 12 47.933 -69.810 47.949 -69.829 47.864 -69.879 47.931 -69.807 ; #1537 12 45.225 -67.277 45.158 -67.192 45.215 -67.240 45.223 -67.273 ; #1538 12 45.001 -66.996 44.909 -66.997 44.993 -66.973 ; #1539 12 44.848 -66.843 44.792 -66.924 44.708 -66.907 44.756 -66.813 44.840 -66.830 ; #1540 12 44.406 -66.300 44.414 -66.323 44.330 -66.380 44.404 -66.297 ; #1541 12 46.298 -63.788 46.256 -63.662 46.230 -63.544 46.197 -63.422 46.188 -63.312 46.274 -63.258 46.274 -63.216 46.341 -63.132 46.282 -63.175 46.232 -63.036 46.147 -62.996 46.105 -63.083 46.105 -62.977 46.012 -62.934 46.004 -62.825 46.004 -62.719 46.012 -62.607 46.098 -62.562 46.190 -62.563 46.216 -62.691 46.258 -62.594 46.308 -62.501 46.393 -62.456 46.393 -62.341 46.409 -62.232 46.442 -62.141 46.492 -62.057 46.508 -62.181 46.516 -62.291 46.508 -62.394 46.508 -62.561 46.500 -62.674 46.492 -62.777 46.476 -62.886 46.468 -62.988 46.460 -63.090 46.460 -63.207 46.468 -63.317 46.536 -63.455 46.502 -63.545 46.587 -63.669 46.595 -63.789 46.510 -63.801 46.494 -63.900 46.520 -64.028 46.595 -63.947 46.680 -63.978 46.851 -64.165 46.908 -64.086 46.993 -64.094 47.087 -64.086 47.037 -64.169 46.995 -64.256 46.928 -64.340 46.843 -64.384 46.793 -64.477 46.708 -64.508 46.666 -64.372 46.651 -64.259 46.674 -64.163 46.589 -64.165 46.496 -64.192 46.439 -64.059 46.446 -63.947 46.439 -63.837 46.353 -63.838 46.304 -63.783 ; #1542 12 48.058 -64.629 47.965 -64.604 48.058 -64.587 ; #1543 12 49.874 -63.557 49.882 -63.669 49.906 -63.789 49.914 -63.902 49.930 -64.029 49.963 -64.153 49.979 -64.280 49.953 -64.376 49.937 -64.477 49.896 -64.576 49.862 -64.440 49.787 -64.296 49.755 -64.172 49.729 -64.041 49.672 -63.904 49.587 -63.755 49.502 -63.694 49.416 -63.600 49.382 -63.466 49.341 -63.337 49.281 -63.201 49.257 -63.081 49.232 -62.951 49.208 -62.832 49.182 -62.712 49.182 -62.603 49.148 -62.469 49.115 -62.336 49.131 -62.235 49.115 -62.119 49.123 -62.015 49.115 -61.903 49.141 -61.797 49.226 -61.797 49.311 -61.866 49.396 -62.024 49.430 -62.148 49.454 -62.268 49.529 -62.422 49.614 -62.571 49.664 -62.702 49.697 -62.826 49.731 -62.961 49.789 -63.097 49.815 -63.218 49.841 -63.339 49.864 -63.469 49.872 -63.558 ; #1544 12 45.637 -61.421 45.621 -61.308 45.606 -61.196 45.632 -61.102 45.665 -61.001 45.639 -60.884 45.606 -60.763 45.647 -60.666 45.663 -60.568 45.679 -60.459 45.729 -60.375 45.763 -60.285 45.812 -60.191 45.897 -60.209 45.905 -60.097 45.905 -60.077 45.956 -59.994 45.965 -59.882 46.032 -60.018 46.100 -59.942 46.192 -59.919 46.185 -60.022 46.234 -60.076 46.284 -60.215 46.190 -60.266 46.284 -60.298 46.343 -60.431 46.284 -60.520 46.149 -60.672 46.175 -60.578 46.232 -60.497 46.258 -60.403 46.199 -60.482 46.131 -60.558 46.089 -60.655 46.048 -60.742 45.998 -60.836 45.982 -60.861 45.933 -60.733 46.000 -60.551 45.933 -60.627 45.875 -60.717 45.824 -60.799 45.739 -60.813 45.697 -60.899 45.782 -60.928 45.782 -61.034 45.741 -61.131 45.826 -61.150 45.851 -61.055 45.937 -61.062 45.945 -60.959 45.986 -60.885 46.072 -60.839 46.080 -60.949 46.030 -61.033 45.973 -61.123 46.048 -61.041 46.115 -60.965 46.115 -60.859 46.131 -60.760 46.181 -60.667 46.256 -60.594 46.314 -60.504 46.314 -60.620 46.238 -60.693 46.332 -60.628 46.417 -60.583 46.502 -60.527 46.587 -60.494 46.680 -60.473 46.765 -60.418 46.859 -60.398 46.900 -60.533 46.986 -60.539 47.071 -60.695 46.995 -60.767 46.910 -60.822 46.853 -60.913 46.793 -61.002 46.708 -61.058 46.651 -61.138 46.565 -61.152 46.480 -61.197 46.413 -61.273 46.327 -61.350 46.260 -61.425 46.209 -61.518 46.123 -61.563 46.038 -61.618 45.945 -61.585 45.860 -61.566 45.766 -61.533 45.681 -61.475 45.639 -61.427 ; #1545 12 47.354 -62.061 47.269 -62.106 47.269 -61.989 47.295 -61.894 47.352 -62.037 47.394 -62.004 47.444 -61.920 47.485 -61.833 47.579 -61.769 47.511 -61.845 47.461 -61.939 47.519 -61.848 47.579 -61.769 47.586 -61.762 47.628 -61.674 47.612 -61.560 47.680 -61.484 47.671 -61.587 47.638 -61.679 47.596 -61.767 47.529 -61.853 47.479 -61.937 47.446 -62.028 47.352 -62.060 ; #1546 12 45.592 -60.983 45.616 -61.055 45.600 -61.163 45.514 -61.063 45.590 -60.982 ; #1547 12 47.523 -61.850 47.465 -61.941 47.515 -61.846 47.583 -61.770 ; #1548 12 43.950 -59.975 43.999 -59.890 43.976 -59.986 43.968 -60.087 43.968 -60.097 43.976 -60.205 43.942 -60.087 ; #1549 12 47.658 -58.500 47.707 -58.448 47.757 -58.362 47.671 -58.399 47.680 -58.286 47.713 -58.194 47.705 -58.083 47.671 -57.961 47.638 -57.829 47.622 -57.715 47.664 -57.617 47.656 -57.506 47.664 -57.393 47.614 -57.404 47.622 -57.300 47.588 -57.178 47.614 -57.072 47.564 -56.944 47.572 -56.831 47.606 -56.738 47.638 -56.722 47.638 -56.615 47.630 -56.504 47.646 -56.394 47.731 -56.378 47.646 -56.374 47.646 -56.257 47.739 -56.234 47.824 -56.205 47.739 -56.117 47.789 -56.031 47.815 -55.925 47.907 -55.869 47.815 -55.882 47.729 -55.953 47.644 -55.888 47.667 -55.791 47.626 -55.880 47.626 -55.900 47.584 -55.989 47.568 -56.099 47.493 -56.174 47.527 -56.072 47.561 -55.979 47.568 -55.876 47.483 -55.914 47.491 -55.800 47.507 -55.700 47.422 -55.664 47.481 -55.595 47.497 -55.495 47.583 -55.478 47.675 -55.528 47.667 -55.407 47.667 -55.300 47.634 -55.179 47.727 -55.100 47.785 -55.018 47.699 -55.089 47.614 -55.118 47.622 -55.004 47.656 -54.911 47.671 -54.811 47.630 -54.900 47.545 -54.972 47.521 -55.079 47.505 -55.180 47.473 -55.284 47.457 -55.296 47.372 -55.355 47.279 -55.389 47.237 -55.478 47.170 -55.556 47.138 -55.649 47.122 -55.749 47.122 -55.866 47.089 -55.959 47.013 -56.044 46.928 -56.017 46.894 -55.896 46.902 -55.793 46.910 -55.690 46.944 -55.588 46.894 -55.461 46.936 -55.404 46.970 -55.301 47.063 -55.278 47.104 -55.179 47.190 -55.120 47.275 -55.094 47.332 -55.011 47.418 -54.939 47.376 -54.805 47.410 -54.712 47.485 -54.627 47.553 -54.548 47.459 -54.616 47.374 -54.665 47.424 -54.578 47.465 -54.489 47.551 -54.492 47.626 -54.406 47.719 -54.360 47.804 -54.288 47.898 -54.274 47.882 -54.160 47.796 -54.083 47.703 -54.034 47.618 -53.980 47.525 -53.974 47.439 -53.896 47.364 -53.972 47.338 -54.079 47.253 -54.044 47.196 -54.127 47.111 -54.176 47.025 -54.226 46.940 -54.265 46.847 -54.269 46.847 -54.236 46.839 -54.127 46.881 -54.037 46.948 -53.949 47.023 -53.873 47.073 -53.786 47.140 -53.697 47.174 -53.604 47.089 -53.642 47.003 -53.714 46.978 -53.586 46.910 -53.675 46.825 -53.693 46.892 -53.614 46.807 -53.686 46.722 -53.712 46.629 -53.633 46.714 -53.455 46.730 -53.344 46.645 -53.216 46.704 -53.123 46.772 -53.044 46.864 -53.010 46.950 -52.960 47.043 -52.936 47.128 -52.938 47.222 -52.913 47.307 -52.841 47.340 -52.824 47.426 -52.765 47.511 -52.714 47.596 -52.748 47.689 -52.796 47.774 -52.810 47.741 -52.904 47.656 -52.932 47.562 -52.988 47.521 -53.089 47.471 -53.176 47.463 -53.279 47.549 -53.272 47.642 -53.330 47.717 -53.253 47.810 -53.216 47.896 -53.144 47.981 -53.083 48.074 -53.026 48.124 -52.929 48.139 -53.053 48.064 -53.130 48.080 -53.244 48.030 -53.340 47.955 -53.417 47.879 -53.494 47.794 -53.544 47.701 -53.568 47.644 -53.652 47.551 -53.633 47.542 -53.747 47.618 -53.798 47.703 -53.781 47.695 -53.894 47.781 -53.929 47.866 -53.955 47.832 -53.834 47.918 -53.849 47.967 -53.751 48.052 -53.744 48.028 -53.851 48.044 -53.965 48.044 -53.849 48.094 -53.761 48.094 -53.869 48.154 -54.010 48.239 -53.971 48.213 -53.842 48.187 -53.724 48.239 -53.638 48.288 -53.541 48.345 -53.457 48.395 -53.425 48.364 -53.304 48.405 -53.204 48.491 -53.131 48.576 -53.080 48.661 -53.178 48.594 -53.258 48.544 -53.345 48.629 -53.455 48.570 -53.539 48.484 -53.599 48.484 -53.707 48.443 -53.797 48.528 -53.802 48.461 -53.882 48.401 -53.965 48.486 -53.925 48.455 -54.020 48.421 -54.124 48.379 -54.214 48.447 -54.177 48.463 -54.066 48.504 -53.975 48.590 -53.903 48.598 -54.014 48.605 -53.899 48.647 -53.808 48.706 -53.716 48.681 -53.813 48.766 -53.910 48.681 -53.908 48.639 -54.009 48.681 -54.026 48.766 -54.071 48.758 -53.960 48.843 -53.910 48.843 -54.018 48.817 -54.125 48.826 -54.236 48.851 -54.129 48.909 -54.045 48.984 -53.968 49.034 -53.881 49.042 -53.776 49.117 -53.689 49.184 -53.609 49.259 -53.521 49.283 -53.617 49.369 -53.748 49.402 -53.870 49.452 -54.009 49.460 -54.120 49.418 -54.211 49.418 -54.428 49.333 -54.465 49.266 -54.545 49.266 -54.556 49.359 -54.532 49.444 -54.525 49.529 -54.560 49.480 -54.648 49.394 -54.731 49.327 -54.810 49.285 -54.901 49.371 -54.947 49.285 -54.941 49.261 -55.050 49.285 -55.145 49.254 -55.240 49.212 -55.340 49.127 -55.252 49.085 -55.352 49.051 -55.446 49.051 -55.456 49.059 -55.449 49.145 -55.400 49.230 -55.373 49.305 -55.287 49.390 -55.283 49.458 -55.203 49.551 -55.253 49.476 -55.329 49.390 -55.303 49.323 -55.382 49.416 -55.432 49.502 -55.469 49.460 -55.559 49.367 -55.628 49.392 -55.639 49.478 -55.645 49.470 -55.760 49.527 -55.893 49.511 -55.994 49.470 -56.095 49.436 -56.199 49.504 -56.110 49.529 -56.012 49.622 -55.999 49.690 -55.909 49.706 -56.025 49.664 -56.115 49.630 -56.220 49.682 -56.123 49.749 -56.043 49.765 -55.942 49.807 -55.851 49.830 -55.753 49.872 -55.662 49.906 -55.558 49.999 -55.545 50.007 -55.549 49.999 -55.585 49.957 -55.653 49.942 -55.765 49.999 -55.899 50.015 -55.927 49.999 -56.027 49.999 -56.166 50.041 -56.135 50.128 -56.231 50.070 -56.311 50.001 -56.385 49.993 -56.391 49.908 -56.440 49.882 -56.548 49.824 -56.632 49.749 -56.717 49.674 -56.793 49.607 -56.872 49.692 -56.847 49.785 -56.930 49.826 -56.829 49.912 -56.781 50.005 -56.801 50.066 -56.746 50.135 -56.662 50.195 -56.584 50.290 -56.523 50.377 -56.494 50.436 -56.414 50.523 -56.349 50.687 -56.203 50.774 -56.247 50.861 -56.204 50.774 -56.117 50.861 -56.041 50.895 -55.949 50.982 -55.917 51.069 -55.897 51.128 -55.807 51.223 -55.888 51.206 -55.999 51.199 -56.105 51.293 -56.120 51.380 -56.110 51.338 -55.979 51.354 -55.878 51.322 -55.741 51.391 -55.666 51.425 -55.573 51.520 -55.547 51.607 -55.622 51.615 -55.736 51.583 -55.829 51.496 -55.818 51.547 -55.954 51.633 -56.008 51.583 -56.093 51.548 -56.185 51.514 -56.288 51.480 -56.380 51.445 -56.473 51.421 -56.581 51.395 -56.677 51.352 -56.765 51.293 -56.856 51.206 -56.865 51.130 -56.935 51.071 -57.025 50.984 -57.054 50.889 -57.069 50.830 -57.148 50.771 -57.238 50.746 -57.334 50.711 -57.425 50.616 -57.280 50.632 -57.408 50.373 -57.602 50.286 -57.631 50.199 -57.672 50.104 -57.732 50.017 -57.796 49.942 -57.835 49.771 -57.977 49.686 -58.015 49.592 -57.973 49.508 -57.883 49.474 -57.976 49.559 -58.004 49.559 -58.112 49.502 -58.195 49.434 -58.284 49.349 -58.309 49.264 -58.271 49.240 -58.153 49.240 -58.034 49.172 -58.123 49.156 -57.997 49.156 -58.105 49.097 -58.198 49.012 -58.087 49.012 -57.979 48.988 -58.031 49.012 -58.150 49.097 -58.283 49.097 -58.391 49.113 -58.506 49.028 -58.586 48.942 -58.601 48.772 -58.741 48.686 -58.756 48.601 -58.803 48.651 -58.933 48.635 -59.034 48.720 -58.976 48.788 -58.889 48.738 -58.984 48.653 -59.162 48.603 -59.258 48.518 -59.250 48.542 -59.142 48.542 -59.035 48.550 -58.931 48.566 -58.830 48.581 -58.729 48.540 -58.625 48.532 -58.514 48.540 -58.400 48.516 -58.507 48.482 -58.522 48.474 -58.626 48.425 -58.712 48.349 -58.786 48.300 -58.882 48.248 -58.967 48.191 -59.049 48.149 -59.138 48.108 -59.226 48.066 -59.325 47.991 -59.398 47.916 -59.482 47.822 -59.421 47.737 -59.392 47.652 -59.384 47.610 -59.259 47.618 -59.155 47.626 -59.041 47.642 -58.942 47.642 -58.835 47.667 -58.739 47.675 -58.636 47.675 -58.518 ; #1550 12 47.122 -56.474 47.029 -56.435 46.944 -56.418 46.851 -56.378 46.944 -56.388 47.029 -56.372 47.115 -56.377 ; #1551 12 47.684 -54.231 47.608 -54.307 47.437 -54.363 47.505 -54.284 47.598 -54.250 47.684 -54.211 ; #1552 12 50.826 -55.549 50.835 -55.606 50.748 -55.628 50.824 -55.547 ; #1553 12 49.672 -54.598 49.672 -54.640 49.620 -54.727 49.636 -54.853 49.611 -54.950 49.525 -54.871 49.567 -54.771 49.592 -54.673 49.668 -54.596 ; #1554 12 49.771 -54.147 49.787 -54.184 49.755 -54.279 49.696 -54.373 49.611 -54.347 49.636 -54.249 49.670 -54.146 49.686 -54.044 49.771 -54.142 ; #1555 12 49.914 -126.890 49.906 -126.913 49.882 -127.001 49.797 -126.978 49.712 -127.020 49.626 -126.836 49.650 -126.749 49.821 -126.772 49.914 -126.885 ; #1556 12 49.430 -126.263 49.430 -126.283 49.396 -126.362 49.311 -126.297 49.337 -126.212 ; #1557 12 49.268 -126.001 49.268 -126.021 49.182 -125.936 ; #1558 12 51.755 -128.207 51.763 -128.215 51.728 -128.299 51.678 -128.355 51.591 -128.316 51.496 -128.185 51.488 -128.066 51.662 -128.141 51.757 -128.212 ; #1559 12 52.495 -128.842 52.511 -128.860 52.487 -128.770 52.511 -128.685 52.598 -128.724 52.685 -128.753 52.669 -128.789 52.643 -128.872 52.618 -128.957 52.531 -128.928 52.515 -128.867 52.515 -128.978 52.428 -128.972 52.341 -128.879 52.402 -128.833 52.497 -128.847 ; #1560 12 52.085 -128.162 52.101 -128.210 52.092 -128.321 52.050 -128.387 51.981 -128.424 51.894 -128.342 51.807 -128.292 51.833 -128.210 51.920 -128.206 51.998 -128.177 52.085 -128.159 ; #1561 12 52.172 -128.530 52.179 -128.518 52.266 -128.489 52.259 -128.592 ; #1562 12 52.224 -128.364 52.224 -128.452 52.163 -128.498 52.076 -128.405 52.137 -128.359 ; #1563 12 50.808 -126.969 50.824 -126.876 50.885 -126.821 50.869 -126.913 50.810 -126.971 ; #1564 12 50.634 -126.437 50.618 -126.540 50.565 -126.704 50.557 -126.586 50.557 -126.476 ; #1565 12 54.109 -130.327 54.117 -130.367 54.022 -130.352 54.109 -130.325 ; #1566 12 52.208 -128.250 52.208 -128.260 52.121 -128.265 52.121 -128.154 52.197 -128.126 52.206 -128.245 ; #1567 12 50.861 -126.424 50.861 -126.477 50.844 -126.570 50.810 -126.643 50.776 -126.716 50.689 -126.735 50.681 -126.618 50.689 -126.507 50.715 -126.425 50.774 -126.376 ; #1568 12 50.800 -126.841 50.757 -126.797 50.808 -126.730 ; #1569 12 53.442 -129.578 53.442 -129.608 53.355 -129.524 53.442 -129.575 ; #1570 12 52.451 -128.308 52.416 -128.369 52.329 -128.374 52.364 -128.290 52.451 -128.305 ; #1571 12 52.329 -128.178 52.346 -128.250 52.313 -128.326 52.226 -128.222 52.242 -128.119 52.329 -128.181 ; #1572 12 52.497 -128.844 52.513 -128.862 52.513 -128.973 52.426 -128.967 52.339 -128.874 52.400 -128.828 52.495 -128.842 ; #1573 12 52.507 -128.853 52.483 -128.763 52.507 -128.678 52.594 -128.717 52.681 -128.746 52.665 -128.783 52.639 -128.865 52.614 -128.950 52.527 -128.921 52.511 -128.860 ; #1574 12 53.640 -133.088 53.632 -133.190 53.545 -133.049 53.502 -132.880 53.415 -132.708 53.407 -132.810 53.407 -132.932 53.381 -132.791 53.330 -132.847 53.304 -132.929 53.280 -132.790 53.185 -132.674 53.201 -132.571 53.201 -132.516 53.175 -132.609 53.175 -132.720 53.088 -132.735 53.079 -132.614 53.079 -132.503 53.045 -132.344 53.003 -132.418 52.994 -132.521 52.900 -132.460 52.813 -132.385 52.839 -132.292 52.752 -132.284 52.657 -132.136 52.570 -132.020 52.483 -131.860 52.388 -131.776 52.301 -131.671 52.214 -131.532 52.275 -131.487 52.179 -131.438 52.222 -131.363 52.230 -131.262 52.262 -131.307 52.349 -131.358 52.341 -131.460 52.428 -131.620 52.523 -131.713 52.584 -131.890 52.671 -131.921 52.758 -131.996 52.835 -131.970 52.922 -132.097 52.922 -132.208 52.946 -132.124 53.041 -132.163 53.102 -132.119 53.110 -132.017 53.083 -131.876 53.170 -131.918 53.266 -132.013 53.273 -132.133 53.239 -132.217 53.197 -132.292 53.189 -132.394 53.197 -132.458 53.223 -132.365 53.292 -132.319 53.292 -132.208 53.353 -132.163 53.429 -132.137 53.525 -132.143 53.612 -132.141 53.688 -132.114 53.757 -132.068 53.844 -132.066 53.895 -131.999 53.945 -131.943 53.998 -131.889 54.074 -131.852 54.170 -131.846 54.127 -131.911 54.074 -132.097 54.050 -132.182 54.050 -132.295 53.963 -132.310 53.913 -132.309 54.000 -132.340 54.087 -132.416 54.129 -132.587 54.087 -132.651 54.061 -132.744 54.002 -132.802 54.071 -132.766 54.158 -132.809 54.166 -132.930 54.158 -133.033 54.192 -133.184 54.158 -133.258 54.063 -133.239 54.020 -133.304 53.951 -133.350 53.856 -133.274 53.769 -133.188 53.683 -133.145 53.640 -133.098 ; #1575 12 52.190 -131.300 52.147 -131.351 52.052 -131.258 52.103 -131.203 52.190 -131.297 ; #1576 12 52.867 -131.874 52.875 -131.872 52.849 -131.965 52.865 -131.871 ; #1577 12 52.989 -132.119 52.912 -131.923 52.954 -131.848 53.041 -131.855 53.057 -131.984 53.065 -132.115 ; #1578 12 54.101 -130.509 54.125 -130.556 54.101 -130.642 54.074 -130.736 54.032 -130.801 53.990 -130.876 53.903 -130.802 53.990 -130.853 53.931 -130.677 54.000 -130.640 54.000 -130.528 53.976 -130.613 53.899 -130.641 53.899 -130.519 53.949 -130.462 54.018 -130.415 54.105 -130.511 ; #1579 12 52.859 -129.446 52.859 -129.501 52.772 -129.484 52.685 -129.421 52.598 -129.327 52.511 -129.169 52.588 -129.141 52.675 -129.180 52.770 -129.303 52.857 -129.442 ; #1580 12 53.536 -130.203 53.529 -130.174 53.587 -130.115 53.553 -130.200 ; #1581 12 53.866 -132.366 53.816 -132.433 53.800 -132.526 53.773 -132.609 53.739 -132.693 53.696 -132.768 53.696 -132.646 53.713 -132.552 53.678 -132.636 53.609 -132.672 53.652 -132.596 53.694 -132.532 53.694 -132.409 53.747 -132.357 53.834 -132.364 53.884 -132.308 53.919 -132.302 ; #1582 5 35.344 78.082 35.951 78.999 35.943 78.967 35.977 78.877 35.903 78.753 35.837 78.623 35.821 78.529 35.763 78.411 35.697 78.302 35.614 78.209 35.606 78.106 35.540 77.985 35.547 77.918 35.555 77.892 35.489 77.960 35.538 78.043 35.489 78.129 35.406 78.094 35.398 78.091 35.348 78.086 ; #1583 12 35.218 78.123 35.134 78.186 35.043 78.207 34.994 78.211 34.979 78.226 35.895 79.608 35.903 79.552 35.986 79.510 36.027 79.423 36.002 79.314 35.994 79.293 35.994 79.193 35.969 79.075 35.953 79.002 35.346 78.085 35.315 78.085 35.223 78.126 ; #1584 12 34.636 78.456 34.629 78.494 34.613 78.589 34.606 78.688 34.565 78.777 34.491 78.868 34.476 78.913 35.507 80.444 35.565 80.383 35.581 80.339 35.515 80.217 35.474 80.095 35.557 80.063 35.565 80.065 35.648 80.033 35.623 79.925 34.640 78.459 ; #1585 12 33.880 78.902 33.797 78.909 33.748 78.906 33.733 78.902 33.710 78.905 33.627 78.903 33.619 78.901 33.528 78.936 33.472 79.031 33.555 79.022 33.571 79.025 33.603 79.024 33.611 79.017 33.694 79.008 33.687 79.106 33.770 79.108 33.810 79.109 33.836 79.097 33.859 79.063 33.925 79.031 34.008 78.995 34.074 79.111 34.089 79.224 34.081 79.321 34.081 79.421 34.089 79.532 34.138 79.563 34.228 79.596 34.312 79.647 34.395 79.629 34.453 79.613 34.476 79.698 34.469 79.784 34.501 79.830 34.584 79.803 34.625 79.901 34.708 79.941 34.716 80.001 34.708 80.057 34.799 80.148 34.824 80.154 34.907 80.237 34.931 80.243 33.975 78.851 33.967 78.859 33.876 78.885 ; #1586 5 34.397 79.044 34.346 79.071 34.331 79.076 34.248 79.046 34.182 78.929 34.134 78.808 34.051 78.817 33.977 78.847 34.933 80.238 34.990 80.244 35.138 80.241 35.222 80.328 35.313 80.347 35.396 80.355 35.487 80.451 35.503 80.447 34.472 78.917 34.449 78.960 34.401 79.047 ; #1587 12 11.764 -85.980 11.706 -85.937 11.623 -85.901 11.540 -85.875 11.457 -85.840 11.374 -85.756 11.325 -85.656 11.269 -85.555 11.244 -85.458 11.203 -85.359 11.188 -85.262 11.180 -85.186 11.165 -85.090 11.149 -85.042 11.133 -84.945 11.199 -84.857 11.215 -84.868 11.248 -84.871 11.331 -84.871 11.414 -84.944 11.447 -84.965 11.530 -85.020 11.613 -85.094 11.621 -85.104 11.704 -85.159 11.720 -85.187 11.793 -85.232 11.876 -85.336 11.917 -85.377 11.967 -85.478 12.023 -85.578 12.107 -85.642 12.132 -85.740 12.147 -85.768 12.203 -85.869 12.180 -85.951 12.107 -85.998 12.023 -86.016 11.940 -85.981 11.849 -85.962 11.766 -85.972 ; #1588 12 48.877 -87.879 48.893 -87.889 48.901 -88.002 48.893 -88.105 48.861 -88.203 48.776 -88.139 48.800 -88.036 48.792 -87.923 48.877 -87.882 ; #1589 12 48.877 -87.794 48.877 -87.857 48.792 -87.760 ; #1590 12 47.846 -85.839 47.846 -85.946 47.761 -86.011 47.769 -85.909 47.844 -85.838 ; #1591 12 46.433 -84.265 46.525 -84.268 46.542 -84.384 46.448 -84.338 46.381 -84.223 ; #1592 12 46.143 -84.007 46.185 -83.916 46.270 -83.893 46.337 -84.039 46.337 -84.155 46.252 -84.178 46.167 -84.097 46.143 -84.010 ; #1593 12 46.032 -83.443 46.016 -83.540 45.931 -83.595 45.905 -83.463 45.947 -83.382 ; #1594 12 47.846 -85.839 47.846 -85.946 47.761 -86.011 47.769 -85.909 47.844 -85.838 ; #1595 12 46.143 -84.007 46.185 -83.916 46.270 -83.893 46.337 -84.039 46.337 -84.155 46.252 -84.178 46.167 -84.097 46.143 -84.010 ; #1596 12 46.032 -83.443 46.016 -83.540 45.931 -83.595 45.905 -83.463 45.947 -83.382 ; #1597 12 48.877 -87.879 48.893 -87.889 48.901 -88.002 48.893 -88.105 48.861 -88.203 48.776 -88.139 48.800 -88.036 48.792 -87.923 48.877 -87.882 ; #1598 12 48.877 -87.794 48.877 -87.857 48.792 -87.760 ; #1599 13 -12.261 44.534 -12.230 44.551 -12.147 44.547 -12.056 44.527 -12.033 44.431 -12.074 44.337 -12.066 44.242 -12.122 44.339 -12.178 44.436 ; #1600 13 13.813 -90.203 13.772 -90.115 13.731 -90.073 13.731 -90.064 13.683 -89.963 13.600 -89.917 13.600 -89.822 13.592 -89.726 13.567 -89.647 13.567 -89.552 13.560 -89.456 13.536 -89.359 13.486 -89.258 13.445 -89.178 13.430 -89.139 13.397 -89.051 13.341 -88.950 13.333 -88.932 13.317 -88.864 13.302 -88.767 13.317 -88.673 13.351 -88.772 13.358 -88.678 13.317 -88.578 13.343 -88.581 13.310 -88.482 13.254 -88.421 13.246 -88.325 13.254 -88.231 13.254 -88.193 13.246 -88.097 13.297 -88.007 13.353 -87.918 13.436 -87.983 13.519 -87.954 13.486 -87.942 13.502 -87.925 13.524 -87.873 13.550 -87.837 13.633 -87.893 13.656 -87.895 13.747 -87.867 13.830 -87.850 13.896 -87.819 13.944 -87.871 13.977 -87.978 13.977 -88.016 13.970 -88.070 13.944 -88.123 14.010 -88.157 14.059 -88.218 14.059 -88.301 13.985 -88.369 13.970 -88.443 13.944 -88.457 13.960 -88.497 13.944 -88.599 13.960 -88.592 14.043 -88.601 14.076 -88.699 14.091 -88.767 14.107 -88.796 14.190 -88.831 14.190 -88.936 14.241 -88.959 14.289 -89.059 14.322 -89.072 14.405 -89.127 14.397 -89.193 14.448 -89.302 14.471 -89.409 14.504 -89.439 14.488 -89.521 14.496 -89.578 14.480 -89.603 14.457 -89.618 14.432 -89.653 14.300 -89.612 14.285 -89.706 14.269 -89.750 14.262 -89.750 14.196 -89.817 14.122 -89.827 14.138 -89.924 14.138 -89.942 14.113 -89.986 14.039 -90.073 14.032 -90.090 13.948 -90.176 13.865 -90.193 13.825 -90.180 ; #1601 13 6.032 -61.457 6.007 -61.446 5.916 -61.367 5.833 -61.289 5.742 -61.210 5.651 -61.122 5.560 -61.043 5.469 -60.964 5.386 -60.886 5.295 -60.807 5.303 -60.762 5.295 -60.658 5.287 -60.563 5.303 -60.469 5.303 -60.374 5.361 -60.283 5.320 -60.186 5.254 -60.157 5.198 -60.071 5.115 -60.058 5.024 -60.072 5.017 -60.072 4.933 -60.078 4.850 -60.095 4.767 -60.139 4.676 -60.201 4.593 -60.136 4.593 -60.078 4.577 -59.983 4.552 -59.889 4.511 -59.804 4.471 -59.758 4.388 -59.810 4.304 -59.809 4.221 -59.724 4.131 -59.705 4.047 -59.609 3.964 -59.681 3.881 -59.735 3.790 -59.762 3.724 -59.855 3.668 -59.948 3.585 -59.900 3.502 -59.907 3.418 -59.934 3.328 -59.970 3.245 -59.994 3.161 -60.039 3.070 -60.046 2.987 -60.073 2.904 -60.072 2.813 -60.079 2.730 -60.059 2.564 -59.981 2.480 -59.988 2.407 -59.893 2.323 -59.827 2.233 -59.817 2.066 -59.831 1.975 -59.838 1.950 -59.743 1.950 -59.726 1.867 -59.761 1.843 -59.666 1.753 -59.570 1.670 -59.503 1.629 -59.408 1.538 -59.371 1.482 -59.266 1.449 -59.171 1.441 -59.068 1.433 -59.059 1.350 -58.994 1.302 -58.899 1.368 -58.806 1.393 -58.712 1.385 -58.608 1.469 -58.564 1.552 -58.594 1.567 -58.594 1.582 -58.500 1.666 -58.438 1.674 -58.344 1.658 -58.240 1.635 -58.145 1.718 -58.072 1.784 -57.979 1.824 -57.885 1.824 -57.783 1.817 -57.688 1.883 -57.595 1.966 -57.531 2.049 -57.468 2.090 -57.375 2.105 -57.272 2.130 -57.178 2.047 -57.119 2.039 -57.025 1.998 -56.929 2.031 -56.836 2.056 -56.742 2.031 -56.638 2.031 -56.629 2.056 -56.575 2.140 -56.671 2.140 -56.792 2.231 -56.860 2.321 -56.916 2.405 -56.972 2.445 -56.973 2.536 -57.021 2.620 -57.077 2.703 -57.125 2.786 -57.164 2.877 -57.231 2.960 -57.297 3.051 -57.307 3.134 -57.300 3.217 -57.347 3.308 -57.378 3.392 -57.379 3.482 -57.390 3.482 -57.485 3.450 -57.587 3.465 -57.682 3.465 -57.728 3.556 -57.730 3.639 -57.749 3.672 -57.796 3.755 -57.900 3.838 -57.928 3.929 -57.968 4.012 -58.024 4.103 -58.120 4.186 -58.122 4.270 -58.141 4.353 -58.068 4.444 -58.024 4.527 -58.016 4.610 -57.972 4.693 -57.936 4.784 -57.909 4.867 -57.957 4.951 -57.976 5.034 -57.895 5.074 -57.802 5.105 -57.709 5.113 -57.606 5.098 -57.511 5.113 -57.417 5.121 -57.408 5.121 -57.352 5.204 -57.373 5.252 -57.272 5.335 -57.284 5.361 -57.302 5.409 -57.399 5.500 -57.339 5.583 -57.325 5.666 -57.274 5.749 -57.251 5.841 -57.264 5.924 -57.230 6.014 -57.225 6.088 -57.237 6.096 -57.238 6.187 -57.250 6.270 -57.309 6.353 -57.407 6.402 -57.504 6.361 -57.597 6.402 -57.607 6.568 -57.709 6.634 -57.815 6.717 -57.893 6.800 -57.992 6.874 -58.061 6.906 -58.157 6.899 -58.251 6.899 -58.260 6.964 -58.357 6.972 -58.452 6.889 -58.552 6.723 -58.639 6.639 -58.653 6.548 -58.658 6.500 -58.673 6.467 -58.756 6.483 -58.757 6.490 -58.739 6.574 -58.696 6.630 -58.690 6.713 -58.694 6.804 -58.680 6.887 -58.675 6.978 -58.651 7.061 -58.591 7.127 -58.565 7.210 -58.551 7.276 -58.562 7.367 -58.558 7.450 -58.570 7.541 -58.649 7.624 -58.699 7.675 -58.805 7.758 -58.846 7.824 -58.904 7.907 -58.991 7.997 -59.079 8.055 -59.156 8.139 -59.243 8.195 -59.341 8.253 -59.438 8.319 -59.544 8.367 -59.641 8.433 -59.739 8.481 -59.844 8.398 -59.785 8.332 -59.688 8.292 -59.591 8.208 -59.504 8.249 -59.561 8.305 -59.658 8.354 -59.755 8.411 -59.861 8.435 -59.908 8.518 -59.976 8.601 -60.054 8.545 -60.015 8.454 -59.945 8.363 -59.876 8.298 -59.920 8.272 -60.013 8.257 -60.031 8.174 -60.073 8.116 -60.145 8.059 -60.237 7.993 -60.329 7.920 -60.409 7.912 -60.409 7.905 -60.503 7.882 -60.605 7.790 -60.639 7.707 -60.672 7.642 -60.764 7.559 -60.769 7.468 -60.690 7.384 -60.669 7.301 -60.692 7.210 -60.593 7.276 -60.501 7.235 -60.405 7.187 -60.347 7.104 -60.399 7.013 -60.432 7.021 -60.498 6.955 -60.599 6.932 -60.692 6.848 -60.783 6.872 -60.879 6.897 -60.975 6.806 -61.008 6.806 -61.102 6.790 -61.205 6.742 -61.240 6.651 -61.263 6.568 -61.213 6.394 -61.205 6.311 -61.174 6.227 -61.254 6.154 -61.346 6.121 -61.362 6.038 -61.441 ; #1602 13 16.856 -25.034 16.889 -24.931 16.972 -24.953 16.956 -25.048 16.866 -25.043 16.858 -25.034 ; #1603 13 14.888 -24.422 14.945 -24.328 15.028 -24.332 15.111 -24.375 15.095 -24.469 15.012 -24.548 14.929 -24.487 ; #1604 13 16.558 -24.358 16.641 -24.324 16.666 -24.221 16.634 -24.124 16.634 -24.077 16.666 -24.070 16.699 -24.167 16.722 -24.273 16.747 -24.370 16.732 -24.464 16.641 -24.404 16.558 -24.362 ; #1605 13 15.196 -23.199 15.287 -23.140 15.370 -23.153 15.370 -23.249 15.287 -23.271 15.204 -23.231 15.196 -23.201 ; #1606 13 16.059 -22.834 16.117 -22.742 16.200 -22.719 16.283 -22.750 16.291 -22.846 16.314 -22.943 16.224 -22.947 16.140 -22.989 16.057 -22.889 16.057 -22.832 ; #1607 13 16.666 -22.961 16.757 -22.919 16.841 -22.932 16.924 -22.955 16.841 -23.015 16.749 -22.974 ; #1608 13 3.295 8.688 3.368 8.745 3.459 8.771 3.542 8.817 3.625 8.873 3.716 8.938 3.800 8.947 3.840 8.853 3.840 8.749 3.807 8.655 3.716 8.609 3.633 8.609 3.550 8.526 3.509 8.431 3.426 8.422 3.335 8.486 3.328 8.589 3.295 8.684 ; #1609 13 13.447 -16.836 13.364 -16.842 13.273 -16.822 13.190 -16.802 13.142 -16.772 13.149 -16.763 13.240 -16.719 13.240 -15.836 13.339 -15.839 13.430 -15.767 13.438 -15.663 13.462 -15.559 13.462 -15.493 13.447 -15.389 13.462 -15.294 13.546 -15.232 13.629 -15.206 13.652 -15.131 13.579 -15.034 13.546 -14.978 13.521 -14.873 13.464 -14.777 13.424 -14.680 13.416 -14.585 13.391 -14.538 13.335 -14.432 13.327 -14.328 13.319 -14.224 13.327 -14.197 13.378 -14.095 13.401 -13.991 13.409 -13.897 13.416 -13.888 13.500 -13.834 13.590 -13.912 13.656 -13.998 13.641 -14.093 13.616 -14.187 13.560 -14.290 13.544 -14.384 13.610 -14.481 13.625 -14.508 13.709 -14.540 13.749 -14.636 13.716 -14.730 13.772 -14.835 13.855 -14.893 13.880 -14.940 13.880 -15.045 13.888 -15.158 13.832 -15.269 13.873 -15.374 13.807 -15.468 13.724 -15.512 13.675 -15.528 13.675 -16.592 13.577 -16.590 13.486 -16.531 13.420 -16.434 13.428 -16.339 13.502 -16.246 13.524 -16.143 13.524 -16.048 13.532 -15.953 13.540 -15.849 13.556 -15.755 13.556 -15.659 13.548 -15.686 13.515 -15.780 13.523 -15.884 13.500 -15.979 13.484 -16.082 13.509 -16.178 13.418 -16.251 13.368 -16.185 13.401 -16.281 13.360 -16.375 13.345 -16.479 13.368 -16.575 13.459 -16.624 13.542 -16.618 13.565 -16.713 13.482 -16.795 13.449 -16.840 ; #1610 13 51.130 2.555 51.105 2.567 51.010 2.626 50.950 2.619 50.863 2.634 50.820 2.756 50.762 2.869 50.753 2.879 50.746 2.913 50.814 3.019 50.814 3.039 50.822 3.105 50.838 3.124 50.830 3.168 50.806 3.190 50.790 3.191 50.774 3.212 50.757 3.243 50.670 3.257 50.644 3.279 50.557 3.327 50.557 3.436 50.549 3.556 50.541 3.566 50.541 3.619 50.507 3.654 50.480 3.666 50.456 3.667 50.369 3.681 50.402 3.788 50.377 3.899 50.377 3.909 50.393 3.972 50.402 4.047 50.351 4.113 50.264 4.160 50.169 4.195 50.082 4.145 50.048 4.147 50.023 4.138 50.023 4.171 50.015 4.181 50.007 4.202 50.015 4.320 49.991 4.417 50.007 4.512 50.041 4.620 50.050 4.663 50.137 4.679 50.197 4.786 50.213 4.805 50.213 4.816 50.197 4.826 50.110 4.820 50.050 4.812 49.955 4.868 49.870 4.851 49.854 4.938 49.846 4.981 49.823 5.054 49.773 5.142 49.757 5.251 49.682 5.362 49.682 5.372 49.589 5.448 49.565 5.459 49.589 5.567 49.605 5.674 49.596 5.695 49.605 5.757 49.605 5.778 49.628 5.830 49.688 5.849 49.696 5.869 49.712 5.868 49.761 5.847 49.821 5.772 49.906 5.717 49.922 5.747 49.937 5.703 50.032 5.809 50.048 5.788 50.090 5.830 50.124 5.849 50.211 5.942 50.228 5.995 50.195 6.029 50.179 6.103 50.195 6.113 50.282 6.143 50.341 6.250 50.367 6.358 50.426 6.314 50.452 6.323 50.547 6.277 50.555 6.168 50.650 6.218 50.666 6.198 50.666 6.134 50.753 6.078 50.762 6.058 50.762 6.004 50.770 5.994 50.786 5.983 50.802 5.983 50.794 5.874 50.810 5.753 50.802 5.700 50.802 5.667 50.844 5.676 50.853 5.665 50.869 5.622 50.895 5.610 50.922 5.653 50.990 5.738 51.041 5.746 51.128 5.774 51.188 5.825 51.204 5.794 51.221 5.684 51.245 5.573 51.253 5.540 51.314 5.418 51.298 5.365 51.298 5.212 51.350 5.179 51.409 5.067 51.496 5.053 51.512 5.022 51.469 4.980 51.453 4.861 51.453 4.751 51.512 4.705 51.461 4.654 51.461 4.533 51.504 4.434 51.409 4.418 51.409 4.231 51.382 4.253 51.295 4.277 51.382 4.220 51.314 4.113 51.279 4.005 51.263 3.962 51.247 3.853 51.247 3.843 51.255 3.789 51.316 3.666 51.324 3.556 51.281 3.448 51.308 3.370 51.350 3.348 51.409 3.354 51.401 3.312 51.374 3.203 51.350 3.095 51.334 3.055 51.291 2.947 51.249 2.840 51.206 2.732 51.172 2.637 51.130 2.530 ; #1611 13 1.685 9.608 1.594 9.545 1.511 9.462 1.428 9.444 1.345 9.378 1.254 9.352 1.221 9.446 1.213 9.540 1.172 9.644 1.205 9.738 1.180 9.833 1.107 9.795 1.051 9.889 1.107 9.993 1.107 11.246 1.140 11.340 1.745 11.340 1.828 11.332 2.267 11.332 2.267 9.993 2.308 9.889 2.391 9.815 2.440 9.806 2.357 9.780 2.273 9.771 2.190 9.753 2.099 9.791 2.016 9.799 1.925 9.745 1.842 9.678 1.759 9.604 1.685 9.630 1.700 9.725 1.668 9.641 1.683 9.624 ; #1612 13 35.851 14.515 35.934 14.567 35.992 14.458 36.040 14.358 35.957 14.338 35.874 14.416 35.849 14.515 ; #1613 1 -29.504 27.011 -29.587 27.093 -29.620 27.113 -29.703 27.146 -29.794 27.198 -29.835 27.210 -29.860 27.229 -29.943 27.301 -30.017 27.383 -30.100 27.361 -30.173 27.375 -30.173 27.452 -30.257 27.555 -30.287 27.567 -30.371 27.659 -30.454 27.742 -30.470 27.842 -30.492 27.941 -30.492 28.040 -30.500 28.089 -30.409 28.112 -30.326 28.146 -30.243 28.218 -30.187 28.244 -30.179 28.244 -30.096 28.296 -30.088 28.304 -30.005 28.376 -29.997 28.474 -29.974 28.581 -29.974 28.679 -29.949 28.785 -29.916 28.881 -29.860 28.977 -29.845 29.006 -29.787 29.101 -29.763 29.148 -29.672 29.104 -29.589 29.129 -29.498 29.202 -29.442 29.286 -29.377 29.283 -29.311 29.366 -29.220 29.439 -29.212 29.439 -29.129 29.407 -29.038 29.363 -28.955 29.320 -28.947 29.302 -28.922 29.202 -28.848 29.100 -28.775 28.999 -28.692 28.908 -28.634 28.857 -28.568 28.756 -28.485 28.695 -28.451 28.654 -28.451 28.625 -28.475 28.528 -28.483 28.481 -28.506 28.384 -28.579 28.280 -28.564 28.252 -28.587 28.147 -28.635 28.101 -28.726 28.019 -28.726 27.912 -28.734 27.903 -28.782 27.808 -28.808 27.722 -28.891 27.660 -28.982 27.626 -29.065 27.552 -29.148 27.470 -29.156 27.461 -29.164 27.461 -29.254 27.426 -29.337 27.362 -29.403 27.267 -29.429 27.161 -29.437 27.122 -29.460 27.105 -29.475 27.088 -29.467 27.069 -29.475 27.042 -29.498 27.025 ; #1614 13 43.819 22.330 43.735 22.366 43.661 22.443 43.577 22.456 43.493 22.533 43.443 22.643 43.428 22.713 43.336 22.789 43.252 22.887 43.236 22.947 43.211 22.935 43.126 22.868 43.042 22.790 43.042 22.780 43.019 22.737 42.935 22.680 42.935 22.567 42.943 22.567 42.909 22.461 42.868 22.388 42.853 22.396 42.845 22.405 42.761 22.419 42.677 22.403 42.625 22.399 42.559 22.499 42.467 22.483 42.434 22.420 42.375 22.312 42.291 22.399 42.225 22.454 42.191 22.502 42.135 22.602 42.102 22.703 42.060 22.814 42.027 22.820 41.935 22.845 41.919 22.864 41.751 22.955 41.667 22.898 41.583 22.902 41.552 22.900 41.467 22.903 41.401 22.879 41.393 22.991 41.385 23.094 41.442 23.201 41.434 23.292 41.442 23.312 41.450 23.322 41.465 23.426 41.440 23.528 41.440 23.569 41.465 23.674 41.496 23.779 41.504 23.883 41.528 23.966 41.595 24.075 41.595 24.147 41.602 24.251 41.595 24.353 41.618 24.459 41.534 24.512 41.418 24.709 41.411 24.759 41.461 24.866 41.436 24.946 41.395 25.046 41.354 25.133 41.313 25.180 41.305 25.261 41.338 25.367 41.346 25.408 41.379 25.524 41.364 25.626 41.389 25.731 41.373 25.833 41.381 25.884 41.405 25.999 41.463 26.108 41.548 26.105 41.632 26.094 41.716 26.010 41.808 26.110 41.800 26.159 41.784 26.196 41.768 26.298 41.784 26.290 41.784 26.280 41.851 26.286 41.884 26.393 41.915 26.509 41.956 26.512 41.982 26.496 42.031 26.582 42.015 26.684 42.039 26.790 42.054 26.905 42.087 26.917 42.137 26.982 42.121 27.094 42.154 27.200 42.113 27.300 42.029 27.374 42.005 27.422 41.990 27.524 42.031 27.632 42.007 27.733 42.039 27.840 42.031 27.942 42.056 27.955 42.148 27.882 42.232 27.787 42.299 27.690 42.383 27.688 42.467 27.593 42.498 27.492 42.524 27.381 42.608 27.481 42.608 27.585 42.692 27.603 42.759 27.714 42.808 27.822 42.892 27.812 42.899 27.832 42.984 27.840 43.068 27.817 43.160 27.858 43.244 27.856 43.277 27.952 43.361 27.999 43.445 28.100 43.461 28.205 43.453 28.309 43.445 28.422 43.530 28.504 43.622 28.513 43.706 28.503 43.790 28.512 43.790 28.397 43.798 28.284 43.806 28.180 43.837 28.079 43.870 27.978 43.954 27.893 44.039 27.841 44.005 27.733 44.031 27.621 44.064 27.532 44.056 27.417 44.080 27.314 44.154 27.217 44.162 27.208 44.169 27.199 44.162 27.093 44.177 27.034 44.177 26.973 44.169 26.858 44.162 26.816 44.121 26.707 44.121 26.656 44.105 26.583 44.097 26.551 44.089 26.446 44.082 26.374 44.082 26.355 44.074 26.303 44.074 26.262 44.058 26.221 44.050 26.201 44.043 26.181 44.035 26.148 44.035 26.129 43.978 26.031 43.978 26.022 43.970 26.011 43.954 26.000 43.939 25.970 43.931 25.959 43.915 25.926 43.882 25.882 43.866 25.870 43.841 25.836 43.833 25.836 43.800 25.772 43.751 25.697 43.743 25.645 43.727 25.593 43.704 25.540 43.704 25.479 43.696 25.437 43.688 25.417 43.688 25.325 43.721 25.264 43.747 25.184 43.747 25.070 43.771 24.989 43.778 24.970 43.778 24.897 43.771 24.782 43.771 24.773 43.778 24.669 43.778 24.637 43.810 24.547 43.817 24.478 43.792 24.434 43.759 24.361 43.751 24.309 43.751 24.248 43.743 24.143 43.751 24.102 43.759 24.084 43.767 24.064 43.782 24.015 43.798 23.946 43.823 23.843 43.831 23.802 43.856 23.743 43.856 23.692 43.849 23.628 43.874 23.526 43.890 23.498 43.890 23.478 43.905 23.428 43.897 23.367 43.897 23.263 43.890 23.220 43.874 23.168 43.858 23.096 43.858 23.045 43.866 23.005 43.874 22.954 43.882 22.935 43.907 22.864 43.948 22.848 43.956 22.858 43.997 22.871 44.013 22.882 44.021 22.882 44.044 22.923 44.052 22.965 44.068 23.017 44.142 23.003 44.142 22.993 44.166 22.890 44.214 22.789 44.265 22.688 44.257 22.668 44.173 22.620 44.089 22.544 44.066 22.532 43.991 22.422 43.899 22.396 43.825 22.391 ; #1615 13 11.116 41.818 11.050 41.871 11.017 41.965 11.041 42.061 11.081 42.166 11.073 42.260 11.099 42.326 11.091 42.420 11.147 42.517 11.172 42.621 11.180 42.657 11.172 42.665 11.157 42.760 11.083 42.852 11.091 42.947 11.174 43.006 11.257 43.055 11.424 43.173 11.480 43.213 11.536 43.244 11.551 43.253 11.642 43.162 11.650 43.106 11.658 43.032 11.666 42.977 11.666 42.873 11.658 42.835 11.635 42.740 11.561 42.642 11.627 42.540 11.642 42.587 11.650 42.691 11.733 42.721 11.816 42.790 11.849 42.886 11.874 42.991 11.915 43.087 11.915 43.096 12.006 43.175 12.039 43.279 12.079 43.385 12.153 43.416 12.252 43.411 12.343 43.385 12.426 43.371 12.517 43.337 12.600 43.265 12.691 43.184 12.782 43.132 12.749 43.067 12.700 42.961 12.627 42.854 12.544 42.834 12.461 42.755 12.476 42.661 12.542 42.608 12.590 42.506 12.542 42.420 12.469 42.362 12.369 42.313 12.279 42.234 12.188 42.185 12.089 42.106 12.006 42.048 11.998 42.048 11.907 41.987 11.834 41.881 11.801 41.853 11.710 41.821 11.627 41.801 11.543 41.798 11.445 41.821 11.354 41.835 11.114 41.827 ; #1616 13 41.327 45.048 41.242 45.072 41.234 45.173 41.150 45.217 41.150 45.104 41.084 45.204 41.051 45.257 41.051 45.298 41.043 45.400 40.986 45.491 40.912 45.580 40.828 45.613 40.787 45.502 40.702 45.405 40.618 45.469 40.526 45.520 40.442 45.616 40.393 45.709 40.352 45.804 40.301 45.906 40.270 46.002 40.186 45.985 40.094 45.927 40.062 45.808 40.062 45.706 40.037 45.598 40.004 45.694 39.963 45.800 39.879 45.845 39.831 45.939 39.790 46.035 39.717 46.125 39.642 46.225 39.676 46.333 39.627 46.436 39.635 46.499 39.552 46.514 39.503 46.404 39.419 46.440 39.371 46.534 39.288 46.622 39.254 46.514 39.171 46.510 39.088 46.526 38.997 46.511 38.963 46.537 38.931 46.550 39.014 46.633 39.097 46.749 39.181 46.813 39.222 46.922 39.237 47.026 39.328 47.082 39.377 47.140 39.410 47.257 39.501 47.363 39.501 47.373 39.550 47.483 39.608 47.604 39.656 47.715 39.730 47.830 39.738 47.943 39.761 47.966 39.705 48.059 39.614 48.155 39.464 48.333 39.431 48.358 39.391 48.239 39.334 48.127 39.250 48.153 39.185 48.244 39.093 48.330 39.037 48.280 39.021 48.165 38.973 48.055 38.890 48.022 38.834 48.114 38.793 48.218 38.709 48.275 38.669 48.369 38.620 48.472 38.546 48.561 38.480 48.608 38.457 48.635 38.480 48.741 38.505 48.814 38.505 48.894 38.589 48.878 38.680 48.875 38.764 48.871 38.847 48.848 38.938 48.883 39.021 48.938 39.105 48.934 39.196 48.950 39.222 49.057 39.156 49.147 39.072 49.073 39.057 49.172 39.148 49.207 39.231 49.241 39.315 49.237 39.323 49.239 39.389 49.340 39.414 49.364 39.497 49.339 39.580 49.285 39.664 49.309 39.747 49.384 39.831 49.390 39.922 49.434 40.006 49.421 40.055 49.472 40.146 49.461 40.231 49.511 40.289 49.626 40.321 49.735 40.405 49.856 40.397 49.966 40.381 49.992 40.405 50.088 40.397 50.198 40.364 50.293 40.280 50.377 40.364 50.358 40.438 50.343 40.454 50.337 40.495 50.266 40.561 50.178 40.602 50.084 40.636 50.000 40.628 49.896 40.620 49.791 40.643 49.685 40.677 49.589 40.761 49.516 40.853 49.527 40.886 49.432 40.960 49.345 41.045 49.260 41.129 49.197 41.213 49.165 41.297 49.152 41.389 49.103 41.473 49.039 41.548 48.952 41.640 48.881 41.724 48.807 41.808 48.722 41.874 48.633 41.882 48.606 41.833 48.564 41.741 48.484 41.675 48.451 41.601 48.332 41.544 48.207 41.518 48.098 41.434 48.051 41.342 47.929 41.258 47.871 41.258 47.767 41.282 47.659 41.297 47.560 41.313 47.460 41.346 47.354 41.430 47.290 41.514 47.247 41.606 47.194 41.606 47.081 41.690 47.039 41.774 46.943 41.808 46.846 41.900 46.805 41.876 46.697 41.933 46.595 41.941 46.493 41.941 46.484 41.857 46.426 41.816 46.379 41.816 46.276 41.724 46.238 41.640 46.281 41.614 46.389 41.530 46.372 41.489 46.467 41.440 46.569 41.391 46.663 41.307 46.749 41.215 46.711 41.156 46.586 41.141 46.480 41.174 46.384 41.248 46.295 41.256 46.194 41.223 46.075 41.238 45.975 41.272 45.879 41.313 45.774 41.397 45.790 41.413 45.690 41.444 45.593 41.485 45.489 41.500 45.389 41.485 45.283 41.444 45.212 41.387 45.131 41.371 45.097 41.346 45.063 ; #1617 13 39.742 44.808 39.668 44.846 39.594 44.936 39.511 44.961 39.462 45.024 39.379 45.122 39.295 45.168 39.239 45.261 39.214 45.369 39.130 45.417 39.047 45.463 39.031 45.510 39.016 45.609 39.000 45.666 39.000 45.675 38.975 45.773 38.944 45.880 38.936 45.980 38.929 46.081 38.896 46.187 38.896 46.206 38.911 46.190 38.944 46.164 38.985 46.140 39.152 46.047 39.235 45.992 39.326 46.007 39.367 45.911 39.408 45.816 39.491 45.848 39.575 45.843 39.608 45.829 39.616 45.719 39.590 45.613 39.542 45.503 39.582 45.407 39.648 45.306 39.623 45.199 39.707 45.204 39.790 45.126 39.798 45.025 39.765 44.909 39.765 44.868 39.749 44.806 ; #1618 13 7.891 117.102 7.899 117.102 7.982 117.154 8.065 117.160 8.156 117.082 8.073 117.048 7.982 117.050 7.891 117.099 ; #1619 13 8.673 117.334 8.590 117.291 8.507 117.285 8.415 117.261 8.507 117.362 8.580 117.470 8.595 117.566 8.678 117.618 8.752 117.718 8.768 117.822 8.851 117.895 8.924 118.003 9.007 118.103 9.098 118.156 9.182 118.179 9.247 118.279 9.263 118.374 9.329 118.483 9.395 118.562 9.485 118.615 9.568 118.676 9.634 118.727 9.717 118.790 9.733 118.808 9.816 118.750 9.801 118.824 9.884 118.830 9.974 118.799 10.040 118.909 10.056 118.937 10.064 119.042 10.072 119.118 10.104 119.225 10.195 119.291 10.279 119.301 10.279 119.310 10.362 119.366 10.428 119.469 10.435 119.564 10.428 119.590 10.510 119.695 10.594 119.771 10.685 119.706 10.768 119.653 10.851 119.654 10.934 119.569 11.025 119.562 11.109 119.627 11.199 119.574 11.290 119.631 11.374 119.632 11.457 119.576 11.374 119.502 11.282 119.500 11.199 119.499 11.116 119.489 11.165 119.400 11.081 119.427 10.998 119.426 10.915 119.500 10.824 119.518 10.872 119.429 10.938 119.333 11.021 119.297 10.938 119.295 10.847 119.331 10.756 119.395 10.657 119.375 10.559 119.317 10.468 119.211 10.551 119.174 10.468 119.127 10.443 119.020 10.360 119.020 10.277 118.992 10.261 118.896 10.269 118.868 10.253 118.857 10.170 118.885 10.087 118.837 10.170 118.819 10.087 118.734 10.072 118.694 9.988 118.657 9.905 118.616 9.814 118.543 9.731 118.453 9.648 118.384 9.564 118.283 9.481 118.223 9.391 118.161 9.325 118.099 9.333 117.996 9.267 117.897 9.251 117.869 9.160 117.826 9.152 117.741 9.152 117.732 9.129 117.722 9.122 117.704 9.114 117.704 9.040 117.634 9.032 117.625 9.017 117.615 8.951 117.576 8.860 117.512 8.777 117.411 8.694 117.371 8.669 117.351 ; #1620 13 8.274 117.374 8.274 117.383 8.357 117.351 ; #1621 13 16.210 119.879 16.177 119.864 16.094 119.858 16.011 119.873 16.003 119.889 15.970 119.979 15.879 119.981 15.796 119.975 15.722 119.998 15.631 120.020 15.548 119.979 15.457 120.018 15.374 120.069 15.341 120.081 15.308 120.075 15.225 120.107 15.117 120.123 15.033 120.109 14.950 120.126 14.867 120.154 14.867 120.258 14.950 120.259 14.885 120.355 14.852 120.314 14.768 120.312 14.720 120.411 14.629 120.447 14.546 120.463 14.521 120.555 14.536 120.653 14.619 120.663 14.711 120.647 14.809 120.601 14.908 120.604 14.908 120.622 14.892 120.676 14.852 120.708 14.852 120.744 14.844 120.847 14.844 120.883 14.770 120.978 14.722 121.007 14.681 121.011 14.657 121.026 14.565 121.024 14.550 120.926 14.467 120.861 14.376 120.766 14.310 120.654 14.252 120.656 14.169 120.684 14.161 120.683 14.078 120.690 13.995 120.689 13.904 120.687 13.936 120.786 14.020 120.778 14.012 120.873 13.979 120.964 13.964 120.980 13.873 120.986 13.790 120.968 13.873 121.033 13.817 121.121 13.726 121.102 13.733 121.198 13.726 121.292 13.733 121.397 13.825 121.512 13.908 121.522 13.964 121.613 13.997 121.701 14.062 121.804 13.997 121.892 13.948 121.981 13.900 122.079 13.875 122.160 13.792 122.225 13.701 122.278 13.685 122.380 13.660 122.386 13.577 122.471 13.494 122.545 13.410 122.581 13.327 122.589 13.261 122.645 13.327 122.757 13.410 122.729 13.494 122.722 13.577 122.677 13.668 122.622 13.660 122.650 13.733 122.563 13.774 122.551 13.865 122.562 13.948 122.534 14.032 122.478 14.024 122.506 14.032 122.611 13.998 122.625 13.916 122.710 13.892 122.802 13.892 122.820 13.867 122.825 13.793 122.911 13.710 122.910 13.654 122.998 13.606 123.088 13.581 123.160 13.532 123.249 13.441 123.275 13.358 123.349 13.317 123.371 13.227 123.342 13.144 123.358 13.151 123.463 13.086 123.550 13.020 123.637 13.028 123.733 12.954 123.779 12.987 123.878 13.070 123.984 13.070 124.079 12.979 124.039 12.979 124.001 12.923 123.899 12.832 123.897 12.749 123.961 12.658 124.034 12.658 124.139 12.741 124.149 12.832 124.188 12.923 124.209 13.006 124.173 13.090 124.192 13.180 124.165 13.173 124.069 13.229 123.981 13.244 123.937 13.211 123.829 13.310 123.815 13.393 123.860 13.484 123.776 13.567 123.731 13.633 123.644 13.666 123.584 13.722 123.582 13.813 123.611 13.821 123.716 13.805 123.809 13.838 123.917 13.815 124.010 13.898 123.985 13.921 123.893 13.987 123.748 13.995 123.645 14.028 123.545 14.043 123.452 14.126 123.433 14.159 123.342 14.175 123.309 14.091 123.289 14.008 123.337 14.000 123.336 13.917 123.372 13.894 123.369 13.828 123.266 13.813 123.179 13.828 123.173 13.919 123.109 13.993 123.147 14.084 123.140 14.124 123.081 14.215 123.054 14.223 123.046 14.306 122.961 14.362 122.913 14.411 122.823 14.388 122.725 14.411 122.633 14.418 122.530 14.370 122.429 14.287 122.383 14.196 122.363 14.211 122.356 14.295 122.302 14.211 122.236 14.145 122.324 14.055 122.359 14.014 122.250 14.030 122.157 14.062 122.057 14.103 121.966 14.177 121.880 14.275 121.788 14.348 121.788 14.432 121.760 14.480 121.711 14.571 121.694 14.655 121.677 14.745 121.680 14.778 121.787 14.852 121.693 14.900 121.651 14.991 121.627 15.082 121.605 15.123 121.574 15.206 121.552 15.289 121.502 15.304 121.476 15.395 121.436 15.479 121.515 15.562 121.548 15.652 121.610 15.744 121.652 15.827 121.650 15.917 121.619 16.009 121.673 16.100 121.764 16.158 121.888 16.198 121.991 16.247 122.103 16.320 122.212 16.237 122.168 16.179 122.140 16.277 122.242 16.369 122.305 16.376 122.306 16.409 122.274 16.492 122.280 16.583 122.323 16.591 122.333 16.674 122.404 16.773 122.459 16.856 122.500 16.879 122.504 16.904 122.518 16.970 122.538 16.978 122.540 17.018 122.556 17.084 122.577 17.125 122.584 17.198 122.588 17.183 122.539 17.191 122.502 17.274 122.508 17.357 122.505 17.398 122.417 17.446 122.330 17.595 122.260 17.651 122.244 17.742 122.242 17.833 122.222 17.916 122.246 18.015 122.264 18.098 122.260 18.181 122.284 18.264 122.375 18.355 122.409 18.429 122.393 18.462 122.361 18.553 122.321 18.512 122.218 18.497 122.207 18.406 122.162 18.322 122.042 18.338 121.940 18.369 121.841 18.353 121.734 18.338 121.739 18.421 121.687 18.452 121.617 18.502 121.521 18.510 121.531 18.543 121.441 18.599 121.355 18.655 121.252 18.663 121.157 18.630 121.056 18.622 121.045 18.645 120.954 18.653 120.850 18.570 120.807 18.570 120.760 18.555 120.661 18.481 120.657 18.390 120.679 18.307 120.638 18.233 120.596 18.226 120.595 18.127 120.559 18.036 120.579 17.945 120.528 17.930 120.525 17.846 120.493 17.755 120.506 17.672 120.445 17.574 120.503 17.500 120.537 17.409 120.539 17.326 120.506 17.235 120.519 17.144 120.521 17.053 120.534 16.970 120.491 16.955 120.488 16.864 120.417 16.765 120.428 16.666 120.382 16.583 120.397 16.527 120.414 16.444 120.408 16.353 120.419 16.270 120.489 16.179 120.464 16.130 120.409 16.130 120.380 16.098 120.279 16.105 120.225 16.146 120.194 16.229 120.162 16.260 120.072 16.268 120.055 16.351 119.994 16.367 119.997 16.450 119.974 16.376 119.865 16.285 119.850 16.194 119.862 ; #1622 13 16.376 120.021 16.303 120.093 16.386 120.116 16.419 120.095 16.378 120.021 ; #1623 13 12.347 120.093 12.412 120.006 12.321 119.957 12.238 119.956 12.164 120.042 12.091 120.089 12.091 120.429 12.174 120.430 12.248 120.335 12.224 120.237 12.298 120.151 ; #1624 13 13.925 120.176 13.892 120.181 13.819 120.267 13.753 120.363 13.761 120.364 13.844 120.357 13.910 120.269 ; #1625 13 12.014 120.091 12.014 120.064 11.989 119.966 11.898 120.002 11.865 120.093 11.857 120.092 11.849 120.073 11.766 120.092 11.807 120.143 11.898 120.125 11.981 120.100 11.989 120.101 12.014 120.095 ; #1626 13 10.634 120.078 10.683 120.083 10.698 119.982 10.633 119.870 10.549 119.843 10.542 119.946 10.625 119.984 10.633 120.080 ; #1627 13 4.734 119.527 4.833 119.568 4.916 119.561 4.999 119.527 4.908 119.532 ; #1628 13 13.542 120.406 13.459 120.463 13.443 120.565 13.360 120.592 13.304 120.681 13.289 120.697 13.223 120.784 13.182 120.808 13.091 120.852 13.058 120.866 13.000 120.877 12.927 120.859 12.911 120.875 12.821 120.890 12.795 120.954 12.704 121.018 12.621 121.008 12.598 121.022 12.524 121.069 12.517 121.077 12.459 121.125 12.375 121.181 12.343 121.224 12.312 121.333 12.327 121.343 12.418 121.421 12.418 121.468 12.501 121.495 12.600 121.525 12.674 121.598 12.757 121.626 12.764 121.618 12.855 121.553 13.037 121.576 13.136 121.578 13.227 121.543 13.227 121.535 13.317 121.508 13.383 121.420 13.424 121.379 13.440 121.363 13.523 121.278 13.507 121.181 13.492 121.150 13.558 121.063 13.590 120.963 13.565 120.896 13.565 120.792 13.581 120.690 13.588 120.596 13.612 120.503 13.546 120.392 ; #1629 13 19.433 121.438 19.350 121.519 19.326 121.600 19.409 121.615 19.458 121.519 19.443 121.440 19.435 121.439 ; #1630 13 11.888 120.361 11.979 120.362 12.062 120.355 11.979 120.316 11.888 120.352 ; #1631 13 18.918 121.423 18.926 121.529 18.951 121.409 18.918 121.421 ; #1632 13 5.140 119.923 5.166 119.963 5.222 120.061 5.237 120.062 5.270 120.102 5.278 120.206 5.270 120.299 5.353 120.323 5.436 120.274 5.386 120.176 5.320 120.068 5.272 119.990 5.239 119.884 ; #1633 13 20.414 122.027 20.447 122.052 20.530 122.117 20.545 122.111 20.497 122.036 ; #1634 13 18.893 121.945 18.976 122.035 19.067 122.043 18.984 121.961 18.901 121.937 ; #1635 13 6.462 120.630 6.371 120.606 6.330 120.630 6.421 120.673 ; #1636 13 5.947 121.370 6.012 121.458 6.104 121.464 6.104 121.361 6.127 121.268 6.175 121.177 6.135 121.071 6.069 120.963 5.978 121.003 6.009 121.099 5.993 121.201 6.026 121.307 5.943 121.367 ; #1637 13 15.080 121.891 15.055 121.887 14.964 121.930 14.881 121.975 14.798 121.974 14.740 122.062 14.823 122.090 14.914 122.065 14.997 122.085 15.080 122.117 15.111 122.085 15.119 122.068 15.127 122.005 15.078 121.892 ; #1638 13 14.082 122.260 14.097 122.271 14.181 122.186 14.246 122.090 14.277 121.999 14.194 122.064 14.138 122.161 14.082 122.259 ; #1639 13 13.524 121.907 13.434 121.914 13.351 122.007 13.285 122.094 13.285 122.123 13.368 122.151 13.451 122.236 13.534 122.218 13.592 122.130 13.616 122.038 13.585 121.939 13.526 121.905 ; #1640 13 14.798 122.320 14.871 122.329 14.864 122.232 ; #1641 13 12.586 122.116 12.528 122.099 12.445 122.034 12.354 122.061 12.271 122.060 12.180 122.115 12.246 122.131 12.329 122.159 12.412 122.187 12.495 122.206 12.586 122.208 12.642 122.233 12.726 122.260 12.741 122.198 12.668 122.094 12.584 122.113 ; #1642 13 14.755 122.390 14.763 122.485 14.770 122.392 ; #1643 13 12.586 122.372 12.586 122.418 12.670 122.353 ; #1644 13 6.635 121.955 6.587 121.961 6.504 122.058 6.504 122.076 6.512 122.151 6.552 122.258 6.560 122.267 6.568 122.268 6.651 122.291 6.742 122.364 6.750 122.260 6.808 122.170 6.823 122.077 6.750 121.977 6.717 121.871 6.634 121.949 ; #1645 13 7.243 121.999 7.218 121.988 7.135 122.000 7.036 122.068 6.996 122.159 7.051 122.276 7.150 122.292 7.233 122.335 7.241 122.344 7.332 122.360 7.415 122.375 7.473 122.474 7.557 122.442 7.613 122.550 7.696 122.547 7.779 122.608 7.862 122.709 7.862 122.803 7.806 122.883 7.723 122.877 7.632 122.879 7.541 122.938 7.632 122.980 7.541 123.068 7.632 123.103 7.657 123.105 7.740 123.120 7.796 123.219 7.705 123.259 7.615 123.188 7.607 123.282 7.581 123.375 7.498 123.415 7.491 123.518 7.581 123.469 7.673 123.448 7.738 123.556 7.829 123.545 7.920 123.589 7.912 123.692 7.897 123.774 7.806 123.842 7.756 124.028 7.690 124.127 7.599 124.184 7.433 124.284 7.350 124.287 7.284 124.244 7.251 124.196 7.160 124.094 7.077 124.060 6.994 124.027 6.910 124.021 6.854 124.112 6.821 124.092 6.748 124.115 6.574 124.102 6.483 124.151 6.400 124.191 6.317 124.248 6.251 124.338 6.218 124.430 6.195 124.466 6.136 124.565 6.104 124.657 6.048 124.747 6.014 124.849 5.974 124.949 5.966 125.043 5.992 125.139 6.082 125.183 6.165 125.207 6.198 125.313 6.140 125.337 6.108 125.352 6.024 125.309 5.933 125.267 5.868 125.271 5.777 125.348 5.678 125.349 5.678 125.367 5.670 125.461 5.753 125.513 5.845 125.566 5.935 125.639 6.026 125.720 6.110 125.744 6.193 125.759 6.276 125.765 6.367 125.734 6.450 125.703 6.533 125.654 6.616 125.643 6.699 125.545 6.707 125.451 6.798 125.450 6.854 125.462 6.938 125.486 7.028 125.557 7.111 125.572 7.160 125.670 7.175 125.689 7.274 125.714 7.357 125.737 7.423 125.806 7.400 125.908 7.316 125.919 7.233 125.939 7.143 125.999 7.127 126.024 7.044 126.018 6.961 126.115 6.904 126.128 6.814 126.131 6.731 126.115 6.639 126.126 6.556 126.158 6.473 126.215 6.382 126.237 6.390 126.238 6.405 126.247 6.413 126.248 6.504 126.246 6.545 126.267 6.635 126.273 6.719 126.271 6.802 126.286 6.893 126.275 6.984 126.218 6.999 126.313 6.908 126.391 6.999 126.334 7.090 126.415 7.156 126.514 7.239 126.576 7.322 126.609 7.406 126.597 7.462 126.602 7.545 126.645 7.628 126.634 7.719 126.605 7.818 126.604 7.891 126.506 7.907 126.480 7.997 126.412 8.038 126.461 8.129 126.477 8.212 126.493 8.296 126.499 8.311 126.464 8.296 126.360 8.361 126.422 8.445 126.399 8.535 126.415 8.618 126.366 8.603 126.270 8.636 126.170 8.719 126.147 8.735 126.177 8.783 126.275 8.866 126.345 8.949 126.360 9.040 126.349 9.066 126.256 9.066 126.248 9.156 126.226 9.205 126.212 9.295 126.227 9.379 126.252 9.387 126.243 9.387 126.217 9.321 126.117 9.346 126.053 9.369 126.046 9.385 126.038 9.476 125.950 9.566 125.965 9.615 125.895 9.630 125.801 9.671 125.700 9.754 125.631 9.837 125.562 9.886 125.471 9.803 125.437 9.704 125.438 9.605 125.466 9.423 125.528 9.325 125.549 9.234 125.568 9.168 125.582 9.077 125.575 9.062 125.507 9.069 125.404 9.077 125.310 9.168 125.242 9.085 125.218 9.002 125.230 8.919 125.188 8.942 125.095 9.032 125.018 9.090 124.928 9.050 124.821 8.967 124.833 8.876 124.835 8.793 124.811 8.710 124.814 8.626 124.799 8.568 124.711 8.584 124.703 8.607 124.610 8.698 124.522 8.657 124.416 8.566 124.352 8.483 124.337 8.400 124.304 8.326 124.299 8.270 124.238 8.270 124.154 8.262 124.058 8.197 123.950 8.131 123.851 8.048 123.750 8.055 123.715 8.089 123.718 8.112 123.728 8.145 123.834 8.152 123.835 8.236 123.924 8.319 123.913 8.385 123.909 8.468 123.907 8.551 123.875 8.634 123.817 8.717 123.729 8.652 123.629 8.692 123.603 8.783 123.564 8.798 123.470 8.725 123.474 8.692 123.408 8.601 123.372 8.609 123.269 8.601 123.174 8.518 123.073 8.435 123.058 8.344 123.023 8.296 123.057 8.212 122.956 8.197 122.860 8.197 122.766 8.174 122.669 8.141 122.564 8.156 122.547 8.123 122.441 8.116 122.414 8.083 122.346 8.042 122.297 7.959 122.244 7.876 122.174 7.785 122.196 7.752 122.203 7.661 122.214 7.578 122.162 7.495 122.129 7.412 122.115 7.320 122.044 7.237 121.992 ; #1646 13 9.520 122.666 9.512 122.683 9.462 122.774 9.447 122.856 9.391 122.947 9.307 122.959 9.224 122.990 9.141 123.059 9.133 123.105 9.133 123.199 9.224 123.290 9.307 123.362 9.398 123.377 9.489 123.320 9.580 123.252 9.663 123.229 9.747 123.218 9.837 123.224 9.920 123.201 10.004 123.225 10.087 123.282 10.137 123.306 10.221 123.344 10.311 123.374 10.394 123.401 10.486 123.413 10.576 123.499 10.667 123.547 10.751 123.567 10.841 123.615 10.924 123.608 11.015 123.573 11.023 123.470 11.039 123.417 11.039 123.408 11.071 123.317 11.056 123.211 11.008 123.110 10.950 123.029 10.894 123.039 10.810 123.020 10.727 123.001 10.636 122.906 10.578 122.890 10.488 122.926 10.404 122.924 10.313 122.913 10.255 122.923 10.164 122.903 10.116 122.803 10.091 122.782 10.068 122.724 10.075 122.621 10.068 122.517 9.969 122.478 9.878 122.454 9.795 122.482 9.711 122.523 9.530 122.662 ; #1647 13 10.491 122.619 10.499 122.629 10.557 122.731 10.640 122.779 10.673 122.800 10.764 122.802 10.797 122.712 10.714 122.635 10.631 122.599 10.547 122.580 10.490 122.619 ; #1648 13 12.778 123.468 12.861 123.421 12.952 123.376 12.993 123.286 13.076 123.241 13.167 123.177 13.215 123.088 13.124 123.050 13.074 123.148 12.991 123.222 12.925 123.309 12.859 123.405 12.776 123.459 12.776 123.468 ; #1649 13 12.087 123.279 11.996 123.258 12.070 123.363 12.085 123.373 12.168 123.441 12.252 123.516 12.283 123.623 12.290 123.624 12.207 123.689 12.149 123.746 12.083 123.804 12.000 123.858 11.975 123.950 11.919 124.047 11.836 124.120 11.927 124.160 12.025 124.115 12.083 124.095 12.083 124.122 12.114 124.091 12.205 124.035 12.288 123.982 12.273 123.885 12.339 123.847 12.422 123.773 12.430 123.679 12.513 123.660 12.578 123.574 12.586 123.565 12.578 123.469 12.578 123.461 12.644 123.423 12.660 123.329 12.576 123.348 12.519 123.376 12.435 123.366 12.345 123.319 12.254 123.383 12.162 123.308 12.079 123.280 ; #1650 13 7.367 122.926 7.433 123.025 7.516 123.005 7.516 122.910 7.425 122.875 7.369 122.926 ; #1651 13 12.586 123.767 12.495 123.822 12.430 123.889 12.513 123.882 12.586 123.862 12.670 123.837 12.735 123.750 12.652 123.722 12.586 123.769 ; #1652 13 10.085 123.478 9.994 123.467 9.911 123.443 9.820 123.419 9.654 123.389 9.570 123.375 9.570 123.478 9.654 123.548 9.737 123.572 9.828 123.587 9.918 123.629 10.002 123.681 10.085 123.683 10.168 123.711 10.168 123.737 10.251 123.785 10.317 123.888 10.400 123.993 10.484 124.079 10.567 124.097 10.650 124.099 10.741 124.101 10.832 124.086 10.915 124.114 11.006 124.117 11.097 124.128 11.137 124.124 11.228 124.126 11.312 124.137 11.271 124.037 11.188 124.044 11.105 123.988 11.021 123.995 10.930 123.957 10.847 123.918 10.756 123.860 10.665 123.812 10.609 123.788 10.518 123.747 10.435 123.673 10.352 123.654 10.269 123.589 10.178 123.531 10.162 123.512 10.089 123.485 ; #1653 13 13.300 124.123 13.341 124.128 13.333 124.032 ; #1654 13 9.180 123.663 9.211 123.778 9.293 123.766 9.385 123.709 9.311 123.609 9.220 123.602 ; #1655 13 13.600 124.302 13.666 124.406 13.749 124.500 13.840 124.493 13.923 124.504 14.014 124.440 14.097 124.355 14.130 124.255 14.047 124.216 13.956 124.222 13.873 124.221 13.782 124.192 13.699 124.155 13.650 124.244 13.602 124.302 ; #1656 13 13.252 124.316 13.275 124.310 13.267 124.214 ; #1657 13 9.626 123.828 9.677 123.935 9.708 123.929 9.692 123.833 ; #1658 13 9.803 123.927 9.719 123.938 9.686 124.040 9.686 124.077 9.679 124.180 9.686 124.276 9.694 124.379 9.743 124.478 9.826 124.548 9.818 124.642 9.901 124.631 9.992 124.637 10.075 124.639 10.083 124.640 10.141 124.543 10.215 124.457 10.245 124.366 10.222 124.260 10.139 124.166 10.147 124.129 10.081 124.112 10.025 124.011 9.969 123.910 9.878 123.857 9.805 123.927 ; #1659 13 10.325 124.028 10.408 124.113 10.385 124.016 10.327 124.026 ; #1660 13 12.586 124.384 12.546 124.387 12.455 124.431 12.371 124.438 12.288 124.474 12.205 124.568 12.140 124.655 12.114 124.755 12.041 124.793 12.000 124.883 11.909 124.927 11.836 125.021 11.851 125.118 11.760 125.069 11.677 125.041 11.627 124.940 11.543 125.025 11.478 125.063 11.526 124.974 11.460 124.890 11.395 124.779 11.395 124.675 11.478 124.630 11.519 124.531 11.609 124.458 11.519 124.401 11.435 124.426 11.352 124.473 11.261 124.480 11.178 124.478 11.137 124.473 11.054 124.471 11.021 124.514 10.963 124.601 11.054 124.630 11.054 124.734 10.963 124.798 10.880 124.851 10.789 124.869 10.781 124.868 10.698 124.839 10.615 124.829 10.524 124.800 10.441 124.836 10.433 124.844 10.342 124.833 10.277 124.816 10.228 124.904 10.178 124.993 10.137 125.083 10.221 125.076 10.311 125.051 10.394 125.053 10.336 125.149 10.362 125.247 10.445 125.333 10.536 125.261 10.619 125.244 10.702 125.255 10.710 125.238 10.793 125.193 10.818 125.112 10.909 125.098 10.992 125.108 11.033 125.122 11.116 125.132 11.207 125.126 11.222 125.119 11.314 125.130 11.370 125.083 11.370 125.206 11.278 125.279 11.263 125.294 11.180 125.312 11.172 125.329 11.230 125.392 11.197 125.482 11.205 125.578 11.197 125.672 11.172 125.764 11.131 125.854 11.215 125.789 11.298 125.734 11.338 125.644 11.429 125.730 11.460 125.725 11.511 125.656 11.559 125.616 11.642 125.580 11.650 125.572 11.741 125.555 11.824 125.548 11.915 125.551 11.998 125.532 12.072 125.559 12.112 125.593 12.120 125.603 12.211 125.550 12.260 125.631 12.283 125.617 12.290 125.608 12.298 125.592 12.347 125.503 12.362 125.410 12.369 125.402 12.484 125.416 12.575 125.364 12.623 125.294 12.631 125.192 12.606 125.151 12.631 125.127 12.631 125.119 12.638 125.025 12.598 124.964 12.582 124.859 12.575 124.763 12.598 124.690 12.606 124.596 12.614 124.502 12.573 124.402 ; #1661 13 11.547 124.588 11.555 124.684 11.638 124.694 11.729 124.650 11.786 124.553 11.762 124.455 11.679 124.491 11.588 124.526 11.547 124.586 ; #1662 13 10.665 124.403 10.723 124.474 10.708 124.490 10.774 124.573 10.725 124.472 10.758 124.393 10.667 124.399 ; #1663 13 9.162 124.854 9.245 124.878 9.336 124.809 9.295 124.712 9.205 124.760 9.164 124.852 ; #1664 13 12.652 125.104 12.636 125.148 12.660 125.160 12.652 125.102 ; #1665 13 10.085 125.268 10.085 125.277 10.002 125.361 10.085 125.343 10.100 125.336 10.183 125.291 10.176 125.195 ; #1666 13 10.085 125.647 10.002 125.712 9.911 125.650 9.918 125.745 10.002 125.760 10.085 125.753 10.168 125.763 10.251 125.745 10.342 125.710 10.441 125.751 10.524 125.744 10.468 125.642 10.385 125.597 10.294 125.620 10.211 125.564 10.170 125.663 10.087 125.652 ; #1667 13 5.473 125.404 5.457 125.421 5.457 125.449 5.465 125.476 5.465 125.494 5.498 125.422 5.483 125.402 5.475 125.402 ; #1668 13 6.978 125.857 7.077 125.882 7.243 125.859 7.203 125.761 7.119 125.810 7.036 125.830 6.980 125.855 ; #1669 13 9.644 126.016 9.644 126.033 9.735 126.058 9.818 125.980 9.727 125.973 9.644 126.014 ; #1670 13 10.085 126.110 9.994 126.044 9.911 126.029 9.828 126.098 9.828 126.106 9.843 126.202 9.866 126.242 9.891 126.235 9.982 126.186 10.066 126.169 10.081 126.163 10.081 126.116 ; #1671 13 27.225 88.824 27.210 88.860 27.126 88.940 27.043 88.961 26.987 89.046 26.972 89.140 26.889 89.220 26.896 89.319 26.929 89.433 26.914 89.468 26.873 89.557 26.865 89.653 26.840 89.704 26.792 89.723 26.784 89.819 26.784 89.916 26.800 89.947 26.800 89.956 26.807 90.064 26.815 90.163 26.906 90.260 26.931 90.363 26.972 90.469 26.914 90.554 26.873 90.643 26.858 90.737 26.850 90.832 26.858 90.941 26.858 91.027 26.873 91.128 26.881 91.236 26.865 91.330 26.873 91.429 26.947 91.552 26.881 91.635 26.873 91.730 26.906 91.835 26.921 91.945 26.929 92.045 26.937 92.143 26.993 92.174 27.076 92.156 27.160 92.077 27.233 92.084 27.316 92.132 27.399 92.159 27.483 92.112 27.515 92.022 27.515 91.974 27.490 91.871 27.548 91.786 27.556 91.749 27.639 91.690 27.722 91.672 27.813 91.728 27.829 91.723 27.912 91.723 28.003 91.743 28.034 91.652 28.050 91.558 28.050 91.548 28.090 91.459 28.146 91.374 28.123 91.271 28.040 91.194 28.032 91.106 28.032 91.097 28.040 91.080 28.106 90.996 28.106 90.899 28.138 90.799 28.131 90.700 28.131 90.534 28.146 90.430 28.229 90.448 28.313 90.439 28.338 90.346 28.353 90.252 28.369 90.178 28.376 90.082 28.376 90.073 28.351 90.029 28.311 89.913 28.227 89.808 28.219 89.709 28.129 89.603 28.088 89.547 28.005 89.490 27.914 89.423 27.914 89.414 27.831 89.298 27.747 89.253 27.657 89.204 27.600 89.174 27.535 89.054 27.452 89.036 27.386 89.004 27.345 88.986 27.305 88.880 27.222 88.844 ; #1672 13 18.346 121.761 18.262 121.737 18.197 121.783 18.280 121.769 18.346 121.763 ; #1673 13 10.665 124.405 10.723 124.477 10.756 124.396 10.665 124.403 ; #1674 13 10.723 124.479 10.708 124.494 10.774 124.578 10.725 124.477 ; #1675 13 11.391 125.061 11.366 125.075 11.449 125.086 11.474 125.071 ; #1676 13 17.287 -62.733 17.287 -62.724 17.371 -62.762 17.462 -62.848 17.446 -62.942 17.363 -62.837 17.289 -62.733 ; #1677 13 17.173 -62.624 17.257 -62.689 17.165 -62.661 ; #1678 13 -21.135 -175.073 -21.079 -175.044 -20.996 -174.995 -21.052 -175.073 -20.986 -175.191 -20.986 -175.287 -21.069 -175.195 -21.135 -175.077 ; #1679 13 -21.327 -174.844 -21.319 -174.838 -21.236 -174.903 ; #1680 13 11.122 123.738 11.205 123.813 11.246 123.913 11.329 123.867 11.321 123.772 11.230 123.705 11.114 123.691 ; #1681 14 -9.352 46.290 -9.320 46.384 -9.280 46.478 -9.303 46.384 ; #1682 14 -9.245 46.429 -9.230 46.429 -9.237 46.325 ; #1683 14 -4.681 55.557 -4.608 55.556 -4.525 55.508 -4.525 55.414 -4.598 55.518 ; #1684 14 57.953 22.051 58.005 22.172 58.103 22.250 58.192 22.282 58.262 22.406 58.254 22.521 58.290 22.642 58.265 22.766 58.344 22.891 58.398 23.025 58.477 23.151 58.468 23.277 58.547 23.169 58.583 23.117 58.626 23.005 58.651 22.881 58.618 22.760 58.618 22.644 58.643 22.530 58.618 22.399 58.529 22.262 58.537 22.147 58.537 22.019 58.529 21.901 58.439 21.970 58.342 21.903 58.262 22.022 58.200 22.142 58.111 22.143 58.051 22.020 57.961 22.011 57.953 22.042 ; #1685 14 59.113 22.646 59.059 22.560 58.998 22.436 58.990 22.308 58.982 22.179 58.973 22.061 58.940 22.174 58.932 22.290 58.915 22.416 58.826 22.464 58.728 22.555 58.764 22.699 58.853 22.766 58.861 22.894 58.951 22.983 59.040 22.877 59.040 22.760 59.119 22.641 ; #1686 14 58.595 23.168 58.568 23.232 58.631 23.367 58.709 23.260 58.693 23.130 58.595 23.165 ; #1687 14 59.078 23.203 58.998 23.193 59.069 23.319 ; #1688 14 -30.375 -57.899 -30.466 -57.883 -30.549 -57.836 -30.589 -57.828 -30.630 -57.820 -30.713 -57.822 -30.769 -57.934 -30.868 -57.910 -30.951 -57.921 -31.034 -57.932 -31.117 -57.962 -31.201 -58.010 -31.234 -58.018 -31.317 -58.108 -31.340 -58.065 -31.423 -58.007 -31.514 -58.039 -31.597 -58.069 -31.663 -58.184 -31.754 -58.216 -31.837 -58.188 -31.920 -58.190 -31.928 -58.201 -32.019 -58.205 -32.042 -58.181 -32.075 -58.153 -32.158 -58.143 -32.242 -58.222 -32.274 -58.238 -32.315 -58.230 -32.406 -58.204 -32.489 -58.186 -32.572 -58.179 -32.663 -58.141 -32.746 -58.083 -32.837 -58.115 -32.921 -58.184 -32.936 -58.297 -32.951 -58.400 -33.034 -58.402 -33.118 -58.393 -33.201 -58.453 -33.242 -58.424 -33.325 -58.454 -33.416 -58.468 -33.499 -58.469 -33.582 -58.461 -33.673 -58.455 -33.689 -58.450 -33.779 -58.394 -33.853 -58.312 -33.936 -58.245 -33.984 -58.148 -34.133 -57.986 -34.217 -57.918 -34.273 -57.874 -34.306 -57.864 -34.281 -57.748 -34.265 -57.666 -34.273 -57.559 -34.257 -57.455 -34.257 -57.246 -34.265 -57.209 -34.298 -57.117 -34.381 -57.028 -34.437 -56.942 -34.495 -56.856 -34.518 -56.753 -34.544 -56.649 -34.577 -56.558 -34.584 -56.451 -34.599 -56.385 -34.683 -56.377 -34.708 -56.274 -34.731 -56.179 -34.701 -56.063 -34.693 -56.061 -34.637 -55.938 -34.603 -55.830 -34.588 -55.726 -34.588 -55.626 -34.611 -55.532 -34.611 -55.402 -34.677 -55.308 -34.702 -55.214 -34.695 -55.113 -34.727 -55.020 -34.753 -54.926 -34.720 -54.819 -34.663 -54.705 -34.623 -54.596 -34.615 -54.555 -34.516 -54.331 -34.434 -54.351 -34.474 -54.261 -34.434 -54.151 -34.342 -54.051 -34.259 -53.943 -34.219 -53.834 -34.128 -53.813 -34.044 -53.775 -33.961 -53.688 -33.878 -53.590 -33.787 -53.560 -33.704 -53.550 -33.613 -53.501 -33.557 -53.430 -33.508 -53.497 -33.493 -53.593 -33.420 -53.585 -33.329 -53.574 -33.238 -53.562 -33.147 -53.569 -33.064 -53.588 -32.981 -53.588 -32.889 -53.536 -32.824 -53.422 -32.733 -53.362 -32.650 -53.255 -32.566 -53.169 -32.475 -53.236 -32.425 -53.323 -32.402 -53.426 -32.402 -53.445 -32.329 -53.536 -32.272 -53.622 -32.182 -53.700 -32.098 -53.699 -32.007 -53.757 -31.916 -53.802 -31.860 -53.898 -31.777 -53.987 -31.770 -53.994 -31.729 -54.093 -31.754 -54.186 -31.688 -54.279 -31.632 -54.364 -31.549 -54.444 -31.516 -54.514 -31.425 -54.523 -31.359 -54.606 -31.303 -54.701 -31.288 -54.796 -31.272 -54.901 -31.216 -54.986 -31.133 -55.054 -31.166 -55.160 -31.108 -55.245 -31.025 -55.324 -30.934 -55.371 -30.767 -55.529 -30.735 -55.579 -30.701 -55.678 -30.785 -55.680 -30.858 -55.805 -30.924 -55.920 -30.924 -56.057 -30.833 -56.045 -30.742 -56.032 -30.651 -56.040 -30.585 -56.123 -30.502 -56.190 -30.411 -56.255 -30.363 -56.351 -30.289 -56.432 -30.241 -56.498 -30.158 -56.586 -30.084 -56.667 -30.036 -56.753 -29.962 -56.865 -29.962 -56.973 -29.970 -57.073 -30.061 -57.171 -30.144 -57.218 -30.137 -57.324 -30.152 -57.426 -30.137 -57.530 -30.086 -57.584 -30.046 -57.622 -30.046 -57.640 -30.129 -57.642 -30.220 -57.694 -30.303 -57.801 -30.386 -57.909 -30.394 -57.911 ; #1689 14 42.651 1.431 42.567 1.454 42.493 1.468 42.508 1.571 42.549 1.673 42.557 1.711 42.598 1.719 42.614 1.757 42.673 1.684 42.681 1.579 42.696 1.475 42.647 1.426 ; #1690 14 47.109 9.471 47.117 9.513 47.109 9.597 47.202 9.617 47.259 9.575 47.267 9.564 47.317 9.532 47.301 9.522 47.216 9.480 47.190 9.500 47.104 9.468 ; #1691 14 -3.805 11.183 -3.879 11.278 -3.952 11.381 -4.036 11.410 -4.119 11.504 -4.209 11.598 -4.283 11.693 -4.324 11.739 -4.407 11.823 -4.498 11.832 -4.581 11.860 -4.664 11.860 -4.747 11.944 -4.831 12.010 -4.863 12.027 -4.879 12.065 -4.863 12.082 -4.780 12.185 -4.697 12.221 -4.664 12.315 -4.641 12.381 -4.558 12.418 -4.474 12.473 -4.450 12.576 -4.434 12.671 -4.426 12.688 -4.343 12.734 -4.260 12.809 -4.267 12.838 -4.308 12.932 -4.339 12.941 -4.422 13.025 -4.496 13.119 -4.455 13.174 -4.538 13.211 -4.612 13.306 -4.660 13.409 -4.743 13.436 -4.687 13.510 -4.647 13.605 -4.606 13.651 -4.540 13.745 -4.457 13.745 -4.374 13.763 -4.291 13.828 -4.357 13.932 -4.357 13.949 -4.291 14.044 -4.267 14.138 -4.235 14.242 -4.177 14.336 -4.217 14.430 -4.301 14.505 -4.384 14.441 -4.417 14.395 -4.500 14.413 -4.583 14.442 -4.757 14.442 -4.757 14.451 -4.709 14.505 -4.749 14.600 -4.775 14.694 -4.717 14.798 -4.633 14.881 -4.542 14.927 -4.459 15.011 -4.444 15.020 -4.378 15.103 -4.295 15.166 -4.279 15.175 -4.196 15.250 -4.181 15.287 -4.173 15.287 -4.157 15.342 -4.157 15.379 -4.124 15.474 -4.041 15.491 -4.034 15.491 -3.976 15.519 -3.910 15.614 -3.869 15.708 -3.861 15.803 -3.821 15.897 -3.588 16.028 -3.498 16.055 -3.415 16.129 -3.331 16.166 -3.248 16.221 -3.157 16.212 -3.074 16.203 -3.033 16.194 -2.943 16.194 -2.919 16.203 -2.828 16.194 -2.762 16.194 -2.679 16.203 -2.513 16.237 -2.422 16.220 -2.339 16.211 -2.248 16.193 -2.165 16.193 -2.074 16.202 -1.983 16.265 -1.927 16.359 -1.844 16.454 -1.753 16.528 -1.745 16.537 -1.654 16.591 -1.571 16.629 -1.488 16.675 -1.432 16.692 -1.348 16.729 -1.265 16.775 -1.182 16.839 -1.091 16.922 -1.025 17.016 -0.969 17.111 -0.944 17.205 -0.911 17.308 -0.838 17.402 -0.755 17.476 -0.664 17.551 -0.608 17.597 -0.524 17.660 -0.441 17.698 -0.393 17.715 -0.309 17.724 -0.226 17.724 -0.160 17.697 -0.077 17.697 0.006 17.723 0.097 17.751 0.105 17.751 0.188 17.780 0.278 17.807 0.362 17.873 0.445 17.937 0.461 17.937 0.544 17.946 0.627 17.919 0.718 17.883 0.809 17.883 0.892 17.892 0.933 17.883 1.023 17.866 1.138 17.866 1.221 17.923 1.312 17.950 1.352 17.967 1.360 17.967 1.443 17.985 1.526 18.023 1.610 18.049 1.693 18.058 1.776 18.059 1.867 18.050 1.950 18.041 2.041 18.070 2.082 18.061 2.165 18.061 2.248 18.079 2.339 18.088 2.422 18.154 2.505 18.201 2.588 18.218 2.604 18.227 2.695 18.321 2.720 18.331 2.811 18.377 2.852 18.386 2.935 18.413 3.026 18.459 3.117 18.496 3.149 18.514 3.205 18.580 3.297 18.606 3.380 18.606 3.463 18.598 3.554 18.589 3.637 18.515 3.685 18.420 3.660 18.318 3.612 18.223 3.604 18.128 3.637 18.034 3.621 17.940 3.614 17.845 3.687 17.742 3.703 17.647 3.718 17.544 3.784 17.450 3.753 17.384 3.687 17.290 3.655 17.195 3.647 17.092 3.614 16.997 3.629 16.903 3.597 16.808 3.612 16.705 3.589 16.611 3.506 16.547 3.473 16.538 3.390 16.529 3.298 16.492 3.215 16.456 3.132 16.482 3.041 16.445 2.958 16.473 2.867 16.455 2.793 16.418 2.710 16.380 2.620 16.334 2.536 16.297 2.445 16.259 2.362 16.213 2.297 16.187 2.281 16.092 2.198 16.074 2.114 16.057 2.024 16.085 1.941 16.111 1.849 16.129 1.766 16.071 1.734 16.054 1.766 16.017 1.857 15.953 1.906 15.859 1.971 15.765 2.012 15.661 2.028 15.567 2.052 15.473 2.020 15.369 2.060 15.275 2.109 15.180 2.101 15.172 2.052 15.078 2.093 14.983 2.101 14.974 2.101 14.880 2.184 14.843 2.169 14.748 2.202 14.654 2.275 14.551 2.227 14.456 2.235 14.362 2.235 13.457 2.242 13.363 2.242 13.280 2.151 13.280 2.068 13.196 1.985 13.169 1.894 13.178 1.879 13.178 1.795 13.141 1.621 13.141 1.538 13.204 1.455 13.222 1.371 13.204 1.298 13.178 1.306 13.233 1.337 13.327 1.369 13.430 1.362 13.524 1.418 13.619 1.451 13.722 1.509 13.817 1.501 13.911 1.486 14.006 1.471 14.100 1.471 14.128 1.437 14.222 1.354 14.277 1.271 14.277 1.188 14.295 1.097 14.378 1.014 14.435 0.923 14.453 0.840 14.389 0.756 14.342 0.733 14.342 0.650 14.268 0.625 14.173 0.617 14.070 0.534 14.070 0.451 13.967 0.368 13.921 0.276 13.874 0.193 13.901 0.103 13.938 0.087 13.920 -0.004 13.892 -0.012 13.892 -0.095 13.837 -0.186 13.892 -0.178 13.986 -0.186 14.081 -0.269 14.145 -0.360 14.162 -0.360 14.257 -0.375 14.351 -0.449 14.454 -0.532 14.500 -0.615 14.483 -0.698 14.446 -0.789 14.454 -0.872 14.408 -0.946 14.400 -1.029 14.437 -1.120 14.464 -1.203 14.455 -1.287 14.484 -1.370 14.447 -1.453 14.464 -1.509 14.370 -1.600 14.454 -1.683 14.407 -1.766 14.399 -1.832 14.353 -1.865 14.258 -1.956 14.249 -2.039 14.241 -2.122 14.158 -2.213 14.213 -2.296 14.138 -2.387 14.101 -2.395 14.101 -2.403 14.007 -2.395 13.903 -2.312 13.877 -2.228 13.877 -2.163 13.839 -2.079 13.802 -1.996 13.756 -2.079 13.718 -2.163 13.644 -2.171 13.635 -2.262 13.552 -2.327 13.457 -2.320 13.363 -2.286 13.259 -2.271 13.166 -2.246 13.071 -2.271 12.996 -2.188 13.023 -2.105 12.968 -2.014 12.912 -1.998 12.884 -1.915 12.858 -1.832 12.820 -1.791 12.745 -1.735 12.642 -1.758 12.548 -1.784 12.454 -1.874 12.445 -1.958 12.463 -2.041 12.500 -2.124 12.491 -2.215 12.463 -2.230 12.471 -2.322 12.048 -2.230 11.973 -2.254 11.870 -2.294 11.776 -2.254 11.672 -2.230 11.578 -2.314 11.596 -2.405 11.596 -2.488 11.633 -2.529 11.642 -2.619 11.613 -2.702 11.539 -2.718 11.539 -2.718 11.642 -2.801 11.697 -2.884 11.780 -2.915 11.798 -2.973 11.703 -3.057 11.694 -3.080 11.703 -3.113 11.798 -3.178 11.901 -3.262 11.927 -3.353 11.881 -3.436 11.844 -3.519 11.910 -3.602 11.864 -3.602 11.835 -3.586 11.732 -3.529 11.638 -3.438 11.583 -3.405 11.488 -3.488 11.423 -3.513 11.328 -3.579 11.234 -3.670 11.199 -3.753 11.161 -3.827 11.132 ; #1692 14 45.947 18.842 45.889 18.881 45.881 18.880 45.822 18.948 45.754 18.934 45.754 18.925 45.661 18.948 45.586 18.944 45.586 19.050 45.570 19.091 45.570 19.100 45.538 19.047 45.487 19.025 45.402 19.039 45.334 19.151 45.318 19.201 45.310 19.211 45.318 19.253 45.310 19.282 45.295 19.271 45.278 19.376 45.278 19.418 45.221 19.414 45.221 19.289 45.205 19.173 45.197 19.130 45.181 19.078 45.096 19.125 45.046 19.122 45.031 19.131 44.939 19.033 44.915 19.051 44.964 19.159 44.972 19.201 44.964 19.316 44.948 19.366 44.974 19.409 44.999 19.526 44.966 19.629 44.989 19.672 44.958 19.764 44.874 19.717 44.823 19.724 44.792 19.828 44.784 19.847 44.768 19.897 44.760 19.907 44.752 19.968 44.752 20.009 44.719 20.007 44.760 20.114 44.768 20.125 44.852 20.139 44.919 20.175 44.985 20.250 44.985 20.292 45.011 20.303 45.053 20.315 45.061 20.335 45.154 20.309 45.154 20.425 45.061 20.470 45.053 20.480 45.045 20.518 44.978 20.619 44.952 20.617 44.929 20.635 44.896 20.624 44.888 20.633 44.872 20.623 44.780 20.688 44.764 20.706 44.739 20.737 44.731 20.756 44.723 20.806 44.731 20.871 44.764 20.943 44.764 20.953 44.780 21.015 44.795 21.080 44.795 21.119 44.827 21.153 44.842 21.186 44.858 21.238 44.866 21.258 44.874 21.310 44.882 21.342 44.931 21.451 45.015 21.456 45.048 21.353 45.142 21.443 45.227 21.460 45.243 21.451 45.269 21.337 45.284 21.267 45.293 21.236 45.300 21.204 45.342 21.102 45.366 21.020 45.433 20.920 45.483 20.839 45.509 20.831 45.542 20.762 45.574 20.804 45.659 20.748 45.719 20.785 45.812 20.781 45.804 20.687 45.838 20.657 45.846 20.648 45.931 20.582 45.965 20.478 46.014 20.376 46.100 20.308 46.157 20.249 46.183 20.145 46.183 20.052 46.207 19.991 46.207 19.959 46.199 19.897 46.175 19.790 46.216 19.698 46.209 19.626 46.216 19.565 46.123 19.475 46.082 19.367 46.032 19.292 46.032 19.177 46.048 19.072 46.014 19.038 45.980 18.930 45.980 18.910 45.955 18.825 ; #1693 14 44.400 19.093 44.316 19.150 44.300 19.210 44.293 19.315 44.209 19.383 44.142 19.485 44.134 19.484 44.084 19.586 44.068 19.595 43.993 19.486 44.001 19.382 44.035 19.279 44.001 19.236 43.909 19.336 43.860 19.394 43.812 19.455 43.812 19.465 43.763 19.491 43.663 19.486 43.614 19.412 43.629 19.309 43.629 19.238 43.563 19.184 43.514 19.191 43.499 19.200 43.491 19.231 43.449 19.333 43.416 19.393 43.383 19.432 43.375 19.441 43.291 19.507 43.225 19.608 43.225 19.722 43.199 19.730 43.173 19.748 43.166 19.767 43.150 19.870 43.124 19.973 43.076 20.075 43.050 20.092 43.035 20.121 43.027 20.139 43.011 20.243 42.980 20.311 42.895 20.348 42.888 20.337 42.913 20.453 42.939 20.495 43.023 20.468 43.039 20.501 43.031 20.510 43.080 20.617 43.121 20.639 43.205 20.615 43.262 20.599 43.270 20.672 43.277 20.683 43.318 20.789 43.234 20.825 43.201 20.893 43.175 20.943 43.144 21.023 43.093 21.124 43.009 21.211 42.994 21.210 42.945 21.299 42.919 21.401 42.895 21.400 42.812 21.366 42.804 21.384 42.772 21.568 42.757 21.671 42.757 21.722 42.716 21.761 42.649 21.715 42.565 21.669 42.557 21.649 42.526 21.616 42.467 21.612 42.411 21.504 42.326 21.550 42.311 21.652 42.311 21.671 42.336 21.705 42.385 21.799 42.411 21.893 42.377 21.994 42.377 22.033 42.403 22.138 42.444 22.245 42.444 22.255 42.393 22.321 42.452 22.429 42.485 22.492 42.577 22.507 42.644 22.408 42.694 22.412 42.778 22.427 42.862 22.414 42.870 22.405 42.886 22.396 42.927 22.469 42.960 22.576 42.953 22.575 42.953 22.689 43.037 22.745 43.060 22.789 43.060 22.798 43.144 22.877 43.229 22.943 43.254 22.955 43.270 22.896 43.354 22.797 43.445 22.721 43.461 22.652 43.510 22.541 43.594 22.465 43.678 22.451 43.753 22.374 43.837 22.338 43.911 22.344 44.003 22.369 44.078 22.479 44.101 22.491 44.185 22.567 44.269 22.615 44.277 22.635 44.352 22.557 44.352 22.525 44.436 22.461 44.469 22.453 44.477 22.444 44.510 22.415 44.535 22.426 44.592 22.545 44.568 22.648 44.600 22.714 44.659 22.635 44.674 22.531 44.741 22.443 44.715 22.336 44.649 22.227 44.624 22.205 44.539 22.148 44.547 22.043 44.631 21.988 44.639 21.979 44.672 21.962 44.688 21.858 44.696 21.743 44.704 21.639 44.760 21.569 44.786 21.561 44.811 21.457 44.819 21.353 44.860 21.326 44.852 21.294 44.844 21.242 44.836 21.222 44.821 21.170 44.805 21.137 44.774 21.103 44.774 21.064 44.758 20.999 44.743 20.937 44.743 20.928 44.710 20.854 44.702 20.791 44.710 20.740 44.717 20.721 44.743 20.690 44.758 20.671 44.850 20.606 44.866 20.617 44.874 20.608 44.907 20.620 44.931 20.602 44.956 20.603 45.023 20.502 45.031 20.463 45.039 20.454 45.132 20.408 45.132 20.293 45.039 20.319 45.031 20.299 44.989 20.287 44.964 20.275 44.964 20.234 44.898 20.159 44.831 20.123 44.747 20.109 44.739 20.098 44.698 19.991 44.731 19.993 44.731 19.951 44.739 19.890 44.747 19.881 44.762 19.831 44.770 19.812 44.801 19.709 44.852 19.701 44.937 19.747 44.968 19.656 44.944 19.613 44.978 19.510 44.952 19.394 44.927 19.351 44.842 19.346 44.776 19.333 44.751 19.322 44.667 19.244 44.610 19.190 44.576 19.178 44.520 19.134 44.428 19.110 44.412 19.109 ; #1694 14 55.315 20.948 55.307 20.989 55.396 21.053 55.486 21.096 55.575 21.126 55.672 21.136 55.575 21.094 55.486 21.075 55.396 21.022 55.317 20.948 ; #1695 14 42.765 20.071 42.749 20.102 42.708 20.150 42.692 20.130 42.608 20.106 42.534 20.206 42.467 20.231 42.383 20.267 42.375 20.371 42.368 20.401 42.318 20.502 42.311 20.502 42.227 20.567 42.211 20.575 42.170 20.583 42.113 20.608 42.029 20.635 41.945 20.579 41.861 20.574 41.910 20.690 41.994 20.787 42.078 20.782 42.152 20.806 42.176 20.911 42.201 20.994 42.250 21.101 42.266 21.131 42.232 21.189 42.174 21.248 42.166 21.339 42.225 21.333 42.256 21.354 42.271 21.365 42.287 21.385 42.295 21.477 42.311 21.498 42.311 21.580 42.395 21.535 42.452 21.642 42.510 21.645 42.541 21.679 42.549 21.699 42.633 21.746 42.700 21.791 42.741 21.753 42.741 21.702 42.757 21.599 42.788 21.415 42.796 21.396 42.880 21.431 42.903 21.432 42.929 21.330 42.978 21.240 42.994 21.241 43.078 21.155 43.128 21.054 43.160 20.973 43.185 20.924 43.219 20.856 43.303 20.819 43.262 20.713 43.254 20.703 43.246 20.630 43.189 20.646 43.105 20.670 43.064 20.648 43.015 20.541 43.023 20.532 43.007 20.499 42.923 20.526 42.897 20.483 42.872 20.368 42.872 20.336 42.841 20.230 42.790 20.218 42.798 20.168 42.806 20.076 42.757 20.064 ; #1696 14 58.606 23.529 58.597 23.596 58.554 23.708 58.464 23.718 58.393 23.826 58.369 23.939 58.333 24.062 58.317 24.177 58.342 24.307 58.431 24.375 58.414 24.500 58.379 24.577 58.281 24.493 58.192 24.504 58.103 24.481 58.013 24.389 57.924 24.345 57.915 24.387 57.915 24.422 57.986 24.547 57.994 24.664 58.049 24.787 58.057 24.916 58.074 25.034 58.117 25.132 58.074 25.241 58.049 25.306 58.082 25.426 58.030 25.535 57.970 25.643 57.978 25.760 57.907 25.877 57.907 25.993 57.837 26.064 57.828 26.084 57.820 26.104 57.776 26.200 57.687 26.289 57.635 26.409 57.599 26.519 57.583 26.632 57.599 26.645 57.635 26.766 57.687 26.900 57.670 27.014 57.635 27.075 57.610 27.198 57.594 27.311 57.594 27.389 57.620 27.383 57.710 27.418 57.735 27.422 57.789 27.546 57.878 27.617 57.886 27.661 57.886 27.696 57.938 27.820 57.973 27.710 58.063 27.678 58.115 27.697 58.167 27.590 58.265 27.489 58.354 27.481 58.443 27.552 58.541 27.532 58.631 27.503 58.809 27.438 58.907 27.475 58.968 27.602 59.030 27.740 59.119 27.812 59.198 27.846 59.206 27.847 59.304 27.885 59.329 27.936 59.373 28.071 59.381 28.190 59.414 28.185 59.423 28.175 59.483 28.067 59.500 28.012 59.439 27.935 59.439 27.806 59.448 27.690 59.448 27.572 59.475 27.448 59.466 27.318 59.475 27.191 59.466 27.061 59.475 26.923 59.510 26.811 59.562 26.701 59.570 26.574 59.562 26.455 59.578 26.328 59.606 26.215 59.614 26.087 59.606 25.969 59.589 25.837 59.597 25.721 59.614 25.605 59.641 25.491 59.543 25.500 59.510 25.366 59.535 25.252 59.518 25.121 59.535 25.006 59.526 24.912 59.535 24.796 59.464 24.786 59.456 24.656 59.473 24.541 59.489 24.415 59.429 24.289 59.385 24.155 59.410 24.041 59.393 24.027 59.304 24.099 59.304 23.981 59.312 23.854 59.260 23.718 59.260 23.601 59.217 23.478 59.119 23.489 59.021 23.455 59.073 23.578 58.984 23.603 58.905 23.476 58.807 23.511 58.815 23.639 58.815 23.767 58.799 23.882 58.772 23.762 58.772 23.634 58.701 23.508 58.612 23.509 58.604 23.507 ; #1697 14 -2.399 28.891 -2.482 28.901 -2.565 28.918 -2.598 28.993 -2.646 29.031 -2.639 29.048 -2.548 29.057 -2.499 29.151 -2.532 29.254 -2.606 29.349 -2.697 29.358 -2.704 29.453 -2.720 29.547 -2.704 29.573 -2.697 29.668 -2.664 29.771 -2.656 29.866 -2.573 29.920 -2.482 29.919 -2.399 29.936 -2.316 29.945 -2.225 29.944 -2.217 29.953 -2.250 29.988 -2.250 29.997 -2.316 30.092 -2.331 30.146 -2.248 30.210 -2.263 30.276 -2.238 30.351 -2.238 30.445 -2.304 30.540 -2.304 30.568 -2.288 30.662 -2.281 30.757 -2.288 30.775 -2.281 30.783 -2.198 30.840 -2.107 30.839 -2.023 30.865 -1.958 30.865 -1.874 30.818 -1.834 30.800 -1.826 30.800 -1.735 30.817 -1.561 30.816 -1.503 30.790 -1.470 30.761 -1.422 30.743 -1.356 30.734 -1.298 30.678 -1.290 30.624 -1.199 30.549 -1.116 30.513 -1.033 30.467 -0.975 30.484 -0.967 30.466 -0.975 30.372 -1.041 30.344 -1.056 30.315 -1.130 30.280 -1.195 30.187 -1.279 30.103 -1.352 30.000 -1.368 29.983 -1.312 29.888 -1.229 29.851 -1.252 29.748 -1.285 29.702 -1.292 29.607 -1.350 29.505 -1.406 29.411 -1.498 29.336 -1.581 29.253 -1.596 29.245 -1.687 29.182 -1.770 29.145 -1.853 29.145 -1.936 29.174 -2.027 29.184 -2.111 29.146 -2.176 29.044 -2.260 28.970 -2.308 28.875 -2.374 28.893 -2.389 28.893 ; #1698 14 41.164 43.489 41.080 43.505 41.047 43.612 40.980 43.702 40.896 43.715 40.812 43.771 40.779 43.775 40.730 43.775 40.663 43.733 40.647 43.721 40.563 43.636 40.479 43.640 40.395 43.615 40.311 43.701 40.227 43.736 40.178 43.667 40.137 43.772 40.111 43.857 40.070 43.952 40.062 44.053 40.070 44.157 40.086 44.201 40.101 44.306 40.060 44.401 40.053 44.418 40.004 44.511 39.920 44.588 39.854 44.690 39.781 44.780 39.765 44.797 39.781 44.859 39.781 44.899 39.813 45.016 39.806 45.117 39.722 45.194 39.639 45.190 39.664 45.297 39.598 45.397 39.558 45.493 39.606 45.603 39.631 45.709 39.623 45.820 39.590 45.834 39.507 45.839 39.423 45.806 39.383 45.902 39.342 45.997 39.250 45.982 39.167 46.037 39.000 46.130 38.959 46.155 38.927 46.180 38.911 46.196 38.961 46.306 38.969 46.410 38.954 46.519 38.946 46.557 38.979 46.544 39.012 46.519 39.103 46.534 39.187 46.517 39.270 46.522 39.303 46.629 39.387 46.541 39.435 46.447 39.518 46.411 39.567 46.521 39.650 46.507 39.642 46.443 39.691 46.340 39.658 46.232 39.732 46.132 39.806 46.042 39.847 45.947 39.895 45.852 39.978 45.807 40.019 45.702 40.053 45.606 40.078 45.714 40.078 45.816 40.109 45.935 40.202 45.993 40.286 46.010 40.317 45.913 40.368 45.811 40.409 45.717 40.458 45.624 40.542 45.528 40.634 45.477 40.718 45.412 40.802 45.510 40.843 45.621 40.927 45.588 41.002 45.499 41.059 45.408 41.066 45.306 41.066 45.265 41.100 45.212 41.166 45.112 41.166 45.225 41.250 45.181 41.258 45.080 41.342 45.056 41.334 45.034 41.309 44.992 41.293 44.885 41.260 44.908 41.260 44.786 41.276 44.685 41.260 44.570 41.234 44.462 41.242 44.360 41.266 44.283 41.225 44.172 41.225 44.069 41.209 43.953 41.176 43.844 41.168 43.823 41.160 43.812 41.168 43.711 41.184 43.611 41.160 43.493 ; #1699 14 18.336 -78.454 18.295 -78.422 18.262 -78.322 18.270 -78.227 18.214 -78.115 18.131 -78.047 18.105 -78.035 18.040 -77.921 17.949 -77.853 17.934 -77.755 17.941 -77.651 17.918 -77.584 17.934 -77.490 17.893 -77.418 17.810 -77.330 17.794 -77.233 17.878 -77.271 17.960 -77.226 17.968 -77.181 17.928 -77.070 17.976 -76.981 18.059 -76.937 18.059 -76.910 18.044 -76.882 18.028 -76.824 18.021 -76.878 18.021 -76.852 18.013 -76.755 17.947 -76.679 17.947 -76.478 17.962 -76.385 17.996 -76.293 18.079 -76.352 18.162 -76.390 18.253 -76.487 18.286 -76.587 18.301 -76.685 18.350 -76.796 18.357 -76.844 18.431 -76.950 18.471 -77.061 18.479 -77.158 18.504 -77.257 18.529 -77.356 18.529 -77.461 18.545 -77.559 18.560 -77.628 18.560 -77.724 18.576 -77.822 18.591 -77.900 18.583 -77.994 18.518 -78.090 18.518 -78.195 18.525 -78.292 18.460 -78.387 18.369 -78.431 18.336 -78.464 ; #1700 15 14.505 -89.413 14.472 -89.382 14.450 -89.276 14.399 -89.166 14.407 -89.101 14.324 -89.045 14.291 -89.033 14.243 -88.932 14.192 -88.909 14.192 -88.805 14.109 -88.769 14.093 -88.742 14.078 -88.673 14.045 -88.574 13.962 -88.565 13.946 -88.573 13.962 -88.470 13.946 -88.431 13.972 -88.416 13.987 -88.342 14.060 -88.275 14.060 -88.191 14.012 -88.130 13.946 -88.097 13.972 -88.044 13.979 -87.990 13.979 -87.952 13.946 -87.844 13.898 -87.793 13.832 -87.823 13.749 -87.841 13.658 -87.869 13.635 -87.867 13.552 -87.811 13.526 -87.846 13.503 -87.899 13.488 -87.915 13.480 -87.897 13.447 -87.789 13.462 -87.773 13.546 -87.726 13.462 -87.680 13.462 -87.671 13.447 -87.574 13.462 -87.481 13.405 -87.570 13.321 -87.561 13.231 -87.525 13.198 -87.495 13.190 -87.439 13.116 -87.385 13.076 -87.407 13.084 -87.313 13.084 -87.218 13.091 -87.172 13.114 -87.079 13.148 -87.056 13.163 -87.049 13.246 -87.020 13.329 -87.020 13.387 -86.931 13.347 -86.860 13.362 -86.835 13.445 -86.807 13.519 -86.823 13.552 -86.835 13.635 -86.853 13.718 -86.853 13.792 -86.870 13.832 -86.874 13.855 -86.772 13.855 -86.677 13.863 -86.669 13.848 -86.572 13.840 -86.476 14.006 -86.303 14.089 -86.228 14.122 -86.194 14.049 -86.091 14.000 -85.991 13.927 -85.888 13.912 -85.848 13.995 -85.848 14.068 -85.761 14.126 -85.672 14.126 -85.653 14.200 -85.566 14.283 -85.500 14.366 -85.413 14.374 -85.319 14.414 -85.258 14.498 -85.294 14.581 -85.247 14.637 -85.158 14.645 -85.140 14.678 -85.118 14.761 -85.126 14.802 -85.104 14.817 -85.087 14.883 -84.999 14.890 -84.896 14.807 -84.850 14.751 -84.740 14.736 -84.643 14.713 -84.545 14.786 -84.457 14.826 -84.366 14.826 -84.357 14.794 -84.258 14.809 -84.205 14.834 -84.112 14.875 -84.021 14.875 -83.917 14.923 -83.826 14.956 -83.734 15.012 -83.645 15.053 -83.556 15.061 -83.540 15.069 -83.445 15.053 -83.348 15.061 -83.254 15.061 -83.236 15.076 -83.276 15.132 -83.388 15.215 -83.438 15.298 -83.477 15.357 -83.581 15.388 -83.681 15.403 -83.779 15.362 -83.677 15.355 -83.630 15.272 -83.591 15.221 -83.678 15.262 -83.647 15.345 -83.686 15.314 -83.785 15.314 -83.881 15.397 -83.958 15.471 -84.064 15.430 -84.113 15.390 -84.012 15.306 -84.008 15.332 -84.050 15.415 -84.108 15.447 -84.209 15.531 -84.203 15.614 -84.311 15.566 -84.209 15.573 -84.163 15.573 -84.059 15.500 -83.952 15.451 -83.850 15.484 -83.864 15.525 -83.965 15.691 -84.141 15.774 -84.237 15.790 -84.257 15.873 -84.354 15.898 -84.405 15.898 -84.509 15.858 -84.598 15.858 -84.625 15.865 -84.721 15.949 -84.751 15.981 -84.852 16.013 -84.952 16.028 -85.001 16.051 -85.100 16.051 -85.109 16.003 -85.197 15.970 -85.288 15.962 -85.382 15.962 -85.477 15.955 -85.572 15.979 -85.680 16.011 -85.780 16.036 -85.822 16.069 -85.922 16.076 -86.019 16.076 -86.114 16.036 -86.013 16.011 -86.017 15.962 -86.105 15.962 -86.201 15.947 -86.303 15.873 -86.387 15.840 -86.478 15.833 -86.494 15.840 -86.522 15.873 -86.583 15.858 -86.676 15.858 -86.771 15.865 -86.868 15.833 -86.958 15.825 -87.061 15.848 -87.160 15.863 -87.258 15.887 -87.357 15.902 -87.424 15.877 -87.515 15.861 -87.617 15.945 -87.726 15.978 -87.826 15.962 -87.870 15.955 -87.965 15.871 -88.047 15.838 -88.138 15.755 -88.209 15.788 -88.309 15.740 -88.397 15.740 -88.406 15.649 -88.476 15.583 -88.562 15.575 -88.578 15.426 -88.746 15.370 -88.832 15.370 -88.841 15.312 -88.928 15.246 -89.022 15.188 -89.108 15.157 -89.198 15.150 -89.224 15.076 -89.259 14.993 -89.255 14.985 -89.254 14.920 -89.294 14.836 -89.238 14.796 -89.207 14.713 -89.225 14.664 -89.315 14.639 -89.339 14.614 -89.363 14.531 -89.428 14.515 -89.427 ; #1701 15 14.830 -17.368 14.790 -17.271 14.716 -17.185 14.633 -17.145 14.550 -17.087 14.535 -17.040 14.444 -16.982 14.352 -16.942 14.269 -16.922 14.229 -16.865 14.138 -16.836 13.964 -16.831 14.047 -16.824 14.130 -16.780 14.115 -16.676 14.198 -16.594 14.246 -16.521 14.262 -16.521 14.277 -16.512 14.262 -16.437 14.262 -16.419 14.239 -16.523 14.155 -16.624 14.097 -16.631 14.089 -16.726 14.006 -16.799 13.923 -16.788 13.948 -16.693 13.964 -16.636 14.047 -16.574 14.105 -16.539 14.014 -16.564 13.931 -16.562 13.900 -16.553 13.916 -16.648 13.832 -16.692 13.799 -16.596 13.767 -16.613 13.701 -16.620 13.701 -15.555 13.749 -15.539 13.832 -15.495 13.898 -15.401 13.857 -15.296 13.914 -15.185 13.906 -15.072 13.906 -14.968 13.880 -14.920 13.797 -14.863 13.741 -14.757 13.774 -14.663 13.733 -14.567 13.650 -14.536 13.635 -14.509 13.569 -14.412 13.585 -14.317 13.641 -14.215 13.666 -14.120 13.681 -14.025 13.616 -13.939 13.524 -13.862 13.441 -13.915 13.434 -13.924 13.426 -14.019 13.403 -14.122 13.353 -14.225 13.345 -14.251 13.353 -14.355 13.360 -14.459 13.416 -14.565 13.441 -14.612 13.449 -14.707 13.490 -14.803 13.546 -14.900 13.571 -15.005 13.604 -15.061 13.677 -15.159 13.654 -15.233 13.571 -15.259 13.488 -15.322 13.472 -15.416 13.488 -15.520 13.488 -15.587 13.462 -15.690 13.455 -15.794 13.364 -15.866 13.265 -15.864 13.265 -16.747 13.174 -16.790 13.167 -16.799 13.076 -16.805 12.993 -16.812 12.909 -16.856 12.826 -16.844 12.842 -16.761 12.759 -16.834 12.676 -16.822 12.716 -16.728 12.807 -16.704 12.890 -16.660 12.898 -16.652 12.807 -16.695 12.759 -16.599 12.702 -16.494 12.702 -16.398 12.710 -16.335 12.718 -16.240 12.733 -16.145 12.824 -16.081 12.832 -16.081 12.759 -16.044 12.710 -15.948 12.718 -15.853 12.718 -15.749 12.702 -15.653 12.785 -15.609 12.877 -15.612 12.933 -15.518 12.941 -15.454 12.883 -15.557 12.799 -15.592 12.716 -15.599 12.633 -15.691 12.691 -15.797 12.658 -15.891 12.681 -15.995 12.697 -16.023 12.712 -16.127 12.689 -16.221 12.689 -16.334 12.648 -16.428 12.689 -16.533 12.730 -16.629 12.704 -16.675 12.656 -16.768 12.565 -16.861 12.482 -16.803 12.424 -16.773 12.431 -16.773 12.457 -16.679 12.449 -16.584 12.465 -16.489 12.505 -16.386 12.554 -16.292 12.554 -16.246 12.569 -16.143 12.544 -16.047 12.544 -15.906 12.536 -15.801 12.552 -15.689 12.602 -15.586 12.650 -15.484 12.698 -15.419 12.714 -15.384 12.780 -15.282 12.780 -15.008 12.772 -14.941 12.772 -13.621 12.764 -13.526 12.757 -13.422 12.749 -13.375 12.741 -13.311 12.741 -13.216 12.708 -13.120 12.625 -13.135 12.610 -13.135 12.569 -13.039 12.625 -12.945 12.559 -12.840 12.534 -12.744 12.461 -12.647 12.476 -12.601 12.484 -12.507 12.401 -12.409 12.416 -12.372 12.431 -12.335 12.447 -12.231 12.463 -12.214 12.503 -12.120 12.488 -12.025 12.488 -11.929 12.472 -11.834 12.495 -11.740 12.521 -11.645 12.528 -11.542 12.503 -11.446 12.569 -11.429 12.652 -11.498 12.718 -11.491 12.801 -11.502 12.884 -11.466 12.967 -11.477 13.058 -11.441 13.142 -11.510 13.225 -11.595 13.308 -11.626 13.391 -11.646 13.482 -11.694 13.498 -11.799 13.414 -11.852 13.464 -11.948 13.548 -11.933 13.614 -12.029 13.705 -12.098 13.788 -12.138 13.795 -12.147 13.852 -12.044 13.935 -12.008 14.026 -12.048 14.109 -12.077 14.192 -12.052 14.283 -12.055 14.450 -12.171 14.474 -12.267 14.540 -12.269 14.623 -12.280 14.707 -12.217 14.790 -12.275 14.846 -12.305 14.912 -12.402 14.977 -12.508 14.985 -12.508 15.069 -12.529 15.076 -12.529 15.132 -12.635 15.173 -12.732 15.165 -12.741 15.221 -12.838 15.229 -12.847 15.312 -12.934 15.395 -12.919 15.479 -12.998 15.569 -13.057 15.593 -13.162 15.684 -13.203 15.709 -13.299 15.792 -13.302 15.883 -13.343 15.966 -13.384 16.049 -13.434 16.132 -13.464 16.216 -13.551 16.200 -13.646 16.233 -13.752 16.218 -13.826 16.250 -13.923 16.333 -14.021 16.417 -14.043 16.483 -14.149 16.566 -14.228 16.622 -14.326 16.705 -14.425 16.697 -14.520 16.697 -14.616 16.713 -14.721 16.713 -14.816 16.705 -14.911 16.738 -15.008 16.746 -15.055 16.730 -15.054 16.738 -15.150 16.647 -15.176 16.632 -15.271 16.640 -15.376 16.616 -15.470 16.600 -15.565 16.593 -15.660 16.552 -15.754 16.568 -15.850 16.576 -15.868 16.576 -15.973 16.560 -16.067 16.618 -16.165 16.585 -16.260 16.552 -16.354 16.469 -16.386 16.386 -16.412 16.303 -16.426 16.212 -16.526 16.128 -16.532 16.136 -16.541 16.128 -16.569 15.879 -16.585 15.796 -16.611 15.705 -16.663 15.622 -16.714 15.548 -16.767 15.465 -16.821 15.382 -16.873 15.291 -16.916 15.208 -16.997 15.125 -17.057 15.076 -17.102 14.993 -17.174 14.977 -17.200 14.929 -17.294 14.888 -17.396 14.856 -17.491 14.765 -17.506 14.821 -17.403 14.813 -17.357 ; #1702 15 27.701 -18.018 27.784 -17.958 27.875 -17.917 27.883 -18.016 27.817 -18.117 27.734 -18.073 27.701 -18.022 ; #1703 15 28.593 -17.812 28.676 -17.770 28.759 -17.776 28.850 -17.775 28.898 -17.885 28.883 -17.982 28.800 -18.023 28.717 -17.969 28.626 -17.924 28.543 -17.899 28.591 -17.816 ; #1704 15 28.067 -17.263 28.100 -17.168 28.183 -17.126 28.249 -17.229 28.241 -17.326 28.158 -17.359 28.074 -17.286 28.067 -17.268 ; #1705 15 28.042 -16.700 28.082 -16.596 28.138 -16.502 28.221 -16.440 28.305 -16.407 28.396 -16.377 28.479 -16.306 28.545 -16.212 28.635 -16.153 28.610 -16.249 28.610 -16.356 28.545 -16.449 28.471 -16.542 28.446 -16.638 28.430 -16.735 28.422 -16.841 28.407 -16.938 28.324 -16.884 28.241 -16.848 28.158 -16.785 28.067 -16.731 28.044 -16.711 ; #1706 15 27.798 -15.621 27.846 -15.518 27.912 -15.425 27.995 -15.401 28.086 -15.416 28.169 -15.440 28.200 -15.540 28.208 -15.647 28.158 -15.741 28.074 -15.813 27.991 -15.855 27.901 -15.821 27.817 -15.718 27.794 -15.618 ; #1707 15 35.324 -2.926 35.380 -2.960 35.324 -2.975 ; #1708 15 11.222 -0.170 11.174 -0.114 11.182 -0.019 11.157 0.019 11.073 0.011 11.050 -0.018 10.960 -0.035 10.876 -0.071 10.793 -0.099 10.778 -0.099 10.695 -0.023 10.687 0.003 10.613 0.099 10.573 0.128 10.490 0.185 10.456 0.280 10.400 0.375 10.367 0.358 10.284 0.330 10.219 0.339 10.135 0.378 10.127 0.378 10.095 0.332 10.012 0.324 9.928 0.334 9.837 0.308 9.671 0.344 9.663 0.240 9.580 0.258 9.532 0.202 9.532 0.285 9.598 0.389 9.549 0.484 9.466 0.531 9.383 0.495 9.299 0.505 9.209 0.459 9.126 0.422 9.042 0.478 8.943 0.487 8.911 0.470 8.895 0.461 8.864 0.358 8.831 0.375 8.748 0.414 8.665 0.498 8.607 0.602 8.524 0.639 8.433 0.695 8.350 0.612 8.266 0.584 8.183 0.576 8.093 0.585 8.001 0.594 7.860 0.595 7.777 0.558 7.694 0.493 7.595 0.493 7.504 0.531 7.479 0.626 7.396 0.635 7.312 0.610 7.230 0.592 7.147 0.584 7.073 0.490 7.024 0.536 6.941 0.510 6.876 0.557 6.792 0.621 6.701 0.659 6.653 0.697 6.605 0.706 6.522 0.790 6.448 0.885 6.365 0.998 6.281 1.073 6.281 1.167 6.225 1.168 6.259 1.262 6.281 1.366 6.281 1.374 6.307 1.469 6.322 1.572 6.338 1.601 6.353 1.601 6.378 1.664 6.394 1.768 6.518 1.740 6.609 1.665 6.692 1.638 6.684 1.629 6.767 1.583 6.850 1.591 6.934 1.582 7.024 1.555 7.107 1.526 7.115 1.609 7.173 1.618 7.555 1.616 7.638 1.624 7.694 1.624 7.777 1.615 8.292 1.612 8.375 1.603 8.473 1.594 8.514 1.593 8.605 1.630 8.688 1.601 8.953 1.599 9.036 1.591 9.120 1.590 9.211 1.572 9.301 1.507 9.385 1.432 9.400 1.414 9.441 1.385 9.532 1.376 9.580 1.350 9.663 1.331 9.754 1.349 9.920 1.348 10.012 1.338 10.095 1.328 10.153 1.233 10.201 1.158 10.242 1.100 10.249 1.082 10.315 0.987 10.381 0.882 10.454 0.778 10.545 0.768 10.629 0.777 10.712 0.793 10.803 0.783 10.818 0.801 10.917 0.866 11.000 0.874 11.083 0.900 11.083 0.741 11.075 0.629 11.043 0.525 11.109 0.421 11.124 0.317 11.149 0.213 11.149 0.204 11.174 0.109 11.190 0.005 11.190 -0.013 11.215 -0.117 11.222 -0.163 ; #1709 15 38.882 1.365 38.940 1.403 38.989 1.512 39.072 1.611 39.156 1.506 39.089 1.305 39.006 1.206 38.923 1.250 38.882 1.363 ; #1710 15 38.694 1.379 38.742 1.479 38.775 1.376 38.692 1.379 ; #1711 15 39.458 3.280 39.532 3.297 39.616 3.375 39.699 3.454 39.790 3.432 39.798 3.330 39.783 3.228 39.866 3.123 39.950 3.110 39.998 3.211 39.974 3.110 39.959 3.008 39.936 2.896 39.895 2.796 39.837 2.686 39.763 2.586 39.715 2.485 39.658 2.385 39.575 2.357 39.542 2.460 39.575 2.571 39.598 2.672 39.515 2.713 39.431 2.747 39.408 2.850 39.408 2.962 39.317 3.067 39.383 3.176 39.466 3.275 ; #1712 15 40.039 3.788 39.965 3.881 39.973 3.984 39.924 4.087 39.876 4.200 39.876 4.302 39.959 4.281 40.043 4.219 40.051 4.210 40.092 4.106 40.099 4.003 40.099 3.901 40.043 3.791 ; #1713 15 -0.789 8.849 -0.822 8.867 -0.863 8.941 -0.903 8.932 -0.994 8.961 -1.078 8.998 -1.062 9.007 -1.145 9.033 -1.211 9.051 -1.236 9.145 -1.302 9.172 -1.277 9.266 -1.186 9.332 -1.269 9.349 -1.360 9.303 -1.443 9.286 -1.458 9.380 -1.376 9.435 -1.458 9.499 -1.509 9.564 -1.509 9.462 -1.524 9.367 -1.550 9.273 -1.466 9.273 -1.383 9.178 -1.300 9.121 -1.217 9.027 -1.273 9.064 -1.364 9.130 -1.447 9.194 -1.538 9.231 -1.621 9.249 -1.712 9.249 -1.753 9.343 -1.753 9.446 -1.836 9.503 -1.919 9.558 -1.878 9.455 -1.795 9.380 -1.770 9.286 -1.853 9.349 -1.936 9.396 -2.019 9.490 -2.103 9.564 -2.186 9.573 -2.269 9.610 -2.318 9.705 -2.325 9.799 -2.350 9.894 -2.434 9.949 -2.434 9.995 -2.449 10.089 -2.507 9.995 -2.434 9.891 -2.350 9.837 -2.376 9.734 -2.459 9.817 -2.550 9.883 -2.623 9.986 -2.714 10.089 -2.730 10.118 -2.803 10.212 -2.811 10.230 -2.894 10.313 -2.977 10.408 -3.061 10.491 -3.144 10.555 -3.234 10.630 -3.250 10.630 -3.333 10.667 -3.399 10.761 -3.565 10.950 -3.648 10.977 -3.739 11.032 -3.813 11.115 -3.739 11.144 -3.656 11.181 -3.565 11.216 -3.500 11.311 -3.475 11.405 -3.391 11.471 -3.424 11.565 -3.515 11.620 -3.573 11.714 -3.588 11.818 -3.588 11.847 -3.505 11.893 -3.422 11.827 -3.339 11.864 -3.248 11.910 -3.165 11.883 -3.099 11.780 -3.066 11.686 -3.043 11.677 -2.960 11.686 -2.902 11.780 -2.871 11.762 -2.788 11.679 -2.704 11.624 -2.704 11.521 -2.689 11.521 -2.606 11.596 -2.515 11.624 -2.474 11.615 -2.391 11.578 -2.300 11.578 -2.217 11.560 -2.240 11.655 -2.281 11.758 -2.240 11.853 -2.217 11.955 -2.308 12.030 -2.217 12.454 -2.201 12.445 -2.111 12.474 -2.027 12.483 -1.944 12.445 -1.861 12.427 -1.770 12.436 -1.745 12.531 -1.722 12.625 -1.778 12.728 -1.818 12.803 -1.902 12.840 -1.985 12.866 -2.000 12.895 -2.091 12.950 -2.175 13.005 -2.258 12.978 -2.232 13.053 -2.258 13.148 -2.273 13.242 -2.306 13.346 -2.314 13.440 -2.248 13.534 -2.157 13.617 -2.149 13.626 -2.066 13.701 -1.983 13.738 -2.066 13.784 -2.149 13.821 -2.215 13.859 -2.298 13.859 -2.382 13.886 -2.389 13.989 -2.382 14.083 -2.374 14.083 -2.283 14.121 -2.200 14.195 -2.109 14.140 -2.025 14.223 -1.942 14.232 -1.851 14.241 -1.818 14.335 -1.753 14.381 -1.669 14.390 -1.586 14.436 -1.496 14.352 -1.439 14.447 -1.356 14.429 -1.273 14.466 -1.189 14.437 -1.107 14.446 -1.016 14.420 -0.932 14.382 -0.859 14.391 -0.776 14.437 -0.685 14.428 -0.602 14.465 -0.518 14.483 -0.435 14.436 -0.362 14.334 -0.346 14.239 -0.346 14.145 -0.255 14.127 -0.172 14.063 -0.164 13.969 -0.172 13.874 -0.081 13.819 0.002 13.874 0.010 13.874 0.101 13.903 0.116 13.920 0.207 13.883 0.290 13.857 0.381 13.903 0.464 13.949 0.547 14.053 0.631 14.053 0.639 14.156 0.664 14.250 0.747 14.325 0.770 14.325 0.853 14.371 0.936 14.435 1.027 14.418 1.110 14.360 1.202 14.277 1.285 14.260 1.368 14.260 1.451 14.205 1.484 14.111 1.484 14.082 1.499 13.988 1.515 13.893 1.523 13.799 1.465 13.704 1.431 13.601 1.375 13.507 1.383 13.413 1.350 13.309 1.319 13.215 1.312 13.160 1.385 13.187 1.469 13.204 1.552 13.187 1.635 13.123 1.809 13.123 1.892 13.161 1.907 13.161 1.998 13.152 2.082 13.178 2.165 13.262 2.273 13.262 2.357 13.225 2.372 13.121 2.339 13.027 2.339 12.932 2.331 12.830 2.323 12.735 2.339 12.641 2.364 12.546 2.387 12.452 2.380 12.348 2.405 12.302 2.372 12.208 2.380 12.113 2.372 12.019 2.372 11.727 2.412 11.633 2.397 11.606 2.397 11.512 2.389 11.418 2.389 11.343 2.306 11.325 2.275 11.316 1.819 11.316 1.735 11.325 1.130 11.325 1.097 11.231 1.097 9.977 1.041 9.874 1.097 9.780 1.145 9.677 1.114 9.582 1.031 9.545 0.948 9.573 0.857 9.591 0.691 9.608 0.607 9.583 0.691 9.554 0.698 9.459 0.729 9.365 0.646 9.281 0.573 9.376 0.489 9.413 0.406 9.460 0.374 9.554 0.316 9.657 0.284 9.751 0.284 9.977 0.276 9.977 0.276 9.874 0.228 9.780 0.145 9.771 0.228 9.688 0.236 9.593 0.276 9.490 0.193 9.472 0.276 9.426 0.276 9.418 0.302 9.380 0.385 9.363 0.302 9.299 0.219 9.317 0.135 9.325 0.012 9.325 -0.072 9.299 -0.155 9.290 -0.253 9.290 -0.344 9.227 -0.427 9.152 -0.510 9.077 -0.584 9.095 -0.667 9.021 -0.751 9.003 -0.776 8.994 -0.693 8.985 -0.610 8.930 -0.625 8.913 -0.617 8.867 -0.700 8.858 -0.617 8.794 -0.526 8.777 -0.617 8.750 -0.700 8.777 -0.783 8.832 ; #1714 15 46.902 16.128 46.894 16.138 46.902 16.254 46.835 16.358 46.750 16.396 46.734 16.396 46.666 16.425 46.599 16.529 46.506 16.619 46.446 16.723 46.413 16.828 46.397 16.866 46.347 16.896 46.339 16.896 46.280 16.955 46.256 17.038 46.214 17.142 46.155 17.191 46.147 17.220 46.131 17.230 46.105 17.258 46.098 17.258 46.082 17.266 46.066 17.276 46.058 17.275 46.050 17.305 46.034 17.304 45.992 17.364 46.000 17.374 45.992 17.403 46.000 17.423 45.992 17.474 45.984 17.580 45.899 17.648 45.883 17.666 45.868 17.781 45.844 17.886 45.844 17.896 45.836 18.001 45.836 18.213 45.812 18.273 45.804 18.314 45.804 18.325 45.812 18.440 45.853 18.548 45.887 18.592 45.973 18.658 45.973 18.701 45.965 18.806 45.990 18.891 45.990 18.911 46.024 19.019 46.058 19.052 46.042 19.157 46.042 19.273 46.091 19.348 46.133 19.456 46.226 19.546 46.218 19.607 46.226 19.679 46.185 19.770 46.209 19.878 46.216 19.940 46.216 19.972 46.192 20.032 46.192 20.126 46.167 20.231 46.209 20.349 46.201 20.454 46.234 20.457 46.201 20.561 46.201 20.655 46.209 20.675 46.224 20.695 46.310 20.753 46.317 20.764 46.310 20.869 46.310 20.975 46.334 21.083 46.426 21.152 46.460 21.206 46.546 21.222 46.639 21.271 46.664 21.282 46.664 21.292 46.698 21.401 46.732 21.443 46.799 21.448 46.885 21.506 46.970 21.587 47.055 21.646 47.063 21.614 47.148 21.727 47.164 21.748 47.180 21.749 47.265 21.795 47.351 21.834 47.418 21.946 47.503 21.963 47.545 21.956 47.561 21.967 47.620 22.066 47.644 22.140 47.729 22.189 47.778 22.300 47.794 22.376 47.802 22.484 47.810 22.592 47.860 22.648 47.927 22.761 47.985 22.838 48.070 22.825 48.112 22.776 48.128 22.758 48.128 22.568 48.195 22.531 48.270 22.429 48.278 22.323 48.364 22.267 48.379 22.215 48.403 22.207 48.429 22.137 48.429 22.104 48.403 21.985 48.395 21.876 48.362 21.766 48.387 21.661 48.403 21.652 48.489 21.573 48.555 21.470 48.581 21.364 48.566 21.268 48.524 21.232 48.540 21.224 48.540 21.214 48.524 21.095 48.540 20.988 48.555 20.881 48.590 20.799 48.590 20.691 48.564 20.582 48.555 20.463 48.480 20.426 48.310 20.307 48.310 20.297 48.302 20.286 48.286 20.178 48.227 20.066 48.203 20.023 48.195 19.959 48.179 19.851 48.187 19.777 48.229 19.672 48.262 19.611 48.237 19.515 48.237 19.495 48.221 19.494 48.205 19.483 48.197 19.472 48.130 19.448 48.113 19.340 48.098 19.231 48.090 19.123 48.098 19.017 48.098 18.955 48.090 18.934 48.090 18.914 48.064 18.805 47.979 18.748 47.894 18.775 47.860 18.826 47.852 18.825 47.844 18.718 47.818 18.684 47.794 18.575 47.794 18.468 47.787 18.360 47.778 18.243 47.787 18.137 47.787 18.126 47.794 18.094 47.794 17.977 47.787 17.870 47.787 17.763 47.794 17.720 47.852 17.606 47.860 17.544 47.868 17.534 47.900 17.507 47.907 17.464 47.965 17.395 47.973 17.395 47.999 17.354 48.023 17.280 48.048 17.229 48.048 17.167 48.040 17.156 47.965 17.080 47.957 17.090 47.907 17.035 47.822 17.041 47.729 16.985 47.721 16.877 47.713 16.805 47.713 16.785 47.771 16.680 47.771 16.660 47.778 16.544 47.745 16.532 47.729 16.491 47.680 16.519 47.671 16.626 47.622 16.676 47.537 16.653 47.495 16.651 47.479 16.630 47.456 16.523 47.388 16.448 47.303 16.476 47.218 16.463 47.124 16.469 47.039 16.495 47.047 16.389 47.023 16.281 47.008 16.251 46.999 16.250 46.984 16.198 46.916 16.111 ; #1715 15 -26.602 30.813 -26.668 30.914 -26.709 30.934 -26.799 30.976 -26.883 30.981 -26.966 31.091 -27.049 31.153 -27.090 31.253 -27.155 31.452 -27.171 31.559 -27.171 31.908 -27.148 31.975 -27.057 31.961 -26.966 31.956 -26.883 31.969 -26.799 31.991 -26.709 31.995 -26.668 32.001 -26.693 32.100 -26.701 32.119 -26.618 32.123 -26.519 32.117 -26.420 32.121 -26.329 32.097 -26.246 32.064 -26.148 32.050 -26.064 32.075 -26.049 32.082 -25.958 32.077 -25.875 32.081 -25.859 32.015 -25.827 31.956 -25.849 31.851 -25.801 31.763 -25.793 31.744 -25.728 31.634 -25.662 31.524 -25.622 31.456 -25.596 31.417 -25.629 31.321 -25.712 31.220 -25.795 31.127 -25.811 31.119 -25.851 31.112 -25.902 31.097 -25.993 31.046 -26.076 30.992 -26.167 30.911 -26.258 30.839 -26.331 30.814 -26.387 30.808 -26.604 30.820 ; #1716 15 -13.625 32.792 -13.681 32.811 -13.732 32.907 -13.822 32.994 -13.905 32.996 -13.905 33.060 -13.815 33.153 -13.815 33.170 -13.898 33.219 -13.954 33.305 -14.053 33.307 -14.136 33.373 -14.219 33.431 -14.302 33.480 -14.376 33.585 -14.459 33.683 -14.376 33.710 -14.417 33.815 -14.360 33.909 -14.368 34.013 -14.327 34.116 -14.320 34.220 -14.294 34.314 -14.343 34.411 -14.434 34.478 -14.517 34.526 -14.608 34.520 -14.699 34.551 -14.790 34.554 -14.881 34.583 -14.939 34.546 -15.022 34.549 -15.105 34.570 -15.179 34.555 -15.262 34.494 -15.353 34.413 -15.451 34.426 -15.476 34.427 -15.560 34.383 -15.633 34.291 -15.724 34.239 -15.815 34.298 -15.898 34.386 -15.989 34.398 -16.080 34.401 -16.171 34.471 -16.227 34.569 -16.318 34.637 -16.401 34.736 -16.484 34.823 -16.575 34.903 -16.666 34.982 -16.689 35.020 -16.738 35.127 -16.821 35.121 -16.904 35.040 -16.995 35.072 -16.995 35.224 -17.003 35.271 -16.937 35.286 -16.854 35.291 -16.771 35.259 -16.680 35.284 -16.597 35.263 -16.513 35.204 -16.430 35.125 -16.422 35.125 -16.422 35.117 -16.415 35.116 -16.415 35.125 -16.382 35.162 -16.299 35.234 -16.215 35.257 -16.125 35.262 -16.041 35.343 -15.991 35.436 -16.006 35.533 -15.982 35.636 -15.948 35.730 -15.933 35.765 -15.925 35.765 -15.842 35.779 -15.759 35.803 -15.676 35.808 -15.585 35.813 -15.418 35.824 -15.327 35.829 -15.244 35.817 -15.196 35.806 -15.140 35.786 -15.049 35.774 -14.958 35.808 -14.875 35.843 -14.827 35.860 -14.743 35.849 -14.529 35.842 -14.513 35.824 -14.430 35.747 -14.339 35.669 -14.240 35.591 -14.225 35.582 -14.126 35.504 -14.035 35.454 -13.944 35.377 -13.853 35.299 -13.762 35.221 -13.679 35.155 -13.589 35.088 -13.497 34.981 -13.465 34.954 -13.399 34.857 -13.391 34.828 -13.383 34.724 -13.335 34.627 -13.244 34.561 -13.161 34.550 -13.077 34.565 -12.994 34.563 -12.904 34.543 -12.820 34.532 -12.737 34.530 -12.646 34.518 -12.563 34.507 -12.480 34.468 -12.396 34.437 -12.313 34.417 -12.230 34.406 -12.139 34.366 -12.074 34.364 -11.982 34.399 -11.735 34.563 -11.644 34.618 -11.561 34.624 -11.478 34.639 -11.470 34.752 -11.470 34.960 -11.387 34.948 -11.303 34.891 -11.230 34.794 -11.147 34.717 -11.064 34.659 -10.973 34.611 -10.882 34.591 -10.799 34.645 -10.632 34.659 -10.549 34.648 -10.466 34.580 -10.433 34.579 -10.350 34.567 -10.267 34.565 -10.184 34.580 -10.017 34.519 -9.926 34.517 -9.901 34.508 -9.818 34.452 -9.734 34.376 -9.644 34.328 -9.477 34.136 -9.386 34.040 -9.452 33.946 -9.510 33.956 -9.601 33.928 -9.609 33.919 -9.553 33.853 -9.487 33.748 -9.512 33.702 -9.497 33.607 -9.529 33.504 -9.473 33.409 -9.390 33.313 -9.406 33.218 -9.390 33.123 -9.324 33.027 -9.317 32.944 -9.382 32.945 -9.466 32.992 -9.506 33.001 -9.522 32.993 -9.522 33.039 -9.506 33.134 -9.580 33.230 -9.646 33.259 -9.729 33.355 -9.820 33.383 -9.903 33.329 -9.986 33.339 -10.044 33.444 -10.118 33.541 -10.201 33.543 -10.284 33.563 -10.375 33.629 -10.466 33.697 -10.532 33.624 -10.615 33.542 -10.706 33.461 -10.714 33.348 -10.762 33.255 -10.853 33.304 -10.944 33.334 -11.042 33.392 -11.126 33.385 -11.209 33.333 -11.300 33.297 -11.383 33.262 -11.474 33.301 -11.557 33.322 -11.648 33.332 -11.739 33.317 -11.822 33.319 -11.913 33.304 -11.996 33.277 -12.079 33.308 -12.135 33.327 -12.227 33.425 -12.267 33.529 -12.283 33.503 -12.374 33.421 -12.406 33.319 -12.472 33.216 -12.480 33.121 -12.546 33.028 -12.637 32.966 -12.720 32.968 -12.810 33.035 -12.894 33.010 -12.977 32.995 -13.068 33.026 -13.151 32.953 -13.242 32.928 -13.341 32.855 -13.424 32.793 -13.507 32.700 -13.532 32.805 -13.615 32.798 ; #1717 15 11.489 103.108 11.489 103.051 11.398 103.117 ; #1718 15 10.758 103.336 10.824 103.361 10.840 103.259 10.756 103.335 ; #1719 15 37.859 126.594 37.819 126.511 37.735 126.538 37.652 126.553 37.692 126.676 37.776 126.661 37.799 126.664 37.857 126.593 ; #1720 15 36.450 126.547 36.450 126.557 36.506 126.537 36.572 126.471 36.489 126.465 36.448 126.544 ; #1721 15 34.958 126.422 34.892 126.345 34.869 126.444 34.960 126.423 ; #1722 15 34.542 126.484 34.582 126.434 34.615 126.339 34.532 126.285 34.441 126.246 34.416 126.335 34.457 126.462 34.540 126.488 ; #1723 15 33.594 126.977 33.602 126.971 33.594 126.868 33.586 126.765 33.561 126.646 33.530 126.533 33.464 126.396 33.374 126.309 33.290 126.353 33.250 126.435 33.290 126.552 33.282 126.648 33.298 126.754 33.331 126.876 33.379 126.996 33.462 127.071 33.553 127.062 33.594 126.980 ; #1724 15 34.416 126.760 34.367 126.779 34.360 126.876 34.443 126.811 34.418 126.761 ; #1725 15 34.965 127.954 34.958 127.951 34.875 127.925 34.783 127.943 34.783 128.153 34.867 128.140 34.875 128.034 34.958 128.021 34.965 127.957 ; #1726 15 34.915 128.575 34.882 128.588 34.809 128.657 34.824 128.773 34.907 128.827 34.998 128.818 35.031 128.768 34.948 128.699 ; #1727 15 13.391 102.414 13.351 102.427 13.259 102.454 13.176 102.503 13.093 102.570 13.010 102.561 12.927 102.571 12.843 102.580 12.828 102.570 12.737 102.616 12.681 102.705 12.598 102.792 12.515 102.848 12.465 102.807 12.381 102.799 12.298 102.782 12.215 102.802 12.124 102.839 12.041 102.868 11.957 102.897 11.874 102.953 11.818 102.976 11.735 102.967 11.818 103.022 11.811 103.030 11.818 103.049 11.803 103.113 11.772 103.015 11.689 103.033 11.605 103.109 11.547 103.198 11.464 103.143 11.381 103.126 11.298 103.144 11.215 103.165 11.131 103.147 11.041 103.138 10.967 103.225 11.025 103.326 10.985 103.426 11.068 103.463 11.234 103.515 11.242 103.620 11.176 103.708 11.093 103.708 11.002 103.754 10.919 103.737 10.845 103.721 10.838 103.625 10.754 103.559 10.671 103.597 10.597 103.684 10.638 103.783 10.697 103.884 10.779 103.893 10.697 103.959 10.671 104.060 10.663 104.154 10.663 104.249 10.580 104.335 10.555 104.428 10.532 104.472 10.532 104.489 10.597 104.591 10.638 104.621 10.638 104.745 10.631 104.839 10.679 104.939 10.712 104.969 10.768 105.032 10.851 105.125 10.934 105.087 11.008 105.085 11.015 105.086 11.041 105.118 11.048 105.127 11.056 105.128 11.025 105.143 11.017 105.208 11.017 105.217 11.010 105.224 11.002 105.233 11.002 105.242 10.977 105.334 11.027 105.434 11.050 105.531 11.050 105.549 11.066 105.615 11.089 105.712 11.122 105.810 11.039 105.868 10.998 105.890 10.932 105.949 10.940 106.045 10.907 106.105 10.892 106.199 10.983 106.200 11.066 106.170 11.073 106.238 11.097 106.231 11.170 106.203 11.203 106.112 11.286 106.037 11.327 105.946 11.342 105.948 11.433 105.911 11.499 105.918 11.583 105.917 11.666 105.860 11.690 105.854 11.714 105.857 11.747 105.955 11.762 106.011 11.853 106.059 11.838 106.152 11.838 106.199 11.822 106.292 11.782 106.383 11.766 106.476 11.758 106.493 11.849 106.467 11.933 106.484 11.963 106.505 12.047 106.459 12.055 106.459 12.070 106.556 12.062 106.584 12.055 106.678 12.078 106.776 12.161 106.820 12.161 106.895 12.168 106.991 12.176 107.009 12.224 107.081 12.308 107.145 12.373 107.227 12.399 107.305 12.414 107.401 12.383 107.416 12.383 107.425 12.407 107.522 12.490 107.577 12.573 107.613 12.588 107.614 12.755 107.614 12.838 107.594 12.929 107.568 13.012 107.531 13.095 107.522 13.110 107.515 13.194 107.552 13.285 107.589 13.368 107.626 13.393 107.638 13.484 107.665 13.500 107.658 13.583 107.658 13.666 107.620 13.697 107.606 13.780 107.568 13.846 107.518 13.871 107.494 13.962 107.495 14.010 107.500 14.076 107.412 14.167 107.392 14.250 107.384 14.333 107.410 14.416 107.390 14.500 107.437 14.583 107.529 14.674 107.539 14.740 107.564 14.780 107.560 14.722 107.516 14.639 107.471 14.639 107.376 14.623 107.279 14.540 107.213 14.482 107.112 14.442 107.012 14.401 106.912 14.426 106.820 14.509 106.753 14.535 106.661 14.542 106.644 14.583 106.621 14.666 106.564 14.674 106.556 14.649 106.516 14.641 106.506 14.557 106.459 14.517 106.351 14.533 106.269 14.450 106.224 14.457 106.130 14.399 106.028 14.316 106.066 14.233 106.142 14.142 106.207 14.093 106.165 14.010 106.072 14.002 106.016 13.995 106.006 13.995 105.997 14.010 105.952 14.059 105.891 14.066 105.874 14.149 105.828 14.165 105.800 14.181 105.775 14.188 105.710 14.221 105.618 14.229 105.610 14.188 105.522 14.181 105.425 14.246 105.328 14.254 105.320 14.337 105.262 14.420 105.253 14.354 105.200 14.298 105.099 14.382 105.043 14.397 105.045 14.455 105.042 14.463 105.016 14.471 104.962 14.486 104.906 14.502 104.880 14.486 104.784 14.494 104.689 14.428 104.607 14.436 104.504 14.452 104.430 14.474 104.337 14.467 104.241 14.434 104.191 14.418 104.094 14.434 104.032 14.418 103.935 14.444 103.842 14.509 103.745 14.486 103.647 14.461 103.549 14.428 103.451 14.428 103.355 14.405 103.298 14.405 103.240 14.390 103.204 14.316 103.101 14.243 102.998 14.202 102.994 14.119 102.968 14.111 102.967 14.095 102.957 14.012 102.853 13.929 102.827 13.896 102.805 13.813 102.733 13.757 102.632 13.731 102.630 13.648 102.613 13.641 102.517 13.641 102.413 13.558 102.433 13.466 102.432 13.383 102.424 ; #1728 15 37.760 126.662 37.669 126.684 37.628 126.764 37.605 126.780 37.521 126.746 37.438 126.803 37.430 126.869 37.347 126.905 37.306 126.994 37.290 126.875 37.199 126.789 37.166 126.831 37.166 126.932 37.083 126.888 37.116 127.006 37.033 126.953 36.976 127.024 36.976 127.125 36.960 127.117 36.894 126.981 36.811 126.955 36.902 126.954 36.986 126.918 37.019 126.835 37.027 126.738 37.075 126.653 36.992 126.680 36.908 126.587 36.992 126.581 36.999 126.475 36.908 126.436 36.999 126.414 36.908 126.406 36.883 126.282 36.792 126.293 36.751 126.372 36.759 126.386 36.759 126.395 36.675 126.441 36.759 126.503 36.751 126.600 36.667 126.636 36.584 126.592 36.500 126.607 36.516 126.716 36.508 126.712 36.508 126.702 36.417 126.636 36.343 126.698 36.169 126.606 36.169 126.706 36.085 126.763 36.062 126.860 36.110 126.975 36.037 126.826 35.953 126.722 35.937 126.814 35.953 126.932 35.870 126.839 35.786 126.786 35.738 126.660 35.654 126.567 35.639 126.669 35.631 126.765 35.575 126.626 35.491 126.533 35.483 126.529 35.400 126.546 35.309 126.438 35.225 126.455 35.159 126.521 35.159 126.421 35.183 126.333 35.117 126.387 35.033 126.423 34.950 126.473 34.859 126.452 34.859 126.532 34.942 126.606 34.869 126.675 34.811 126.562 34.811 126.462 34.780 126.549 34.729 126.627 34.745 126.534 34.662 126.538 34.685 126.448 34.768 126.422 34.685 126.359 34.636 126.439 34.588 126.527 34.580 126.633 34.489 126.566 34.406 126.580 34.365 126.662 34.431 126.718 34.515 126.793 34.598 126.838 34.515 126.902 34.474 126.985 34.557 127.030 34.648 127.088 34.731 127.202 34.815 127.317 34.799 127.410 34.716 127.405 34.633 127.290 34.648 127.257 34.574 127.334 34.509 127.406 34.574 127.505 34.631 127.429 34.631 127.578 34.679 127.579 34.737 127.504 34.811 127.436 34.894 127.561 34.927 127.565 34.843 127.629 34.760 127.633 34.677 127.698 34.768 127.718 34.776 127.800 34.859 127.836 34.867 127.740 34.923 127.664 35.006 127.779 35.014 127.832 34.990 127.909 35.039 128.044 35.123 128.116 35.039 128.111 34.965 128.175 34.990 128.296 34.998 128.399 34.915 128.463 34.882 128.467 34.915 128.510 34.998 128.497 35.082 128.541 35.057 128.428 35.140 128.521 35.140 128.621 35.231 128.642 35.191 128.720 35.149 128.808 35.142 128.904 35.175 128.971 35.191 129.028 35.191 129.037 35.099 129.028 35.157 129.168 35.241 129.292 35.332 129.341 35.416 129.435 35.507 129.423 35.598 129.434 35.524 129.495 35.608 129.549 35.699 129.549 35.782 129.585 35.874 129.615 35.957 129.632 36.040 129.677 36.124 129.661 36.050 129.572 36.091 129.484 36.174 129.510 36.266 129.489 36.349 129.497 36.433 129.542 36.516 129.556 36.599 129.552 36.683 129.538 36.774 129.597 36.858 129.583 36.949 129.552 37.033 129.539 37.116 129.553 37.199 129.497 37.199 129.488 37.282 129.483 37.366 129.427 37.449 129.362 37.483 129.331 37.556 129.269 37.640 129.224 37.723 129.190 37.789 129.124 37.855 129.049 37.921 128.983 37.995 128.912 38.078 128.855 38.144 128.780 38.235 128.739 38.319 128.695 38.352 128.684 38.519 128.571 38.610 128.530 38.659 128.488 38.633 128.444 38.550 128.439 38.466 128.403 38.383 128.290 38.352 128.171 38.360 128.074 38.344 127.955 38.378 127.913 38.370 127.859 38.362 127.754 38.346 127.635 38.354 127.608 38.370 127.515 38.362 127.409 38.346 127.289 38.273 127.148 38.207 127.104 38.158 127.047 38.074 126.975 37.991 126.829 37.966 126.834 37.882 126.830 37.882 126.840 37.799 126.836 37.716 126.841 37.682 126.892 37.716 126.808 37.799 126.803 37.807 126.705 37.776 126.680 ; #1729 15 -15.002 167.167 -14.979 167.134 -14.896 167.111 -14.813 167.115 -14.869 167.029 -14.952 167.025 -15.043 166.960 -15.028 166.861 -14.861 166.830 -14.770 166.824 -14.687 166.783 -14.596 166.721 -14.571 166.621 -14.654 166.597 -14.745 166.595 -14.829 166.627 -14.912 166.670 -15.002 166.669 -15.086 166.707 -15.177 166.700 -15.260 166.692 -15.343 166.741 -15.426 166.800 -15.510 166.829 -15.502 166.922 -15.461 167.017 -15.476 167.116 -15.428 167.199 -15.345 167.274 -15.262 167.245 -15.171 167.240 -15.088 167.219 -15.004 167.172 ; #1730 15 -13.068 166.657 -12.985 166.671 -13.068 166.648 ; #1731 15 -15.635 167.268 -15.594 167.294 -15.511 167.247 -15.585 167.161 ; #1732 15 -17.703 168.480 -17.696 168.582 -17.612 168.657 -17.529 168.610 -17.438 168.558 -17.430 168.451 -17.446 168.360 -17.529 168.285 -17.612 168.259 -17.572 168.354 -17.662 168.350 -17.678 168.449 -17.701 168.482 ; #1733 15 -14.206 167.602 -14.140 167.675 -14.049 167.668 -14.041 167.562 -14.124 167.481 -14.208 167.505 -14.208 167.600 ; #1734 15 -17.453 168.304 -17.405 168.388 -17.438 168.300 ; #1735 15 -13.832 167.555 -13.758 167.646 -13.675 167.641 -13.592 167.570 -13.666 167.478 -13.749 167.510 -13.832 167.551 ; #1736 15 -15.368 167.916 -15.327 167.953 -15.244 168.008 -15.161 168.042 -15.177 167.951 -15.200 167.862 -15.273 167.784 -15.357 167.814 -15.364 167.911 ; #1737 15 -16.241 168.239 -16.225 168.330 -16.185 168.416 -16.101 168.310 -16.018 168.289 -16.026 168.196 -16.074 168.104 -16.090 168.012 -16.173 168.070 -16.213 168.185 -16.237 168.238 ; #1738 15 -16.724 168.568 -16.676 168.565 -16.651 168.463 -16.567 168.346 -16.511 168.237 -16.603 168.224 -16.686 168.263 -16.693 168.360 -16.678 168.461 -16.726 168.569 ; #1739 15 -16.392 168.314 -16.392 168.323 -16.308 168.311 ; #1740 15 -15.875 168.289 -15.792 168.344 -15.534 168.279 -15.444 168.275 -15.361 168.216 -15.444 168.208 -15.527 168.182 -15.618 168.196 -15.701 168.234 -15.792 168.257 -15.875 168.287 ; #1741 15 -15.277 168.198 -15.194 168.252 -15.103 168.247 -14.937 168.210 -14.846 168.157 -14.937 168.164 -15.020 168.171 -15.103 168.192 -15.186 168.184 ; #1742 15 -19.532 169.495 -19.448 169.530 -19.365 169.492 -19.274 169.410 -19.191 169.407 -19.216 169.318 -19.299 169.292 -19.382 169.295 -19.466 169.374 ; #1743 15 -20.123 169.872 -20.040 169.933 -20.015 169.829 -20.098 169.807 -20.123 169.870 ; #1744 15 26.560 -78.813 26.567 -78.776 26.608 -78.688 26.641 -78.590 26.664 -78.498 26.689 -78.406 26.697 -78.311 26.705 -78.206 26.720 -78.112 26.753 -78.014 26.836 -78.024 26.786 -78.119 26.763 -78.210 26.771 -78.310 26.763 -78.415 26.771 -78.514 26.796 -78.617 26.804 -78.726 26.720 -78.733 26.647 -78.813 26.639 -78.908 26.695 -79.019 26.604 -78.921 26.556 -78.812 ; #1745 15 25.269 -78.290 25.237 -78.291 25.153 -78.253 25.070 -78.233 24.979 -78.251 24.896 -78.303 24.813 -78.366 24.729 -78.296 24.639 -78.328 24.729 -78.411 24.671 -78.507 24.588 -78.416 24.540 -78.312 24.548 -78.207 24.457 -78.183 24.391 -78.075 24.422 -77.974 24.505 -77.891 24.538 -77.800 24.629 -77.815 24.720 -77.812 24.803 -77.844 24.886 -77.934 24.970 -77.966 25.053 -78.010 25.136 -78.039 25.219 -78.077 25.219 -78.174 25.267 -78.282 ; #1746 15 24.269 -77.933 24.261 -78.037 24.211 -78.020 ; #1747 15 23.783 -77.729 23.817 -77.707 23.849 -77.616 23.933 -77.591 24.024 -77.597 24.107 -77.602 24.190 -77.616 24.273 -77.697 24.190 -77.722 24.107 -77.793 24.190 -77.816 24.273 -77.745 24.356 -77.740 24.316 -77.830 24.233 -77.913 24.167 -77.999 24.084 -77.900 24.000 -77.904 23.917 -77.863 23.861 -77.757 23.894 -77.657 23.828 -77.743 23.813 -77.846 23.787 -77.736 ; #1748 15 25.943 -77.300 25.999 -77.275 26.082 -77.276 26.173 -77.279 26.264 -77.273 26.347 -77.207 26.421 -77.127 26.503 -77.164 26.587 -77.166 26.660 -77.280 26.693 -77.385 26.776 -77.452 26.867 -77.542 26.951 -77.639 26.966 -77.740 26.974 -77.848 26.981 -77.948 26.949 -78.037 26.964 -77.943 26.939 -77.840 26.916 -77.728 26.900 -77.617 26.817 -77.550 26.734 -77.463 26.650 -77.396 26.627 -77.284 26.545 -77.291 26.461 -77.329 26.370 -77.346 26.204 -77.325 26.072 -77.489 26.031 -77.382 25.941 -77.304 ; #1749 15 25.472 -76.657 25.440 -76.622 25.399 -76.517 25.343 -76.407 25.260 -76.340 25.177 -76.224 25.086 -76.211 25.002 -76.269 24.912 -76.245 24.828 -76.308 24.745 -76.227 24.828 -76.240 24.912 -76.197 25.002 -76.212 25.086 -76.184 25.169 -76.185 25.260 -76.274 25.343 -76.370 25.409 -76.492 25.450 -76.598 25.523 -76.712 25.589 -76.825 25.498 -76.765 25.474 -76.662 ; #1750 15 23.745 -76.098 23.737 -76.106 23.654 -76.036 23.588 -75.920 23.540 -75.815 23.623 -75.914 23.714 -75.985 23.747 -76.096 ; #1751 15 23.488 -75.611 23.503 -75.710 23.472 -75.608 ; #1752 15 24.186 -75.528 24.219 -75.436 24.302 -75.412 24.393 -75.474 24.476 -75.572 24.560 -75.624 24.650 -75.677 24.733 -75.729 24.650 -75.707 24.560 -75.645 24.393 -75.561 24.310 -75.471 24.236 -75.556 24.188 -75.530 ; #1753 15 23.656 -75.375 23.565 -75.333 23.474 -75.271 23.391 -75.202 23.300 -75.214 23.217 -75.174 23.267 -75.287 23.184 -75.207 23.151 -75.096 23.068 -75.006 22.977 -74.965 23.068 -74.932 23.151 -75.001 23.184 -75.103 23.267 -75.164 23.350 -75.168 23.433 -75.200 23.524 -75.262 23.608 -75.284 23.698 -75.346 23.739 -75.379 ; #1754 15 23.778 -74.904 23.730 -74.993 23.704 -74.892 ; #1755 15 22.274 -74.316 22.331 -74.219 22.379 -74.131 22.429 -74.043 22.520 -73.971 22.603 -73.908 22.687 -73.930 22.770 -73.991 22.737 -74.091 22.654 -74.051 22.581 -73.943 22.532 -74.032 22.466 -74.126 22.400 -74.213 22.317 -74.267 22.276 -74.316 ; #1756 15 24.144 -74.604 24.095 -74.597 24.012 -74.622 24.078 -74.526 24.161 -74.502 24.146 -74.605 ; #1757 15 22.799 -74.177 22.857 -74.283 22.905 -74.387 22.822 -74.374 22.748 -74.265 22.726 -74.165 ; #1758 15 10.122 -61.968 10.137 -61.911 10.153 -61.818 10.153 -61.723 10.145 -61.628 10.145 -61.429 10.153 -61.335 10.153 -61.240 10.178 -61.148 10.234 -61.057 10.317 -61.054 10.400 -61.024 10.484 -61.085 10.567 -61.100 10.657 -61.079 10.741 -61.094 10.824 -61.017 10.915 -61.032 10.907 -61.126 10.884 -61.220 10.868 -61.313 10.884 -61.418 10.843 -61.510 10.828 -61.604 10.762 -61.702 10.747 -61.598 10.663 -61.525 10.580 -61.527 10.490 -61.538 10.406 -61.514 10.315 -61.591 10.300 -61.684 10.234 -61.774 10.209 -61.875 10.126 -61.964 ; #1759 15 17.065 -61.807 17.090 -61.800 17.173 -61.755 17.229 -61.857 17.163 -61.945 17.080 -61.906 17.065 -61.809 ; #1760 15 17.614 -61.811 17.671 -61.800 17.754 -61.847 17.746 -61.941 17.655 -61.913 17.614 -61.813 ; #1761 15 11.222 -60.862 11.230 -60.845 11.286 -60.754 11.327 -60.654 11.410 -60.643 11.379 -60.744 11.314 -60.834 11.222 -60.864 ; #1762 15 20.990 -73.721 21.006 -73.697 21.006 -73.495 21.021 -73.401 21.029 -73.306 21.052 -73.214 21.135 -73.160 21.219 -73.097 21.309 -73.084 21.392 -73.079 21.327 -73.165 21.243 -73.248 21.211 -73.339 21.284 -73.447 21.259 -73.548 21.203 -73.636 21.155 -73.724 21.072 -73.768 20.988 -73.728 ; #1763 15 21.594 -73.025 21.594 -73.122 21.503 -73.108 ; #1764 15 22.354 -72.861 22.370 -72.837 22.453 -72.915 22.460 -73.013 22.501 -73.115 22.501 -73.212 22.418 -73.172 22.433 -73.078 22.433 -72.972 22.350 -72.863 ; #1765 8 -41.680 -73.563 -41.647 -73.621 -41.663 -73.731 -41.747 -73.799 -41.739 -73.898 -41.655 -73.962 -41.639 -74.068 -41.732 -74.039 -41.816 -74.088 -41.900 -74.068 -41.992 -74.111 -42.076 -74.201 -42.168 -74.183 -42.336 -74.243 -42.428 -74.183 -42.512 -74.182 -42.604 -74.215 -42.688 -74.213 -42.780 -74.266 -42.864 -74.265 -42.948 -74.356 -43.040 -74.399 -43.125 -74.357 -43.158 -74.268 -43.191 -74.170 -43.191 -74.066 -43.199 -73.965 -43.240 -73.871 -43.148 -73.745 -43.064 -73.766 -42.980 -73.756 -42.954 -73.640 -42.898 -73.553 -42.857 -73.584 -42.790 -73.657 -42.715 -73.726 -42.723 -73.626 -42.715 -73.518 -42.631 -73.561 -42.590 -73.646 -42.516 -73.715 -42.475 -73.809 -42.391 -73.769 -42.367 -73.645 -42.283 -73.710 -42.199 -73.661 -42.173 -73.545 -42.117 -73.405 -42.033 -73.458 -41.948 -73.491 -41.864 -73.534 -41.773 -73.561 -41.689 -73.563 ; #1766 8 -43.486 -74.798 -43.420 -74.662 -43.387 -74.750 -43.420 -74.870 ; #1767 8 -44.764 -75.064 -44.757 -75.041 -44.672 -75.020 -44.680 -75.129 ; #1768 8 -44.522 -74.769 -44.488 -74.733 -44.439 -74.815 -44.524 -74.773 ; #1769 8 -42.486 -73.648 -42.438 -73.625 -42.479 -73.748 ; #1770 8 -42.402 -73.464 -42.361 -73.454 -42.295 -73.527 -42.303 -73.634 -42.336 -73.546 ; #1771 8 -43.941 -74.251 -43.909 -74.246 -43.925 -74.358 ; #1772 8 -44.386 -74.390 -44.330 -74.311 -44.246 -74.281 -44.302 -74.413 -44.287 -74.520 -44.371 -74.490 -44.386 -74.392 ; #1773 8 -43.974 -74.225 -43.958 -74.218 -43.966 -74.325 ; #1774 8 -44.142 -74.293 -44.118 -74.281 -44.126 -74.390 ; #1775 8 -43.782 -73.998 -43.774 -73.965 -43.690 -73.954 -43.659 -73.825 -43.674 -73.947 -43.659 -74.044 -43.725 -74.189 -43.741 -74.083 ; #1776 8 -44.697 -74.360 -44.649 -74.327 -44.582 -74.400 -44.574 -74.501 -44.658 -74.448 -44.699 -74.363 ; #1777 8 -41.714 -73.062 -41.683 -73.028 -41.624 -73.105 -41.716 -73.065 ; #1778 8 -42.839 -73.419 -42.823 -73.411 -42.790 -73.500 -42.790 -73.604 -42.816 -73.512 ; #1779 8 -44.647 -74.240 -44.606 -74.115 -44.539 -73.979 -44.524 -73.857 -44.467 -73.935 -44.451 -74.032 -44.443 -74.143 -44.443 -74.248 -44.528 -74.403 -44.619 -74.332 -44.653 -74.243 ; #1780 8 -44.167 -74.003 -44.142 -74.000 -44.058 -73.909 -44.034 -74.013 -44.042 -74.131 -44.126 -74.088 ; #1781 8 -44.218 -74.205 -44.244 -74.102 -44.218 -74.195 ; #1782 8 -45.544 -74.732 -45.528 -74.733 -45.502 -74.825 ; #1783 8 -43.823 -73.849 -43.798 -73.837 -43.798 -73.942 ; #1784 8 -44.394 -74.037 -44.320 -73.960 -44.297 -74.054 -44.281 -74.161 -44.365 -74.128 -44.398 -74.039 ; #1785 8 -44.042 -73.870 -44.001 -73.860 -43.943 -73.947 -44.027 -73.967 ; #1786 8 -44.277 -73.959 -44.277 -73.918 -44.193 -73.929 -44.234 -74.054 -44.275 -73.958 ; #1787 8 -45.570 -74.681 -45.586 -74.585 -45.500 -74.539 -45.415 -74.513 -45.475 -74.660 -45.568 -74.680 ; #1788 8 -45.136 -74.302 -45.120 -74.274 -45.035 -74.280 -44.993 -74.364 -45.086 -74.384 -45.136 -74.305 ; #1789 8 -44.175 -73.850 -44.109 -73.828 -44.159 -73.957 ; #1790 8 -45.427 -74.490 -45.427 -74.480 -45.342 -74.528 ; #1791 8 -45.229 -74.364 -45.161 -74.328 -45.195 -74.452 ; #1792 8 -43.974 -73.660 -43.917 -73.614 -43.833 -73.666 -43.807 -73.759 -43.891 -73.726 -43.976 -73.661 ; #1793 8 -44.302 -73.866 -44.254 -73.814 -44.220 -73.903 -44.304 -73.870 ; #1794 8 -44.697 -74.024 -44.697 -74.005 -44.606 -73.981 -44.672 -74.118 -44.696 -74.024 ; #1795 8 -45.614 -74.442 -45.546 -74.301 -45.453 -74.222 -45.368 -74.228 -45.310 -74.302 -45.352 -74.439 -45.445 -74.460 -45.530 -74.444 -45.616 -74.448 ; #1796 8 -44.833 -73.888 -44.856 -73.951 -44.872 -74.074 -44.903 -74.203 -44.987 -74.202 -44.995 -74.100 -45.019 -73.997 -45.078 -73.924 -45.062 -73.810 -45.047 -73.687 -44.962 -73.673 -44.878 -73.739 -44.829 -73.821 -44.829 -73.881 ; #1797 8 -45.195 -73.976 -45.187 -73.879 -45.179 -73.769 -45.094 -73.817 -45.102 -73.927 -45.060 -74.010 -45.086 -74.139 -45.161 -74.064 ; #1798 8 -44.790 -73.814 -44.723 -73.753 -44.639 -73.806 -44.647 -73.915 -44.731 -73.894 -44.790 -73.817 ; #1799 8 -44.580 -73.727 -44.580 -73.707 -44.555 -73.581 -44.463 -73.611 -44.388 -73.680 -44.429 -73.815 -44.522 -73.817 -44.580 -73.730 ; #1800 8 -42.000 -72.555 -41.950 -72.532 -41.958 -72.639 ; #1801 8 -48.534 -75.186 -48.466 -75.096 -48.381 -75.080 -48.296 -75.096 -48.246 -75.176 -48.161 -75.191 -48.068 -75.258 -47.983 -75.273 -47.897 -75.334 -47.897 -75.451 -47.929 -75.575 -48.022 -75.519 -48.072 -75.439 -48.157 -75.497 -48.181 -75.402 -48.232 -75.538 -48.248 -75.439 -48.207 -75.299 -48.300 -75.288 -48.385 -75.282 -48.470 -75.256 -48.530 -75.181 ; #1802 8 -45.417 -74.116 -45.368 -74.049 -45.368 -73.933 -45.393 -73.841 -45.308 -73.857 -45.275 -73.945 -45.324 -74.086 ; #1803 8 -44.672 -73.675 -44.672 -73.602 -44.580 -73.588 -44.588 -73.697 ; #1804 8 -45.273 -73.892 -45.215 -73.871 -45.247 -73.994 ; #1805 8 -43.866 -73.169 -43.825 -73.169 -43.733 -73.146 -43.758 -73.272 -43.842 -73.260 -43.868 -73.167 ; #1806 8 -45.562 -73.972 -45.536 -73.907 -45.451 -73.872 -45.393 -73.957 -45.427 -74.090 -45.520 -74.055 ; #1807 8 -47.674 -75.174 -47.624 -75.116 -47.539 -75.144 -47.624 -75.266 -47.674 -75.176 ; #1808 8 -48.526 -75.590 -48.526 -75.472 -48.441 -75.317 -48.355 -75.333 -48.262 -75.377 -48.312 -75.511 -48.346 -75.648 -48.431 -75.643 -48.457 -75.549 -48.480 -75.454 -48.522 -75.585 ; #1809 8 -45.756 -74.012 -45.671 -73.956 -45.586 -73.931 -45.578 -74.032 -45.663 -74.049 -45.756 -74.014 ; #1810 8 -48.627 -75.591 -48.627 -75.571 -48.585 -75.440 -48.510 -75.281 -48.502 -75.394 -48.560 -75.534 -48.544 -75.642 -48.629 -75.594 ; #1811 8 -47.622 -74.996 -47.547 -74.945 -47.554 -75.066 ; #1812 8 -44.571 -72.851 -44.563 -72.837 -44.479 -72.891 -44.422 -72.749 -44.338 -72.739 -44.297 -72.825 -44.312 -72.947 -44.228 -72.969 -44.277 -73.096 -44.254 -73.200 -44.338 -73.249 -44.394 -73.161 -44.443 -73.299 -44.451 -73.417 -44.535 -73.415 -44.627 -73.366 -44.627 -73.261 -44.660 -73.381 -44.727 -73.308 -44.776 -73.226 -44.745 -73.106 -44.660 -72.983 -44.569 -72.847 ; #1813 8 -47.904 -74.883 -47.904 -74.873 -47.818 -74.827 -47.733 -74.800 -47.657 -74.866 -47.743 -74.955 -47.828 -74.959 -47.779 -75.049 -47.794 -75.165 -47.880 -75.212 -47.830 -75.067 -47.880 -74.987 -47.906 -74.884 ; #1814 8 -48.280 -75.014 -48.254 -74.980 -48.187 -74.826 -48.094 -74.828 -48.009 -74.801 -48.001 -74.914 -47.959 -74.998 -47.951 -75.111 -47.959 -75.223 -48.044 -75.195 -48.129 -75.146 -48.215 -75.086 -48.282 -75.015 ; #1815 8 -47.963 -74.925 -47.929 -74.917 -47.887 -75.002 -47.887 -75.109 -47.913 -75.016 ; #1816 8 -45.826 -73.891 -45.768 -73.819 -45.717 -73.685 -45.659 -73.761 -45.745 -73.922 -45.830 -73.894 ; #1817 8 -48.926 -75.530 -48.885 -75.507 -48.893 -75.620 ; #1818 8 -45.603 -73.739 -45.578 -73.715 -45.511 -73.785 -45.603 -73.741 ; #1819 8 -45.179 -73.590 -45.179 -73.581 -45.163 -73.467 ; #1820 8 -44.991 -73.344 -44.975 -73.327 -44.909 -73.401 -44.993 -73.348 ; #1821 8 -47.001 -74.468 -46.976 -74.402 -46.891 -74.336 -46.906 -74.451 -46.999 -74.472 ; #1822 8 -46.048 -73.766 -45.990 -73.725 -45.905 -73.690 -45.871 -73.778 -45.921 -73.920 -45.970 -73.830 -46.046 -73.765 ; #1823 8 -45.869 -73.681 -45.812 -73.692 -45.770 -73.776 -45.855 -73.779 -45.871 -73.682 ; #1824 8 -48.833 -75.188 -48.833 -75.178 -48.792 -75.047 -48.706 -75.086 -48.665 -75.171 -48.657 -75.284 -48.742 -75.236 -48.835 -75.192 ; #1825 8 -47.870 -74.758 -47.870 -74.747 -47.777 -74.792 ; #1826 8 -48.670 -75.108 -48.629 -75.075 -48.544 -75.136 -48.629 -75.204 ; #1827 8 -48.526 -74.611 -48.510 -74.517 -48.425 -74.480 -48.409 -74.590 -48.324 -74.595 -48.230 -74.564 -48.155 -74.641 -48.070 -74.702 -47.985 -74.750 -48.070 -74.767 -48.163 -74.808 -48.248 -74.759 -48.333 -74.763 -48.241 -74.807 -48.256 -74.934 -48.350 -75.015 -48.435 -74.999 -48.468 -74.900 -48.477 -74.797 -48.492 -74.698 -48.524 -74.607 ; #1828 8 -49.376 -75.456 -49.361 -75.447 -49.327 -75.537 ; #1829 8 -48.578 -74.995 -48.569 -74.938 -48.484 -74.891 -48.492 -75.000 ; #1830 8 -49.735 -75.136 -49.719 -75.127 -49.634 -75.166 -49.549 -75.237 -49.473 -75.303 -49.466 -75.417 -49.458 -75.521 -49.543 -75.528 -49.628 -75.467 -49.578 -75.321 -49.672 -75.332 -49.672 -75.224 -49.739 -75.143 ; #1831 8 -47.715 -74.524 -47.707 -74.477 -47.622 -74.441 ; #1832 8 -49.097 -75.130 -49.071 -75.116 -49.063 -75.220 ; #1833 8 -48.177 -74.518 -48.143 -74.447 -48.058 -74.401 -48.009 -74.481 -48.001 -74.584 -48.094 -74.550 -48.179 -74.524 ; #1834 8 -47.818 -74.313 -47.810 -74.266 -47.794 -74.151 -47.794 -74.043 -47.727 -73.890 -47.693 -73.979 -47.685 -74.081 -47.659 -74.185 -47.693 -74.310 -47.693 -74.417 -47.786 -74.415 -47.820 -74.317 ; #1835 8 -48.304 -74.265 -48.262 -74.222 -48.205 -74.298 -48.145 -74.373 -48.230 -74.440 -48.264 -74.351 -48.306 -74.266 ; #1836 8 -50.129 -75.009 -50.051 -74.906 -49.965 -74.745 -49.999 -74.873 -49.983 -74.983 -49.898 -74.915 -49.914 -75.032 -49.856 -75.109 -49.880 -75.231 -49.880 -75.350 -49.939 -75.274 -49.981 -75.178 -49.989 -75.074 -50.076 -75.119 -50.076 -75.228 -49.981 -75.211 -49.973 -75.326 -50.060 -75.369 -50.147 -75.406 -50.163 -75.307 -50.171 -75.193 -50.258 -75.280 -50.216 -75.134 -50.129 -75.014 ; #1837 8 -48.330 -74.054 -48.314 -74.055 -48.239 -74.122 -48.239 -74.229 -48.288 -74.148 ; #1838 8 -50.624 -75.294 -50.573 -75.241 -50.399 -75.257 -50.415 -75.149 -50.328 -75.049 -50.337 -75.164 -50.302 -75.250 -50.345 -75.397 -50.404 -75.326 -50.491 -75.459 -50.507 -75.360 -50.594 -75.396 -50.618 -75.293 ; #1839 8 -47.854 -73.709 -47.812 -73.687 -47.779 -73.776 ; #1840 8 -50.223 -74.949 -50.199 -74.923 -50.216 -75.053 ; #1841 8 -49.446 -74.394 -49.388 -74.266 -49.303 -74.328 -49.269 -74.418 -49.363 -74.416 -49.448 -74.400 ; #1842 8 -47.947 -73.580 -47.939 -73.576 -47.906 -73.665 ; #1843 8 -50.642 -75.004 -50.591 -74.971 -50.497 -74.940 -50.488 -75.044 -50.575 -75.070 -50.644 -75.005 ; #1844 8 -49.914 -74.530 -49.914 -74.519 -49.856 -74.379 ; #1845 8 -50.328 -74.722 -50.286 -74.642 -50.199 -74.556 -50.241 -74.702 -50.328 -74.725 ; #1846 8 -50.721 -74.671 -50.652 -74.636 -50.610 -74.718 -50.515 -74.754 -50.515 -74.863 -50.602 -74.929 -50.689 -74.889 -50.713 -74.785 ; #1847 8 -50.946 -74.707 -50.877 -74.586 -50.834 -74.449 -50.861 -74.346 -50.774 -74.400 -50.678 -74.372 -50.626 -74.447 -50.583 -74.539 -50.583 -74.648 -50.678 -74.613 -50.765 -74.596 -50.749 -74.704 -50.733 -74.803 -50.725 -74.918 -50.820 -74.936 -50.820 -74.826 -50.907 -74.819 -50.857 -74.667 -50.951 -74.718 ; #1848 8 -51.467 -75.298 -51.433 -75.189 -51.346 -75.122 -51.251 -75.071 -51.164 -75.004 -51.198 -75.136 -51.111 -75.156 -51.198 -75.202 -51.285 -75.226 -51.372 -75.303 -51.467 -75.301 ; #1849 8 -50.998 -75.003 -51.006 -75.008 -50.948 -74.861 ; #1850 8 -50.676 -74.182 -50.669 -74.157 -50.582 -74.175 -50.531 -74.252 -50.488 -74.334 -50.488 -74.224 -50.420 -74.289 -50.324 -74.315 -50.308 -74.423 -50.335 -74.549 -50.422 -74.486 -50.509 -74.521 -50.578 -74.447 -50.628 -74.370 -50.636 -74.266 -50.678 -74.184 ; #1851 8 -51.728 -75.106 -51.728 -75.062 -51.633 -74.980 -51.556 -75.039 -51.643 -75.107 -51.730 -75.110 ; #1852 8 -51.955 -74.967 -51.886 -74.891 -51.799 -74.845 -51.712 -74.808 -51.625 -74.762 -51.530 -74.774 -51.522 -74.879 -51.609 -74.882 -51.696 -74.875 -51.680 -74.974 -51.775 -74.972 -51.862 -75.019 -51.957 -74.971 ; #1853 8 -51.051 -74.270 -51.035 -74.186 -50.948 -74.217 -50.861 -74.247 -50.784 -74.317 -50.871 -74.310 -50.966 -74.297 -51.053 -74.277 ; #1854 8 -51.971 -74.867 -51.971 -74.857 -51.884 -74.756 -51.797 -74.710 -51.702 -74.648 -51.702 -74.769 -51.797 -74.820 -51.884 -74.834 -51.971 -74.869 ; #1855 8 -52.155 -74.746 -52.139 -74.692 -52.052 -74.689 -52.068 -74.810 -52.060 -74.915 -52.102 -74.832 ; #1856 8 -51.285 -74.125 -51.243 -74.098 -51.156 -74.139 -51.156 -74.249 -51.243 -74.208 ; #1857 8 -51.789 -74.167 -51.720 -74.132 -51.667 -74.219 -51.643 -74.313 -51.575 -74.379 -51.567 -74.484 -51.643 -74.423 -51.730 -74.359 -51.754 -74.255 ; #1858 8 -52.024 -74.770 -52.024 -74.761 -51.937 -74.714 ; #1859 8 -51.207 -74.065 -51.156 -73.935 -51.069 -73.966 -51.120 -74.108 -51.207 -74.067 ; #1860 8 -51.633 -74.020 -51.591 -73.918 -51.530 -73.989 -51.443 -74.020 -51.384 -74.092 -51.480 -74.133 -51.567 -74.199 -51.635 -74.024 ; #1861 8 -51.207 -73.781 -51.120 -73.746 -51.093 -73.839 -51.180 -73.874 ; #1862 8 -52.222 -74.136 -52.230 -74.111 -52.143 -73.944 -52.093 -74.022 -52.034 -74.094 -51.983 -74.182 -51.941 -74.265 -51.991 -74.408 -51.983 -74.282 -52.034 -74.204 -52.084 -74.116 -52.076 -74.232 -52.163 -74.221 -52.222 -74.139 ; #1863 8 -53.144 -73.439 -53.144 -73.374 -53.171 -73.280 -53.154 -73.148 -53.120 -73.247 -53.059 -73.319 -53.009 -73.397 -52.974 -73.497 -53.061 -73.465 -53.037 -73.561 -52.950 -73.569 -52.899 -73.658 -52.986 -73.616 -52.934 -73.693 -52.910 -73.799 -52.849 -73.870 -52.833 -73.971 -52.798 -74.060 -52.798 -74.181 -52.790 -74.287 -52.774 -74.388 -52.697 -74.459 -52.636 -74.530 -52.604 -74.630 -52.612 -74.757 -52.654 -74.663 -52.697 -74.570 -52.784 -74.572 -52.819 -74.484 -52.877 -74.401 -52.936 -74.328 -52.920 -74.196 -52.946 -74.102 -52.920 -73.963 -52.928 -73.858 -52.978 -73.768 -53.013 -73.680 -53.073 -73.608 -53.160 -73.576 -53.152 -73.449 ; #1864 8 -51.971 -74.151 -51.928 -74.123 -51.928 -74.244 ; #1865 8 -51.649 -73.789 -51.607 -73.762 -51.556 -73.840 -51.530 -73.943 -51.599 -73.867 ; #1866 8 -52.058 -73.722 -52.026 -73.701 -51.939 -73.743 -51.870 -73.809 -51.827 -73.902 -51.785 -73.984 -51.769 -74.095 -51.864 -74.046 -51.898 -73.958 -51.941 -73.864 -51.991 -73.786 -52.060 -73.720 ; #1867 8 -51.736 -73.859 -51.694 -73.831 -51.694 -73.941 ; #1868 8 -52.222 -73.841 -52.205 -73.753 -52.118 -73.774 -52.068 -73.852 -52.034 -73.950 -52.034 -74.060 -52.093 -73.988 -52.143 -73.900 -52.220 -73.840 ; #1869 8 -51.839 -73.802 -51.797 -73.731 -51.754 -73.824 -51.841 -73.806 ; #1870 8 -52.040 -73.854 -51.997 -73.827 -52.006 -73.953 ; #1871 8 -52.562 -73.914 -52.546 -73.860 -52.459 -73.749 -52.372 -73.737 -52.276 -73.709 -52.260 -73.809 -52.347 -73.940 -52.434 -73.976 -52.469 -73.887 -52.564 -73.915 ; #1872 8 -53.084 -74.044 -53.067 -74.122 -53.154 -74.212 -53.086 -74.046 ; #1873 8 -52.944 -73.865 -52.968 -73.881 -53.002 -73.792 ; #1874 8 -52.788 -73.408 -52.738 -73.385 -52.703 -73.474 -52.695 -73.580 -52.729 -73.713 -52.713 -73.591 -52.729 -73.491 ; #1875 8 -51.884 -73.115 -51.815 -72.951 -51.728 -72.915 -51.797 -73.070 ; #1876 8 -53.423 -73.833 -53.336 -73.698 -53.336 -73.821 -53.423 -73.835 ; #1877 8 -53.221 -73.411 -53.229 -73.471 -53.237 -73.587 -53.324 -73.555 -53.298 -73.661 -53.281 -73.762 -53.314 -73.671 -53.357 -73.577 -53.314 -73.438 -53.219 -73.407 ; #1878 8 -53.961 -72.796 -53.927 -72.719 -53.903 -72.581 -53.852 -72.437 -53.826 -72.308 -53.767 -72.382 -53.680 -72.305 -53.696 -72.204 -53.609 -72.192 -53.551 -72.266 -53.535 -72.368 -53.518 -72.479 -53.431 -72.423 -53.431 -72.545 -53.405 -72.640 -53.492 -72.686 -53.405 -72.718 -53.371 -72.807 -53.458 -72.895 -53.371 -72.937 -53.312 -73.011 -53.225 -73.033 -53.259 -73.166 -53.346 -73.155 -53.338 -73.272 -53.346 -73.389 -53.397 -73.310 -53.474 -73.248 -53.490 -73.136 -53.506 -73.035 -53.506 -73.157 -53.490 -73.259 -53.421 -73.336 -53.413 -73.442 -53.500 -73.598 -53.500 -73.475 -53.587 -73.511 -53.555 -73.368 -53.547 -73.251 -53.634 -73.243 -53.808 -73.288 -53.824 -73.186 -53.797 -73.057 -53.711 -72.990 -53.694 -72.869 -53.686 -72.741 -53.711 -72.645 -53.797 -72.813 -53.866 -72.734 -53.901 -72.869 -53.925 -73.007 -53.933 -72.890 -53.968 -72.800 ; #1879 8 -53.961 -73.244 -53.903 -73.206 -53.860 -73.291 -53.903 -73.441 -53.895 -73.324 -53.963 -73.246 ; #1880 8 -53.901 -72.265 -53.909 -72.335 -53.996 -72.346 -54.030 -72.481 -54.080 -72.401 -54.046 -72.257 -53.959 -72.179 ; #1881 8 -54.256 -72.426 -54.198 -72.378 -54.190 -72.260 -54.147 -72.345 -54.190 -72.495 -54.259 -72.427 ; #1882 8 -53.682 -72.023 -53.666 -72.013 -53.718 -72.158 -53.684 -72.025 ; #1883 8 -53.769 -71.641 -53.735 -71.674 -53.794 -71.823 -53.707 -71.856 -53.698 -71.963 -53.785 -72.073 -53.812 -72.202 -53.906 -72.188 -53.899 -72.071 -53.986 -72.058 -54.020 -71.968 -54.052 -71.877 -54.147 -71.938 -54.131 -71.816 -54.044 -71.718 -53.993 -71.798 -53.906 -71.854 -53.965 -71.780 -53.949 -71.657 -53.854 -71.672 -53.767 -71.638 ; #1884 8 -54.125 -72.106 -54.117 -72.101 -54.048 -72.179 ; #1885 8 -54.299 -72.195 -54.283 -72.185 -54.275 -72.292 -54.301 -72.196 ; #1886 8 -54.265 -72.105 -54.188 -72.045 -54.204 -72.178 -54.263 -72.103 ; #1887 8 -53.838 -71.250 -53.814 -71.290 -53.822 -71.417 -53.796 -71.513 -53.803 -71.630 -53.890 -71.596 -53.977 -71.662 -54.064 -71.606 -54.038 -71.466 -53.943 -71.375 -54.038 -71.401 -54.055 -71.289 -54.062 -71.182 -54.149 -71.258 -54.123 -71.118 -54.080 -70.969 -53.986 -70.998 -53.899 -71.031 -53.915 -71.153 -54.002 -71.188 -53.933 -71.267 ; #1888 8 -54.576 -71.923 -54.517 -71.875 -54.491 -71.970 -54.578 -71.927 ; #1889 8 -54.064 -71.428 -54.097 -71.470 -54.149 -71.391 -54.062 -71.424 ; #1890 8 -54.769 -70.988 -54.700 -70.912 -54.700 -71.025 -54.657 -71.111 -54.657 -71.223 -54.673 -71.346 -54.760 -71.336 -54.691 -71.179 -54.707 -71.067 -54.769 -70.993 ; #1891 8 -55.022 -70.452 -55.005 -70.395 -54.910 -70.303 -54.936 -70.206 -54.849 -70.228 -54.857 -70.346 -54.841 -70.459 -54.825 -70.572 -54.809 -70.438 -54.722 -70.308 -54.730 -70.436 -54.789 -70.586 -54.772 -70.699 -54.756 -70.812 -54.772 -70.935 -54.867 -70.906 -54.876 -70.799 -54.867 -70.670 -54.894 -70.574 -54.936 -70.477 -55.024 -70.458 ; #1892 8 -54.099 -70.250 -54.040 -70.202 -54.014 -70.309 -54.048 -70.443 -54.075 -70.347 ; #1893 8 -54.734 -69.932 -54.821 -70.076 -54.787 -69.942 -54.736 -69.931 ; #1894 8 -55.057 -69.979 -55.032 -69.962 -54.997 -70.050 ; #1895 8 -55.084 -69.977 -55.076 -69.982 -55.068 -70.089 ; #1896 8 -54.855 -69.838 -54.847 -69.720 -54.847 -69.597 -54.831 -69.474 -54.815 -69.340 -54.754 -69.179 -54.738 -69.282 -54.730 -69.400 -54.714 -69.503 -54.774 -69.654 -54.732 -69.750 -54.774 -69.889 -54.861 -69.845 ; #1897 8 -55.119 -69.920 -55.136 -70.001 -55.188 -69.923 -55.117 -69.916 ; #1898 8 -55.226 -69.645 -55.174 -69.608 -55.165 -69.715 ; #1899 8 -55.279 -69.457 -55.254 -69.440 -55.227 -69.534 ; #1900 8 -54.916 -66.990 -54.881 -67.001 -54.813 -67.072 -54.770 -67.159 -54.744 -67.266 -54.736 -67.385 -54.736 -67.497 -54.744 -67.615 -54.736 -67.723 -54.736 -67.846 -54.728 -67.954 -54.728 -68.077 -54.815 -68.253 -54.799 -68.121 -54.886 -68.098 -54.973 -68.086 -55.051 -68.024 -55.034 -67.889 -55.034 -67.776 -55.059 -67.680 -55.068 -67.799 -55.068 -67.686 -55.076 -67.568 -54.987 -67.488 -55.003 -67.385 -55.093 -67.379 -55.119 -67.284 -55.093 -67.142 -55.003 -67.027 -54.916 -66.996 ; #1901 8 -55.442 -67.666 -55.362 -67.533 -55.354 -67.641 -55.444 -67.670 ; #1902 8 -55.726 -67.564 -55.656 -67.505 -55.648 -67.624 -55.681 -67.760 -55.681 -67.647 -55.724 -67.563 ; #1903 8 -54.813 -66.948 -54.847 -66.980 -54.872 -66.871 -54.879 -66.763 -54.837 -66.850 ; #1904 8 -55.049 -66.801 -55.040 -66.829 -55.111 -66.989 -55.144 -66.898 -55.136 -66.780 -55.047 -66.797 ; #1905 8 -55.718 -67.196 -55.674 -67.166 -55.683 -67.286 ; #1906 8 -55.737 -67.050 -55.720 -67.028 -55.649 -67.094 -55.739 -67.054 ; #1907 8 -55.101 -66.509 -55.084 -66.443 -54.995 -66.404 -55.011 -66.539 ; #1908 8 65.427 -23.916 65.436 -23.809 65.483 -23.690 65.492 -23.569 65.530 -23.458 65.501 -23.322 65.598 -23.232 65.560 -23.082 65.607 -22.974 65.589 -22.955 65.616 -22.840 65.519 -22.794 65.567 -22.674 65.625 -22.570 65.528 -22.524 65.546 -22.406 65.546 -22.281 65.602 -22.176 65.537 -22.278 65.490 -22.397 65.443 -22.245 65.548 -22.157 65.463 -22.002 65.454 -21.862 65.472 -21.744 65.454 -21.787 65.445 -21.909 65.406 -22.020 65.368 -22.143 65.330 -22.254 65.312 -22.384 65.256 -22.489 65.179 -22.587 65.179 -22.462 65.152 -22.316 65.142 -22.189 65.134 -22.061 65.172 -21.939 65.154 -21.808 65.057 -21.899 65.048 -22.020 65.057 -22.046 65.048 -22.179 65.066 -22.309 65.075 -22.437 65.075 -22.561 65.018 -22.677 65.075 -22.821 65.018 -22.926 65.028 -23.053 64.945 -23.149 65.039 -23.230 64.975 -23.344 64.975 -23.468 64.947 -23.594 64.921 -23.709 64.947 -23.842 64.947 -23.978 64.874 -24.076 64.781 -23.984 64.764 -23.854 64.764 -23.718 64.837 -23.619 64.820 -23.489 64.857 -23.378 64.839 -23.237 64.831 -23.098 64.831 -22.850 64.794 -22.714 64.831 -22.591 64.831 -22.467 64.738 -22.352 64.764 -22.237 64.755 -22.246 64.710 -22.367 64.617 -22.408 64.581 -22.272 64.488 -22.207 64.505 -22.190 64.559 -22.072 64.585 -21.957 64.641 -21.791 64.658 -21.748 64.675 -21.618 64.675 -21.581 64.622 -21.638 64.613 -21.647 64.630 -21.761 64.585 -21.831 64.568 -21.836 64.551 -21.954 64.514 -22.029 64.421 -22.033 64.421 -21.898 64.404 -22.027 64.351 -22.133 64.342 -22.007 64.370 -21.892 64.423 -21.786 64.441 -21.669 64.415 -21.526 64.406 -21.595 64.389 -21.713 64.352 -21.824 64.279 -21.935 64.214 -21.791 64.206 -21.800 64.206 -21.923 64.214 -22.049 64.206 -22.081 64.113 -22.039 64.096 -22.156 64.079 -22.285 64.062 -22.402 64.034 -22.528 64.116 -22.678 64.053 -22.780 63.952 -22.758 63.859 -22.738 63.868 -22.619 63.894 -22.493 63.911 -22.376 63.894 -22.236 63.885 -22.110 63.894 -21.990 63.902 -21.910 63.919 -21.793 63.883 -21.659 63.892 -21.539 63.900 -21.407 63.973 -21.344 64.002 -21.219 63.993 -21.094 63.984 -21.114 63.892 -21.119 63.874 -20.991 63.847 -20.847 63.919 -20.747 63.911 -20.722 63.810 -20.691 63.819 -20.816 63.782 -20.682 63.819 -20.571 63.892 -20.459 63.883 -20.456 63.782 -20.354 63.790 -20.394 63.754 -20.516 63.653 -20.388 63.599 -20.249 63.607 -20.129 63.607 -20.118 63.599 -20.056 63.599 -19.862 63.571 -19.731 63.545 -19.601 63.517 -19.459 63.500 -19.346 63.482 -19.218 63.474 -19.093 63.474 -18.971 63.456 -18.844 63.465 -18.724 63.482 -18.596 63.500 -18.478 63.517 -18.349 63.525 -18.255 63.525 -18.244 63.553 -18.143 63.579 -18.017 63.661 -17.918 63.679 -17.994 63.713 -17.881 63.730 -18.008 63.776 -17.898 63.758 -17.760 63.803 -17.650 63.803 -17.527 63.821 -17.435 63.829 -17.366 63.838 -17.320 63.838 -17.197 63.866 -17.070 63.959 -17.025 63.941 -16.997 63.848 -16.960 63.866 -16.842 63.902 -16.729 63.928 -16.602 63.965 -16.489 64.019 -16.380 64.047 -16.365 64.092 -16.243 64.128 -16.130 64.174 -16.007 64.199 -15.890 64.236 -15.777 64.264 -15.650 64.299 -15.535 64.380 -15.433 64.380 -15.421 64.318 -15.297 64.327 -15.175 64.290 -15.031 64.363 -14.926 64.372 -14.917 64.417 -14.805 64.425 -14.683 64.471 -14.571 64.488 -14.564 64.581 -14.504 64.606 -14.635 64.680 -14.529 64.697 -14.398 64.789 -14.481 64.708 -14.337 64.717 -14.204 64.798 -14.100 64.807 -13.978 64.807 -13.904 64.841 -14.010 64.906 -13.902 64.923 -14.041 64.923 -13.906 64.940 -13.786 64.975 -13.919 65.012 -14.052 65.030 -14.181 65.066 -14.066 65.039 -13.923 64.983 -13.785 64.992 -13.663 65.068 -13.547 65.165 -13.571 65.194 -13.715 65.194 -13.975 65.204 -13.853 65.212 -13.731 65.271 -13.622 65.280 -13.662 65.289 -13.789 65.289 -13.913 65.280 -14.036 65.307 -13.918 65.366 -13.808 65.431 -13.689 65.528 -13.714 65.519 -13.836 65.616 -13.998 65.616 -14.124 65.634 -14.253 65.634 -14.401 65.499 -14.615 65.528 -14.599 65.594 -14.492 65.602 -14.471 65.688 -14.369 65.785 -14.395 65.776 -14.518 65.758 -14.638 65.740 -14.770 65.731 -14.893 65.731 -14.904 65.837 -14.858 65.875 -14.743 65.972 -14.670 66.069 -14.780 66.042 -14.899 66.052 -15.039 66.148 -15.191 66.166 -15.058 66.196 -15.005 66.301 -15.034 66.319 -14.902 66.349 -14.783 66.387 -14.668 66.378 -14.792 66.396 -14.923 66.358 -15.049 66.293 -15.157 66.274 -15.278 66.256 -15.399 66.150 -15.443 66.177 -15.489 66.245 -15.634 66.311 -15.789 66.408 -15.805 66.505 -15.959 66.543 -16.108 66.543 -16.234 66.495 -16.347 66.525 -16.494 66.466 -16.603 66.360 -16.548 66.263 -16.481 66.236 -16.512 66.198 -16.626 66.101 -16.648 66.157 -16.776 66.139 -16.908 66.204 -17.053 66.204 -17.064 66.222 -17.196 66.175 -17.307 66.099 -17.410 66.002 -17.493 65.916 -17.603 65.981 -17.661 66.078 -17.790 66.117 -17.928 66.146 -17.960 66.164 -18.091 66.173 -18.220 66.173 -18.357 66.076 -18.362 65.979 -18.297 65.882 -18.142 65.776 -18.133 65.679 -18.103 65.641 -18.114 65.717 -18.199 65.814 -18.252 65.911 -18.343 65.959 -18.483 66.056 -18.575 66.153 -18.690 66.200 -18.842 66.191 -18.965 66.191 -18.989 66.162 -19.105 66.065 -19.098 66.083 -19.229 66.083 -19.366 66.024 -19.473 65.927 -19.489 65.830 -19.423 65.724 -19.462 65.724 -19.485 65.733 -19.575 65.733 -19.587 65.781 -19.687 65.878 -19.805 65.945 -19.953 66.042 -20.020 66.119 -20.145 66.128 -20.209 66.099 -20.325 66.052 -20.435 65.955 -20.414 65.848 -20.329 65.751 -20.285 65.654 -20.291 65.616 -20.340 65.519 -20.407 65.575 -20.474 65.478 -20.480 65.497 -20.559 65.562 -20.653 65.659 -20.746 65.612 -20.856 65.535 -20.955 65.438 -20.983 65.341 -20.974 65.438 -21.091 65.341 -21.070 65.244 -21.109 65.138 -21.073 65.224 -21.140 65.321 -21.185 65.418 -21.206 65.456 -21.343 65.438 -21.474 65.485 -21.353 65.582 -21.375 65.630 -21.516 65.659 -21.663 65.765 -21.749 65.679 -21.583 65.670 -21.455 65.767 -21.389 65.853 -21.281 65.950 -21.375 65.950 -21.425 65.959 -21.554 66.015 -21.448 66.083 -21.608 66.083 -21.734 66.189 -21.806 66.254 -21.954 66.284 -22.091 66.284 -22.217 66.380 -22.313 66.410 -22.449 66.457 -22.592 66.410 -22.713 66.457 -22.857 66.428 -22.972 66.398 -23.099 66.301 -23.076 66.293 -22.947 66.301 -22.824 66.284 -22.679 66.254 -22.532 66.254 -22.406 66.236 -22.525 66.236 -22.651 66.254 -22.795 66.157 -22.886 66.121 -22.747 66.103 -22.615 66.006 -22.454 65.909 -22.432 65.909 -22.558 65.813 -22.634 65.841 -22.633 65.948 -22.583 66.045 -22.690 65.988 -22.808 65.941 -22.916 66.038 -22.913 65.990 -23.033 66.087 -22.995 66.135 -23.138 66.173 -23.278 66.191 -23.422 66.173 -23.541 66.135 -23.551 66.097 -23.411 66.049 -23.519 65.983 -23.369 66.031 -23.512 66.049 -23.645 66.067 -23.777 65.961 -23.738 65.905 -23.592 65.886 -23.460 65.848 -23.320 65.858 -23.449 65.866 -23.578 65.905 -23.717 65.819 -23.822 65.772 -23.679 65.744 -23.544 65.754 -23.411 65.736 -23.279 65.727 -23.412 65.709 -23.531 65.670 -23.430 65.670 -23.305 65.632 -23.428 65.679 -23.570 65.717 -23.709 65.756 -23.849 65.783 -23.995 65.765 -24.114 65.668 -24.006 65.620 -23.863 65.582 -23.974 65.526 -23.828 65.555 -23.964 65.582 -24.098 65.620 -24.237 65.582 -24.360 65.485 -24.423 65.485 -24.161 65.458 -24.015 65.400 -23.869 ; #1909 8 64.251 -15.620 64.260 -15.488 64.268 -15.367 64.260 -15.230 64.277 -15.369 64.268 -15.490 ; #1910 8 51.781 3.815 51.773 3.705 51.730 3.817 51.672 3.917 51.672 4.027 51.696 4.091 51.704 4.090 51.712 4.069 51.771 3.957 51.779 3.846 51.779 3.815 ; #1911 8 53.033 4.743 53.041 4.764 53.118 4.872 53.205 4.825 53.118 4.717 53.031 4.741 ; #1912 8 53.310 4.989 53.326 4.988 53.250 4.880 ; #1913 8 53.389 5.186 53.415 5.296 53.442 5.417 53.484 5.527 53.468 5.416 53.444 5.305 53.391 5.186 ; #1914 8 53.466 5.673 53.474 5.785 53.509 5.905 53.500 5.784 ; #1915 8 13.126 -87.647 13.086 -87.680 13.002 -87.755 12.919 -87.671 12.879 -87.572 12.795 -87.507 12.712 -87.432 12.629 -87.328 12.546 -87.244 12.530 -87.187 12.497 -87.166 12.465 -87.154 12.399 -87.043 12.333 -86.941 12.267 -86.839 12.244 -86.828 12.161 -86.792 12.078 -86.746 12.053 -86.726 11.969 -86.680 11.921 -86.628 11.838 -86.582 11.790 -86.511 11.706 -86.436 11.666 -86.356 11.600 -86.255 11.526 -86.172 11.443 -86.088 11.370 -85.985 11.286 -85.913 11.203 -85.867 11.163 -85.768 11.286 -85.696 11.294 -85.688 11.236 -85.579 11.203 -85.480 11.188 -85.384 11.147 -85.296 11.122 -85.246 11.091 -85.149 11.066 -85.082 11.033 -84.983 11.081 -84.885 11.122 -84.823 11.147 -84.722 11.107 -84.623 11.041 -84.494 11.081 -84.443 10.998 -84.369 10.907 -84.305 10.866 -84.274 10.866 -84.247 10.851 -84.151 10.836 -84.045 10.804 -84.016 10.828 -83.923 10.861 -83.852 10.876 -83.759 10.967 -83.750 11.008 -83.736 11.031 -83.814 11.039 -83.815 11.122 -83.878 11.155 -83.899 11.238 -83.934 11.321 -83.951 11.404 -83.960 11.495 -83.943 11.579 -83.867 11.745 -83.752 11.911 -83.787 11.903 -83.890 11.987 -83.889 12.070 -83.851 12.153 -83.833 12.236 -83.824 12.153 -83.824 12.070 -83.778 12.153 -83.787 12.236 -83.786 12.319 -83.777 12.403 -83.759 12.443 -83.839 12.526 -83.830 12.610 -83.884 12.642 -83.793 12.698 -83.694 12.782 -83.720 12.873 -83.756 12.888 -83.683 12.805 -83.666 12.722 -83.666 12.638 -83.684 12.614 -83.737 12.530 -83.719 12.447 -83.711 12.463 -83.686 12.478 -83.584 12.561 -83.601 12.644 -83.636 12.728 -83.645 12.894 -83.624 12.977 -83.606 13.043 -83.621 13.126 -83.638 13.209 -83.647 13.293 -83.664 13.383 -83.664 13.466 -83.655 13.540 -83.645 13.623 -83.616 13.631 -83.617 13.714 -83.617 13.880 -83.578 14.047 -83.520 14.130 -83.433 14.213 -83.386 14.229 -83.370 14.312 -83.314 14.403 -83.286 14.486 -83.304 14.527 -83.308 14.557 -83.319 14.724 -83.374 14.798 -83.419 14.864 -83.472 14.947 -83.454 14.906 -83.355 14.997 -83.309 15.053 -83.222 15.053 -83.239 15.045 -83.334 15.061 -83.431 15.053 -83.525 15.045 -83.542 15.005 -83.631 14.948 -83.721 14.916 -83.813 14.867 -83.903 14.867 -84.007 14.826 -84.098 14.802 -84.191 14.786 -84.245 14.819 -84.343 14.819 -84.352 14.778 -84.443 14.705 -84.531 14.728 -84.628 14.743 -84.725 14.800 -84.835 14.883 -84.881 14.875 -84.985 14.809 -85.073 14.794 -85.089 14.753 -85.112 14.670 -85.103 14.637 -85.127 14.629 -85.143 14.573 -85.233 14.490 -85.280 14.407 -85.244 14.366 -85.304 14.358 -85.399 14.275 -85.485 14.192 -85.552 14.119 -85.640 14.119 -85.657 14.060 -85.746 13.987 -85.834 13.904 -85.834 13.919 -85.873 13.993 -85.976 14.041 -86.076 14.115 -86.179 14.082 -86.214 13.998 -86.289 13.832 -86.462 13.840 -86.558 13.855 -86.655 13.848 -86.663 13.848 -86.758 13.825 -86.860 13.784 -86.855 13.710 -86.839 13.627 -86.839 13.544 -86.821 13.511 -86.809 13.438 -86.792 13.355 -86.821 13.339 -86.846 13.379 -86.917 13.321 -87.006 13.238 -87.006 13.155 -87.035 13.140 -87.042 13.107 -87.065 13.084 -87.157 13.076 -87.203 13.076 -87.298 13.068 -87.393 13.002 -87.386 12.994 -87.449 13.020 -87.546 13.103 -87.593 13.144 -87.673 ; #1916 8 -45.639 -74.284 -45.580 -74.169 -45.546 -74.266 -45.639 -74.286 ; #1917 8 -51.283 -74.729 -51.275 -74.713 -51.207 -74.700 -51.214 -74.705 ; #1918 8 -51.212 -74.703 -51.205 -74.698 -51.188 -74.698 -51.214 -74.705 ; #1919 8 -52.040 -72.829 -51.945 -72.833 -52.040 -72.883 ; #1920 8 -53.136 -70.481 -53.197 -70.454 -53.221 -70.358 -53.281 -70.274 -53.281 -70.163 -53.213 -70.009 -53.187 -69.948 -53.178 -69.821 -53.162 -69.700 -53.154 -69.583 -53.162 -69.477 -53.178 -69.376 -53.265 -69.354 -53.352 -69.439 -53.413 -69.588 -53.455 -69.736 -53.480 -69.863 -53.514 -69.996 -53.531 -70.027 -53.607 -70.187 -53.694 -70.142 -53.789 -70.103 -53.876 -70.069 -53.937 -69.995 -53.945 -69.932 -53.988 -69.847 -54.014 -69.740 -54.022 -69.633 -54.056 -69.542 -54.089 -69.440 -54.115 -69.334 -54.149 -69.243 -54.192 -69.157 -54.208 -69.054 -54.269 -68.970 -54.269 -69.024 -54.285 -69.147 -54.372 -69.133 -54.337 -69.223 -54.424 -69.377 -54.337 -69.268 -54.251 -69.235 -54.216 -69.336 -54.174 -69.422 -54.208 -69.556 -54.149 -69.642 -54.115 -69.733 -54.131 -69.855 -54.200 -69.786 -54.287 -69.775 -54.229 -69.851 -54.176 -69.930 -54.089 -69.975 -54.073 -70.020 -54.142 -70.175 -54.229 -70.130 -54.176 -70.209 -54.143 -70.312 -54.109 -70.413 -54.082 -70.508 -54.048 -70.610 -54.016 -70.701 -53.990 -70.797 -53.973 -70.899 -54.060 -70.854 -54.085 -70.757 -54.085 -70.645 -54.101 -70.543 -54.188 -70.476 -54.247 -70.400 -54.281 -70.299 -54.315 -70.198 -54.358 -70.112 -54.374 -70.235 -54.323 -70.316 -54.289 -70.416 -54.247 -70.513 -54.238 -70.620 -54.325 -70.675 -54.412 -70.630 -54.412 -70.743 -54.325 -70.709 -54.230 -70.669 -54.143 -70.649 -54.135 -70.756 -54.151 -70.878 -54.238 -70.912 -54.325 -71.056 -54.265 -71.141 -54.232 -71.232 -54.265 -71.376 -54.265 -71.499 -54.240 -71.595 -54.327 -71.562 -54.267 -71.646 -54.283 -71.769 -54.291 -71.662 -54.386 -71.681 -54.362 -71.777 -54.301 -71.862 -54.293 -71.979 -54.380 -71.913 -54.467 -71.913 -54.433 -71.779 -54.424 -71.661 -54.459 -71.560 -54.467 -71.452 -54.433 -71.318 -54.337 -71.299 -54.406 -71.231 -54.493 -71.231 -54.501 -71.113 -54.414 -71.003 -54.501 -70.969 -54.588 -71.004 -54.572 -70.881 -54.556 -70.758 -54.479 -70.597 -54.506 -70.491 -54.564 -70.640 -54.633 -70.797 -54.649 -70.694 -54.590 -70.544 -54.615 -70.447 -54.615 -70.324 -54.528 -70.214 -54.615 -70.290 -54.667 -70.210 -54.598 -70.044 -54.649 -69.963 -54.572 -69.970 -54.540 -69.970 -54.548 -69.944 -54.635 -69.886 -54.574 -69.735 -54.550 -69.607 -54.637 -69.617 -54.671 -69.526 -54.687 -69.413 -54.703 -69.310 -54.720 -69.207 -54.754 -69.106 -54.754 -68.880 -54.693 -68.730 -54.659 -68.821 -54.590 -68.891 -54.633 -68.805 -54.657 -68.697 -54.700 -68.610 -54.613 -68.601 -54.596 -68.601 -54.538 -68.610 -54.364 -68.615 -54.329 -68.615 -54.287 -68.620 -54.192 -68.616 -53.759 -68.629 -53.682 -68.626 -53.595 -68.628 -53.500 -68.624 -53.239 -68.630 -53.144 -68.627 -53.144 -68.637 -53.049 -68.633 -52.875 -68.639 -52.859 -68.629 -52.833 -68.633 -52.764 -68.622 -52.703 -68.629 -52.616 -68.630 -52.521 -68.627 -52.479 -68.622 -52.471 -68.650 -52.462 -68.656 -52.410 -68.735 -52.436 -68.861 -52.487 -69.003 -52.521 -69.135 -52.479 -69.230 -52.410 -69.309 -52.341 -69.377 -52.315 -69.472 -52.323 -69.497 -52.410 -69.626 -52.497 -69.648 -52.584 -69.722 -52.592 -69.727 -52.624 -69.869 -52.659 -70.001 -52.642 -70.035 -52.574 -70.113 -52.558 -70.214 -52.608 -70.357 -52.651 -70.262 -52.709 -70.187 -52.762 -70.108 -52.849 -70.206 -52.873 -70.343 -52.778 -70.349 -52.873 -70.451 -52.960 -70.441 -53.047 -70.475 -53.134 -70.462 ; #1921 8 64.400 -21.515 64.400 -21.455 64.408 -21.397 64.400 -21.518 ; #1922 8 6.984 -11.520 6.918 -11.455 6.835 -11.408 6.744 -11.370 6.711 -11.275 6.663 -11.170 6.647 -11.113 6.607 -11.017 6.550 -10.923 6.467 -10.838 6.460 -10.829 6.467 -10.794 6.452 -10.820 6.444 -10.828 6.361 -10.827 6.305 -10.732 6.289 -10.677 6.257 -10.582 6.241 -10.478 6.225 -10.403 6.142 -10.308 6.059 -10.223 6.003 -10.119 5.995 -10.110 5.912 -10.063 5.897 -10.045 5.730 -9.854 5.647 -9.778 5.581 -9.674 5.533 -9.627 5.442 -9.532 5.359 -9.476 5.276 -9.380 5.202 -9.276 5.136 -9.181 5.078 -9.085 5.038 -8.981 4.989 -8.886 4.923 -8.792 4.900 -8.756 4.867 -8.662 4.827 -8.567 4.754 -8.463 4.730 -8.369 4.656 -8.274 4.649 -8.171 4.616 -8.076 4.583 -7.981 4.550 -7.898 4.477 -7.803 4.461 -7.777 4.445 -7.682 4.453 -7.579 4.519 -7.596 4.560 -7.606 4.817 -7.607 4.908 -7.636 4.941 -7.627 5.024 -7.582 5.107 -7.600 5.198 -7.546 5.281 -7.519 5.365 -7.520 5.357 -7.464 5.380 -7.447 5.463 -7.466 5.554 -7.467 5.638 -7.450 5.721 -7.451 5.728 -7.460 5.819 -7.488 5.903 -7.526 5.976 -7.621 6.032 -7.716 6.040 -7.811 6.123 -7.829 6.206 -7.905 6.289 -7.880 6.363 -7.975 6.396 -8.070 6.363 -8.173 6.388 -8.268 6.436 -8.372 6.436 -8.466 6.528 -8.439 6.520 -8.533 6.543 -8.571 6.593 -8.655 6.601 -8.655 6.684 -8.581 6.733 -8.487 6.757 -8.462 6.848 -8.388 6.932 -8.371 7.015 -8.381 7.098 -8.345 7.189 -8.354 7.272 -8.373 7.355 -8.420 7.446 -8.459 7.529 -8.460 7.613 -8.495 7.638 -8.525 7.704 -8.609 7.769 -8.601 7.769 -8.618 7.777 -8.722 7.686 -8.758 7.638 -8.767 7.555 -8.783 7.471 -8.866 7.380 -8.883 7.365 -8.977 7.324 -9.032 7.291 -9.126 7.276 -9.154 7.359 -9.173 7.442 -9.238 7.491 -9.333 7.498 -9.341 7.468 -9.445 7.442 -9.519 7.475 -9.511 7.566 -9.457 7.649 -9.421 7.740 -9.422 7.824 -9.396 7.907 -9.444 7.997 -9.471 8.081 -9.455 8.139 -9.473 8.114 -9.501 8.197 -9.493 8.280 -9.559 8.371 -9.551 8.396 -9.560 8.429 -9.523 8.495 -9.618 8.568 -9.723 8.642 -9.807 8.576 -9.910 8.576 -9.928 8.520 -10.022 8.520 -10.031 8.593 -10.135 8.578 -10.229 8.570 -10.295 8.537 -10.295 8.497 -10.303 8.406 -10.320 8.323 -10.347 8.240 -10.364 8.224 -10.458 8.199 -10.553 8.116 -10.635 7.858 -10.632 7.818 -10.726 7.734 -10.789 7.643 -10.862 7.628 -10.880 7.587 -10.974 7.514 -11.067 7.498 -11.076 7.433 -11.159 7.350 -11.215 7.316 -11.309 7.226 -11.382 7.143 -11.399 7.109 -11.407 7.019 -11.481 7.019 -11.510 ; #1923 8 65.212 -13.954 65.212 -13.965 65.204 -14.036 ; #1924 8 51.356 3.355 51.314 3.378 51.288 3.455 51.330 3.563 51.322 3.673 51.261 3.797 51.253 3.851 51.253 3.860 51.269 3.969 51.286 4.012 51.320 4.121 51.389 4.227 51.396 4.117 51.439 4.005 51.396 3.887 51.389 3.777 51.415 3.666 51.441 3.555 51.441 3.468 51.415 3.359 51.356 3.353 ; #1925 8 51.633 3.861 51.633 3.553 51.547 3.448 51.478 3.561 51.494 3.670 51.435 3.783 51.435 3.893 51.478 4.001 51.469 4.011 51.437 4.123 51.411 4.234 51.411 4.420 51.506 4.437 51.463 4.536 51.463 4.656 51.514 4.708 51.455 4.753 51.455 4.863 51.472 4.983 51.514 5.025 51.498 5.056 51.411 5.070 51.352 5.182 51.300 5.214 51.300 5.367 51.316 5.420 51.255 5.542 51.247 5.576 51.223 5.686 51.206 5.797 51.190 5.828 51.130 5.776 51.043 5.748 50.992 5.740 50.923 5.656 50.897 5.613 50.871 5.624 50.855 5.668 50.847 5.679 50.804 5.670 50.804 5.703 50.812 5.756 50.796 5.876 50.804 5.985 50.812 5.985 50.855 5.994 50.881 5.983 50.889 6.003 50.923 6.055 50.956 6.034 50.990 5.980 51.077 5.923 51.154 6.041 51.241 6.048 51.284 6.067 51.371 6.162 51.421 6.191 51.437 6.190 51.488 6.179 51.575 6.143 51.749 6.007 51.783 5.919 51.815 5.952 51.850 5.929 51.858 5.919 51.892 6.029 51.868 6.140 51.936 6.107 51.936 6.117 51.902 6.205 51.886 6.316 51.886 6.437 51.920 6.546 51.945 6.656 51.961 6.766 51.969 6.775 52.056 6.719 52.143 6.738 52.151 6.835 52.238 6.944 52.246 6.954 52.262 7.020 52.331 7.009 52.339 7.009 52.347 7.018 52.434 7.006 52.458 6.907 52.485 6.796 52.527 6.674 52.561 6.673 52.648 6.692 52.665 6.722 52.673 6.799 52.665 6.910 52.665 7.021 52.752 7.030 52.768 7.040 52.855 7.058 52.863 7.058 52.932 7.121 53.019 7.174 53.193 7.170 53.201 7.180 53.259 7.168 53.268 7.057 53.328 6.944 53.328 6.923 53.337 6.902 53.424 6.846 53.474 6.733 53.466 6.621 53.449 6.499 53.433 6.388 53.407 6.277 53.424 6.165 53.424 6.044 53.407 5.933 53.399 5.888 53.383 5.834 53.357 5.724 53.322 5.603 53.272 5.494 53.185 5.385 53.098 5.300 53.047 5.191 52.989 5.082 52.962 4.971 52.928 4.918 52.936 4.796 52.912 4.686 52.885 4.677 52.861 4.668 52.766 4.631 52.679 4.613 52.592 4.586 52.497 4.580 52.447 4.528 52.360 4.477 52.351 4.478 52.264 4.407 52.177 4.313 52.090 4.196 52.014 4.089 51.963 4.027 51.876 4.062 51.842 4.174 51.815 4.218 51.783 4.340 51.767 4.385 51.751 4.495 51.759 4.605 51.759 4.616 51.767 4.625 51.817 4.744 51.826 4.764 51.749 4.811 51.757 4.700 51.749 4.637 51.749 4.626 51.722 4.507 51.730 4.397 51.722 4.386 51.672 4.278 51.672 4.181 51.688 4.106 51.655 4.172 51.629 4.193 51.645 4.095 51.613 3.987 51.570 4.099 51.563 4.220 51.485 4.256 51.478 4.203 51.485 4.092 51.572 3.978 51.641 3.865 ; #1926 8 6.115 14.395 6.024 14.450 5.984 14.544 5.999 14.561 5.916 14.599 5.825 14.599 5.742 14.589 5.651 14.572 5.568 14.600 5.485 14.582 5.393 14.536 5.369 14.518 5.303 14.612 5.270 14.649 5.186 14.667 5.104 14.667 5.088 14.658 5.072 14.658 4.989 14.686 4.906 14.704 4.823 14.694 4.732 14.703 4.649 14.758 4.575 14.853 4.519 14.947 4.504 14.984 4.421 15.030 4.338 15.067 4.246 15.085 4.238 15.085 4.190 15.102 4.132 15.166 4.109 15.071 4.018 15.045 3.935 15.109 3.844 15.172 3.761 15.238 3.753 15.238 3.670 15.332 3.579 15.416 3.496 15.499 3.405 15.582 3.322 15.666 3.231 15.740 3.198 15.835 3.198 15.909 3.115 15.947 3.024 16.041 2.933 16.078 2.850 16.041 2.801 16.087 2.718 16.069 2.635 16.060 2.544 16.077 2.453 16.094 2.370 16.149 2.312 16.167 2.378 16.193 2.461 16.239 2.552 16.277 2.635 16.314 2.726 16.361 2.809 16.399 2.882 16.436 2.974 16.453 3.057 16.425 3.147 16.463 3.231 16.436 3.314 16.471 3.405 16.509 3.488 16.518 3.521 16.527 3.604 16.591 3.627 16.685 3.612 16.789 3.645 16.883 3.629 16.977 3.662 17.072 3.670 17.175 3.703 17.269 3.768 17.364 3.800 17.430 3.734 17.525 3.718 17.628 3.703 17.722 3.629 17.825 3.637 17.920 3.653 18.014 3.619 18.109 3.627 18.203 3.676 18.298 3.701 18.401 3.653 18.495 3.569 18.570 3.643 18.561 3.726 18.553 3.757 18.544 3.866 18.544 3.948 18.562 3.974 18.562 4.057 18.588 4.140 18.589 4.231 18.571 4.314 18.543 4.397 18.488 4.445 18.517 4.445 18.620 4.502 18.723 4.668 18.799 4.752 18.883 4.842 18.958 4.925 18.995 5.009 19.050 5.017 19.078 5.072 19.173 5.098 19.200 5.098 19.217 5.171 19.312 5.202 19.416 5.218 19.511 5.210 19.605 5.185 19.708 5.136 19.803 5.070 19.830 5.055 19.914 5.055 19.940 5.047 19.940 4.981 20.035 4.925 20.137 4.860 20.232 4.776 20.326 4.686 20.391 4.602 20.391 4.529 20.475 4.496 20.569 4.504 20.672 4.529 20.767 4.521 20.861 4.496 20.956 4.413 21.059 4.372 21.153 4.397 21.248 4.349 21.342 4.349 21.388 4.334 21.491 4.382 21.586 4.374 21.689 4.341 21.784 4.318 21.878 4.310 21.972 4.295 22.056 4.279 22.065 4.238 22.159 4.214 22.262 4.221 22.356 4.237 22.383 4.244 22.392 4.310 22.467 4.393 22.484 4.477 22.522 4.567 22.531 4.624 22.626 4.707 22.655 4.722 22.663 4.796 22.758 4.811 22.787 4.895 22.814 4.902 22.908 4.819 22.974 4.811 23.068 4.763 23.132 4.697 23.226 4.672 23.329 4.755 23.424 4.821 23.519 4.854 23.613 4.887 23.716 4.902 23.811 4.895 23.829 4.951 23.924 4.999 24.018 5.024 24.113 5.072 24.216 5.072 24.245 5.088 24.291 5.179 24.301 5.171 24.396 5.156 24.433 5.072 24.535 5.065 24.535 4.999 24.629 5.007 24.724 5.038 24.818 5.053 24.922 5.038 24.939 5.070 25.034 5.078 25.069 5.070 25.078 5.070 25.104 5.078 25.142 5.128 25.237 5.220 25.266 5.303 25.249 5.386 25.296 5.427 25.391 5.442 25.486 5.376 25.580 5.326 25.634 5.270 25.737 5.270 25.926 5.310 26.021 5.262 26.124 5.214 26.218 5.206 26.312 5.123 26.414 5.148 26.509 5.164 26.604 5.140 26.698 5.140 26.792 5.231 26.877 5.279 26.972 5.264 27.075 5.216 27.169 5.175 27.272 5.092 27.366 5.140 27.366 5.231 27.312 5.305 27.210 5.388 27.173 5.471 27.157 5.504 27.148 5.595 27.178 5.678 27.150 5.769 27.125 5.852 27.031 5.908 26.937 5.958 26.843 5.982 26.749 6.073 26.675 6.073 26.666 6.080 26.563 6.112 26.469 6.202 26.386 6.285 26.433 6.369 26.331 6.442 26.237 6.526 26.220 6.616 26.278 6.699 26.326 6.765 26.232 6.806 26.137 6.889 26.044 6.972 25.987 7.063 25.971 7.096 25.868 7.169 25.774 7.226 25.671 7.259 25.577 7.324 25.474 7.365 25.371 7.414 25.277 7.497 25.222 7.562 25.128 7.645 25.112 7.694 25.216 7.777 25.208 7.860 25.191 7.951 25.117 7.943 25.013 8.027 24.930 8.050 24.902 8.133 24.874 8.216 24.780 8.224 24.772 8.247 24.677 8.262 24.574 8.247 24.479 8.313 24.376 8.298 24.281 8.323 24.187 8.388 24.084 8.479 24.085 8.570 24.132 8.653 24.168 8.736 24.104 8.729 24.041 8.744 23.946 8.760 23.842 8.768 23.739 8.760 23.645 8.775 23.541 8.791 23.438 8.874 23.476 8.957 23.512 9.048 23.504 9.015 23.400 9.081 23.392 9.172 23.401 9.212 23.419 9.253 23.523 9.336 23.570 9.419 23.580 9.510 23.563 9.609 23.572 9.692 23.609 9.775 23.609 9.859 23.601 9.942 23.565 10.033 23.510 10.058 23.493 10.149 23.448 10.232 23.394 10.315 23.338 10.406 23.293 10.497 23.220 10.520 23.191 10.687 23.004 10.770 22.921 10.861 22.858 10.952 22.813 10.960 22.785 10.983 22.701 10.990 22.606 11.006 22.512 11.021 22.408 10.981 22.313 10.981 22.304 10.932 22.208 10.849 22.124 10.857 22.029 10.774 21.944 10.743 21.848 10.710 21.753 10.661 21.658 10.571 21.639 10.488 21.675 10.404 21.666 10.321 21.636 10.247 21.540 10.215 21.445 10.048 21.348 10.033 21.339 10.010 21.244 9.944 21.140 9.920 21.122 9.837 21.057 9.805 21.040 9.771 20.964 9.764 20.964 9.673 20.946 9.590 20.870 9.499 20.786 9.458 20.769 9.417 20.673 9.344 20.569 9.319 20.474 9.319 20.445 9.236 20.427 9.152 20.332 9.160 20.237 9.168 20.134 9.168 20.039 9.145 19.955 9.104 19.889 9.096 19.794 9.081 19.690 9.066 19.596 9.058 19.501 9.066 19.398 9.050 19.303 9.075 19.208 9.067 19.162 9.052 19.116 9.067 19.069 9.019 18.965 8.945 18.870 8.887 18.841 8.857 18.879 8.816 18.973 8.750 19.076 8.725 19.076 8.642 19.021 8.559 18.954 8.475 18.889 8.385 18.825 8.311 18.730 8.288 18.684 8.204 18.600 8.114 18.581 8.098 18.478 8.098 18.374 8.091 18.280 8.091 18.185 8.083 18.082 8.067 17.978 8.036 17.883 8.036 17.788 8.052 17.685 8.052 17.676 8.027 17.592 8.003 17.497 7.963 17.403 7.922 17.299 7.874 17.204 7.800 17.140 7.775 17.046 7.727 16.951 7.702 16.856 7.619 16.789 7.709 16.695 7.740 16.621 7.824 16.603 7.907 16.540 7.947 16.540 7.924 16.476 7.833 16.392 7.750 16.391 7.742 16.288 7.686 16.193 7.678 16.099 7.621 16.004 7.564 15.909 7.549 15.805 7.557 15.710 7.597 15.616 7.597 15.521 7.605 15.486 7.521 15.420 7.438 15.374 7.365 15.279 7.342 15.241 7.259 15.194 7.193 15.194 7.109 15.130 7.019 15.113 6.936 15.074 6.852 15.046 6.827 14.991 6.771 14.927 6.688 14.889 6.597 14.861 6.473 14.796 6.390 14.767 6.317 14.664 6.283 14.552 6.193 14.467 6.177 14.430 6.169 14.430 6.136 14.413 ; #1927 8 48.655 16.964 48.570 16.960 48.484 16.871 48.399 16.858 48.314 16.961 48.306 16.961 48.272 16.969 48.215 16.987 48.181 17.070 48.165 17.079 48.157 17.079 48.141 17.098 48.056 17.179 48.064 17.190 48.064 17.252 48.038 17.303 48.014 17.377 47.989 17.418 47.981 17.418 47.923 17.487 47.916 17.530 47.884 17.558 47.876 17.567 47.868 17.629 47.810 17.743 47.802 17.786 47.802 17.893 47.810 18.001 47.810 18.117 47.802 18.149 47.802 18.160 47.794 18.266 47.802 18.384 47.810 18.491 47.810 18.599 47.834 18.707 47.860 18.741 47.868 18.849 47.876 18.849 47.909 18.799 47.995 18.771 48.080 18.828 48.106 18.937 48.106 18.957 48.113 18.978 48.113 19.040 48.106 19.147 48.113 19.255 48.130 19.363 48.145 19.471 48.213 19.495 48.221 19.506 48.237 19.517 48.253 19.518 48.253 19.538 48.278 19.634 48.244 19.695 48.203 19.800 48.195 19.874 48.211 19.983 48.219 20.046 48.242 20.090 48.302 20.201 48.318 20.310 48.326 20.320 48.326 20.330 48.496 20.449 48.572 20.487 48.579 20.605 48.605 20.715 48.605 20.823 48.572 20.906 48.555 21.012 48.540 21.118 48.555 21.237 48.555 21.248 48.540 21.256 48.581 21.292 48.598 21.389 48.572 21.494 48.504 21.596 48.419 21.675 48.403 21.684 48.377 21.790 48.411 21.900 48.419 22.008 48.445 22.128 48.598 22.140 48.682 22.222 48.691 22.232 48.776 22.324 48.861 22.351 48.954 22.402 49.040 22.517 49.107 22.532 49.123 22.425 49.165 22.310 49.172 22.203 49.274 21.994 49.305 21.987 49.373 21.884 49.399 21.768 49.440 21.662 49.456 21.590 49.440 21.481 49.448 21.373 49.448 21.341 49.464 21.233 49.448 21.124 49.381 21.000 49.323 20.888 49.364 20.773 49.440 20.670 49.432 20.649 49.401 20.538 49.432 20.422 49.416 20.411 49.424 20.303 49.367 20.214 49.291 20.100 49.283 20.090 49.242 19.979 49.234 19.871 49.226 19.850 49.311 19.803 49.396 19.788 49.422 19.780 49.430 19.672 49.430 19.651 49.506 19.547 49.591 19.510 49.598 19.500 49.598 19.392 49.557 19.281 49.472 19.191 49.438 19.070 49.422 18.961 49.533 18.967 49.541 18.849 49.549 18.840 49.523 18.752 49.531 18.644 49.480 18.523 49.422 18.412 49.422 18.391 49.337 18.302 49.303 18.171 49.210 18.113 49.169 18.111 49.075 18.073 49.067 18.041 49.059 17.932 48.984 17.888 48.942 17.778 48.891 17.667 48.867 17.558 48.859 17.526 48.851 17.515 48.867 17.408 48.891 17.301 48.907 17.239 48.907 17.186 48.873 17.132 48.788 17.033 48.754 17.011 48.712 16.989 48.663 16.955 ; #1928 8 39.726 20.020 39.695 20.130 39.612 20.136 39.528 20.222 39.445 20.259 39.353 20.313 39.338 20.363 39.330 20.464 39.247 20.510 39.164 20.608 39.097 20.695 39.014 20.741 39.080 20.744 39.164 20.807 39.123 20.896 39.064 20.995 39.089 21.098 39.049 21.146 38.958 21.110 38.958 21.008 38.999 20.951 39.014 20.850 39.006 20.748 38.991 20.737 38.907 20.733 38.824 20.767 38.808 20.868 38.725 20.926 38.725 20.935 38.701 20.974 38.618 20.998 38.527 21.083 38.443 21.110 38.360 21.134 38.418 21.239 38.502 21.324 38.525 21.325 38.502 21.343 38.453 21.371 38.370 21.435 38.385 21.547 38.410 21.650 38.418 21.752 38.426 21.854 38.466 21.946 38.442 22.056 38.385 22.155 38.400 22.257 38.416 22.360 38.500 22.383 38.426 22.481 38.342 22.556 38.408 22.610 38.368 22.678 38.284 22.775 38.269 22.876 38.269 23.079 38.220 23.187 38.137 23.132 38.121 23.091 38.129 22.990 38.080 22.886 37.997 22.862 38.020 22.814 38.028 22.774 38.111 22.677 38.195 22.479 38.203 22.369 38.218 22.329 38.243 22.220 38.300 22.121 38.333 22.022 38.389 21.923 38.389 21.821 38.333 21.717 38.249 21.663 38.209 21.549 38.241 21.449 38.191 21.345 38.183 21.345 38.092 21.279 38.008 21.195 37.968 21.091 37.877 21.176 37.811 21.274 37.727 21.319 37.671 21.427 37.622 21.514 37.539 21.590 37.455 21.644 37.389 21.659 37.306 21.606 37.222 21.531 37.131 21.545 37.048 21.620 36.964 21.665 36.957 21.655 36.873 21.700 36.848 21.800 36.832 21.900 36.916 21.895 36.999 21.900 37.083 21.972 37.091 22.074 37.050 22.111 36.958 22.147 36.900 22.244 36.817 22.289 36.801 22.297 36.718 22.333 36.635 22.347 36.551 22.361 36.543 22.461 36.627 22.447 36.710 22.470 36.766 22.492 36.858 22.547 36.873 22.648 36.866 22.749 36.782 22.775 36.691 22.838 36.607 22.912 36.584 23.012 36.493 23.096 36.526 23.147 36.609 23.103 36.683 22.997 36.774 22.993 36.858 23.038 37.025 22.967 37.108 22.954 37.166 22.917 37.250 22.863 37.333 22.819 37.425 22.765 37.508 22.711 37.591 22.697 37.640 22.700 37.591 22.798 37.591 22.899 37.543 22.998 37.510 23.097 37.419 23.073 37.378 23.172 37.461 23.226 37.485 23.329 37.492 23.430 37.551 23.462 37.607 23.355 37.690 23.292 37.607 23.277 37.648 23.178 37.696 23.141 37.779 23.116 37.821 23.090 37.904 23.095 37.904 22.993 37.978 22.979 37.978 23.059 38.018 23.172 38.034 23.242 38.034 23.352 38.082 23.457 38.024 23.555 37.993 23.654 37.909 23.717 37.869 23.826 37.785 23.901 37.712 23.998 37.727 24.008 37.811 24.044 37.894 24.030 37.935 23.993 38.018 23.979 38.102 23.975 38.193 24.031 38.276 23.995 38.350 23.898 38.376 23.798 38.399 23.698 38.399 23.658 38.440 23.611 38.523 23.567 38.538 23.477 38.554 23.377 38.554 23.297 38.620 23.251 38.703 23.265 38.736 23.165 38.703 23.062 38.787 23.017 38.802 22.916 38.828 22.816 38.851 22.715 38.892 22.659 38.942 22.560 38.927 22.661 38.934 22.763 38.967 22.867 39.033 22.982 39.082 23.034 39.074 22.923 39.158 22.897 39.241 22.800 39.325 22.805 39.408 22.912 39.359 23.011 39.367 23.051 39.293 23.149 39.202 23.163 39.136 23.047 39.136 23.087 39.185 23.192 39.250 23.298 39.334 23.254 39.417 23.178 39.501 23.093 39.575 22.995 39.641 22.897 39.682 22.868 39.849 22.797 39.922 22.699 39.930 22.690 40.014 22.635 40.039 22.578 40.096 22.541 40.180 22.516 40.264 22.563 40.348 22.587 40.433 22.593 40.516 22.628 40.532 22.629 40.565 22.662 40.550 22.680 40.565 22.700 40.622 22.807 40.647 22.921 40.563 22.915 40.513 22.809 40.429 22.894 40.362 22.991 40.328 23.092 40.295 23.192 40.211 23.288 40.127 23.272 40.035 23.337 40.002 23.344 40.002 23.446 39.961 23.546 39.976 23.659 40.033 23.561 40.058 23.482 40.142 23.398 40.235 23.302 40.319 23.389 40.286 23.489 40.270 23.590 40.203 23.688 40.119 23.753 40.035 23.837 40.027 23.856 40.035 23.959 40.084 23.943 40.168 23.931 40.209 23.832 40.225 23.783 40.282 23.685 40.366 23.671 40.399 23.777 40.399 23.889 40.340 23.987 40.325 24.088 40.157 24.280 40.182 24.363 40.266 24.279 40.350 24.195 40.391 24.096 40.475 24.000 40.416 23.883 40.501 23.799 40.593 23.846 40.651 23.748 40.700 23.670 40.785 23.708 40.818 23.823 40.810 23.863 40.794 23.872 40.761 23.981 40.761 24.084 40.812 24.191 40.878 24.299 40.970 24.366 40.986 24.470 40.927 24.569 40.886 24.668 40.886 24.771 40.902 24.804 40.951 24.858 40.992 24.973 41.033 25.018 41.033 25.121 40.966 25.196 40.974 25.310 40.933 25.409 40.900 25.509 40.892 25.611 40.876 25.723 40.876 25.826 40.869 25.928 40.853 26.029 40.769 26.012 40.826 26.120 40.910 26.187 40.976 26.296 41.033 26.332 41.117 26.289 41.201 26.288 41.293 26.387 41.368 26.507 41.393 26.612 41.467 26.590 41.552 26.578 41.636 26.567 41.651 26.518 41.685 26.471 41.692 26.471 41.700 26.441 41.733 26.340 41.749 26.238 41.765 26.202 41.772 26.152 41.681 26.052 41.597 26.136 41.512 26.148 41.428 26.150 41.370 26.041 41.346 25.926 41.338 25.875 41.354 25.774 41.329 25.668 41.344 25.566 41.311 25.451 41.303 25.409 41.270 25.303 41.278 25.222 41.319 25.176 41.360 25.088 41.401 24.988 41.426 24.909 41.375 24.801 41.383 24.752 41.498 24.555 41.583 24.502 41.560 24.397 41.567 24.294 41.560 24.190 41.560 24.118 41.493 24.010 41.469 23.926 41.461 23.822 41.430 23.717 41.405 23.612 41.405 23.570 41.430 23.470 41.414 23.365 41.407 23.355 41.399 23.335 41.407 23.244 41.350 23.137 41.358 23.034 41.366 22.923 41.366 22.862 41.350 22.758 41.284 22.753 41.209 22.738 41.217 22.658 41.160 22.551 41.160 22.512 41.152 22.440 41.168 22.338 41.184 22.298 41.191 22.196 41.158 22.124 41.158 22.021 41.125 21.915 41.101 21.905 41.051 21.860 40.966 21.795 40.958 21.775 40.935 21.671 40.919 21.558 40.945 21.456 40.953 21.416 40.904 21.343 40.912 21.241 40.912 21.232 40.896 21.128 40.896 21.097 40.888 20.983 40.839 20.990 40.824 20.980 40.740 21.034 40.732 21.044 40.724 21.043 40.640 21.047 40.583 21.003 40.516 20.897 40.475 20.792 40.468 20.791 40.383 20.767 40.299 20.712 40.215 20.678 40.131 20.623 40.115 20.591 40.107 20.572 40.115 20.470 40.041 20.394 40.033 20.325 39.942 20.370 39.934 20.379 39.850 20.415 39.858 20.313 39.785 20.330 39.693 20.223 39.709 20.121 39.724 20.031 ; #1929 8 -17.705 25.284 -17.788 25.257 -17.871 25.288 -17.955 25.326 -18.038 25.424 -18.129 25.473 -18.295 25.553 -18.386 25.651 -18.427 25.681 -18.500 25.778 -18.566 25.807 -18.649 25.818 -18.732 25.887 -18.815 25.974 -18.889 25.993 -18.972 25.977 -19.056 26.016 -19.146 26.065 -19.229 26.095 -19.321 26.136 -19.404 26.165 -19.460 26.262 -19.543 26.361 -19.617 26.459 -19.657 26.556 -19.665 26.574 -19.748 26.660 -19.756 26.697 -19.822 26.794 -19.862 26.891 -19.878 26.939 -19.878 27.015 -19.951 27.121 -19.967 27.218 -20.057 27.259 -20.149 27.291 -20.232 27.293 -20.315 27.287 -20.363 27.280 -20.348 27.385 -20.340 27.480 -20.348 27.577 -20.356 27.682 -20.371 27.700 -20.379 27.710 -20.412 27.720 -20.495 27.696 -20.578 27.725 -20.669 27.719 -20.752 27.695 -20.835 27.698 -20.918 27.683 -21.009 27.733 -21.083 27.832 -21.166 27.890 -21.249 27.940 -21.340 27.952 -21.423 28.002 -21.431 28.002 -21.447 28.108 -21.462 28.205 -21.462 28.310 -21.495 28.407 -21.518 28.505 -21.503 28.610 -21.551 28.708 -21.592 28.805 -21.624 28.911 -21.650 29.009 -21.658 29.047 -21.681 29.078 -21.772 29.025 -21.855 29.037 -21.929 29.144 -21.929 29.241 -21.921 29.250 -22.011 29.329 -22.044 29.368 -22.021 29.464 -22.006 29.560 -21.990 29.656 -21.998 29.762 -22.038 29.859 -22.046 29.925 -22.072 29.964 -22.079 29.982 -22.135 30.090 -22.151 30.108 -22.143 30.213 -22.192 30.312 -22.184 30.408 -22.168 30.504 -22.184 30.609 -22.158 30.705 -22.143 30.801 -22.151 30.907 -22.174 31.004 -22.182 31.081 -22.205 31.178 -22.263 31.277 -22.263 31.286 -22.205 31.380 -22.156 31.425 -22.066 31.518 -21.975 31.599 -21.917 31.653 -21.901 31.671 -21.810 31.763 -21.744 31.825 -21.654 31.918 -21.563 31.999 -21.396 32.165 -21.305 32.246 -21.222 32.328 -21.166 32.381 -21.199 32.459 -21.116 32.400 -21.025 32.367 -20.934 32.371 -20.851 32.444 -20.760 32.487 -20.669 32.466 -20.495 32.458 -20.421 32.561 -20.380 32.655 -20.290 32.707 -20.282 32.715 -20.199 32.788 -20.191 32.788 -20.108 32.840 -20.017 32.854 -19.934 32.909 -19.868 32.971 -19.785 32.977 -19.694 32.991 -19.611 32.941 -19.520 32.930 -19.553 32.835 -19.470 32.805 -19.404 32.812 -19.321 32.744 -19.229 32.749 -19.146 32.822 -19.056 32.819 -18.972 32.854 -18.889 32.746 -18.881 32.681 -18.874 32.672 -18.791 32.698 -18.775 32.688 -18.701 32.694 -18.653 32.789 -18.661 32.885 -18.570 32.920 -18.487 32.878 -18.403 32.867 -18.363 32.961 -18.289 32.976 -18.274 32.993 -18.226 33.038 -18.160 32.960 -18.069 32.966 -17.986 32.945 -17.903 32.924 -17.812 32.939 -17.728 32.936 -17.637 32.997 -17.554 32.994 -17.471 33.000 -17.388 32.921 -17.297 32.973 -17.256 33.001 -17.241 33.009 -17.150 32.950 -17.101 32.948 -17.018 32.928 -16.927 32.878 -16.844 32.828 -16.771 32.872 -16.687 32.925 -16.597 32.950 -16.605 32.933 -16.612 32.837 -16.612 32.733 -16.571 32.676 -16.481 32.655 -16.440 32.549 -16.399 32.452 -16.366 32.355 -16.341 32.259 -16.334 32.163 -16.341 32.059 -16.334 31.964 -16.250 31.865 -16.101 31.669 -16.093 31.564 -16.061 31.468 -16.038 31.371 -15.946 31.293 -15.914 31.196 -15.898 31.092 -15.956 30.998 -15.898 30.901 -15.898 30.532 -15.883 30.399 -15.534 30.387 -15.542 30.370 -15.550 30.266 -15.550 30.170 -15.534 30.074 -15.558 29.971 -15.525 29.875 -15.525 29.779 -15.558 29.685 -15.566 29.581 -15.606 29.487 -15.622 29.383 -15.655 29.289 -15.695 29.195 -15.761 29.092 -15.844 29.019 -15.860 28.924 -15.860 28.915 -15.943 28.842 -15.984 28.844 -16.074 28.829 -16.241 28.834 -16.332 28.807 -16.415 28.745 -16.422 28.746 -16.448 28.700 -16.463 28.605 -16.504 28.510 -16.544 28.416 -16.577 28.321 -16.633 28.218 -16.717 28.116 -16.757 28.013 -16.765 28.004 -16.806 27.910 -16.836 27.815 -16.927 27.751 -17.026 27.678 -17.117 27.625 -17.200 27.610 -17.291 27.528 -17.299 27.510 -17.390 27.408 -17.481 27.315 -17.579 27.233 -17.670 27.151 -17.754 27.115 -17.837 27.022 -17.837 27.004 -17.860 26.909 -17.875 26.845 -17.891 26.798 -17.939 26.704 -17.939 26.686 -17.891 26.589 -17.850 26.484 -17.810 26.387 -17.810 26.331 -17.769 26.225 -17.802 26.130 -17.850 26.036 -17.875 25.952 -17.817 25.846 -17.802 25.864 -17.728 25.777 -17.688 25.680 -17.720 25.577 -17.728 25.481 -17.720 25.385 -17.680 25.279 -17.680 25.270 -17.688 25.270 ; #1930 8 9.188 79.771 9.162 79.753 9.129 79.846 9.056 79.937 9.056 79.955 9.071 79.946 9.154 79.904 9.188 79.811 9.188 79.776 ; #1931 8 7.692 79.845 7.626 79.842 7.543 79.865 7.452 79.869 7.361 79.883 7.336 79.882 7.245 79.869 7.162 79.892 7.071 79.905 6.988 79.892 6.904 79.907 6.814 79.940 6.773 79.955 6.682 79.989 6.616 80.012 6.526 80.026 6.475 80.041 6.392 80.066 6.301 80.099 6.218 80.142 6.135 80.222 6.094 80.314 6.061 80.407 6.053 80.482 6.038 80.576 6.022 80.612 6.022 80.630 6.048 80.660 6.073 80.755 6.138 80.853 6.171 80.949 6.204 81.053 6.212 81.129 6.268 81.235 6.293 81.331 6.301 81.357 6.367 81.455 6.450 81.553 6.516 81.659 6.599 81.738 6.639 81.769 6.731 81.819 6.814 81.840 6.879 81.861 7.046 81.904 7.129 81.917 7.220 81.903 7.303 81.907 7.386 81.902 7.452 81.896 7.535 81.863 7.560 81.846 7.535 81.845 7.551 81.799 7.591 81.793 7.682 81.788 7.766 81.728 7.849 81.648 7.798 81.749 7.856 81.715 7.939 81.624 8.031 81.602 8.071 81.575 8.162 81.515 8.245 81.481 8.336 81.457 8.409 81.434 8.501 81.420 8.584 81.389 8.543 81.284 8.616 81.192 8.624 81.287 8.657 81.289 8.748 81.267 8.831 81.204 8.915 81.133 8.998 81.071 9.013 81.063 9.054 80.970 9.110 80.981 9.193 80.921 9.276 80.896 9.359 80.845 9.443 80.774 9.526 80.683 9.584 80.591 9.657 80.500 9.731 80.408 9.814 80.346 9.897 80.294 9.857 80.198 9.824 80.291 9.741 80.371 9.657 80.462 9.715 80.370 9.799 80.290 9.839 80.188 9.888 80.095 9.888 80.041 9.831 79.954 9.748 80.045 9.741 80.054 9.717 80.148 9.659 80.240 9.717 80.251 9.709 80.259 9.659 80.352 9.603 80.444 9.603 80.519 9.520 80.619 9.568 80.518 9.576 80.463 9.576 80.454 9.545 80.386 9.602 80.286 9.609 80.268 9.617 80.174 9.534 80.205 9.443 80.106 9.359 80.160 9.276 80.165 9.236 80.146 9.152 80.124 9.069 80.056 9.021 79.980 9.013 79.970 8.988 79.978 8.897 79.983 8.814 80.008 8.731 80.004 8.640 79.971 8.624 79.953 8.541 79.932 8.458 79.910 8.367 79.897 8.294 79.885 8.210 79.890 8.071 79.884 8.112 79.802 8.202 79.797 8.286 79.810 8.377 79.814 8.286 79.763 8.202 79.760 8.119 79.774 8.029 79.798 7.945 79.823 7.862 79.846 7.771 79.851 7.688 79.856 ; #1932 8 9.777 79.927 9.721 79.925 9.713 80.019 9.779 79.927 ; #1933 8 7.800 81.778 7.752 81.793 7.669 81.845 7.578 81.869 7.603 81.870 7.686 81.856 7.769 81.814 ; #1934 8 31.272 34.302 31.224 34.316 31.058 34.380 31.032 34.386 30.949 34.418 30.866 34.459 30.818 34.482 30.734 34.514 30.712 34.521 30.628 34.543 30.545 34.575 30.462 34.586 30.379 34.647 30.288 34.687 30.204 34.717 30.181 34.723 30.156 34.730 30.073 34.762 29.990 34.782 29.899 34.815 29.816 34.848 29.732 34.870 29.676 34.866 29.626 34.881 29.570 34.905 29.562 34.904 29.562 34.913 29.628 34.966 29.701 34.998 29.709 35.007 29.800 35.014 29.883 35.049 29.967 35.064 30.073 35.091 30.139 35.115 30.222 35.161 30.305 35.140 30.396 35.157 30.487 35.156 30.503 35.148 30.586 35.186 30.659 35.201 30.742 35.248 30.825 35.292 30.992 35.367 31.007 35.387 31.040 35.399 31.071 35.402 31.104 35.423 31.152 35.446 31.185 35.458 31.269 35.418 31.284 35.401 31.291 35.392 31.375 35.418 31.383 35.428 31.466 35.466 31.557 35.474 31.549 35.395 31.549 35.386 31.541 35.385 31.526 35.354 31.518 35.344 31.495 35.303 31.437 35.199 31.421 35.099 31.421 35.000 31.414 34.932 31.497 34.901 31.580 34.947 31.663 34.964 31.704 34.998 31.711 35.017 31.777 35.122 31.810 35.212 31.843 35.225 31.859 35.226 31.866 35.199 31.889 35.114 31.874 35.014 31.874 35.004 31.889 34.967 31.915 34.969 31.922 34.997 31.988 35.003 32.036 34.998 32.127 35.006 32.176 34.993 32.241 34.968 32.249 34.969 32.275 35.002 32.358 35.018 32.365 35.019 32.388 35.030 32.429 35.043 32.462 35.055 32.545 35.141 32.593 35.204 32.563 35.300 32.563 35.309 32.547 35.407 32.464 35.447 32.456 35.484 32.441 35.542 32.464 35.554 32.646 35.571 32.694 35.557 32.694 35.575 32.717 35.596 32.733 35.627 32.749 35.598 32.756 35.590 32.789 35.623 32.789 35.632 32.797 35.643 32.797 35.651 32.822 35.654 32.847 35.647 32.847 35.638 32.855 35.629 32.920 35.617 32.936 35.609 32.944 35.610 32.969 35.603 33.043 35.600 33.075 35.613 33.083 35.623 33.124 35.645 33.290 35.661 33.290 35.651 33.282 35.623 33.290 35.593 33.323 35.578 33.282 35.544 33.199 35.527 33.151 35.504 33.126 35.453 33.103 35.352 33.143 35.288 33.127 35.208 33.135 35.110 33.127 35.100 33.044 35.083 32.961 35.075 32.930 35.082 32.864 35.009 32.781 34.953 32.698 34.936 32.615 34.919 32.532 34.893 32.448 34.876 32.365 34.850 32.350 34.849 32.259 34.823 32.236 34.821 32.153 34.783 32.070 34.748 32.062 34.747 31.978 34.721 31.880 34.664 31.847 34.652 31.764 34.596 31.733 34.575 31.650 34.519 31.642 34.509 31.611 34.564 31.560 34.541 31.538 34.512 31.464 34.427 31.381 34.392 31.290 34.315 31.274 34.296 31.267 34.295 ; #1935 8 20.433 100.172 20.350 100.176 20.391 100.279 20.474 100.349 20.450 100.441 20.443 100.440 20.359 100.481 20.286 100.527 20.245 100.616 20.245 100.652 20.162 100.638 20.088 100.617 20.005 100.593 19.922 100.525 19.839 100.485 19.831 100.484 19.740 100.517 19.657 100.561 19.584 100.656 19.584 100.664 19.624 100.766 19.574 100.855 19.657 100.932 19.708 101.044 19.700 101.139 19.669 101.181 19.676 101.278 19.586 101.350 19.503 101.282 19.429 101.309 19.346 101.324 19.262 101.330 19.179 101.383 19.096 101.408 19.013 101.359 18.930 101.329 18.847 101.317 18.764 101.343 18.680 101.272 18.589 101.184 18.506 101.153 18.481 101.168 18.433 101.266 18.350 101.236 18.266 101.259 18.183 101.256 18.100 101.215 18.017 101.156 17.934 101.115 17.850 101.077 17.759 101.055 17.676 101.005 17.661 101.029 17.637 101.122 17.597 101.163 17.564 101.254 17.580 101.256 17.595 101.276 17.626 101.318 17.709 101.377 17.783 101.483 17.790 101.502 17.864 101.609 17.904 101.644 17.988 101.751 18.071 101.828 18.154 101.858 18.131 101.951 18.205 102.057 18.288 102.127 18.303 102.185 18.303 102.194 18.237 102.280 18.154 102.363 18.113 102.453 18.065 102.551 18.057 102.646 17.974 102.689 17.974 102.794 17.982 102.813 18.055 102.919 18.096 103.021 18.081 103.114 18.113 103.137 18.197 103.132 18.229 103.165 18.255 103.216 18.338 103.246 18.369 103.346 18.452 103.312 18.518 103.417 18.510 103.512 18.510 103.521 18.502 103.625 18.469 103.705 18.421 103.793 18.421 103.889 18.396 103.981 18.388 104.076 18.305 104.139 18.222 104.174 18.156 104.219 18.107 104.268 18.024 104.311 17.941 104.346 17.885 104.442 17.802 104.485 17.729 104.570 17.713 104.585 17.672 104.675 17.624 104.763 17.601 104.777 17.518 104.850 17.409 104.871 17.301 104.873 17.253 104.865 17.154 104.813 17.055 104.807 16.964 104.831 16.858 104.824 16.775 104.820 16.692 104.799 16.600 104.841 16.510 104.932 16.419 105.003 16.403 105.029 16.378 105.052 16.295 105.077 16.212 105.120 16.179 105.211 16.164 105.313 16.138 105.404 16.115 105.477 16.032 105.388 15.949 105.423 15.875 105.516 15.875 105.563 15.809 105.657 15.726 105.674 15.643 105.632 15.560 105.628 15.511 105.525 15.445 105.534 15.453 105.619 15.362 105.559 15.279 105.499 15.256 105.496 15.173 105.568 15.125 105.616 15.041 105.594 14.958 105.546 14.875 105.547 14.792 105.538 14.701 105.555 14.617 105.508 14.535 105.396 14.494 105.296 14.478 105.239 14.395 105.248 14.312 105.306 14.304 105.314 14.239 105.412 14.246 105.508 14.287 105.596 14.279 105.604 14.246 105.696 14.239 105.761 14.223 105.787 14.207 105.813 14.124 105.860 14.117 105.877 14.068 105.939 14.053 105.984 14.053 105.992 14.060 106.002 14.068 106.058 14.151 106.151 14.200 106.193 14.291 106.127 14.374 106.052 14.457 106.015 14.515 106.116 14.507 106.210 14.591 106.254 14.575 106.337 14.616 106.445 14.699 106.492 14.707 106.502 14.732 106.542 14.724 106.550 14.641 106.608 14.600 106.630 14.593 106.647 14.567 106.740 14.484 106.806 14.459 106.899 14.500 106.998 14.540 107.098 14.598 107.199 14.681 107.265 14.697 107.362 14.697 107.458 14.780 107.502 14.838 107.546 14.922 107.508 15.005 107.584 15.078 107.500 15.129 107.478 15.169 107.580 15.252 107.639 15.343 107.653 15.351 107.683 15.359 107.685 15.442 107.660 15.525 107.606 15.550 107.526 15.641 107.482 15.656 107.389 15.740 107.317 15.823 107.273 15.906 107.190 15.989 107.287 16.040 107.390 16.123 107.469 16.154 107.492 16.186 107.401 16.227 107.304 16.276 107.215 16.316 107.175 16.349 107.171 16.423 107.107 16.423 107.060 16.415 107.021 16.415 107.012 16.498 106.941 16.581 106.916 16.589 106.822 16.564 106.809 16.572 106.714 16.655 106.689 16.746 106.619 16.746 106.609 16.837 106.588 16.920 106.592 16.976 106.592 17.001 106.586 17.074 106.598 17.098 106.497 17.123 106.472 17.206 106.438 17.289 106.375 17.372 106.350 17.365 106.253 17.388 106.227 17.454 106.142 17.537 106.050 17.628 105.979 17.711 105.916 17.769 105.829 17.777 105.801 17.860 105.758 17.943 105.704 18.026 105.670 18.092 105.671 18.175 105.610 18.258 105.547 18.299 105.457 18.268 105.443 18.352 105.372 18.392 105.282 18.475 105.239 18.491 105.212 18.574 105.149 18.665 105.180 18.723 105.236 18.806 105.184 18.822 105.090 18.847 105.047 18.878 104.956 18.885 104.852 18.909 104.760 18.967 104.673 19.040 104.588 19.081 104.498 19.154 104.413 19.202 104.324 19.202 104.260 19.286 104.208 19.326 104.118 19.334 104.014 19.390 103.926 19.464 103.995 19.505 104.097 19.497 104.105 19.537 104.111 19.620 104.142 19.704 104.069 19.760 104.050 19.775 104.071 19.744 104.162 19.785 104.265 19.744 104.354 19.752 104.451 19.704 104.540 19.712 104.637 19.795 104.706 19.860 104.812 19.943 104.871 19.959 104.809 20.042 104.907 20.075 104.989 20.083 105.000 20.166 105.014 20.249 104.962 20.282 104.921 20.305 104.829 20.297 104.731 20.363 104.705 20.447 104.684 20.495 104.608 20.495 104.511 20.518 104.419 20.602 104.490 20.617 104.501 20.592 104.582 20.665 104.633 20.748 104.619 20.797 104.532 20.829 104.519 20.863 104.429 20.946 104.368 20.986 104.279 21.019 104.179 21.027 104.116 20.978 104.011 20.953 103.948 20.905 103.835 20.822 103.829 20.739 103.767 20.787 103.671 20.820 103.580 20.893 103.497 20.868 103.396 20.909 103.318 20.909 103.233 20.992 103.152 21.075 103.099 21.083 103.091 21.149 103.007 21.232 102.956 21.298 102.959 21.313 102.944 21.396 102.940 21.488 102.974 21.571 102.971 21.653 103.050 21.710 103.031 21.793 102.998 21.808 102.904 21.900 102.864 21.808 102.867 21.725 102.793 21.774 102.706 21.857 102.711 21.940 102.679 21.996 102.632 22.054 102.546 22.137 102.496 22.220 102.414 22.276 102.318 22.360 102.236 22.443 102.203 22.451 102.195 22.501 102.107 22.493 102.001 22.470 101.900 22.553 101.850 22.553 101.820 22.470 101.720 22.404 101.709 22.338 101.642 22.272 101.621 22.265 101.638 22.182 101.642 22.099 101.675 22.083 101.672 22.000 101.723 21.917 101.805 21.834 101.820 21.750 101.832 21.667 101.885 21.576 101.831 21.493 101.808 21.445 101.800 21.362 101.812 21.305 101.899 21.240 101.849 21.207 101.788 21.247 101.739 21.255 101.702 21.313 101.607 21.298 101.508 21.267 101.406 21.275 101.311 21.298 101.306 21.381 101.291 21.464 101.279 21.547 101.275 21.631 101.233 21.638 101.205 21.580 101.205 21.497 101.105 21.441 100.999 21.367 100.881 21.375 100.786 21.302 100.765 21.211 100.740 21.127 100.688 21.044 100.598 21.021 100.585 20.938 100.597 20.961 100.698 20.913 100.681 20.905 100.662 20.880 100.561 20.895 100.458 20.845 100.354 20.762 100.263 20.679 100.231 20.588 100.207 20.504 100.184 20.421 100.152 ; #1936 8 40.148 124.448 40.140 124.443 40.084 124.509 40.068 124.531 40.068 124.521 40.053 124.442 40.037 124.441 39.946 124.409 39.879 124.486 39.872 124.584 39.813 124.666 39.740 124.729 39.656 124.726 39.740 124.829 39.823 124.832 39.783 124.913 39.717 124.981 39.701 125.075 39.670 125.130 39.629 125.210 39.629 125.322 39.604 125.411 39.637 125.531 39.554 125.468 39.470 125.443 39.455 125.537 39.371 125.521 39.280 125.454 39.196 125.391 39.113 125.357 39.029 125.313 38.938 125.255 38.855 125.271 38.839 125.374 38.789 125.357 38.804 125.467 38.812 125.573 38.772 125.663 38.731 125.743 38.697 125.766 38.690 125.752 38.738 125.667 38.772 125.582 38.738 125.463 38.731 125.357 38.705 125.232 38.622 125.198 38.663 125.108 38.607 125.117 38.550 125.106 38.509 125.054 38.426 125.001 38.342 124.988 38.259 125.046 38.267 124.939 38.183 124.836 38.175 124.934 38.191 125.044 38.142 125.120 38.142 125.151 38.166 125.264 38.110 125.346 38.117 125.239 38.034 125.224 38.034 125.122 38.010 125.119 37.960 125.194 37.945 125.288 37.978 125.406 37.894 125.453 37.978 125.515 37.978 125.616 37.886 125.608 37.836 125.481 37.752 125.465 37.826 125.605 37.909 125.739 37.993 125.742 38.001 125.848 38.042 125.768 38.100 125.697 38.092 125.794 38.067 125.883 38.001 125.959 37.927 126.022 37.935 126.127 37.877 126.198 37.821 126.279 37.904 126.283 37.919 126.393 37.960 126.516 37.904 126.587 37.871 126.680 37.911 126.803 37.995 126.807 38.020 126.802 38.104 126.948 38.187 127.021 38.235 127.077 38.301 127.121 38.376 127.262 38.391 127.382 38.399 127.488 38.383 127.581 38.376 127.607 38.391 127.727 38.399 127.833 38.406 127.886 38.374 127.928 38.389 128.047 38.381 128.144 38.412 128.263 38.496 128.376 38.579 128.412 38.663 128.416 38.688 128.461 38.772 128.425 38.804 128.341 38.845 128.261 38.901 128.190 38.927 128.092 38.993 128.026 39.051 127.946 39.134 127.889 39.183 127.804 39.208 127.715 39.208 127.613 39.239 127.580 39.231 127.526 39.297 127.459 39.381 127.513 39.464 127.508 39.487 127.570 39.396 127.591 39.487 127.609 39.571 127.604 39.654 127.639 39.713 127.568 39.796 127.573 39.862 127.711 39.912 127.840 39.996 127.935 40.053 128.012 40.086 128.136 40.078 128.243 40.086 128.350 40.153 128.496 40.227 128.647 40.311 128.703 40.385 128.854 40.477 129.005 40.511 129.139 40.602 129.240 40.618 129.251 40.702 129.287 40.794 129.451 40.835 129.581 40.876 129.711 40.960 129.826 41.053 129.818 41.137 129.812 41.221 129.818 41.305 129.854 41.371 129.889 41.428 129.895 41.469 129.810 41.561 129.767 41.645 129.793 41.737 129.854 41.822 129.973 41.906 129.988 41.997 130.090 42.005 130.115 42.029 130.111 42.044 130.151 42.129 130.267 42.213 130.324 42.254 130.455 42.338 130.512 42.353 130.635 42.297 130.701 42.330 130.806 42.415 130.771 42.463 130.722 42.563 130.634 42.596 130.625 42.629 130.544 42.653 130.490 42.704 130.420 42.753 130.361 42.810 130.349 42.901 130.369 42.917 130.370 42.941 130.272 43.007 130.213 42.992 130.110 42.999 130.084 42.992 129.965 42.984 129.960 42.899 129.935 42.815 129.898 42.731 129.873 42.724 129.868 42.639 129.871 42.547 129.841 42.463 129.766 42.430 129.674 42.430 129.613 42.438 129.608 42.463 129.556 42.430 129.420 42.381 129.346 42.297 129.331 42.213 129.285 42.129 129.138 42.062 129.011 42.070 128.913 42.054 128.789 42.039 128.675 42.039 128.572 42.054 128.573 42.070 128.513 42.070 128.409 42.044 128.301 42.019 128.171 41.988 128.180 41.896 128.211 41.847 128.219 41.763 128.267 41.755 128.272 41.739 128.292 41.698 128.369 41.614 128.426 41.530 128.361 41.438 128.301 41.422 128.200 41.479 128.124 41.471 128.088 41.448 127.969 41.455 127.861 41.448 127.753 41.479 127.660 41.504 127.596 41.512 127.498 41.538 127.411 41.554 127.308 41.628 127.253 41.677 127.173 41.735 127.180 41.784 127.098 41.826 127.022 41.759 126.938 41.702 126.797 41.702 126.747 41.618 126.702 41.534 126.678 41.475 126.621 41.444 126.630 41.360 126.534 41.276 126.470 41.191 126.387 41.176 126.358 41.092 126.254 41.000 126.165 40.915 126.040 40.900 125.927 40.900 125.814 40.884 125.794 40.800 125.740 40.759 125.611 40.692 125.518 40.677 125.437 40.684 125.432 40.643 125.303 40.587 125.165 40.503 125.101 40.503 125.061 40.495 125.056 40.487 124.960 40.403 124.838 40.319 124.703 40.235 124.590 40.150 124.478 40.142 124.472 ; #1937 8 12.567 -70.077 12.552 -70.058 12.493 -69.958 12.576 -69.992 12.668 -70.075 12.652 -70.129 12.569 -70.075 ; #1938 8 12.122 -68.824 12.162 -68.845 12.246 -68.907 12.271 -69.004 12.327 -69.104 12.410 -69.137 12.443 -69.235 12.360 -69.211 12.277 -69.108 12.186 -69.025 12.145 -68.918 12.120 -68.821 ; #1939 8 12.108 -68.318 12.124 -68.293 12.215 -68.274 12.298 -68.264 12.329 -68.362 12.387 -68.471 12.304 -68.464 12.271 -68.366 12.188 -68.359 12.105 -68.325 ; #1940 8 11.660 -85.676 11.644 -85.769 11.561 -85.742 11.505 -85.642 11.497 -85.546 11.581 -85.630 11.664 -85.676 ; #1941 8 39.515 19.941 39.598 19.914 39.682 19.880 39.765 19.922 39.849 19.887 39.841 19.785 39.833 19.682 39.749 19.688 39.666 19.753 39.582 19.852 39.499 19.907 39.443 20.007 39.443 20.109 39.499 20.000 ; #1942 8 38.426 20.540 38.370 20.506 38.378 20.405 38.294 20.361 38.203 20.387 38.251 20.491 38.168 20.506 38.168 20.607 38.127 20.707 38.142 20.809 38.234 20.764 38.307 20.666 38.340 20.618 38.424 20.622 38.507 20.546 38.424 20.542 ; #1943 8 38.888 20.706 38.903 20.717 38.820 20.601 38.736 20.566 38.653 20.622 38.684 20.734 38.768 20.738 38.858 20.733 38.882 20.716 38.882 20.706 ; #1944 8 38.442 20.694 38.525 20.627 38.442 20.663 38.358 20.730 ; #1945 8 37.704 20.856 37.727 20.858 37.811 20.951 37.884 20.853 37.925 20.754 37.933 20.653 37.849 20.658 37.766 20.744 37.700 20.851 ; #1946 8 36.433 22.971 36.384 22.909 36.301 22.932 36.209 22.958 36.258 23.070 36.349 23.036 36.433 22.973 ; #1947 8 38.049 23.512 38.026 23.461 37.943 23.425 37.966 23.537 38.049 23.514 ; #1948 8 37.723 23.508 37.731 23.518 37.815 23.542 37.815 23.440 37.723 23.503 ; #1949 8 38.511 23.616 38.455 23.662 38.447 23.763 38.447 23.865 38.440 23.975 38.424 24.076 38.340 24.132 38.257 24.207 38.173 24.220 37.999 24.511 38.024 24.541 38.108 24.596 38.191 24.521 38.199 24.420 38.232 24.321 38.315 24.265 38.399 24.221 38.490 24.198 38.573 24.232 38.639 24.135 38.723 24.081 38.715 23.978 38.723 23.877 38.756 23.777 38.796 23.668 38.837 23.570 38.896 23.472 38.979 23.436 39.063 23.351 39.063 23.249 39.047 23.137 38.963 23.042 38.880 22.947 38.921 23.051 38.897 23.151 38.839 23.250 38.783 23.358 38.725 23.456 38.641 23.520 38.601 23.619 38.517 23.614 ; #1950 8 39.190 23.736 39.190 23.634 39.117 23.732 ; #1951 8 35.256 24.147 35.249 24.214 35.233 24.313 35.241 24.332 35.216 24.430 35.200 24.530 35.151 24.627 35.144 24.736 35.053 24.757 34.979 24.792 34.987 24.902 34.987 25.002 34.994 25.051 35.010 25.162 35.018 25.263 35.051 25.365 35.043 25.465 35.051 25.575 35.059 25.584 35.066 25.685 35.051 25.784 35.051 25.814 35.076 25.895 35.076 26.004 35.051 26.103 35.051 26.143 35.059 26.152 35.132 26.258 35.216 26.282 35.299 26.230 35.251 26.127 35.276 26.019 35.235 25.916 35.169 25.811 35.218 25.714 35.309 25.740 35.392 25.715 35.384 25.614 35.361 25.512 35.361 25.503 35.369 25.403 35.392 25.304 35.392 25.095 35.466 24.999 35.459 24.950 35.459 24.861 35.474 24.753 35.466 24.652 35.433 24.549 35.418 24.448 35.410 24.347 35.425 24.269 35.509 24.186 35.567 24.089 35.623 24.193 35.608 24.092 35.567 23.989 35.575 23.889 35.631 23.783 35.722 23.730 35.631 23.724 35.547 23.679 35.596 23.582 35.505 23.567 35.421 23.543 35.338 23.538 35.282 23.635 35.282 23.735 35.297 23.837 35.274 23.945 35.249 24.044 35.256 24.144 ; #1952 8 37.574 24.304 37.640 24.389 37.723 24.394 37.657 24.288 37.574 24.302 ; #1953 8 36.701 24.349 36.716 24.439 36.723 24.540 36.807 24.565 36.741 24.459 36.790 24.352 36.699 24.346 ; #1954 8 40.622 24.675 40.655 24.781 40.740 24.797 40.824 24.745 40.839 24.643 40.755 24.545 40.663 24.557 40.614 24.656 ; #1955 8 38.810 24.577 38.818 24.667 38.901 24.623 38.985 24.567 39.008 24.466 38.925 24.452 38.892 24.551 38.808 24.577 ; #1956 8 36.958 24.730 37.015 24.783 37.040 24.683 36.957 24.727 ; #1957 8 40.041 25.107 39.967 25.070 39.883 25.055 39.860 25.156 39.901 25.261 39.876 25.371 39.959 25.387 40.043 25.443 40.051 25.444 40.043 25.362 40.010 25.340 40.043 25.241 40.043 25.110 ; #1958 8 37.781 25.006 37.865 24.993 37.948 24.970 37.956 24.869 38.040 24.813 37.974 24.708 37.907 24.805 37.817 24.888 37.733 24.972 ; #1959 8 36.642 24.966 36.675 24.968 36.691 24.860 36.640 24.966 ; #1960 8 37.023 25.208 37.106 25.282 37.190 25.238 37.116 25.132 37.025 25.206 ; #1961 8 37.459 25.368 37.533 25.444 37.541 25.333 37.457 25.368 ; #1962 8 36.706 25.405 36.790 25.380 36.764 25.277 36.699 25.373 ; #1963 8 40.538 25.667 40.554 25.618 40.546 25.515 40.462 25.545 40.454 25.657 40.538 25.664 ; #1964 8 36.966 25.467 36.982 25.509 37.065 25.594 37.149 25.609 37.232 25.578 37.199 25.474 37.141 25.369 37.057 25.401 36.966 25.465 ; #1965 8 38.201 26.028 38.257 26.113 38.340 26.148 38.424 26.154 38.515 26.151 38.599 26.166 38.639 26.068 38.639 25.966 38.566 25.850 38.507 25.956 38.424 26.000 38.340 25.926 38.257 25.929 38.201 26.026 ; #1966 8 38.999 26.431 39.082 26.527 39.059 26.627 39.142 26.574 39.226 26.509 39.299 26.413 39.383 26.390 39.415 26.291 39.359 26.185 39.326 26.071 39.319 25.968 39.260 25.862 39.177 25.927 39.146 26.027 39.169 26.130 39.169 26.232 39.113 26.126 39.064 26.224 39.023 26.333 39.008 26.434 ; #1967 8 37.692 26.835 37.692 26.864 37.741 26.978 37.824 27.043 37.817 26.932 37.857 26.833 37.857 26.732 37.817 26.628 37.733 26.631 37.748 26.733 37.692 26.831 ; #1968 8 37.153 26.881 37.201 26.885 37.224 26.785 37.151 26.881 ; #1969 8 36.974 26.989 37.057 27.055 37.057 26.954 36.974 26.988 ; #1970 8 36.052 27.939 36.101 28.001 36.108 28.102 36.108 28.112 36.157 28.106 36.241 28.162 36.324 28.188 36.407 28.235 36.491 28.232 36.466 28.120 36.382 27.912 36.299 27.804 36.215 27.718 36.132 27.779 36.048 27.754 35.965 27.757 35.965 27.857 36.048 27.932 ; #1971 16 -0.395 -91.570 -0.354 -91.474 -0.271 -91.472 -0.188 -91.487 -0.172 -91.581 -0.197 -91.685 -0.281 -91.714 -0.364 -91.633 -0.397 -91.568 ; #1972 16 0.105 -91.665 0.081 -91.570 0.031 -91.474 -0.136 -91.460 -0.219 -91.407 -0.275 -91.314 -0.358 -91.290 -0.441 -91.238 -0.524 -91.203 -0.557 -91.307 -0.606 -91.403 -0.662 -91.499 -0.753 -91.576 -0.836 -91.532 -0.909 -91.431 -0.909 -91.337 -0.917 -91.243 -0.892 -91.148 -0.851 -91.052 -0.811 -90.948 -0.719 -90.928 -0.629 -90.870 -0.546 -90.951 -0.495 -91.044 -0.412 -91.024 -0.321 -91.030 -0.238 -91.112 -0.155 -91.204 -0.064 -91.267 0.019 -91.266 0.110 -91.323 0.193 -91.380 0.219 -91.475 0.161 -91.577 0.112 -91.670 ; #1973 16 -0.279 -90.671 -0.188 -90.623 -0.104 -90.695 -0.072 -90.797 -0.072 -90.892 -0.162 -90.931 -0.246 -90.839 -0.246 -90.745 ; #1974 16 0.362 -90.551 0.445 -90.516 0.445 -90.610 0.362 -90.553 ; #1975 16 -0.677 -90.408 -0.636 -90.313 -0.546 -90.256 -0.462 -90.253 -0.397 -90.345 -0.404 -90.440 -0.429 -90.544 -0.512 -90.612 -0.596 -90.606 -0.662 -90.514 -0.677 -90.420 -0.677 -90.411 ; #1976 16 -1.250 -90.528 -1.167 -90.451 -1.126 -90.544 -1.217 -90.593 -1.248 -90.528 ; #1977 16 -0.859 -89.612 -0.834 -89.517 -0.743 -89.449 -0.669 -89.352 -0.586 -89.388 -0.619 -89.483 -0.702 -89.551 -0.768 -89.647 -0.859 -89.623 -0.859 -89.614 ; #1978 16 -2.563 -80.086 -2.563 -80.113 -2.596 -80.208 -2.670 -80.313 -2.760 -80.341 -2.844 -80.343 -2.927 -80.291 -2.894 -80.187 -2.811 -80.194 -2.728 -80.183 -2.702 -80.079 -2.612 -79.982 -2.563 -80.084 ; #1979 16 61.161 5.047 61.170 5.035 61.243 4.912 61.142 4.917 61.159 5.047 ; #1980 16 60.375 5.132 60.392 5.095 60.466 4.973 60.364 5.014 60.263 5.030 60.281 5.147 60.373 5.132 ; #1981 16 60.561 5.015 60.487 5.148 60.580 5.039 60.562 5.018 ; #1982 16 60.616 5.023 60.599 5.013 60.636 5.141 60.618 5.023 ; #1983 16 61.994 5.163 62.040 5.183 62.074 5.148 62.057 5.028 ; #1984 16 59.354 5.225 59.256 5.182 59.186 5.302 59.283 5.334 59.345 5.320 59.406 5.296 59.433 5.249 59.354 5.230 ; #1985 16 59.845 5.274 59.828 5.157 59.730 5.183 59.641 5.176 59.739 5.254 59.712 5.373 59.801 5.334 ; #1986 16 59.337 5.353 59.337 5.389 59.354 5.353 ; #1987 16 60.024 5.514 60.007 5.397 59.990 5.516 59.938 5.636 60.029 5.714 60.102 5.629 60.029 5.514 ; #1988 16 62.337 5.846 62.354 5.724 62.346 5.593 62.244 5.634 62.253 5.765 62.335 5.843 ; #1989 16 62.446 6.047 62.464 5.925 62.371 5.918 62.279 5.910 62.352 6.028 62.445 6.047 ; #1990 16 62.514 6.287 62.522 6.298 62.522 6.165 ; #1991 16 62.483 6.200 62.446 6.334 62.475 6.322 ; #1992 16 62.781 6.873 62.781 6.740 62.735 6.911 62.781 6.875 ; #1993 16 62.901 6.976 62.901 6.843 62.864 6.966 ; #1994 16 63.159 7.737 63.151 7.859 63.069 7.812 63.078 7.872 63.151 7.859 63.177 7.737 ; #1995 16 63.187 8.099 63.204 8.232 63.267 8.098 63.204 7.977 ; #1996 16 63.364 8.258 63.327 8.136 63.355 8.269 ; #1997 16 63.252 8.319 63.207 8.453 63.215 8.575 63.317 8.514 63.308 8.392 63.254 8.322 ; #1998 16 63.510 8.352 63.476 8.400 63.467 8.523 63.496 8.656 63.513 8.790 63.521 8.923 63.547 9.057 63.639 9.127 63.693 8.993 63.676 8.871 63.659 8.737 63.622 8.604 63.594 8.737 63.594 8.482 63.513 8.349 ; #1999 16 63.429 8.646 63.420 8.524 63.375 8.670 63.431 8.646 ; #2000 16 78.371 12.023 78.426 11.922 78.491 11.763 78.512 11.615 78.578 11.454 78.599 11.293 78.698 11.147 78.811 11.044 78.886 10.896 78.908 10.734 78.874 10.557 78.761 10.629 78.685 10.790 78.606 10.937 78.493 11.067 78.483 11.215 78.473 11.376 78.438 11.537 78.373 11.697 78.298 11.843 78.263 12.003 78.263 12.165 78.363 12.021 ; #2001 16 79.730 10.969 79.751 10.955 79.782 10.804 79.751 10.639 79.740 10.790 ; #2002 16 79.224 11.170 79.125 11.228 79.146 11.378 79.167 11.556 79.211 11.720 79.324 11.591 79.290 11.740 79.311 11.906 79.221 12.066 79.156 11.855 79.091 11.704 79.002 12.086 78.957 11.998 78.978 11.717 79.010 11.541 79.020 11.378 78.965 11.228 78.931 11.390 78.876 11.552 78.764 11.549 78.688 11.696 78.633 11.870 78.633 12.032 78.588 12.193 78.567 12.516 78.578 12.679 78.556 12.840 78.546 12.664 78.546 12.354 78.501 12.176 78.446 12.322 78.415 12.483 78.405 12.645 78.292 12.698 78.271 12.858 78.271 13.181 78.261 13.341 78.261 13.503 78.316 13.668 78.337 13.817 78.326 13.964 78.438 14.102 78.428 14.249 78.428 14.411 78.460 14.575 78.515 14.417 78.559 14.258 78.614 14.410 78.727 14.346 78.761 14.510 78.772 14.660 78.659 14.769 78.680 14.933 78.758 15.102 78.871 15.198 78.782 15.354 78.659 15.287 78.625 15.122 78.512 15.275 78.501 15.436 78.512 15.612 78.522 15.762 78.564 15.941 78.585 16.092 78.685 16.264 78.750 16.420 78.706 16.577 78.695 16.739 78.651 16.585 78.596 16.431 78.483 16.271 78.483 16.433 78.449 16.591 78.428 16.764 78.449 16.929 78.449 17.091 78.418 16.939 78.383 16.773 78.383 16.288 78.394 16.128 78.405 15.981 78.383 15.831 78.383 15.669 78.271 15.498 78.282 15.337 78.271 15.162 78.216 14.995 78.161 14.844 78.161 14.536 78.151 14.374 78.151 14.199 78.130 14.050 78.017 14.173 78.072 14.016 78.127 13.872 78.148 13.726 78.127 13.550 78.015 13.428 77.902 13.465 77.779 13.574 77.779 13.748 77.813 13.910 77.823 14.057 77.813 14.217 77.834 14.365 77.823 14.538 77.834 14.699 77.844 14.846 77.854 14.993 77.899 15.144 77.920 15.306 77.931 15.481 77.886 15.638 77.876 15.784 77.897 15.932 77.897 16.253 77.907 16.414 77.907 16.588 77.972 16.755 77.972 16.902 77.860 16.818 77.826 16.975 77.847 16.831 77.847 16.657 77.836 16.509 77.836 16.349 77.826 16.174 77.816 16.027 77.805 15.865 77.805 15.705 77.795 15.544 77.773 15.222 77.763 15.048 77.742 14.900 77.732 14.739 77.711 14.591 77.679 14.749 77.669 14.894 77.679 15.068 77.658 15.213 77.648 15.385 77.637 15.530 77.637 15.690 77.603 15.833 77.559 15.975 77.504 16.128 77.515 15.971 77.556 15.829 77.590 15.672 77.590 15.353 77.600 15.194 77.600 15.048 77.622 14.890 77.600 14.729 77.545 14.579 77.590 14.436 77.635 14.293 77.635 14.120 77.625 13.959 77.545 13.808 77.433 13.900 77.255 14.206 77.234 14.363 77.244 14.509 77.210 14.679 77.200 14.837 77.124 14.990 77.079 15.144 77.069 15.302 77.069 15.605 77.134 15.756 77.145 15.928 77.079 16.067 77.069 16.224 77.048 16.394 77.016 16.219 77.038 16.076 77.048 15.919 77.016 15.758 76.996 15.598 76.941 15.435 76.909 15.591 76.865 15.744 76.820 15.884 76.799 16.040 76.755 16.180 76.642 16.239 76.687 16.400 76.642 16.540 76.642 16.711 76.663 16.857 76.718 17.020 76.831 16.992 76.886 16.854 76.951 17.019 77.006 17.170 77.119 17.125 77.174 17.290 77.297 17.361 77.409 17.460 77.522 17.619 77.564 17.784 77.564 18.089 77.632 18.244 77.745 18.273 77.868 18.374 77.981 18.290 78.093 18.377 78.114 18.541 78.093 18.686 78.114 18.849 78.180 19.020 78.247 18.868 78.279 19.020 78.402 18.994 78.515 18.955 78.525 19.105 78.536 19.282 78.556 19.434 78.656 19.643 78.666 19.793 78.646 19.952 78.666 19.983 78.688 20.149 78.688 20.311 78.677 20.458 78.721 20.614 78.711 20.776 78.701 20.921 78.701 21.084 78.711 21.235 78.766 21.394 78.879 21.488 78.900 21.328 78.910 21.181 78.931 21.022 78.941 20.861 78.952 20.700 78.963 20.552 78.973 20.405 79.004 20.247 79.025 20.087 79.036 19.940 79.091 19.830 79.167 19.693 79.167 19.529 79.188 19.369 79.188 19.219 79.154 19.064 79.164 18.887 79.253 18.750 79.274 18.590 79.342 18.763 79.466 18.740 79.555 18.602 79.575 18.440 79.607 18.293 79.607 18.128 79.531 17.953 79.418 17.837 79.439 17.690 79.552 17.598 79.630 17.759 79.743 17.908 79.787 17.734 79.830 17.588 79.863 17.427 79.908 17.129 79.919 16.965 79.842 16.790 79.874 16.628 79.963 16.486 80.009 16.371 80.022 16.221 80.022 16.206 79.952 16.157 79.840 16.145 79.850 15.981 79.761 15.792 79.638 15.868 79.526 15.990 79.413 16.067 79.301 16.129 79.246 16.273 79.133 16.366 79.044 16.506 78.920 16.535 78.975 16.378 79.088 16.240 79.143 16.096 79.164 15.934 79.143 15.782 79.256 15.835 79.311 15.676 79.423 15.536 79.547 15.414 79.625 15.270 79.691 15.125 79.735 14.978 79.767 14.815 79.777 14.651 79.698 14.479 79.586 14.351 79.586 14.172 79.497 14.002 79.384 14.096 79.272 14.088 79.384 13.946 79.426 13.784 79.471 13.622 79.426 13.455 79.447 13.292 79.570 13.386 79.570 13.222 79.559 13.056 79.549 12.877 79.539 12.711 79.559 12.548 79.570 12.713 79.614 12.866 79.636 13.018 79.657 13.170 79.657 13.349 79.667 13.515 79.667 13.679 79.677 13.831 79.712 13.999 79.824 13.932 79.824 13.766 79.813 13.614 79.813 13.449 79.793 13.282 79.793 13.117 79.772 12.965 79.738 12.798 79.727 12.632 79.772 12.469 79.793 12.318 79.772 12.152 79.659 12.190 79.649 12.038 79.761 11.891 79.806 11.741 79.775 11.561 79.740 11.409 79.665 11.242 79.610 11.391 79.610 11.241 79.620 11.062 79.565 10.897 79.544 11.075 79.544 10.910 79.502 10.716 79.468 10.881 79.345 10.851 79.301 11.001 79.201 11.162 ; #2003 16 64.972 10.969 64.910 10.833 64.936 10.969 64.972 11.105 ; #2004 16 64.919 10.957 64.927 11.082 64.874 11.216 64.936 11.341 64.964 11.206 64.947 11.082 64.921 10.957 ; #2005 16 64.518 11.335 64.527 11.459 64.563 11.324 64.645 11.179 64.544 11.201 64.516 11.335 ; #2006 16 64.714 11.350 64.706 11.214 64.632 11.349 ; #2007 16 64.639 11.397 64.594 11.386 64.594 11.520 ; #2008 16 65.147 11.842 65.147 11.706 65.070 11.580 65.089 11.704 ; #2009 16 65.668 11.826 65.641 11.875 65.641 12.000 65.738 11.953 65.670 11.826 ; #2010 16 65.930 12.558 65.938 12.596 65.995 12.758 66.013 12.884 66.040 12.759 66.049 12.675 66.013 12.537 65.907 12.434 65.925 12.560 ; #2011 16 66.191 12.664 66.239 12.502 66.142 12.450 66.094 12.574 66.142 12.713 66.189 12.667 ; #2012 16 68.051 13.003 67.954 12.914 67.925 13.053 67.972 13.129 68.001 13.155 68.049 13.207 68.145 13.187 68.087 13.056 ; #2013 16 66.249 13.021 66.214 12.894 66.241 13.020 ; #2014 16 66.297 13.122 66.326 13.111 66.270 12.983 ; #2015 16 68.060 13.249 68.060 13.378 68.125 13.467 68.173 13.508 68.202 13.380 68.105 13.236 68.058 13.246 ; #2016 16 68.207 13.638 68.110 13.544 68.166 13.686 68.184 13.816 68.222 13.946 68.231 14.088 68.299 14.204 68.299 14.075 68.364 13.938 68.317 13.795 68.326 13.654 68.270 13.691 68.252 13.561 68.204 13.634 ; #2017 16 68.304 14.247 68.304 14.286 68.369 14.277 68.387 14.136 68.301 14.246 ; #2018 16 67.199 14.132 67.122 14.140 67.113 14.267 67.210 14.272 67.201 14.133 ; #2019 16 68.283 14.323 68.247 14.450 68.283 14.593 68.322 14.736 68.331 14.877 68.378 14.994 68.408 15.031 68.504 15.127 68.495 14.997 68.418 14.852 68.475 14.831 68.475 14.702 68.448 14.559 68.342 14.452 68.304 14.321 68.294 14.333 68.286 14.320 ; #2020 16 68.622 14.935 68.622 14.998 68.640 15.129 68.667 15.283 68.705 15.415 68.734 15.441 68.791 15.315 68.888 15.372 68.953 15.246 69.030 15.109 68.933 15.103 68.827 15.058 68.883 14.998 68.836 14.995 68.818 14.853 68.854 14.700 68.757 14.594 68.691 14.448 68.644 14.588 68.721 14.721 68.702 14.861 68.759 15.006 68.741 15.134 68.702 15.003 68.685 14.860 68.617 14.935 ; #2021 16 68.536 14.774 68.536 14.864 68.572 14.995 68.590 14.996 68.608 14.907 68.617 14.779 68.581 14.635 68.533 14.774 ; #2022 16 68.913 14.999 68.960 15.002 68.913 14.858 ; #2023 16 68.274 14.850 68.322 14.993 68.304 14.852 ; #2024 16 67.954 15.000 67.954 15.011 67.963 15.140 67.990 15.270 68.038 15.133 67.990 15.002 ; #2025 16 68.739 15.471 68.642 15.501 68.612 15.370 68.603 15.240 68.506 15.298 68.441 15.165 68.335 15.123 68.412 15.268 68.459 15.424 68.488 15.555 68.383 15.435 68.373 15.563 68.346 15.690 68.443 15.783 68.529 15.918 68.423 15.935 68.491 16.068 68.588 16.138 68.597 16.268 68.597 16.397 68.605 16.539 68.671 16.607 68.768 16.602 68.865 16.633 68.894 16.494 68.913 16.366 68.894 16.235 68.797 16.240 68.788 16.110 68.732 16.055 68.674 15.921 68.588 15.786 68.685 15.844 68.732 15.988 68.829 16.007 68.782 15.862 68.888 15.945 68.985 15.951 68.993 15.928 68.993 15.707 68.964 15.657 68.867 15.663 68.770 15.582 68.743 15.709 68.761 15.581 68.743 15.465 ; #2026 16 69.010 15.720 69.038 15.852 69.115 16.000 69.180 16.134 69.287 16.205 69.316 16.065 69.277 15.932 69.180 15.822 69.162 15.691 69.065 15.555 68.960 15.485 68.951 15.614 69.007 15.720 ; #2027 16 68.080 15.661 68.042 15.530 68.033 15.658 68.042 15.799 68.060 15.929 68.069 15.789 68.078 15.661 ; #2028 16 68.498 16.165 68.450 16.303 68.459 16.444 68.556 16.476 68.574 16.348 68.538 16.216 68.500 16.162 ; #2029 16 68.913 16.556 68.960 16.689 68.989 16.549 68.941 16.416 ; #2030 16 79.989 18.587 79.945 18.400 79.934 18.247 79.900 18.076 79.868 18.224 79.813 18.368 79.793 18.530 79.761 18.676 79.740 18.839 79.740 19.169 79.751 19.337 79.730 19.513 79.740 19.665 79.751 19.833 79.761 19.968 79.782 20.123 79.803 20.306 79.803 20.623 79.813 20.789 79.824 20.943 79.824 21.275 79.834 21.456 79.834 21.759 79.779 21.927 79.801 22.097 79.801 22.248 79.769 22.077 79.758 21.895 79.714 21.721 79.724 21.544 79.724 21.031 79.704 20.696 79.704 20.531 79.636 20.684 79.625 20.833 79.614 20.996 79.604 20.816 79.604 20.468 79.625 20.306 79.659 20.161 79.659 20.010 79.649 19.964 79.649 19.798 79.638 19.646 79.562 19.784 79.541 19.946 79.541 19.974 79.507 20.132 79.486 20.279 79.486 20.626 79.442 20.783 79.397 20.939 79.408 21.106 79.418 21.272 79.429 21.452 79.408 21.599 79.397 21.761 79.418 21.929 79.439 22.098 79.439 22.262 79.429 22.467 79.429 22.618 79.439 22.798 79.360 22.617 79.295 22.768 79.264 22.911 79.253 23.072 79.232 23.232 79.232 23.396 79.221 23.557 79.221 23.899 79.232 24.066 79.276 24.226 79.353 24.393 79.363 24.560 79.397 24.733 79.408 24.886 79.363 25.025 79.374 25.192 79.394 25.362 79.416 25.531 79.437 25.687 79.512 25.886 79.625 25.782 79.659 25.942 79.680 26.113 79.701 26.283 79.722 26.454 79.787 26.637 79.822 26.798 79.866 27.142 79.978 27.100 79.989 27.104 80.110 26.984 80.163 26.846 80.176 26.698 80.189 26.534 80.189 25.896 80.176 25.726 80.202 25.581 80.245 25.425 80.232 25.241 80.274 25.099 80.274 24.917 80.261 24.748 80.300 24.590 80.274 24.432 80.398 24.279 80.385 24.123 80.343 24.295 80.287 24.129 80.329 23.973 80.304 23.814 80.179 23.620 80.153 23.462 80.153 23.296 80.166 23.132 80.153 22.977 80.278 23.156 80.418 23.110 80.431 23.266 80.499 23.127 80.513 22.962 80.555 22.804 80.415 22.776 80.359 22.597 80.457 22.435 80.317 22.542 80.176 22.380 80.036 22.399 79.984 22.328 79.974 22.174 79.984 22.176 80.091 22.031 80.117 21.884 80.143 21.737 80.104 21.563 80.186 21.744 80.242 21.602 80.281 21.443 80.211 21.278 80.238 21.116 80.225 20.961 80.211 20.779 80.310 20.643 80.336 20.480 80.447 20.331 80.434 20.162 80.447 20.011 80.487 19.865 80.513 19.716 80.487 19.544 80.418 19.701 80.391 19.863 80.268 19.678 80.242 19.507 80.310 19.365 80.350 19.204 80.362 19.039 80.222 19.139 80.170 19.284 80.170 19.464 80.072 19.284 80.114 19.123 80.140 18.975 80.196 18.802 80.209 18.652 80.182 18.468 80.170 18.314 80.182 18.149 80.170 17.995 80.156 17.813 80.130 17.975 80.088 18.151 80.062 18.300 80.062 18.133 80.036 18.282 80.022 18.446 80.009 18.610 80.022 18.778 79.986 18.745 79.986 18.579 ; #2031 16 80.254 18.409 80.350 18.558 80.375 18.408 80.388 18.243 80.304 18.079 80.290 18.244 80.251 18.405 ; #2032 16 69.300 17.039 69.309 17.182 69.262 17.036 69.214 17.174 69.176 17.029 69.147 16.897 69.108 17.024 69.108 17.165 69.127 17.297 69.183 17.444 69.183 17.885 69.201 18.017 69.248 17.891 69.266 17.981 69.363 18.054 69.460 18.063 69.431 17.917 69.478 18.064 69.508 17.924 69.555 17.798 69.602 17.671 69.505 17.699 69.582 17.575 69.485 17.670 69.494 17.528 69.541 17.390 69.512 17.232 69.446 17.382 69.446 17.512 69.429 17.368 69.411 17.342 69.411 17.303 69.420 17.173 69.411 17.042 69.393 16.897 69.374 17.026 69.374 17.051 69.298 17.033 ; #2033 16 68.777 17.142 68.854 17.136 68.863 17.007 68.766 16.870 68.775 17.000 68.775 17.141 ; #2034 16 68.903 17.164 68.838 17.312 68.876 17.458 68.953 17.334 68.953 17.181 68.906 17.164 ; #2035 16 69.699 18.864 69.717 18.929 69.794 19.080 69.841 18.954 69.889 18.827 69.871 18.683 69.814 18.808 69.717 18.695 69.823 18.629 69.726 18.464 69.708 18.606 69.717 18.463 69.652 18.314 69.652 18.457 69.634 18.300 69.577 18.164 69.548 18.304 69.557 18.435 69.575 18.580 69.593 18.713 69.602 18.844 69.699 18.867 ; #2036 16 74.359 19.038 74.397 19.152 74.500 19.206 74.531 19.059 74.521 18.905 74.491 18.762 74.421 18.893 74.361 19.038 ; #2037 16 79.371 19.970 79.371 20.134 79.402 19.975 79.413 19.813 79.358 19.654 79.358 19.817 79.368 19.969 ; #2038 16 70.009 18.724 70.009 18.775 70.059 18.845 70.109 19.007 70.099 18.875 70.109 18.732 70.006 18.720 ; #2039 16 70.009 18.855 69.911 18.857 69.864 19.008 69.807 19.145 69.826 19.291 69.864 19.437 69.970 19.580 70.009 19.716 70.009 19.600 70.049 19.461 70.009 19.456 70.009 19.408 70.090 19.286 70.099 19.156 70.040 19.005 70.030 18.872 70.011 18.859 ; #2040 16 79.023 20.330 79.033 20.432 79.054 20.599 79.099 20.785 79.120 20.639 79.140 20.465 79.130 20.313 79.052 20.151 79.020 20.322 ; #2041 16 80.732 20.822 80.774 20.983 80.787 20.817 80.813 20.513 80.770 20.660 80.729 20.821 ; #2042 16 78.518 20.127 78.496 20.299 78.486 20.474 78.441 20.614 78.353 20.747 78.273 20.894 78.253 21.052 78.273 21.203 78.284 21.366 78.284 21.528 78.305 21.679 78.305 21.840 78.295 22.000 78.295 22.162 78.418 22.244 78.530 22.239 78.606 22.106 78.606 21.944 78.627 21.799 78.638 21.639 78.617 21.487 78.661 21.347 78.661 21.171 78.596 20.996 78.596 20.834 78.575 20.682 78.564 20.518 78.544 20.191 78.522 20.128 ; #2043 16 80.676 20.705 80.715 20.726 80.702 20.556 ; #2044 16 70.212 19.101 70.152 19.239 70.255 19.251 70.274 19.121 70.214 19.102 ; #2045 16 70.152 19.358 70.133 19.380 70.164 19.527 70.154 19.358 ; #2046 16 70.009 19.802 69.961 19.692 69.864 19.538 69.882 19.684 69.911 19.831 70.009 19.918 ; #2047 16 70.162 19.977 70.231 19.841 70.251 19.712 70.260 19.581 70.178 19.703 70.075 19.743 70.066 19.885 70.066 19.974 70.107 20.111 70.157 19.973 ; #2048 16 70.162 20.411 70.059 20.486 70.049 20.629 70.130 20.783 70.233 20.837 70.252 20.696 70.222 20.548 70.162 20.408 ; #2049 16 69.823 20.695 69.920 20.783 69.929 20.641 69.832 20.590 69.823 20.692 ; #2050 16 70.009 20.797 69.961 20.947 70.009 21.109 70.009 20.965 70.049 20.827 ; #2051 16 70.009 21.701 70.009 21.750 70.049 21.612 70.009 21.698 ; #2052 16 70.789 23.461 70.830 23.521 70.820 23.387 70.811 23.240 70.839 23.112 70.737 23.160 70.696 23.008 70.767 22.888 70.748 22.739 70.679 22.860 70.688 22.730 70.738 22.593 70.669 22.437 70.698 22.297 70.679 22.162 70.660 22.014 70.619 22.140 70.588 22.279 70.507 22.135 70.557 22.287 70.526 22.439 70.535 22.572 70.535 22.717 70.545 22.851 70.595 23.003 70.658 23.146 70.727 23.316 70.787 23.459 ; #2053 16 80.549 24.035 80.523 24.044 80.549 24.203 ; #2054 16 80.421 24.312 80.447 24.305 80.421 24.131 ; #2055 16 70.265 22.833 70.265 22.977 70.368 22.877 70.349 22.742 70.399 22.618 70.379 22.471 70.289 22.589 70.279 22.719 70.270 22.834 ; #2056 16 70.593 23.624 70.643 23.609 70.552 23.461 70.502 23.308 70.531 23.181 70.502 23.044 70.430 22.887 70.379 23.024 70.411 23.173 70.298 23.194 70.368 23.350 70.418 23.527 70.487 23.683 70.590 23.622 ; #2057 16 70.542 24.028 70.583 24.060 70.686 24.119 70.737 23.955 70.727 23.821 70.737 23.690 70.634 23.647 70.552 23.778 70.533 23.943 70.542 24.025 ; #2058 16 71.017 23.953 70.944 24.085 70.954 24.219 71.057 24.093 71.057 23.960 71.019 23.953 ; #2059 16 71.098 24.060 71.069 24.042 71.107 24.195 ; #2060 16 78.661 26.767 78.740 26.937 78.772 26.783 78.827 26.649 78.761 26.482 78.717 26.619 ; #2061 16 71.017 26.012 71.017 26.158 71.036 26.016 71.139 26.115 71.158 25.973 71.198 25.848 71.198 25.703 71.139 25.557 71.120 25.408 71.069 25.544 70.966 25.601 70.976 25.760 71.004 25.899 71.014 26.006 ; #2062 16 80.186 27.879 80.117 27.707 80.117 27.859 80.156 28.037 80.182 27.878 ; #2063 16 78.855 28.133 78.865 28.150 78.886 28.306 78.920 28.479 78.910 28.639 78.931 28.809 78.931 28.957 78.897 29.110 78.886 29.255 78.897 29.436 78.941 29.599 78.931 29.446 78.931 29.106 78.975 28.957 78.986 28.811 78.996 28.638 78.986 28.485 78.941 28.308 78.931 28.142 78.865 27.960 ; #2064 16 10.804 0.795 10.714 0.804 10.631 0.787 10.547 0.780 10.456 0.789 10.383 0.894 10.317 0.998 10.251 1.093 10.243 1.111 10.203 1.169 10.155 1.244 10.097 1.340 10.014 1.349 9.922 1.358 9.756 1.359 9.665 1.342 9.582 1.360 9.534 1.387 9.443 1.397 9.402 1.425 9.387 1.443 9.303 1.519 9.212 1.583 9.122 1.601 9.038 1.601 8.955 1.611 8.690 1.612 8.607 1.641 8.516 1.604 8.475 1.604 8.377 1.614 8.294 1.623 7.779 1.626 7.696 1.635 7.640 1.635 7.557 1.627 7.175 1.629 7.117 1.621 7.109 1.537 7.026 1.566 6.936 1.593 6.852 1.602 6.769 1.594 6.686 1.640 6.693 1.649 6.611 1.676 6.520 1.751 6.396 1.778 6.380 1.675 6.355 1.611 6.340 1.611 6.355 1.715 6.380 1.809 6.396 1.912 6.396 1.967 6.411 2.062 6.419 2.165 6.434 2.260 6.442 2.355 6.450 2.438 6.450 2.455 6.458 2.559 6.473 2.653 6.473 2.691 6.564 2.690 6.622 2.707 6.705 2.725 6.746 2.716 6.829 2.762 6.920 2.715 7.003 2.724 7.094 2.705 7.177 2.742 7.260 2.751 7.344 2.742 7.442 2.732 7.525 2.732 7.541 2.778 7.624 2.749 7.707 2.711 7.764 2.702 7.847 2.711 7.930 2.693 7.971 2.675 7.995 2.657 8.011 2.666 8.094 2.683 8.119 2.683 8.202 2.700 8.294 2.717 8.377 2.699 8.460 2.690 8.551 2.719 8.634 2.727 8.700 2.726 8.783 2.717 8.866 2.717 8.907 2.734 8.990 2.751 9.073 2.751 9.156 2.760 9.156 2.958 9.189 3.061 9.272 3.098 9.363 3.124 9.447 3.133 9.530 3.104 9.628 3.187 9.719 3.224 9.760 3.319 9.851 3.301 9.907 3.329 9.940 3.433 9.973 3.527 10.056 3.582 10.087 3.582 10.160 3.590 10.243 3.647 10.342 3.562 10.426 3.580 10.516 3.625 10.501 3.720 10.584 3.774 10.675 3.820 10.758 3.811 10.841 3.746 10.932 3.717 10.981 3.734 11.071 3.716 11.155 3.698 11.203 3.697 11.286 3.602 11.377 3.546 11.460 3.480 11.559 3.461 11.642 3.498 11.733 3.533 11.758 3.550 11.766 3.559 11.774 3.568 11.832 3.521 11.905 3.465 11.955 3.370 11.955 3.361 11.971 3.343 12.004 3.248 12.060 3.230 12.108 3.201 12.116 3.192 12.116 3.183 12.140 3.165 12.306 2.994 12.379 2.898 12.463 2.813 12.447 2.739 12.373 2.644 12.358 2.540 12.343 2.445 12.317 2.351 12.234 2.360 12.143 2.388 12.060 2.417 11.977 2.380 11.969 2.371 11.929 2.354 11.838 2.308 11.754 2.291 11.689 2.188 11.598 2.085 11.565 2.057 11.509 1.993 11.509 1.880 11.517 1.785 11.501 1.682 11.468 1.587 11.534 1.492 11.534 1.407 11.443 1.334 11.360 1.259 11.344 1.164 11.261 1.127 11.170 1.082 11.155 0.987 11.131 0.941 11.081 0.951 11.081 0.904 10.998 0.879 10.915 0.871 10.816 0.805 10.801 0.788 ; #2065 16 61.359 5.079 61.376 5.220 61.275 5.167 61.303 5.285 61.320 5.415 61.338 5.534 61.320 5.665 61.320 5.534 61.303 5.415 61.295 5.296 61.260 5.167 61.168 5.302 61.150 5.173 61.113 5.316 61.051 5.449 61.034 5.497 61.060 5.615 61.105 5.733 61.113 5.863 61.113 5.982 61.150 6.112 61.113 6.233 61.096 6.363 61.079 6.483 61.096 6.602 61.159 6.611 61.251 6.642 61.288 6.760 61.187 6.669 61.170 6.681 61.170 6.703 61.142 6.834 61.133 6.965 61.150 7.095 61.196 7.175 61.196 7.197 61.113 7.069 61.096 7.199 61.125 7.329 61.125 7.449 61.217 7.388 61.319 7.408 61.400 7.537 61.445 7.656 61.260 7.398 61.168 7.448 61.168 7.553 61.159 7.684 61.142 7.554 61.079 7.436 61.105 7.316 61.079 7.222 60.998 7.106 60.905 7.202 60.922 7.071 60.885 6.942 60.941 7.060 61.034 6.962 61.107 6.841 61.125 6.699 61.051 6.582 61.034 6.452 61.060 6.321 61.068 6.179 61.068 6.145 61.077 6.014 61.068 5.885 61.051 5.766 61.023 5.648 60.978 5.519 61.006 5.388 61.034 5.256 61.025 5.125 60.933 5.130 60.933 5.260 60.924 5.261 60.879 5.205 60.842 5.184 60.898 5.087 60.797 5.150 60.797 5.231 60.780 5.350 60.834 5.417 60.834 5.547 60.816 5.429 60.715 5.423 60.623 5.438 60.704 5.315 60.704 5.279 60.750 5.147 60.758 5.028 60.702 5.149 60.610 5.200 60.584 5.235 60.519 5.332 60.519 5.390 60.556 5.507 60.657 5.633 60.702 5.772 60.610 5.798 60.509 5.780 60.472 5.770 60.455 5.771 60.418 5.762 60.392 5.644 60.375 5.515 60.476 5.417 60.384 5.352 60.338 5.236 60.293 5.356 60.201 5.349 60.119 5.471 60.153 5.588 60.246 5.664 60.338 5.718 60.246 5.700 60.153 5.668 60.145 5.786 60.052 5.790 59.953 5.816 59.953 5.934 60.033 5.975 60.126 6.008 60.218 6.122 60.226 6.240 60.328 6.295 60.364 6.412 60.392 6.540 60.427 6.669 60.410 6.799 60.446 6.916 60.455 7.046 60.446 7.176 60.438 7.046 60.429 6.928 60.375 6.800 60.283 6.710 60.190 6.677 60.098 6.600 60.190 6.632 60.291 6.687 60.384 6.662 60.330 6.545 60.276 6.395 60.214 6.279 60.121 6.178 60.065 6.298 60.048 6.170 59.957 6.033 59.948 6.045 59.897 5.917 59.826 5.802 59.790 5.770 59.747 5.890 59.739 5.948 59.722 6.088 59.755 6.216 59.747 6.205 59.703 6.089 59.703 5.996 59.659 5.868 59.634 5.998 59.608 5.870 59.634 5.752 59.618 5.624 59.528 5.638 59.458 5.523 59.483 5.419 59.500 5.536 59.589 5.578 59.678 5.596 59.634 5.470 59.545 5.356 59.475 5.348 59.377 5.341 59.350 5.364 59.279 5.484 59.368 5.516 59.262 5.521 59.262 5.531 59.290 5.647 59.379 5.666 59.414 5.536 59.475 5.687 59.269 5.695 59.312 5.821 59.312 5.939 59.402 5.903 59.385 5.786 59.437 5.901 59.445 6.030 59.445 6.158 59.420 6.041 59.331 6.009 59.375 6.136 59.427 6.263 59.462 6.273 59.560 6.362 59.524 6.481 59.533 6.598 59.508 6.481 59.481 6.364 59.464 6.319 59.429 6.263 59.385 6.207 59.315 6.081 59.298 6.210 59.298 6.327 59.281 6.199 59.246 6.222 59.271 6.350 59.298 6.466 59.298 6.584 59.281 6.467 59.246 6.304 59.219 6.226 59.148 6.111 59.131 6.229 59.106 6.102 59.079 5.986 59.001 6.116 58.911 6.109 58.903 6.119 58.963 6.246 58.998 6.361 59.026 6.546 59.034 6.663 59.007 6.535 58.982 6.419 58.965 6.291 58.922 6.165 58.842 6.296 58.851 6.168 58.886 6.098 58.938 5.980 58.922 5.863 58.984 5.744 58.992 5.626 58.932 5.746 58.861 5.632 58.764 5.578 58.674 5.604 58.658 5.605 58.560 5.711 58.525 5.829 58.464 5.959 58.393 6.078 58.342 6.231 58.325 6.348 58.281 6.442 58.265 6.559 58.248 6.675 58.240 6.803 58.275 6.918 58.221 6.781 58.150 6.667 58.080 6.785 58.096 6.912 58.061 7.029 58.069 7.145 58.061 7.262 58.061 7.388 58.026 7.505 58.017 7.621 58.034 7.737 58.086 7.852 58.078 7.979 58.148 8.094 58.165 8.115 58.165 8.137 58.148 8.253 58.173 8.253 58.190 8.369 58.242 8.496 58.294 8.611 58.346 8.727 58.435 8.843 58.506 8.958 58.595 9.001 58.612 9.128 58.629 9.195 58.726 9.138 58.734 9.255 58.734 9.382 58.762 9.439 58.851 9.360 58.859 9.488 58.920 9.615 58.955 9.732 59.026 9.732 59.104 9.604 59.104 9.672 59.051 9.729 59.042 9.858 59.017 9.868 58.963 9.985 58.946 10.032 59.026 10.078 59.026 10.195 59.115 10.274 59.159 10.392 59.248 10.439 59.159 10.438 59.248 10.474 59.337 10.521 59.435 10.417 59.524 10.300 59.508 10.428 59.587 10.475 59.498 10.568 59.587 10.661 59.684 10.569 59.774 10.547 59.863 10.627 59.880 10.699 59.872 10.817 59.809 10.817 59.720 10.780 59.809 10.745 59.720 10.626 59.622 10.683 59.533 10.705 59.481 10.737 59.383 10.715 59.294 10.736 59.196 10.839 59.196 10.957 59.134 11.084 59.142 11.201 59.081 11.258 59.090 11.304 59.065 11.397 58.976 11.488 58.878 11.569 58.905 11.696 58.932 11.708 59.030 11.731 59.136 11.766 59.225 11.824 59.260 11.836 59.296 11.825 59.304 11.826 59.365 11.794 59.462 11.749 59.533 11.715 59.622 11.785 59.684 11.914 59.774 11.916 59.853 11.881 59.880 12.000 59.872 12.117 59.915 12.236 59.915 12.259 59.975 12.389 60.020 12.459 60.112 12.529 60.205 12.521 60.298 12.523 60.399 12.620 60.500 12.600 60.601 12.522 60.694 12.430 60.795 12.353 60.896 12.333 60.998 12.335 61.015 12.455 61.032 12.597 61.023 12.630 61.023 12.725 61.144 12.786 61.236 12.869 61.338 12.908 61.456 12.733 61.538 12.604 61.547 12.437 61.620 12.319 61.702 12.179 61.857 12.218 61.966 12.257 62.011 12.269 62.113 12.294 62.242 12.344 62.296 12.309 62.305 12.298 62.313 12.298 62.460 12.169 62.597 12.124 62.783 12.140 62.875 12.108 62.968 12.242 63.069 12.163 63.161 12.105 63.299 12.071 63.308 12.083 63.455 12.245 63.556 12.199 63.638 12.346 63.665 12.370 63.767 12.506 63.859 12.631 63.941 12.779 63.995 12.941 64.021 13.102 64.038 13.248 64.010 13.505 63.993 13.664 64.010 14.045 64.038 14.069 64.047 14.081 64.128 14.167 64.303 14.137 64.396 14.118 64.421 13.947 64.475 13.791 64.512 13.657 64.632 13.797 64.807 14.037 64.934 14.216 65.017 14.329 65.161 14.386 65.217 14.524 65.381 14.521 65.488 14.537 65.585 14.554 65.729 14.660 65.844 14.616 65.950 14.583 66.056 14.554 66.056 14.714 66.074 14.991 66.074 15.040 66.130 15.253 66.198 15.483 66.263 15.487 66.408 15.419 66.493 15.627 66.647 15.824 66.676 15.862 66.838 16.087 66.915 16.255 66.962 16.408 67.115 16.443 67.201 16.310 67.336 16.118 67.442 16.428 67.539 16.574 67.751 16.718 67.878 16.969 67.916 17.073 67.916 17.085 67.981 17.258 67.990 17.461 67.943 17.648 67.904 17.797 67.904 17.937 68.098 18.169 68.272 18.122 68.328 18.116 68.337 18.117 68.434 18.137 68.473 18.423 68.396 18.646 68.405 18.957 68.337 19.387 68.252 19.929 68.308 20.076 68.373 20.212 68.412 20.087 68.441 19.950 68.547 20.193 68.682 20.311 68.691 20.324 68.797 20.312 68.883 20.141 68.921 20.315 68.921 20.586 68.987 20.736 68.939 20.950 68.978 21.121 69.063 21.002 69.179 21.276 69.169 21.445 69.151 21.612 68.978 21.873 68.948 21.920 68.901 22.001 68.836 22.134 68.739 22.274 68.612 22.371 68.622 22.549 68.574 22.801 68.574 22.930 68.518 23.141 68.547 23.299 68.585 23.434 68.595 23.628 68.691 23.744 68.709 23.913 68.682 24.038 68.624 24.197 68.597 24.346 68.578 24.496 68.560 24.635 68.504 24.754 68.466 24.862 68.522 24.923 68.540 25.066 68.637 25.095 68.734 25.199 68.770 25.334 68.779 25.388 68.770 25.527 68.856 25.672 68.962 25.679 69.059 25.671 69.165 25.703 69.262 25.796 69.298 25.766 69.404 25.809 69.501 25.914 69.519 25.893 69.575 26.047 69.622 26.198 69.699 26.343 69.785 26.490 69.803 26.624 69.803 26.768 69.785 26.895 69.767 27.023 69.785 27.169 69.841 27.324 69.850 27.337 69.859 27.364 69.906 27.504 69.916 27.649 69.934 27.797 69.848 27.922 69.751 28.073 69.712 28.284 69.616 28.565 69.577 28.818 69.541 29.057 69.532 29.055 69.418 29.161 69.291 29.181 69.167 28.948 69.090 28.766 68.975 28.742 68.899 28.891 68.890 28.914 68.908 29.047 68.993 29.195 69.050 29.232 69.156 29.242 69.183 29.391 69.192 29.547 69.230 29.685 69.230 29.737 69.259 29.886 69.259 29.898 69.366 30.053 69.471 30.112 69.510 30.097 69.501 30.119 69.491 30.157 69.444 30.276 69.406 30.410 69.406 30.541 69.397 30.681 69.444 30.822 69.541 30.834 69.647 30.728 69.665 30.602 69.665 30.471 69.568 30.372 69.665 30.318 69.695 30.182 69.704 30.054 69.607 30.031 69.541 30.041 69.568 29.916 69.560 29.874 69.568 29.876 69.616 29.875 69.598 29.795 69.598 29.653 69.580 29.506 69.665 29.668 69.762 29.665 69.762 29.534 69.771 29.405 69.830 29.561 69.848 29.422 69.866 29.295 69.866 29.152 69.913 29.031 69.913 28.887 69.931 28.736 69.940 28.594 69.997 28.750 69.979 28.877 69.970 29.007 69.961 29.160 69.943 29.312 69.943 29.455 69.924 29.595 69.906 29.877 69.916 30.022 69.963 30.165 70.042 30.315 70.083 30.470 70.092 30.615 70.102 30.749 70.111 30.896 70.224 30.950 70.293 30.825 70.274 30.688 70.344 30.550 70.394 30.431 70.394 30.299 70.375 30.150 70.365 30.015 70.415 30.173 70.497 30.061 70.557 29.919 70.547 29.881 70.478 29.706 70.581 29.667 70.561 29.530 70.542 29.393 70.511 29.241 70.614 29.307 70.705 29.184 70.705 29.052 70.737 28.914 70.727 28.779 70.667 28.632 70.597 28.472 70.495 28.423 70.382 28.357 70.351 28.493 70.341 28.335 70.260 28.172 70.148 28.121 70.138 28.119 70.241 28.131 70.344 28.287 70.354 28.157 70.303 28.014 70.322 27.886 70.331 27.756 70.382 27.911 70.432 28.080 70.492 28.226 70.542 28.093 70.502 27.939 70.482 27.790 70.473 27.616 70.504 27.780 70.545 27.921 70.574 28.060 70.624 27.927 70.624 27.795 70.664 27.936 70.645 28.064 70.645 28.101 70.686 28.255 70.746 28.414 70.859 28.388 70.859 28.255 70.839 28.118 70.942 28.117 70.942 27.984 70.892 27.827 70.901 27.697 70.952 27.563 70.870 27.412 70.801 27.251 70.770 27.100 70.751 27.240 70.741 27.383 70.660 27.498 70.679 27.357 70.610 27.198 70.600 27.051 70.487 27.066 70.437 27.187 70.457 27.060 70.447 26.913 70.334 26.993 70.334 26.837 70.344 26.707 70.231 26.567 70.222 26.433 70.325 26.507 70.428 26.541 70.531 26.485 70.540 26.343 70.559 26.491 70.610 26.634 70.712 26.616 70.825 26.603 70.784 26.450 70.703 26.275 70.631 26.116 70.540 25.965 70.437 25.839 70.375 25.695 70.284 25.532 70.222 25.389 70.119 25.393 70.049 25.248 69.949 25.139 70.006 25.017 69.979 24.869 70.090 24.914 70.130 25.053 70.233 25.048 70.243 25.182 70.346 25.162 70.346 25.030 70.406 25.121 70.457 25.263 70.526 25.409 70.616 25.571 70.648 25.722 70.751 25.832 70.719 25.681 70.761 25.557 70.801 25.419 70.801 25.287 70.698 25.319 70.658 25.179 70.770 25.096 70.820 24.973 70.780 24.832 70.841 24.699 70.851 24.568 70.748 24.524 70.729 24.653 70.660 24.495 70.719 24.362 70.669 24.208 70.610 24.342 70.600 24.472 70.559 24.597 70.518 24.457 70.537 24.316 70.457 24.158 70.354 24.228 70.354 24.083 70.363 23.953 70.354 23.795 70.293 23.653 70.243 23.512 70.140 23.455 70.130 23.310 70.111 23.450 70.083 23.302 70.083 23.170 70.042 23.319 69.954 23.161 69.889 23.295 69.889 23.439 69.859 23.446 69.850 23.314 69.821 23.178 69.803 23.044 69.859 23.065 69.868 23.054 69.906 22.929 70.004 22.904 69.956 22.766 69.938 22.619 69.929 22.463 69.929 22.319 69.938 22.451 69.956 22.609 69.965 22.742 70.066 22.822 70.075 22.692 70.066 22.547 70.116 22.424 70.116 22.280 70.013 22.316 69.985 22.443 70.004 22.315 70.045 22.190 70.148 22.205 70.097 22.054 70.188 21.936 70.148 21.798 70.045 21.731 70.114 21.597 70.174 21.463 70.061 21.407 70.102 21.268 70.083 21.134 70.011 21.256 70.021 21.388 69.963 21.524 69.916 21.661 69.934 21.795 69.961 21.942 69.913 21.792 69.875 21.918 69.857 21.992 69.801 22.008 69.848 21.872 69.751 21.846 69.712 21.972 69.704 21.840 69.685 21.953 69.609 22.073 69.636 21.934 69.704 21.813 69.751 21.715 69.769 21.574 69.854 21.443 69.884 21.358 69.854 21.184 69.798 21.152 69.702 21.188 69.740 21.050 69.643 20.974 69.643 20.962 69.719 20.828 69.805 20.970 69.758 20.793 69.652 20.650 69.575 20.498 69.469 20.525 69.413 20.649 69.366 20.797 69.384 20.657 69.431 20.520 69.460 20.381 69.363 20.321 69.266 20.231 69.237 20.085 69.160 19.934 69.160 19.910 69.179 19.924 69.264 20.088 69.341 20.227 69.446 20.228 69.543 20.239 69.640 20.302 69.756 20.367 69.832 20.245 69.726 20.181 69.726 20.050 69.629 19.948 69.697 19.931 69.600 19.817 69.494 19.793 69.465 19.932 69.456 19.943 69.456 19.931 69.474 19.779 69.377 19.704 69.280 19.551 69.377 19.625 69.483 19.700 69.580 19.660 69.677 19.670 69.659 19.538 69.640 19.392 69.640 19.262 69.611 19.116 69.525 18.991 69.516 18.966 69.411 18.943 69.429 19.100 69.401 19.227 69.420 19.099 69.354 18.950 69.248 19.081 69.257 19.224 69.257 19.367 69.151 19.407 69.115 19.273 69.221 19.321 69.221 19.167 69.248 19.000 69.345 18.867 69.413 18.731 69.404 18.588 69.386 18.456 69.289 18.549 69.232 18.698 69.214 18.826 69.176 18.953 69.203 18.814 69.194 18.670 69.232 18.531 69.135 18.498 69.097 18.455 69.174 18.462 69.271 18.384 69.347 18.261 69.329 18.117 69.224 18.068 69.127 17.971 69.020 18.064 69.030 17.935 69.011 17.792 68.964 17.646 68.899 17.510 68.802 17.554 68.784 17.693 68.707 17.557 68.669 17.696 68.707 17.416 68.669 17.298 68.630 17.425 68.630 17.437 68.583 17.574 68.601 17.422 68.628 17.284 68.610 17.141 68.610 16.999 68.581 16.856 68.572 16.726 68.533 16.594 68.428 16.598 68.446 16.564 68.398 16.470 68.351 16.595 68.360 16.725 68.369 16.866 68.351 17.006 68.351 17.147 68.378 17.290 68.416 17.422 68.369 17.559 68.339 17.697 68.339 17.709 68.313 17.835 68.331 17.696 68.339 17.568 68.304 17.437 68.266 17.562 68.292 17.423 68.301 17.400 68.254 17.255 68.225 17.253 68.177 17.378 68.195 17.239 68.254 17.232 68.281 17.093 68.263 16.963 68.301 16.837 68.319 16.698 68.311 16.568 68.292 16.438 68.283 16.309 68.218 16.433 68.200 16.518 68.114 16.640 68.076 16.766 68.103 16.639 68.180 16.505 68.189 16.467 68.207 16.339 68.234 16.200 68.169 16.336 68.139 16.194 68.130 16.361 68.112 16.488 68.103 16.424 68.055 16.281 68.028 16.419 68.010 16.570 68.001 16.710 67.993 16.569 68.010 16.430 67.913 16.462 67.943 16.324 67.866 16.459 67.884 16.319 67.941 16.195 67.834 16.250 67.787 16.387 67.806 16.248 67.902 16.180 67.999 16.086 68.105 16.105 68.173 15.969 68.117 15.837 68.020 15.792 68.010 15.728 67.983 15.613 68.089 15.694 68.051 15.551 68.051 15.423 67.954 15.304 67.954 15.444 67.983 15.575 67.954 15.701 67.963 15.830 67.927 15.967 67.830 15.886 67.886 15.762 67.857 15.632 67.848 15.491 67.819 15.361 67.819 15.093 67.810 14.964 67.783 14.963 67.774 15.103 67.774 14.962 67.765 14.834 67.709 14.971 67.690 15.110 67.672 14.981 67.672 14.969 67.575 14.836 67.584 14.964 67.602 15.054 67.640 15.184 67.706 15.316 67.724 15.457 67.697 15.583 67.679 15.710 67.602 15.845 67.650 15.720 67.677 15.594 67.650 15.440 67.620 15.579 67.620 15.439 67.650 15.301 67.553 15.233 67.523 15.370 67.485 15.229 67.458 15.354 67.449 15.481 67.467 15.622 67.496 15.752 67.496 15.892 67.488 15.751 67.440 15.609 67.343 15.591 67.316 15.717 67.298 15.641 67.366 15.507 67.422 15.383 67.431 15.243 67.431 15.116 67.413 14.975 67.422 14.976 67.470 15.130 67.508 15.005 67.498 14.980 67.460 14.839 67.413 14.709 67.384 14.846 67.384 14.974 67.366 14.973 67.318 14.831 67.366 14.706 67.280 14.562 67.242 14.433 67.215 14.571 67.224 14.699 67.176 14.758 67.204 14.887 67.221 14.977 67.249 15.118 67.192 15.253 67.183 15.380 67.174 15.480 67.174 15.503 67.156 15.642 67.165 15.491 67.165 15.479 67.068 15.473 67.124 15.350 67.142 15.212 67.160 15.074 67.122 14.971 67.169 14.974 67.160 14.950 67.160 14.811 67.142 14.682 67.115 14.543 67.115 14.415 67.018 14.337 67.018 14.349 67.010 14.475 66.962 14.611 67.000 14.475 67.000 14.348 66.935 14.218 66.926 14.091 66.944 13.952 66.896 13.823 66.888 13.696 66.849 13.568 66.820 13.679 66.764 13.815 66.737 13.964 66.737 13.826 66.754 13.700 66.707 13.571 66.699 13.698 66.689 13.571 66.660 13.681 66.660 13.807 66.642 13.669 66.669 13.544 66.669 13.405 66.651 13.278 66.633 13.404 66.606 13.479 66.615 13.341 66.597 13.203 66.500 13.326 66.500 13.451 66.557 13.580 66.547 13.756 66.480 13.615 66.488 13.478 66.403 13.349 66.468 13.213 66.477 13.075 66.450 13.051 66.365 13.174 66.268 13.071 66.249 13.208 66.259 13.346 66.249 13.483 66.241 13.357 66.222 13.219 66.125 13.090 66.153 13.228 66.191 13.367 66.200 13.504 66.191 13.630 66.200 13.756 66.209 13.882 66.245 14.022 66.274 14.160 66.236 14.109 66.189 13.969 66.162 13.843 66.114 13.703 66.097 13.802 66.105 13.677 66.078 13.538 66.175 13.503 66.175 13.366 66.128 13.239 66.128 13.216 66.099 13.077 66.090 12.951 66.004 12.823 65.986 12.696 65.995 12.822 66.004 12.971 65.889 13.029 65.871 13.154 65.774 13.211 65.783 13.201 65.860 13.066 65.889 12.956 65.907 12.820 65.860 12.693 65.754 12.678 65.657 12.641 65.580 12.763 65.627 12.640 65.666 12.516 65.569 12.402 65.463 12.483 65.492 12.609 65.395 12.667 65.395 12.804 65.366 12.655 65.348 12.605 65.357 12.469 65.463 12.399 65.463 12.275 65.366 12.261 65.260 12.160 65.163 12.207 65.249 12.345 65.249 12.470 65.152 12.394 65.114 12.530 65.104 12.393 65.075 12.404 65.075 12.540 65.114 12.665 65.170 12.803 65.217 12.929 65.140 12.802 65.025 12.527 65.017 12.403 64.988 12.278 64.979 12.142 65.007 12.033 64.998 12.157 64.998 12.217 65.028 12.342 65.125 12.284 65.115 12.159 65.018 12.108 65.075 11.974 65.010 11.848 65.010 11.957 65.000 11.992 64.955 11.855 64.938 11.731 64.929 11.647 64.929 11.783 64.902 11.658 64.884 11.522 64.867 11.646 64.867 11.511 64.841 11.386 64.824 11.521 64.852 11.680 64.815 11.556 64.815 11.421 64.779 11.284 64.753 11.420 64.708 11.295 64.717 11.419 64.762 11.555 64.807 11.680 64.843 11.804 64.869 11.941 64.914 12.066 64.914 12.201 64.906 12.223 64.889 12.359 64.852 12.482 64.880 12.359 64.880 12.235 64.897 12.200 64.889 12.076 64.871 11.952 64.871 11.941 64.837 11.804 64.772 11.667 64.764 11.691 64.764 11.736 64.755 11.860 64.727 11.725 64.701 11.600 64.674 11.476 64.581 11.451 64.572 11.586 64.544 11.710 64.518 11.574 64.425 11.561 64.434 11.685 64.425 11.685 64.417 11.561 64.408 11.524 64.363 11.388 64.309 11.264 64.411 11.325 64.447 11.202 64.520 11.106 64.566 10.971 64.473 10.970 64.473 10.835 64.380 10.785 64.352 10.650 64.325 10.515 64.242 10.392 64.150 10.402 64.159 10.268 64.066 10.268 64.066 10.133 63.973 10.036 63.937 9.999 63.928 9.999 63.945 10.122 63.892 9.999 63.874 9.999 63.919 10.133 63.883 10.268 63.900 10.145 63.864 9.999 63.855 9.976 63.838 9.853 63.793 9.731 63.747 9.597 63.730 9.731 63.638 9.609 63.674 9.742 63.691 9.865 63.726 9.999 63.754 10.133 63.691 9.999 63.674 9.976 63.665 9.853 63.564 9.937 63.472 9.996 63.472 10.119 63.508 10.204 63.525 10.238 63.534 10.371 63.571 10.506 63.633 10.640 63.679 10.774 63.696 10.908 63.769 11.032 63.870 10.984 63.825 10.850 63.816 10.727 63.844 10.872 63.898 10.996 63.943 11.131 64.045 11.266 64.062 11.389 63.988 11.265 63.988 11.400 63.980 11.523 63.952 11.473 63.943 11.377 63.907 11.242 63.814 11.180 63.831 11.314 63.739 11.362 63.722 11.239 63.676 11.104 63.667 10.982 63.614 10.859 63.513 10.676 63.549 10.810 63.532 10.932 63.515 10.810 63.422 10.855 63.405 10.794 63.422 10.673 63.413 10.551 63.405 10.405 63.422 10.369 63.431 10.247 63.358 10.101 63.312 10.235 63.312 10.113 63.321 9.990 63.293 9.857 63.293 9.846 63.366 9.968 63.384 9.990 63.420 9.990 63.420 9.968 63.605 9.723 63.513 9.601 63.521 9.478 63.493 9.345 63.439 9.212 63.448 9.334 63.439 9.467 63.422 9.345 63.368 9.212 63.351 9.346 63.360 9.490 63.342 9.369 63.315 9.224 63.280 9.102 63.381 9.172 63.435 9.038 63.381 8.916 63.398 8.783 63.317 8.724 63.224 8.603 63.190 8.726 63.190 8.859 63.198 8.981 63.181 8.859 63.181 8.799 63.164 8.667 63.127 8.534 63.136 8.401 63.136 8.267 63.035 8.269 63.018 8.391 63.018 8.524 63.009 8.391 63.000 8.525 62.992 8.657 62.955 8.525 62.910 8.503 62.884 8.636 62.884 8.503 62.875 8.382 62.976 8.369 63.013 8.235 63.114 8.112 63.086 8.016 62.985 8.077 62.931 8.200 62.830 8.247 62.802 8.369 62.757 8.502 62.695 8.562 62.748 8.455 62.793 8.321 62.830 8.176 62.931 8.141 62.976 8.007 62.959 7.886 62.976 7.764 62.949 7.631 62.903 7.500 62.968 7.376 63.002 7.242 62.985 7.121 62.931 6.989 62.849 7.136 62.821 7.259 62.821 7.137 62.795 7.017 62.731 7.140 62.748 7.283 62.757 7.404 62.785 7.536 62.793 7.657 62.766 7.536 62.740 7.405 62.695 7.538 62.712 7.659 62.740 7.791 62.766 7.912 62.774 8.045 62.712 8.179 62.740 8.034 62.740 7.913 62.722 7.792 62.705 7.671 62.669 7.550 62.576 7.505 62.576 7.649 62.593 7.769 62.576 7.736 62.539 7.604 62.539 7.472 62.612 7.337 62.621 7.216 62.621 7.095 62.658 6.961 62.658 6.840 62.640 6.708 62.632 6.587 62.623 6.455 62.606 6.323 62.541 6.483 62.550 6.615 62.515 6.737 62.507 6.605 62.507 6.473 62.490 6.342 62.481 6.305 62.472 6.365 62.455 6.509 62.472 6.641 62.490 6.761 62.472 6.883 62.380 6.967 62.324 7.090 62.315 7.127 62.307 7.248 62.307 7.391 62.279 7.271 62.296 7.127 62.203 7.071 62.149 7.204 62.104 7.074 62.113 6.941 62.214 7.059 62.307 7.045 62.399 6.935 62.453 6.801 62.445 6.658 62.417 6.526 62.324 6.494 62.251 6.566 62.197 6.591 62.289 6.467 62.382 6.390 62.382 6.269 62.272 6.032 62.180 6.094 62.126 6.228 62.098 6.350 62.106 6.218 62.132 6.096 62.123 5.976 62.216 5.950 62.199 5.818 62.106 5.775 62.188 5.650 62.216 5.528 62.123 5.496 62.096 5.629 62.033 5.511 62.070 5.520 62.132 5.386 62.225 5.286 62.225 5.166 62.123 5.170 62.115 5.303 62.042 5.438 61.980 5.320 61.971 5.189 61.934 5.250 61.934 5.381 61.951 5.501 61.943 5.622 61.934 5.754 61.925 5.908 61.917 5.777 61.900 5.898 61.900 6.030 61.882 6.162 61.891 6.282 61.874 6.414 61.865 6.535 61.911 6.654 61.885 6.786 61.902 6.665 61.840 6.546 61.848 6.415 61.874 6.282 61.811 6.153 61.857 6.031 61.764 5.940 61.857 6.006 61.885 5.885 61.868 5.754 61.932 5.619 61.940 5.498 61.923 5.368 61.870 5.275 61.852 5.239 61.807 5.121 61.807 5.253 61.754 5.124 61.754 5.004 61.661 5.030 61.661 5.282 61.678 5.413 61.661 5.329 61.652 5.297 61.643 5.166 61.626 5.024 61.635 5.166 61.643 5.286 61.635 5.418 61.618 5.298 61.581 5.420 61.536 5.302 61.527 5.433 61.491 5.555 61.527 5.684 61.519 5.805 61.493 5.675 61.476 5.545 61.512 5.423 61.521 5.291 61.495 5.161 61.450 5.021 ; #2066 16 60.661 5.068 60.661 5.187 60.687 5.153 60.744 5.067 60.715 4.950 60.661 5.071 ; #2067 16 61.958 4.996 61.913 4.878 61.885 5.011 61.876 5.143 61.885 5.274 61.930 5.140 ; #2068 16 60.474 5.602 60.528 5.730 60.545 5.729 60.627 5.736 60.720 5.721 60.657 5.605 60.621 5.477 60.575 5.360 60.513 5.481 60.476 5.602 ; #2069 16 63.151 7.859 63.177 7.737 63.159 7.737 ; #2070 16 63.075 7.869 63.149 7.856 63.067 7.810 ; #2071 16 69.911 30.010 69.911 29.879 69.814 29.817 69.785 29.954 69.803 30.009 69.850 30.151 69.832 30.003 69.841 30.005 69.906 30.009 ; #2072 16 48.296 26.652 48.288 26.758 48.264 26.874 48.213 26.976 48.128 27.051 48.052 27.150 48.044 27.149 48.012 27.178 47.927 27.221 47.842 27.252 47.757 27.284 47.664 27.381 47.640 27.399 47.555 27.484 47.539 27.492 47.507 27.595 47.422 27.595 47.347 27.694 47.261 27.801 47.253 27.800 47.202 27.804 47.134 27.903 47.085 28.004 46.999 28.111 46.914 28.133 46.847 28.158 46.847 28.167 46.676 28.254 46.591 28.234 46.506 28.254 46.420 28.214 46.336 28.163 46.310 28.140 46.268 28.125 46.183 28.135 46.151 28.122 46.066 28.102 45.973 28.133 45.887 28.123 45.802 28.165 45.717 28.165 45.632 28.114 45.546 28.177 45.523 28.194 45.507 28.224 45.548 28.229 45.548 28.239 45.582 28.349 45.574 28.409 45.574 28.429 45.600 28.538 45.685 28.538 45.770 28.528 45.778 28.571 45.778 28.581 45.828 28.606 45.870 28.695 45.955 28.766 46.040 28.851 46.048 28.904 46.133 28.953 46.209 29.014 46.293 28.985 46.379 28.963 46.420 28.948 46.506 28.959 46.522 28.980 46.563 29.092 46.597 29.202 46.529 29.226 46.444 29.255 46.529 29.350 46.522 29.349 46.547 29.458 46.480 29.566 46.448 29.668 46.490 29.683 46.490 29.789 46.405 29.853 46.437 29.973 46.437 30.089 46.462 30.124 46.470 30.125 46.504 30.024 46.553 29.998 46.587 29.896 46.603 29.888 46.637 29.964 46.730 29.956 46.797 29.965 46.813 29.957 46.821 29.958 46.906 29.875 46.914 29.769 46.964 29.669 47.049 29.585 47.134 29.524 47.220 29.564 47.305 29.595 47.398 29.512 47.356 29.400 47.441 29.316 47.501 29.251 47.551 29.150 47.636 29.171 47.652 29.193 47.737 29.213 47.822 29.244 47.856 29.196 47.941 29.196 48.034 29.100 47.985 28.977 48.052 28.878 48.128 28.822 48.169 28.765 48.195 28.660 48.203 28.544 48.110 28.470 48.126 28.452 48.211 28.432 48.195 28.323 48.280 28.313 48.255 28.202 48.270 28.097 48.356 28.012 48.397 27.909 48.465 27.809 48.472 27.800 48.480 27.791 48.480 27.781 48.489 27.772 48.489 27.631 48.504 27.525 48.480 27.480 48.480 27.395 48.465 27.331 48.457 27.320 48.415 27.208 48.415 27.178 48.423 27.061 48.407 27.017 48.423 26.911 48.423 26.803 48.330 26.793 48.338 26.761 48.322 26.652 48.296 26.649 ; #2073 16 15.943 40.016 15.912 40.024 15.904 40.014 15.821 40.020 15.738 40.016 15.778 39.962 15.695 40.022 15.680 40.039 15.688 40.144 15.680 40.239 15.654 40.342 15.654 40.438 15.738 40.357 15.714 40.261 15.755 40.158 15.838 40.153 15.929 40.111 15.970 40.018 15.945 40.016 ; #2074 16 16.092 40.023 16.140 40.121 16.124 40.025 ; #2075 16 29.030 80.136 28.964 80.087 28.881 80.149 28.848 80.190 28.808 80.281 28.734 80.373 28.693 80.464 28.661 80.555 28.744 80.571 28.713 80.633 28.680 80.725 28.614 80.811 28.574 80.910 28.508 80.995 28.475 81.087 28.460 81.141 28.436 81.235 28.378 81.271 28.287 81.331 28.204 81.381 28.219 81.482 28.136 81.564 28.086 81.652 28.055 81.714 28.005 81.802 27.949 81.889 27.982 81.993 27.989 82.092 27.949 82.150 27.916 82.241 27.850 82.326 27.800 82.414 27.751 82.503 27.759 82.610 27.784 82.713 27.751 82.764 27.660 82.784 27.577 82.845 27.577 82.943 27.536 83.042 27.529 83.147 27.504 83.239 27.421 83.310 27.461 83.415 27.552 83.511 27.552 83.608 27.521 83.708 27.481 83.798 27.440 83.897 27.481 83.896 27.521 83.904 27.529 83.962 27.529 84.019 27.595 84.129 27.554 84.228 27.488 84.313 27.455 84.404 27.440 84.498 27.425 84.593 27.376 84.689 27.293 84.720 27.202 84.702 27.119 84.713 27.094 84.814 27.070 84.907 27.063 84.944 26.979 85.025 26.979 85.034 26.957 85.127 26.931 85.228 26.848 85.277 26.840 85.382 26.881 85.467 26.921 85.573 26.937 85.683 26.846 85.750 26.763 85.752 26.689 85.834 26.697 85.845 26.697 85.952 26.753 86.060 26.697 86.155 26.697 86.280 26.682 86.374 26.649 86.465 26.618 86.564 26.519 86.739 26.527 86.838 26.567 86.903 26.608 86.950 26.624 86.962 26.616 86.970 26.664 87.086 26.573 87.097 26.490 87.157 26.498 87.264 26.440 87.350 26.523 87.464 26.500 87.566 26.492 87.662 26.507 87.751 26.533 87.863 26.500 87.953 26.484 88.047 26.567 88.112 26.650 88.130 26.742 88.176 26.790 88.195 26.873 88.204 26.957 88.185 27.047 88.136 27.130 88.067 27.214 88.019 27.529 88.085 27.620 88.075 27.703 88.140 27.786 88.166 27.869 88.202 27.953 88.163 27.976 88.040 27.984 87.936 27.926 87.816 27.910 87.697 27.918 87.681 27.926 87.555 27.902 87.443 27.951 87.405 27.926 87.275 27.926 87.169 28.016 87.110 28.032 87.006 28.098 86.893 28.106 86.788 28.189 86.707 28.138 86.589 28.040 86.560 28.014 86.528 28.022 86.422 28.071 86.335 28.154 86.215 28.245 86.204 28.162 86.121 28.063 86.149 27.980 86.084 27.995 86.001 28.078 86.000 28.094 85.985 28.167 85.952 28.251 85.882 28.324 85.773 28.415 85.734 28.324 85.656 28.365 85.558 28.357 85.449 28.349 85.350 28.390 85.231 28.413 85.138 28.428 85.141 28.520 85.132 28.603 85.215 28.701 85.148 28.661 85.033 28.661 85.015 28.620 84.909 28.669 84.811 28.734 84.726 28.775 84.637 28.800 84.526 28.891 84.458 28.939 84.360 28.988 84.262 29.021 84.260 29.111 84.278 29.195 84.197 29.278 84.166 29.318 84.076 29.351 84.025 29.326 83.913 29.310 83.803 29.227 83.688 29.227 83.661 29.310 83.561 29.394 83.490 29.450 83.445 29.541 83.396 29.589 83.319 29.680 83.239 29.647 83.135 29.721 83.042 29.754 82.950 29.762 82.854 29.835 82.751 29.918 82.661 30.001 82.561 30.057 82.458 30.090 82.360 30.123 82.270 30.196 82.191 30.280 82.134 30.394 82.066 30.409 81.983 30.425 81.879 30.441 81.767 30.464 81.656 30.381 81.577 30.388 81.451 30.298 81.437 30.198 81.402 30.198 81.393 30.115 81.314 30.057 81.231 30.083 81.130 30.166 81.112 30.249 81.067 30.234 81.006 30.226 80.906 30.152 80.848 30.061 80.777 30.053 80.745 30.021 80.709 29.937 80.605 29.846 80.531 29.790 80.422 29.707 80.463 29.624 80.429 29.558 80.368 29.543 80.365 29.460 80.313 29.376 80.354 29.286 80.346 29.203 80.321 29.169 80.217 29.169 80.208 29.129 80.209 29.046 80.193 29.030 80.172 ; #2076 16 4.678 114.169 4.670 114.177 4.647 114.271 4.564 114.352 4.473 114.385 4.390 114.391 4.349 114.493 4.266 114.555 4.183 114.647 4.127 114.739 4.200 114.836 4.291 114.876 4.374 114.916 4.399 114.899 4.498 114.939 4.581 114.878 4.664 114.872 4.755 114.857 4.838 114.850 4.904 114.956 4.904 114.973 4.987 115.079 5.070 115.102 5.094 115.103 5.102 115.009 5.043 114.911 5.020 114.863 4.955 114.766 4.871 114.669 4.798 114.612 4.757 114.516 4.709 114.412 4.684 114.317 4.691 114.213 4.684 114.167 ; #2077 16 4.825 115.078 4.800 115.087 4.744 115.085 4.660 115.120 4.569 115.146 4.486 115.161 4.453 115.254 4.428 115.357 4.511 115.359 4.602 115.336 4.686 115.338 4.769 115.323 4.852 115.288 4.943 115.244 4.999 115.200 4.916 115.134 4.900 115.124 4.916 115.088 4.825 115.085 ; #2078 16 15.278 -61.411 15.328 -61.321 15.411 -61.304 15.585 -61.324 15.668 -61.429 15.701 -61.528 15.610 -61.544 15.527 -61.508 15.443 -61.452 15.360 -61.434 15.278 -61.416 ; #2079 16 15.221 36.428 15.155 36.434 14.989 36.445 14.898 36.460 14.732 36.473 14.641 36.479 14.557 36.494 14.474 36.501 14.376 36.516 14.335 36.524 14.350 36.524 14.391 36.621 14.399 36.705 14.399 36.800 14.384 36.895 14.343 36.998 14.509 37.133 14.525 37.229 14.469 37.323 14.436 37.360 14.352 37.404 14.262 37.476 14.179 37.538 14.186 37.547 14.269 37.578 14.352 37.618 14.436 37.648 14.519 37.688 14.602 37.719 14.701 37.759 14.709 37.769 14.792 37.798 14.875 37.838 14.958 37.869 14.867 37.942 14.784 38.035 14.759 38.129 14.751 38.224 14.585 38.315 14.502 38.407 14.502 38.502 14.517 38.598 14.533 38.703 14.540 38.738 14.563 38.834 14.621 38.931 14.705 38.972 14.728 38.981 14.705 39.075 14.664 39.112 14.639 39.140 14.556 39.164 14.507 39.180 14.548 39.219 14.556 39.315 14.571 39.371 14.602 39.467 14.579 39.570 14.563 39.665 14.571 39.760 14.505 39.853 14.538 39.950 14.531 39.988 14.538 40.083 14.513 40.186 14.498 40.223 14.414 40.316 14.341 40.409 14.293 40.511 14.267 40.605 14.244 40.709 14.179 40.802 14.179 40.810 14.012 40.976 13.929 41.037 13.838 41.091 13.755 41.135 13.671 41.188 13.614 41.290 13.548 41.382 13.490 41.476 13.424 41.578 13.351 41.670 13.267 41.751 13.184 41.795 13.169 41.803 13.086 41.838 12.994 41.881 12.921 41.974 12.881 42.076 12.807 42.169 12.716 42.221 12.666 42.257 12.642 42.264 12.559 42.346 12.608 42.431 12.559 42.534 12.493 42.587 12.478 42.681 12.561 42.759 12.644 42.780 12.718 42.886 12.766 42.992 12.799 43.057 12.883 43.034 12.966 42.961 12.883 42.884 12.923 42.790 12.931 42.781 13.022 42.701 13.105 42.677 13.188 42.585 13.271 42.503 13.271 42.408 13.312 42.315 13.395 42.300 13.486 42.286 13.569 42.242 13.652 42.236 13.726 42.155 13.643 42.180 13.726 42.088 13.817 41.996 13.900 41.932 13.948 41.830 13.956 41.784 14.004 41.691 14.078 41.598 14.169 41.537 14.177 41.528 14.260 41.465 14.350 41.403 14.434 41.340 14.517 41.278 14.600 41.226 14.608 41.208 14.691 41.136 14.724 41.042 14.732 40.938 14.782 40.844 14.782 40.749 14.865 40.685 14.956 40.633 15.022 40.531 15.072 40.487 15.072 40.403 15.014 40.296 15.022 40.201 15.072 40.108 15.155 40.057 15.238 40.032 15.330 39.998 15.413 40.040 15.453 39.966 15.527 39.874 15.519 39.770 15.436 39.740 15.345 39.744 15.262 39.815 15.171 39.785 15.138 39.736 15.221 39.665 15.304 39.678 15.395 39.655 15.479 39.604 15.562 39.579 15.587 39.485 15.678 39.404 15.744 39.437 15.910 39.349 16.001 39.277 16.084 39.244 16.167 39.221 16.250 39.196 16.341 39.182 16.425 39.186 16.516 39.173 16.606 39.130 16.690 39.143 16.705 39.143 16.788 39.129 16.879 39.107 16.962 39.073 17.046 39.048 17.129 39.025 17.212 39.000 17.295 38.948 17.386 38.934 17.469 38.920 17.552 38.869 17.635 38.826 17.719 38.792 17.802 38.740 17.893 38.688 18.059 38.600 18.001 38.531 17.902 38.442 17.819 38.411 17.729 38.369 17.678 38.282 17.630 38.184 17.622 38.088 17.581 37.982 17.516 37.884 17.524 37.788 17.440 37.709 17.424 37.612 17.384 37.515 17.369 37.523 17.278 37.528 17.195 37.487 17.111 37.427 17.111 37.419 17.135 37.315 17.102 37.218 17.110 37.123 17.069 37.025 16.903 37.018 16.811 36.997 16.728 36.929 16.645 36.916 16.562 36.913 16.471 36.967 16.388 36.972 16.305 36.940 16.222 36.898 16.138 36.868 16.055 36.835 15.964 36.805 15.873 36.764 15.782 36.693 15.616 36.651 15.525 36.656 15.451 36.597 15.360 36.576 15.278 36.517 15.229 36.459 ; #2080 1 -73.966 -106.886 -73.894 -106.829 -73.834 -106.887 -73.803 -106.990 -73.774 -107.109 -73.714 -107.247 -73.695 -107.393 -73.676 -107.501 -73.626 -107.627 -73.576 -107.713 -73.535 -107.799 -73.516 -107.932 -73.465 -107.991 -73.394 -108.029 -73.375 -108.150 -73.343 -108.292 -73.302 -108.432 -73.264 -108.548 -73.223 -108.646 -73.133 -108.803 -73.051 -108.934 -73.022 -109.079 -73.022 -109.241 -73.032 -109.501 -73.051 -109.680 -73.164 -109.858 -73.286 -110.117 -73.389 -110.105 -73.439 -110.048 -73.508 -110.007 -73.580 -109.916 -73.640 -109.820 -73.731 -109.747 -73.772 -109.552 -73.810 -109.407 -73.851 -109.321 -73.891 -109.192 -73.901 -108.989 -73.932 -108.900 -73.992 -108.844 -74.023 -108.729 -74.042 -108.527 -74.052 -108.379 -74.071 -108.245 -74.081 -108.012 -74.062 -107.789 -74.062 -107.624 -74.071 -107.336 -74.071 -107.144 -73.968 -106.889 ; #2081 1 -72.989 -104.448 -72.970 -104.473 -72.941 -104.566 -72.922 -104.686 -72.862 -104.746 -72.831 -104.873 -72.771 -104.919 -72.802 -105.102 -72.915 -105.136 -72.956 -105.048 -73.016 -104.989 -73.046 -104.886 -73.037 -104.698 -72.998 -104.465 ; #2082 1 -68.718 -90.442 -68.642 -90.343 -68.585 -90.420 -68.633 -90.616 -68.689 -90.550 ; #2083 1 -66.703 -67.365 -66.655 -67.187 -66.549 -67.147 -66.522 -67.262 -66.514 -67.381 -66.610 -67.375 -66.707 -67.372 ; #2084 1 -66.121 -66.674 -66.085 -66.593 -65.988 -66.463 -65.891 -66.481 -65.918 -66.640 -66.015 -66.660 -66.121 -66.677 ; #2085 1 -67.614 -67.460 -67.614 -67.374 -67.517 -67.163 -67.420 -67.080 -67.420 -67.231 -67.402 -67.343 -67.410 -67.478 -67.449 -67.651 -67.546 -67.673 -67.602 -67.593 -67.611 -67.461 ; #2086 1 -65.677 -66.002 -65.668 -65.934 -65.591 -65.734 -65.485 -65.708 -65.409 -65.508 -65.312 -65.514 -65.303 -65.642 -65.379 -65.830 -65.485 -65.940 -65.582 -66.020 -65.679 -66.002 ; #2087 1 -67.719 -67.117 -67.711 -67.098 -67.614 -67.038 -67.652 -67.199 -67.717 -67.116 ; #2088 1 -64.628 -63.552 -64.628 -63.540 -64.535 -63.384 -64.544 -63.255 -64.499 -63.098 -64.406 -62.906 -64.344 -62.725 -64.327 -62.847 -64.352 -63.001 -64.352 -63.124 -64.260 -62.972 -64.186 -63.041 -64.241 -63.205 -64.148 -63.173 -64.103 -63.005 -64.066 -63.112 -64.057 -63.228 -64.066 -63.369 -64.129 -63.539 -64.221 -63.586 -64.313 -63.763 -64.341 -63.908 -64.415 -64.086 -64.507 -64.122 -64.524 -64.000 -64.561 -63.892 -64.570 -63.775 -64.578 -63.658 -64.624 -63.557 ; #2089 1 -64.703 -63.213 -64.630 -63.122 -64.529 -63.084 -64.583 -63.247 -64.647 -63.430 -64.693 -63.341 -64.701 -63.212 ; #2090 1 -63.148 -62.177 -63.140 -62.100 -63.067 -61.926 -63.041 -62.040 -63.058 -62.185 -63.151 -62.179 ; #2091 1 -64.313 -62.453 -64.268 -62.359 -64.223 -62.203 -64.130 -62.052 -64.029 -61.929 -63.937 -61.959 -63.920 -62.069 -63.855 -62.156 -63.829 -62.261 -63.866 -62.410 -63.958 -62.441 -64.012 -62.346 -64.105 -62.425 -64.198 -62.531 -64.298 -62.568 -64.315 -62.457 ; #2092 1 -62.632 -61.334 -62.623 -61.254 -62.522 -61.122 -62.522 -61.243 -62.585 -61.421 -62.630 -61.332 ; #2093 1 -62.419 -59.949 -62.401 -59.985 -62.309 -59.991 -62.309 -60.123 -62.354 -60.275 -62.362 -60.413 -62.354 -60.528 -62.300 -60.634 -62.272 -60.735 -62.365 -60.752 -62.419 -60.912 -62.464 -61.087 -62.464 -60.954 -62.473 -60.829 -62.473 -60.696 -62.427 -60.532 -62.436 -60.406 -62.509 -60.336 -62.573 -60.238 -62.545 -60.097 -62.500 -59.944 -62.419 -59.817 ; #2094 1 -63.889 -61.873 -63.881 -61.818 -63.788 -61.691 -63.797 -61.832 -63.889 -61.876 ; #2095 1 -62.825 -60.525 -62.817 -60.508 -62.725 -60.538 -62.733 -60.412 -62.696 -60.508 -62.714 -60.641 -62.806 -60.636 -62.823 -60.526 ; #2096 1 -63.676 -60.664 -63.659 -60.640 -63.558 -60.580 -63.465 -60.574 -63.465 -60.696 -63.566 -60.708 -63.659 -60.786 ; #2097 1 -62.371 -59.624 -62.290 -59.556 -62.261 -59.657 -62.335 -59.851 -62.343 -59.725 -62.369 -59.622 ; #2098 1 -62.279 -59.416 -62.244 -59.286 -62.179 -59.361 -62.143 -59.469 -62.188 -59.620 -62.233 -59.520 -62.279 -59.419 ; #2099 1 -62.169 -58.942 -62.160 -58.924 -62.107 -58.767 -62.070 -58.862 -62.061 -58.989 -62.107 -59.151 -62.152 -59.051 ; #2100 1 -62.067 -58.524 -62.022 -58.373 -61.930 -58.405 -61.884 -58.254 -61.977 -58.258 -61.977 -58.127 -61.884 -58.028 -61.893 -57.902 -61.839 -57.745 -61.803 -57.600 -61.701 -57.616 -61.755 -57.784 -61.738 -57.893 -61.747 -58.030 -61.773 -58.168 -61.755 -58.287 -61.792 -58.454 -61.865 -58.624 -61.947 -58.812 -62.039 -58.887 -62.039 -58.755 -62.048 -58.640 -62.065 -58.520 ; #2101 1 -63.713 -57.275 -63.695 -57.155 -63.633 -56.979 -63.605 -57.093 -63.597 -57.210 -63.597 -57.478 -63.633 -57.626 -63.687 -57.517 -63.678 -57.388 -63.713 -57.278 ; #2102 1 -61.097 -55.187 -61.032 -55.062 -60.969 -54.891 -60.960 -54.756 -60.907 -54.602 -60.907 -54.722 -60.915 -54.857 -60.924 -54.993 -60.896 -55.094 -60.896 -55.224 -60.879 -55.332 -60.972 -55.358 -61.064 -55.288 -61.101 -55.192 ; #2103 1 -62.983 -56.222 -62.983 -56.199 -62.918 -56.024 -62.825 -55.973 -62.808 -56.095 -62.808 -56.217 -62.800 -56.343 -62.873 -56.513 -62.918 -56.422 -62.955 -56.325 ; #2104 1 -64.350 -57.233 -64.350 -57.209 -64.341 -57.069 -64.260 -56.890 -64.158 -56.881 -64.204 -57.035 -64.232 -57.177 -64.249 -57.323 -64.341 -57.352 -64.350 -57.235 ; #2105 1 -63.250 -56.292 -63.250 -56.244 -63.215 -56.099 -63.151 -55.923 -63.125 -55.784 -63.125 -55.650 -63.142 -55.529 -63.142 -55.407 -63.170 -55.292 -63.179 -55.165 -63.162 -55.020 -63.069 -54.948 -63.015 -55.046 -63.006 -55.174 -62.998 -55.301 -62.998 -55.422 -62.944 -55.509 -62.961 -55.653 -62.944 -55.774 -62.961 -55.919 -62.979 -56.052 -63.015 -56.198 -63.080 -56.375 -63.172 -56.484 -63.207 -56.385 -63.252 -56.294 ; #2106 1 -63.390 -55.934 -63.364 -55.835 -63.282 -55.658 -63.209 -55.732 -63.200 -55.848 -63.217 -55.992 -63.310 -56.125 -63.355 -56.033 ; #2107 1 -61.088 -53.998 -61.088 -53.987 -60.986 -53.956 -60.978 -54.070 -61.071 -54.117 ; #2108 1 -77.273 -159.012 -77.218 -159.137 -77.163 -159.218 -77.142 -159.321 -77.121 -159.537 -77.234 -159.626 -77.367 -159.772 -77.402 -159.719 -77.467 -159.593 -77.567 -159.616 -77.690 -159.938 -77.778 -159.861 -77.891 -160.040 -77.967 -159.987 -78.012 -159.876 -78.043 -159.758 -78.077 -159.605 -78.122 -159.449 -78.167 -159.251 -78.208 -159.043 -78.242 -158.889 -78.276 -158.763 -78.297 -158.659 -78.307 -158.467 -78.195 -158.133 -78.185 -157.885 -78.195 -157.708 -78.205 -157.503 -78.205 -157.296 -78.185 -157.051 -78.140 -156.755 -78.130 -156.509 -78.140 -156.214 -78.150 -156.069 -78.185 -155.896 -78.219 -155.742 -78.260 -155.665 -78.350 -155.658 -78.473 -155.918 -78.517 -156.334 -78.538 -156.701 -78.549 -156.905 -78.569 -157.169 -78.590 -157.447 -78.612 -157.667 -78.711 -157.749 -78.742 -157.525 -78.797 -157.215 -78.842 -157.025 -78.887 -156.866 -78.931 -156.631 -78.962 -156.526 -78.983 -156.420 -79.005 -156.301 -79.025 -156.180 -79.035 -156.045 -79.057 -155.867 -79.078 -155.656 -79.088 -155.462 -79.098 -155.267 -79.098 -155.031 -79.109 -154.869 -79.119 -154.704 -79.130 -154.483 -79.130 -154.291 -79.151 -154.125 -79.172 -153.931 -79.206 -153.754 -79.237 -153.497 -79.271 -153.381 -79.282 -153.245 -79.303 -153.019 -79.334 -152.803 -79.379 -152.503 -79.399 -152.275 -79.421 -152.081 -79.465 -151.825 -79.497 -151.489 -79.507 -151.326 -79.528 -151.202 -79.528 -150.964 -79.538 -150.813 -79.538 -150.647 -79.528 -150.456 -79.560 -150.315 -79.580 -150.192 -79.612 -149.872 -79.633 -149.688 -79.664 -149.428 -79.675 -149.264 -79.696 -149.079 -79.717 -148.895 -79.727 -148.759 -79.737 -148.619 -79.759 -148.482 -79.769 -148.358 -79.803 -148.195 -79.837 -148.059 -79.869 -147.963 -79.890 -147.852 -79.910 -147.847 -79.945 -147.771 -79.976 -147.688 -80.013 -147.631 -80.051 -147.547 -80.094 -147.487 -80.120 -147.371 -80.147 -147.243 -80.186 -147.174 -80.228 -147.113 -80.284 -147.100 -80.339 -147.071 -80.408 -147.075 -80.548 -147.441 -80.601 -147.727 -80.670 -148.068 -80.738 -148.395 -80.862 -148.877 -80.960 -149.296 -81.071 -149.735 -81.212 -149.993 -81.336 -150.145 -81.323 -150.294 -81.323 -151.531 -81.310 -151.666 -81.310 -151.850 -81.297 -152.001 -81.297 -152.171 -81.284 -152.334 -81.270 -152.483 -81.244 -152.613 -81.232 -152.777 -81.205 -152.905 -81.179 -153.022 -81.136 -153.078 -81.110 -153.193 -81.097 -153.356 -81.085 -153.492 -81.085 -154.186 -81.071 -154.333 -81.059 -154.483 -81.045 -154.631 -81.045 -155.001 -81.032 -155.134 -81.032 -155.317 -81.019 -155.467 -81.006 -155.615 -80.992 -155.748 -80.992 -155.931 -80.980 -156.065 -80.967 -156.213 -80.967 -156.905 -80.992 -157.158 -81.006 -157.391 -81.019 -157.596 -81.032 -157.784 -81.045 -157.989 -81.085 -158.264 -81.225 -158.584 -81.251 -158.500 -81.277 -158.386 -81.290 -158.238 -81.290 -157.698 -81.304 -157.550 -81.316 -157.400 -81.330 -157.252 -81.342 -157.103 -81.356 -156.954 -81.382 -156.826 -81.395 -156.677 -81.421 -156.548 -81.434 -156.400 -81.447 -156.279 -81.460 -156.116 -81.486 -155.987 -81.513 -155.874 -81.539 -155.745 -81.663 -155.893 -81.731 -156.234 -81.872 -156.553 -81.898 -156.452 -81.911 -156.288 -81.937 -156.158 -81.964 -156.044 -82.032 -156.059 -82.058 -155.929 -82.084 -155.798 -82.098 -155.634 -82.124 -155.485 -82.137 -155.364 -82.163 -155.277 -82.189 -155.146 -82.215 -155.044 -82.228 -154.923 -82.254 -154.806 -82.280 -154.689 -82.293 -154.568 -82.319 -154.480 -82.333 -154.344 -82.346 -154.223 -82.372 -154.135 -82.385 -153.996 -82.398 -153.874 -82.424 -153.786 -82.437 -153.650 -82.463 -153.562 -82.489 -153.458 -82.516 -153.372 -82.611 -153.453 -82.765 -153.962 -82.905 -154.388 -83.046 -154.612 -83.101 -154.588 -83.156 -154.580 -83.195 -154.513 -83.251 -154.492 -83.320 -154.505 -83.375 -154.481 -83.431 -154.472 -83.487 -154.450 -83.538 -154.433 -83.692 -154.715 -83.744 -154.697 -83.787 -154.639 -83.830 -154.581 -83.869 -154.498 -83.895 -154.408 -83.908 -154.283 -83.934 -154.177 -83.948 -154.052 -83.973 -153.932 -83.999 -153.812 -84.025 -153.676 -84.052 -153.558 -84.078 -153.436 -84.091 -153.296 -84.117 -153.205 -84.130 -153.048 -84.157 -152.913 -84.169 -152.755 -84.183 -152.584 -84.209 -152.265 -84.222 -152.095 -84.248 -151.958 -84.261 -151.786 -84.274 -151.627 -84.274 -151.449 -84.287 -151.323 -84.301 -151.151 -84.313 -150.976 -84.327 -150.805 -84.327 -150.597 -84.339 -150.438 -84.353 -150.265 -84.366 -150.093 -84.366 -149.884 -84.378 -149.709 -84.378 -149.501 -84.392 -149.328 -84.392 -149.120 -84.405 -148.947 -84.418 -148.772 -84.418 -148.400 -84.431 -148.208 -84.431 -147.999 -84.444 -147.824 -84.444 -147.631 -84.457 -147.438 -84.457 -147.230 -84.470 -147.056 -84.470 -146.847 -84.483 -146.653 -84.483 -146.231 -84.496 -146.057 -84.496 -145.848 -84.510 -145.655 -84.510 -145.446 -84.522 -145.270 -84.522 -144.833 -84.536 -144.659 -84.536 -144.449 -84.548 -144.254 -84.548 -143.817 -84.562 -143.643 -84.562 -143.269 -84.575 -143.095 -84.575 -142.867 -84.588 -142.690 -84.588 -142.233 -84.601 -142.058 -84.601 -141.620 -84.614 -141.426 -84.614 -141.197 -84.627 -141.001 -84.640 -140.808 -84.640 -140.578 -84.653 -140.367 -84.666 -140.157 -84.709 -140.038 -84.764 -140.374 -84.875 -140.481 -84.889 -140.695 -84.889 -140.906 -84.901 -141.149 -84.901 -141.838 -84.889 -142.034 -84.889 -142.265 -84.875 -142.475 -84.875 -142.933 -84.862 -143.063 -84.862 -143.307 -84.849 -143.505 -84.849 -143.734 -84.836 -143.929 -84.836 -144.173 -84.824 -144.369 -84.824 -144.598 -84.810 -144.807 -84.810 -145.855 -84.797 -146.049 -84.797 -146.966 -84.784 -147.142 -84.784 -148.717 -84.771 -148.909 -84.771 -149.348 -84.784 -149.614 -84.784 -149.825 -84.797 -150.038 -84.853 -150.372 -84.977 -150.908 -85.069 -150.948 -85.090 -151.191 -85.109 -151.400 -85.109 -152.041 -85.090 -152.243 -85.090 -152.473 -85.050 -152.613 -85.030 -152.796 -85.009 -152.960 -84.993 -153.151 -84.980 -153.278 -84.980 -153.509 -84.967 -153.701 -84.967 -155.939 -84.980 -156.142 -84.980 -156.568 -84.993 -156.836 -85.009 -157.107 -85.030 -157.365 -85.030 -157.545 -85.050 -157.774 -85.069 -158.015 -85.090 -158.259 -85.090 -158.654 -85.069 -158.837 -85.050 -159.021 -85.050 -159.251 -85.030 -159.433 -85.009 -159.580 -84.993 -159.750 -84.980 -159.941 -84.980 -160.152 -84.967 -160.342 -84.967 -160.573 -84.954 -160.766 -84.954 -161.440 -84.967 -161.642 -84.967 -162.397 -84.954 -162.570 -84.941 -162.726 -84.928 -162.900 -84.928 -163.294 -84.915 -163.465 -84.901 -163.655 -84.889 -163.797 -84.875 -163.952 -84.862 -164.077 -84.836 -164.230 -84.810 -164.332 -84.797 -164.472 -84.784 -164.629 -84.784 -164.839 -84.771 -165.009 -84.771 -165.632 -84.757 -165.821 -84.757 -166.031 -84.745 -166.188 -84.732 -166.358 -84.732 -166.618 -84.719 -166.854 -84.706 -167.042 -84.692 -167.231 -84.680 -167.402 -84.666 -167.591 -84.653 -167.729 -84.640 -167.951 -84.627 -168.170 -84.627 -168.333 -84.558 -168.334 -84.545 -168.488 -84.532 -168.659 -84.532 -168.887 -84.588 -169.249 -84.588 -169.672 -84.519 -169.656 -84.493 -169.771 -84.480 -169.923 -84.467 -170.113 -84.454 -170.282 -84.441 -170.451 -84.428 -170.619 -84.428 -170.813 -84.414 -170.980 -84.435 -172.574 -84.399 -172.483 -84.399 -172.987 -84.385 -173.236 -84.372 -173.489 -84.346 -173.730 -84.346 -174.269 -84.333 -174.515 -84.320 -174.748 -84.306 -174.996 -84.306 -175.189 -84.294 -175.404 -84.294 -175.567 -84.281 -175.815 -84.281 -176.027 -84.267 -176.260 -84.255 -176.539 -84.255 -178.100 -84.241 -178.362 -84.241 -178.623 -84.255 -178.747 -84.255 -179.197 -84.267 -179.354 -84.281 -179.509 -84.294 -179.648 -84.294 179.996 -84.255 179.674 -84.229 179.407 -84.202 179.153 -84.202 178.717 -84.176 178.466 -84.150 178.214 -84.137 177.998 -84.137 177.820 -84.124 177.622 -84.111 177.408 -84.068 177.094 -84.055 177.285 -83.999 177.337 -83.987 177.140 -83.987 176.914 -83.999 176.757 -84.013 176.633 -84.025 176.490 -84.039 176.351 -84.025 176.106 -83.999 175.856 -83.944 175.879 -83.944 175.491 -83.957 175.333 -83.957 175.126 -83.917 174.791 -83.892 174.528 -83.866 174.278 -83.852 174.050 -83.840 173.824 -83.840 173.598 -83.826 173.399 -83.732 172.915 -83.718 172.702 -83.706 172.458 -83.706 172.251 -83.718 172.124 -83.718 171.914 -83.732 171.789 -83.744 171.598 -83.771 171.464 -83.784 171.336 -83.742 171.032 -83.742 170.855 -83.601 170.285 -83.614 170.128 -83.640 170.021 -83.627 169.827 -83.584 169.873 -83.571 170.047 -83.545 170.168 -83.451 170.106 -83.451 169.725 -83.464 169.551 -83.451 169.306 -83.408 169.368 -83.408 168.999 -83.356 168.701 -83.356 168.301 -83.313 168.028 -83.287 167.800 -83.287 167.610 -83.245 167.308 -83.245 166.943 -83.271 166.822 -83.284 166.652 -83.310 166.510 -83.336 166.403 -83.362 166.262 -83.375 166.137 -83.375 165.961 -83.362 165.751 -83.336 165.494 -83.297 165.552 -83.271 165.675 -83.257 165.814 -83.202 165.831 -83.189 165.972 -83.189 166.132 -83.176 166.274 -83.176 166.434 -83.150 166.574 -83.123 166.694 -83.098 166.801 -82.944 166.560 -82.918 166.319 -82.918 165.956 -82.931 165.832 -82.944 165.690 -82.944 165.342 -82.931 165.150 -82.905 164.895 -82.892 165.034 -82.878 165.159 -82.836 165.225 -82.794 164.928 -82.768 165.020 -82.768 165.367 -82.712 165.396 -82.698 165.174 -82.712 165.049 -82.738 164.928 -82.738 164.754 -82.640 164.345 -82.601 164.419 -82.588 164.181 -82.575 163.988 -82.549 163.717 -82.506 163.436 -82.480 163.528 -82.369 163.421 -82.343 163.183 -82.329 162.991 -82.329 162.790 -82.316 162.536 -82.304 162.300 -82.278 162.077 -82.209 161.734 -82.196 161.906 -82.170 162.028 -82.114 162.075 -81.973 161.697 -81.904 161.357 -81.853 161.043 -81.784 161.045 -81.771 160.827 -81.745 160.564 -81.620 160.444 -81.594 160.211 -81.539 159.892 -81.525 159.689 -81.525 159.505 -81.551 159.383 -81.565 159.230 -81.565 159.060 -81.470 158.662 -81.457 158.800 -81.443 158.937 -81.443 159.494 -81.431 159.648 -81.378 159.705 -81.336 159.773 -81.323 159.910 -81.310 160.062 -81.297 160.216 -81.284 160.367 -81.258 160.459 -81.160 160.376 -81.160 160.222 -81.172 160.083 -81.186 159.932 -81.198 159.778 -81.198 159.422 -81.172 159.176 -81.146 158.931 -81.064 158.936 -80.954 158.854 -80.885 158.858 -80.859 158.978 -80.833 159.084 -80.833 158.930 -80.807 158.700 -80.711 158.292 -80.699 158.444 -80.711 158.656 -80.711 158.824 -80.699 158.961 -80.673 159.053 -80.646 159.157 -80.634 159.295 -80.565 159.299 -80.522 159.030 -80.548 158.925 -80.562 158.789 -80.574 158.651 -80.588 158.501 -80.476 158.056 -80.464 158.194 -80.490 158.408 -80.490 158.575 -80.476 158.711 -80.464 158.863 -80.437 158.952 -80.437 159.120 -80.411 159.225 -80.270 158.981 -80.284 158.845 -80.284 158.512 -80.310 158.406 -80.310 157.920 -80.323 157.785 -80.336 157.647 -80.349 157.512 -80.362 157.374 -80.375 157.239 -80.401 157.133 -80.375 156.905 -80.320 156.610 -80.166 156.280 -80.152 156.415 -80.140 156.552 -80.127 156.688 -80.127 156.840 -80.114 156.977 -80.101 157.112 -80.087 157.247 -80.087 157.399 -80.075 157.536 -80.061 157.671 -80.049 157.808 -80.035 157.943 -80.035 158.095 -80.022 158.229 -80.009 158.366 -79.986 158.475 -79.976 158.616 -79.942 158.698 -79.900 158.772 -79.821 158.743 -79.811 158.553 -79.832 158.439 -79.853 158.311 -79.853 157.993 -79.863 157.855 -79.884 157.740 -79.884 157.575 -79.863 157.358 -79.843 157.472 -79.821 157.585 -79.811 157.726 -79.800 157.864 -79.780 157.979 -79.759 158.107 -79.714 158.193 -79.693 158.293 -79.648 158.362 -79.615 158.444 -79.583 158.531 -79.538 158.600 -79.517 158.713 -79.497 158.827 -79.452 158.894 -79.421 158.983 -79.410 159.120 -79.311 159.026 -79.300 158.836 -79.266 158.916 -79.256 159.041 -79.143 158.883 -79.088 158.599 -79.054 158.679 -79.033 158.791 -79.012 158.888 -78.991 159.001 -78.980 159.124 -78.980 159.182 -79.002 159.384 -79.002 159.561 -78.980 159.658 -78.960 159.770 -78.939 159.910 -78.939 160.236 -78.928 160.387 -78.850 160.357 -78.839 160.507 -78.839 160.670 -78.829 160.793 -78.905 161.144 -78.915 161.320 -78.881 161.411 -78.837 161.465 -78.781 161.476 -78.771 161.613 -78.771 161.762 -78.750 161.859 -78.729 161.996 -78.708 162.093 -78.687 162.190 -78.677 162.357 -78.667 162.495 -78.667 162.671 -78.622 162.707 -78.590 162.818 -78.580 162.955 -78.559 163.050 -78.559 163.585 -78.569 163.760 -78.569 164.246 -78.549 164.370 -78.528 164.493 -78.517 164.642 -78.517 164.983 -78.528 165.159 -78.538 165.345 -78.614 165.686 -78.659 165.639 -78.648 165.773 -78.638 165.910 -78.583 165.932 -78.470 165.633 -78.470 165.309 -78.460 165.134 -78.449 164.959 -78.439 164.771 -78.360 164.412 -78.329 164.509 -78.205 164.213 -78.161 164.249 -78.140 164.343 -78.028 164.225 -78.061 164.147 -78.095 164.058 -78.116 163.963 -78.171 163.939 -78.216 163.903 -78.182 163.643 -78.138 163.680 -78.038 163.606 -78.059 163.498 -78.080 163.390 -78.114 163.285 -78.135 163.163 -78.124 162.962 -78.104 163.072 -78.083 163.181 -78.040 163.251 -78.006 163.313 -77.962 163.364 -77.907 163.375 -77.807 163.274 -77.776 163.357 -77.653 163.126 -77.664 163.006 -77.674 162.871 -77.695 162.731 -77.705 162.598 -77.685 162.387 -77.664 162.482 -77.575 162.410 -77.553 162.517 -77.532 162.625 -77.477 162.681 -77.365 162.446 -77.276 162.374 -77.153 162.177 -77.040 161.945 -77.029 161.774 -77.029 161.616 -77.009 161.408 -76.964 161.143 -76.954 161.288 -76.933 161.383 -76.888 161.433 -76.855 161.497 -76.865 161.678 -76.823 161.750 -76.778 161.786 -76.713 161.787 -76.634 161.426 -76.624 161.573 -76.569 161.598 -76.535 161.673 -76.492 161.729 -76.370 161.579 -76.328 161.621 -76.249 161.577 -76.249 161.477 -76.184 161.153 -76.150 161.228 -76.128 161.333 -76.118 161.478 -76.084 161.552 -75.972 161.570 -75.961 161.700 -75.896 161.688 -75.851 161.724 -75.796 161.735 -75.707 161.681 -75.665 161.722 -75.621 161.773 -75.521 161.577 -75.398 161.288 -75.353 161.350 -75.231 161.115 -75.197 161.189 -75.121 161.152 -75.087 161.226 -75.066 161.318 -75.055 161.446 -75.044 161.561 -75.044 161.701 -75.034 161.818 -75.034 161.984 -75.044 162.174 -75.024 162.181 -74.990 162.246 -74.971 162.360 -74.962 162.493 -74.931 162.472 -74.818 162.267 -74.778 162.337 -74.737 162.405 -74.718 162.506 -74.686 162.595 -74.658 162.675 -74.699 162.925 -74.779 163.134 -74.760 163.247 -74.658 163.145 -74.648 163.292 -74.648 163.458 -74.639 163.577 -74.629 163.696 -74.689 163.986 -74.639 164.021 -74.526 163.882 -74.423 163.764 -74.311 163.643 -74.208 163.487 -74.217 163.646 -74.176 163.713 -74.126 163.762 -74.088 163.961 -74.097 164.131 -74.107 164.302 -74.138 164.519 -74.167 164.728 -74.157 164.873 -74.045 164.763 -74.013 164.547 -73.963 164.293 -73.944 164.392 -73.963 164.570 -73.904 164.611 -73.872 164.711 -73.863 164.828 -73.822 164.883 -73.812 165.014 -73.822 165.172 -73.793 165.251 -73.784 165.370 -73.753 165.443 -73.743 165.586 -73.671 165.602 -73.643 165.693 -73.624 165.817 -73.624 165.955 -73.605 166.078 -73.585 166.201 -73.554 166.274 -73.545 166.392 -73.463 166.361 -73.453 166.504 -73.545 166.843 -73.635 166.881 -73.664 167.091 -73.674 167.262 -73.624 167.321 -73.573 167.354 -73.523 167.399 -73.494 167.477 -73.597 167.733 -73.587 167.875 -73.526 167.884 -73.506 167.980 -73.403 167.861 -73.312 167.809 -73.312 167.959 -73.302 168.088 -73.222 168.070 -73.161 168.094 -73.152 168.211 -73.152 168.360 -73.133 168.470 -73.092 168.548 -73.020 168.533 -72.982 168.604 -72.951 168.700 -72.910 168.753 -72.850 168.776 -72.800 168.820 -72.769 168.917 -72.687 168.896 -72.687 169.032 -72.668 169.154 -72.599 169.145 -72.549 169.190 -72.467 169.168 -72.386 169.134 -72.405 169.040 -72.446 168.976 -72.477 168.892 -72.457 168.716 -72.448 168.845 -72.388 168.881 -72.306 168.873 -72.247 168.885 -72.197 168.917 -72.147 168.948 -72.137 169.076 -72.118 169.183 -72.108 169.298 -72.089 169.406 -72.070 169.514 -72.060 169.641 -72.020 169.692 -71.991 169.780 -71.919 169.779 -71.816 169.656 -71.713 169.578 -71.600 169.400 -71.497 169.294 -71.385 169.063 -71.488 169.127 -71.591 169.261 -71.622 169.179 -71.672 169.135 -71.754 169.144 -71.703 168.906 -71.600 168.658 -71.540 168.388 -71.531 168.223 -71.512 168.050 -71.461 168.081 -71.433 167.890 -71.330 167.631 -71.311 167.458 -71.292 167.274 -71.273 167.102 -71.170 166.882 -71.067 166.623 -71.048 166.718 -70.978 166.722 -70.866 166.418 -70.856 166.253 -70.856 165.976 -70.875 165.868 -70.885 165.755 -70.885 165.609 -70.815 165.327 -70.796 165.433 -70.827 165.640 -70.736 165.605 -70.726 165.441 -70.717 165.290 -70.726 165.164 -70.736 165.038 -70.755 164.930 -70.787 164.822 -70.818 164.752 -70.787 164.533 -70.674 164.206 -70.674 164.062 -70.684 163.936 -70.693 163.811 -70.665 163.609 -70.624 163.385 -70.592 163.191 -70.602 163.053 -70.612 162.928 -70.631 162.832 -70.641 162.706 -70.641 162.574 -70.660 162.479 -70.763 162.562 -70.791 162.473 -70.782 162.297 -70.700 162.006 -70.597 161.807 -70.494 161.672 -70.382 161.469 -70.372 161.306 -70.391 161.198 -70.411 161.079 -70.430 160.959 -70.480 160.911 -70.530 160.863 -70.439 160.804 -70.380 160.823 -70.310 160.846 -70.361 160.786 -70.411 160.739 -70.420 160.612 -70.308 160.385 -70.317 160.246 -70.336 160.139 -70.346 160.000 -70.356 159.875 -70.324 159.672 -70.221 159.425 -70.118 159.098 -70.099 159.218 -70.068 159.199 -69.967 158.871 -69.861 158.754 -69.843 158.712 -69.758 158.424 -69.728 158.243 -69.710 158.070 -69.701 157.911 -69.604 157.632 -69.499 157.467 -69.442 157.230 -69.395 157.008 -69.368 156.833 -69.358 156.687 -69.397 156.597 -69.370 156.409 -69.273 156.260 -69.176 156.175 -69.070 155.987 -69.138 155.946 -69.235 155.991 -69.282 155.939 -69.282 155.667 -69.291 155.645 -69.330 155.578 -69.300 155.399 -69.309 155.271 -69.356 155.195 -69.291 154.945 -69.300 154.818 -69.330 154.724 -69.347 154.623 -69.300 154.403 -69.203 154.114 -69.221 154.001 -69.230 153.886 -69.239 153.758 -69.133 153.510 -69.036 153.353 -68.998 153.160 -68.950 153.213 -68.960 153.370 -68.894 153.394 -68.797 153.312 -68.835 153.504 -68.788 153.580 -68.711 153.481 -68.646 153.246 -68.608 153.043 -68.511 152.785 -68.482 152.597 -68.520 152.517 -68.538 152.506 -68.644 152.626 -68.741 152.782 -68.741 152.652 -68.818 152.634 -68.915 152.739 -69.012 152.754 -69.041 152.660 -69.050 152.531 -69.002 152.325 -69.099 152.339 -69.034 152.104 -69.005 151.928 -68.995 151.771 -68.957 151.568 -68.901 151.336 -68.910 151.209 -68.939 151.114 -68.975 151.029 -69.005 150.934 -69.014 150.807 -69.005 150.663 -68.995 150.506 -69.014 150.394 -69.032 150.280 -69.067 150.194 -69.106 150.126 -69.059 149.921 -68.962 149.843 -68.897 149.870 -68.840 149.922 -68.781 149.970 -68.725 150.012 -68.639 150.018 -68.631 150.004 -68.534 149.812 -68.551 149.699 -68.579 149.613 -68.597 149.499 -68.597 149.217 -68.587 149.061 -68.551 148.864 -68.522 148.689 -68.425 148.589 -68.443 148.475 -68.452 148.349 -68.509 148.296 -68.509 148.155 -68.500 147.999 -68.500 147.870 -68.461 147.670 -68.423 147.470 -68.326 147.320 -68.229 147.182 -68.200 147.266 -68.182 147.391 -68.173 147.506 -68.067 147.354 -68.057 147.200 -67.992 146.972 -68.001 146.845 -68.040 146.764 -68.069 146.668 -68.087 146.543 -68.105 146.442 -68.134 146.346 -68.152 146.234 -68.171 146.121 -68.218 146.052 -68.256 145.970 -68.247 145.816 -68.200 145.885 -68.173 145.983 -68.076 145.964 -67.979 145.806 -67.950 145.620 -67.853 145.435 -67.767 145.166 -67.749 145.010 -67.758 144.884 -67.776 144.783 -67.776 144.515 -67.699 144.272 -67.652 144.329 -67.614 144.411 -67.575 144.481 -67.510 144.512 -67.462 144.592 -67.424 144.675 -67.386 144.757 -67.289 144.697 -67.271 144.543 -67.262 144.391 -67.165 144.333 -67.174 144.194 -67.192 144.094 -67.230 144.012 -67.260 143.929 -67.278 143.804 -67.325 143.747 -67.363 143.652 -67.382 143.552 -67.354 143.500 -67.268 143.500 -67.163 143.368 -67.154 143.215 -67.190 143.130 -67.219 143.033 -67.228 142.908 -67.219 142.755 -67.122 142.725 -67.025 142.509 -66.996 142.340 -67.005 142.213 -67.032 142.114 -67.070 142.032 -67.099 141.936 -67.126 141.836 -67.136 141.710 -67.136 141.583 -67.126 141.431 -67.029 141.204 -66.933 141.040 -66.915 140.876 -66.915 140.610 -66.924 140.484 -66.933 140.371 -66.980 140.300 -66.894 140.038 -66.877 139.874 -66.885 139.748 -66.877 139.597 -66.867 139.433 -66.867 139.306 -66.811 139.088 -66.793 138.923 -66.766 138.747 -66.736 138.566 -66.707 138.387 -66.689 138.223 -66.698 138.109 -66.680 137.934 -66.689 137.820 -66.651 137.628 -66.660 137.514 -66.669 137.389 -66.621 137.184 -66.613 137.033 -66.556 136.828 -66.518 136.648 -66.500 136.485 -66.491 136.347 -66.482 136.196 -66.473 136.057 -66.464 135.907 -66.473 135.793 -66.482 135.655 -66.509 135.567 -66.500 135.416 -66.414 135.172 -66.405 135.022 -66.376 134.844 -66.328 134.653 -66.223 134.435 -66.205 134.285 -66.223 134.172 -66.252 134.074 -66.175 133.832 -66.119 133.893 -66.062 133.942 -66.006 134.004 -65.959 134.064 -65.891 134.122 -65.815 134.143 -65.767 134.205 -65.681 134.213 -65.584 134.207 -65.479 134.053 -65.382 134.009 -65.285 133.977 -65.179 133.857 -65.208 133.772 -65.199 133.624 -65.102 133.448 -65.073 133.285 -65.111 133.211 -65.158 133.150 -65.224 133.102 -65.262 133.017 -65.368 133.109 -65.465 133.102 -65.512 133.040 -65.571 132.994 -65.668 133.112 -65.724 133.063 -65.821 133.056 -65.868 133.245 -65.965 133.288 -66.071 133.358 -66.168 133.390 -66.254 133.368 -66.281 133.279 -66.340 133.221 -66.349 133.095 -66.252 132.880 -66.234 132.717 -66.206 132.543 -66.216 132.430 -66.225 132.304 -66.234 132.179 -66.263 132.080 -66.281 131.967 -66.310 131.880 -66.310 131.742 -66.301 131.593 -66.283 131.443 -66.292 131.317 -66.301 131.203 -66.328 131.113 -66.347 130.988 -66.355 130.861 -66.373 130.759 -66.382 130.634 -66.365 130.472 -66.355 130.322 -66.373 130.220 -66.403 130.133 -66.385 129.971 -66.347 129.783 -66.347 129.584 -66.355 129.457 -66.373 129.344 -66.392 129.230 -66.430 129.141 -66.448 129.039 -66.457 128.978 -66.495 128.901 -66.534 128.802 -66.572 128.714 -66.619 128.649 -66.655 128.558 -66.714 128.508 -66.761 128.420 -66.827 128.368 -66.865 128.279 -66.874 128.291 -66.950 128.251 -67.047 128.293 -67.133 128.267 -67.181 128.202 -67.199 128.086 -67.226 127.971 -67.264 127.881 -67.273 127.742 -67.217 127.541 -67.190 127.379 -67.181 127.240 -67.190 127.125 -67.161 126.947 -67.169 126.820 -67.142 126.646 -67.036 126.421 -67.046 126.294 -67.007 126.118 -66.930 125.892 -66.825 125.884 -66.728 125.848 -66.671 125.902 -66.604 125.954 -66.576 125.908 -66.576 125.770 -66.520 125.559 -66.423 125.363 -66.423 125.237 -66.432 125.111 -66.450 125.007 -66.468 124.958 -66.495 124.865 -66.524 124.764 -66.524 124.625 -66.552 124.522 -66.599 124.432 -66.676 124.402 -66.752 124.372 -66.800 124.305 -66.847 124.226 -66.856 124.099 -66.827 123.936 -66.874 123.857 -66.883 123.718 -66.786 123.643 -66.680 123.561 -66.642 123.386 -66.642 123.259 -66.651 123.132 -66.669 123.028 -66.687 122.901 -66.716 122.787 -66.746 122.685 -66.763 122.570 -66.793 122.480 -66.829 122.271 -66.858 122.168 -66.888 122.066 -66.858 121.891 -66.773 121.936 -66.734 121.761 -66.725 121.613 -66.734 121.497 -66.716 121.336 -66.678 121.163 -66.678 121.037 -66.707 120.923 -66.707 120.899 -66.725 120.795 -66.755 120.704 -66.763 120.588 -66.802 120.484 -66.820 120.253 -66.867 120.172 -66.905 120.080 -66.944 119.976 -66.944 119.850 -66.962 119.733 -66.924 119.548 -66.953 119.456 -66.962 119.340 -66.953 119.190 -66.962 119.074 -66.971 118.947 -66.980 118.872 -66.989 118.744 -67.016 118.638 -67.034 118.532 -67.052 118.415 -67.034 118.255 -67.034 118.128 -67.025 117.978 -67.025 117.839 -67.016 117.690 -67.007 117.541 -67.016 117.425 -67.064 117.342 -67.111 117.247 -67.102 117.109 -67.075 116.927 -67.084 116.810 -67.111 116.715 -67.064 116.520 -67.046 116.372 -67.016 116.187 -66.980 116.018 -66.874 115.832 -66.777 115.742 -66.671 115.657 -66.606 115.443 -66.509 115.219 -66.479 115.047 -66.479 114.530 -66.497 114.425 -66.516 114.308 -66.545 114.203 -66.581 114.106 -66.590 113.990 -66.599 113.863 -66.581 113.704 -66.504 113.479 -66.398 113.395 -66.292 113.375 -66.195 113.140 -66.130 112.940 -66.033 112.746 -65.927 112.543 -65.830 112.373 -65.821 112.225 -65.830 112.098 -65.857 111.992 -65.895 111.897 -65.914 111.781 -65.932 111.664 -65.961 111.560 -65.979 111.454 -65.988 111.326 -65.988 111.037 -66.006 110.920 -66.015 110.792 -66.024 110.665 -66.042 110.548 -66.051 110.420 -66.060 110.294 -66.087 110.185 -66.105 110.056 -66.132 109.960 -66.161 109.854 -66.209 109.757 -66.256 109.671 -66.342 109.654 -66.389 109.667 -66.495 109.737 -66.542 109.662 -66.581 109.578 -66.608 109.470 -66.638 109.375 -66.666 109.269 -66.694 109.160 -66.723 109.066 -66.761 108.969 -66.780 108.863 -66.797 108.744 -66.770 108.588 -66.770 108.461 -66.780 108.332 -66.797 108.317 -66.827 108.222 -66.865 108.125 -66.874 108.008 -66.874 107.869 -66.922 107.793 -66.874 107.604 -66.777 107.588 -66.786 107.459 -66.739 107.270 -66.642 107.166 -66.545 107.012 -66.507 106.845 -66.489 106.688 -66.536 106.612 -66.545 106.495 -66.545 106.346 -66.536 106.198 -66.479 106.001 -66.489 105.884 -66.507 105.765 -66.470 105.600 -66.470 105.474 -66.441 105.306 -66.403 105.139 -66.394 105.004 -66.403 104.875 -66.355 104.688 -66.337 104.532 -66.299 104.367 -66.261 104.189 -66.270 104.061 -66.223 103.874 -66.231 103.745 -66.231 103.608 -66.146 103.383 -66.128 103.239 -66.101 103.085 -66.101 103.036 -66.083 102.892 -66.083 102.754 -66.101 102.636 -66.109 102.519 -66.101 102.372 -66.071 102.217 -66.024 102.032 -66.015 101.885 -66.006 101.751 -65.997 101.604 -66.006 101.477 -66.033 101.366 -66.042 101.238 -66.033 101.092 -66.033 100.966 -66.042 100.849 -66.060 100.719 -66.089 100.610 -66.137 100.520 -66.155 100.412 -66.146 100.265 -66.146 100.128 -66.155 100.000 -66.173 99.891 -66.231 99.811 -66.279 99.720 -66.315 99.630 -66.362 99.539 -66.421 99.470 -66.486 99.397 -66.524 99.308 -66.552 99.197 -66.561 99.079 -66.569 98.950 -66.588 98.879 -66.626 98.779 -66.673 98.687 -66.721 98.606 -66.768 98.526 -66.825 98.443 -66.901 98.379 -66.949 98.299 -66.919 98.131 -66.822 97.990 -66.725 97.873 -66.628 97.693 -66.628 97.566 -66.610 97.412 -66.601 97.264 -66.601 97.114 -66.628 97.014 -66.646 96.893 -66.664 96.772 -66.703 96.670 -66.780 96.617 -66.780 96.479 -66.673 96.466 -66.683 96.348 -66.664 96.192 -66.626 96.030 -66.644 95.909 -66.671 95.796 -66.689 95.686 -66.707 95.554 -66.698 95.407 -66.698 95.280 -66.716 95.147 -66.725 95.029 -66.725 94.891 -66.734 94.773 -66.743 94.643 -66.743 94.505 -66.734 94.369 -66.666 94.180 -66.649 94.025 -66.649 93.899 -66.631 93.744 -66.613 93.589 -66.642 93.516 -66.678 93.411 -66.707 93.300 -66.736 93.200 -66.746 93.082 -66.736 92.935 -66.651 92.719 -66.660 92.601 -66.669 92.482 -66.678 92.352 -66.669 92.206 -66.660 92.071 -66.660 91.818 -66.678 91.696 -66.696 91.586 -66.705 91.467 -66.696 91.309 -66.649 91.128 -66.601 90.959 -66.610 90.841 -66.610 90.704 -66.601 90.557 -66.610 90.427 -66.610 90.301 -66.619 90.170 -66.638 90.048 -66.646 89.918 -66.655 89.787 -66.673 89.665 -66.691 89.543 -66.709 89.432 -66.718 89.302 -66.728 89.183 -66.736 89.052 -66.736 88.914 -66.755 88.792 -66.773 88.681 -66.782 88.550 -66.791 88.431 -66.791 88.281 -66.800 88.150 -66.818 88.027 -66.788 87.863 -66.788 87.828 -66.750 87.707 -66.644 87.728 -66.579 87.799 -66.493 87.702 -66.193 87.446 -66.096 87.314 -66.096 87.177 -66.161 87.159 -66.268 87.149 -66.365 87.147 -66.462 87.129 -66.559 87.085 -66.655 87.094 -66.711 87.003 -66.711 86.877 -66.750 86.771 -66.856 86.760 -66.894 86.655 -66.912 86.543 -66.960 86.432 -66.969 86.302 -66.987 86.190 -67.016 86.075 -67.054 85.957 -67.072 85.845 -67.081 85.714 -67.081 85.448 -67.099 85.324 -67.099 85.185 -67.109 85.054 -67.156 84.955 -67.194 84.847 -67.221 84.742 -67.221 84.464 -67.230 84.332 -67.212 84.179 -67.194 84.036 -67.194 83.897 -67.185 83.763 -67.176 83.616 -67.185 83.496 -67.185 83.358 -67.194 83.225 -67.212 83.102 -67.203 82.967 -67.194 82.820 -67.194 82.554 -67.203 82.422 -67.212 82.290 -67.221 82.159 -67.251 82.043 -67.278 81.937 -67.316 81.829 -67.383 81.743 -67.431 81.641 -67.363 81.448 -67.257 81.302 -67.257 81.190 -67.275 81.065 -67.305 80.949 -67.370 80.861 -67.417 80.771 -67.465 80.680 -67.503 80.559 -67.559 80.464 -67.559 80.476 -67.577 80.629 -67.616 80.787 -67.701 80.995 -67.701 80.867 -67.711 80.746 -67.693 80.592 -67.654 80.422 -67.713 80.367 -67.818 80.336 -67.846 80.206 -67.855 80.085 -67.882 79.967 -67.891 79.833 -67.891 79.705 -67.909 79.579 -67.909 79.439 -67.918 79.305 -67.936 79.180 -67.954 79.065 -67.972 78.951 -67.981 78.910 -67.999 78.795 -68.017 78.669 -68.035 78.554 -68.062 78.422 -68.071 78.289 -68.089 78.174 -68.107 78.059 -68.126 77.945 -68.173 77.829 -68.220 77.724 -68.276 77.614 -68.342 77.535 -68.380 77.435 -68.427 77.329 -68.418 77.193 -68.445 77.085 -68.513 76.995 -68.551 76.871 -68.617 76.779 -68.723 76.895 -68.761 77.053 -68.790 76.946 -68.856 76.842 -68.953 76.839 -69.050 76.783 -69.088 76.669 -69.106 76.553 -69.106 76.411 -69.162 76.323 -69.192 76.191 -69.183 76.042 -69.192 75.906 -69.230 75.793 -69.239 75.670 -69.286 75.562 -69.352 75.469 -69.352 75.339 -69.370 75.209 -69.361 75.072 -69.426 74.990 -69.465 74.876 -69.512 74.781 -69.539 74.658 -69.512 74.495 -69.539 74.384 -69.503 74.227 -69.512 74.091 -69.521 73.955 -69.586 73.872 -69.683 73.918 -69.701 73.789 -69.624 73.590 -69.710 73.509 -69.710 73.354 -69.701 73.216 -69.692 73.054 -69.710 72.924 -69.728 72.834 -69.787 72.733 -69.805 72.615 -69.814 72.477 -69.814 72.322 -69.832 72.204 -69.880 72.107 -69.915 71.989 -69.933 71.858 -69.942 71.825 -70.020 71.738 -70.049 71.617 -70.109 71.508 -70.212 71.612 -70.324 71.740 -70.384 71.655 -70.365 71.508 -70.446 71.440 -70.559 71.436 -70.600 71.311 -70.619 71.193 -70.609 71.041 -70.600 70.877 -70.641 70.764 -70.691 70.670 -70.794 70.738 -70.834 70.624 -70.853 70.493 -70.904 70.387 -71.007 70.377 -71.076 70.298 -71.148 70.221 -71.260 70.254 -71.311 70.159 -71.423 70.300 -71.526 70.274 -71.545 70.142 -71.574 70.030 -71.665 69.955 -71.768 69.900 -71.799 69.777 -71.890 69.713 -71.921 69.590 -71.941 69.458 -71.971 69.347 -72.002 69.223 -72.012 69.084 -72.031 68.939 -72.050 68.806 -72.132 68.720 -72.182 68.612 -72.213 68.500 -72.264 68.390 -72.304 68.274 -72.304 68.113 -72.333 67.987 -72.352 67.854 -72.352 67.718 -72.343 67.564 -72.324 67.401 -72.292 67.243 -72.264 67.074 -72.232 66.903 -72.192 66.725 -72.132 66.534 -72.082 66.349 -71.969 66.280 -71.928 66.385 -71.878 66.495 -71.809 66.591 -71.706 66.606 -71.656 66.728 -71.553 66.731 -71.502 66.548 -71.471 66.659 -71.411 66.762 -71.352 66.852 -71.280 66.946 -71.251 67.058 -71.179 67.151 -71.151 67.263 -71.141 67.402 -71.122 67.533 -71.072 67.642 -71.011 67.743 -70.961 67.838 -70.911 67.946 -70.829 68.019 -70.726 68.088 -70.624 68.144 -70.511 68.125 -70.408 68.193 -70.305 68.130 -70.255 67.948 -70.264 67.823 -70.284 67.694 -70.293 67.557 -70.396 67.656 -70.509 67.659 -70.581 67.580 -70.693 67.573 -70.703 67.435 -70.703 67.303 -70.652 67.109 -70.571 67.194 -70.468 67.196 -70.365 67.134 -70.396 67.012 -70.446 66.916 -70.427 66.758 -70.365 66.581 -70.262 66.597 -70.150 66.541 -70.099 66.649 -70.030 66.742 -69.932 66.831 -69.902 66.812 -69.846 66.919 -69.807 67.038 -69.789 67.157 -69.828 67.313 -69.933 67.486 -69.952 67.538 -69.952 67.669 -69.933 67.800 -69.904 67.912 -69.848 68.006 -69.771 68.086 -69.674 67.982 -69.638 68.090 -69.562 68.181 -69.523 68.025 -69.505 67.858 -69.467 67.703 -69.361 67.764 -69.313 67.863 -69.305 67.988 -69.313 68.136 -69.295 68.278 -69.313 68.433 -69.340 68.581 -69.264 68.672 -69.158 68.590 -69.119 68.422 -69.043 68.242 -69.016 68.354 -68.987 68.488 -68.957 68.599 -68.860 68.637 -68.851 68.489 -68.804 68.328 -68.777 68.453 -68.748 68.563 -68.691 68.667 -68.594 68.603 -68.585 68.738 -68.585 68.867 -68.556 68.989 -68.459 69.026 -68.450 69.009 -68.353 68.882 -68.247 68.773 -68.150 68.646 -68.053 68.606 -67.947 68.624 -67.850 68.647 -67.744 68.616 -67.726 68.476 -67.735 68.342 -67.753 68.226 -67.821 68.129 -67.839 68.002 -67.848 67.867 -67.857 67.745 -67.848 67.599 -67.857 67.452 -67.857 67.313 -67.828 67.166 -67.810 67.003 -67.810 66.875 -67.801 66.741 -67.810 66.595 -67.801 66.449 -67.765 66.298 -67.746 66.146 -67.756 66.012 -67.765 65.878 -67.765 65.750 -67.756 65.616 -67.746 65.482 -67.738 65.349 -67.728 65.204 -67.719 65.058 -67.711 64.901 -67.693 64.762 -67.674 64.611 -67.666 64.478 -67.656 64.333 -67.648 64.200 -67.656 64.077 -67.656 63.782 -67.618 63.632 -67.600 63.481 -67.582 63.331 -67.564 63.192 -67.555 63.047 -67.526 62.891 -67.517 62.758 -67.517 62.467 -67.526 62.332 -67.535 62.210 -67.544 62.088 -67.582 61.970 -67.618 61.851 -67.636 61.722 -67.618 61.572 -67.600 61.422 -67.591 61.289 -67.552 61.127 -67.535 60.977 -67.535 60.583 -67.467 60.417 -67.496 60.294 -67.479 60.145 -67.442 59.997 -67.442 59.857 -67.424 59.708 -67.386 59.547 -67.377 59.415 -67.386 59.280 -67.395 59.134 -67.386 58.990 -67.377 58.846 -67.377 58.706 -67.406 58.594 -67.368 58.446 -67.386 58.317 -67.415 58.182 -67.406 58.049 -67.309 57.911 -67.280 58.047 -67.183 57.895 -67.165 57.746 -67.174 57.623 -67.192 57.494 -67.156 57.348 -67.059 57.146 -67.086 57.034 -67.077 56.902 -67.021 56.722 -67.002 56.585 -67.012 56.463 -67.029 56.334 -66.974 56.166 -66.964 56.035 -66.917 55.884 -66.908 55.741 -66.811 55.727 -66.802 55.861 -66.705 55.939 -66.714 56.082 -66.705 56.215 -66.649 56.325 -66.542 56.282 -66.514 56.130 -66.486 55.990 -66.457 55.837 -66.410 55.687 -66.400 55.544 -66.410 55.411 -66.392 55.265 -66.286 55.086 -66.189 54.926 -66.092 54.753 -66.015 54.590 -65.968 54.418 -65.929 54.274 -65.920 54.144 -65.902 53.999 -65.902 53.736 -65.893 53.594 -65.893 53.458 -65.902 53.325 -65.902 53.063 -65.867 52.908 -65.857 52.779 -65.867 52.658 -65.875 52.524 -65.893 52.407 -65.893 52.270 -65.902 52.137 -65.932 52.025 -65.950 51.908 -65.959 51.776 -65.950 51.646 -65.940 51.516 -65.950 51.383 -65.959 51.262 -65.977 51.133 -65.986 51.012 -66.015 50.887 -66.042 50.762 -66.089 50.646 -66.128 50.525 -66.195 50.429 -66.261 50.321 -66.270 50.199 -66.317 50.082 -66.347 49.958 -66.355 49.823 -66.373 49.705 -66.392 49.575 -66.439 49.458 -66.495 49.344 -66.561 49.235 -66.666 49.195 -66.763 49.225 -66.870 49.295 -66.946 49.467 -67.043 49.448 -67.072 49.587 -67.120 49.746 -67.138 49.882 -67.147 49.823 -67.183 49.689 -67.192 49.565 -67.192 49.426 -67.163 49.275 -67.163 49.148 -67.115 48.988 -67.019 48.846 -67.027 48.722 -67.046 48.592 -67.064 48.460 -67.081 48.356 -67.016 48.189 -66.978 48.312 -66.960 48.328 -66.863 48.213 -66.910 48.106 -66.928 47.987 -66.937 47.852 -66.967 47.714 -67.014 47.607 -67.091 47.361 -67.188 47.312 -67.235 47.459 -67.253 47.606 -67.359 47.700 -67.359 47.840 -67.341 47.971 -67.388 48.131 -67.427 48.007 -67.454 47.880 -67.454 47.740 -67.483 47.624 -67.548 47.513 -67.577 47.397 -67.596 47.265 -67.604 47.141 -67.614 47.094 -67.623 47.023 -67.661 46.899 -67.679 46.778 -67.697 46.646 -67.706 46.510 -67.688 46.363 -67.591 46.273 -67.505 46.111 -67.469 46.224 -67.440 46.340 -67.402 46.475 -67.375 46.402 -67.336 46.259 -67.327 46.129 -67.251 45.959 -67.260 45.823 -67.260 45.684 -67.268 45.548 -67.286 45.417 -67.325 45.292 -67.422 45.295 -67.528 45.336 -67.625 45.335 -67.625 45.068 -67.643 44.935 -67.661 44.814 -67.746 44.708 -67.681 44.543 -67.681 44.403 -67.690 44.267 -67.699 44.130 -67.717 44.009 -67.756 43.884 -67.812 43.765 -67.868 43.658 -67.934 43.543 -67.952 43.421 -67.960 43.284 -67.943 43.137 -67.960 43.015 -67.999 42.890 -68.026 42.771 -68.017 42.639 -68.008 42.508 -67.999 42.352 -68.008 42.215 -68.026 42.081 -68.044 41.959 -68.091 41.836 -68.101 41.698 -68.166 41.593 -68.243 41.480 -68.299 41.371 -68.328 41.252 -68.337 41.103 -68.346 40.965 -68.375 40.846 -68.393 40.711 -68.423 40.581 -68.441 40.446 -68.459 40.311 -68.459 40.170 -68.536 40.055 -68.612 39.940 -68.621 39.801 -68.631 39.663 -68.678 39.550 -68.725 39.424 -68.743 39.289 -68.761 39.153 -68.779 39.017 -68.779 38.993 -68.847 38.874 -68.912 38.766 -69.009 38.772 -69.115 38.795 -69.162 38.668 -69.259 38.763 -69.365 38.786 -69.422 38.662 -69.519 38.706 -69.557 38.588 -69.557 38.445 -69.604 38.317 -69.622 38.180 -69.641 38.043 -69.726 37.928 -69.812 37.824 -69.868 37.711 -69.812 37.549 -69.715 37.559 -69.618 37.552 -69.512 37.650 -69.415 37.595 -69.453 37.464 -69.550 37.364 -69.647 37.330 -69.753 37.232 -69.850 37.159 -69.744 37.126 -69.647 36.993 -69.618 36.841 -69.636 36.716 -69.571 36.553 -69.571 36.410 -69.532 36.268 -69.485 36.385 -69.458 36.507 -69.458 36.780 -69.372 36.896 -69.266 36.928 -69.169 36.910 -69.178 36.771 -69.205 36.636 -69.253 36.509 -69.271 36.384 -69.289 36.247 -69.327 36.116 -69.424 36.015 -69.510 35.909 -69.548 35.790 -69.595 35.661 -69.557 35.519 -69.460 35.360 -69.392 35.199 -69.295 35.095 -69.325 35.246 -69.372 35.390 -69.316 35.516 -69.219 35.424 -69.181 35.271 -69.151 35.133 -69.142 35.000 -69.124 34.865 -69.095 34.727 -69.039 34.569 -69.009 34.497 -68.953 34.340 -68.897 34.194 -68.849 34.040 -68.773 33.890 -68.666 33.861 -68.569 33.812 -68.472 33.698 -68.445 33.550 -68.427 33.404 -68.418 33.261 -68.418 33.120 -68.437 32.983 -68.455 32.848 -68.493 32.716 -68.540 32.587 -68.597 32.460 -68.693 32.343 -68.790 32.380 -68.887 32.455 -68.905 32.318 -68.935 32.184 -68.991 32.057 -69.088 32.041 -69.194 31.914 -69.223 31.845 -69.280 31.705 -69.309 31.569 -69.336 31.445 -69.365 31.311 -69.403 31.189 -69.431 31.065 -69.449 30.939 -69.476 30.815 -69.494 30.689 -69.530 30.554 -69.577 30.435 -69.654 30.191 -69.672 30.064 -69.681 29.924 -69.681 29.793 -69.690 29.664 -69.690 29.533 -69.699 29.404 -69.699 29.273 -69.708 29.132 -69.708 28.728 -69.717 28.599 -69.726 28.457 -69.744 28.330 -69.773 28.205 -69.791 28.066 -69.821 27.941 -69.848 27.816 -69.877 27.666 -69.886 27.656 -69.895 27.526 -69.904 27.385 -69.922 27.257 -69.932 27.116 -69.970 26.968 -69.979 26.838 -69.997 26.710 -70.028 26.573 -70.028 26.442 -70.008 26.306 -70.008 26.175 -70.018 26.034 -70.028 25.904 -70.047 25.777 -70.066 25.649 -70.076 25.495 -70.085 25.365 -70.104 25.237 -70.142 25.101 -70.174 24.976 -70.174 24.568 -70.193 24.440 -70.212 24.300 -70.221 24.170 -70.240 24.029 -70.250 23.899 -70.269 23.759 -70.279 23.629 -70.298 23.488 -70.308 23.358 -70.327 23.217 -70.336 23.087 -70.346 22.944 -70.365 22.815 -70.375 22.673 -70.384 22.542 -70.394 22.400 -70.403 22.269 -70.403 21.861 -70.384 21.726 -70.375 21.593 -70.356 21.458 -70.324 21.297 -70.296 21.161 -70.264 21.013 -70.255 20.868 -70.255 20.197 -70.245 20.064 -70.236 19.931 -70.226 19.798 -70.198 19.651 -70.179 19.492 -70.150 19.345 -70.118 19.198 -70.087 19.050 -70.078 18.906 -70.058 18.760 -70.028 18.601 -70.018 18.456 -70.008 18.323 -69.990 18.179 -69.972 18.033 -69.972 17.902 -69.963 17.770 -69.954 17.614 -69.915 17.479 -69.868 17.331 -69.839 17.198 -69.848 17.056 -69.866 16.914 -69.884 16.799 -69.913 16.658 -69.922 16.528 -69.940 16.386 -69.958 16.243 -69.977 16.101 -69.994 15.971 -70.013 15.829 -70.032 15.687 -70.042 15.544 -70.071 15.402 -70.090 15.260 -70.099 15.129 -70.118 14.987 -70.128 14.843 -70.137 14.701 -70.137 14.030 -70.118 13.886 -70.090 13.741 -70.058 13.608 -70.028 13.475 -70.008 13.319 -70.018 13.188 -70.049 13.045 -70.078 12.890 -70.097 12.747 -70.126 12.592 -70.126 11.910 -70.198 11.780 -70.267 11.638 -70.473 11.378 -70.554 11.248 -70.583 11.116 -70.573 10.971 -70.564 10.838 -70.554 10.694 -70.564 10.549 -70.554 10.405 -70.544 10.272 -70.535 10.140 -70.525 10.008 -70.506 9.864 -70.456 9.732 -70.384 9.588 -70.272 9.472 -70.243 9.341 -70.212 9.197 -70.193 9.053 -70.152 8.833 -70.092 8.663 -70.030 8.496 -70.001 8.365 -69.954 8.183 -69.945 8.013 -69.936 7.845 -69.927 7.714 -69.956 7.569 -70.023 7.699 -70.126 7.984 -70.238 7.877 -70.329 7.717 -70.348 7.533 -70.317 7.365 -70.214 7.185 -70.102 7.098 -70.030 6.944 -70.011 6.881 -70.011 6.725 -70.030 6.593 -70.092 6.447 -70.161 6.300 -70.274 6.163 -70.365 6.014 -70.415 5.855 -70.446 5.709 -70.456 5.540 -70.465 5.367 -70.465 4.869 -70.456 4.698 -70.465 4.541 -70.475 4.316 -70.494 4.093 -70.504 3.936 -70.523 3.701 -70.523 3.544 -70.554 3.292 -70.595 3.000 -70.624 2.787 -70.643 2.589 -70.652 2.444 -70.652 2.061 -70.681 1.886 -70.712 1.738 -70.744 1.550 -70.763 1.378 -70.782 1.231 -70.832 1.053 -70.863 0.827 -70.904 0.624 -70.945 0.394 -70.973 0.193 -70.992 0.020 -71.011 -0.155 -71.102 -0.325 -71.172 -0.508 -71.254 -0.677 -71.334 -0.834 -71.354 -0.887 -71.435 -1.032 -71.497 -1.175 -71.478 -1.318 -71.459 -1.462 -71.450 -1.594 -71.399 -1.745 -71.296 -1.651 -71.193 -1.676 -71.131 -1.800 -71.122 -1.932 -71.141 -2.081 -71.222 -2.239 -71.282 -2.382 -71.254 -2.523 -71.254 -2.815 -71.313 -2.958 -71.210 -3.047 -71.129 -3.166 -71.016 -3.159 -71.057 -3.299 -71.076 -3.436 -71.076 -3.594 -71.086 -3.729 -71.136 -3.871 -71.136 -4.149 -71.155 -4.311 -71.165 -4.458 -71.155 -4.603 -71.124 -4.729 -71.143 -4.891 -71.162 -5.040 -71.162 -5.186 -71.143 -5.340 -71.124 -5.470 -71.133 -5.605 -71.172 -5.759 -71.191 -5.896 -71.210 -6.045 -71.220 -6.193 -71.230 -6.340 -71.239 -6.501 -71.258 -6.663 -71.249 -6.819 -71.157 -6.933 -71.054 -6.923 -70.951 -6.864 -70.892 -6.718 -70.842 -6.562 -70.791 -6.407 -70.731 -6.249 -70.619 -6.315 -70.588 -6.401 -70.538 -6.535 -70.518 -6.676 -70.528 -6.810 -70.538 -6.969 -70.568 -7.108 -70.619 -7.263 -70.710 -7.415 -70.750 -7.569 -70.791 -7.724 -70.842 -7.868 -70.945 -8.009 -71.057 -8.168 -71.160 -8.338 -71.231 -8.488 -71.334 -8.434 -71.437 -8.191 -71.540 -8.191 -71.550 -8.352 -71.550 -8.632 -71.560 -8.781 -71.600 -8.925 -71.651 -9.084 -71.651 -9.230 -71.619 -9.356 -71.529 -9.480 -71.426 -9.532 -71.313 -9.557 -71.201 -9.593 -71.098 -9.673 -71.028 -9.788 -70.966 -9.918 -70.928 -10.053 -70.897 -10.190 -70.887 -10.320 -70.847 -10.443 -70.744 -10.327 -70.734 -10.481 -70.724 -10.611 -70.734 -10.654 -70.744 -10.746 -70.763 -10.909 -70.794 -11.061 -70.825 -11.215 -70.875 -11.111 -70.894 -10.971 -70.925 -10.822 -71.028 -10.967 -71.098 -11.132 -71.179 -11.299 -71.282 -11.460 -71.385 -11.607 -71.476 -11.766 -71.495 -11.905 -71.495 -12.052 -71.464 -12.189 -71.423 -12.323 -71.320 -12.400 -71.208 -12.392 -71.105 -12.350 -71.105 -12.483 -71.114 -12.631 -71.146 -12.798 -71.165 -12.950 -71.268 -13.058 -71.380 -13.001 -71.483 -12.897 -71.512 -12.760 -71.543 -12.622 -71.543 -12.610 -71.593 -12.491 -71.643 -12.359 -71.684 -12.224 -71.787 -12.120 -71.890 -12.108 -71.993 -12.163 -72.096 -12.311 -72.166 -12.466 -72.206 -12.613 -72.235 -12.770 -72.338 -12.948 -72.400 -13.103 -72.429 -13.259 -72.470 -13.419 -72.501 -13.577 -72.520 -13.731 -72.551 -13.889 -72.610 -14.056 -72.639 -14.214 -72.630 -14.347 -72.610 -14.476 -72.610 -14.924 -72.601 -15.083 -72.639 -15.243 -72.690 -15.124 -72.699 -15.049 -72.718 -14.919 -72.788 -14.792 -72.807 -14.650 -72.826 -14.507 -72.886 -14.663 -72.937 -14.828 -72.956 -14.983 -73.016 -15.140 -73.035 -15.295 -73.016 -15.425 -73.006 -15.571 -72.996 -15.717 -72.987 -15.863 -72.987 -16.025 -73.068 -16.352 -73.087 -16.495 -73.106 -16.650 -73.116 -16.804 -73.185 -16.965 -73.288 -17.068 -73.400 -17.188 -73.439 -17.352 -73.511 -17.528 -73.614 -17.566 -73.583 -17.404 -73.564 -17.259 -73.554 -17.118 -73.523 -16.970 -73.554 -16.831 -73.592 -16.982 -73.655 -17.155 -73.714 -17.327 -73.724 -17.468 -73.765 -17.633 -73.793 -17.494 -73.803 -17.359 -73.822 -17.215 -73.832 -17.081 -73.832 -16.917 -73.841 -16.782 -73.832 -16.616 -73.822 -16.461 -73.803 -16.316 -73.793 -16.175 -73.774 -16.031 -73.743 -15.882 -73.714 -15.722 -73.655 -15.551 -73.592 -15.392 -73.611 -15.236 -73.693 -15.125 -73.683 -14.971 -73.683 -14.821 -73.703 -14.663 -73.741 -14.526 -73.772 -14.686 -73.822 -14.840 -73.863 -14.992 -73.882 -15.150 -73.901 -15.294 -73.901 -15.458 -73.930 -15.619 -73.980 -15.787 -74.040 -15.959 -74.081 -16.124 -74.112 -16.286 -74.131 -16.445 -74.234 -16.578 -74.284 -16.748 -74.316 -16.898 -74.335 -17.043 -74.354 -17.202 -74.392 -17.368 -74.433 -17.522 -74.464 -17.673 -74.483 -17.789 -74.596 -17.955 -74.699 -18.007 -74.802 -18.126 -74.873 -18.307 -74.964 -18.481 -74.984 -18.642 -75.105 -18.776 -75.205 -18.961 -75.317 -18.914 -75.361 -18.779 -75.382 -18.635 -75.461 -18.528 -75.482 -18.679 -75.492 -18.838 -75.482 -19.000 -75.503 -19.164 -75.524 -19.329 -75.534 -19.487 -75.524 -19.667 -75.524 -19.808 -75.514 -19.971 -75.503 -20.107 -75.492 -20.257 -75.471 -20.401 -75.482 -20.561 -75.492 -20.733 -75.526 -20.890 -75.626 -21.093 -75.657 -21.250 -75.679 -21.415 -75.679 -21.712 -75.668 -21.861 -75.689 -22.026 -75.679 -22.176 -75.657 -22.306 -75.636 -22.464 -75.626 -22.626 -75.647 -22.779 -75.691 -22.956 -75.702 -23.117 -75.702 -23.426 -75.723 -23.579 -75.744 -23.732 -75.744 -23.899 -75.734 -24.049 -75.744 -24.236 -75.754 -24.397 -75.775 -24.563 -75.786 -24.724 -75.786 -25.021 -75.796 -25.194 -75.817 -25.362 -75.838 -25.529 -75.849 -25.689 -75.870 -25.843 -75.880 -26.004 -75.914 -26.178 -75.959 -26.360 -76.003 -26.527 -76.045 -26.707 -76.045 -26.862 -76.003 -26.994 -76.003 -27.163 -76.035 -27.324 -76.100 -27.206 -76.110 -27.368 -76.121 -27.531 -76.153 -27.691 -76.208 -27.880 -76.218 -28.029 -76.218 -28.484 -76.228 -28.647 -76.249 -28.802 -76.260 -28.978 -76.294 -29.156 -76.328 -29.332 -76.349 -29.489 -76.383 -29.667 -76.472 -29.866 -76.517 -30.038 -76.550 -30.215 -76.561 -30.366 -76.592 -30.556 -76.660 -30.743 -76.702 -30.928 -76.737 -31.094 -76.757 -31.266 -76.768 -31.430 -76.778 -31.581 -76.799 -31.765 -76.820 -31.937 -76.920 -32.148 -77.019 -32.373 -77.029 -32.524 -77.040 -32.690 -77.040 -33.195 -77.061 -33.367 -77.095 -33.563 -77.137 -33.736 -77.158 -33.909 -77.168 -33.657 -77.179 -33.810 -77.257 -34.023 -77.300 -34.198 -77.320 -34.372 -77.352 -34.540 -77.440 -34.762 -77.506 -34.969 -77.619 -35.179 -77.674 -35.379 -77.729 -35.578 -77.784 -35.765 -77.794 -35.801 -77.849 -35.988 -77.928 -36.206 -78.040 -36.438 -78.153 -36.653 -78.266 -36.796 -78.378 -36.855 -78.491 -36.868 -78.567 -36.778 -78.632 -36.680 -78.667 -36.543 -78.687 -36.383 -78.708 -36.236 -78.719 -36.095 -78.729 -35.941 -78.750 -35.781 -78.761 -35.598 -78.771 -35.443 -78.792 -35.309 -78.803 -35.155 -78.824 -35.007 -78.844 -34.874 -78.879 -34.736 -78.923 -34.620 -78.968 -34.489 -78.999 -34.363 -79.020 -34.214 -79.031 -34.059 -79.041 -33.875 -79.052 -33.733 -79.052 -33.407 -79.041 -33.222 -79.031 -33.020 -79.009 -32.855 -78.999 -32.671 -78.978 -32.479 -78.968 -32.322 -78.947 -32.159 -78.936 -31.974 -78.915 -31.811 -78.905 -31.627 -78.884 -31.436 -78.863 -31.259 -78.842 -31.095 -78.832 -30.926 -78.821 -30.770 -78.810 -30.614 -78.789 -30.424 -78.779 -30.268 -78.769 -30.112 -78.758 -29.942 -78.748 -29.773 -78.748 -29.596 -78.737 -29.413 -78.726 -29.243 -78.716 -29.075 -78.706 -28.905 -78.696 -28.737 -78.674 -28.561 -78.664 -28.378 -78.653 -28.223 -78.643 -28.040 -78.722 -27.941 -78.742 -28.116 -78.777 -28.300 -78.797 -28.462 -78.818 -28.638 -78.839 -28.814 -78.860 -28.977 -78.894 -29.161 -78.949 -29.346 -78.983 -29.517 -79.025 -29.693 -79.070 -29.886 -79.115 -30.080 -79.159 -30.259 -79.180 -30.436 -79.201 -30.614 -79.290 -30.851 -79.311 -30.701 -79.332 -30.552 -79.353 -30.401 -79.373 -30.264 -79.384 -30.094 -79.395 -29.936 -79.416 -29.771 -79.426 -29.614 -79.447 -29.463 -79.457 -29.305 -79.479 -29.169 -79.499 -29.032 -79.520 -28.881 -79.575 -28.664 -79.651 -28.639 -79.763 -28.739 -79.829 -28.933 -79.863 -29.107 -79.884 -29.300 -79.895 -29.473 -79.905 -29.645 -79.916 -29.818 -79.926 -29.990 -79.936 -30.178 -79.947 -30.350 -79.957 -30.523 -79.957 -30.675 -79.968 -30.834 -79.957 -31.025 -79.957 -31.190 -79.968 -31.377 -80.084 -31.621 -80.097 -31.824 -80.097 -32.005 -80.084 -32.176 -80.111 -32.346 -80.137 -32.515 -80.163 -32.700 -80.188 -32.883 -80.202 -33.045 -80.215 -33.235 -80.202 -33.392 -80.202 -33.573 -80.215 -33.763 -80.267 -33.952 -80.280 -34.127 -80.280 -34.479 -80.267 -34.665 -80.267 -35.030 -80.310 -35.241 -80.365 -35.433 -80.392 -35.620 -80.418 -35.792 -80.431 -35.968 -80.431 -36.289 -80.444 -36.465 -80.444 -37.123 -80.470 -37.324 -80.496 -37.511 -80.509 -37.702 -80.536 -37.890 -80.548 -38.053 -80.574 -38.240 -80.601 -38.443 -80.627 -38.645 -80.653 -38.819 -80.679 -38.992 -80.692 -39.170 -80.705 -39.364 -80.718 -39.541 -80.731 -39.733 -80.745 -39.927 -80.757 -40.119 -80.771 -40.297 -80.783 -40.476 -80.810 -40.666 -80.823 -40.844 -80.836 -41.023 -80.849 -41.217 -80.875 -41.407 -80.888 -41.599 -80.901 -41.793 -80.915 -41.973 -80.941 -42.177 -80.980 -42.378 -81.120 -42.651 -81.274 -42.811 -81.330 -43.042 -81.356 -43.220 -81.382 -43.411 -81.395 -43.608 -81.395 -43.777 -81.407 -43.958 -81.407 -44.127 -81.421 -44.309 -81.421 -44.866 -81.407 -45.009 -81.395 -45.167 -81.395 -45.323 -81.382 -45.481 -81.369 -45.625 -81.369 -45.826 -81.356 -46.013 -81.356 -46.771 -81.342 -46.943 -81.342 -47.668 -81.356 -47.851 -81.356 -48.207 -81.369 -48.390 -81.369 -48.559 -81.382 -48.726 -81.382 -49.066 -81.395 -49.248 -81.395 -49.418 -81.407 -49.600 -81.421 -49.783 -81.421 -49.938 -81.434 -50.121 -81.447 -50.303 -81.447 -50.458 -81.460 -50.642 -81.460 -50.811 -81.474 -50.980 -81.486 -51.148 -81.513 -51.377 -81.525 -51.574 -81.539 -51.743 -81.551 -51.958 -81.565 -52.127 -81.578 -52.312 -81.578 -52.669 -81.591 -52.838 -81.604 -53.022 -81.617 -53.205 -81.630 -53.375 -81.643 -53.559 -81.656 -53.743 -81.669 -53.912 -81.683 -54.082 -81.709 -54.295 -81.735 -54.507 -81.761 -54.719 -81.787 -54.932 -81.800 -55.102 -81.826 -55.316 -81.853 -55.547 -81.895 -55.778 -81.964 -56.023 -82.045 -56.283 -82.101 -56.515 -82.156 -56.732 -82.196 -56.947 -82.238 -57.152 -82.307 -57.399 -82.375 -57.633 -82.431 -57.867 -82.499 -58.117 -82.513 -58.290 -82.525 -58.492 -82.525 -58.822 -82.513 -58.981 -82.487 -59.187 -82.447 -59.300 -82.293 -59.154 -82.153 -58.966 -82.098 -59.061 -82.071 -59.202 -82.032 -59.330 -82.006 -59.505 -81.980 -59.632 -81.954 -59.788 -81.928 -59.977 -81.914 -60.148 -81.901 -60.289 -81.889 -60.478 -81.875 -60.619 -81.862 -60.804 -81.849 -60.961 -81.836 -61.102 -81.810 -61.228 -81.797 -61.412 -81.784 -61.601 -81.757 -61.770 -81.745 -61.926 -81.719 -62.095 -81.692 -62.267 -81.666 -62.436 -81.653 -62.624 -81.627 -62.797 -81.601 -62.964 -81.587 -63.152 -81.561 -63.320 -81.548 -63.507 -81.522 -63.661 -81.496 -63.814 -81.470 -63.982 -81.457 -64.150 -81.431 -64.318 -81.405 -64.489 -81.378 -64.641 -81.366 -64.828 -81.352 -64.996 -81.326 -65.148 -81.300 -65.301 -81.287 -65.487 -81.261 -65.639 -81.234 -65.790 -81.208 -65.942 -81.182 -66.094 -81.169 -66.261 -81.143 -66.413 -81.130 -66.580 -81.104 -66.731 -81.078 -66.882 -81.052 -67.019 -81.025 -67.169 -81.013 -67.336 -80.987 -67.487 -80.960 -67.622 -80.947 -67.789 -80.921 -67.925 -80.908 -68.091 -80.895 -68.257 -80.882 -68.410 -80.855 -68.545 -80.843 -68.712 -80.829 -68.862 -80.803 -69.013 -80.790 -69.164 -80.777 -69.316 -80.751 -69.450 -80.738 -69.617 -80.725 -69.767 -80.699 -69.902 -80.699 -70.069 -80.685 -70.220 -80.673 -70.372 -80.673 -70.540 -80.659 -70.676 -80.659 -70.858 -80.646 -70.994 -80.646 -71.176 -80.634 -71.327 -80.620 -71.478 -80.607 -71.628 -80.594 -71.765 -80.581 -71.915 -80.568 -72.080 -80.555 -72.216 -80.542 -72.366 -80.542 -72.533 -80.529 -72.684 -80.502 -72.816 -80.490 -72.967 -80.464 -73.086 -80.450 -73.236 -80.424 -73.353 -80.398 -73.485 -80.385 -73.636 -80.372 -73.771 -80.320 -74.035 -80.306 -74.170 -80.293 -74.318 -80.280 -74.454 -80.267 -74.603 -80.255 -74.739 -80.241 -74.888 -80.202 -75.016 -80.133 -75.089 -80.078 -75.181 -80.022 -75.272 -79.986 -75.388 -79.953 -75.507 -79.918 -75.623 -79.887 -75.730 -79.843 -75.847 -79.808 -75.963 -79.787 -76.126 -79.766 -76.275 -79.756 -76.412 -79.735 -76.575 -79.735 -77.359 -79.745 -77.568 -79.745 -78.201 -79.735 -78.336 -79.735 -78.487 -79.714 -78.650 -79.704 -78.815 -79.682 -78.976 -79.662 -79.110 -79.651 -79.287 -79.630 -79.436 -79.596 -79.610 -79.596 -79.638 -79.575 -79.786 -79.554 -79.933 -79.509 -80.031 -79.509 -79.881 -79.531 -79.716 -79.541 -79.553 -79.562 -79.434 -79.572 -79.252 -79.583 -79.117 -79.593 -78.981 -79.615 -78.880 -79.625 -78.716 -79.625 -78.551 -79.635 -78.388 -79.635 -77.769 -79.625 -77.589 -79.625 -77.438 -79.604 -77.243 -79.583 -77.139 -79.538 -76.923 -79.483 -76.680 -79.371 -76.369 -79.248 -76.235 -79.182 -76.306 -79.117 -76.362 -79.062 -76.448 -79.028 -76.563 -78.997 -76.695 -78.976 -76.843 -78.954 -76.989 -78.934 -77.136 -78.923 -77.298 -78.902 -77.445 -78.902 -77.997 -78.913 -78.189 -78.913 -78.338 -78.923 -78.530 -78.923 -79.241 -78.913 -79.375 -78.913 -79.538 -78.902 -79.671 -78.902 -79.849 -78.892 -80.024 -78.881 -80.186 -78.870 -80.346 -78.870 -80.496 -78.925 -80.740 -78.991 -80.688 -79.060 -80.641 -79.125 -80.575 -79.237 -80.579 -79.248 -80.745 -79.193 -80.827 -79.148 -80.909 -79.117 -81.039 -79.083 -81.153 -79.049 -81.279 -79.017 -81.381 -78.973 -81.477 -78.907 -81.542 -78.852 -81.623 -78.818 -81.734 -78.797 -81.879 -78.777 -82.025 -78.777 -82.201 -78.797 -82.427 -78.797 -82.589 -78.777 -82.734 -78.745 -82.835 -78.711 -82.946 -78.679 -83.060 -78.645 -83.170 -78.601 -83.251 -78.557 -83.332 -78.514 -83.430 -78.460 -83.522 -78.234 -83.825 -78.190 -83.932 -78.156 -84.027 -78.124 -84.141 -78.090 -84.250 -77.977 -84.208 -77.967 -84.018 -77.957 -83.828 -77.957 -83.476 -77.967 -83.332 -77.988 -83.202 -78.032 -83.108 -78.077 -83.029 -78.109 -82.916 -78.142 -82.805 -78.177 -82.696 -78.197 -82.565 -78.232 -82.469 -78.263 -82.356 -78.284 -82.225 -78.305 -82.082 -78.326 -81.966 -78.347 -81.822 -78.368 -81.677 -78.389 -81.548 -78.410 -81.417 -78.431 -81.272 -78.451 -81.141 -78.451 -80.790 -78.462 -80.631 -78.462 -80.410 -78.473 -80.264 -78.483 -80.103 -78.483 -79.569 -78.473 -79.379 -78.473 -79.186 -78.462 -79.022 -78.441 -78.831 -78.420 -78.624 -78.399 -78.432 -78.378 -78.254 -78.358 -78.077 -78.292 -77.822 -78.179 -77.764 -78.114 -77.831 -78.069 -77.944 -78.035 -78.055 -78.004 -78.171 -77.983 -78.302 -77.962 -78.433 -77.941 -78.577 -77.931 -78.723 -77.920 -78.867 -77.899 -78.998 -77.888 -79.142 -77.878 -79.303 -77.868 -79.447 -77.857 -79.593 -77.847 -79.737 -77.836 -79.896 -77.826 -80.041 -77.815 -80.186 -77.794 -80.330 -77.784 -80.474 -77.774 -80.619 -77.752 -80.748 -77.731 -80.877 -77.721 -81.022 -77.700 -81.179 -77.679 -81.294 -77.668 -81.425 -77.637 -81.552 -77.616 -81.667 -77.585 -81.794 -77.585 -81.621 -77.595 -81.477 -77.606 -81.333 -77.616 -81.188 -77.585 -80.983 -77.564 -81.111 -77.543 -81.241 -77.522 -81.369 -77.491 -81.483 -77.469 -81.611 -77.438 -81.711 -77.339 -81.723 -77.329 -81.550 -77.329 -81.377 -77.339 -81.233 -77.339 -81.074 -77.349 -80.931 -77.370 -80.816 -77.402 -80.702 -77.436 -80.606 -77.457 -80.491 -77.477 -80.348 -77.488 -80.204 -77.498 -80.060 -77.509 -79.930 -77.520 -79.772 -77.530 -79.627 -77.540 -79.483 -77.551 -79.339 -77.561 -79.194 -77.572 -79.050 -77.593 -78.920 -77.603 -78.762 -77.613 -78.630 -77.624 -78.473 -77.635 -78.328 -77.645 -78.182 -77.635 -78.009 -77.635 -77.849 -77.624 -77.661 -77.635 -77.516 -77.635 -77.356 -77.645 -77.210 -77.656 -77.066 -77.666 -76.920 -77.676 -76.775 -77.687 -76.631 -77.697 -76.472 -77.719 -76.327 -77.729 -76.195 -77.750 -76.064 -77.771 -75.934 -77.781 -75.788 -77.802 -75.643 -77.813 -75.498 -77.833 -75.353 -77.833 -75.031 -77.823 -74.858 -77.813 -74.697 -77.792 -74.508 -77.748 -74.288 -77.703 -74.067 -77.648 -73.847 -77.558 -73.581 -77.436 -73.288 -77.323 -73.239 -77.292 -73.356 -77.271 -73.487 -77.249 -73.618 -77.239 -73.762 -77.229 -73.907 -77.229 -74.052 -77.218 -74.196 -77.208 -74.341 -77.208 -74.500 -77.197 -74.631 -77.187 -74.775 -77.176 -74.920 -77.176 -75.078 -77.187 -75.237 -77.197 -75.410 -77.218 -75.596 -77.229 -75.756 -77.229 -75.915 -77.208 -76.046 -77.163 -76.142 -77.132 -76.245 -77.098 -76.356 -77.053 -76.439 -77.022 -76.554 -76.977 -76.637 -76.933 -76.748 -76.899 -76.846 -76.867 -76.959 -76.846 -77.075 -76.826 -77.204 -76.804 -77.332 -76.760 -77.414 -76.694 -77.468 -76.650 -77.564 -76.605 -77.658 -76.584 -77.773 -76.550 -77.883 -76.517 -77.980 -76.404 -78.110 -76.338 -78.175 -76.294 -78.270 -76.252 -78.498 -76.231 -78.612 -76.186 -78.706 -76.145 -78.790 -76.021 -78.715 -75.980 -78.812 -75.867 -78.669 -75.822 -78.465 -75.801 -78.281 -75.726 -78.035 -75.660 -78.100 -75.650 -78.046 -75.660 -77.876 -75.681 -77.751 -75.702 -77.637 -75.744 -77.526 -75.789 -77.446 -75.778 -77.276 -75.778 -77.121 -75.767 -76.938 -75.778 -76.784 -75.799 -76.657 -75.877 -76.608 -75.966 -76.587 -76.055 -76.565 -76.110 -76.497 -76.155 -76.402 -76.186 -76.301 -76.208 -76.187 -76.228 -76.073 -76.249 -75.945 -76.270 -75.830 -76.281 -75.702 -76.291 -75.559 -76.291 -75.404 -76.301 -75.248 -76.301 -75.105 -76.291 -74.948 -76.291 -74.805 -76.301 -74.662 -76.312 -74.533 -76.333 -74.418 -76.354 -74.289 -76.364 -74.160 -76.364 -73.717 -76.354 -73.560 -76.354 -73.074 -76.364 -72.945 -76.364 -72.802 -76.375 -72.659 -76.385 -72.529 -76.396 -72.399 -76.396 -72.256 -76.385 -72.073 -76.385 -71.786 -76.396 -71.644 -76.396 -71.501 -76.407 -71.344 -76.417 -71.201 -76.427 -71.071 -76.438 -70.940 -76.427 -70.784 -76.407 -70.601 -76.328 -70.345 -76.205 -70.202 -76.092 -70.074 -76.047 -69.862 -76.016 -69.681 -76.006 -69.499 -76.006 -69.330 -75.995 -69.161 -75.974 -68.980 -75.974 -68.812 -75.964 -68.629 -75.875 -68.236 -75.864 -68.055 -75.864 -67.900 -75.854 -67.731 -75.833 -67.564 -75.801 -67.370 -75.780 -67.203 -75.780 -66.877 -75.770 -66.709 -75.726 -66.488 -75.671 -66.281 -75.650 -66.101 -75.628 -65.934 -75.587 -65.731 -75.518 -65.509 -75.498 -65.330 -75.477 -65.165 -75.443 -64.971 -75.408 -64.763 -75.367 -64.574 -75.333 -64.368 -75.288 -64.176 -75.267 -64.096 -75.223 -63.891 -75.147 -63.638 -75.034 -63.510 -75.034 -63.817 -75.044 -63.969 -75.034 -64.123 -75.044 -64.275 -75.066 -64.440 -75.066 -64.594 -75.000 -64.672 -74.940 -64.471 -74.921 -64.312 -74.902 -64.126 -74.902 -63.974 -74.882 -63.814 -74.892 -63.658 -74.842 -63.469 -74.770 -63.550 -74.760 -63.706 -74.760 -63.998 -74.770 -64.161 -74.732 -64.275 -74.722 -64.114 -74.694 -63.945 -74.653 -63.765 -74.662 -63.609 -74.581 -63.390 -74.531 -63.492 -74.480 -63.582 -74.368 -63.595 -74.409 -63.482 -74.440 -63.348 -74.449 -63.218 -74.480 -63.109 -74.509 -62.998 -74.612 -62.946 -74.725 -62.917 -74.734 -62.774 -74.715 -62.589 -74.675 -62.410 -74.572 -62.230 -74.543 -62.228 -74.461 -62.288 -74.371 -62.353 -74.268 -62.172 -74.165 -62.060 -74.062 -62.113 -74.042 -61.942 -74.023 -61.773 -73.961 -61.563 -73.858 -61.532 -73.849 -61.674 -73.820 -61.810 -73.801 -61.943 -73.750 -62.033 -73.700 -62.148 -73.671 -61.983 -73.671 -61.820 -73.700 -61.710 -73.750 -61.606 -73.760 -61.464 -73.709 -61.266 -73.597 -61.253 -73.494 -61.019 -73.484 -61.147 -73.453 -61.268 -73.350 -61.183 -73.331 -61.316 -73.312 -61.460 -73.302 -61.588 -73.274 -61.723 -73.283 -61.869 -73.315 -62.036 -73.233 -62.109 -73.152 -62.168 -73.161 -62.041 -73.142 -61.873 -73.123 -62.004 -73.020 -62.043 -73.001 -62.174 -72.941 -62.266 -72.941 -62.105 -72.951 -61.978 -72.960 -61.837 -72.989 -61.716 -73.030 -61.605 -73.099 -61.533 -73.119 -61.402 -73.037 -61.189 -73.140 -61.165 -73.171 -61.057 -72.965 -60.865 -73.035 -60.768 -73.085 -60.678 -73.075 -60.507 -73.006 -60.293 -72.893 -60.326 -72.781 -60.209 -72.690 -60.262 -72.671 -60.380 -72.690 -60.477 -72.802 -60.660 -72.783 -60.791 -72.774 -60.918 -72.783 -61.063 -72.671 -61.038 -72.568 -60.995 -72.477 -61.047 -72.436 -61.157 -72.436 -61.305 -72.455 -61.472 -72.515 -61.663 -72.474 -61.761 -72.371 -61.800 -72.311 -61.879 -72.221 -61.954 -72.240 -61.837 -72.249 -61.699 -72.259 -61.546 -72.147 -61.323 -72.096 -61.424 -72.055 -61.239 -72.015 -61.361 -71.964 -61.462 -71.936 -61.288 -71.833 -61.283 -71.871 -61.478 -71.862 -61.604 -71.952 -61.848 -71.902 -61.936 -71.862 -62.070 -71.852 -62.221 -71.871 -62.373 -71.881 -62.516 -71.881 -62.663 -71.890 -62.820 -71.840 -62.891 -71.799 -62.718 -71.790 -62.869 -71.740 -62.956 -71.740 -62.675 -71.730 -62.518 -71.711 -62.354 -71.701 -62.211 -71.691 -62.055 -71.701 -61.918 -71.701 -61.771 -71.598 -61.529 -71.495 -61.381 -71.455 -61.478 -71.404 -61.578 -71.363 -61.674 -71.435 -61.898 -71.464 -62.059 -71.495 -62.234 -71.464 -62.351 -71.361 -62.138 -71.301 -61.949 -71.251 -61.769 -71.222 -61.597 -71.151 -61.677 -71.170 -61.561 -71.151 -61.385 -71.081 -61.467 -71.009 -61.547 -70.959 -61.368 -70.909 -61.467 -70.858 -61.566 -70.820 -61.676 -70.748 -61.755 -70.636 -61.798 -70.636 -61.930 -70.605 -62.058 -70.624 -62.208 -70.736 -62.272 -70.726 -62.420 -70.686 -62.527 -70.573 -62.488 -70.533 -62.595 -70.523 -62.453 -70.523 -62.322 -70.420 -62.150 -70.430 -62.015 -70.317 -61.887 -70.327 -62.028 -70.327 -62.160 -70.346 -62.322 -70.356 -62.475 -70.336 -62.601 -70.277 -62.678 -70.226 -62.775 -70.157 -62.855 -70.044 -62.828 -70.063 -62.702 -70.073 -62.567 -70.004 -62.348 -69.927 -62.427 -69.870 -62.524 -69.823 -62.640 -69.776 -62.744 -69.728 -62.835 -69.710 -62.976 -69.613 -62.908 -69.507 -62.859 -69.410 -62.867 -69.305 -62.855 -69.286 -62.970 -69.219 -63.056 -69.201 -63.184 -69.192 -63.330 -69.219 -63.483 -69.025 -63.582 -68.998 -63.689 -69.074 -63.895 -69.074 -64.037 -68.977 -63.865 -68.872 -63.789 -68.863 -63.923 -68.824 -64.021 -68.728 -63.964 -68.698 -64.081 -68.592 -64.032 -68.610 -63.917 -68.628 -63.791 -68.619 -63.642 -68.581 -63.764 -68.551 -63.880 -68.524 -63.999 -68.515 -64.042 -68.506 -64.164 -68.489 -64.291 -68.423 -64.365 -68.317 -64.190 -68.308 -64.041 -68.270 -63.881 -68.251 -63.713 -68.261 -63.592 -68.278 -63.478 -68.335 -63.383 -68.258 -63.180 -68.240 -63.305 -68.223 -63.432 -68.213 -63.565 -68.223 -63.713 -68.223 -63.994 -68.231 -64.130 -68.249 -64.298 -68.278 -64.450 -68.355 -64.644 -68.452 -64.776 -68.490 -64.667 -68.520 -64.539 -68.597 -64.474 -68.597 -64.615 -68.635 -64.494 -68.653 -64.368 -68.700 -64.266 -68.691 -64.322 -68.673 -64.448 -68.644 -64.577 -68.617 -64.696 -68.579 -64.793 -68.597 -64.937 -68.597 -65.090 -68.587 -65.212 -68.597 -65.360 -68.579 -65.474 -68.579 -65.628 -68.549 -65.732 -68.484 -65.817 -68.398 -65.873 -68.389 -65.737 -68.303 -65.523 -68.295 -65.645 -68.303 -65.792 -68.285 -65.906 -68.218 -65.990 -68.161 -65.800 -68.123 -65.627 -68.096 -65.477 -68.087 -65.340 -67.981 -65.189 -67.954 -65.306 -67.915 -65.414 -68.012 -65.570 -68.031 -65.726 -68.022 -65.846 -68.031 -65.983 -68.031 -66.123 -67.934 -66.016 -67.837 -65.821 -67.810 -65.938 -67.704 -65.935 -67.618 -65.901 -67.551 -65.704 -67.503 -65.804 -67.485 -65.928 -67.417 -66.011 -67.320 -65.893 -67.215 -65.766 -67.262 -65.666 -67.223 -65.506 -67.206 -65.353 -67.167 -65.181 -67.091 -65.245 -66.984 -65.156 -66.949 -65.254 -66.890 -65.344 -66.833 -65.170 -66.786 -64.992 -66.777 -64.847 -66.786 -64.703 -66.795 -64.584 -66.813 -64.461 -66.822 -64.329 -66.784 -64.171 -66.687 -64.204 -66.669 -64.316 -66.651 -64.428 -66.651 -64.565 -66.554 -64.574 -66.457 -64.457 -66.421 -64.277 -66.362 -64.367 -66.297 -64.176 -66.258 -64.008 -66.258 -64.134 -66.161 -64.192 -66.064 -63.976 -66.121 -63.922 -66.150 -63.809 -66.168 -63.674 -66.216 -63.586 -66.283 -63.504 -66.340 -63.423 -66.387 -63.323 -66.452 -63.238 -66.538 -63.181 -66.606 -63.109 -66.547 -62.912 -66.482 -62.998 -66.396 -63.055 -66.320 -62.868 -66.281 -62.974 -66.243 -63.069 -66.213 -63.184 -66.137 -63.248 -66.099 -63.092 -66.108 -62.961 -66.069 -62.793 -66.069 -62.668 -66.087 -62.556 -66.114 -62.440 -66.173 -62.350 -66.238 -62.276 -66.335 -62.227 -66.344 -62.096 -66.238 -62.073 -66.132 -62.075 -66.114 -61.923 -66.017 -61.835 -66.056 -61.740 -66.103 -61.640 -66.200 -61.590 -66.191 -61.457 -66.094 -61.294 -65.988 -61.126 -65.920 -61.062 -65.815 -61.015 -65.815 -61.102 -65.823 -61.234 -65.842 -61.397 -65.939 -61.450 -65.871 -61.533 -65.823 -61.621 -65.862 -61.789 -65.959 -61.792 -65.940 -61.915 -65.968 -62.062 -66.054 -62.266 -66.026 -62.383 -65.988 -62.490 -65.912 -62.555 -65.884 -62.658 -65.884 -62.795 -65.808 -62.859 -65.731 -62.848 -65.634 -62.733 -65.537 -62.532 -65.440 -62.394 -65.440 -62.270 -65.404 -62.105 -65.395 -62.234 -65.386 -62.363 -65.348 -62.458 -65.251 -62.457 -65.145 -62.458 -65.068 -62.262 -65.116 -62.175 -65.068 -62.002 -64.973 -61.928 -64.916 -61.763 -64.871 -61.594 -64.826 -61.437 -64.753 -61.248 -64.660 -61.109 -64.559 -60.964 -64.486 -60.788 -64.413 -60.599 -64.350 -60.420 -64.322 -60.377 -64.288 -60.218 -64.322 -60.107 -64.424 -60.056 -64.387 -59.895 -64.322 -59.972 -64.229 -59.981 -64.221 -59.840 -64.275 -59.744 -64.339 -59.666 -64.348 -59.537 -64.393 -59.435 -64.421 -59.331 -64.430 -59.202 -64.393 -59.176 -64.301 -59.194 -64.292 -59.323 -64.199 -59.198 -64.107 -59.256 -64.042 -59.210 -63.941 -59.128 -63.840 -59.020 -63.812 -58.866 -63.719 -58.779 -63.618 -58.600 -63.573 -58.447 -63.581 -58.319 -63.547 -58.161 -63.454 -57.976 -63.381 -57.792 -63.381 -57.669 -63.443 -57.579 -63.545 -57.614 -63.545 -57.491 -63.536 -57.351 -63.474 -57.176 -63.429 -57.278 -63.383 -57.381 -63.291 -57.390 -63.189 -57.443 -63.144 -57.534 -63.127 -57.655 -63.144 -57.789 -63.162 -57.923 -63.179 -58.056 -63.196 -58.202 -63.224 -58.343 -63.325 -58.472 -63.371 -58.648 -63.362 -58.764 -63.371 -58.893 -63.396 -59.033 -63.414 -59.178 -63.476 -59.355 -63.569 -59.398 -63.605 -59.557 -63.588 -59.667 -63.680 -59.766 -63.773 -59.821 -63.782 -59.961 -63.773 -60.077 -63.764 -60.205 -63.747 -60.316 -63.840 -60.442 -63.849 -60.508 -63.831 -60.629 -63.840 -60.770 -63.885 -60.925 -63.894 -61.066 -63.947 -61.238 -63.992 -61.394 -64.085 -61.352 -64.186 -61.414 -64.279 -61.530 -64.296 -61.677 -64.251 -61.768 -64.344 -61.970 -64.417 -61.889 -64.451 -62.049 -64.479 -62.193 -64.497 -62.329 -64.598 -62.438 -64.643 -62.607 -64.587 -62.690 -64.524 -62.767 -64.488 -62.874 -64.581 -62.895 -64.673 -62.941 -64.727 -62.857 -64.755 -62.754 -64.772 -62.891 -64.747 -62.995 -64.701 -63.097 -64.693 -63.226 -64.693 -63.349 -64.785 -63.295 -64.794 -63.425 -64.887 -63.530 -64.895 -63.412 -64.987 -63.421 -64.996 -63.563 -65.026 -63.598 -64.942 -63.658 -64.959 -63.807 -64.942 -63.918 -64.925 -64.040 -64.916 -64.158 -64.908 -64.288 -65.009 -64.414 -65.106 -64.457 -65.203 -64.487 -65.233 -64.386 -65.330 -64.441 -65.339 -64.312 -65.368 -64.199 -65.465 -64.301 -65.417 -64.398 -65.483 -64.577 -65.559 -64.502 -65.531 -64.604 -65.559 -64.763 -65.666 -64.813 -65.648 -64.934 -65.666 -65.086 -65.751 -65.031 -65.778 -64.928 -65.826 -64.829 -65.922 -65.008 -65.914 -65.138 -65.867 -65.225 -65.819 -65.311 -65.848 -65.471 -65.857 -65.604 -65.954 -65.697 -66.051 -65.692 -66.033 -65.802 -66.004 -65.904 -66.081 -66.093 -66.186 -66.231 -66.243 -66.363 -66.340 -66.433 -66.445 -66.572 -66.455 -66.729 -66.493 -66.888 -66.590 -66.934 -66.696 -66.913 -66.734 -66.806 -66.840 -66.982 -66.908 -67.178 -66.917 -67.313 -66.811 -67.296 -66.802 -67.439 -66.878 -67.631 -66.975 -67.787 -66.975 -67.914 -67.081 -68.030 -67.111 -67.928 -67.208 -67.950 -67.273 -67.994 -67.379 -68.050 -67.444 -67.968 -67.427 -67.813 -67.388 -67.640 -67.388 -67.501 -67.397 -67.369 -67.406 -67.249 -67.435 -67.135 -67.435 -66.996 -67.444 -66.876 -67.483 -67.036 -67.501 -67.192 -67.607 -67.306 -67.636 -67.191 -67.674 -67.376 -67.722 -67.277 -67.818 -67.348 -67.837 -67.505 -67.866 -67.669 -67.963 -67.625 -68.001 -67.531 -68.098 -67.334 -68.069 -67.168 -68.134 -67.096 -68.182 -67.266 -68.173 -67.398 -68.202 -67.564 -68.220 -67.428 -68.317 -67.371 -68.414 -67.570 -68.482 -67.487 -68.558 -67.413 -68.664 -67.403 -68.673 -67.552 -68.655 -67.678 -68.732 -67.874 -68.770 -67.766 -68.788 -67.707 -68.806 -67.581 -68.824 -67.468 -68.833 -67.322 -68.824 -67.172 -68.901 -67.097 -68.998 -67.257 -69.104 -67.440 -69.169 -67.628 -69.199 -67.784 -69.226 -67.950 -69.226 -68.211 -69.216 -68.333 -69.187 -68.448 -69.122 -68.520 -69.131 -68.671 -69.228 -68.745 -69.228 -69.018 -69.275 -69.202 -69.323 -69.103 -69.370 -69.002 -69.417 -68.903 -69.485 -68.833 -69.494 -68.777 -69.571 -68.715 -69.668 -68.711 -69.773 -68.870 -69.830 -68.790 -69.907 -68.728 -69.974 -68.657 -70.001 -68.538 -70.052 -68.444 -70.071 -68.320 -70.152 -68.257 -70.243 -68.215 -70.334 -68.174 -70.384 -68.080 -70.497 -68.101 -70.557 -68.017 -70.619 -67.934 -70.722 -67.903 -70.834 -67.899 -70.863 -67.782 -70.966 -67.779 -71.078 -67.866 -71.181 -67.917 -71.284 -67.942 -71.366 -67.878 -71.447 -67.826 -71.497 -67.742 -71.516 -67.615 -71.548 -67.512 -71.608 -67.438 -71.677 -67.373 -71.749 -67.299 -71.852 -67.323 -71.964 -67.382 -72.067 -67.339 -72.077 -67.323 -72.180 -67.307 -72.283 -67.369 -72.374 -67.610 -72.477 -67.793 -72.580 -67.885 -72.683 -68.126 -72.692 -68.271 -72.712 -68.440 -72.771 -68.649 -72.812 -68.828 -72.872 -69.038 -72.900 -69.205 -72.932 -69.374 -72.951 -69.542 -73.001 -69.744 -73.011 -69.891 -73.020 -70.037 -73.039 -70.194 -73.049 -70.353 -73.049 -70.502 -73.090 -70.682 -73.090 -70.831 -73.080 -70.957 -73.080 -71.257 -73.090 -71.416 -73.099 -71.576 -73.140 -71.769 -73.180 -71.962 -73.180 -72.099 -73.190 -72.259 -73.199 -72.418 -73.209 -72.566 -73.209 -72.728 -73.247 -72.906 -73.267 -73.065 -73.267 -73.364 -73.358 -73.601 -73.339 -73.730 -73.348 -73.878 -73.399 -74.071 -73.489 -74.322 -73.449 -74.414 -73.449 -74.577 -73.468 -74.736 -73.518 -74.929 -73.487 -75.057 -73.458 -75.175 -73.449 -75.301 -73.449 -75.589 -73.499 -75.783 -73.508 -75.944 -73.537 -76.127 -73.578 -76.324 -73.587 -76.389 -73.597 -76.537 -73.587 -76.677 -73.559 -76.781 -73.578 -76.941 -73.619 -77.138 -73.638 -77.297 -73.556 -77.354 -73.444 -77.087 -73.341 -76.969 -73.312 -77.085 -73.312 -77.222 -73.331 -77.394 -73.322 -77.534 -73.302 -77.648 -73.302 -77.785 -73.322 -77.957 -73.341 -78.116 -73.360 -78.289 -73.370 -78.449 -73.410 -78.634 -73.429 -78.793 -73.461 -78.967 -73.461 -79.118 -73.389 -79.171 -73.286 -79.129 -73.217 -79.197 -73.176 -79.324 -73.147 -79.494 -73.106 -79.637 -73.075 -79.762 -73.016 -79.895 -72.975 -80.024 -72.924 -80.126 -72.905 -80.253 -72.905 -80.576 -72.895 -80.701 -72.876 -80.856 -72.857 -80.995 -72.989 -81.016 -73.020 -80.916 -73.061 -80.829 -73.164 -80.789 -73.233 -81.035 -73.193 -81.149 -73.154 -81.318 -73.154 -81.509 -73.257 -81.579 -73.339 -81.500 -73.420 -81.381 -73.489 -81.327 -73.540 -81.525 -73.631 -81.895 -73.662 -82.112 -73.722 -82.390 -73.712 -82.567 -73.671 -82.668 -73.611 -82.783 -73.611 -83.222 -73.602 -83.427 -73.564 -83.584 -73.554 -83.652 -73.516 -83.851 -73.475 -84.006 -73.456 -84.240 -73.465 -84.469 -73.484 -84.736 -73.475 -84.999 -73.465 -85.245 -73.446 -85.358 -73.418 -85.580 -73.386 -85.733 -73.367 -85.884 -73.336 -85.982 -73.223 -85.893 -73.101 -85.889 -73.092 -86.026 -73.042 -86.151 -72.982 -86.223 -72.900 -86.270 -72.862 -86.383 -72.975 -86.459 -73.056 -86.712 -73.096 -86.912 -73.147 -87.275 -73.128 -87.454 -73.087 -87.631 -73.037 -87.770 -72.987 -87.867 -72.977 -88.016 -72.996 -88.203 -72.967 -88.340 -72.967 -88.489 -73.027 -88.716 -73.027 -88.865 -72.996 -89.028 -72.946 -89.124 -72.834 -88.871 -72.764 -88.967 -72.683 -88.702 -72.642 -88.674 -72.582 -88.758 -72.541 -88.854 -72.512 -89.128 -72.503 -89.290 -72.493 -89.454 -72.474 -89.578 -72.474 -89.779 -72.465 -89.858 -72.503 -89.747 -72.544 -89.639 -72.615 -89.597 -72.707 -89.554 -72.829 -89.593 -72.919 -89.860 -73.011 -90.142 -73.001 -90.250 -72.992 -90.399 -72.982 -90.549 -73.001 -90.723 -73.123 -91.021 -73.161 -91.209 -73.142 -91.346 -73.111 -91.508 -73.092 -91.660 -73.092 -91.822 -73.082 -92.012 -73.073 -92.149 -73.042 -92.365 -73.011 -92.554 -73.001 -92.691 -72.992 -92.828 -73.011 -93.056 -73.030 -93.231 -73.039 -93.422 -73.030 -93.584 -73.011 -93.776 -73.061 -94.020 -73.061 -94.169 -73.152 -94.497 -73.152 -94.688 -73.111 -94.782 -73.082 -94.904 -73.073 -95.107 -73.073 -95.761 -73.082 -95.936 -73.092 -96.153 -73.152 -96.386 -73.142 -96.535 -73.142 -96.710 -73.133 -96.928 -73.123 -97.118 -73.104 -97.266 -73.063 -97.399 -73.054 -97.589 -73.035 -97.725 -73.003 -97.842 -72.994 -97.990 -72.994 -98.193 -73.003 -98.356 -72.994 -98.491 -72.891 -98.266 -72.860 -98.359 -72.850 -98.573 -72.840 -98.803 -72.831 -98.979 -72.821 -99.140 -72.831 -99.302 -72.840 -99.531 -72.860 -99.733 -72.860 -99.883 -72.900 -100.089 -72.891 -100.237 -72.881 -100.360 -72.891 -100.576 -72.932 -100.826 -72.891 -100.981 -72.860 -101.086 -72.850 -101.275 -72.840 -101.435 -72.840 -101.583 -72.872 -101.831 -72.900 -102.077 -72.910 -102.227 -72.910 -102.402 -72.850 -102.462 -72.860 -102.638 -72.860 -102.800 -72.831 -102.931 -72.800 -102.724 -72.656 -102.579 -72.628 -102.710 -72.596 -102.800 -72.596 -103.138 -72.587 -103.218 -72.577 -103.378 -72.587 -103.553 -72.699 -103.828 -72.781 -103.775 -72.840 -103.727 -72.900 -103.656 -73.013 -103.621 -73.063 -103.493 -73.094 -103.402 -73.154 -103.288 -73.185 -103.105 -73.185 -102.876 -73.176 -102.712 -73.166 -102.536 -73.147 -102.303 -73.166 -102.142 -73.176 -102.060 -73.176 -101.694 -73.185 -101.505 -73.185 -100.836 -73.195 -100.702 -73.226 -100.584 -73.236 -100.365 -73.236 -100.216 -73.286 -100.152 -73.326 -100.019 -73.365 -99.884 -73.396 -99.767 -73.427 -99.649 -73.437 -99.487 -73.487 -99.723 -73.478 -99.885 -73.506 -100.064 -73.556 -100.341 -73.566 -100.519 -73.556 -100.696 -73.547 -100.875 -73.556 -101.064 -73.556 -101.227 -73.547 -101.405 -73.516 -101.522 -73.487 -101.630 -73.487 -101.643 -73.456 -101.842 -73.456 -102.005 -73.446 -102.167 -73.415 -102.366 -73.415 -102.816 -73.405 -102.952 -73.405 -103.115 -73.508 -103.093 -73.621 -103.140 -73.693 -103.072 -73.712 -102.924 -73.703 -102.734 -73.753 -102.646 -73.762 -102.521 -73.743 -102.330 -73.784 -102.240 -73.803 -102.063 -73.803 -101.912 -73.906 -101.889 -73.975 -101.854 -74.038 -101.782 -74.076 -101.700 -74.148 -101.631 -74.229 -101.600 -74.279 -101.536 -74.298 -101.387 -74.279 -101.194 -74.229 -100.926 -74.219 -100.705 -74.239 -100.557 -74.289 -100.479 -74.380 -100.380 -74.452 -100.626 -74.480 -100.529 -74.490 -100.379 -74.528 -100.282 -74.559 -100.507 -74.569 -100.674 -74.569 -100.813 -74.641 -100.742 -74.660 -100.604 -74.691 -100.430 -74.681 -100.220 -74.681 -100.081 -74.691 -99.901 -74.729 -99.804 -74.770 -99.699 -74.821 -99.621 -74.933 -99.760 -75.016 -100.039 -74.995 -100.214 -74.976 -100.424 -74.957 -100.617 -75.066 -100.960 -75.055 -101.180 -75.034 -101.506 -75.024 -101.683 -75.003 -101.912 -74.971 -102.085 -74.911 -102.160 -74.840 -102.205 -74.830 -102.412 -74.830 -102.621 -74.821 -102.771 -74.821 -103.145 -74.802 -103.311 -74.802 -103.451 -74.811 -103.660 -74.821 -103.854 -74.821 -104.062 -74.811 -104.213 -74.811 -104.450 -74.830 -104.620 -74.830 -105.011 -74.871 -105.239 -74.881 -105.394 -74.881 -105.602 -74.890 -105.825 -74.940 -106.099 -75.047 -106.444 -75.047 -106.848 -75.102 -107.100 -75.071 -107.240 -75.060 -107.456 -75.071 -107.640 -75.092 -107.859 -75.037 -107.939 -74.993 -108.013 -74.984 -108.177 -74.993 -108.400 -74.984 -108.582 -74.964 -108.716 -74.924 -108.818 -74.905 -108.941 -74.905 -109.429 -74.914 -109.596 -74.995 -109.881 -75.016 -110.140 -75.071 -110.382 -75.026 -110.509 -74.984 -110.654 -74.964 -110.818 -74.933 -110.920 -74.821 -110.657 -74.760 -110.737 -74.648 -110.446 -74.567 -110.119 -74.464 -110.161 -74.382 -110.085 -74.279 -110.071 -74.210 -110.154 -74.141 -110.207 -74.078 -110.313 -74.059 -110.421 -74.050 -110.556 -74.069 -110.764 -74.028 -110.876 -73.989 -111.007 -73.999 -111.216 -73.989 -111.338 -73.980 -111.487 -74.012 -111.702 -74.031 -111.732 -74.121 -111.702 -74.171 -111.633 -74.222 -111.576 -74.263 -111.490 -74.294 -111.719 -74.397 -111.776 -74.447 -111.707 -74.475 -111.546 -74.495 -111.399 -74.576 -111.710 -74.576 -111.875 -74.636 -112.180 -74.636 -112.582 -74.617 -112.759 -74.504 -112.641 -74.473 -112.742 -74.473 -112.881 -74.483 -113.049 -74.483 -113.215 -74.493 -113.370 -74.483 -113.506 -74.445 -113.582 -74.332 -113.231 -74.219 -113.032 -74.210 -113.195 -74.260 -113.430 -74.241 -113.549 -74.160 -113.580 -74.038 -113.488 -73.966 -113.302 -73.906 -113.356 -73.875 -113.497 -73.856 -113.630 -73.836 -113.790 -73.817 -113.922 -73.736 -113.926 -73.717 -114.046 -73.717 -114.209 -73.758 -114.427 -73.758 -114.603 -73.880 -114.860 -73.920 -114.940 -73.980 -114.901 -74.062 -114.886 -74.112 -114.776 -74.193 -114.747 -74.253 -114.708 -74.244 -114.954 -74.253 -115.163 -74.282 -115.418 -74.272 -115.566 -74.222 -115.676 -74.213 -115.811 -74.316 -116.065 -74.316 -116.298 -74.335 -116.591 -74.335 -116.908 -74.325 -117.098 -74.325 -117.305 -74.316 -117.509 -74.296 -117.653 -74.215 -117.654 -74.184 -117.765 -74.102 -117.778 -74.152 -118.002 -74.193 -118.278 -74.203 -118.446 -74.306 -118.416 -74.397 -118.793 -74.397 -119.025 -74.387 -119.161 -74.406 -119.510 -74.425 -119.792 -74.435 -119.987 -74.435 -120.139 -74.498 -120.607 -74.488 -120.839 -74.488 -121.072 -74.507 -121.300 -74.517 -121.537 -74.485 -121.745 -74.485 -122.299 -74.456 -122.538 -74.447 -122.758 -74.466 -122.999 -74.498 -123.207 -74.507 -123.431 -74.488 -123.714 -74.498 -123.871 -74.498 -124.078 -74.478 -124.360 -74.469 -124.482 -74.449 -124.599 -74.440 -124.735 -74.440 -124.887 -74.449 -125.042 -74.459 -125.225 -74.449 -125.385 -74.440 -125.576 -74.449 -125.770 -74.449 -125.991 -74.440 -126.207 -74.430 -126.354 -74.430 -126.548 -74.421 -126.725 -74.430 -126.881 -74.449 -127.110 -74.440 -127.271 -74.459 -127.445 -74.459 -127.652 -74.469 -127.822 -74.478 -128.033 -74.498 -128.319 -74.548 -128.606 -74.557 -128.818 -74.598 -129.174 -74.598 -129.339 -74.617 -129.582 -74.607 -129.813 -74.598 -129.948 -74.567 -130.168 -74.548 -130.327 -74.548 -130.644 -74.557 -130.869 -74.567 -131.095 -74.567 -131.261 -74.536 -131.395 -74.498 -131.657 -74.498 -131.851 -74.548 -132.112 -74.538 -132.313 -74.509 -132.479 -74.578 -132.776 -74.598 -132.966 -74.607 -133.221 -74.607 -133.399 -74.598 -133.546 -74.557 -133.646 -74.538 -133.774 -74.528 -133.895 -74.499 -133.992 -74.428 -134.031 -74.358 -134.117 -74.327 -134.154 -74.327 -134.167 -74.337 -134.325 -74.356 -134.514 -74.356 -134.817 -74.366 -134.975 -74.375 -135.171 -74.395 -135.361 -74.498 -135.629 -74.498 -135.862 -74.488 -136.021 -74.528 -136.253 -74.528 -136.418 -74.538 -136.576 -74.660 -136.566 -74.763 -136.769 -74.763 -137.004 -74.823 -137.262 -74.842 -137.495 -74.832 -137.713 -74.832 -138.047 -74.823 -138.280 -74.832 -138.464 -74.842 -138.747 -74.852 -138.919 -74.861 -139.019 -75.005 -139.337 -75.118 -139.542 -75.231 -139.956 -75.241 -140.202 -75.252 -140.407 -75.252 -140.642 -75.286 -140.876 -75.264 -141.120 -75.254 -141.264 -75.254 -141.866 -75.243 -141.994 -75.243 -142.190 -75.264 -142.322 -75.343 -142.328 -75.385 -142.607 -75.374 -142.762 -75.364 -142.934 -75.364 -143.170 -75.374 -143.362 -75.408 -143.653 -75.463 -143.925 -75.553 -143.928 -75.631 -144.297 -75.631 -144.495 -75.663 -144.725 -75.673 -144.892 -75.673 -145.413 -75.663 -145.585 -75.663 -145.624 -75.796 -145.975 -75.851 -146.109 -75.896 -145.981 -75.927 -145.902 -75.961 -145.785 -76.016 -145.683 -76.047 -145.533 -76.069 -145.359 -76.100 -145.222 -76.145 -145.150 -76.210 -145.595 -76.189 -145.699 -76.179 -145.873 -76.145 -146.102 -76.145 -146.314 -76.124 -146.476 -76.090 -146.617 -76.058 -146.778 -76.024 -146.876 -75.990 -147.004 -75.980 -147.178 -75.969 -147.307 -75.948 -147.398 -75.927 -147.502 -75.906 -147.604 -75.885 -147.752 -75.875 -147.840 -75.875 -148.051 -75.998 -148.411 -76.053 -148.746 -76.053 -148.888 -76.098 -149.156 -76.186 -149.208 -76.208 -149.093 -76.228 -148.902 -76.228 -148.759 -76.249 -148.525 -76.260 -148.296 -76.270 -148.138 -76.205 -147.808 -76.194 -147.495 -76.205 -147.266 -76.215 -147.122 -76.226 -146.992 -76.215 -146.782 -76.226 -146.610 -76.246 -146.492 -76.281 -146.419 -76.301 -146.301 -76.336 -146.202 -76.367 -146.122 -76.388 -146.030 -76.419 -145.882 -76.440 -145.720 -76.472 -145.510 -76.492 -145.348 -76.514 -145.230 -76.579 -145.646 -76.590 -145.816 -76.624 -145.717 -76.668 -145.599 -76.679 -145.467 -76.679 -145.267 -76.713 -145.193 -76.755 -145.152 -76.799 -145.116 -76.799 -145.260 -76.768 -145.430 -76.768 -145.671 -76.747 -145.859 -76.737 -146.035 -76.791 -146.000 -76.812 -145.881 -76.846 -145.677 -76.969 -145.940 -77.024 -145.817 -77.058 -145.686 -77.147 -145.750 -77.216 -146.106 -77.171 -146.196 -77.127 -146.244 -77.093 -146.304 -77.072 -146.437 -77.038 -146.524 -76.995 -146.661 -76.975 -146.794 -77.074 -146.858 -77.095 -147.055 -77.074 -147.245 -77.163 -147.309 -77.218 -147.751 -77.218 -147.922 -77.249 -148.292 -77.362 -148.405 -77.373 -148.676 -77.352 -148.898 -77.341 -149.043 -77.341 -149.229 -77.407 -149.193 -77.428 -149.100 -77.438 -148.969 -77.469 -148.901 -77.514 -149.189 -77.514 -149.464 -77.493 -149.570 -77.459 -149.713 -77.425 -149.842 -77.383 -150.040 -77.349 -150.156 -77.304 -150.388 -77.284 -150.538 -77.263 -150.728 -77.242 -150.833 -77.221 -150.923 -77.166 -150.985 -77.145 -151.133 -77.145 -151.595 -77.113 -151.729 -77.103 -151.889 -77.202 -151.973 -77.237 -152.264 -77.247 -152.520 -77.257 -152.720 -77.257 -152.879 -77.226 -153.026 -77.093 -152.794 -77.072 -152.885 -77.038 -152.941 -77.017 -153.059 -77.006 -153.290 -76.995 -153.420 -76.964 -153.484 -76.964 -153.918 -76.943 -154.047 -76.922 -154.265 -76.912 -154.421 -76.912 -154.636 -76.867 -154.735 -76.888 -154.962 -76.888 -155.189 -76.867 -155.320 -76.867 -155.490 -76.878 -155.747 -76.933 -155.976 -76.977 -155.878 -77.022 -155.794 -77.134 -156.249 -77.113 -156.423 -77.082 -156.541 -77.061 -156.716 -77.040 -156.818 -77.019 -156.864 -77.019 -156.877 ; #2109 1 -77.032 -156.894 -77.053 -156.848 -77.074 -156.748 -77.095 -156.574 -77.127 -156.455 -77.147 -156.281 -77.035 -155.824 -76.991 -155.910 -76.946 -156.006 -76.956 -156.192 -76.966 -156.421 -76.922 -156.449 -76.878 -156.516 -76.888 -156.700 -76.977 -156.779 -77.009 -156.678 -77.019 -156.864 ; #2110 1 -74.038 -116.548 -74.028 -116.545 -74.009 -116.664 -74.112 -116.976 -74.092 -116.792 -74.042 -116.556 ; #2111 1 -73.465 -126.975 -73.446 -126.791 -73.437 -126.610 -73.446 -126.370 -73.478 -126.276 -73.547 -126.251 -73.566 -126.121 -73.595 -125.982 -73.657 -125.751 -73.676 -125.635 -73.717 -125.490 -73.777 -125.435 -73.817 -125.219 -73.858 -125.016 -73.877 -124.762 -73.887 -124.573 -73.887 -124.354 -73.906 -124.184 -73.925 -123.999 -73.925 -123.614 -73.812 -123.551 -73.753 -123.638 -73.712 -123.742 -73.652 -123.882 -73.611 -123.974 -73.489 -123.974 -73.470 -124.062 -73.451 -124.204 -73.420 -124.324 -73.429 -124.449 -73.502 -124.715 -73.511 -124.869 -73.480 -124.989 -73.367 -124.964 -73.348 -125.051 -73.317 -125.213 -73.286 -125.332 -73.164 -125.306 -73.133 -125.441 -73.114 -125.665 -73.114 -125.827 -73.054 -125.951 -73.022 -126.045 -73.013 -126.273 -73.032 -126.482 -73.022 -126.613 -73.054 -126.831 -73.104 -127.138 -73.217 -127.233 -73.276 -127.178 -73.307 -127.098 -73.420 -127.044 -73.461 -126.953 ; #2112 1 -73.497 -122.965 -73.526 -122.853 -73.566 -122.719 -73.597 -122.598 -73.606 -122.438 -73.597 -122.272 -73.657 -122.226 -73.760 -122.339 -73.872 -122.306 -73.963 -122.235 -74.066 -122.390 -74.086 -122.248 -74.105 -122.104 -74.114 -121.789 -74.114 -121.613 -74.105 -121.318 -74.086 -121.053 -74.047 -120.779 -73.997 -120.499 -73.997 -120.004 -73.978 -119.820 -73.937 -119.545 -73.928 -119.280 -73.858 -118.969 -73.798 -118.728 -73.748 -118.491 -73.698 -118.419 -73.635 -118.476 -73.585 -118.553 -73.566 -118.713 -73.566 -118.863 -73.556 -119.009 -73.537 -119.153 -73.568 -119.382 -73.578 -119.562 -73.568 -119.709 -73.568 -119.954 -73.549 -120.072 -73.549 -120.264 -73.559 -120.455 -73.528 -120.662 -73.508 -120.803 -73.499 -120.979 -73.499 -121.155 -73.480 -121.284 -73.439 -121.460 -73.420 -121.618 -73.410 -121.764 -73.410 -121.939 -73.391 -122.069 -73.381 -122.243 -73.400 -122.439 -73.391 -122.653 -73.400 -122.844 -73.513 -122.988 ; #2113 1 -73.844 -116.998 -73.853 -117.002 -73.966 -117.040 -73.956 -116.861 -73.956 -116.723 -73.947 -116.543 -73.956 -116.354 -73.937 -116.128 -73.825 -116.020 -73.712 -115.764 -73.681 -115.780 -73.662 -115.911 -73.662 -116.049 -73.712 -116.283 -73.750 -116.511 -73.812 -116.779 -73.841 -116.992 ; #2114 1 -72.005 -102.286 -72.015 -102.181 -72.024 -102.035 -72.024 -101.728 -72.034 -101.529 -72.044 -101.408 -72.063 -101.263 -72.053 -101.089 -72.063 -100.943 -72.063 -100.743 -72.082 -100.569 -72.113 -100.442 -72.123 -100.308 -72.142 -100.163 -72.161 -100.055 -72.161 -99.829 -72.142 -99.561 -72.142 -99.413 -72.161 -99.252 -72.264 -99.533 -72.254 -99.371 -72.254 -98.994 -72.264 -98.872 -72.302 -98.780 -72.352 -98.716 -72.352 -98.555 -72.343 -98.327 -72.324 -98.086 -72.324 -97.939 -72.252 -97.649 -72.314 -97.576 -72.324 -97.441 -72.364 -97.325 -72.364 -97.152 -72.354 -96.990 -72.345 -96.789 -72.345 -96.383 -72.316 -96.195 -72.266 -96.261 -72.247 -96.193 -72.227 -96.006 -72.124 -95.705 -72.115 -95.758 -72.124 -95.930 -72.144 -96.158 -72.103 -96.249 -72.103 -96.396 -72.074 -96.570 -72.065 -96.410 -72.046 -96.212 -72.046 -96.036 -71.986 -95.806 -71.955 -95.870 -71.904 -95.973 -71.946 -96.123 -71.986 -96.326 -71.986 -96.673 -72.055 -96.930 -72.046 -97.064 -71.996 -97.167 -71.946 -96.924 -71.833 -96.690 -71.833 -96.544 -71.814 -96.345 -71.751 -96.366 -71.713 -96.448 -71.682 -96.551 -71.672 -96.737 -71.691 -96.935 -71.663 -97.084 -71.682 -97.297 -71.732 -97.329 -71.844 -97.366 -71.979 -97.619 -71.969 -97.766 -71.907 -97.826 -71.804 -97.719 -71.722 -97.793 -71.713 -97.793 -71.703 -97.951 -71.703 -98.098 -71.775 -98.079 -71.878 -98.051 -71.981 -98.061 -72.000 -98.222 -71.919 -98.268 -71.938 -98.430 -71.897 -98.518 -71.794 -98.468 -71.682 -98.274 -71.682 -98.311 -71.641 -98.413 -71.661 -98.599 -71.680 -98.760 -71.577 -98.750 -71.567 -98.895 -71.680 -99.131 -71.761 -99.221 -71.790 -99.128 -71.809 -98.995 -71.838 -98.864 -71.909 -98.805 -71.900 -98.938 -71.881 -99.071 -71.849 -99.268 -71.931 -99.531 -71.881 -99.606 -71.778 -99.619 -71.797 -99.780 -71.909 -99.978 -71.828 -100.034 -71.818 -100.192 -71.759 -100.242 -71.749 -100.056 -71.711 -100.068 -71.701 -100.213 -71.701 -100.441 -71.773 -100.703 -71.823 -100.921 -71.720 -100.973 -71.749 -101.187 -71.768 -101.373 -71.727 -101.487 -71.787 -101.732 -71.797 -101.918 -71.859 -102.167 -71.971 -102.450 -72.000 -102.279 ; #2115 1 -72.712 -89.336 -72.702 -89.323 -72.671 -89.419 -72.671 -89.593 -72.642 -89.691 -72.652 -89.865 -72.764 -89.998 -72.814 -90.226 -72.874 -90.143 -72.855 -89.944 -72.855 -89.767 -72.814 -89.523 -72.712 -89.339 ; #2116 1 -72.427 -91.563 -72.517 -91.456 -72.580 -91.391 -72.649 -91.321 -72.740 -91.293 -72.853 -91.389 -72.965 -91.377 -72.956 -91.202 -72.843 -90.999 -72.740 -90.825 -72.628 -90.797 -72.515 -90.784 -72.477 -90.800 -72.427 -90.800 -72.364 -90.797 -72.345 -90.920 -72.335 -91.134 -72.354 -91.335 -72.374 -91.509 -72.424 -91.563 ; #2117 1 -72.168 -79.021 -72.158 -78.875 -72.168 -78.739 -72.197 -78.637 -72.256 -78.545 -72.306 -78.456 -72.326 -78.343 -72.345 -78.217 -72.364 -78.103 -72.354 -77.944 -72.242 -77.709 -72.252 -77.559 -72.213 -77.607 -72.173 -77.696 -72.153 -77.809 -72.144 -77.958 -72.144 -78.093 -72.134 -78.217 -72.115 -78.355 -72.105 -78.491 -72.105 -78.651 -72.115 -78.797 -72.166 -79.015 ; #2118 1 -69.778 -75.574 -69.863 -75.582 -69.891 -75.465 -69.908 -75.339 -69.918 -75.205 -69.936 -75.079 -69.954 -74.965 -69.936 -74.804 -69.936 -74.673 -69.918 -74.512 -69.821 -74.419 -69.773 -74.242 -69.744 -74.345 -69.726 -74.471 -69.688 -74.565 -69.591 -74.627 -69.600 -74.766 -69.600 -75.039 -69.676 -75.244 -69.620 -75.332 -69.717 -75.439 -69.773 -75.570 ; #2119 1 -73.032 -78.197 -73.051 -78.207 -73.154 -78.218 -73.164 -78.216 -73.204 -78.126 -73.214 -77.989 -73.214 -77.852 -73.164 -77.644 -73.061 -77.512 -73.030 -77.613 -73.001 -77.729 -72.992 -77.855 -72.992 -78.004 -73.030 -78.197 ; #2120 1 -70.384 -73.775 -70.456 -73.983 -70.437 -74.119 -70.408 -74.233 -70.511 -74.303 -70.540 -74.478 -70.499 -74.566 -70.461 -74.670 -70.480 -74.834 -70.583 -74.958 -70.633 -75.158 -70.652 -75.322 -70.643 -75.457 -70.643 -75.746 -70.674 -75.925 -70.734 -76.124 -70.753 -76.289 -70.856 -76.391 -70.928 -76.324 -70.969 -76.237 -70.959 -76.080 -70.940 -75.926 -70.940 -75.782 -70.949 -75.646 -70.940 -75.491 -70.899 -75.301 -70.871 -75.126 -70.851 -74.971 -70.832 -74.806 -70.832 -74.660 -70.801 -74.494 -70.791 -74.339 -70.791 -74.194 -70.772 -74.040 -70.722 -73.842 -70.681 -73.654 -70.681 -73.617 -70.568 -73.420 -70.465 -73.442 -70.425 -73.557 -70.406 -73.680 -70.396 -73.787 ; #2121 1 -71.421 -74.736 -71.411 -74.803 -71.402 -74.939 -71.452 -75.140 -71.555 -75.359 -71.586 -75.260 -71.646 -75.179 -71.675 -75.357 -71.746 -75.290 -71.797 -75.198 -71.825 -75.070 -71.844 -74.944 -71.864 -74.806 -71.883 -74.693 -71.883 -74.399 -71.921 -74.293 -71.983 -74.214 -72.012 -74.111 -72.021 -73.973 -71.962 -73.774 -71.943 -73.716 -71.840 -73.498 -71.790 -73.578 -71.740 -73.671 -71.637 -73.706 -71.665 -73.603 -71.675 -73.454 -71.694 -73.340 -71.735 -73.250 -71.754 -73.111 -71.754 -72.965 -71.744 -72.807 -71.653 -72.564 -71.550 -72.401 -71.459 -72.171 -71.490 -72.070 -71.572 -72.009 -71.632 -71.927 -71.682 -71.833 -71.732 -71.727 -71.751 -71.613 -71.751 -71.466 -71.811 -71.383 -71.820 -71.258 -71.820 -71.111 -71.801 -70.956 -71.862 -70.873 -71.893 -71.040 -71.902 -71.196 -71.902 -71.490 -71.952 -71.691 -72.012 -71.902 -72.021 -71.777 -72.031 -71.627 -72.050 -71.512 -72.082 -71.398 -72.091 -71.274 -72.101 -71.136 -72.082 -70.969 -72.050 -70.788 -71.991 -70.592 -71.991 -70.457 -72.103 -70.599 -72.206 -70.814 -72.216 -70.972 -72.216 -71.132 -72.206 -71.270 -72.206 -71.580 -72.187 -71.721 -72.168 -71.835 -72.168 -72.146 -72.149 -72.260 -72.118 -72.375 -72.108 -72.499 -72.108 -72.659 -72.139 -72.828 -72.158 -72.967 -72.271 -73.064 -72.302 -72.962 -72.333 -72.848 -72.393 -72.777 -72.412 -72.662 -72.431 -72.534 -72.470 -72.428 -72.510 -72.336 -72.520 -72.198 -72.501 -72.087 -72.470 -71.905 -72.451 -71.749 -72.451 -71.588 -72.460 -71.450 -72.441 -71.269 -72.451 -71.144 -72.470 -71.028 -72.479 -70.891 -72.429 -70.690 -72.457 -70.571 -72.489 -70.456 -72.470 -70.288 -72.431 -69.951 -72.412 -69.796 -72.393 -69.628 -72.374 -69.461 -72.374 -69.313 -72.354 -69.132 -72.252 -69.106 -72.149 -68.865 -72.089 -68.668 -72.070 -68.501 -71.957 -68.280 -71.854 -68.282 -71.751 -68.268 -71.639 -68.065 -71.536 -68.067 -71.433 -68.001 -71.352 -68.065 -71.260 -68.107 -71.170 -68.162 -71.057 -68.098 -70.954 -68.113 -70.851 -68.143 -70.770 -68.195 -70.667 -68.185 -70.576 -68.226 -70.464 -68.247 -70.394 -68.310 -70.312 -68.373 -70.253 -68.457 -70.150 -68.499 -70.109 -68.590 -70.090 -68.714 -70.039 -68.808 -69.990 -68.904 -69.884 -68.923 -69.807 -68.986 -69.807 -68.998 -69.760 -69.111 -69.663 -69.154 -69.624 -69.210 -69.519 -69.219 -69.433 -69.283 -69.377 -69.376 -69.280 -69.443 -69.223 -69.534 -69.156 -69.615 -69.117 -69.710 -69.117 -69.853 -69.108 -69.986 -69.002 -69.966 -68.905 -69.918 -68.840 -70.001 -68.743 -70.015 -68.684 -70.104 -68.658 -70.222 -68.619 -70.327 -68.610 -70.448 -68.637 -70.615 -68.666 -70.771 -68.705 -70.935 -68.696 -71.056 -68.723 -71.222 -68.741 -71.380 -68.788 -71.565 -68.835 -71.738 -68.872 -71.926 -68.977 -72.062 -69.074 -72.101 -69.131 -72.011 -69.228 -71.971 -69.246 -71.858 -69.284 -71.751 -69.302 -71.626 -69.361 -71.550 -69.458 -71.663 -69.476 -71.616 -69.523 -71.530 -69.629 -71.553 -69.726 -71.680 -69.803 -71.620 -69.812 -71.629 -69.877 -71.558 -69.936 -71.457 -69.972 -71.360 -70.001 -71.244 -70.104 -71.337 -70.135 -71.500 -70.205 -71.716 -70.205 -71.992 -70.286 -72.220 -70.389 -72.276 -70.439 -72.196 -70.459 -72.072 -70.468 -71.938 -70.487 -71.826 -70.506 -71.701 -70.497 -71.559 -70.497 -71.414 -70.516 -71.290 -70.535 -71.165 -70.554 -71.041 -70.586 -70.915 -70.614 -70.813 -70.717 -70.774 -70.758 -70.659 -70.798 -70.555 -70.868 -70.482 -70.971 -70.588 -70.951 -70.713 -70.911 -70.817 -70.842 -70.878 -70.822 -71.003 -70.863 -71.191 -70.966 -71.322 -70.975 -71.464 -70.975 -71.610 -70.956 -71.735 -70.947 -71.858 -70.947 -71.991 -70.885 -72.216 -70.904 -72.381 -70.913 -72.525 -70.904 -72.659 -70.923 -72.825 -70.995 -73.006 -71.014 -72.934 -71.033 -72.808 -71.052 -72.671 -71.072 -72.546 -71.091 -72.408 -71.160 -72.348 -71.220 -72.558 -71.239 -72.711 -71.198 -72.814 -71.167 -72.914 -71.138 -73.029 -71.129 -73.164 -71.119 -73.287 -71.201 -73.508 -71.210 -73.517 -71.280 -73.459 -71.320 -73.344 -71.433 -73.416 -71.414 -73.540 -71.383 -73.641 -71.301 -73.687 -71.260 -73.801 -71.230 -73.914 -71.220 -73.996 -71.210 -74.132 -71.251 -74.322 -71.414 -74.287 -71.483 -74.229 -71.474 -74.352 -71.474 -74.498 -71.455 -74.611 -71.383 -74.692 ; #2122 1 -69.532 -72.401 -69.541 -72.267 -69.532 -72.116 -69.465 -71.910 -69.437 -71.988 -69.408 -72.103 -69.352 -72.193 -69.295 -72.283 -69.286 -72.405 -69.286 -72.535 -69.313 -72.702 -69.420 -72.751 -69.467 -72.665 -69.514 -72.566 -69.532 -72.441 ; #2123 1 -72.609 -75.268 -72.712 -75.519 -72.783 -75.450 -72.774 -75.290 -72.876 -75.472 -72.895 -75.630 -72.876 -75.771 -72.979 -75.940 -73.042 -75.861 -73.101 -75.792 -73.142 -75.676 -73.180 -75.570 -73.199 -75.454 -73.228 -75.325 -73.260 -75.197 -73.291 -75.095 -73.310 -74.979 -73.329 -74.838 -73.360 -74.736 -73.379 -74.608 -73.399 -74.479 -73.408 -74.352 -73.305 -74.117 -73.245 -74.200 -73.195 -74.295 -73.123 -74.351 -73.020 -74.304 -72.908 -74.141 -72.838 -74.052 -72.747 -74.101 -72.716 -74.202 -72.687 -74.331 -72.656 -74.447 -72.637 -74.573 -72.618 -74.713 -72.618 -74.861 -72.609 -74.987 -72.599 -75.125 -72.609 -75.272 ; #2124 1 -72.958 -73.623 -73.039 -73.779 -73.152 -73.903 -73.202 -73.808 -73.152 -73.591 -73.039 -73.426 -72.937 -73.368 -72.917 -73.438 -72.958 -73.620 ; #2125 1 -64.906 -59.395 -64.880 -59.501 -64.933 -59.674 -64.979 -59.571 -65.016 -59.462 -64.979 -59.325 -64.906 -59.398 ; #2126 1 -63.922 -58.335 -63.922 -58.260 -63.894 -58.107 -63.967 -58.035 -64.068 -58.044 -64.161 -58.085 -64.161 -57.962 -64.234 -57.889 -64.217 -57.743 -64.191 -57.602 -64.174 -57.467 -64.182 -57.338 -64.146 -57.179 -64.044 -57.158 -63.952 -56.987 -63.887 -57.066 -63.861 -57.171 -63.853 -57.299 -63.827 -57.404 -63.734 -57.390 -63.797 -57.555 -63.889 -57.618 -63.844 -57.721 -63.743 -57.712 -63.650 -57.708 -63.605 -57.811 -63.659 -57.971 -63.704 -58.124 -63.797 -58.139 -63.825 -58.293 -63.926 -58.340 ; #2127 1 -70.253 -60.818 -70.356 -61.015 -70.418 -60.926 -70.437 -60.812 -70.437 -60.680 -70.334 -60.471 -70.274 -60.561 -70.243 -60.677 ; #2128 1 -73.901 -20.362 -73.942 -20.530 -74.045 -20.639 -74.095 -20.811 -74.136 -20.966 -74.165 -21.130 -74.174 -21.272 -74.265 -21.462 -74.284 -21.319 -74.294 -21.171 -74.313 -21.040 -74.322 -20.879 -74.342 -20.735 -74.392 -20.604 -74.473 -20.485 -74.586 -20.391 -74.596 -20.344 -74.615 -20.186 -74.576 -20.031 -74.464 -20.054 -74.395 -20.165 -74.335 -20.293 -74.284 -20.424 -74.213 -20.534 -74.110 -20.424 -73.997 -20.282 -73.894 -20.363 ; #2129 1 -70.829 -2.712 -70.820 -2.630 -70.750 -2.474 -70.681 -2.330 -70.641 -2.179 -70.568 -2.035 -70.549 -2.165 -70.540 -2.321 -70.521 -2.450 -70.470 -2.586 -70.461 -2.716 -70.441 -2.845 -70.432 -2.976 -70.422 -3.119 -70.422 -3.263 -70.504 -3.433 -70.617 -3.376 -70.698 -3.245 -70.801 -2.997 -70.829 -2.857 -70.839 -2.713 ; #2130 1 -69.997 -1.790 -69.970 -1.786 -69.979 -1.919 ; #2131 1 -70.861 0.747 -70.770 0.758 -70.851 0.603 ; #2132 1 -70.446 2.430 -70.377 2.448 -70.367 2.305 -70.470 2.283 -70.451 2.429 ; #2133 1 -70.444 -7.876 -70.475 -8.000 -70.504 -7.874 -70.465 -7.733 -70.446 -7.861 -70.446 -7.873 ; #2134 1 -70.255 -6.357 -70.327 -6.255 -70.346 -6.115 -70.346 -5.970 -70.296 -5.896 -70.193 -5.939 -70.183 -6.054 -70.202 -6.201 -70.253 -6.356 ; #2135 1 -70.121 -3.231 -70.171 -3.264 -70.274 -3.229 -70.274 -3.085 -70.255 -2.937 -70.245 -2.792 -70.164 -2.647 -70.061 -2.735 -70.052 -2.798 -70.052 -2.929 -70.071 -3.075 -70.121 -3.228 ; #2136 1 -69.773 15.430 -69.880 15.475 -69.918 15.621 -69.936 15.766 -69.945 15.897 -69.945 16.028 -69.927 16.171 -69.870 16.311 -69.773 16.392 -69.688 16.242 -69.649 16.097 -69.649 15.954 -69.659 15.812 -69.676 15.670 -69.704 15.541 -69.771 15.429 ; #2137 1 -69.830 12.513 -69.927 12.580 -69.956 12.724 -69.956 12.856 -69.947 12.999 -69.929 13.141 -69.832 13.101 -69.814 12.970 -69.814 12.945 -69.832 12.802 -69.823 12.672 -69.832 12.516 ; #2138 1 -66.926 58.466 -66.935 58.471 -66.917 58.600 ; #2139 1 -67.129 59.211 -67.138 59.216 -67.120 59.333 ; #2140 1 -65.474 92.272 -65.503 92.174 -65.600 92.296 -65.600 92.557 -65.494 92.473 -65.467 92.312 -65.476 92.274 ; #2141 1 -64.406 97.841 -64.415 97.883 -64.432 98.034 -64.441 98.165 -64.441 98.311 -64.348 98.498 -64.247 98.492 -64.154 98.338 -64.061 98.146 -63.989 97.958 -63.926 97.779 -63.833 97.574 -63.842 97.448 -63.878 97.357 -63.906 97.248 -63.941 97.144 -64.034 97.203 -64.135 97.292 -64.152 97.442 -64.244 97.562 -64.346 97.543 -64.382 97.699 -64.400 97.838 ; #2142 1 -73.183 169.647 -73.101 169.625 -73.082 169.449 -73.123 169.372 -73.164 169.321 -73.223 169.296 -73.264 169.232 -73.296 169.148 -73.355 169.410 -73.355 169.573 -73.315 169.650 -73.245 169.641 ; #2143 1 -66.064 162.285 -65.968 162.147 -66.006 162.086 -66.103 162.122 -66.209 162.286 -66.191 162.382 -66.094 162.305 -66.064 162.279 ; #2144 1 -66.423 162.912 -66.414 162.759 -66.511 162.810 -66.511 162.937 -66.425 162.918 ; #2145 1 -67.255 164.651 -67.158 164.586 -67.111 164.366 -67.217 164.446 -67.282 164.419 -67.388 164.527 -67.379 164.640 -67.332 164.686 -67.255 164.654 ; #2146 1 -67.429 47.356 -67.458 47.442 -67.458 47.581 -67.449 47.730 -67.402 47.837 -67.372 47.777 -67.390 47.657 -67.313 47.474 -67.332 47.446 -67.429 47.359 ; #2147 1 -72.041 68.310 -72.072 68.334 -72.053 68.479 -72.034 68.611 -71.993 68.728 -71.881 68.617 -71.931 68.508 -71.991 68.407 ; #2148 1 -70.324 71.691 -70.375 71.875 -70.384 72.027 -70.365 72.143 -70.262 71.997 -70.150 71.861 -70.047 71.768 -70.047 71.624 -70.118 71.549 -70.221 71.617 -70.324 71.697 ; #2149 1 -66.664 85.919 -66.567 85.726 -66.529 85.556 -66.529 85.418 -66.538 85.288 -66.635 85.330 -66.691 85.514 -66.788 85.734 -66.806 85.876 -66.797 86.018 -66.691 86.015 ; #2150 1 -66.567 86.431 -66.549 86.566 -66.464 86.356 -66.482 86.233 -66.579 86.353 -66.569 86.430 ; #2151 1 -66.044 96.408 -66.062 96.513 -66.062 96.639 -66.015 96.742 -65.918 96.700 -65.900 96.558 -65.900 96.433 -65.909 96.316 -65.927 96.184 -66.033 96.261 -66.042 96.406 ; #2152 1 -66.547 99.121 -66.538 99.251 -66.482 99.322 -66.385 99.353 -66.423 99.252 -66.479 99.181 -66.545 99.119 ; #2153 1 -65.918 100.402 -65.947 100.408 -65.929 100.528 -65.864 100.600 -65.855 100.465 -65.920 100.404 ; #2154 1 -65.636 100.573 -65.645 100.681 -65.587 100.771 -65.596 100.655 -65.632 100.565 ; #2155 1 -65.442 100.193 -65.472 100.347 -65.472 100.608 -65.462 100.735 -65.454 100.851 -65.435 100.970 -65.388 101.059 -65.303 101.111 -65.206 100.966 -65.188 100.824 -65.179 100.679 -65.188 100.563 -65.206 100.457 -65.235 100.350 -65.273 100.239 -65.320 100.149 -65.406 100.109 ; #2156 1 -65.073 102.720 -65.109 102.880 -65.206 102.989 -65.253 103.162 -65.271 103.215 -65.242 103.322 -65.136 103.139 -65.039 103.079 -64.944 102.998 -64.908 102.839 -64.890 102.699 -64.973 102.641 -65.068 102.713 ; #2157 1 -68.842 154.971 -68.833 155.019 -68.777 155.068 -68.721 154.874 -68.739 154.801 -68.845 154.845 -68.845 154.974 ; #2158 1 -68.804 155.299 -68.822 155.290 -68.919 155.461 -68.937 155.620 -68.937 155.645 -68.851 155.645 -68.842 155.619 -68.795 155.411 -68.804 155.296 ; #2159 1 -76.521 -150.431 -76.521 -150.288 -76.543 -150.115 -76.532 -149.888 -76.532 -149.874 -76.466 -149.508 -76.433 -149.581 -76.422 -149.698 -76.433 -149.881 -76.443 -150.119 ; #2160 1 -76.569 -148.043 -76.547 -147.920 -76.517 -148.000 -76.506 -148.130 -76.495 -148.247 -76.495 -148.390 -76.474 -148.538 -76.540 -148.887 -76.584 -148.797 -76.616 -148.662 -76.595 -148.440 -76.584 -148.256 -76.574 -148.060 ; #2161 1 -76.466 -148.144 -76.466 -148.088 -76.433 -148.161 -76.411 -148.290 -76.433 -148.501 -76.454 -148.410 -76.464 -148.278 -76.464 -148.135 ; #2162 1 -76.770 -148.042 -76.749 -147.990 -76.728 -148.095 -76.708 -148.227 -76.697 -148.414 -76.697 -148.598 -76.728 -148.966 -76.763 -148.881 -76.773 -148.762 -76.794 -148.645 -76.794 -148.430 -76.783 -148.246 -76.773 -148.048 ; #2163 1 -77.119 -148.603 -77.098 -148.652 -77.077 -148.757 -77.056 -148.874 -77.035 -148.980 -77.079 -149.278 -77.101 -149.160 -77.134 -148.972 -77.134 -148.814 -77.124 -148.616 ; #2164 1 -76.388 -147.063 -76.378 -147.095 -76.346 -147.173 -76.346 -147.330 -76.378 -147.195 ; #2165 1 -77.197 -147.526 -77.108 -147.387 -77.053 -147.394 -76.988 -147.459 -76.943 -147.549 -76.922 -147.712 -76.901 -147.875 -76.870 -148.054 -76.849 -148.230 -76.928 -148.628 -76.983 -148.610 -77.058 -148.629 -77.079 -148.479 -77.101 -148.304 -77.121 -148.141 -77.156 -147.998 -77.200 -147.938 -77.211 -147.762 -77.200 -147.533 ; #2166 1 -76.490 -146.487 -76.446 -146.476 -76.356 -146.456 -76.336 -146.605 -76.391 -146.940 -76.446 -146.906 -76.480 -146.821 -76.480 -146.664 -76.490 -146.490 ; #2167 1 -77.231 -148.540 -77.211 -148.528 -77.190 -148.621 -77.211 -148.833 -77.221 -148.699 ; #2168 1 -76.893 -147.730 -76.873 -147.664 -76.862 -147.809 ; #2169 1 -76.749 -146.579 -76.749 -146.552 -76.728 -146.317 -76.674 -145.996 -76.642 -146.076 -76.631 -146.194 -76.621 -146.312 -76.600 -146.418 -76.665 -146.736 -76.720 -146.688 -76.755 -146.603 ; #2170 1 -76.755 -150.462 -76.765 -150.389 -76.775 -150.270 -76.810 -150.115 -76.841 -149.994 -76.862 -149.889 -76.862 -149.429 -76.883 -149.281 -76.893 -149.150 -76.873 -148.870 -76.828 -148.927 -76.783 -149.000 -76.752 -149.078 -76.718 -149.163 -76.674 -149.309 -76.642 -149.413 -76.631 -149.557 -76.653 -149.825 -76.674 -150.035 -76.684 -150.233 -76.705 -150.470 -76.749 -150.438 ; #2171 1 -77.064 -150.932 -77.084 -150.800 -77.095 -150.642 -77.095 -150.483 -77.116 -150.321 -77.127 -150.106 -77.105 -149.823 -77.084 -149.915 -77.074 -150.073 -77.040 -150.189 -77.006 -150.330 -76.964 -150.483 -76.964 -150.641 -77.064 -150.935 ; #2172 1 -76.063 -146.291 -76.043 -146.296 -75.966 -146.291 -75.922 -146.352 -75.877 -146.441 -75.846 -146.533 -75.846 -146.745 -75.877 -146.963 -75.922 -146.874 -75.943 -146.770 -75.977 -146.685 -76.011 -146.627 -76.032 -146.522 -76.066 -146.437 -76.066 -146.294 ; #2173 1 -75.359 -145.465 -75.380 -145.420 -75.401 -145.305 -75.432 -145.212 -75.453 -145.083 -75.419 -144.765 -75.388 -144.843 -75.353 -144.927 -75.333 -145.032 -75.298 -145.117 -75.288 -145.149 -75.353 -145.458 ; #2174 1 -75.231 -142.871 -75.252 -142.838 -75.262 -142.695 -75.262 -142.554 -75.231 -142.579 -75.209 -142.669 -75.231 -142.874 ; #2175 1 -74.806 -137.124 -74.746 -136.867 -74.746 -136.633 -74.643 -136.430 -74.634 -136.589 -74.615 -136.704 -74.586 -136.842 -74.586 -137.007 -74.596 -137.221 -74.718 -137.339 -74.768 -137.218 -74.808 -137.132 ; #2176 1 -74.210 -132.343 -74.229 -132.201 -74.169 -131.935 -74.150 -131.993 -74.131 -132.095 -74.200 -132.378 ; #2177 1 -74.174 -131.716 -74.203 -131.732 -74.222 -131.616 -74.241 -131.475 -74.260 -131.292 -74.241 -131.079 -74.272 -130.943 -74.301 -130.803 -74.301 -130.625 -74.179 -130.491 -74.138 -130.566 -74.138 -130.621 -74.129 -130.754 -74.119 -130.887 -74.110 -131.021 -74.100 -131.196 -74.059 -131.271 -74.059 -131.448 -74.171 -131.715 ; #2178 1 -74.200 -126.852 -74.141 -126.823 -74.121 -126.965 -74.112 -127.183 -74.083 -127.363 -74.042 -127.548 -74.033 -127.708 -74.052 -127.936 -74.092 -127.859 -74.133 -127.783 -74.184 -127.682 -74.224 -127.550 -74.263 -127.443 -74.303 -127.323 -74.344 -127.248 -74.313 -126.983 -74.200 -126.845 ; #2179 1 -72.484 -98.832 -72.433 -98.852 -72.403 -98.957 -72.393 -99.078 -72.393 -99.226 -72.403 -99.413 -72.422 -99.576 -72.403 -99.722 -72.362 -99.877 -72.371 -100.052 -72.362 -100.198 -72.381 -100.399 -72.493 -100.697 -72.525 -100.581 -72.544 -100.435 -72.575 -100.196 -72.594 -99.980 -72.604 -99.616 -72.613 -99.467 -72.604 -99.306 -72.575 -99.091 -72.484 -98.826 ; #2180 1 -69.500 -61.924 -69.415 -61.842 -69.309 -61.743 -69.212 -61.653 -69.164 -61.756 -69.079 -61.817 -69.022 -61.901 -68.946 -61.981 -68.908 -62.079 -68.926 -62.235 -69.022 -62.290 -69.119 -62.227 -69.167 -62.124 -69.264 -62.061 -69.370 -62.033 -69.467 -62.049 -69.505 -61.937 ; #2181 99 23.877 -97.824 23.942 -97.819 24.026 -97.818 24.116 -97.810 24.200 -97.809 24.291 -97.800 24.374 -97.778 24.457 -97.769 24.548 -97.760 24.631 -97.739 24.722 -97.710 24.888 -97.667 24.972 -97.636 25.062 -97.613 25.119 -97.620 25.209 -97.590 25.308 -97.533 25.391 -97.488 25.474 -97.522 25.507 -97.638 25.424 -97.622 25.358 -97.700 25.442 -97.810 25.358 -97.795 25.318 -97.880 25.235 -97.839 25.143 -97.794 25.060 -97.809 24.987 -97.750 24.972 -97.747 24.880 -97.814 24.790 -97.787 24.707 -97.788 24.623 -97.809 24.532 -97.838 24.590 -97.947 24.507 -97.939 24.424 -97.836 24.333 -97.836 24.234 -97.854 24.144 -97.900 24.052 -97.873 23.969 -97.865 23.879 -97.838 ; #2182 99 11.764 -85.980 11.706 -85.937 11.623 -85.901 11.540 -85.875 11.457 -85.840 11.374 -85.756 11.325 -85.656 11.269 -85.555 11.244 -85.458 11.203 -85.359 11.188 -85.262 11.180 -85.186 11.165 -85.090 11.149 -85.042 11.133 -84.945 11.199 -84.857 11.215 -84.868 11.248 -84.871 11.331 -84.871 11.414 -84.944 11.447 -84.965 11.530 -85.020 11.613 -85.094 11.621 -85.104 11.704 -85.159 11.720 -85.187 11.793 -85.232 11.876 -85.336 11.917 -85.377 11.967 -85.478 12.023 -85.578 12.107 -85.642 12.132 -85.740 12.147 -85.768 12.203 -85.869 12.180 -85.951 12.107 -85.998 12.023 -86.016 11.940 -85.981 11.849 -85.962 11.766 -85.972 ; #2183 99 54.354 19.247 54.311 19.264 54.311 19.319 54.319 19.432 54.370 19.548 54.396 19.663 54.465 19.791 54.465 19.802 54.516 19.918 54.603 20.001 54.603 20.011 54.610 20.124 54.635 20.250 54.712 20.369 54.712 20.224 54.696 20.110 54.746 20.002 54.738 19.991 54.651 19.905 54.635 19.893 54.548 19.774 54.479 19.656 54.427 19.529 54.394 19.414 54.378 19.301 54.354 19.244 ; #2184 99 46.262 33.705 46.177 33.766 46.177 33.872 46.091 33.888 46.058 33.989 46.107 34.007 46.074 34.117 45.988 34.147 46.074 34.150 46.050 34.252 46.066 34.360 45.980 34.431 45.973 34.471 45.956 34.575 45.998 34.591 45.913 34.610 45.828 34.503 45.812 34.491 45.913 34.719 45.828 34.673 45.820 34.778 45.778 34.877 45.711 34.972 45.669 35.017 45.576 35.096 45.491 35.092 45.405 35.079 45.382 35.180 45.348 35.280 45.306 35.379 45.392 35.342 45.477 35.262 45.647 35.077 45.722 35.018 45.790 34.977 45.875 34.939 45.961 34.869 46.046 34.830 46.087 34.731 46.173 34.806 46.224 34.708 46.139 34.655 46.054 34.610 46.028 34.586 46.002 34.499 46.096 34.462 46.127 34.466 46.135 34.583 46.220 34.587 46.194 34.477 46.236 34.377 46.151 34.354 46.236 34.293 46.321 34.200 46.236 34.207 46.194 34.084 46.252 33.987 46.260 33.882 46.276 33.769 46.260 33.714 ; #2185 99 41.759 -83.573 41.743 -83.473 41.694 -83.344 41.671 -83.220 41.587 -83.084 41.602 -82.989 41.569 -82.859 41.554 -82.964 41.546 -83.063 41.512 -83.149 41.487 -83.033 41.528 -82.951 41.520 -82.834 41.479 -82.710 41.446 -82.589 41.487 -82.507 41.495 -82.408 41.528 -82.322 41.554 -82.222 41.569 -82.127 41.546 -82.011 41.554 -81.903 41.569 -81.807 41.618 -81.719 41.677 -81.646 41.726 -81.558 41.774 -81.479 41.808 -81.393 41.833 -81.303 41.865 -81.215 41.890 -81.125 41.915 -81.024 41.947 -80.937 41.972 -80.836 41.997 -80.745 42.021 -80.654 42.046 -80.585 42.070 -80.493 42.103 -80.397 42.144 -80.314 42.186 -80.231 42.178 -80.218 42.211 -80.131 42.244 -80.075 42.268 -79.983 42.301 -79.887 42.316 -79.865 42.368 -79.758 42.399 -79.670 42.498 -79.512 42.547 -79.424 42.588 -79.340 42.637 -79.251 42.712 -79.184 42.761 -79.105 42.794 -79.017 42.878 -78.999 42.962 -79.031 43.054 -79.016 43.095 -79.066 43.121 -79.193 43.113 -79.208 43.021 -79.162 42.937 -79.038 42.921 -79.059 42.905 -79.165 42.897 -79.275 42.905 -79.383 42.897 -79.483 42.897 -79.597 42.882 -79.693 42.890 -79.716 42.890 -79.820 42.866 -79.922 42.851 -80.018 42.843 -80.128 42.827 -80.202 42.827 -80.306 42.786 -80.399 42.635 -80.530 42.610 -80.404 42.602 -80.297 42.594 -80.179 42.586 -80.289 42.594 -80.397 42.610 -80.518 42.610 -80.621 42.625 -80.733 42.659 -80.864 42.683 -80.980 42.690 -81.097 42.698 -81.205 42.698 -81.319 42.690 -81.419 42.659 -81.507 42.625 -81.603 42.592 -81.690 42.536 -81.765 42.477 -81.848 42.428 -81.927 42.353 -82.002 42.305 -82.081 42.297 -82.180 42.264 -82.267 42.223 -82.359 42.156 -82.532 42.090 -82.601 41.997 -82.657 42.081 -82.804 42.056 -82.895 42.031 -82.985 42.056 -83.102 42.098 -83.237 42.182 -83.251 42.266 -83.235 42.357 -83.200 42.357 -83.210 42.324 -83.253 42.240 -83.291 42.148 -83.315 42.064 -83.332 41.980 -83.392 41.939 -83.474 41.872 -83.543 41.780 -83.586 41.757 -83.574 ; #2186 99 43.309 -79.170 43.316 -79.114 43.342 -79.022 43.365 -78.920 43.373 -78.820 43.396 -78.727 43.412 -78.620 43.420 -78.520 43.412 -78.412 43.404 -78.294 43.412 -78.184 43.404 -78.075 43.389 -77.963 43.363 -77.837 43.279 -77.691 43.295 -77.595 43.318 -77.492 43.318 -77.388 43.326 -77.287 43.311 -77.166 43.287 -77.050 43.336 -76.970 43.359 -76.877 43.410 -76.797 43.459 -76.707 43.493 -76.619 43.508 -76.575 43.557 -76.495 43.542 -76.373 43.625 -76.310 43.709 -76.321 43.802 -76.337 43.886 -76.305 43.960 -76.236 44.027 -76.164 44.011 -76.197 44.011 -76.312 44.095 -76.311 44.062 -76.400 44.146 -76.451 44.187 -76.366 44.236 -76.275 44.261 -76.183 44.302 -76.088 44.359 -76.011 44.410 -75.921 44.510 -75.877 44.510 -75.887 44.453 -75.974 44.402 -76.054 44.379 -76.157 44.354 -76.250 44.338 -76.347 44.296 -76.441 44.263 -76.530 44.248 -76.627 44.248 -76.742 44.181 -76.919 44.140 -77.013 44.140 -77.118 44.197 -77.041 44.222 -77.158 44.189 -77.257 44.189 -77.362 44.181 -77.472 44.156 -77.564 44.132 -77.657 44.132 -77.597 44.166 -77.499 44.150 -77.386 44.166 -77.280 44.158 -77.171 44.074 -77.139 44.099 -77.037 44.125 -76.945 44.058 -77.017 43.974 -77.090 43.958 -76.968 43.942 -77.074 43.919 -77.168 43.886 -77.266 43.970 -77.287 43.993 -77.414 43.978 -77.521 44.052 -77.662 44.060 -77.771 44.044 -77.877 44.019 -77.969 44.011 -78.070 44.003 -78.171 43.987 -78.268 43.987 -78.382 43.964 -78.475 43.939 -78.577 43.939 -78.681 43.923 -78.788 43.907 -78.885 43.892 -78.991 43.884 -79.092 43.858 -79.193 43.802 -79.270 43.761 -79.354 43.709 -79.442 43.686 -79.545 43.637 -79.624 43.596 -79.708 43.512 -79.748 43.438 -79.815 43.379 -79.890 43.287 -79.814 43.254 -79.693 43.254 -79.579 43.238 -79.467 43.271 -79.379 43.305 -79.283 43.320 -79.186 ; #2187 99 -0.160 34.828 -0.077 34.773 0.006 34.689 -0.042 34.595 -0.068 34.492 -0.141 34.398 -0.224 34.361 -0.217 34.258 -0.134 34.240 -0.083 34.136 0.000 34.072 0.091 34.018 0.107 34.018 0.172 33.981 0.246 34.008 0.329 34.018 0.337 33.972 0.296 33.934 0.255 33.831 0.338 33.747 0.422 33.740 0.406 33.645 0.323 33.636 0.316 33.541 0.331 33.447 0.346 33.447 0.395 33.430 0.372 33.524 0.455 33.487 0.503 33.393 0.586 33.402 0.561 33.308 0.521 33.262 0.528 33.216 0.455 33.272 0.414 33.178 0.323 33.168 0.331 33.074 0.240 33.073 0.192 32.979 0.250 32.885 0.224 32.790 0.217 32.687 0.300 32.696 0.383 32.697 0.335 32.650 0.327 32.650 0.244 32.604 0.161 32.594 0.161 32.500 0.193 32.406 0.110 32.397 0.110 32.228 0.037 32.181 0.014 32.087 -0.002 31.992 -0.050 31.966 -0.141 32.030 -0.197 32.030 -0.281 31.976 -0.354 31.882 -0.437 31.837 -0.528 31.837 -0.612 31.774 -0.652 31.746 -0.735 31.793 -0.818 31.802 -0.884 31.820 -0.884 31.874 -0.967 31.884 -1.050 31.902 -1.133 31.894 -1.225 31.857 -1.308 31.840 -1.391 31.777 -1.474 31.803 -1.565 31.758 -1.648 31.741 -1.731 31.724 -1.814 31.678 -1.898 31.745 -1.989 31.737 -2.072 31.709 -2.155 31.691 -2.246 31.701 -2.262 31.795 -2.345 31.833 -2.436 31.787 -2.519 31.863 -2.602 31.837 -2.685 31.864 -2.654 31.881 -2.571 31.881 -2.555 31.975 -2.646 32.059 -2.555 32.023 -2.472 32.014 -2.407 32.108 -2.422 32.203 -2.339 32.147 -2.256 32.155 -2.200 32.250 -2.149 32.344 -2.232 32.362 -2.324 32.445 -2.346 32.540 -2.372 32.635 -2.288 32.709 -2.372 32.764 -2.372 32.859 -2.463 32.868 -2.546 32.860 -2.629 32.907 -2.720 32.861 -2.745 32.758 -2.836 32.853 -2.745 32.870 -2.730 32.964 -2.738 33.067 -2.697 32.964 -2.606 32.935 -2.523 32.906 -2.439 32.942 -2.366 32.916 -2.283 32.979 -2.267 33.073 -2.341 33.177 -2.397 33.272 -2.382 33.366 -2.437 33.461 -2.422 33.461 -2.331 33.489 -2.258 33.591 -2.192 33.685 -2.169 33.779 -2.103 33.873 -2.019 33.864 -1.996 33.835 -1.989 33.826 -2.004 33.732 -2.070 33.638 -2.047 33.535 -2.047 33.441 -1.981 33.251 -1.898 33.326 -1.865 33.420 -1.898 33.514 -1.882 33.609 -1.799 33.514 -1.799 33.419 -1.814 33.325 -1.731 33.362 -1.708 33.390 -1.693 33.484 -1.726 33.485 -1.710 33.579 -1.652 33.673 -1.569 33.654 -1.536 33.749 -1.453 33.665 -1.370 33.710 -1.370 33.805 -1.420 33.900 -1.412 33.994 -1.389 33.937 -1.306 33.901 -1.215 33.927 -1.271 34.022 -1.188 33.937 -1.097 33.946 -1.014 34.009 -0.930 34.103 -0.905 34.166 -0.815 34.174 -0.799 34.183 -0.716 34.137 -0.625 34.070 -0.542 34.078 -0.451 34.095 -0.377 34.189 -0.346 34.283 -0.377 34.386 -0.410 34.481 -0.327 34.498 -0.244 34.480 -0.228 34.583 -0.244 34.677 -0.195 34.780 -0.195 34.875 -0.162 34.846 ; #2188 99 -4.034 29.212 -3.950 29.249 -4.034 29.266 -4.117 29.249 -4.200 29.232 -4.291 29.216 -4.374 29.216 -4.457 29.142 -4.548 29.125 -4.631 29.107 -4.722 29.117 -4.805 29.108 -4.888 29.126 -4.896 29.127 -4.980 29.109 -5.063 29.148 -5.146 29.166 -5.229 29.213 -5.320 29.269 -5.403 29.327 -5.486 29.364 -5.577 29.347 -5.661 29.348 -5.744 29.294 -5.800 29.191 -5.808 29.192 -5.840 29.201 -5.924 29.202 -6.007 29.278 -6.098 29.336 -6.181 29.355 -6.264 29.393 -6.355 29.412 -6.438 29.497 -6.521 29.489 -6.612 29.527 -6.696 29.603 -6.779 29.670 -6.862 29.746 -6.945 29.813 -6.976 29.908 -7.026 30.003 -7.082 30.088 -7.166 30.155 -7.249 30.182 -7.339 30.212 -7.423 30.222 -7.514 30.205 -7.597 30.244 -7.680 30.271 -7.771 30.301 -7.763 30.327 -7.847 30.412 -7.930 30.517 -8.013 30.575 -8.104 30.568 -8.127 30.568 -8.210 30.494 -8.293 30.449 -8.377 30.467 -8.377 30.562 -8.468 30.526 -8.412 30.629 -8.436 30.724 -8.436 30.750 -8.493 30.846 -8.576 30.922 -8.659 30.998 -8.634 31.092 -8.560 31.186 -8.470 31.167 -8.462 31.167 -8.371 31.128 -8.288 31.127 -8.214 31.031 -8.123 30.966 -8.040 30.965 -7.957 30.909 -7.874 30.879 -7.791 30.832 -7.700 30.776 -7.674 30.766 -7.591 30.737 -7.508 30.661 -7.425 30.614 -7.341 30.604 -7.258 30.612 -7.168 30.592 -7.084 30.545 -6.993 30.553 -6.910 30.580 -6.827 30.551 -6.744 30.455 -6.660 30.408 -6.570 30.360 -6.487 30.275 -6.413 30.200 -6.340 30.105 -6.372 30.010 -6.380 29.992 -6.324 29.897 -6.241 29.813 -6.158 29.746 -6.075 29.745 -5.991 29.735 -5.908 29.771 -5.858 29.874 -5.774 29.957 -5.684 29.955 -5.601 29.908 -5.517 29.878 -5.434 29.840 -5.351 29.755 -5.268 29.772 -5.177 29.789 -5.094 29.816 -5.061 29.824 -4.970 29.814 -4.886 29.777 -4.846 29.702 -4.763 29.635 -4.679 29.609 -4.589 29.625 -4.506 29.643 -4.422 29.660 -4.339 29.668 -4.173 29.573 -4.090 29.544 -4.006 29.508 -3.923 29.462 -3.832 29.432 -3.749 29.386 -3.666 29.348 -3.575 29.348 -3.492 29.356 -3.401 29.347 -3.318 29.364 -3.234 29.280 -3.234 29.234 -3.260 29.168 -3.343 29.151 -3.434 29.169 -3.517 29.169 -3.600 29.152 -3.691 29.124 -3.857 29.125 -3.941 29.108 -4.032 29.108 -4.115 29.126 -4.198 29.063 -4.206 29.072 -4.206 29.167 -4.122 29.195 -4.032 29.220 ; #2189 99 45.021 74.151 45.114 74.208 45.199 74.181 45.284 74.196 45.370 74.199 45.378 74.118 45.463 74.133 45.548 74.139 45.616 74.272 45.701 74.306 45.786 74.289 45.871 74.344 45.965 74.299 46.050 74.440 46.034 74.539 46.050 74.661 46.107 74.791 46.278 74.901 46.363 74.926 46.405 75.049 46.405 75.060 46.490 75.147 46.441 75.233 46.525 75.320 46.492 75.422 46.577 75.497 46.671 75.496 46.694 75.613 46.609 75.557 46.551 75.639 46.510 75.738 46.534 75.854 46.559 75.971 46.534 76.067 46.549 76.190 46.549 76.274 46.583 76.395 46.568 76.504 46.559 76.607 46.559 76.723 46.551 76.826 46.510 76.915 46.494 77.014 46.478 77.123 46.494 77.192 46.486 77.295 46.527 77.429 46.504 77.526 46.462 77.614 46.437 77.719 46.437 77.835 46.444 77.945 46.403 78.033 46.345 78.114 46.345 78.230 46.361 78.279 46.387 78.384 46.319 78.461 46.405 78.478 46.439 78.609 46.405 78.700 46.413 78.810 46.397 78.909 46.422 79.027 46.508 79.126 46.601 79.138 46.625 79.168 46.641 79.281 46.682 79.310 46.767 79.276 46.843 79.193 46.843 79.086 46.827 78.972 46.819 78.853 46.734 78.877 46.684 78.962 46.708 78.866 46.759 78.782 46.776 78.682 46.690 78.561 46.690 78.445 46.597 78.413 46.512 78.386 46.546 78.295 46.621 78.221 46.621 78.105 46.654 78.014 46.680 77.918 46.673 77.798 46.688 77.699 46.662 77.581 46.671 77.575 46.645 77.448 46.629 77.334 46.569 77.202 46.662 77.126 46.654 77.016 46.696 76.927 46.611 76.966 46.627 76.866 46.669 76.777 46.692 76.681 46.651 76.547 46.666 76.447 46.674 76.441 46.759 76.405 46.801 76.316 46.825 76.210 46.809 76.097 46.851 75.998 46.809 75.874 46.817 75.761 46.776 75.637 46.752 75.510 46.744 75.401 46.770 75.305 46.795 75.199 46.819 75.103 46.795 75.061 46.853 75.045 46.795 74.914 46.795 74.692 46.710 74.627 46.617 74.598 46.593 74.482 46.508 74.363 46.466 74.240 46.417 74.103 46.323 74.013 46.248 74.089 46.240 73.969 46.224 73.857 46.216 73.748 46.175 73.711 46.159 73.704 46.074 73.764 46.058 73.799 46.032 73.799 45.947 73.713 45.862 73.658 45.870 73.555 45.784 73.605 45.699 73.497 45.614 73.504 45.588 73.599 45.538 73.685 45.445 73.731 45.370 73.816 45.302 73.894 45.253 73.980 45.195 74.062 45.110 74.057 45.035 74.046 45.019 74.123 45.019 74.132 45.035 74.159 ; #2190 99 51.583 105.135 51.591 105.161 51.617 105.291 51.650 105.534 51.692 105.686 51.718 105.815 51.753 105.951 51.840 106.125 51.927 106.220 52.021 106.311 52.108 106.365 52.195 106.420 52.273 106.390 52.331 106.423 52.382 106.491 52.408 106.632 52.408 106.720 52.392 106.795 52.349 106.884 52.382 106.973 52.469 107.017 52.564 107.187 52.606 107.329 52.648 107.482 52.726 107.652 52.734 107.769 52.734 107.880 52.802 108.053 52.889 108.174 52.966 108.344 53.061 108.460 53.148 108.459 53.235 108.604 53.322 108.759 53.298 108.851 53.357 109.008 53.444 109.109 53.512 109.107 53.581 109.049 53.616 108.964 53.581 108.815 53.565 108.680 53.660 108.785 53.747 108.852 53.834 108.940 53.884 109.090 53.826 109.168 53.731 109.149 53.644 109.147 53.694 109.308 53.790 109.294 53.877 109.327 53.963 109.438 54.050 109.561 54.137 109.618 54.232 109.614 54.301 109.555 54.388 109.558 54.562 109.582 54.657 109.601 54.744 109.703 54.831 109.716 54.918 109.763 55.005 109.767 55.084 109.801 55.174 109.779 55.263 109.857 55.361 109.874 55.450 109.909 55.539 109.954 55.629 109.987 55.727 109.983 55.762 109.945 55.789 109.855 55.789 109.731 55.762 109.821 55.778 109.721 55.745 109.568 55.656 109.445 55.558 109.270 55.469 109.258 55.379 109.281 55.282 109.252 55.192 109.230 55.103 109.152 55.005 109.046 54.918 108.989 54.831 108.910 54.744 108.887 54.657 108.830 54.562 108.746 54.502 108.644 54.415 108.621 54.328 108.585 54.241 108.508 54.154 108.396 54.058 108.378 53.971 108.311 53.884 108.213 53.790 108.028 53.703 107.850 53.616 107.729 53.529 107.652 53.433 107.601 53.365 107.437 53.314 107.287 53.227 107.133 53.140 107.003 53.053 106.937 53.003 107.010 52.916 106.901 52.829 106.761 52.742 106.685 52.655 106.509 52.604 106.350 52.561 106.208 52.509 106.091 52.422 105.996 52.335 105.911 52.240 105.820 52.153 105.736 52.066 105.584 52.023 105.442 51.929 105.275 51.902 105.145 51.894 105.119 51.902 105.005 51.902 104.917 51.815 104.744 51.824 104.629 51.815 104.513 51.815 104.402 51.791 104.265 51.783 104.149 51.767 104.026 51.708 103.864 51.674 103.949 51.648 104.051 51.615 104.147 51.589 104.238 51.563 104.340 51.538 104.432 51.538 104.542 51.512 104.643 51.528 104.775 51.512 104.860 51.538 104.989 51.581 105.141 ; #2191 99 58.086 -157.085 58.069 -157.093 58.009 -157.119 57.911 -156.916 57.903 -156.788 57.860 -156.596 57.780 -156.362 57.710 -156.373 57.702 -156.372 57.745 -156.310 57.780 -156.247 57.870 -156.369 57.878 -156.266 57.913 -156.202 57.973 -156.235 58.017 -156.415 58.069 -156.609 58.113 -156.802 58.129 -156.907 58.113 -156.999 58.088 -157.089 ; #2192 99 59.362 -156.063 59.345 -155.944 59.354 -155.829 59.362 -155.713 59.389 -155.625 59.406 -155.533 59.441 -155.457 59.458 -155.353 59.441 -155.211 59.450 -155.106 59.466 -155.002 59.466 -154.874 59.458 -154.743 59.501 -154.691 59.485 -154.784 59.537 -154.734 59.572 -154.668 59.651 -154.658 59.676 -154.567 59.684 -154.461 59.693 -154.356 59.701 -154.239 59.728 -154.162 59.762 -154.083 59.797 -154.018 59.797 -154.146 59.788 -154.252 59.815 -154.421 59.807 -154.538 59.790 -154.630 59.790 -154.877 59.764 -154.966 59.730 -155.034 59.686 -155.097 59.678 -155.213 59.678 -155.331 59.661 -155.424 59.653 -155.541 59.653 -155.787 59.626 -155.864 59.591 -155.939 59.566 -156.020 59.531 -156.084 59.452 -156.094 ; #2193 99 22.536 113.932 22.511 113.936 22.420 113.927 22.329 113.927 22.362 114.010 22.410 114.116 22.402 114.123 22.312 114.067 22.271 113.954 22.278 113.956 22.271 113.907 22.220 113.982 22.220 114.462 22.261 114.576 22.352 114.575 22.519 114.573 22.609 114.543 22.650 114.504 22.683 114.464 22.667 114.402 22.660 114.365 22.619 114.298 22.563 114.384 22.497 114.274 22.538 114.379 22.505 114.469 22.422 114.435 22.437 114.341 22.354 114.372 22.377 114.312 22.377 114.264 22.426 114.198 22.426 114.101 22.491 114.008 22.575 114.110 22.583 114.053 22.590 114.019 22.534 113.941 ; #2194 99 52.513 5.327 52.471 5.217 52.384 5.143 52.384 5.176 52.367 5.288 52.307 5.401 52.323 5.521 52.418 5.595 52.453 5.692 52.495 5.801 52.519 5.821 52.545 5.841 52.561 5.840 52.614 5.764 52.614 5.753 52.639 5.642 52.623 5.554 52.561 5.436 52.545 5.415 52.511 5.329 ; #2195 99 44.782 46.914 44.774 46.912 44.700 46.792 44.608 46.731 44.523 46.724 44.432 46.788 44.424 46.890 44.408 46.992 44.342 47.093 44.257 47.159 44.265 47.274 44.181 47.308 44.089 47.350 44.005 47.415 43.921 47.458 43.837 47.523 43.753 47.474 43.661 47.434 43.627 47.396 43.586 47.501 43.678 47.512 43.763 47.539 43.847 47.576 43.939 47.625 43.913 47.724 43.829 47.655 43.745 47.608 43.653 47.579 43.569 47.561 43.477 47.523 43.393 47.524 43.352 47.629 43.268 47.529 43.183 47.521 43.091 47.502 43.041 47.523 42.992 47.616 42.925 47.716 42.841 47.749 42.757 47.751 42.665 47.804 42.633 47.901 42.549 47.953 42.465 48.027 42.399 48.117 42.314 48.203 42.230 48.254 42.146 48.340 42.062 48.373 41.970 48.425 41.945 48.523 41.888 48.615 41.880 48.642 41.814 48.731 41.729 48.816 41.645 48.889 41.554 48.961 41.479 49.048 41.395 49.111 41.303 49.161 41.219 49.174 41.135 49.206 41.051 49.268 40.966 49.353 40.892 49.440 40.859 49.535 40.767 49.525 40.683 49.597 40.649 49.693 40.626 49.800 40.634 49.904 40.641 50.009 40.608 50.092 40.567 50.186 40.501 50.274 40.460 50.346 40.444 50.352 40.369 50.366 40.286 50.386 40.369 50.302 40.403 50.207 40.411 50.096 40.387 50.000 40.403 49.975 40.411 49.865 40.327 49.744 40.295 49.635 40.237 49.519 40.153 49.470 40.060 49.481 40.012 49.429 39.928 49.442 39.837 49.397 39.753 49.392 39.670 49.317 39.586 49.293 39.503 49.347 39.419 49.372 39.394 49.349 39.328 49.247 39.321 49.246 39.237 49.249 39.154 49.216 39.063 49.180 39.078 49.081 39.162 49.155 39.228 49.065 39.202 48.958 39.111 48.942 39.027 48.946 38.944 48.891 38.853 48.856 38.770 48.879 38.686 48.883 38.595 48.886 38.511 48.902 38.428 48.887 38.344 48.892 38.253 48.906 38.170 48.920 38.078 48.934 37.995 48.950 37.911 48.995 37.828 49.008 37.737 49.082 37.671 49.171 37.630 49.265 37.589 49.359 37.564 49.465 37.556 49.575 37.549 49.674 37.541 49.784 37.525 49.849 37.517 49.949 37.510 50.006 37.502 50.035 37.479 50.142 37.395 50.228 37.312 50.283 37.228 50.327 37.170 50.418 37.096 50.505 37.055 50.608 37.031 50.662 36.982 50.754 36.941 50.848 36.892 50.940 36.842 51.040 36.811 51.136 36.796 51.243 36.780 51.350 36.764 51.448 36.757 51.475 36.733 51.581 36.718 51.679 36.703 51.786 36.677 51.882 36.677 51.983 36.693 52.096 36.723 52.203 36.749 52.309 36.774 52.424 36.782 52.526 36.805 52.631 36.821 52.745 36.844 52.850 36.869 52.956 36.894 53.062 36.918 53.156 36.926 53.188 36.941 53.292 36.957 53.396 36.972 53.509 36.972 53.610 36.980 53.722 36.988 53.825 36.980 53.934 36.955 53.818 36.955 53.717 36.947 53.606 36.898 53.706 36.890 53.805 36.883 53.905 36.908 54.020 36.992 54.027 37.075 53.986 37.083 54.006 37.166 53.973 37.250 53.961 37.333 53.929 37.425 53.916 37.432 53.908 37.481 53.899 37.564 53.897 37.648 53.864 37.739 53.854 37.822 53.830 37.905 53.828 37.997 53.817 38.080 53.825 38.164 53.832 38.255 53.860 38.338 53.876 38.422 53.883 38.513 53.852 38.597 53.840 38.680 53.857 38.764 53.883 38.855 53.941 38.938 53.958 38.971 53.984 39.063 53.900 39.119 53.810 39.160 53.706 39.243 53.713 39.160 53.696 39.243 53.633 39.326 53.569 39.385 53.478 39.433 53.386 39.449 53.277 39.365 53.192 39.456 53.141 39.540 53.126 39.623 53.193 39.715 53.251 39.763 53.330 39.680 53.254 39.631 53.356 39.639 53.460 39.646 53.564 39.631 53.663 39.654 53.556 39.745 53.574 39.745 53.471 39.837 53.440 39.928 53.468 40.012 53.485 40.035 53.388 40.027 53.284 40.068 53.191 40.053 53.096 40.060 52.987 40.094 52.892 40.010 52.912 40.043 52.818 40.058 52.803 40.107 52.764 40.192 52.753 40.284 52.744 40.368 52.713 40.393 52.710 40.569 52.752 40.661 52.824 40.745 52.884 40.829 52.885 40.921 52.897 41.006 52.948 41.080 52.935 41.131 52.865 41.215 52.876 41.299 52.833 41.391 52.817 41.475 52.746 41.542 52.658 41.626 52.619 41.710 52.619 41.776 52.522 41.802 52.478 41.886 52.507 41.970 52.527 42.054 52.465 42.146 52.446 42.230 52.465 42.314 52.555 42.399 52.626 42.483 52.677 42.575 52.709 42.659 52.698 42.743 52.626 42.687 52.717 42.770 52.775 42.802 52.669 42.868 52.581 42.884 52.471 42.876 52.365 42.909 52.259 42.943 52.163 42.917 52.043 42.901 51.936 42.986 51.851 43.070 51.808 43.154 51.714 43.238 51.692 43.230 51.586 43.223 51.471 43.215 51.365 43.299 51.323 43.383 51.343 43.467 51.353 43.551 51.321 43.643 51.260 43.643 51.251 43.702 51.160 43.786 51.109 43.870 51.045 43.962 51.025 44.046 50.952 44.138 50.903 44.222 50.880 44.289 50.791 44.322 50.684 44.338 50.583 44.338 50.468 44.363 50.369 44.404 50.273 44.488 50.261 44.572 50.251 44.665 50.311 44.680 50.430 44.680 50.640 44.665 50.751 44.672 50.857 44.639 50.955 44.572 51.045 44.531 51.140 44.547 51.259 44.596 51.375 44.572 51.475 44.557 51.576 44.641 51.491 44.641 51.376 44.715 51.288 44.799 51.202 44.884 51.012 44.968 51.012 45.043 51.094 45.110 51.227 45.195 51.278 45.280 51.320 45.374 51.416 45.382 51.524 45.398 51.643 45.483 51.749 45.441 51.854 45.407 51.950 45.433 52.072 45.433 52.188 45.441 52.295 45.449 52.403 45.449 52.518 45.426 52.617 45.400 52.716 45.392 52.819 45.358 52.926 45.358 53.031 45.350 53.135 45.383 53.249 45.426 53.155 45.467 53.061 45.501 52.955 45.542 52.860 45.566 52.761 45.574 52.763 45.659 52.767 45.752 52.834 45.838 52.941 45.923 53.006 46.008 53.069 46.102 53.094 46.151 53.140 46.244 53.155 46.329 53.179 46.415 53.170 46.508 53.102 46.593 53.106 46.678 53.223 46.763 53.205 46.849 53.122 46.934 53.083 46.968 52.986 46.993 52.886 46.986 52.768 46.986 52.661 47.027 52.566 47.019 52.457 46.934 52.391 46.849 52.274 46.857 52.170 46.898 52.065 46.914 51.953 46.956 51.857 46.982 51.747 46.982 51.738 47.023 51.632 47.098 51.545 47.115 51.433 47.130 51.330 47.146 51.218 47.104 51.100 47.089 50.990 47.031 50.868 46.946 50.794 46.962 50.681 46.912 50.561 46.938 50.462 46.853 50.378 46.767 50.272 46.752 50.161 46.666 50.033 46.632 49.940 46.591 49.823 46.591 49.707 46.575 49.597 46.625 49.503 46.531 49.531 46.581 49.437 46.623 49.331 46.607 49.338 46.522 49.432 46.514 49.324 46.428 49.312 46.444 49.200 46.387 49.248 46.312 49.261 46.361 49.157 46.276 49.146 46.183 49.142 46.216 49.035 46.216 49.025 46.183 48.901 46.115 48.874 46.149 48.777 46.123 48.654 46.091 48.740 45.998 48.675 45.975 48.785 45.889 48.774 45.939 48.680 46.006 48.591 45.980 48.511 45.913 48.388 45.871 48.420 45.864 48.312 45.778 48.198 45.794 48.096 45.768 47.974 45.761 47.879 45.675 47.878 45.725 47.774 45.774 47.680 45.808 47.572 45.774 47.616 45.681 47.626 45.596 47.635 45.681 47.584 45.766 47.511 45.782 47.409 45.697 47.483 45.612 47.504 45.570 47.536 45.485 47.516 45.392 47.442 45.306 47.402 45.213 47.309 45.128 47.279 45.035 47.237 44.942 47.134 44.858 47.075 44.942 47.009 44.858 47.033 44.792 46.914 ; #2196 99 41.160 52.985 41.152 52.993 41.068 53.054 40.968 53.090 40.953 53.189 40.953 53.292 41.002 53.417 41.094 53.489 41.203 53.525 41.288 53.464 41.213 53.333 41.254 53.240 41.338 53.157 41.422 53.074 41.348 52.943 41.256 52.941 41.164 52.979 ; #2197 99 65.630 -120.104 65.630 -120.081 65.686 -119.911 65.704 -119.799 65.742 -119.728 65.751 -119.866 65.810 -119.824 65.810 -119.562 65.792 -119.411 65.821 -119.315 65.813 -119.178 65.744 -118.956 65.659 -118.711 65.697 -118.628 65.679 -118.478 65.688 -118.354 65.688 -118.229 65.697 -118.192 65.736 -118.121 65.754 -118.020 65.783 -117.924 65.813 -118.103 65.839 -118.002 65.878 -117.931 65.848 -118.015 65.830 -118.128 65.896 -118.356 65.925 -118.260 66.002 -118.242 66.049 -118.171 66.049 -118.045 66.067 -117.945 66.114 -118.137 66.162 -118.066 66.171 -117.942 66.227 -117.883 66.236 -117.770 66.342 -117.818 66.390 -117.748 66.446 -117.689 66.475 -117.604 66.475 -117.741 66.446 -117.826 66.475 -118.006 66.511 -117.930 66.540 -117.845 66.606 -117.798 66.635 -117.713 66.644 -117.853 66.682 -117.769 66.664 -117.870 66.626 -117.954 66.617 -118.079 66.599 -118.181 66.561 -118.252 66.525 -118.340 66.448 -118.369 66.466 -118.256 66.439 -118.356 66.410 -118.442 66.383 -118.541 66.365 -118.642 66.365 -118.780 66.346 -118.892 66.338 -119.006 66.338 -119.132 66.329 -119.245 66.338 -119.395 66.356 -119.559 66.317 -119.630 66.317 -119.767 66.346 -119.935 66.385 -119.853 66.356 -119.937 66.394 -120.128 66.394 -120.141 66.412 -120.304 66.385 -120.404 66.441 -120.610 66.468 -120.511 66.527 -120.458 66.554 -120.370 66.592 -120.287 66.669 -120.259 66.660 -120.119 66.678 -120.033 66.687 -119.919 66.726 -119.837 66.734 -119.723 66.764 -119.626 66.791 -119.538 66.829 -119.466 66.847 -119.353 66.856 -119.228 66.903 -119.156 66.940 -119.347 66.940 -119.474 66.958 -119.639 66.996 -119.554 66.978 -119.656 67.045 -119.892 67.037 -120.006 67.027 -120.131 67.018 -120.118 66.980 -120.341 66.962 -120.454 66.953 -120.579 66.944 -120.692 66.917 -120.781 66.908 -120.894 66.879 -120.991 66.870 -121.117 66.879 -121.268 66.840 -121.351 66.802 -121.433 66.775 -121.520 66.737 -121.604 66.719 -121.716 66.709 -121.829 66.692 -121.929 66.662 -122.025 66.635 -122.112 66.626 -122.238 66.617 -122.351 66.626 -122.491 66.626 -122.641 66.558 -122.668 66.558 -123.058 66.493 -123.089 66.550 -123.298 66.502 -123.367 66.473 -123.450 66.464 -123.574 66.437 -123.661 66.428 -123.786 66.410 -123.886 66.391 -123.985 66.363 -124.068 66.333 -124.162 66.371 -124.356 66.371 -124.482 66.324 -124.551 66.268 -124.594 66.297 -124.774 66.297 -124.912 66.333 -125.103 66.286 -125.159 66.239 -125.226 66.162 -125.250 66.065 -125.141 65.959 -124.897 66.045 -124.898 66.008 -124.708 66.094 -124.709 66.180 -124.697 66.180 -124.572 66.198 -124.460 66.198 -124.323 66.121 -124.085 66.130 -123.972 66.148 -123.861 66.157 -123.737 66.175 -123.626 66.184 -123.502 66.175 -123.363 66.069 -123.197 66.125 -123.152 66.173 -123.084 66.270 -123.088 66.270 -122.962 66.279 -122.838 66.270 -122.698 66.270 -122.561 66.279 -122.449 66.279 -122.197 66.270 -122.045 66.214 -121.827 66.117 -121.614 66.052 -121.382 65.993 -121.435 65.966 -121.522 65.948 -121.621 65.948 -121.758 65.938 -121.870 65.977 -122.064 66.006 -122.231 66.024 -122.395 66.033 -122.533 66.006 -122.631 65.997 -122.756 65.979 -122.855 65.932 -122.661 65.903 -122.481 65.806 -122.268 65.758 -122.337 65.711 -122.394 65.664 -122.462 65.637 -122.559 65.619 -122.659 65.591 -122.756 65.591 -122.881 65.524 -122.909 65.505 -123.018 65.409 -122.867 65.332 -122.881 65.296 -122.954 65.267 -123.059 65.249 -123.157 65.249 -123.293 65.239 -123.416 65.222 -123.515 65.174 -123.583 65.165 -123.534 65.118 -123.342 65.100 -123.180 65.091 -123.043 65.073 -122.881 65.055 -122.731 65.045 -122.593 65.045 -122.457 64.990 -122.254 65.007 -122.131 65.037 -122.049 65.037 -121.913 65.075 -121.843 65.102 -121.746 65.179 -121.731 65.276 -121.745 65.332 -121.689 65.409 -121.674 65.436 -121.577 65.465 -121.482 65.495 -121.399 65.522 -121.301 65.560 -121.232 65.578 -121.120 65.607 -121.025 65.637 -120.942 65.645 -120.830 65.627 -120.679 65.609 -120.517 65.512 -120.478 65.447 -120.511 65.400 -120.568 65.353 -120.637 65.294 -120.690 65.267 -120.776 65.219 -120.845 65.201 -120.956 65.165 -121.029 65.136 -121.112 65.059 -121.127 65.012 -121.195 65.030 -121.357 65.000 -121.439 65.000 -121.575 64.947 -121.627 64.854 -121.491 64.854 -121.479 64.846 -121.343 64.882 -121.257 64.936 -121.194 64.962 -121.104 64.979 -120.992 65.005 -120.891 65.014 -120.780 65.041 -120.682 65.080 -120.601 65.118 -120.530 65.145 -120.433 65.183 -120.363 65.212 -120.268 65.222 -120.157 65.287 -120.112 65.325 -120.068 65.364 -119.997 65.373 -119.874 65.373 -119.750 65.391 -119.638 65.488 -119.740 65.497 -119.878 65.594 -120.126 65.641 -120.132 ; #2198 99 60.879 -115.806 60.851 -115.653 60.851 -115.522 60.860 -115.414 60.877 -115.316 60.894 -115.206 60.894 -115.137 60.911 -115.039 60.937 -114.940 60.920 -114.789 60.937 -114.691 60.954 -114.581 60.980 -114.483 61.008 -114.398 60.999 -114.257 60.982 -114.117 60.999 -114.007 61.008 -113.898 61.045 -113.813 61.099 -113.759 61.191 -113.850 61.254 -113.831 61.319 -113.805 61.344 -113.716 61.381 -113.630 61.398 -113.532 61.452 -113.466 61.469 -113.367 61.460 -113.226 61.415 -113.137 61.407 -113.007 61.443 -112.920 61.443 -112.873 61.478 -112.784 61.505 -112.698 61.534 -112.601 61.559 -112.501 61.588 -112.415 61.633 -112.338 61.695 -112.294 61.723 -112.208 61.777 -112.154 61.850 -111.978 61.895 -111.902 61.930 -111.823 61.966 -111.735 62.011 -111.670 62.057 -111.604 62.048 -111.714 62.031 -111.826 62.077 -111.760 62.102 -111.670 62.156 -111.603 62.184 -111.516 62.220 -111.429 62.257 -111.353 62.240 -111.452 62.285 -111.374 62.303 -111.275 62.356 -111.208 62.382 -111.118 62.374 -110.987 62.374 -110.855 62.337 -110.689 62.346 -110.568 62.346 -110.447 62.363 -110.335 62.371 -110.467 62.363 -110.588 62.399 -110.500 62.436 -110.423 62.436 -110.291 62.470 -110.200 62.479 -110.115 62.514 -110.035 62.505 -110.121 62.488 -110.232 62.470 -110.343 62.488 -110.486 62.460 -110.584 62.434 -110.685 62.406 -110.772 62.451 -110.694 62.479 -110.607 62.496 -110.496 62.488 -110.618 62.470 -110.717 62.507 -110.895 62.515 -110.772 62.515 -110.651 62.524 -110.541 62.541 -110.440 62.524 -110.287 62.533 -110.165 62.541 -110.116 62.559 -110.005 62.586 -109.917 62.623 -109.840 62.649 -110.003 62.649 -110.246 62.658 -110.388 62.658 -110.510 62.720 -110.464 62.703 -110.310 62.695 -110.179 62.712 -110.115 62.703 -109.972 62.738 -110.109 62.746 -110.252 62.738 -110.375 62.738 -110.496 62.692 -110.574 62.629 -110.620 62.638 -110.751 62.629 -110.874 62.629 -111.006 62.612 -111.106 62.595 -111.218 62.595 -111.340 62.550 -111.417 62.524 -111.507 62.479 -111.584 62.443 -111.661 62.389 -111.728 62.343 -111.794 62.406 -111.749 62.468 -111.693 62.514 -111.627 62.578 -111.572 62.615 -111.495 62.632 -111.384 62.660 -111.285 62.677 -111.174 62.705 -111.086 62.722 -110.974 62.731 -110.852 62.740 -110.730 62.795 -110.676 62.795 -110.543 62.787 -110.412 62.787 -110.109 62.769 -109.967 62.752 -109.814 62.724 -109.659 62.707 -109.517 62.671 -109.341 62.606 -109.385 62.561 -109.452 62.578 -109.351 62.615 -109.274 62.640 -109.172 62.677 -109.094 62.731 -109.037 62.722 -109.148 62.695 -109.248 62.731 -109.170 62.767 -109.081 62.804 -109.257 62.821 -109.337 62.821 -109.591 62.886 -109.790 62.895 -109.934 62.886 -110.044 62.912 -110.110 62.903 -110.221 62.912 -110.353 62.912 -110.608 62.903 -110.632 62.895 -110.753 62.878 -110.866 62.860 -110.966 62.843 -111.078 62.815 -111.177 62.787 -111.265 62.752 -111.356 62.716 -111.444 62.679 -111.520 62.626 -111.588 62.552 -111.620 62.515 -111.696 62.462 -111.763 62.389 -111.807 62.343 -111.873 62.315 -111.970 62.287 -112.057 62.242 -112.123 62.208 -112.214 62.171 -112.289 62.134 -112.388 62.098 -112.464 62.061 -112.552 62.053 -112.662 62.053 -112.793 62.035 -112.904 62.018 -113.015 62.018 -113.267 61.984 -113.357 62.029 -113.533 62.001 -113.619 62.074 -113.840 62.167 -113.988 62.260 -114.150 62.305 -114.339 62.397 -114.369 62.406 -114.438 62.369 -114.514 62.352 -114.625 62.343 -114.735 62.425 -114.957 62.462 -115.124 62.563 -115.336 62.617 -115.525 62.626 -115.656 62.643 -115.811 62.744 -115.986 62.752 -116.020 62.761 -116.090 62.705 -116.151 62.612 -115.987 62.520 -115.811 62.457 -115.600 62.475 -115.490 62.374 -115.397 62.281 -115.366 62.236 -115.430 62.227 -115.299 62.134 -115.149 62.042 -115.068 61.949 -114.857 61.857 -114.731 61.828 -114.817 61.775 -114.882 61.757 -114.992 61.740 -115.090 61.723 -115.201 61.723 -115.321 61.768 -115.498 61.751 -115.608 61.706 -115.672 61.650 -115.733 61.596 -115.786 61.534 -115.839 61.433 -115.809 61.415 -115.907 61.415 -116.037 61.389 -116.136 61.297 -115.963 61.260 -116.037 61.232 -116.122 61.224 -116.242 61.269 -116.418 61.269 -116.549 61.314 -116.725 61.322 -116.866 61.222 -116.809 61.193 -116.905 61.185 -117.013 61.159 -117.101 61.142 -117.209 61.206 -117.410 61.279 -117.633 61.297 -117.701 61.297 -117.785 61.251 -117.608 61.159 -117.458 61.067 -117.321 61.049 -117.252 61.041 -117.122 61.032 -116.980 61.041 -116.872 61.013 -116.717 61.004 -116.587 60.911 -116.403 60.885 -116.252 60.840 -116.076 60.840 -115.946 60.849 -115.899 60.858 -115.779 ; #2199 99 53.779 -98.001 53.737 -98.077 53.814 -98.254 53.875 -98.418 53.899 -98.561 53.891 -98.666 53.882 -98.771 53.925 -98.929 53.917 -99.034 53.909 -99.072 53.832 -99.119 53.737 -99.116 53.678 -99.188 53.583 -99.206 53.496 -99.230 53.445 -99.309 53.385 -99.379 53.290 -99.387 53.231 -99.414 53.154 -99.228 53.120 -99.088 53.120 -98.976 53.112 -98.858 53.112 -98.747 53.104 -98.696 53.043 -98.756 53.027 -98.864 53.001 -98.953 52.976 -99.054 52.889 -99.058 52.802 -99.005 52.715 -98.900 52.628 -98.783 52.534 -98.639 52.447 -98.620 52.360 -98.437 52.273 -98.320 52.186 -98.302 52.099 -98.219 52.012 -98.210 51.943 -98.032 51.993 -97.964 52.070 -97.917 52.157 -97.936 52.200 -97.860 52.183 -97.737 52.096 -97.708 52.046 -97.777 52.054 -97.673 52.096 -97.598 52.001 -97.475 51.914 -97.403 51.828 -97.396 51.741 -97.434 51.654 -97.460 51.558 -97.425 51.542 -97.302 51.629 -97.286 51.716 -97.238 51.732 -97.141 51.775 -97.066 51.688 -96.940 51.601 -96.889 51.542 -96.961 51.403 -97.066 51.326 -97.124 51.239 -97.129 51.263 -97.039 51.324 -96.969 51.393 -96.916 51.401 -96.812 51.314 -96.818 51.281 -96.911 51.221 -96.982 51.152 -97.035 51.057 -97.053 50.970 -97.092 50.883 -97.074 50.796 -97.100 50.622 -97.088 50.527 -97.041 50.440 -96.917 50.432 -96.890 50.440 -96.788 50.474 -96.706 50.570 -96.710 50.656 -96.717 50.743 -96.691 50.675 -96.526 50.675 -96.416 50.762 -96.508 50.856 -96.488 51.030 -96.520 51.126 -96.554 51.168 -96.479 51.255 -96.474 51.342 -96.481 51.429 -96.605 51.516 -96.687 51.611 -96.721 51.698 -96.823 51.793 -96.911 51.828 -96.853 51.914 -96.944 52.001 -96.985 52.096 -97.074 52.183 -97.166 52.270 -97.228 52.331 -97.167 52.418 -97.195 52.505 -97.257 52.600 -97.315 52.774 -97.416 52.861 -97.509 52.948 -97.538 53.043 -97.540 53.059 -97.488 53.154 -97.578 53.241 -97.607 53.328 -97.734 53.424 -97.759 53.511 -97.822 53.684 -97.968 53.771 -97.963 53.788 -97.998 ; #2200 99 -16.297 -68.975 -16.291 -68.826 -16.177 -68.754 -16.183 -68.681 -16.090 -68.718 -16.095 -68.908 -15.987 -68.943 -15.815 -68.882 -15.815 -68.971 -15.751 -69.078 -15.653 -69.090 -15.596 -69.172 -15.488 -69.356 -15.409 -69.410 -15.374 -69.479 -15.265 -69.581 -15.152 -69.731 -15.231 -69.905 -15.310 -69.979 -15.474 -69.884 -15.560 -69.902 -15.482 -69.974 -15.625 -70.081 -15.724 -70.069 -15.738 -69.997 -15.801 -69.850 -15.722 -69.816 -15.757 -69.738 -15.865 -69.694 -15.865 -69.505 -15.929 -69.480 -16.065 -69.537 -16.065 -69.430 -16.136 -69.350 -16.123 -69.242 -16.072 -69.178 -15.958 -69.115 -16.043 -68.994 -16.173 -69.084 -16.252 -69.094 -16.345 -69.146 -16.428 -69.091 -16.444 -69.093 -16.452 -68.905 -16.372 -68.896 ; #2201 9 46.046 60.584 46.062 60.589 46.078 60.584 46.078 60.468 46.070 60.446 46.070 60.426 46.062 60.414 46.062 60.372 46.070 60.355 46.078 60.348 46.078 60.337 46.062 60.313 46.054 60.310 46.046 60.298 46.046 60.266 46.054 60.248 46.062 60.231 46.062 60.190 46.054 60.177 46.022 60.167 46.006 60.181 45.990 60.187 45.982 60.194 45.975 60.211 45.975 60.221 45.990 60.246 45.998 60.268 45.998 60.297 45.990 60.315 45.975 60.339 45.958 60.376 45.958 60.492 45.951 60.509 45.967 60.543 46.034 60.565 46.050 60.580 ; #2202 99 46.100 60.818 46.107 60.811 46.107 60.791 46.115 60.774 46.107 60.762 46.107 60.710 46.115 60.702 46.107 60.670 46.115 60.641 46.115 60.589 46.123 60.572 46.123 60.530 46.131 60.522 46.131 60.490 46.139 60.463 46.139 60.444 46.147 60.436 46.147 60.416 46.139 60.394 46.139 60.343 46.131 60.310 46.131 60.278 46.123 60.256 46.115 60.243 46.115 60.192 46.123 60.175 46.131 60.158 46.131 60.147 46.139 60.141 46.123 60.115 46.123 60.096 46.115 60.074 46.107 60.061 46.100 60.039 46.100 60.029 46.091 59.997 46.083 59.963 46.083 59.952 46.076 59.918 46.076 59.898 46.083 59.891 46.100 59.886 46.107 59.879 46.123 59.884 46.131 59.896 46.139 59.899 46.139 59.908 46.147 59.921 46.155 59.933 46.155 59.943 46.163 59.956 46.188 59.964 46.212 59.961 46.212 59.952 46.220 59.944 46.236 59.939 46.244 59.942 46.252 59.935 46.268 59.949 46.276 59.942 46.292 59.947 46.300 59.940 46.315 59.925 46.323 59.908 46.339 59.903 46.347 59.886 46.347 59.792 46.339 59.770 46.339 59.750 46.347 59.733 46.355 59.725 46.355 59.693 46.347 59.671 46.339 59.668 46.332 59.676 46.323 59.693 46.315 59.691 46.308 59.698 46.292 59.713 46.276 59.717 46.268 59.735 46.242 59.746 46.234 59.763 46.218 59.791 46.203 59.795 46.187 59.810 46.179 59.827 46.155 59.839 46.147 59.847 46.139 59.854 46.123 59.869 46.107 59.874 46.074 59.863 46.058 59.848 46.016 59.835 46.008 59.823 45.984 59.815 45.969 59.800 45.935 59.789 45.919 59.775 45.862 59.757 45.853 59.764 45.853 59.784 45.822 59.774 45.806 59.778 45.798 59.776 45.798 59.756 45.806 59.749 45.814 59.742 45.822 59.734 45.830 59.727 45.830 59.675 45.814 59.660 45.798 59.636 45.782 59.621 45.774 59.618 45.759 59.603 45.743 59.579 45.743 59.569 45.750 59.572 45.759 59.564 45.792 59.575 45.800 59.567 45.800 59.558 45.808 59.540 45.808 59.511 45.792 59.506 45.784 59.494 45.776 59.481 45.761 59.476 45.761 59.446 45.768 59.439 45.776 59.422 45.792 59.407 45.792 59.398 45.800 59.390 45.816 59.395 45.832 59.380 45.840 59.383 45.855 59.378 45.897 59.391 45.905 59.404 45.921 59.408 45.937 59.423 45.945 59.436 45.953 59.438 45.961 59.451 45.976 59.465 45.984 59.478 46.042 59.496 46.058 59.481 46.058 59.439 46.050 59.417 46.042 59.404 46.034 59.392 46.026 59.380 46.010 59.375 46.002 59.363 45.995 59.340 46.002 59.323 46.010 59.306 46.010 59.286 46.002 59.264 45.995 59.242 45.995 59.212 46.002 59.214 46.010 59.197 46.018 59.190 46.018 59.170 46.002 59.165 45.986 59.170 45.978 59.177 45.971 59.155 45.971 59.123 45.978 59.106 45.978 59.096 45.986 59.079 45.986 59.037 45.978 59.015 45.971 59.003 45.963 58.990 45.955 58.978 45.947 58.976 45.931 58.980 45.931 58.961 45.939 58.953 45.939 58.944 45.931 58.931 45.923 58.929 45.915 58.916 45.907 58.904 45.899 58.902 45.891 58.889 45.875 58.875 45.756 58.838 45.731 58.839 45.663 58.818 45.663 58.799 45.637 58.791 45.621 58.776 45.614 58.774 45.588 58.756 45.572 58.761 45.564 58.749 45.540 58.742 45.507 58.741 45.491 58.726 45.475 58.711 45.467 58.709 45.459 58.696 45.451 58.674 45.443 58.663 45.419 58.645 45.370 58.598 45.354 58.593 45.346 58.601 45.330 58.596 45.314 58.581 45.273 58.568 45.257 58.573 45.231 58.565 45.215 58.550 45.207 58.548 45.192 58.524 45.183 58.511 45.168 58.506 45.152 58.492 45.144 58.499 45.087 58.481 45.070 58.467 45.063 58.455 45.055 58.452 45.039 58.437 45.015 58.430 45.007 58.418 44.991 58.414 44.976 58.419 44.960 58.414 44.929 58.426 44.913 58.422 44.898 58.427 44.890 58.435 44.838 58.462 44.823 58.468 44.807 58.493 44.792 58.498 44.768 58.501 44.752 58.507 44.729 58.501 44.713 58.486 44.713 58.467 44.680 58.438 44.665 58.434 44.649 58.439 44.633 58.435 44.600 58.445 44.585 58.451 44.568 58.457 44.561 58.474 44.553 58.491 44.537 58.516 44.537 58.536 44.529 58.553 44.529 58.585 44.537 58.616 44.545 58.638 44.553 58.660 44.568 58.696 44.576 58.708 44.585 58.729 44.592 58.741 44.600 58.744 44.616 58.758 44.624 58.769 44.639 58.784 44.655 58.788 44.670 58.802 44.696 58.809 44.711 58.823 44.719 58.835 44.745 58.842 44.760 58.856 44.786 58.863 44.801 58.858 44.809 58.850 44.809 58.831 44.776 58.822 44.776 58.802 44.784 58.794 44.792 58.787 44.807 58.781 44.831 58.778 44.846 58.782 44.854 58.794 44.862 58.797 44.878 58.820 44.878 58.860 44.870 58.867 44.862 58.875 44.846 58.871 44.831 58.886 44.838 58.907 44.838 58.927 44.854 58.951 44.854 58.970 44.838 58.976 44.831 58.983 44.831 58.993 44.846 58.998 44.862 58.992 44.870 58.975 44.878 58.957 44.878 58.947 44.870 58.945 44.870 58.926 44.878 58.918 44.886 58.911 44.927 58.922 44.942 58.916 44.958 58.921 44.974 58.915 44.982 58.898 44.989 58.900 45.015 58.898 45.039 58.906 45.039 58.947 45.046 58.959 45.078 58.969 45.087 58.962 45.094 58.954 45.110 58.959 45.110 58.991 45.118 58.993 45.134 58.988 45.134 58.969 45.118 58.944 45.087 58.935 45.087 58.903 45.078 58.881 45.070 58.868 45.063 58.857 45.055 58.854 45.046 58.861 45.046 58.841 45.055 58.834 45.063 58.827 45.070 58.819 45.087 58.815 45.110 58.812 45.126 58.817 45.134 58.830 45.142 58.832 45.158 58.846 45.166 58.849 45.181 58.864 45.190 58.876 45.197 58.888 45.213 58.893 45.221 58.905 45.229 58.917 45.245 58.942 45.253 58.945 45.261 58.957 45.269 58.950 45.284 58.945 45.284 58.935 45.293 58.918 45.300 58.910 45.316 58.905 45.324 58.898 45.332 58.900 45.340 58.893 45.348 58.886 45.364 58.881 45.372 58.874 45.405 58.864 45.422 58.869 45.429 58.862 45.489 58.880 45.497 58.892 45.512 58.897 45.520 58.910 45.529 58.912 45.536 58.925 45.544 58.927 45.552 58.939 45.560 58.941 45.568 58.954 45.584 58.959 45.592 58.971 45.600 58.983 45.608 58.996 45.624 59.030 45.632 59.052 45.639 59.065 45.647 59.077 45.655 59.079 45.663 59.101 45.671 59.114 45.679 59.116 45.687 59.129 45.719 59.139 45.744 59.136 45.770 59.145 45.786 59.139 45.828 59.153 45.836 59.165 45.844 59.178 45.844 59.187 45.836 59.195 45.836 59.205 45.828 59.212 45.770 59.194 45.754 59.199 45.746 59.196 45.739 59.203 45.731 59.211 45.731 59.230 45.739 59.233 45.746 59.245 45.763 59.240 45.788 59.248 45.822 59.250 45.879 59.267 45.887 59.260 45.895 59.272 45.903 59.275 45.903 59.284 45.895 59.292 45.895 59.302 45.887 59.309 45.879 59.317 45.871 59.324 45.864 59.331 45.855 59.339 45.848 59.346 45.832 59.351 45.824 59.359 45.798 59.350 45.782 59.355 45.774 59.352 45.748 59.374 45.741 59.382 45.733 59.388 45.725 59.396 45.725 59.406 45.733 59.428 45.725 59.435 45.717 59.443 45.709 59.460 45.701 59.467 45.701 59.487 45.634 59.466 45.626 59.473 45.600 59.465 45.592 59.472 45.568 59.465 45.552 59.470 45.529 59.462 45.512 59.467 45.497 59.472 45.463 59.461 45.455 59.469 45.455 59.488 45.479 59.496 45.487 59.489 45.503 59.484 45.518 59.479 45.527 59.472 45.550 59.479 45.558 59.491 45.566 59.504 45.590 59.511 45.598 59.504 45.606 59.497 45.606 59.487 45.614 59.479 45.621 59.472 45.621 59.492 45.630 59.494 45.630 59.504 45.637 59.516 45.645 59.529 45.637 59.536 45.637 59.546 45.630 59.543 45.621 59.551 45.596 59.543 45.572 59.545 45.538 59.534 45.523 59.539 45.497 59.541 45.471 59.533 45.447 59.535 45.431 59.550 45.415 59.554 45.390 59.556 45.382 59.563 45.374 59.561 45.366 59.568 45.358 59.566 45.358 59.586 45.374 59.590 45.382 59.603 45.374 59.600 45.374 59.611 45.289 59.584 45.280 59.571 45.273 59.569 45.257 59.574 45.249 59.571 45.233 59.576 45.173 59.557 45.166 59.545 45.150 59.530 45.124 59.522 45.108 59.507 45.074 59.497 45.067 59.485 45.051 59.470 45.035 59.465 45.019 59.450 44.978 59.438 44.962 59.424 44.929 59.415 44.921 59.402 44.905 59.389 44.872 59.359 44.864 59.348 44.848 59.343 44.833 59.329 44.817 59.324 44.809 59.312 44.794 59.308 44.778 59.314 44.762 59.319 44.747 59.324 44.721 59.337 44.706 59.333 44.680 59.345 44.655 59.357 44.639 59.353 44.631 59.361 44.624 59.368 44.608 59.374 44.585 59.377 44.576 59.384 44.568 59.392 44.553 59.397 44.537 59.403 44.522 59.418 44.488 59.428 44.481 59.436 44.465 59.441 44.449 59.456 44.441 59.473 44.426 59.501 44.400 59.526 44.385 59.551 44.369 59.566 44.361 59.573 44.336 59.607 44.320 59.613 44.313 59.620 44.271 59.609 44.263 59.617 44.255 59.624 44.248 59.642 44.240 59.659 44.232 59.666 44.224 59.684 44.224 59.694 44.216 59.711 44.216 59.752 44.209 59.760 44.216 59.771 44.224 59.784 44.232 59.796 44.224 59.825 44.232 59.847 44.232 59.856 44.248 59.871 44.263 59.875 44.263 59.894 44.230 59.927 44.214 59.942 44.207 59.959 44.191 59.974 44.183 59.982 44.183 60.001 44.191 60.013 44.240 59.995 44.248 59.978 44.273 59.975 44.289 59.970 44.296 59.982 44.305 59.984 44.305 60.003 44.313 60.026 44.320 60.047 44.336 60.071 44.352 60.107 44.359 60.119 44.385 60.146 44.400 60.160 44.426 60.177 44.441 60.181 44.457 60.196 44.498 60.207 44.523 60.205 44.572 60.219 44.598 60.216 44.622 60.203 44.647 60.210 44.672 60.208 44.739 60.227 44.764 60.224 44.780 60.229 44.805 60.226 44.829 60.223 44.862 60.223 44.878 60.227 44.944 60.227 44.970 60.224 44.978 60.226 44.993 60.221 45.009 60.226 45.025 60.221 45.041 60.226 45.072 60.226 45.106 60.217 45.122 60.222 45.223 60.215 45.257 60.216 45.280 60.214 45.297 60.219 45.312 60.214 45.439 60.255 45.455 60.250 45.479 60.248 45.487 60.240 45.495 60.233 45.518 60.231 45.527 60.223 45.542 60.218 45.558 60.223 45.584 60.212 45.617 60.203 45.626 60.186 45.641 60.162 45.649 60.145 45.649 60.051 45.641 60.016 45.641 59.985 45.634 59.943 45.634 59.879 45.667 59.850 45.683 59.845 45.717 59.846 45.733 59.841 45.748 59.846 45.756 59.859 45.764 59.861 45.772 59.873 45.788 59.888 45.796 59.901 45.796 59.910 45.822 59.919 45.830 59.912 45.838 59.904 45.838 59.894 45.846 59.897 45.846 59.917 45.838 59.924 45.838 59.934 45.853 59.939 45.862 59.931 45.870 59.924 45.870 59.892 45.877 59.885 45.885 59.878 45.893 59.890 45.885 59.907 45.885 59.939 45.893 59.951 45.909 59.956 45.909 59.966 45.901 59.973 45.901 59.983 45.909 59.986 45.917 59.978 45.917 59.968 45.925 59.961 45.925 59.910 45.933 59.902 45.941 59.905 45.941 59.947 45.956 59.952 45.965 59.964 45.980 59.969 45.980 59.949 45.988 59.942 45.988 59.912 45.997 59.905 46.004 59.917 46.004 59.947 45.997 59.965 45.997 60.016 45.988 60.023 45.980 60.021 45.973 60.009 45.973 59.999 45.956 59.993 45.956 60.023 45.965 60.035 45.965 60.045 45.973 60.067 45.965 60.075 45.956 60.104 45.956 60.124 45.949 60.132 45.941 60.149 45.941 60.200 45.949 60.213 45.949 60.222 45.956 60.235 45.956 60.244 45.949 60.262 45.949 60.323 45.941 60.341 45.933 60.348 45.933 60.358 45.925 60.365 45.933 60.378 45.933 60.419 45.925 60.427 45.925 60.459 45.917 60.476 45.909 60.483 45.901 60.500 45.901 60.533 45.909 60.545 45.917 60.567 45.925 60.570 45.933 60.582 45.949 60.597 45.973 60.605 45.988 60.629 46.004 60.634 46.012 60.647 46.020 60.669 46.028 60.682 46.036 60.704 46.044 60.739 46.052 60.751 46.052 60.771 46.060 60.793 46.068 60.805 46.076 60.808 46.091 60.803 ; #2203 99 46.603 60.110 46.587 60.105 46.571 60.110 46.547 60.103 46.531 60.108 46.516 60.103 46.490 60.124 46.474 60.139 46.466 60.146 46.466 60.166 46.458 60.173 46.458 60.183 46.450 60.181 46.442 60.187 46.435 60.195 46.426 60.203 46.419 60.210 46.419 60.250 46.426 60.261 46.426 60.291 46.435 60.314 46.435 60.366 46.442 60.378 46.442 60.388 46.450 60.401 46.458 60.413 46.458 60.423 46.466 60.435 46.458 60.443 46.458 60.475 46.466 60.467 46.474 60.470 46.474 60.489 46.466 60.487 46.458 60.494 46.450 60.502 46.442 60.499 46.435 60.506 46.426 60.514 46.419 60.531 46.411 60.539 46.395 60.553 46.387 60.570 46.379 60.578 46.379 60.597 46.371 60.605 46.371 60.614 46.363 60.622 46.363 60.641 46.371 60.654 46.371 60.664 46.379 60.676 46.387 60.679 46.395 60.692 46.403 60.694 46.403 60.703 46.411 60.706 46.411 60.746 46.419 60.749 46.426 60.761 46.442 60.766 46.442 60.756 46.450 60.759 46.450 60.778 46.442 60.786 46.442 60.795 46.435 60.793 46.435 60.803 46.426 60.810 46.419 60.808 46.411 60.815 46.395 60.810 46.387 60.817 46.371 60.822 46.363 60.829 46.363 60.839 46.347 60.854 46.339 60.851 46.332 60.859 46.323 60.876 46.308 60.890 46.300 60.907 46.284 60.912 46.250 60.901 46.242 60.889 46.226 60.884 46.226 60.904 46.234 60.916 46.234 60.926 46.242 60.939 46.268 60.947 46.268 60.956 46.260 60.964 46.252 60.971 46.244 60.968 46.236 60.976 46.236 60.995 46.252 61.011 46.260 61.023 46.260 61.065 46.268 61.087 46.268 61.097 46.276 61.109 46.276 61.119 46.284 61.132 46.284 61.142 46.292 61.154 46.292 61.206 46.300 61.219 46.300 61.228 46.315 61.253 46.332 61.258 46.347 61.274 46.363 61.279 46.371 61.291 46.446 61.316 46.454 61.309 46.470 61.304 46.478 61.306 46.486 61.299 46.527 61.313 46.536 61.325 46.544 61.328 46.544 61.338 46.551 61.350 46.559 61.353 46.568 61.365 46.583 61.370 46.591 61.383 46.591 61.373 46.607 61.378 46.615 61.371 46.607 61.359 46.599 61.346 46.591 61.343 46.591 61.334 46.531 61.314 46.524 61.302 46.516 61.299 46.508 61.287 46.500 61.274 46.492 61.252 46.492 61.209 46.484 61.197 46.476 61.195 46.476 61.175 46.484 61.168 46.492 61.160 46.492 61.151 46.500 61.133 46.500 61.113 46.508 61.096 46.508 60.958 46.516 60.941 46.524 60.924 46.565 60.885 46.581 60.870 46.589 60.853 46.589 60.843 46.597 60.836 46.605 60.829 46.613 60.831 46.621 60.824 46.662 60.838 46.671 60.850 46.678 60.843 46.736 60.862 46.744 60.844 46.752 60.846 46.759 60.839 46.759 60.829 46.767 60.822 46.767 60.790 46.776 60.772 46.776 60.741 46.783 60.723 46.791 60.706 46.791 60.676 46.799 60.669 46.799 60.637 46.791 60.624 46.783 60.612 46.776 60.619 46.759 60.633 46.759 60.643 46.752 60.661 46.752 60.681 46.744 60.688 46.744 60.707 46.736 60.725 46.728 60.732 46.720 60.750 46.694 60.771 46.694 60.791 46.686 60.798 46.686 60.808 46.678 60.815 46.678 60.825 46.662 60.820 46.662 60.810 46.654 60.798 46.654 60.768 46.647 60.765 46.647 60.755 46.639 60.753 46.631 60.741 46.623 60.738 46.623 60.708 46.615 60.695 46.607 60.673 46.599 60.661 46.599 60.629 46.607 60.611 46.607 60.602 46.615 60.594 46.623 60.577 46.631 60.570 46.631 60.560 46.639 60.552 46.639 60.533 46.631 60.530 46.623 60.537 46.597 60.529 46.581 60.514 46.573 60.512 46.565 60.499 46.498 60.477 46.498 60.468 46.514 60.473 46.529 60.468 46.538 60.471 46.553 60.465 46.587 60.457 46.595 60.449 46.611 60.454 46.619 60.447 46.627 60.440 46.643 60.435 46.651 60.438 46.666 60.433 46.674 60.425 46.682 60.408 46.690 60.401 46.698 60.394 46.714 60.379 46.714 60.369 46.722 60.352 46.722 60.342 46.714 60.329 46.714 60.320 46.706 60.307 46.698 60.295 46.682 60.269 46.682 60.260 46.674 60.257 46.674 60.247 46.641 60.195 46.641 60.165 46.632 60.152 46.632 60.143 46.625 60.130 46.609 60.115 46.609 60.105 46.601 60.093 ; #2204 18 35.786 -5.439 35.788 -5.415 35.793 -5.392 35.800 -5.371 35.810 -5.352 35.822 -5.336 35.836 -5.321 35.852 -5.310 35.870 -5.302 35.889 -5.298 35.909 -5.297 35.929 -5.301 35.947 -5.308 35.965 -5.318 35.981 -5.331 35.995 -5.347 36.007 -5.365 36.017 -5.385 36.025 -5.407 36.029 -5.431 36.031 -5.455 36.029 -5.479 36.025 -5.502 36.018 -5.523 36.008 -5.542 35.996 -5.558 35.982 -5.572 35.966 -5.584 35.948 -5.592 35.929 -5.596 35.909 -5.597 35.889 -5.593 35.870 -5.586 35.852 -5.576 35.836 -5.562 35.822 -5.546 35.810 -5.528 35.800 -5.508 35.793 -5.486 35.788 -5.463 ; #2205 18 43.573 7.206 43.574 7.231 43.579 7.255 43.586 7.277 43.596 7.297 43.608 7.315 43.622 7.331 43.638 7.343 43.656 7.353 43.675 7.358 43.696 7.360 43.716 7.358 43.735 7.352 43.753 7.342 43.769 7.329 43.783 7.314 43.796 7.295 43.805 7.275 43.813 7.252 43.818 7.228 43.819 7.203 43.818 7.177 43.813 7.154 43.805 7.132 43.796 7.111 43.783 7.093 43.769 7.078 43.753 7.065 43.735 7.056 43.716 7.051 43.696 7.049 43.676 7.051 43.657 7.058 43.639 7.067 43.623 7.080 43.609 7.096 43.596 7.115 43.586 7.135 43.579 7.157 43.574 7.181 ; #2206 18 43.688 12.459 43.690 12.484 43.695 12.508 43.702 12.530 43.712 12.551 43.724 12.569 43.739 12.585 43.755 12.598 43.772 12.608 43.791 12.614 43.812 12.616 43.832 12.614 43.851 12.609 43.868 12.600 43.884 12.587 43.899 12.572 43.911 12.554 43.921 12.534 43.929 12.512 43.933 12.488 43.935 12.462 43.933 12.437 43.929 12.413 43.921 12.391 43.912 12.370 43.900 12.352 43.885 12.336 43.869 12.323 43.851 12.313 43.832 12.307 43.812 12.305 43.791 12.307 43.772 12.312 43.755 12.322 43.739 12.334 43.724 12.349 43.712 12.367 43.702 12.388 43.695 12.410 43.690 12.434 ; #2207 18 35.264 -2.934 35.266 -2.910 35.270 -2.888 35.277 -2.867 35.287 -2.848 35.299 -2.831 35.313 -2.817 35.329 -2.806 35.347 -2.798 35.366 -2.793 35.386 -2.792 35.406 -2.795 35.425 -2.802 35.443 -2.812 35.459 -2.825 35.473 -2.840 35.485 -2.858 35.495 -2.878 35.503 -2.900 35.507 -2.924 35.509 -2.949 35.507 -2.973 35.503 -2.995 35.495 -3.016 35.485 -3.035 35.473 -3.052 35.459 -3.066 35.443 -3.077 35.425 -3.085 35.406 -3.090 35.386 -3.091 35.366 -3.088 35.348 -3.081 35.330 -3.071 35.314 -3.057 35.300 -3.042 35.288 -3.024 35.278 -3.003 35.270 -2.982 35.266 -2.958 ; #2208 1 -75.867 -147.777 -75.877 -147.689 -75.898 -147.544 -75.919 -147.439 -75.940 -147.335 -75.961 -147.245 -75.972 -147.115 -75.982 -146.943 -76.016 -146.815 -76.050 -146.715 -76.082 -146.554 -76.116 -146.413 -76.136 -146.251 -76.136 -146.039 -76.171 -145.811 -76.181 -145.637 -76.202 -145.533 -76.136 -145.087 -76.092 -145.162 -76.061 -145.297 -76.040 -145.471 -76.008 -145.620 -75.953 -145.724 -75.919 -145.839 -75.888 -145.918 -75.844 -146.048 -75.809 -146.163 -75.789 -146.280 -75.778 -146.465 -75.767 -146.581 -75.736 -146.730 -75.736 -146.898 -75.746 -147.120 -75.702 -147.279 -75.691 -147.407 -75.815 -147.585 -75.870 -147.777 ; #2209 1 -74.282 -133.957 -74.313 -133.920 -74.382 -133.834 -74.454 -133.794 -74.483 -133.697 -74.493 -133.577 -74.512 -133.448 -74.552 -133.348 -74.562 -133.201 -74.562 -133.023 -74.552 -132.768 -74.533 -132.580 -74.464 -132.282 -74.493 -132.117 -74.502 -131.914 -74.452 -131.654 -74.452 -131.459 -74.490 -131.199 -74.521 -131.064 -74.521 -130.899 -74.512 -130.674 -74.502 -130.448 -74.502 -130.131 -74.521 -129.973 -74.552 -129.751 -74.562 -129.618 -74.572 -129.387 -74.552 -129.143 -74.552 -128.978 -74.512 -128.624 -74.502 -128.411 -74.452 -128.124 -74.433 -127.839 -74.423 -127.628 -74.414 -127.458 -74.414 -127.251 -74.395 -127.077 -74.404 -126.917 -74.385 -126.688 -74.375 -126.531 -74.385 -126.355 -74.385 -126.161 -74.395 -126.014 -74.404 -125.798 -74.404 -125.578 -74.395 -125.383 -74.404 -125.193 -74.414 -125.034 -74.404 -124.850 -74.395 -124.695 -74.395 -124.543 -74.404 -124.407 -74.423 -124.290 -74.433 -124.169 -74.452 -123.885 -74.452 -123.678 -74.442 -123.523 -74.461 -123.239 -74.452 -123.015 -74.421 -122.809 -74.401 -122.567 -74.411 -122.348 -74.440 -122.108 -74.440 -121.555 -74.471 -121.347 -74.461 -121.111 -74.442 -120.883 -74.442 -120.650 -74.452 -120.417 -74.390 -119.950 -74.390 -119.798 -74.380 -119.603 -74.361 -119.322 -74.342 -118.972 -74.351 -118.836 -74.351 -118.604 -74.260 -118.228 -74.157 -118.258 -74.148 -118.090 -74.107 -117.815 -74.057 -117.591 -74.138 -117.578 -74.169 -117.466 -74.251 -117.466 -74.270 -117.321 -74.279 -117.118 -74.279 -116.911 -74.289 -116.721 -74.289 -116.405 -74.270 -116.110 -74.270 -115.878 -74.167 -115.624 -74.176 -115.490 -74.227 -115.380 -74.236 -115.232 -74.208 -114.977 -74.198 -114.768 -74.208 -114.523 -74.148 -114.561 -74.066 -114.591 -74.016 -114.700 -73.935 -114.718 -73.875 -114.756 -73.846 -114.872 -73.827 -115.046 -73.798 -115.203 -73.779 -115.348 -73.769 -115.482 -73.750 -115.588 -73.731 -115.708 -73.703 -115.823 -73.703 -115.861 -73.815 -116.116 -73.928 -116.225 -73.947 -116.450 -73.937 -116.640 -73.947 -116.819 -73.947 -116.957 -73.956 -117.138 -73.844 -117.098 -73.834 -117.095 -73.815 -117.309 -73.806 -117.512 -73.786 -117.642 -73.767 -117.828 -73.758 -117.976 -73.738 -118.148 -73.719 -118.266 -73.709 -118.426 -73.709 -118.493 -73.760 -118.566 -73.810 -118.802 -73.870 -119.043 -73.939 -119.354 -73.949 -119.619 -73.989 -119.895 -74.009 -120.080 -74.009 -120.575 -74.059 -120.856 -74.097 -121.128 -74.116 -121.393 -74.126 -121.687 -74.126 -121.865 -74.116 -122.179 -74.097 -122.323 -74.078 -122.466 -73.975 -122.310 -73.885 -122.382 -73.772 -122.415 -73.669 -122.302 -73.609 -122.347 -73.619 -122.515 -73.609 -122.673 -73.578 -122.796 -73.537 -122.928 -73.508 -123.040 -73.518 -123.233 -73.518 -123.575 -73.508 -123.749 -73.499 -123.884 -73.489 -124.003 -73.611 -124.002 -73.652 -123.912 -73.712 -123.771 -73.753 -123.667 -73.812 -123.580 -73.925 -123.643 -73.925 -124.027 -73.906 -124.212 -73.887 -124.383 -73.887 -124.602 -73.877 -124.791 -73.858 -125.045 -73.817 -125.247 -73.777 -125.464 -73.717 -125.519 -73.676 -125.664 -73.657 -125.779 -73.595 -126.010 -73.566 -126.150 -73.547 -126.279 -73.478 -126.304 -73.446 -126.398 -73.437 -126.639 -73.446 -126.820 -73.465 -127.004 -73.578 -127.195 -73.681 -127.396 -73.793 -127.587 -73.906 -127.793 -74.018 -128.137 -74.047 -128.342 -74.057 -128.608 -74.047 -128.754 -74.047 -129.056 -74.038 -129.178 -74.028 -129.323 -74.009 -129.565 -74.009 -129.880 -74.018 -130.158 -74.028 -130.353 -74.141 -130.603 -74.141 -130.590 -74.181 -130.514 -74.303 -130.650 -74.303 -130.828 -74.274 -130.967 -74.244 -131.102 -74.263 -131.316 -74.244 -131.500 -74.224 -131.640 -74.205 -131.755 -74.176 -131.740 -74.176 -131.959 -74.236 -132.224 -74.217 -132.366 -74.208 -132.402 -74.208 -132.734 -74.227 -132.964 -74.255 -133.225 -74.265 -133.422 -74.274 -133.617 -74.284 -133.800 -74.303 -133.989 ; #2210 1 -73.367 -124.948 -73.480 -124.972 -73.511 -124.853 -73.502 -124.699 -73.429 -124.433 -73.420 -124.308 -73.370 -124.494 -73.360 -124.626 -73.360 -124.789 -73.370 -124.956 ; #2211 1 -71.996 -102.266 -72.108 -102.508 -72.127 -102.724 -72.118 -102.911 -72.086 -103.079 -72.077 -103.252 -72.067 -103.374 -72.180 -103.338 -72.211 -103.212 -72.240 -103.081 -72.271 -102.954 -72.330 -102.894 -72.381 -102.807 -72.484 -102.798 -72.534 -102.847 -72.544 -102.766 -72.544 -102.428 -72.575 -102.339 -72.604 -102.208 -72.747 -102.352 -72.778 -102.559 -72.807 -102.428 -72.807 -102.266 -72.797 -102.090 -72.857 -102.030 -72.857 -101.855 -72.848 -101.705 -72.819 -101.460 -72.788 -101.212 -72.788 -101.063 -72.797 -100.904 -72.807 -100.715 -72.838 -100.611 -72.879 -100.454 -72.838 -100.206 -72.829 -99.989 -72.838 -99.867 -72.848 -99.719 -72.807 -99.512 -72.807 -99.363 -72.788 -99.161 -72.778 -98.932 -72.769 -98.770 -72.778 -98.610 -72.788 -98.433 -72.797 -98.204 -72.807 -97.989 -72.838 -97.897 -72.941 -98.121 -72.951 -97.986 -72.941 -97.823 -72.941 -97.620 -72.951 -97.473 -72.982 -97.354 -73.001 -97.219 -73.011 -97.030 -73.051 -96.897 -73.070 -96.749 -73.080 -96.559 -73.090 -96.341 -73.090 -96.166 -73.099 -96.017 -73.039 -95.785 -73.030 -95.568 -73.020 -95.392 -73.020 -94.738 -73.030 -94.536 -73.058 -94.413 -73.099 -94.320 -73.099 -94.129 -73.008 -93.802 -73.008 -93.653 -72.958 -93.410 -72.977 -93.216 -72.987 -93.056 -72.977 -92.865 -72.958 -92.690 -72.939 -92.461 -72.948 -92.325 -72.958 -92.189 -72.989 -91.999 -73.020 -91.783 -73.030 -91.647 -73.039 -91.457 -73.039 -91.295 -73.058 -91.142 -73.090 -90.980 -73.109 -90.844 -73.070 -90.656 -72.948 -90.358 -72.929 -90.184 -72.939 -90.035 -72.948 -89.886 -72.958 -89.778 -72.867 -89.497 -72.776 -89.230 -72.654 -89.192 -72.563 -89.234 -72.491 -89.277 -72.451 -89.385 -72.412 -89.496 -72.381 -89.632 -72.340 -89.740 -72.280 -89.838 -72.280 -89.999 -72.350 -90.225 -72.453 -90.507 -72.472 -90.693 -72.412 -90.857 -72.462 -90.857 -72.501 -90.841 -72.613 -90.853 -72.726 -90.882 -72.829 -91.056 -72.941 -91.259 -72.951 -91.433 -72.838 -91.446 -72.726 -91.350 -72.634 -91.377 -72.565 -91.447 -72.503 -91.513 -72.412 -91.619 -72.403 -91.808 -72.412 -91.968 -72.422 -92.117 -72.441 -92.303 -72.422 -92.426 -72.390 -92.598 -72.381 -92.774 -72.371 -92.922 -72.362 -93.085 -72.362 -93.151 -72.453 -93.448 -72.383 -93.448 -72.393 -93.663 -72.383 -93.810 -72.374 -93.933 -72.374 -94.245 -72.383 -94.392 -72.403 -94.592 -72.403 -94.633 -72.422 -94.848 -72.441 -95.047 -72.460 -95.221 -72.460 -95.423 -72.348 -95.188 -72.338 -95.136 -72.319 -95.312 -72.309 -95.487 -72.300 -95.609 -72.309 -95.782 -72.300 -95.959 -72.280 -96.092 -72.271 -96.214 -72.261 -96.254 -72.311 -96.188 -72.340 -96.376 -72.340 -96.782 -72.350 -96.984 -72.359 -97.145 -72.359 -97.318 -72.319 -97.434 -72.309 -97.569 -72.247 -97.642 -72.319 -97.932 -72.319 -98.079 -72.338 -98.320 -72.348 -98.548 -72.348 -98.709 -72.297 -98.773 -72.259 -98.866 -72.249 -98.988 -72.249 -99.365 -72.259 -99.526 -72.156 -99.245 -72.137 -99.406 -72.137 -99.554 -72.156 -99.822 -72.156 -100.048 -72.137 -100.156 -72.118 -100.301 -72.108 -100.434 -72.077 -100.562 -72.058 -100.736 -72.058 -100.936 -72.048 -101.082 -72.058 -101.256 -72.039 -101.401 -72.029 -101.521 -72.020 -101.722 -72.020 -102.029 -72.010 -102.174 -72.000 -102.279 ; #2212 1 -72.460 -97.701 -72.522 -97.938 -72.532 -98.112 -72.512 -98.245 -72.443 -98.000 -72.433 -97.838 -72.453 -97.730 -72.462 -97.705 ; #2213 1 -73.140 -101.696 -73.262 -101.738 -73.302 -101.661 -73.343 -101.530 -73.372 -101.436 -73.413 -101.358 -73.453 -101.280 -73.453 -101.267 -73.482 -101.160 -73.513 -101.042 -73.523 -100.865 -73.523 -100.702 -73.513 -100.512 -73.523 -100.335 -73.532 -100.156 -73.523 -99.980 -73.473 -99.702 -73.444 -99.523 -73.453 -99.361 -73.403 -99.126 -73.394 -99.288 -73.362 -99.406 -73.331 -99.523 -73.293 -99.660 -73.252 -99.791 -73.202 -99.855 -73.202 -100.005 -73.193 -100.224 -73.161 -100.341 -73.152 -100.476 -73.152 -101.144 -73.142 -101.334 -73.142 -101.699 ; #2214 1 -72.604 -88.227 -72.644 -88.253 -72.726 -88.520 -72.795 -88.422 -72.908 -88.676 -72.958 -88.579 -72.989 -88.416 -72.989 -88.267 -72.929 -88.041 -72.929 -87.892 -72.958 -87.754 -72.939 -87.568 -72.948 -87.418 -72.998 -87.321 -73.049 -87.182 -73.090 -87.005 -73.109 -86.826 -73.058 -86.463 -73.018 -86.263 -72.937 -86.011 -72.824 -85.936 -72.814 -86.139 -72.795 -86.292 -72.755 -86.418 -72.736 -86.543 -72.716 -86.815 -72.707 -87.047 -72.716 -87.220 -72.707 -87.464 -72.697 -87.601 -72.678 -87.779 -72.659 -87.969 -72.639 -88.105 -72.609 -88.240 ; #2215 1 -73.075 -85.430 -73.197 -85.434 -73.310 -85.521 -73.341 -85.423 -73.360 -85.272 -73.391 -85.120 -73.420 -84.898 -73.439 -84.784 -73.449 -84.538 -73.458 -84.274 -73.439 -84.008 -73.429 -83.779 -73.449 -83.545 -73.489 -83.390 -73.528 -83.192 -73.415 -83.095 -73.312 -83.160 -73.283 -83.312 -73.274 -83.437 -73.245 -83.594 -73.214 -83.854 -73.185 -83.981 -73.166 -84.148 -73.125 -84.313 -73.087 -84.495 -73.046 -84.622 -73.006 -84.762 -72.975 -84.859 -72.937 -84.987 -72.917 -85.124 -73.020 -85.186 -73.080 -85.411 -73.080 -85.436 ; #2216 1 -72.932 -78.632 -72.941 -78.522 -72.960 -78.409 -72.970 -78.271 -72.998 -78.168 -72.960 -77.974 -72.960 -77.826 -72.970 -77.700 -72.998 -77.583 -73.030 -77.483 -73.133 -77.614 -73.183 -77.821 -73.183 -77.958 -73.173 -78.097 -73.133 -78.186 -73.123 -78.188 -73.142 -78.348 -73.161 -78.507 -73.180 -78.678 -73.250 -78.609 -73.353 -78.650 -73.425 -78.597 -73.425 -78.447 -73.394 -78.273 -73.375 -78.114 -73.334 -77.929 -73.324 -77.769 -73.305 -77.596 -73.286 -77.437 -73.267 -77.266 -73.267 -77.129 -73.286 -77.014 -73.296 -76.875 -73.276 -76.703 -73.276 -76.567 -73.305 -76.449 -73.408 -76.567 -73.521 -76.833 -73.602 -76.776 -73.583 -76.616 -73.542 -76.420 -73.523 -76.261 -73.552 -76.156 -73.561 -76.016 -73.552 -75.868 -73.542 -75.803 -73.502 -75.607 -73.473 -75.425 -73.463 -75.263 -73.413 -75.069 -73.413 -74.783 -73.423 -74.656 -73.451 -74.538 -73.482 -74.410 -73.432 -74.216 -73.413 -74.058 -73.413 -73.895 -73.453 -73.803 -73.362 -73.552 -73.312 -73.360 -73.302 -73.212 -73.322 -73.084 -73.231 -72.847 -73.231 -72.548 -73.212 -72.390 -73.173 -72.211 -73.173 -72.049 -73.164 -71.903 -73.154 -71.743 -73.145 -71.583 -73.145 -71.447 -73.104 -71.253 -73.063 -71.061 -73.054 -70.901 -73.044 -70.742 -73.044 -70.443 -73.054 -70.317 -73.054 -70.167 -73.013 -69.988 -73.013 -69.839 -73.003 -69.680 -72.984 -69.523 -72.975 -69.377 -72.965 -69.231 -72.915 -69.029 -72.895 -68.860 -72.865 -68.692 -72.836 -68.527 -72.776 -68.316 -72.736 -68.138 -72.675 -67.929 -72.656 -67.761 -72.647 -67.615 -72.544 -67.375 -72.441 -67.284 -72.338 -67.101 -72.247 -66.862 -72.144 -66.800 -72.041 -66.817 -72.031 -66.833 -71.928 -66.878 -71.816 -66.819 -71.713 -66.795 -71.641 -66.869 -71.572 -66.935 -71.512 -67.009 -71.481 -67.113 -71.461 -67.240 -71.411 -67.323 -71.330 -67.377 -71.249 -67.441 -71.146 -67.416 -71.043 -67.367 -70.930 -67.280 -70.827 -67.283 -70.798 -67.400 -70.686 -67.406 -70.583 -67.437 -70.521 -67.520 -70.461 -67.606 -70.348 -67.584 -70.298 -67.678 -70.207 -67.720 -70.116 -67.762 -70.035 -67.826 -70.016 -67.951 -69.967 -68.050 -69.940 -68.169 -69.873 -68.240 -69.796 -68.302 -69.739 -68.383 -69.634 -68.225 -69.537 -68.229 -69.460 -68.292 -69.451 -68.347 -69.478 -68.423 -69.496 -68.582 -69.487 -68.704 -69.534 -68.889 -69.564 -68.773 -69.602 -68.677 -69.641 -68.866 -69.668 -69.021 -69.649 -69.135 -69.746 -69.092 -69.794 -68.980 -69.794 -68.967 -69.870 -68.905 -69.977 -68.885 -70.025 -68.788 -70.076 -68.694 -70.095 -68.570 -70.135 -68.478 -70.238 -68.437 -70.298 -68.353 -70.380 -68.289 -70.449 -68.226 -70.562 -68.206 -70.652 -68.164 -70.755 -68.174 -70.837 -68.123 -70.940 -68.093 -71.043 -68.079 -71.155 -68.141 -71.246 -68.087 -71.337 -68.045 -71.418 -67.980 -71.521 -68.046 -71.624 -68.044 -71.737 -68.249 -71.840 -68.262 -71.943 -68.260 -72.055 -68.480 -72.074 -68.647 -72.134 -68.843 -72.237 -69.084 -72.340 -69.111 -72.359 -69.291 -72.359 -69.439 -72.379 -69.608 -72.398 -69.775 -72.417 -69.930 -72.455 -70.267 -72.474 -70.435 -72.443 -70.551 -72.414 -70.668 -72.465 -70.869 -72.455 -71.007 -72.436 -71.122 -72.427 -71.248 -72.446 -71.429 -72.436 -71.566 -72.436 -71.727 -72.455 -71.883 -72.486 -72.064 -72.506 -72.177 -72.536 -72.131 -72.649 -72.211 -72.740 -72.445 -72.800 -72.646 -72.810 -72.818 -72.819 -72.964 -72.838 -73.133 -72.919 -73.358 -73.022 -73.417 -73.135 -73.582 -73.185 -73.800 -73.135 -73.894 -73.022 -73.770 -72.941 -73.614 -72.922 -73.729 -72.872 -73.810 -72.831 -73.901 -72.831 -74.050 -72.900 -74.140 -73.013 -74.303 -73.116 -74.350 -73.188 -74.293 -73.238 -74.199 -73.298 -74.115 -73.400 -74.351 -73.391 -74.478 -73.372 -74.606 -73.353 -74.734 -73.322 -74.837 -73.302 -74.977 -73.283 -75.093 -73.252 -75.195 -73.222 -75.323 -73.193 -75.453 -73.173 -75.567 -73.135 -75.674 -73.094 -75.790 -73.035 -75.859 -72.972 -75.938 -72.869 -75.768 -72.889 -75.629 -72.869 -75.470 -72.766 -75.289 -72.776 -75.449 -72.704 -75.517 -72.601 -75.266 -72.572 -75.382 -72.541 -75.483 -72.522 -75.623 -72.503 -75.737 -72.484 -75.864 -72.465 -75.978 -72.446 -76.092 -72.427 -76.218 -72.407 -76.332 -72.388 -76.446 -72.379 -76.571 -72.369 -76.695 -72.369 -76.831 -72.388 -77.013 -72.398 -77.159 -72.398 -77.307 -72.489 -77.398 -72.591 -77.421 -72.704 -77.525 -72.704 -77.661 -72.713 -77.807 -72.745 -77.991 -72.786 -78.188 -72.845 -78.393 -72.958 -78.660 ; #2217 1 -72.271 -68.766 -72.168 -68.611 -72.187 -68.482 -72.268 -68.714 -72.268 -68.764 ; #2218 1 -69.066 -68.157 -69.057 -68.006 -69.122 -67.934 -69.151 -67.818 -69.160 -67.696 -69.160 -67.436 -69.133 -67.270 -69.104 -67.114 -69.039 -66.927 -68.932 -66.744 -68.835 -66.586 -68.759 -66.660 -68.768 -66.810 -68.759 -66.956 -68.741 -67.069 -68.723 -67.196 -68.705 -67.255 -68.752 -67.308 -68.800 -67.491 -68.865 -67.678 -68.894 -67.845 -68.921 -68.011 -68.989 -68.212 -69.066 -68.150 ; #2219 1 -64.008 -58.743 -64.100 -58.684 -64.193 -58.809 -64.201 -58.681 -64.294 -58.662 -64.331 -58.688 -64.303 -58.582 -64.249 -58.410 -64.195 -58.249 -64.167 -58.095 -64.075 -58.054 -63.973 -58.044 -63.900 -58.116 -63.928 -58.270 -63.928 -58.345 -63.973 -58.510 -64.010 -58.659 -64.010 -58.741 ; #2220 1 -76.043 -26.374 -76.043 -26.218 -76.084 -26.087 -76.084 -25.930 -76.043 -25.752 -75.998 -25.584 -75.953 -25.404 -75.919 -25.229 -75.909 -25.068 -75.888 -24.915 -75.877 -24.753 -75.856 -24.587 -75.835 -24.421 -75.825 -24.247 -75.825 -23.949 -75.815 -23.789 -75.793 -23.622 -75.783 -23.462 -75.772 -23.275 -75.783 -23.126 -75.783 -22.958 -75.762 -22.805 -75.741 -22.652 -75.741 -22.342 -75.731 -22.182 -75.686 -22.005 -75.665 -21.853 -75.676 -21.690 -75.697 -21.532 -75.717 -21.401 -75.728 -21.252 -75.707 -21.086 -75.717 -20.936 -75.717 -20.640 -75.697 -20.475 -75.665 -20.318 -75.566 -20.117 -75.532 -19.960 -75.521 -19.787 -75.511 -19.628 -75.532 -19.483 -75.542 -19.333 -75.553 -19.197 -75.563 -19.034 -75.563 -18.892 -75.573 -18.713 -75.563 -18.554 -75.542 -18.390 -75.521 -18.226 -75.532 -18.064 -75.521 -17.904 -75.500 -17.754 -75.422 -17.861 -75.401 -18.007 -75.356 -18.141 -75.243 -18.190 -75.144 -18.007 -75.021 -17.872 -75.000 -17.709 -74.909 -17.535 -74.837 -17.356 -74.734 -17.237 -74.631 -17.186 -74.519 -17.022 -74.499 -16.905 -74.469 -16.755 -74.428 -16.601 -74.390 -16.436 -74.371 -16.277 -74.351 -16.131 -74.320 -15.981 -74.270 -15.813 -74.167 -15.680 -74.148 -15.522 -74.116 -15.360 -74.076 -15.196 -74.016 -15.024 -73.966 -14.856 -73.937 -14.696 -73.937 -14.532 -73.918 -14.388 -73.899 -14.230 -73.858 -14.079 -73.808 -13.925 -73.777 -13.765 -73.738 -13.903 -73.719 -14.060 -73.719 -14.211 -73.729 -14.365 -73.647 -14.476 -73.628 -14.633 -73.690 -14.791 -73.750 -14.961 -73.779 -15.122 -73.810 -15.270 -73.830 -15.415 -73.839 -15.556 -73.858 -15.700 -73.868 -15.854 -73.877 -16.022 -73.868 -16.156 -73.868 -16.320 -73.858 -16.455 -73.839 -16.598 -73.830 -16.733 -73.801 -16.874 -73.760 -16.708 -73.750 -16.567 -73.690 -16.396 -73.628 -16.224 -73.590 -16.073 -73.559 -16.212 -73.590 -16.361 -73.600 -16.502 -73.619 -16.646 -73.650 -16.807 -73.547 -16.771 -73.475 -16.596 -73.437 -16.432 -73.324 -16.313 -73.222 -16.210 -73.152 -16.049 -73.142 -15.897 -73.123 -15.741 -73.104 -15.598 -73.022 -15.272 -73.022 -15.110 -73.032 -14.964 -73.042 -14.818 -73.051 -14.672 -73.070 -14.541 -73.051 -14.386 -72.992 -14.230 -72.972 -14.075 -72.922 -13.910 -72.862 -13.755 -72.843 -13.898 -72.824 -14.041 -72.755 -14.168 -72.736 -14.298 -72.726 -14.374 -72.675 -14.494 -72.637 -14.333 -72.647 -14.175 -72.647 -13.726 -72.666 -13.596 -72.675 -13.463 -72.647 -13.306 -72.587 -13.139 -72.556 -12.982 -72.536 -12.828 -72.506 -12.670 -72.465 -12.510 -72.436 -12.353 -72.374 -12.200 -72.271 -12.023 -72.242 -11.867 -72.201 -11.720 -72.132 -11.566 -72.029 -11.418 -71.926 -11.364 -71.823 -11.376 -71.720 -11.482 -71.680 -11.618 -71.629 -11.750 -71.579 -11.870 -71.579 -11.882 -71.639 -12.018 -71.648 -12.180 -71.667 -12.331 -71.706 -12.477 -71.756 -12.626 -71.797 -12.785 -71.828 -12.940 -71.828 -12.794 -71.797 -12.650 -71.797 -12.516 -71.900 -12.692 -71.881 -12.528 -71.830 -12.378 -71.820 -12.241 -71.890 -12.396 -71.941 -12.545 -72.053 -12.591 -72.044 -12.723 -72.044 -12.870 -72.074 -13.026 -72.065 -13.159 -71.952 -13.100 -71.983 -13.244 -71.983 -13.391 -71.881 -13.281 -71.871 -13.425 -71.881 -13.563 -71.909 -13.719 -71.941 -13.875 -71.971 -14.019 -71.991 -14.173 -72.010 -14.314 -72.029 -14.455 -72.058 -14.611 -72.170 -14.569 -72.240 -14.738 -72.230 -14.883 -72.240 -15.033 -72.280 -15.182 -72.321 -15.343 -72.424 -15.513 -72.433 -15.651 -72.453 -15.806 -72.462 -15.957 -72.493 -16.116 -72.534 -16.278 -72.563 -16.423 -72.572 -16.575 -72.591 -16.730 -72.610 -16.872 -72.630 -17.028 -72.680 -17.182 -72.783 -17.193 -72.793 -17.345 -72.742 -17.476 -72.723 -17.605 -72.704 -17.734 -72.685 -17.876 -72.685 -18.024 -72.726 -18.175 -72.764 -18.338 -72.745 -18.467 -72.642 -18.308 -72.633 -18.454 -72.642 -18.618 -72.673 -18.766 -72.755 -18.945 -72.867 -19.000 -72.917 -18.883 -72.937 -18.742 -72.946 -18.596 -72.946 -18.459 -72.977 -18.309 -72.987 -18.462 -73.016 -18.622 -73.119 -18.797 -73.169 -18.953 -73.178 -19.107 -73.075 -18.946 -72.963 -18.878 -73.035 -19.042 -73.125 -19.226 -73.207 -19.394 -73.320 -19.521 -73.423 -19.653 -73.526 -19.802 -73.638 -19.927 -73.741 -20.035 -73.832 -20.210 -73.923 -20.397 -74.026 -20.316 -74.138 -20.458 -74.241 -20.568 -74.313 -20.458 -74.363 -20.327 -74.423 -20.199 -74.493 -20.088 -74.605 -20.065 -74.643 -20.221 -74.624 -20.378 -74.615 -20.426 -74.634 -20.421 -74.737 -20.340 -74.787 -20.207 -74.859 -20.083 -74.928 -19.972 -74.979 -19.839 -75.089 -19.778 -75.079 -19.939 -75.024 -20.067 -75.003 -20.210 -74.984 -20.356 -74.952 -20.496 -74.892 -20.624 -74.779 -20.672 -74.699 -20.778 -74.629 -20.889 -74.578 -21.021 -74.548 -21.147 -74.519 -21.274 -74.469 -21.406 -74.409 -21.519 -74.368 -21.641 -74.318 -21.772 -74.277 -21.906 -74.246 -22.044 -74.227 -22.188 -74.208 -22.318 -74.189 -22.461 -74.179 -22.622 -74.179 -22.773 -74.189 -22.929 -74.198 -23.098 -74.239 -23.268 -74.320 -23.443 -74.380 -23.621 -74.399 -23.782 -74.409 -23.925 -74.437 -24.090 -74.478 -24.248 -74.519 -24.419 -74.631 -24.539 -74.672 -24.405 -74.713 -24.272 -74.763 -24.155 -74.866 -24.078 -75.079 -24.322 -75.089 -24.187 -75.089 -23.727 -75.079 -23.555 -75.134 -23.443 -75.246 -23.570 -75.235 -23.398 -75.205 -23.228 -75.183 -23.077 -75.194 -22.915 -75.215 -22.759 -75.225 -22.611 -75.225 -22.444 -75.235 -22.270 -75.235 -22.129 -75.257 -21.972 -75.301 -21.853 -75.356 -21.739 -75.456 -21.635 -75.569 -21.703 -75.613 -21.880 -75.524 -22.003 -75.411 -21.973 -75.377 -22.110 -75.388 -22.270 -75.500 -22.339 -75.624 -22.389 -75.602 -22.532 -75.503 -22.637 -75.414 -22.745 -75.346 -22.852 -75.290 -22.964 -75.270 -23.094 -75.270 -23.249 -75.290 -23.413 -75.312 -23.565 -75.343 -23.735 -75.364 -23.913 -75.374 -24.073 -75.429 -24.257 -75.440 -24.416 -75.440 -24.557 -75.461 -24.723 -75.482 -24.876 -75.503 -25.041 -75.524 -25.207 -75.524 -25.374 -75.514 -25.510 -75.514 -25.819 -75.534 -25.998 -75.555 -26.164 -75.576 -26.331 -75.597 -26.484 -75.709 -26.647 -75.731 -26.504 -75.762 -26.380 -75.796 -26.257 -75.872 -26.146 -75.995 -26.228 -76.063 -26.409 ; #2221 1 -69.902 7.736 -69.920 7.799 -69.987 7.954 -70.099 8.042 -70.202 8.223 -70.234 8.391 -70.214 8.575 -70.123 8.733 -70.011 8.838 -69.913 8.553 -69.848 8.423 -69.818 8.567 -69.828 8.698 -69.836 8.865 -69.846 9.035 -69.893 9.218 -69.920 9.349 -69.979 9.517 -70.037 9.687 -70.078 9.908 -70.097 10.051 -70.128 10.195 -70.157 10.327 -70.269 10.443 -70.341 10.588 -70.391 10.720 -70.411 10.864 -70.420 10.996 -70.430 11.129 -70.439 11.261 -70.449 11.406 -70.439 11.549 -70.449 11.694 -70.459 11.826 -70.468 11.971 -70.439 12.103 -70.358 12.232 -70.152 12.489 -70.082 12.631 -70.011 12.760 -70.011 13.441 -69.983 13.595 -69.965 13.738 -69.938 13.892 -69.908 14.035 -69.900 14.166 -69.918 14.322 -69.947 14.454 -69.977 14.587 -70.004 14.732 -70.023 14.877 -70.023 15.545 -70.013 15.688 -70.004 15.832 -69.985 15.973 -69.977 16.104 -69.958 16.247 -69.932 16.388 -69.922 16.531 -69.904 16.673 -69.886 16.814 -69.868 16.944 -69.850 17.086 -69.832 17.228 -69.814 17.370 -69.805 17.500 -69.776 17.640 -69.758 17.755 -69.739 17.897 -69.731 18.038 -69.760 18.172 -69.807 18.320 -69.846 18.455 -69.855 18.611 -69.863 18.743 -69.863 18.874 -69.882 19.019 -69.900 19.164 -69.908 19.296 -69.918 19.441 -69.947 19.600 -69.965 19.745 -69.974 19.889 -70.004 20.037 -70.035 20.184 -70.063 20.331 -70.082 20.489 -70.111 20.637 -70.121 20.770 -70.131 20.903 -70.140 21.035 -70.140 21.705 -70.150 21.851 -70.181 21.999 -70.209 22.135 -70.240 22.296 -70.260 22.431 -70.269 22.564 -70.288 22.699 -70.288 23.107 -70.279 23.237 -70.269 23.379 -70.260 23.509 -70.250 23.652 -70.231 23.780 -70.221 23.922 -70.212 24.052 -70.193 24.193 -70.183 24.322 -70.164 24.463 -70.155 24.593 -70.135 24.733 -70.126 24.862 -70.107 25.003 -70.097 25.133 -70.078 25.272 -70.058 25.400 -70.058 25.807 -70.028 25.932 -69.990 26.067 -69.972 26.195 -69.963 26.325 -69.954 26.479 -69.936 26.607 -69.918 26.734 -69.908 26.864 -69.900 27.006 -69.900 27.137 -69.918 27.272 -69.918 27.403 -69.888 27.540 -69.870 27.667 -69.861 27.797 -69.823 27.945 -69.814 28.086 -69.796 28.213 -69.787 28.355 -69.778 28.484 -69.769 28.494 -69.739 28.643 -69.713 28.768 -69.683 28.893 -69.665 29.032 -69.636 29.156 -69.618 29.283 -69.609 29.424 -69.600 29.553 -69.600 29.957 -69.591 30.098 -69.591 30.229 -69.582 30.357 -69.582 30.488 -69.573 30.616 -69.573 30.747 -69.564 30.887 -69.546 31.014 -69.469 31.256 -69.422 31.375 -69.386 31.509 -69.368 31.635 -69.340 31.759 -69.323 31.885 -69.295 32.009 -69.257 32.129 -69.228 32.264 -69.201 32.387 -69.171 32.522 -69.115 32.662 -69.086 32.730 -69.086 32.575 -69.077 32.431 -69.047 32.269 -69.000 32.128 -68.953 31.974 -68.897 31.831 -68.915 31.681 -68.923 31.542 -68.905 31.396 -68.887 31.250 -68.878 31.105 -68.840 30.955 -68.849 30.815 -68.935 30.694 -69.041 30.656 -69.059 30.530 -69.050 30.385 -69.041 30.241 -69.032 30.097 -69.079 29.978 -69.108 29.855 -69.144 29.733 -69.192 29.613 -69.221 29.477 -69.259 29.356 -69.356 29.353 -69.433 29.228 -69.530 29.169 -69.539 29.041 -69.539 28.910 -69.557 28.783 -69.539 28.637 -69.530 28.492 -69.607 28.365 -69.636 28.241 -69.645 28.100 -69.721 27.972 -69.739 27.845 -69.758 27.718 -69.766 27.589 -69.766 27.446 -69.739 27.310 -69.692 27.170 -69.683 27.037 -69.719 26.901 -69.749 26.751 -69.701 26.611 -69.701 26.468 -69.739 26.344 -69.787 26.497 -69.843 26.416 -69.825 26.281 -69.843 26.154 -69.900 26.020 -69.938 25.896 -70.047 25.828 -69.997 25.675 -69.891 25.708 -69.908 25.567 -69.927 25.440 -69.888 25.302 -69.907 25.162 -69.915 25.032 -69.942 24.893 -69.990 24.758 -69.999 24.903 -70.030 24.777 -70.039 24.648 -70.099 24.503 -70.109 24.373 -70.109 24.242 -70.099 24.096 -70.171 23.977 -70.161 23.845 -70.099 23.690 -70.008 23.530 -69.960 23.391 -69.952 23.259 -69.933 23.125 -69.915 22.991 -69.886 22.855 -69.904 22.715 -69.913 22.585 -69.922 22.455 -69.932 22.313 -69.932 22.050 -69.940 21.909 -69.958 21.780 -69.949 21.623 -69.932 21.477 -69.902 21.330 -69.893 21.472 -69.884 21.602 -69.828 21.738 -69.828 21.476 -69.818 21.344 -69.810 21.212 -69.783 21.053 -69.764 20.934 -69.755 20.790 -69.738 20.645 -69.728 20.489 -69.699 20.342 -69.681 20.197 -69.672 20.053 -69.672 19.883 -69.663 19.727 -69.663 19.596 -69.672 19.466 -69.663 19.310 -69.719 19.173 -69.719 19.042 -69.710 18.898 -69.672 18.751 -69.654 18.606 -69.636 18.462 -69.627 18.306 -69.609 18.161 -69.571 18.027 -69.523 17.879 -69.467 17.732 -69.485 17.603 -69.503 17.462 -69.521 17.321 -69.530 17.191 -69.503 17.046 -69.503 16.773 -69.512 16.631 -69.512 16.500 -69.503 16.356 -69.494 16.201 -69.494 16.071 -69.503 15.941 -69.530 15.800 -69.577 15.660 -69.541 15.527 -69.444 15.430 -69.347 15.412 -69.241 15.381 -69.164 15.234 -69.156 15.092 -69.164 14.962 -69.174 14.820 -69.183 14.691 -69.183 14.549 -69.201 14.420 -69.201 14.290 -69.210 14.148 -69.228 14.018 -69.266 13.878 -69.372 13.834 -69.469 13.708 -69.517 13.579 -69.534 13.438 -69.476 13.305 -69.534 13.176 -69.571 13.034 -69.589 12.904 -69.686 12.820 -69.783 12.859 -69.821 12.939 -69.839 13.071 -69.936 13.111 -69.954 12.968 -69.963 12.825 -69.963 12.694 -69.933 12.549 -69.836 12.483 -69.818 12.339 -69.780 12.207 -69.780 12.195 -69.733 12.051 -69.704 11.920 -69.780 11.790 -69.807 11.727 -69.816 11.583 -69.778 11.439 -69.760 11.360 -69.769 11.217 -69.778 11.086 -69.796 10.983 -69.805 10.840 -69.778 10.709 -69.769 10.553 -69.739 10.422 -69.674 10.291 -69.616 10.148 -69.624 10.017 -69.681 9.862 -69.778 9.838 -69.778 9.749 -69.731 9.685 -69.749 9.530 -69.778 9.387 -69.816 9.271 -69.825 9.139 -69.778 9.009 -69.731 8.973 -69.713 8.830 -69.686 8.688 -69.647 8.546 -69.647 8.402 -69.704 8.258 -69.721 8.127 -69.778 7.983 -69.863 7.904 -69.929 7.760 ; #2222 1 -67.427 81.359 -67.465 81.529 -67.483 81.682 -67.474 81.803 -67.474 81.931 -67.388 81.723 -67.350 81.565 -67.332 81.411 -67.332 81.400 -67.429 81.364 ; #2223 1 -67.016 82.234 -67.122 82.380 -67.190 82.574 -67.142 82.674 -67.075 82.759 -67.036 82.868 -67.009 82.973 -66.980 83.087 -66.971 83.219 -66.962 83.350 -66.953 83.482 -66.953 83.748 -66.962 83.893 -66.971 84.028 -66.953 84.152 -66.944 84.283 -66.944 84.422 -66.935 84.541 -66.944 84.687 -66.953 84.821 -66.953 84.960 -66.971 85.102 -66.989 85.256 -66.980 85.387 -66.980 85.664 -66.953 85.768 -66.915 85.875 -66.867 85.974 -66.858 86.105 -66.858 86.244 -66.840 86.367 -66.840 86.632 -66.831 86.762 -66.813 86.874 -66.775 86.992 -66.746 87.105 -66.728 87.217 -66.718 87.347 -66.671 87.457 -66.653 87.568 -66.615 87.674 -66.509 87.683 -66.470 87.788 -66.470 87.914 -66.414 88.004 -66.317 87.994 -66.220 88.037 -66.123 88.054 -66.026 88.055 -65.920 88.064 -65.855 88.082 -65.846 88.074 -65.828 87.921 -65.819 87.789 -65.819 87.252 -65.828 87.134 -65.857 87.022 -65.875 86.912 -65.875 86.763 -65.914 86.670 -65.922 86.528 -65.952 86.427 -65.961 86.298 -66.037 86.224 -66.067 86.123 -66.076 85.994 -66.058 85.842 -66.067 85.723 -66.067 85.574 -66.123 85.483 -66.209 85.417 -66.209 85.279 -66.227 85.168 -66.286 85.079 -66.362 85.004 -66.380 84.893 -66.283 84.740 -66.178 84.566 -66.178 84.440 -66.206 84.326 -66.236 84.213 -66.218 84.072 -66.218 83.797 -66.227 83.667 -66.303 83.591 -66.400 83.681 -66.439 83.575 -66.457 83.451 -66.457 83.313 -66.475 83.190 -66.484 83.059 -66.493 82.940 -66.455 82.771 -66.358 82.582 -66.252 82.387 -66.155 82.298 -66.049 82.238 -65.952 82.062 -65.952 81.662 -66.017 81.564 -66.064 81.464 -66.121 81.383 -66.227 81.466 -66.324 81.442 -66.421 81.418 -66.518 81.494 -66.624 81.539 -66.721 81.690 -66.721 81.816 -66.703 81.941 -66.685 82.064 -66.723 82.221 -66.820 82.225 -66.926 82.248 -67.023 82.236 ; #2224 1 -66.380 121.814 -66.351 121.927 -66.351 122.054 -66.389 122.227 -66.407 122.387 -66.398 122.501 -66.407 122.651 -66.445 122.824 -66.531 122.781 -66.561 122.956 -66.531 123.057 -66.502 123.158 -66.466 123.366 -66.437 123.456 -66.419 123.572 -66.389 123.673 -66.360 123.786 -66.342 123.913 -66.324 124.016 -66.315 124.143 -66.315 124.268 -66.353 124.442 -66.459 124.526 -66.556 124.601 -66.547 124.739 -66.500 124.817 -66.529 124.981 -66.520 125.107 -66.473 125.185 -66.425 125.251 -66.349 125.281 -66.272 125.310 -66.225 125.400 -66.198 125.503 -66.198 125.640 -66.168 125.740 -66.141 125.832 -66.123 125.882 -66.067 125.700 -66.058 125.551 -66.049 125.402 -66.049 124.727 -66.058 124.613 -66.049 124.476 -66.049 123.813 -66.058 123.698 -66.067 123.584 -66.105 123.507 -66.132 123.402 -66.150 123.287 -66.168 123.172 -66.186 123.057 -66.205 122.942 -66.243 122.852 -66.270 122.759 -66.299 122.670 -66.328 122.556 -66.337 122.430 -66.328 122.281 -66.320 122.144 -66.320 122.006 -66.328 121.891 -66.385 121.822 ; #2225 1 -66.103 129.917 -65.997 129.827 -65.950 129.903 -65.912 129.978 -65.882 130.076 -65.873 130.189 -65.873 130.327 -65.902 130.503 -65.999 130.654 -65.999 130.455 -66.008 130.330 -66.026 130.216 -66.044 130.102 -66.083 130.016 -66.101 129.914 ; #2226 4 48.104 -4.782 48.088 -4.706 48.080 -4.598 48.030 -4.486 47.945 -4.416 47.860 -4.335 47.927 -4.225 47.935 -4.118 47.961 -4.013 47.876 -3.921 47.868 -3.813 47.842 -3.693 47.842 -3.586 47.818 -3.564 47.802 -3.455 47.852 -3.343 47.767 -3.388 47.735 -3.278 47.820 -3.200 47.735 -3.265 47.650 -3.196 47.557 -3.168 47.642 -3.135 47.701 -3.033 47.660 -2.987 47.693 -2.883 47.660 -2.763 47.626 -2.868 47.618 -2.974 47.559 -2.862 47.566 -2.756 47.590 -2.651 47.590 -2.544 47.574 -2.425 47.525 -2.528 47.483 -2.495 47.450 -2.599 47.364 -2.583 47.356 -2.475 47.315 -2.355 47.372 -2.252 47.372 -2.243 47.380 -2.137 47.372 -2.029 47.330 -1.909 47.281 -1.798 47.297 -1.894 47.356 -2.005 47.364 -2.112 47.349 -2.218 47.291 -2.224 47.205 -2.279 47.190 -2.171 47.115 -2.049 47.098 -2.080 47.031 -2.114 46.946 -2.202 46.861 -2.111 46.785 -1.998 46.778 -1.988 46.692 -1.910 46.607 -1.851 46.581 -1.840 46.531 -1.720 46.506 -1.633 46.420 -1.511 46.420 -1.405 46.371 -1.295 46.405 -1.181 46.319 -1.227 46.234 -1.221 46.149 -1.163 46.064 -1.157 45.978 -1.181 45.885 -1.184 45.810 -1.072 45.868 -1.192 45.875 -1.287 45.790 -1.312 45.764 -1.227 45.715 -1.118 45.639 -0.997 45.582 -0.887 45.497 -0.810 45.404 -0.772 45.346 -0.758 45.261 -0.743 45.175 -0.717 45.082 -0.618 45.067 -0.607 44.982 -0.611 44.997 -0.622 45.082 -0.637 45.158 -0.748 45.243 -0.785 45.336 -0.802 45.422 -0.849 45.507 -0.961 45.564 -1.070 45.614 -1.179 45.520 -1.212 45.435 -1.216 45.350 -1.220 45.257 -1.243 45.172 -1.256 45.078 -1.269 45.070 -1.268 44.985 -1.282 44.894 -1.296 44.809 -1.310 44.717 -1.304 44.809 -1.271 44.825 -1.166 44.733 -1.151 44.733 -1.256 44.649 -1.302 44.557 -1.316 44.490 -1.322 44.406 -1.336 44.315 -1.362 44.230 -1.375 44.062 -1.428 43.970 -1.442 43.886 -1.477 43.802 -1.491 43.717 -1.506 43.625 -1.570 43.551 -1.626 43.485 -1.726 43.451 -1.828 43.443 -1.837 43.436 -1.807 43.395 -1.785 43.395 -1.681 43.387 -1.566 43.371 -1.461 43.279 -1.446 43.195 -1.510 43.128 -1.402 43.213 -1.337 43.213 -1.327 43.128 -1.230 43.113 -1.137 43.064 -1.030 43.048 -0.924 43.064 -0.812 43.023 -0.778 42.939 -0.669 42.888 -0.596 42.895 -0.576 42.911 -0.577 42.903 -0.463 42.945 -0.373 42.895 -0.257 42.821 -0.149 42.788 -0.065 42.813 0.038 42.829 0.150 42.788 0.257 42.788 0.370 42.796 0.409 42.796 0.513 42.788 0.605 42.880 0.600 42.964 0.647 42.949 0.679 42.941 0.699 42.933 0.771 42.909 0.887 42.884 0.992 42.817 1.099 42.825 1.212 42.800 1.318 42.708 1.373 42.757 1.421 42.741 1.526 42.733 1.630 42.675 1.703 42.659 1.665 42.618 1.657 42.602 1.658 42.594 1.772 42.561 1.834 42.553 1.875 42.545 1.876 42.545 1.886 42.471 1.993 42.538 2.103 42.545 2.207 42.512 2.312 42.479 2.384 42.471 2.487 42.456 2.592 42.530 2.692 42.579 2.804 42.571 2.805 42.586 2.908 42.545 3.023 42.545 3.093 42.553 3.102 42.594 3.072 42.679 2.976 42.939 2.966 42.939 2.957 42.972 2.904 42.998 2.932 43.013 2.932 43.046 2.940 43.054 2.940 43.103 2.977 43.187 2.954 43.238 3.066 43.322 3.167 43.379 3.269 43.387 3.373 43.428 3.476 43.495 3.578 43.528 3.691 43.594 3.793 43.643 3.896 43.659 4.000 43.592 4.065 43.584 4.170 43.600 4.208 43.559 4.324 43.559 4.384 43.543 4.499 43.459 4.584 43.500 4.697 43.584 4.653 43.668 4.631 43.584 4.663 43.493 4.726 43.526 4.798 43.518 4.912 43.518 4.944 43.534 4.973 43.618 4.929 43.602 5.034 43.518 5.068 43.510 4.954 43.502 4.935 43.453 4.946 43.445 5.051 43.445 5.164 43.420 5.279 43.328 5.272 43.328 5.376 43.295 5.491 43.295 5.605 43.262 5.637 43.169 5.744 43.236 5.846 43.203 5.951 43.162 6.057 43.236 6.169 43.195 6.274 43.270 6.386 43.303 6.490 43.318 6.594 43.402 6.522 43.459 6.625 43.526 6.738 43.557 6.842 43.641 6.892 43.649 6.952 43.672 7.056 43.765 7.096 43.798 7.200 43.823 7.305 43.864 7.335 43.864 7.345 43.849 7.355 43.874 7.447 43.890 7.437 43.989 7.435 44.074 7.539 44.158 7.621 44.181 7.620 44.265 7.590 44.257 7.485 44.224 7.381 44.224 7.276 44.257 7.171 44.307 7.065 44.332 6.950 44.416 6.844 44.449 6.814 44.506 6.803 44.590 6.782 44.682 6.854 44.741 6.873 44.774 6.977 44.805 6.986 44.890 6.933 44.941 6.827 44.982 6.712 45.013 6.669 45.072 6.658 45.158 6.573 45.181 6.543 45.197 6.562 45.221 6.604 45.229 6.709 45.221 6.824 45.273 6.874 45.297 6.990 45.390 7.039 45.475 7.089 45.550 7.004 45.636 6.909 45.721 6.898 45.754 6.813 45.848 6.728 45.848 6.718 45.923 6.832 45.990 6.936 45.998 6.957 46.083 6.903 46.117 6.860 46.125 6.860 46.210 6.752 46.295 6.721 46.381 6.739 46.466 6.727 46.474 6.727 46.524 6.620 46.524 6.513 46.516 6.407 46.474 6.292 46.441 6.186 46.383 6.168 46.349 6.179 46.274 6.129 46.258 6.119 46.232 6.014 46.216 5.908 46.216 5.899 46.250 5.929 46.258 5.920 46.325 6.024 46.401 6.054 46.486 6.032 46.502 5.999 46.510 6.020 46.534 6.009 46.619 6.081 46.627 6.091 46.712 6.140 46.770 6.246 46.778 6.275 46.793 6.294 46.886 6.364 46.920 6.383 46.962 6.372 47.037 6.477 47.113 6.634 47.128 6.614 47.196 6.720 47.222 6.771 47.307 6.876 47.364 6.927 47.406 6.979 47.406 6.969 47.414 6.861 47.499 6.902 47.551 6.901 47.551 6.921 47.559 6.921 47.559 7.060 47.551 7.060 47.483 7.168 47.491 7.241 47.491 7.302 47.507 7.335 47.515 7.354 47.557 7.406 47.632 7.467 47.632 7.500 47.640 7.499 47.664 7.489 47.749 7.426 47.816 7.444 47.866 7.453 48.036 7.535 48.044 7.525 48.070 7.505 48.086 7.485 48.154 7.483 48.203 7.513 48.262 7.564 48.347 7.605 48.389 7.657 48.465 7.656 48.532 7.688 48.607 7.707 48.631 7.707 48.716 7.800 48.784 7.918 48.877 8.011 48.962 8.073 48.996 8.126 49.004 8.082 49.004 8.073 49.020 7.987 49.051 7.879 49.067 7.846 49.067 7.557 49.109 7.503 49.158 7.394 49.184 7.384 49.192 7.275 49.143 7.181 49.150 7.062 49.135 6.954 49.210 6.923 49.226 6.860 49.234 6.849 49.242 6.839 49.174 6.733 49.242 6.623 49.291 6.569 49.377 6.504 49.462 6.406 49.478 6.298 49.478 6.278 49.519 6.168 49.519 6.115 49.486 6.041 49.486 6.021 49.470 5.913 49.511 5.868 49.527 5.759 49.551 5.749 49.551 5.729 49.559 5.729 49.559 5.708 49.551 5.646 49.559 5.625 49.543 5.517 49.519 5.409 49.543 5.399 49.636 5.323 49.636 5.313 49.712 5.202 49.727 5.093 49.777 5.005 49.801 4.932 49.809 4.888 49.824 4.802 49.910 4.819 50.003 4.763 50.064 4.771 50.151 4.777 50.167 4.767 50.167 4.757 50.151 4.737 50.090 4.631 50.003 4.614 49.995 4.571 49.961 4.464 49.946 4.369 49.969 4.271 49.961 4.153 49.969 4.132 49.977 4.122 49.977 4.089 50.001 4.099 50.036 4.097 50.123 4.146 50.217 4.112 50.304 4.064 50.355 3.999 50.347 3.923 50.331 3.861 50.331 3.850 50.355 3.740 50.323 3.633 50.410 3.619 50.434 3.617 50.460 3.606 50.494 3.571 50.494 3.518 50.503 3.508 50.511 3.388 50.511 3.278 50.597 3.231 50.624 3.209 50.711 3.195 50.727 3.163 50.743 3.142 50.760 3.141 50.784 3.119 50.792 3.076 50.776 3.056 50.768 2.990 50.768 2.970 50.699 2.865 50.707 2.831 50.715 2.820 50.774 2.708 50.816 2.586 50.903 2.571 50.964 2.578 51.059 2.519 51.083 2.507 51.075 2.474 51.051 2.366 51.051 2.257 51.025 2.149 51.008 2.040 50.992 1.932 50.976 1.813 50.960 1.750 50.901 1.634 50.814 1.564 50.727 1.539 50.640 1.544 50.545 1.571 50.458 1.543 50.371 1.569 50.363 1.516 50.268 1.512 50.181 1.614 50.208 1.549 50.157 1.444 50.062 1.341 50.001 1.226 49.985 1.217 49.951 1.110 49.926 1.003 49.910 0.885 49.884 0.778 49.876 0.670 49.860 0.562 49.811 0.446 49.777 0.340 49.743 0.234 49.668 0.130 49.583 0.073 49.497 0.088 49.474 0.208 49.465 0.317 49.491 0.424 49.500 0.463 49.484 0.434 49.458 0.373 49.442 0.266 49.434 0.158 49.382 0.053 49.351 -0.031 49.335 -0.063 49.319 -0.170 49.311 -0.278 49.343 -0.387 49.359 -0.497 49.367 -0.606 49.367 -0.714 49.375 -0.823 49.401 -0.943 49.408 -1.052 49.359 -1.157 49.367 -1.177 49.452 -1.227 49.537 -1.318 49.622 -1.259 49.708 -1.331 49.716 -1.440 49.674 -1.545 49.666 -1.641 49.699 -1.739 49.723 -1.860 49.740 -1.970 49.646 -1.876 49.561 -1.900 49.476 -1.853 49.390 -1.837 49.315 -1.712 49.248 -1.599 49.163 -1.603 49.069 -1.628 48.984 -1.589 48.899 -1.603 48.813 -1.586 48.798 -1.595 48.704 -1.513 48.663 -1.402 48.655 -1.510 48.663 -1.618 48.655 -1.637 48.639 -1.744 48.639 -1.852 48.725 -1.911 48.691 -2.016 48.605 -2.009 48.564 -1.986 48.555 -1.975 48.540 -2.007 48.599 -2.031 48.657 -2.056 48.649 -2.163 48.641 -2.162 48.633 -2.247 48.718 -2.339 48.684 -2.399 48.651 -2.504 48.601 -2.608 48.542 -2.721 48.627 -2.835 48.712 -2.905 48.798 -3.008 48.813 -3.127 48.899 -3.124 48.899 -3.232 48.865 -3.347 48.849 -3.454 48.849 -3.562 48.764 -3.564 48.722 -3.668 48.730 -3.721 48.754 -3.831 48.712 -3.936 48.746 -4.046 48.722 -4.152 48.681 -4.266 48.704 -4.376 48.663 -4.480 48.629 -4.585 48.605 -4.690 48.546 -4.802 48.452 -4.813 48.367 -4.775 48.367 -4.743 48.375 -4.636 48.409 -4.532 48.435 -4.426 48.427 -4.395 48.367 -4.430 48.351 -4.321 48.336 -4.202 48.336 -4.310 48.320 -4.426 48.336 -4.535 48.320 -4.640 48.235 -4.548 48.268 -4.433 48.227 -4.322 48.141 -4.314 48.149 -4.422 48.133 -4.538 48.118 -4.644 48.084 -4.748 ; #2227 4 5.347 97.544 5.331 97.515 5.291 97.409 5.258 97.313 5.258 97.218 5.341 97.140 5.367 97.038 5.359 96.943 5.367 96.849 5.326 96.752 5.310 96.648 5.310 96.459 5.343 96.357 5.359 96.264 5.374 96.170 5.440 96.070 5.514 95.980 5.597 95.949 5.638 95.848 5.721 95.663 5.697 95.568 5.746 95.467 5.690 95.370 5.664 95.274 5.574 95.278 5.490 95.310 5.407 95.269 5.324 95.310 5.241 95.352 5.150 95.384 5.067 95.417 4.983 95.459 4.893 95.503 4.809 95.565 4.726 95.657 4.653 95.750 4.562 95.831 4.479 95.924 4.395 95.987 4.312 96.080 4.238 96.173 4.198 96.266 4.115 96.348 4.031 96.403 3.941 96.465 3.858 96.565 3.842 96.660 3.858 96.754 3.842 96.857 3.776 96.950 3.685 97.005 3.602 97.097 3.519 97.131 3.436 97.185 3.345 97.247 3.289 97.349 3.205 97.364 3.115 97.408 3.032 97.481 3.000 97.584 2.927 97.676 2.836 97.703 2.753 97.709 2.670 97.707 2.586 97.714 2.504 97.729 2.412 97.791 2.372 97.884 2.380 97.979 2.339 98.072 2.298 98.155 2.233 98.248 2.150 98.320 2.116 98.413 2.093 98.516 2.020 98.609 1.937 98.670 1.853 98.734 1.821 98.828 1.737 98.861 1.654 98.764 1.571 98.819 1.488 98.872 1.405 98.887 1.314 98.914 1.230 98.949 1.147 98.973 1.064 99.000 0.973 99.007 0.890 99.068 0.807 99.075 0.716 99.127 0.633 99.143 0.542 99.158 0.459 99.147 0.376 99.163 0.335 99.245 0.360 99.349 0.286 99.442 0.261 99.535 0.213 99.628 0.130 99.710 0.039 99.771 -0.044 99.753 -0.128 99.811 -0.211 99.850 -0.294 99.955 -0.335 100.002 -0.418 100.079 -0.501 100.127 -0.584 100.204 -0.667 100.289 -0.751 100.346 -0.841 100.357 -0.924 100.425 -1.008 100.370 -1.099 100.447 -1.182 100.524 -1.265 100.590 -1.348 100.601 -1.439 100.649 -1.522 100.689 -1.605 100.745 -1.689 100.793 -1.780 100.862 -1.863 100.890 -1.954 100.884 -2.037 100.840 -2.120 100.888 -2.203 100.927 -2.286 100.985 -2.352 101.023 -2.436 101.089 -2.519 101.186 -2.559 101.290 -2.650 101.350 -2.734 101.398 -2.817 101.435 -2.907 101.475 -2.991 101.532 -3.074 101.591 -3.157 101.688 -3.231 101.784 -3.296 101.880 -3.362 101.985 -3.418 102.081 -3.484 102.177 -3.567 102.234 -3.650 102.245 -3.741 102.294 -3.825 102.278 -3.908 102.374 -3.981 102.480 -4.047 102.576 -4.120 102.672 -4.204 102.769 -4.295 102.866 -4.368 102.962 -4.418 103.058 -4.492 103.163 -4.658 103.356 -4.717 103.452 -4.765 103.548 -4.765 103.577 -4.805 103.672 -4.888 103.758 -4.962 103.854 -5.053 103.858 -5.101 103.956 -5.185 103.978 -5.275 104.059 -5.349 104.157 -5.422 104.256 -5.479 104.251 -5.486 104.260 -5.552 104.368 -5.635 104.436 -5.719 104.525 -5.744 104.518 -5.767 104.546 -5.774 104.641 -5.684 104.653 -5.517 104.568 -5.426 104.508 -5.343 104.503 -5.336 104.605 -5.409 104.704 -5.465 104.802 -5.531 104.901 -5.571 104.998 -5.627 105.095 -5.544 105.174 -5.454 105.151 -5.370 105.209 -5.287 105.213 -5.370 105.313 -5.454 105.384 -5.510 105.491 -5.593 105.542 -5.651 105.640 -5.667 105.735 -5.583 105.757 -5.500 105.769 -5.417 105.790 -5.326 105.776 -5.243 105.780 -5.159 105.783 -5.076 105.813 -4.986 105.799 -4.902 105.806 -4.819 105.833 -4.736 105.848 -4.645 105.819 -4.562 105.834 -4.478 105.850 -4.395 105.856 -4.305 105.863 -4.221 105.814 -4.138 105.774 -4.047 105.772 -3.991 105.788 -3.908 105.813 -3.825 105.848 -3.734 105.900 -3.650 105.915 -3.592 105.810 -3.501 105.781 -3.418 105.817 -3.335 105.832 -3.244 105.867 -3.161 105.939 -3.095 106.032 -2.929 106.028 -2.838 106.008 -2.798 105.912 -2.772 105.817 -2.689 105.760 -2.606 105.766 -2.515 105.681 -2.432 105.595 -2.341 105.583 -2.258 105.610 -2.242 105.507 -2.227 105.412 -2.219 105.317 -2.186 105.213 -2.219 105.119 -2.211 105.025 -2.219 105.016 -2.178 104.921 -2.219 104.904 -2.211 104.895 -2.128 104.855 -2.211 104.792 -2.294 104.748 -2.385 104.733 -2.469 104.660 -2.534 104.559 -2.451 104.623 -2.426 104.668 -2.343 104.701 -2.260 104.708 -2.234 104.604 -2.211 104.620 -2.186 104.723 -2.103 104.796 -2.019 104.849 -1.936 104.846 -1.853 104.789 -1.861 104.695 -1.853 104.600 -1.762 104.607 -1.706 104.511 -1.582 104.508 -1.499 104.468 -1.408 104.428 -1.325 104.417 -1.234 104.424 -1.151 104.404 -1.068 104.364 -0.977 104.379 -0.894 104.351 -0.894 104.257 -0.926 104.163 -0.878 104.059 -0.853 103.964 -0.845 103.869 -0.901 103.776 -0.828 103.680 -0.772 103.584 -0.681 103.498 -0.673 103.404 -0.600 103.393 -0.516 103.345 -0.433 103.369 -0.350 103.330 -0.309 103.329 -0.365 103.424 -0.333 103.526 -0.242 103.467 -0.234 103.373 -0.219 103.298 -0.194 103.391 -0.102 103.443 -0.102 103.349 -0.118 103.255 -0.077 103.357 0.006 103.439 0.079 103.535 0.120 103.630 0.128 103.734 0.135 103.763 0.143 103.763 0.201 103.747 0.383 103.716 0.466 103.635 0.523 103.543 0.605 103.450 0.664 103.357 0.639 103.262 0.590 103.167 0.524 103.071 0.468 102.966 0.402 102.870 0.395 102.775 0.362 102.680 0.331 102.585 0.323 102.490 0.397 102.389 0.364 102.472 0.356 102.566 0.397 102.661 0.445 102.757 0.485 102.861 0.544 102.957 0.600 103.053 0.691 103.020 0.774 102.956 0.857 102.864 0.865 102.770 0.880 102.676 0.865 102.581 0.880 102.478 0.946 102.386 1.037 102.314 1.103 102.221 1.186 102.177 1.269 102.179 1.360 102.146 1.368 102.146 1.451 102.140 1.542 102.059 1.608 101.958 1.681 101.865 1.772 101.773 1.803 101.679 1.780 101.575 1.813 101.482 1.861 101.389 1.944 101.354 2.028 101.329 2.111 101.322 2.194 101.268 2.267 101.175 2.323 101.082 2.407 101.001 2.414 100.906 2.374 100.811 2.291 100.791 2.200 100.844 2.116 100.899 2.033 100.923 1.943 100.938 2.008 100.883 2.091 100.868 2.174 100.775 2.240 100.674 2.265 100.580 2.331 100.487 2.422 100.406 2.588 100.336 2.672 100.311 2.737 100.258 2.829 100.166 2.737 100.117 2.654 100.133 2.670 100.105 2.753 100.081 2.844 99.999 2.803 99.998 2.753 100.006 2.827 99.962 2.910 99.993 2.993 99.995 3.084 99.959 3.124 99.857 3.149 99.858 3.233 99.785 3.316 99.704 3.341 99.610 3.407 99.518 3.490 99.445 3.538 99.352 3.621 99.259 3.687 99.166 3.743 99.073 3.776 98.980 3.802 98.877 3.850 98.784 3.933 98.702 4.024 98.676 4.057 98.582 4.131 98.481 4.186 98.388 4.194 98.294 4.285 98.221 4.368 98.252 4.451 98.272 4.535 98.256 4.608 98.164 4.633 98.070 4.716 97.997 4.808 97.964 4.891 97.948 4.974 97.904 5.032 97.812 5.115 97.722 5.188 97.632 5.272 97.573 5.355 97.483 ; #2228 4 2.150 97.418 2.157 97.418 2.240 97.402 2.323 97.330 2.291 97.235 2.233 97.328 2.150 97.420 ; #2229 4 -2.273 99.928 -2.265 99.928 -2.182 99.889 -2.099 99.823 -2.016 99.783 -1.925 99.718 -1.948 99.624 -2.031 99.617 -2.115 99.645 -2.173 99.741 -2.221 99.837 -2.269 99.933 ; #2230 4 -3.229 100.527 -3.221 100.545 -3.138 100.497 -3.055 100.449 -2.964 100.540 -2.881 100.501 -2.798 100.435 -2.706 100.349 -2.722 100.255 -2.805 100.275 -2.896 100.278 -2.979 100.374 -3.062 100.405 -3.146 100.444 -3.229 100.530 ; #2231 4 1.234 104.221 1.285 104.195 1.285 104.100 1.202 104.023 1.110 104.021 1.087 104.115 1.153 104.211 1.236 104.221 ; #2232 4 -6.427 105.322 -6.419 105.313 -6.493 105.223 -6.508 105.319 -6.425 105.322 ; #2233 4 -2.720 107.561 -2.803 107.546 -2.788 107.451 -2.722 107.544 -2.722 107.561 ; #2234 4 -7.980 114.545 -8.063 114.524 -8.146 114.565 -8.237 114.628 -8.286 114.735 -8.293 114.830 -8.326 114.927 -8.375 115.025 -8.458 115.125 -8.549 115.215 -8.632 115.238 -8.705 115.149 -8.731 115.159 -8.731 115.263 -8.639 115.294 -8.557 115.335 -8.483 115.425 -8.450 115.526 -8.392 115.616 -8.351 115.708 -8.261 115.777 -8.177 115.677 -8.094 115.616 -8.038 115.509 -7.998 115.411 -7.964 115.305 -7.957 115.210 -8.040 115.121 -8.073 115.029 -8.081 114.935 -8.065 114.830 -8.024 114.733 -8.024 114.638 -7.984 114.541 ; #2235 4 3.529 117.638 3.529 117.733 3.438 117.759 3.354 117.756 3.412 117.655 3.496 117.622 3.529 117.641 ; #2236 4 -8.166 123.477 -8.166 123.532 -8.173 123.627 -8.265 123.616 -8.199 123.706 -8.116 123.718 -8.108 123.820 -8.100 123.915 -8.158 124.014 -8.181 123.921 -8.229 123.829 -8.303 123.732 -8.377 123.642 -8.460 123.639 -8.427 123.542 -8.468 123.450 -8.444 123.354 -8.361 123.357 -8.288 123.455 -8.247 123.547 -8.164 123.477 ; #2237 4 -1.101 123.402 -1.184 123.387 -1.101 123.367 -1.101 123.404 ; #2238 4 4.076 126.840 4.092 126.866 4.175 126.898 4.266 126.910 4.349 126.987 4.432 126.952 4.523 126.946 4.606 126.903 4.581 126.799 4.498 126.779 4.415 126.785 4.324 126.876 4.240 126.836 4.157 126.770 4.074 126.842 ; #2239 4 -8.056 127.742 -8.129 127.748 -8.073 127.838 -8.058 127.742 ; #2240 4 2.389 128.236 2.389 128.273 2.472 128.250 2.389 128.238 ; #2241 4 -3.411 128.533 -3.426 128.505 -3.509 128.526 -3.443 128.627 -3.411 128.531 ; #2242 4 -1.043 129.965 -1.043 129.956 -1.108 129.864 -1.124 129.959 -1.041 129.965 ; #2243 4 -8.239 130.850 -8.199 130.950 -8.133 131.040 -8.100 131.140 -8.084 131.168 -8.069 131.184 -8.028 131.256 -8.044 131.174 -8.019 131.077 -8.110 131.000 -8.160 130.909 -8.243 130.852 ; #2244 4 -1.648 134.351 -1.648 134.314 -1.731 134.271 -1.822 134.292 -1.731 134.306 -1.648 134.349 ; #2245 4 -1.915 134.512 -1.915 134.466 -1.998 134.496 -1.915 134.510 ; #2246 4 4.262 117.766 4.229 117.811 4.146 117.903 4.146 117.998 4.161 117.998 4.227 117.991 4.268 117.984 4.268 117.861 4.260 117.766 ; #2247 4 -20.589 166.554 -20.506 166.606 -20.416 166.617 -20.332 166.649 -20.416 166.636 -20.506 166.662 -20.572 166.585 -20.587 166.552 ; #2248 4 16.361 -61.616 16.287 -61.552 16.303 -61.458 16.318 -61.355 16.343 -61.262 16.399 -61.364 16.490 -61.470 16.574 -61.506 16.533 -61.597 16.450 -61.561 16.359 -61.616 ; #2249 4 15.349 42.649 15.318 42.657 15.318 42.761 15.268 42.854 15.184 42.904 15.111 42.919 15.020 42.971 14.854 42.983 14.770 43.026 14.687 43.041 14.596 43.047 14.513 43.035 14.430 43.079 14.339 43.104 14.256 43.119 14.173 43.116 14.089 43.130 14.016 43.232 13.925 43.266 13.842 43.301 13.751 43.306 13.668 43.303 13.577 43.282 13.494 43.279 13.403 43.258 13.395 43.258 13.312 43.293 13.221 43.345 13.138 43.397 13.054 43.432 12.971 43.493 12.888 43.507 12.805 43.487 12.805 43.553 12.861 43.650 12.838 43.744 12.805 43.838 12.757 43.931 12.724 44.034 12.749 44.130 12.764 44.225 12.757 44.320 12.797 44.426 12.881 44.524 12.937 44.621 12.913 44.725 12.888 44.819 12.847 44.921 12.913 44.923 12.944 45.020 12.969 45.030 12.962 45.047 12.913 45.027 12.888 45.027 12.971 45.094 13.062 45.126 13.128 45.224 13.151 45.320 13.176 45.416 13.259 45.494 13.343 45.555 13.426 45.642 13.492 45.835 13.507 45.939 13.515 46.035 13.515 46.130 13.530 46.226 13.530 46.425 13.523 46.520 13.548 46.616 13.540 46.720 13.581 46.817 13.629 46.914 13.645 46.952 13.670 47.057 13.695 47.153 13.710 47.249 13.743 47.345 13.776 47.450 13.859 47.538 13.950 47.626 14.016 47.733 14.041 47.829 14.074 47.886 14.147 47.984 14.147 48.080 14.115 48.173 14.089 48.276 14.115 48.372 14.115 48.468 14.147 48.573 14.147 48.669 14.204 48.766 14.287 48.873 14.370 48.941 14.453 49.011 14.536 49.033 14.561 49.051 14.635 49.150 14.685 49.256 14.734 49.354 14.766 49.450 14.815 49.548 14.848 49.653 14.879 49.750 14.894 49.845 14.935 49.952 14.935 49.998 14.910 50.044 14.935 50.140 14.975 50.237 15.009 50.343 15.091 50.443 15.132 50.541 15.148 50.637 15.163 50.743 15.188 50.840 15.214 50.945 15.229 51.042 15.254 51.139 15.254 51.148 15.278 51.245 15.318 51.343 15.343 51.440 15.399 51.547 15.407 51.643 15.490 51.695 15.531 51.793 15.589 51.892 15.622 51.990 15.662 52.097 15.686 52.194 15.769 52.229 15.809 52.222 15.893 52.219 15.976 52.189 16.067 52.166 16.150 52.210 16.241 52.233 16.307 52.275 16.390 52.366 16.481 52.467 16.538 52.575 16.562 52.672 16.628 52.868 16.684 52.976 16.699 53.073 16.699 53.091 16.747 53.199 16.755 53.132 17.353 52.821 17.361 52.758 17.369 52.749 17.409 52.790 19.013 52.058 19.061 52.043 19.053 51.996 18.829 51.015 18.607 50.016 18.566 49.812 18.500 49.512 18.384 49.019 18.336 48.786 18.046 48.521 17.498 48.021 17.067 47.623 16.958 47.522 16.827 47.400 16.570 47.165 16.421 47.023 16.072 46.698 15.873 46.516 15.691 46.355 16.074 46.359 16.572 46.359 16.738 46.359 16.869 46.024 17.069 45.531 17.266 45.026 17.465 44.532 17.465 44.523 17.490 44.429 17.475 44.324 17.467 44.227 17.419 44.129 17.434 44.034 17.434 43.939 17.419 43.842 17.460 43.739 17.543 43.668 17.576 43.574 17.599 43.480 17.550 43.381 17.550 43.373 17.467 43.273 17.384 43.268 17.301 43.228 17.217 43.195 17.127 43.190 17.044 43.177 16.953 43.181 16.869 43.261 16.779 43.227 16.753 43.131 16.670 43.109 16.622 43.097 16.581 43.028 16.498 42.948 16.457 42.851 16.457 42.822 16.367 42.835 16.283 42.848 16.200 42.862 16.109 42.866 16.026 42.862 15.943 42.840 15.852 42.770 15.769 42.748 15.678 42.753 15.595 42.786 15.511 42.799 15.421 42.830 15.338 42.826 15.378 42.733 15.320 42.634 ; #2250 5 29.256 -118.407 29.183 -118.480 29.092 -118.448 29.001 -118.368 29.084 -118.358 29.175 -118.417 29.258 -118.408 ; #2251 5 -13.298 48.356 -13.275 48.251 -13.184 48.221 -13.101 48.281 -13.192 48.360 -13.275 48.381 -13.298 48.354 ; #2252 5 57.541 -7.267 57.595 -7.391 57.604 -7.508 57.693 -7.501 57.702 -7.386 57.718 -7.262 57.693 -7.143 57.604 -7.164 57.604 -7.280 57.541 -7.270 ; #2253 5 56.477 -6.924 56.566 -6.881 56.566 -6.767 56.523 -6.875 56.479 -6.924 ; #2254 5 55.602 -6.289 55.700 -6.269 55.789 -6.292 55.753 -6.401 55.702 -6.518 55.799 -6.477 55.888 -6.468 55.924 -6.359 55.932 -6.236 55.843 -6.123 55.753 -6.054 55.664 -6.156 55.620 -6.263 55.604 -6.295 ; #2255 5 57.057 -6.032 57.154 -6.024 57.207 -5.906 57.223 -6.023 57.172 -6.131 57.207 -6.252 57.223 -6.379 57.313 -6.484 57.340 -6.372 57.392 -6.495 57.367 -6.607 57.400 -6.728 57.489 -6.752 57.473 -6.634 57.562 -6.625 57.554 -6.508 57.537 -6.390 57.627 -6.393 57.716 -6.371 57.664 -6.248 57.574 -6.178 57.485 -6.165 57.396 -6.163 57.325 -6.038 57.282 -5.916 57.306 -5.805 57.306 -5.748 57.217 -5.746 57.076 -5.957 57.059 -6.035 ; #2256 5 56.310 -6.256 56.363 -6.184 56.390 -6.062 56.390 -6.188 56.479 -6.099 56.550 -6.223 56.566 -6.340 56.656 -6.252 56.672 -6.140 56.594 -6.014 56.550 -5.893 56.516 -5.763 56.419 -5.694 56.402 -5.806 56.386 -5.929 56.342 -6.037 56.325 -6.149 56.317 -6.262 ; #2257 5 54.091 -4.805 54.178 -4.750 54.265 -4.682 54.352 -4.592 54.420 -4.488 54.333 -4.355 54.246 -4.424 54.159 -4.513 54.117 -4.620 54.109 -4.732 54.093 -4.805 ; #2258 5 59.209 -2.702 59.306 -2.621 59.315 -2.493 59.262 -2.616 59.211 -2.703 ; #2259 5 19.849 -87.552 19.932 -87.518 19.947 -87.521 19.899 -87.539 19.849 -87.550 ; #2260 5 -10.803 -69.566 -10.893 -69.519 -11.143 -69.371 -11.226 -69.312 -11.890 -68.914 -11.981 -68.866 -12.064 -68.827 -12.155 -68.788 -12.238 -68.749 -12.329 -68.702 -12.352 -68.686 -12.352 -68.704 -12.436 -68.758 -12.519 -68.747 -12.584 -68.847 -12.667 -68.939 -12.751 -68.983 -12.842 -68.991 -12.874 -68.976 -12.965 -68.984 -13.049 -68.982 -13.132 -68.972 -13.223 -68.980 -13.306 -68.978 -13.389 -68.986 -13.472 -69.019 -13.555 -69.064 -13.646 -69.025 -13.730 -68.994 -13.813 -68.984 -13.904 -68.897 -13.987 -68.877 -14.070 -68.960 -14.153 -69.013 -14.236 -69.003 -14.310 -69.105 -14.393 -69.158 -14.477 -69.249 -14.560 -69.239 -14.616 -69.339 -14.706 -69.356 -14.790 -69.381 -14.838 -69.347 -14.921 -69.288 -14.995 -69.190 -15.078 -69.134 -15.152 -69.238 -15.243 -69.268 -15.316 -69.332 -15.357 -69.355 -15.448 -69.413 -15.531 -69.385 -15.622 -69.350 -15.713 -69.315 -15.743 -69.310 -15.827 -69.274 -15.918 -69.239 -16.001 -69.202 -16.049 -69.104 -16.057 -69.078 -16.032 -68.980 -16.040 -68.963 -16.105 -68.876 -16.189 -68.869 -16.229 -68.969 -16.320 -69.045 -16.386 -69.044 -16.401 -69.046 -16.467 -69.017 -16.533 -69.120 -16.624 -69.216 -16.707 -69.293 -16.790 -69.350 -16.873 -69.398 -16.922 -69.500 -17.005 -69.615 -17.088 -69.652 -17.103 -69.663 -17.136 -69.572 -17.202 -69.516 -17.285 -69.508 -17.318 -69.512 -17.349 -69.507 -17.415 -69.506 -17.498 -69.433 -17.589 -69.348 -17.672 -69.332 -17.763 -69.326 -17.804 -69.226 -17.837 -69.134 -17.844 -69.088 -17.927 -69.155 -18.011 -69.127 -18.084 -69.099 -18.175 -69.092 -18.258 -69.047 -18.349 -69.049 -18.390 -69.046 -18.481 -69.030 -18.564 -69.002 -18.655 -68.967 -18.746 -68.997 -18.829 -68.931 -18.854 -68.925 -18.903 -68.835 -18.986 -68.741 -19.069 -68.666 -19.110 -68.576 -19.183 -68.489 -19.266 -68.508 -19.357 -68.576 -19.365 -68.577 -19.448 -68.634 -19.532 -68.700 -19.605 -68.613 -19.630 -68.560 -19.713 -68.524 -19.796 -68.552 -19.852 -68.577 -19.860 -68.674 -19.901 -68.784 -19.992 -68.710 -20.083 -68.686 -20.181 -68.756 -20.264 -68.721 -20.320 -68.625 -20.371 -68.536 -20.454 -68.501 -20.545 -68.562 -20.628 -68.565 -20.711 -68.530 -20.727 -68.477 -20.775 -68.388 -20.866 -68.336 -20.949 -68.281 -20.990 -68.249 -21.005 -68.242 -21.013 -68.234 -21.079 -68.197 -21.246 -68.204 -21.336 -68.199 -21.419 -68.173 -21.511 -68.131 -21.594 -68.104 -21.677 -68.108 -21.760 -68.082 -21.843 -67.989 -21.927 -67.983 -22.017 -67.940 -22.100 -67.970 -22.184 -67.927 -22.275 -67.902 -22.358 -67.876 -22.441 -67.897 -22.532 -67.902 -22.623 -67.868 -22.656 -67.767 -22.671 -67.655 -22.663 -67.557 -22.648 -67.440 -22.623 -67.322 -22.598 -67.213 -22.514 -67.162 -22.431 -67.054 -22.333 -67.049 -22.249 -66.931 -22.209 -66.820 -22.135 -66.791 -22.052 -66.780 -21.996 -66.666 -21.948 -66.545 -21.915 -66.443 -21.899 -66.376 -21.816 -66.326 -21.566 -66.263 -21.599 -66.163 -21.690 -66.080 -21.716 -65.969 -21.806 -65.896 -21.889 -65.803 -21.889 -65.707 -21.882 -65.638 -21.874 -65.628 -21.882 -65.533 -21.882 -65.235 -21.874 -65.119 -21.874 -65.043 -21.907 -64.951 -21.923 -64.848 -21.963 -64.758 -21.955 -64.718 -22.004 -64.620 -22.094 -64.594 -22.261 -64.541 -22.352 -64.478 -22.435 -64.490 -22.460 -64.464 -22.493 -64.451 -22.584 -64.407 -22.650 -64.378 -22.650 -64.369 -22.642 -64.368 -22.551 -64.346 -22.468 -64.334 -22.377 -64.313 -22.294 -64.275 -22.211 -64.196 -22.120 -64.174 -22.036 -64.133 -21.953 -64.074 -21.863 -64.044 -21.779 -63.927 -21.835 -63.791 -21.827 -63.781 -21.820 -63.780 -21.805 -63.749 -21.789 -63.717 -21.789 -63.448 -21.781 -63.333 -21.781 -62.873 -21.872 -62.857 -21.955 -62.783 -22.021 -62.707 -21.938 -62.677 -21.855 -62.657 -21.764 -62.627 -21.681 -62.597 -21.598 -62.568 -21.514 -62.548 -21.474 -62.534 -21.466 -62.533 -21.383 -62.504 -21.292 -62.473 -21.208 -62.453 -21.042 -62.394 -20.959 -62.374 -20.876 -62.345 -20.785 -62.332 -20.702 -62.339 -20.611 -62.336 -20.527 -62.333 -20.444 -62.340 -20.354 -62.337 -20.346 -62.336 -20.263 -62.277 -20.263 -62.268 -20.179 -62.210 -20.089 -62.151 -20.005 -62.084 -19.922 -62.027 -19.874 -61.993 -19.866 -61.983 -19.793 -61.957 -19.701 -61.928 -19.618 -61.892 -19.535 -61.865 -19.452 -61.837 -19.421 -61.720 -19.406 -61.613 -19.390 -61.507 -19.375 -61.391 -19.359 -61.285 -19.334 -61.177 -19.319 -61.079 -19.303 -60.964 -19.287 -60.857 -19.272 -60.750 -19.265 -60.711 -19.231 -60.603 -19.206 -60.487 -19.173 -60.378 -19.150 -60.270 -19.125 -60.163 -19.110 -60.103 -19.102 -60.037 -19.102 -59.446 -19.094 -59.303 -19.094 -59.178 -19.102 -59.161 -19.241 -58.926 -19.274 -58.874 -19.330 -58.766 -19.413 -58.624 -19.496 -58.478 -19.628 -58.265 -19.711 -58.265 -19.802 -58.239 -19.893 -58.240 -19.967 -58.266 -19.916 -58.185 -19.843 -58.081 -19.802 -57.980 -19.777 -57.959 -19.761 -57.976 -19.688 -58.073 -19.605 -58.160 -19.514 -58.217 -19.431 -58.179 -19.340 -58.131 -19.257 -58.095 -19.173 -58.058 -19.082 -58.010 -18.999 -57.974 -18.908 -57.926 -18.825 -57.832 -18.792 -57.838 -18.719 -57.848 -18.711 -57.894 -18.620 -57.866 -18.454 -57.813 -18.371 -57.786 -18.280 -57.767 -18.189 -57.729 -18.098 -57.701 -18.015 -57.654 -17.949 -57.703 -17.858 -57.731 -17.817 -57.765 -17.719 -57.818 -17.636 -57.819 -17.545 -57.856 -17.537 -57.863 -17.453 -57.910 -17.396 -57.886 -17.380 -57.911 -17.306 -58.008 -17.291 -58.015 -17.324 -58.123 -17.308 -58.159 -17.225 -58.255 -17.169 -58.344 -17.121 -58.444 -17.037 -58.530 -16.947 -58.538 -16.848 -58.557 -16.765 -58.577 -16.583 -58.592 -16.500 -58.601 -16.434 -58.565 -16.351 -58.481 -16.268 -58.481 -16.185 -58.443 -16.136 -58.446 -16.151 -58.543 -16.159 -58.639 -16.151 -58.697 -16.151 -58.801 -16.144 -58.895 -16.144 -59.095 -16.136 -59.094 -16.136 -59.303 -16.129 -59.398 -16.129 -59.502 -16.121 -59.548 -16.121 -59.652 -16.113 -59.747 -16.113 -59.916 -16.105 -60.010 -16.105 -60.115 -16.097 -60.178 -16.040 -60.276 -15.948 -60.284 -15.850 -60.291 -15.751 -60.297 -15.660 -60.296 -15.562 -60.303 -15.470 -60.310 -15.372 -60.318 -15.281 -60.354 -15.190 -60.428 -15.107 -60.503 -15.024 -60.578 -14.941 -60.588 -14.933 -60.464 -14.933 -60.340 -14.842 -60.350 -14.759 -60.353 -14.620 -60.360 -14.503 -60.369 -14.387 -60.435 -14.372 -60.425 -14.281 -60.465 -14.198 -60.487 -14.107 -60.545 -14.024 -60.567 -13.933 -60.542 -13.850 -60.489 -13.784 -60.513 -13.700 -60.562 -13.635 -60.652 -13.594 -60.744 -13.538 -60.835 -13.505 -60.927 -13.457 -61.019 -13.399 -61.109 -13.343 -61.200 -13.376 -61.298 -13.360 -61.392 -13.385 -61.498 -13.410 -61.595 -13.370 -61.687 -13.370 -61.724 -13.393 -61.821 -13.401 -61.917 -13.335 -61.968 -13.252 -62.045 -13.169 -62.143 -13.085 -62.211 -12.987 -62.287 -13.002 -62.384 -13.002 -62.479 -12.929 -62.577 -12.921 -62.671 -12.838 -62.760 -12.861 -62.866 -12.805 -62.956 -12.722 -63.016 -12.665 -63.106 -12.582 -63.136 -12.499 -63.213 -12.499 -63.230 -12.565 -63.330 -12.557 -63.425 -12.501 -63.525 -12.418 -63.613 -12.368 -63.704 -12.337 -63.797 -12.329 -63.900 -12.412 -64.001 -12.404 -64.096 -12.381 -64.189 -12.356 -64.282 -12.348 -64.385 -12.340 -64.393 -12.325 -64.496 -12.285 -64.519 -12.201 -64.568 -12.118 -64.561 -12.095 -64.663 -12.062 -64.735 -11.988 -64.825 -11.905 -64.893 -11.898 -64.987 -11.872 -65.078 -11.817 -65.082 -11.791 -65.071 -11.783 -65.079 -11.700 -65.119 -11.617 -65.196 -11.602 -65.290 -11.518 -65.266 -11.435 -65.296 -11.377 -65.386 -11.294 -65.426 -11.203 -65.409 -11.120 -65.449 -11.037 -65.469 -10.953 -65.415 -10.870 -65.371 -10.779 -65.381 -10.746 -65.388 -10.690 -65.478 -10.607 -65.453 -10.516 -65.501 -10.433 -65.494 -10.367 -65.506 -10.276 -65.453 -10.236 -65.432 -10.145 -65.369 -10.062 -65.354 -9.971 -65.374 -9.888 -65.387 -9.814 -65.393 -9.731 -65.362 -9.648 -65.413 -9.574 -65.504 -9.640 -65.572 -9.723 -65.622 -9.690 -65.715 -9.667 -65.809 -9.675 -65.904 -9.667 -66.007 -9.700 -66.103 -9.684 -66.197 -9.725 -66.303 -9.733 -66.398 -9.783 -66.504 -9.783 -66.599 -9.806 -66.695 -9.847 -66.723 -9.888 -66.829 -9.913 -66.848 -9.986 -66.946 -10.152 -67.130 -10.208 -67.229 -10.201 -67.275 -10.249 -67.374 -10.274 -67.479 -10.358 -67.561 -10.406 -67.660 -10.489 -67.731 -10.580 -67.757 -10.588 -67.783 -10.547 -67.875 -10.547 -67.969 -10.539 -68.064 -10.613 -68.174 -10.696 -68.218 -10.779 -68.272 -10.870 -68.344 -10.886 -68.440 -10.927 -68.538 -10.985 -68.638 -11.008 -68.734 -10.977 -68.827 -10.893 -68.802 -10.868 -68.838 -10.893 -68.935 -10.878 -69.037 -10.855 -69.130 -10.847 -69.233 -10.839 -69.327 -10.816 -69.420 -10.831 -69.516 -10.831 -69.620 ; #2261 5 54.459 -8.164 54.443 -8.140 54.374 -8.018 54.340 -7.969 54.331 -7.912 54.237 -7.855 54.237 -7.743 54.244 -7.733 54.218 -7.709 54.168 -7.589 54.184 -7.479 54.176 -7.457 54.159 -7.379 54.152 -7.344 54.168 -7.357 54.184 -7.328 54.192 -7.295 54.208 -7.276 54.295 -7.189 54.346 -7.240 54.372 -7.233 54.415 -7.126 54.431 -7.006 54.362 -6.907 54.301 -6.899 54.214 -6.776 54.214 -6.697 54.127 -6.697 54.085 -6.649 54.093 -6.538 54.101 -6.427 54.101 -6.416 54.152 -6.392 54.136 -6.311 54.136 -6.290 54.101 -6.173 54.085 -6.059 54.127 -5.952 54.214 -5.908 54.275 -5.851 54.275 -5.739 54.299 -5.629 54.394 -5.596 54.402 -5.608 54.402 -5.720 54.489 -5.686 54.524 -5.690 54.566 -5.764 54.566 -5.651 54.479 -5.586 54.392 -5.586 54.425 -5.501 54.520 -5.502 54.607 -5.546 54.694 -5.612 54.694 -5.811 54.651 -5.919 54.667 -5.955 54.702 -5.925 54.736 -5.840 54.786 -5.733 54.829 -5.739 54.837 -5.853 54.924 -5.906 55.011 -6.017 55.072 -6.025 55.126 -6.077 55.215 -6.111 55.223 -6.225 55.240 -6.351 55.248 -6.466 55.232 -6.577 55.223 -6.665 55.188 -6.773 55.180 -6.871 55.180 -6.882 55.205 -6.999 55.161 -7.003 55.072 -7.069 55.064 -7.181 55.064 -7.280 55.080 -7.283 55.080 -7.294 55.044 -7.401 55.009 -7.417 54.983 -7.434 54.958 -7.441 54.871 -7.485 54.855 -7.503 54.848 -7.502 54.848 -7.513 54.823 -7.565 54.770 -7.680 54.720 -7.786 54.728 -7.900 54.641 -7.775 54.633 -7.740 54.590 -7.847 54.574 -7.866 54.558 -7.976 54.516 -8.082 54.507 -8.126 54.457 -8.163 ; #2262 5 56.248 -5.065 56.265 -5.021 56.273 -5.023 56.246 -5.065 ; #2263 5 46.188 5.953 46.188 5.963 46.205 6.069 46.230 6.174 46.246 6.184 46.321 6.234 46.355 6.223 46.413 6.241 46.446 6.347 46.488 6.462 46.496 6.568 46.496 6.675 46.446 6.782 46.439 6.782 46.353 6.793 46.268 6.776 46.183 6.807 46.098 6.915 46.089 6.915 46.056 6.957 45.971 7.011 45.929 7.127 45.945 7.233 45.961 7.339 45.984 7.444 46.026 7.550 46.018 7.560 45.992 7.666 45.961 7.772 45.961 7.836 46.036 7.941 46.121 8.011 46.181 8.117 46.230 8.126 46.315 8.074 46.349 8.179 46.424 8.285 46.492 8.358 46.407 8.443 46.321 8.414 46.228 8.521 46.187 8.573 46.137 8.667 46.137 8.677 46.145 8.697 46.145 8.729 46.052 8.769 46.026 8.769 46.010 8.822 45.951 8.886 45.875 8.886 45.860 8.992 45.885 9.002 45.971 9.031 46.046 9.001 46.054 8.991 46.062 8.981 46.155 9.055 46.214 9.126 46.272 9.209 46.357 9.261 46.450 9.250 46.536 9.250 46.544 9.290 46.536 9.396 46.450 9.428 46.375 9.471 46.334 9.587 46.359 9.693 46.393 9.703 46.409 9.809 46.409 9.915 46.323 9.957 46.323 9.967 46.266 10.073 46.351 10.093 46.437 10.123 46.478 10.006 46.571 10.016 46.656 10.091 46.673 10.197 46.587 10.291 46.579 10.398 46.579 10.417 46.664 10.437 46.750 10.375 46.835 10.386 46.910 10.428 46.926 10.418 46.968 10.438 46.976 10.438 47.033 10.331 46.966 10.225 46.890 10.118 46.883 10.076 46.934 9.969 46.942 9.959 46.966 9.843 47.059 9.833 47.075 9.726 47.091 9.609 47.091 9.557 47.098 9.473 47.091 9.431 47.176 9.463 47.202 9.443 47.287 9.485 47.303 9.495 47.388 9.559 47.396 9.569 47.446 9.611 47.479 9.611 47.529 9.517 47.562 9.527 47.579 9.484 47.628 9.367 47.669 9.260 47.686 9.142 47.686 9.090 47.701 9.057 47.693 8.950 47.677 8.843 47.703 8.758 47.719 8.684 47.761 8.683 47.769 8.693 47.785 8.653 47.818 8.546 47.769 8.429 47.684 8.400 47.667 8.453 47.693 8.560 47.686 8.570 47.610 8.538 47.626 8.528 47.642 8.528 47.600 8.465 47.592 8.394 47.608 8.277 47.632 8.204 47.632 8.194 47.600 8.088 47.574 7.971 47.608 7.863 47.574 7.757 47.566 7.704 47.583 7.597 47.590 7.607 47.624 7.637 47.608 7.574 47.600 7.564 47.600 7.533 47.525 7.471 47.483 7.420 47.475 7.400 47.459 7.368 47.459 7.306 47.452 7.234 47.519 7.126 47.527 7.125 47.527 6.986 47.519 6.986 47.519 6.966 47.467 6.967 47.382 6.927 47.374 7.034 47.374 7.044 47.332 6.992 47.275 6.941 47.190 6.836 47.164 6.784 47.097 6.679 47.081 6.699 47.006 6.542 46.930 6.437 46.888 6.448 46.855 6.429 46.761 6.360 46.746 6.340 46.738 6.310 46.680 6.205 46.595 6.155 46.587 6.146 46.502 6.074 46.478 6.084 46.470 6.065 46.454 6.097 46.369 6.119 46.293 6.089 46.226 5.984 46.218 5.995 46.185 5.963 ; #2264 5 39.518 73.912 39.435 73.918 39.352 73.903 39.260 73.896 39.177 73.973 39.103 74.054 39.020 74.110 38.995 74.001 38.903 73.984 38.820 74.018 38.736 74.065 38.721 74.060 38.655 74.110 38.614 74.209 38.663 74.325 38.746 74.430 38.731 74.527 38.731 74.639 38.697 74.731 38.674 74.826 38.641 74.918 38.608 75.019 38.552 75.114 38.468 75.129 38.402 75.069 38.319 75.064 38.228 75.065 38.137 75.088 38.096 75.177 38.005 75.181 37.921 75.165 37.865 75.250 37.781 75.216 37.690 75.180 37.624 75.262 37.609 75.297 37.543 75.388 37.459 75.373 37.376 75.268 37.327 75.186 37.312 75.071 37.378 74.989 37.337 74.876 37.288 74.760 37.205 74.726 37.131 74.806 37.123 74.832 37.157 74.952 37.116 75.041 37.100 75.107 37.009 75.160 37.083 75.262 37.091 75.365 37.057 75.466 37.034 75.560 37.009 75.653 36.926 75.687 36.842 75.693 36.858 75.799 36.866 75.810 36.858 75.918 36.825 76.010 36.776 76.096 36.693 76.172 36.635 76.204 36.551 76.259 36.495 76.272 36.404 76.245 36.320 76.269 36.237 76.205 36.153 76.189 36.102 76.284 36.072 76.375 35.988 76.409 35.915 76.487 35.915 76.588 35.971 76.705 36.004 76.825 35.920 76.819 35.837 76.882 35.796 76.980 35.755 77.068 35.707 77.142 35.691 77.238 35.676 77.334 35.635 77.422 35.643 77.533 35.594 77.619 35.586 77.717 35.586 77.827 35.571 77.923 35.612 78.035 35.612 78.066 35.604 78.092 35.596 78.159 35.662 78.280 35.670 78.382 35.753 78.476 35.819 78.584 35.877 78.703 35.893 78.797 35.959 78.927 36.033 79.050 36.000 79.140 36.008 79.173 36.023 79.246 36.048 79.364 36.048 79.465 36.056 79.486 36.082 79.594 36.040 79.682 35.957 79.723 35.949 79.780 35.949 79.820 35.866 79.861 35.782 79.905 35.742 79.992 35.676 80.082 35.701 80.190 35.617 80.222 35.610 80.219 35.526 80.251 35.567 80.374 35.633 80.495 35.617 80.539 35.559 80.600 35.543 80.605 35.453 80.508 35.369 80.500 35.278 80.480 35.194 80.394 35.047 80.396 34.989 80.388 34.965 80.382 34.882 80.300 34.857 80.293 34.766 80.203 34.774 80.146 34.766 80.086 34.683 80.046 34.642 79.948 34.559 79.975 34.526 79.929 34.534 79.843 34.511 79.758 34.453 79.774 34.369 79.792 34.286 79.740 34.196 79.708 34.147 79.677 34.139 79.566 34.139 79.466 34.147 79.368 34.132 79.255 34.066 79.139 33.983 79.176 33.917 79.208 33.894 79.242 33.869 79.254 33.828 79.252 33.745 79.250 33.752 79.153 33.669 79.161 33.662 79.169 33.629 79.170 33.613 79.166 33.530 79.175 33.447 79.221 33.414 79.313 33.358 79.407 33.350 79.424 33.350 79.433 33.317 79.524 33.302 79.629 33.218 79.608 33.135 79.595 33.052 79.632 32.969 79.699 32.878 79.754 32.795 79.743 32.779 79.729 32.696 79.629 32.671 79.596 32.648 79.491 32.648 79.472 32.597 79.360 32.507 79.328 32.491 79.225 32.524 79.134 32.580 79.040 32.663 79.012 32.754 79.017 32.762 78.952 32.706 78.859 32.706 78.850 32.714 78.752 32.673 78.643 32.632 78.663 32.549 78.721 32.466 78.709 32.375 78.714 32.367 78.731 32.294 78.820 32.211 78.887 32.185 78.899 32.129 78.984 32.046 78.982 31.980 78.956 31.972 78.954 31.950 78.939 31.866 78.949 31.783 79.036 31.700 79.015 31.617 78.985 31.534 79.001 31.443 78.996 31.435 79.102 31.468 79.210 31.551 79.240 31.551 79.348 31.543 79.376 31.460 79.442 31.377 79.469 31.361 79.505 31.278 79.532 31.247 79.611 31.232 79.626 31.176 79.710 31.102 79.790 31.127 79.895 31.135 79.996 31.110 80.097 31.036 80.157 31.013 80.208 30.955 80.281 30.955 80.389 30.864 80.443 30.733 80.410 30.725 80.495 30.684 80.592 30.651 80.682 30.636 80.786 30.595 80.874 30.537 80.958 30.471 81.048 30.439 81.138 30.365 81.218 30.282 81.263 30.198 81.281 30.174 81.382 30.232 81.465 30.315 81.544 30.315 81.553 30.413 81.588 30.505 81.602 30.497 81.728 30.580 81.807 30.557 81.918 30.541 82.031 30.526 82.135 30.510 82.217 30.396 82.286 30.313 82.342 30.239 82.421 30.206 82.511 30.174 82.610 30.117 82.712 30.034 82.807 29.951 82.895 29.878 82.998 29.870 83.094 29.837 83.186 29.764 83.279 29.796 83.383 29.705 83.463 29.657 83.540 29.566 83.589 29.510 83.635 29.427 83.705 29.344 83.805 29.344 83.832 29.427 83.947 29.442 84.057 29.467 84.169 29.434 84.220 29.394 84.310 29.310 84.341 29.227 84.423 29.137 84.404 29.103 84.406 29.055 84.504 29.007 84.602 28.916 84.670 28.891 84.781 28.850 84.871 28.785 84.955 28.736 85.053 28.777 85.159 28.777 85.177 28.817 85.293 28.719 85.359 28.635 85.276 28.545 85.285 28.529 85.282 28.506 85.375 28.465 85.494 28.473 85.593 28.481 85.702 28.440 85.801 28.531 85.879 28.440 85.917 28.367 86.027 28.283 86.096 28.210 86.129 28.195 86.144 28.111 86.145 28.096 86.228 28.179 86.293 28.278 86.266 28.361 86.349 28.270 86.360 28.187 86.479 28.138 86.567 28.131 86.672 28.156 86.705 28.255 86.734 28.305 86.852 28.221 86.932 28.214 87.038 28.148 87.151 28.133 87.255 28.042 87.313 28.042 87.420 28.067 87.550 28.018 87.588 28.042 87.700 28.034 87.826 28.026 87.842 28.042 87.961 28.100 88.080 28.092 88.185 28.069 88.308 28.160 88.309 28.167 88.409 28.183 88.510 28.214 88.614 28.272 88.724 28.279 88.832 28.264 88.927 28.198 89.011 28.108 89.028 28.024 89.039 27.941 89.022 27.850 88.994 27.767 88.946 27.684 88.938 27.600 88.979 27.585 88.994 27.529 89.079 27.595 89.112 27.678 89.130 27.744 89.250 27.800 89.280 27.891 89.329 27.974 89.374 28.057 89.490 28.057 89.499 28.148 89.567 28.231 89.623 28.272 89.679 28.363 89.786 28.370 89.885 28.454 89.989 28.494 90.105 28.520 90.149 28.520 90.159 28.512 90.255 28.496 90.328 28.481 90.423 28.456 90.515 28.372 90.525 28.289 90.507 28.274 90.610 28.274 90.776 28.281 90.876 28.249 90.976 28.249 91.074 28.183 91.157 28.175 91.173 28.175 91.182 28.183 91.271 28.266 91.348 28.289 91.451 28.233 91.536 28.193 91.625 28.193 91.634 28.177 91.729 28.146 91.820 28.055 91.800 27.972 91.799 27.972 91.927 27.949 92.020 27.941 92.045 27.941 92.143 28.024 92.268 28.024 92.375 28.009 92.478 28.042 92.583 28.074 92.688 28.140 92.801 28.223 92.858 28.307 92.820 28.390 92.916 28.405 93.017 28.462 93.078 28.535 93.192 28.568 93.238 28.616 93.288 28.631 93.300 28.715 93.319 28.798 93.356 28.864 93.478 28.856 93.524 28.879 93.627 28.879 93.734 28.912 93.840 28.945 93.945 29.001 94.065 29.034 94.091 29.125 94.170 29.175 94.269 29.258 94.326 29.274 94.339 29.348 94.454 29.404 94.574 29.436 94.679 29.519 94.746 29.479 94.835 29.396 94.903 29.371 95.004 29.340 95.095 29.324 95.110 29.324 95.119 29.340 95.114 29.363 95.090 29.355 95.117 29.330 95.209 29.299 95.300 29.258 95.389 29.233 95.491 29.266 95.597 29.350 95.664 29.440 95.694 29.496 95.805 29.547 95.914 29.587 95.993 29.611 96.096 29.643 96.202 29.560 96.269 29.553 96.286 29.462 96.322 29.446 96.416 29.406 96.475 29.357 96.356 29.284 96.242 29.201 96.291 29.177 96.294 29.169 96.400 29.235 96.513 29.268 96.619 29.260 96.626 29.169 96.586 29.086 96.654 29.003 96.721 28.996 96.728 28.912 96.670 28.829 96.584 28.755 96.469 28.672 96.477 28.589 96.440 28.558 96.530 28.631 96.654 28.665 96.760 28.641 96.832 28.576 96.924 28.576 97.022 28.535 97.119 28.543 97.151 28.550 97.162 28.576 97.265 28.527 97.352 28.436 97.428 28.428 97.474 28.494 97.587 28.585 97.600 28.669 97.647 28.752 97.676 28.686 97.758 28.670 97.852 28.587 97.901 28.579 97.997 28.524 98.081 28.432 98.126 28.392 98.214 28.369 98.257 28.336 98.278 28.253 98.267 28.162 98.294 28.078 98.292 27.995 98.349 27.912 98.387 27.846 98.409 27.763 98.437 27.821 98.549 27.904 98.551 27.864 98.639 27.813 98.724 27.783 98.824 27.699 98.813 27.616 98.823 27.533 98.850 27.450 98.813 27.367 98.831 27.276 98.887 27.184 98.865 27.101 98.863 27.018 98.891 26.927 98.878 26.844 98.888 26.761 98.859 26.678 98.857 26.587 98.835 26.496 98.775 26.413 98.841 26.322 98.781 26.330 98.677 26.246 98.704 26.155 98.780 26.072 98.799 26.031 98.712 26.057 98.621 25.966 98.552 25.883 98.485 25.800 98.465 25.792 98.445 25.807 98.352 25.815 98.257 25.800 98.262 25.709 98.211 25.625 98.230 25.610 98.199 25.527 98.141 25.519 98.100 25.436 98.004 25.476 97.916 25.393 97.888 25.310 97.812 25.227 97.802 25.143 97.812 25.060 97.839 25.035 97.727 24.952 97.626 24.929 97.631 24.838 97.633 24.755 97.620 24.671 97.654 24.621 97.751 24.538 97.737 24.455 97.800 24.414 97.811 24.407 97.819 24.323 97.767 24.240 97.697 24.149 97.635 24.084 97.721 24.149 97.817 24.182 97.919 24.205 97.932 24.271 98.040 24.304 98.111 24.319 98.170 24.345 98.271 24.337 98.375 24.353 98.474 24.360 98.573 24.304 98.660 24.337 98.762 24.345 98.820 24.360 98.920 24.385 98.951 24.319 98.949 24.246 98.839 24.163 98.758 24.080 98.762 24.006 98.815 23.923 98.887 23.840 98.949 23.757 98.870 23.691 98.955 23.676 98.962 23.592 98.978 23.501 98.980 23.418 98.995 23.418 99.005 23.403 99.098 23.337 99.193 23.337 99.290 23.329 99.374 23.314 99.468 23.306 99.563 23.306 99.581 23.232 99.587 23.149 99.600 23.134 99.501 23.051 99.460 22.995 99.403 22.911 99.416 22.820 99.448 22.737 99.442 22.646 99.360 22.563 99.308 22.480 99.276 22.396 99.233 22.381 99.239 22.348 99.339 22.340 99.434 22.374 99.536 22.348 99.638 22.348 99.646 22.317 99.738 22.302 99.832 22.302 99.928 22.294 100.023 22.211 100.047 22.120 100.014 22.037 100.018 22.029 100.025 21.946 100.058 21.938 100.113 21.922 100.216 21.840 100.164 21.756 100.177 21.683 100.269 21.716 100.311 21.789 100.420 21.741 100.508 21.708 100.599 21.731 100.708 21.804 100.817 21.820 100.838 21.903 100.917 21.926 100.938 21.952 101.039 22.017 101.147 22.017 101.165 21.934 101.169 21.851 101.210 21.820 101.187 21.812 101.215 21.729 101.256 21.646 101.261 21.563 101.273 21.480 101.288 21.456 101.293 21.448 101.388 21.480 101.490 21.495 101.589 21.437 101.684 21.429 101.721 21.388 101.770 21.422 101.831 21.488 101.881 21.543 101.794 21.627 101.782 21.675 101.790 21.758 101.813 21.849 101.867 21.932 101.814 22.015 101.802 22.099 101.787 22.182 101.705 22.265 101.654 22.280 101.657 22.364 101.624 22.447 101.620 22.455 101.603 22.520 101.624 22.586 101.691 22.652 101.702 22.735 101.802 22.735 101.832 22.652 101.882 22.675 101.983 22.683 102.090 22.633 102.178 22.648 102.276 22.731 102.309 22.805 102.387 22.888 102.431 22.971 102.481 22.979 102.579 22.931 102.667 22.905 102.759 22.849 102.846 22.766 102.928 22.733 102.952 22.685 103.040 22.733 103.113 22.824 103.188 22.832 103.198 22.905 103.307 22.989 103.340 22.989 103.437 22.905 103.478 22.822 103.549 22.814 103.548 22.905 103.602 22.989 103.634 23.014 103.677 22.931 103.759 22.857 103.843 22.784 103.935 22.735 103.985 22.735 103.994 22.743 104.004 22.758 104.036 22.842 104.051 22.925 104.057 23.015 104.120 23.031 104.132 23.056 104.233 23.064 104.281 23.064 104.291 22.981 104.285 22.973 104.283 22.923 104.371 22.923 104.380 22.981 104.487 23.064 104.587 23.056 104.682 23.087 104.784 23.153 104.861 23.160 104.872 23.252 104.859 23.335 104.835 23.401 104.915 23.408 104.992 23.416 105.012 23.467 105.118 23.490 105.207 23.573 105.308 23.606 105.331 23.522 105.402 23.515 105.401 23.457 105.487 23.408 105.536 23.325 105.569 23.292 105.639 23.277 105.733 23.211 105.818 23.162 105.906 23.170 106.004 23.221 106.069 23.221 106.145 23.180 106.235 23.097 106.276 23.105 106.374 23.120 106.473 23.160 106.537 23.145 106.592 23.105 106.682 23.072 106.723 22.989 106.784 22.905 106.751 22.822 106.718 22.814 106.698 22.822 106.603 22.714 106.584 22.706 106.574 22.650 106.563 22.617 106.575 22.577 106.586 22.520 106.672 22.437 106.675 22.379 106.693 22.296 106.696 22.213 106.710 22.246 106.772 22.220 106.873 22.165 106.959 22.139 107.051 22.056 107.036 22.033 107.108 21.967 107.192 21.967 107.269 21.901 107.353 21.851 107.362 21.901 107.467 21.836 107.482 21.843 107.502 21.851 107.609 21.851 107.617 21.884 107.720 21.909 107.781 21.901 107.808 21.843 107.894 21.787 107.980 21.802 108.079 21.828 108.180 21.745 108.192 21.828 108.303 21.919 108.302 21.911 108.397 21.828 108.429 21.820 108.475 21.911 108.538 21.994 108.489 22.077 108.457 22.093 108.451 22.151 108.453 22.167 108.465 22.101 108.462 22.191 108.543 22.133 108.618 22.050 108.564 22.050 108.661 21.967 108.645 21.919 108.733 21.886 108.718 21.870 108.820 21.954 108.789 22.037 108.804 22.004 108.894 22.011 108.905 21.921 108.850 21.855 108.934 21.880 109.044 21.888 109.055 21.804 109.136 21.721 109.052 21.648 109.135 21.731 109.227 21.691 109.249 21.698 109.346 21.739 109.450 21.812 109.561 21.886 109.478 21.977 109.522 21.894 109.574 21.810 109.614 21.727 109.695 21.735 109.761 21.818 109.730 21.826 109.731 21.826 109.761 21.735 109.828 21.735 109.925 21.702 109.936 21.695 109.935 21.603 109.862 21.572 109.760 21.489 109.753 21.448 109.745 21.365 109.654 21.282 109.676 21.209 109.671 21.125 109.647 21.100 109.739 21.017 109.741 20.944 109.763 20.952 109.823 20.861 109.776 20.777 109.799 20.721 109.885 20.696 109.976 20.648 109.976 20.673 109.884 20.590 109.898 20.506 109.882 20.530 109.972 20.522 110.066 20.530 110.164 20.530 110.193 20.514 110.286 20.580 110.395 20.663 110.467 20.746 110.500 20.829 110.431 20.886 110.345 20.969 110.314 21.060 110.313 20.969 110.343 20.994 110.377 21.077 110.363 21.085 110.356 21.093 110.261 21.093 110.165 21.176 110.133 21.259 110.158 21.342 110.259 21.350 110.278 21.441 110.381 21.448 110.382 21.532 110.341 21.615 110.366 21.631 110.378 21.547 110.439 21.464 110.414 21.456 110.509 21.472 110.608 21.555 110.595 21.638 110.658 21.687 110.734 21.638 110.678 21.555 110.623 21.629 110.734 21.629 110.830 21.669 110.934 21.710 111.038 21.717 111.136 21.733 111.178 21.741 111.275 21.675 111.224 21.741 111.343 21.774 111.357 21.781 111.359 21.804 111.382 21.820 111.393 21.754 111.477 21.779 111.578 21.853 111.698 21.936 111.752 22.002 111.668 21.994 111.763 21.946 111.850 21.954 111.881 22.027 111.904 22.110 111.873 22.103 111.919 22.087 111.924 22.079 111.979 22.079 111.997 22.039 112.085 21.983 112.171 21.950 112.261 22.033 112.362 22.116 112.360 22.199 112.338 22.290 112.356 22.199 112.356 22.207 112.463 22.124 112.391 22.041 112.472 22.008 112.562 22.099 112.656 22.182 112.727 22.182 112.824 22.108 112.915 22.199 112.989 22.282 112.967 22.366 112.983 22.449 113.064 22.449 113.082 22.366 113.084 22.292 113.175 22.376 113.230 22.416 113.334 22.583 113.252 22.665 113.192 22.756 113.124 22.814 113.135 22.807 113.143 22.724 113.191 22.675 113.211 22.592 113.260 22.509 113.330 22.443 113.382 22.428 113.475 22.443 113.496 22.459 113.508 22.459 113.517 22.541 113.534 22.625 113.503 22.650 113.489 22.741 113.525 22.814 113.510 22.905 113.481 22.971 113.388 23.004 113.339 22.981 113.390 23.029 113.429 23.095 113.345 23.120 113.253 23.120 113.235 23.145 113.174 23.138 113.249 23.130 113.257 23.162 113.360 23.170 113.371 23.254 113.452 23.302 113.376 23.317 113.361 23.302 113.455 23.352 113.561 23.352 113.579 23.383 113.691 23.360 113.783 23.352 113.790 23.360 113.716 23.352 113.608 23.345 113.598 23.262 113.485 23.254 113.540 23.170 113.553 23.254 113.578 23.269 113.599 23.186 113.574 23.103 113.557 23.037 113.621 22.989 113.621 22.996 113.707 22.905 113.755 22.822 113.777 22.731 113.824 22.706 113.810 22.762 113.889 22.754 113.923 22.747 113.980 22.762 114.048 22.770 114.059 22.793 114.160 22.786 114.167 22.826 114.234 22.834 114.271 22.849 114.332 22.816 114.373 22.776 114.412 22.685 114.442 22.733 114.548 22.782 114.461 22.872 114.514 22.897 114.443 22.981 114.545 23.021 114.649 23.029 114.747 22.946 114.664 22.855 114.664 22.814 114.703 22.814 114.809 22.897 114.890 22.954 114.804 22.921 114.895 22.929 114.934 23.012 114.980 23.019 115.078 23.093 115.189 23.010 115.163 23.010 115.193 22.995 115.286 22.995 115.296 22.921 115.378 22.890 115.468 22.897 115.498 22.981 115.497 23.064 115.505 23.079 115.411 23.162 115.381 23.130 115.471 23.114 115.564 23.170 115.672 23.087 115.637 23.056 115.737 23.041 115.742 23.041 115.848 23.081 115.953 23.114 115.998 23.162 115.960 23.139 116.023 23.139 116.041 23.155 116.141 23.180 116.251 23.172 116.346 23.213 116.440 23.238 116.445 23.321 116.471 23.412 116.489 23.445 116.514 23.445 116.532 23.412 116.543 23.495 116.627 23.439 116.712 23.530 116.684 23.571 116.595 23.555 116.554 23.596 116.465 23.596 116.562 23.588 116.608 23.614 116.709 23.629 116.730 23.695 116.773 23.778 116.808 23.861 116.824 23.869 116.923 23.785 116.992 23.851 117.102 23.935 117.186 24.018 117.212 24.018 117.308 24.101 117.402 24.109 117.509 24.026 117.520 24.109 117.545 24.192 117.601 24.265 117.597 24.281 117.600 24.273 117.696 24.190 117.670 24.263 117.782 24.347 117.835 24.430 117.843 24.438 117.941 24.521 118.026 24.546 117.934 24.629 117.951 24.614 117.851 24.639 117.759 24.687 117.701 24.703 117.802 24.679 117.864 24.679 117.920 24.763 117.899 24.778 117.999 24.778 118.008 24.844 118.098 24.761 118.167 24.793 118.280 24.809 118.310 24.892 118.374 24.801 118.452 24.743 118.509 24.826 118.582 24.917 118.639 25.000 118.617 25.008 118.523 25.057 118.528 25.147 118.629 25.064 118.605 25.105 118.714 25.138 118.829 25.221 118.910 25.246 118.820 25.329 118.853 25.412 118.859 25.436 118.798 25.502 118.914 25.418 118.976 25.327 118.988 25.410 119.012 25.395 119.105 25.453 119.227 25.536 119.204 25.567 119.116 25.608 119.031 25.681 119.150 25.689 119.152 25.772 119.206 25.732 119.291 25.658 119.367 25.593 119.404 25.676 119.485 25.593 119.508 25.676 119.541 25.759 119.489 25.792 119.401 25.832 119.404 25.916 119.458 25.916 119.467 26.007 119.541 26.090 119.500 26.155 119.617 26.238 119.544 26.254 119.451 26.181 119.391 26.148 119.295 26.173 119.206 26.181 119.169 26.264 119.146 26.330 119.068 26.353 119.039 26.322 119.127 26.264 119.207 26.264 119.244 26.231 119.340 26.190 119.385 26.274 119.448 26.332 119.492 26.415 119.564 26.488 119.683 26.529 119.801 26.620 119.771 26.537 119.690 26.560 119.599 26.650 119.588 26.643 119.683 26.726 119.717 26.759 119.708 26.825 119.630 26.809 119.519 26.893 119.544 26.976 119.511 26.960 119.604 27.043 119.726 26.960 119.738 26.877 119.811 26.960 119.883 26.993 119.952 26.927 119.950 26.844 119.908 26.778 119.782 26.771 119.886 26.811 119.946 26.836 120.060 26.919 120.093 27.011 120.054 27.094 120.011 27.134 120.121 27.218 120.213 27.308 120.222 27.308 120.328 27.341 120.368 27.425 120.327 27.440 120.224 27.523 120.231 27.450 120.307 27.425 120.329 27.376 120.380 27.417 120.374 27.409 120.478 27.492 120.503 27.576 120.499 27.659 120.630 27.742 120.557 27.825 120.611 27.916 120.629 27.999 120.711 28.014 120.725 28.106 120.800 28.171 120.722 28.219 120.629 28.235 120.536 28.309 120.510 28.243 120.588 28.235 120.693 28.195 120.779 28.195 120.847 28.285 120.931 28.369 121.012 28.452 121.067 28.492 120.972 28.492 121.031 28.583 121.107 28.560 121.157 28.477 121.198 28.403 121.214 28.345 121.294 28.428 121.311 28.520 121.395 28.520 121.502 28.603 121.536 28.686 121.504 28.777 121.454 28.860 121.431 28.883 121.408 28.891 121.313 28.876 121.210 28.958 121.169 29.024 121.091 29.040 121.077 28.999 121.163 28.943 121.244 28.910 121.341 28.910 121.478 28.994 121.601 29.084 121.571 29.100 121.469 29.156 121.525 29.115 121.611 29.199 121.597 29.239 121.511 29.247 121.522 29.305 121.442 29.305 121.335 29.320 121.348 29.404 121.431 29.487 121.486 29.404 121.538 29.487 121.545 29.396 121.574 29.396 121.672 29.479 121.688 29.562 121.695 29.479 121.748 29.396 121.731 29.363 121.769 29.446 121.872 29.529 121.859 29.613 121.827 29.703 121.854 29.786 121.898 29.835 121.805 29.786 121.692 29.696 121.722 29.736 121.636 29.688 121.523 29.605 121.411 29.688 121.358 29.744 121.474 29.752 121.574 29.784 121.632 29.868 121.705 29.959 121.763 30.017 121.889 30.025 121.901 30.065 122.016 30.081 121.924 30.089 121.820 30.119 121.734 30.152 121.649 30.160 121.584 30.193 121.540 30.218 121.531 30.384 121.402 30.441 121.326 30.481 121.234 30.489 121.139 30.458 121.028 30.400 120.906 30.351 120.839 30.311 120.715 30.311 120.608 30.278 120.702 30.255 120.711 30.270 120.610 30.319 120.570 30.402 120.575 30.493 120.554 30.551 120.479 30.485 120.345 30.452 120.234 30.396 120.104 30.388 120.073 30.411 120.110 30.485 120.238 30.543 120.309 30.584 120.423 30.584 120.522 30.576 120.627 30.527 120.706 30.543 120.771 30.626 120.871 30.710 120.886 30.775 121.011 30.849 121.148 30.874 121.215 30.957 121.348 31.013 121.469 31.038 121.578 31.046 121.689 31.038 121.793 31.122 121.836 31.205 121.811 31.295 121.769 31.379 121.725 31.462 121.671 31.518 121.595 31.543 121.497 31.558 121.476 31.624 121.394 31.665 121.311 31.673 121.296 31.756 121.231 31.822 121.159 31.870 121.079 31.878 121.053 31.911 120.967 31.926 120.874 31.951 120.776 31.984 120.711 32.068 120.744 32.151 120.699 32.166 120.606 32.181 120.505 32.189 120.409 32.123 120.343 32.083 120.219 32.075 120.197 32.083 120.101 32.116 120.016 32.123 119.981 32.116 119.978 32.157 119.887 32.230 119.849 32.279 119.769 32.294 119.766 32.271 119.865 32.362 119.835 32.445 119.799 32.437 119.696 32.429 119.693 32.381 119.773 32.365 119.776 32.406 119.684 32.358 119.598 32.365 119.592 32.373 119.595 32.429 119.654 32.520 119.612 32.488 119.686 32.488 119.786 32.422 119.859 32.338 119.892 32.247 119.923 32.174 119.971 32.125 120.061 32.110 120.153 32.110 120.202 32.193 120.334 32.267 120.451 32.259 120.547 32.251 120.652 32.226 120.721 32.185 120.803 32.102 120.869 32.019 120.902 32.019 121.001 32.012 121.115 32.052 121.240 32.044 121.336 32.019 121.434 31.971 121.513 31.930 121.605 31.897 121.700 31.874 121.789 31.957 121.842 32.040 121.818 32.131 121.768 32.197 121.695 32.213 121.662 32.245 121.597 32.286 121.514 32.286 121.415 32.377 121.365 32.460 121.380 32.551 121.389 32.609 121.304 32.640 121.217 32.673 121.131 32.714 121.048 32.729 120.997 32.760 120.901 32.785 120.863 32.876 120.812 32.959 120.827 33.043 120.879 33.126 120.873 33.133 120.867 33.207 120.798 33.290 120.783 33.356 120.710 33.439 120.724 33.487 120.636 33.571 120.629 33.662 120.567 33.745 120.512 33.828 120.479 33.911 120.464 34.002 120.401 34.085 120.374 34.158 120.336 34.250 120.306 34.275 120.307 34.358 120.261 34.449 120.228 34.489 120.135 34.530 120.052 34.571 119.968 34.578 119.953 34.612 119.866 34.619 119.760 34.634 119.727 34.683 119.646 34.716 119.551 34.772 119.464 34.855 119.418 34.896 119.334 34.896 119.225 34.855 119.139 34.946 119.135 35.029 119.113 35.113 119.145 35.146 119.143 35.220 119.227 35.303 119.326 35.386 119.349 35.470 119.429 35.553 119.519 35.637 119.570 35.728 119.615 35.720 119.711 35.753 119.828 35.837 119.878 35.870 119.974 35.961 120.000 36.044 120.070 36.078 120.135 36.108 120.261 36.124 120.168 36.190 120.151 36.248 120.070 36.289 120.072 36.363 120.090 36.363 120.199 36.322 120.280 36.406 120.272 36.331 120.336 36.248 120.285 36.190 120.366 36.223 120.484 36.256 120.601 36.347 120.665 36.431 120.639 36.464 120.624 36.547 120.685 36.596 120.810 36.512 120.848 36.603 120.933 36.687 120.945 36.720 120.860 36.679 120.739 36.727 120.745 36.786 120.813 36.761 120.911 36.720 120.931 36.745 121.054 36.828 121.196 36.844 121.305 36.885 121.427 36.918 121.452 36.984 121.596 36.900 121.495 36.892 121.592 36.976 121.665 37.027 121.791 37.042 121.858 37.125 121.919 37.117 122.016 37.034 122.023 37.027 122.019 37.117 122.136 37.151 122.162 37.067 122.178 36.976 122.172 36.968 122.278 36.993 122.402 37.077 122.505 37.133 122.525 37.158 122.427 37.250 122.433 37.282 122.551 37.366 122.584 37.457 122.541 37.506 122.676 37.547 122.596 37.539 122.491 37.547 122.384 37.547 122.295 37.580 122.210 37.613 122.117 37.661 122.040 37.578 121.979 37.552 121.947 37.586 121.924 37.586 121.711 37.611 121.623 37.586 121.500 37.652 121.432 37.735 121.384 37.710 121.270 37.702 121.165 37.793 121.122 37.834 121.041 37.882 120.964 37.948 120.886 37.948 120.784 37.923 120.670 37.892 120.575 37.867 120.461 37.811 120.322 37.811 120.211 37.785 120.309 37.702 120.258 37.694 120.245 37.611 120.144 37.552 120.014 37.552 120.005 37.496 119.866 37.405 119.889 37.322 119.819 37.273 119.693 37.273 119.574 37.258 119.465 37.265 119.358 37.273 119.261 37.296 119.172 37.345 119.094 37.403 119.012 37.436 118.958 37.519 118.940 37.603 118.953 37.626 118.955 37.717 118.972 37.801 119.013 37.892 119.087 37.976 119.109 38.049 119.014 38.148 118.952 38.232 118.943 38.280 118.856 38.280 118.665 38.197 118.654 38.106 118.579 38.139 118.493 38.230 118.480 38.253 118.380 38.222 118.263 38.271 118.185 38.263 118.080 38.263 118.040 38.319 117.966 38.360 117.884 38.385 117.828 38.434 117.750 38.490 117.676 38.581 117.619 38.665 117.570 38.731 117.543 38.814 117.544 38.880 117.566 38.963 117.607 39.047 117.668 39.095 117.682 39.179 117.713 39.270 117.786 39.311 117.909 39.326 117.987 39.311 118.082 39.270 118.173 39.179 118.218 39.146 118.304 39.212 118.448 39.295 118.579 39.262 118.767 39.286 118.881 39.301 118.991 39.393 119.065 39.476 119.166 39.509 119.222 39.592 119.214 39.684 119.179 39.767 119.280 39.850 119.331 39.934 119.454 40.017 119.557 40.043 119.685 40.084 119.778 40.084 119.788 40.099 119.835 40.157 119.941 40.182 120.017 40.223 120.144 40.280 120.281 40.295 120.393 40.387 120.440 40.420 120.488 40.513 120.555 40.597 120.625 40.681 120.736 40.773 120.812 40.773 120.862 40.806 120.995 40.872 120.933 40.964 121.049 41.031 121.150 41.000 121.234 41.016 121.356 40.990 121.443 40.933 121.521 40.933 121.602 41.000 121.755 41.084 121.817 41.059 121.811 40.974 121.788 40.900 121.845 40.867 121.936 40.835 122.020 40.785 122.110 40.777 122.115 40.684 122.129 40.643 122.207 40.559 122.214 40.475 122.143 40.391 122.041 40.299 121.974 40.215 121.882 40.190 121.847 40.098 121.800 40.014 121.646 39.973 121.521 39.907 121.385 39.823 121.402 39.732 121.427 39.699 121.298 39.616 121.153 39.608 121.252 39.616 121.358 39.567 121.393 39.483 121.431 39.468 121.525 39.509 121.648 39.493 121.743 39.518 121.867 39.470 121.792 39.429 121.669 39.346 121.577 39.254 121.599 39.171 121.538 39.121 121.410 39.154 121.325 39.070 121.242 39.004 121.097 38.921 121.083 38.830 121.108 38.888 121.249 38.911 121.363 38.944 121.482 39.027 121.626 39.111 121.628 39.111 121.739 39.095 121.741 39.063 121.827 39.154 121.873 39.179 121.997 39.262 122.049 39.353 122.115 39.437 122.207 39.520 122.331 39.546 122.446 39.637 122.574 39.660 122.688 39.719 122.821 39.775 122.961 39.767 123.059 39.800 123.179 39.883 123.212 39.883 123.315 39.899 123.435 39.899 123.444 39.907 123.498 39.990 123.551 39.934 123.624 39.934 123.829 39.918 123.923 39.934 124.043 40.017 124.148 40.101 124.263 40.194 124.281 40.202 124.286 40.202 124.295 40.209 124.300 40.293 124.413 40.377 124.526 40.462 124.660 40.546 124.783 40.554 124.878 40.561 124.883 40.561 124.923 40.645 124.987 40.702 125.126 40.744 125.255 40.736 125.259 40.751 125.341 40.818 125.434 40.859 125.563 40.943 125.617 40.958 125.636 40.958 125.749 40.974 125.862 41.059 125.988 41.150 126.075 41.234 126.180 41.250 126.209 41.334 126.292 41.418 126.356 41.502 126.451 41.534 126.443 41.593 126.501 41.677 126.524 41.761 126.568 41.761 126.619 41.818 126.759 41.884 126.844 41.843 126.920 41.794 127.001 41.735 126.994 41.686 127.076 41.612 127.131 41.597 127.233 41.571 127.320 41.563 127.418 41.538 127.483 41.506 127.575 41.514 127.684 41.506 127.791 41.530 127.910 41.538 127.947 41.481 128.022 41.496 128.123 41.589 128.184 41.673 128.249 41.757 128.191 41.798 128.115 41.814 128.094 41.822 128.089 41.906 128.042 41.955 128.033 42.046 128.002 42.078 127.994 42.103 128.123 42.129 128.232 42.129 128.335 42.113 128.395 42.098 128.394 42.098 128.498 42.113 128.612 42.129 128.735 42.121 128.833 42.187 128.959 42.271 129.107 42.355 129.153 42.440 129.168 42.489 129.242 42.522 129.377 42.497 129.431 42.489 129.435 42.489 129.495 42.522 129.587 42.606 129.663 42.698 129.694 42.782 129.689 42.790 129.695 42.874 129.719 42.958 129.756 43.042 129.781 43.050 129.787 43.058 129.906 43.050 129.932 43.066 130.035 42.999 130.094 42.976 130.192 42.960 130.191 42.868 130.171 42.812 130.183 42.763 130.242 42.712 130.311 42.688 130.366 42.655 130.447 42.622 130.456 42.522 130.544 42.571 130.517 42.663 130.547 42.747 130.522 42.780 130.430 42.806 130.343 42.890 130.482 42.931 130.614 42.972 130.756 42.957 130.850 42.964 130.968 43.048 131.045 43.132 131.039 43.225 131.142 43.309 131.130 43.393 131.197 43.477 131.234 43.569 131.205 43.592 131.160 43.676 131.135 43.761 131.131 43.853 131.133 43.937 131.140 44.021 131.165 44.113 131.157 44.128 131.178 44.212 131.184 44.305 131.154 44.389 131.120 44.473 131.094 44.547 131.062 44.639 131.032 44.690 131.016 44.782 130.974 44.848 130.904 44.941 130.874 45.007 130.994 44.991 131.088 45.048 131.246 45.074 131.371 45.132 131.444 45.217 131.530 45.302 131.647 45.362 131.683 45.378 131.800 45.321 131.862 45.321 131.881 45.295 131.977 45.278 132.070 45.263 132.163 45.239 132.250 45.223 132.353 45.199 132.440 45.183 132.533 45.168 132.626 45.142 132.722 45.118 132.787 45.160 132.934 45.245 133.010 45.330 132.983 45.424 133.004 45.509 133.029 45.532 133.047 45.617 133.175 45.659 133.314 45.744 133.370 45.830 133.385 45.915 133.390 45.956 133.423 46.042 133.574 46.050 133.580 46.143 133.634 46.228 133.607 46.304 133.772 46.389 133.820 46.474 133.855 46.524 133.788 46.609 133.826 46.617 133.822 46.674 133.867 46.716 133.920 46.809 133.962 46.894 133.945 46.926 133.961 47.019 134.004 47.104 134.040 47.162 134.128 47.255 134.130 47.340 134.091 47.426 134.169 47.511 134.344 47.537 134.481 47.630 134.565 47.715 134.624 47.800 134.702 47.858 134.641 47.884 134.609 47.969 134.560 48.036 134.507 48.122 134.503 48.215 134.608 48.300 134.614 48.334 134.661 48.358 134.562 48.417 134.502 48.433 134.495 48.433 134.388 48.441 134.352 48.457 134.332 48.441 134.212 48.417 134.140 48.401 134.020 48.393 133.983 48.336 133.819 48.320 133.699 48.253 133.538 48.159 133.464 48.143 133.431 48.177 133.350 48.177 133.243 48.185 133.132 48.177 133.018 48.092 132.843 48.025 132.683 47.939 132.596 47.854 132.529 47.787 132.455 47.802 132.351 47.810 132.240 47.776 132.106 47.776 131.999 47.753 131.863 47.753 131.756 47.769 131.662 47.735 131.528 47.802 131.473 47.810 131.447 47.810 131.223 47.769 131.073 47.753 131.041 47.761 130.940 47.818 130.878 47.911 130.877 47.979 130.823 48.028 130.744 48.080 130.677 48.096 130.656 48.171 130.598 48.257 130.684 48.342 130.751 48.391 130.759 48.449 130.696 48.534 130.698 48.542 130.586 48.627 130.545 48.659 130.462 48.744 130.485 48.837 130.538 48.922 130.594 48.938 130.554 48.913 130.426 48.954 130.350 48.931 130.214 48.938 130.112 48.980 130.037 49.021 129.961 49.055 129.922 49.063 129.898 49.105 129.823 49.147 129.792 49.222 129.732 49.222 129.712 49.230 129.665 49.315 129.636 49.315 129.528 49.357 129.442 49.442 129.435 49.458 129.404 49.474 129.298 49.388 129.262 49.412 129.173 49.412 128.956 49.487 128.895 49.495 128.816 49.511 128.720 49.596 128.700 49.620 128.633 49.646 128.579 49.646 128.559 49.613 128.533 49.628 128.427 49.620 128.313 49.579 128.228 49.579 128.011 49.613 127.918 49.628 127.844 49.628 127.736 49.678 127.655 49.719 127.579 49.795 127.518 49.819 127.427 49.904 127.407 49.989 127.386 50.032 127.379 50.118 127.414 50.205 127.481 50.240 127.492 50.274 127.403 50.282 127.390 50.309 127.294 50.377 127.247 50.464 127.228 50.559 127.259 50.646 127.273 50.707 127.218 50.794 127.200 50.853 127.143 50.922 127.085 50.972 127.020 50.988 126.991 51.049 126.926 51.117 126.877 51.213 126.853 51.300 126.910 51.342 126.838 51.429 126.842 51.453 126.754 51.540 126.789 51.575 126.699 51.662 126.703 51.696 126.680 51.765 126.621 51.826 126.565 51.894 126.516 51.955 126.451 52.042 126.431 52.129 126.529 52.188 126.462 52.204 126.365 52.291 126.389 52.323 126.308 52.410 126.319 52.471 126.253 52.505 126.173 52.574 126.124 52.582 126.010 52.634 125.946 52.730 126.020 52.780 125.945 52.831 125.868 52.907 125.826 52.900 125.708 52.934 125.627 53.011 125.666 53.063 125.591 53.055 125.473 53.098 125.400 53.132 125.308 53.166 125.227 53.201 125.137 53.201 124.971 53.106 124.855 53.138 124.773 53.146 124.668 53.197 124.592 53.197 124.480 53.213 124.373 53.255 124.299 53.324 124.249 53.367 124.175 53.351 124.049 53.393 123.975 53.445 123.899 53.478 123.817 53.486 123.712 53.494 123.644 53.494 123.634 53.536 123.560 53.494 123.481 53.518 123.390 53.534 123.283 53.527 123.164 53.492 123.102 53.492 122.980 53.458 122.838 53.449 122.719 53.449 122.598 53.442 122.479 53.442 122.357 53.484 122.272 53.458 122.137 53.407 121.981 53.415 121.878 53.399 121.752 53.373 121.617 53.330 121.469 53.322 121.441 53.314 121.379 53.288 121.245 53.272 121.120 53.288 121.022 53.280 120.903 53.203 120.716 53.116 120.621 53.029 120.458 52.942 120.342 52.916 120.330 52.820 120.171 52.770 120.006 52.683 120.031 52.596 120.054 52.588 120.169 52.623 120.309 52.639 120.444 52.604 120.526 52.570 120.617 52.519 120.685 52.432 120.665 52.346 120.611 52.287 120.671 52.218 120.734 52.131 120.757 52.044 120.672 52.001 120.690 51.914 120.606 51.872 120.460 51.777 120.281 51.690 120.164 51.603 120.027 51.516 119.974 51.429 119.934 51.342 119.871 51.291 119.808 51.197 119.728 51.110 119.709 51.023 119.636 50.936 119.510 50.849 119.457 50.814 119.459 50.727 119.419 50.632 119.277 50.545 119.204 50.450 119.168 50.363 119.096 50.355 119.209 50.313 119.282 50.296 119.258 50.201 119.266 50.175 119.264 50.098 119.221 50.011 119.075 50.003 119.016 49.987 118.928 49.987 118.789 49.961 118.662 49.969 118.582 49.894 118.420 49.809 118.306 49.716 118.145 49.630 117.999 49.614 117.968 49.529 117.813 49.545 117.771 49.545 117.685 49.579 117.590 49.613 117.505 49.636 117.413 49.636 117.285 49.644 117.182 49.668 117.080 49.694 116.989 49.718 116.897 49.759 116.808 49.793 116.723 49.834 116.633 49.801 116.609 49.708 116.555 49.529 116.431 49.444 116.383 49.257 116.254 49.165 116.200 48.978 116.071 48.885 116.018 48.792 116.006 48.621 115.849 48.528 115.776 48.443 115.793 48.358 115.797 48.264 115.776 48.207 115.629 48.113 115.523 48.072 115.527 48.021 115.545 47.927 115.576 47.878 115.650 47.828 115.723 47.787 115.802 47.737 115.876 47.778 116.011 47.864 116.134 47.896 116.263 47.879 116.369 47.872 116.471 47.888 116.599 47.903 116.727 47.911 116.850 47.878 116.944 47.852 117.044 47.802 117.126 47.753 117.220 47.695 117.297 47.781 117.451 47.796 117.471 47.882 117.582 47.967 117.682 48.001 117.725 48.042 117.871 48.034 117.928 48.034 117.948 48.058 118.072 48.058 118.179 48.034 118.280 48.027 118.382 48.003 118.525 47.868 118.665 47.808 118.731 47.774 118.824 47.751 118.925 47.717 119.018 47.660 119.096 47.566 119.114 47.542 119.215 47.457 119.272 47.457 119.282 47.416 119.370 47.374 119.447 47.349 119.482 47.299 119.554 47.257 119.631 47.200 119.698 47.124 119.751 47.039 119.775 46.972 119.835 46.896 119.899 46.811 119.871 46.718 119.847 46.660 119.713 46.676 119.608 46.684 119.507 46.684 119.391 46.669 119.274 46.702 119.191 46.710 119.080 46.752 119.002 46.767 118.897 46.819 118.827 46.734 118.695 46.758 118.605 46.742 118.488 46.758 118.392 46.783 118.294 46.724 118.146 46.682 118.001 46.658 117.878 46.573 117.735 46.589 117.631 46.649 117.545 46.597 117.404 46.504 117.360 46.411 117.234 46.419 117.230 46.411 117.108 46.419 117.007 46.426 116.896 46.411 116.779 46.377 116.640 46.292 116.531 46.199 116.406 46.113 116.306 46.020 116.243 45.935 116.195 45.842 116.238 45.816 116.211 45.731 116.070 45.697 115.942 45.612 115.779 45.527 115.670 45.485 115.537 45.461 115.415 45.461 115.405 45.453 115.294 45.453 115.083 45.437 114.947 45.445 114.847 45.471 114.758 45.479 114.649 45.394 114.499 45.308 114.442 45.223 114.344 45.138 114.205 45.045 114.092 44.978 113.976 44.970 113.856 44.886 113.736 44.801 113.581 44.817 113.475 44.833 113.379 44.833 113.275 44.840 113.164 44.848 113.053 44.874 112.954 44.890 112.857 44.905 112.761 44.937 112.664 44.962 112.564 45.037 112.495 45.045 112.490 45.094 112.407 45.110 112.207 45.110 112.101 45.134 112.011 45.100 111.884 45.033 111.726 44.974 111.680 44.890 111.632 44.805 111.573 44.706 111.526 44.622 111.516 44.537 111.459 44.453 111.390 44.361 111.409 44.313 111.495 44.228 111.520 44.154 111.592 44.087 111.669 44.054 111.764 44.005 111.840 43.921 111.897 43.837 111.963 43.737 111.925 43.737 111.906 43.721 111.877 43.721 111.772 43.629 111.669 43.545 111.529 43.538 111.420 43.504 111.391 43.463 111.254 43.430 111.131 43.346 110.968 43.254 110.875 43.169 110.786 43.078 110.693 42.986 110.622 42.901 110.482 42.810 110.390 42.769 110.263 42.702 110.122 42.702 110.018 42.687 109.895 42.635 109.763 42.561 109.608 42.520 109.471 42.512 109.458 42.512 109.354 42.504 109.246 42.512 109.136 42.520 109.018 42.469 108.886 42.469 108.782 42.485 108.687 42.493 108.587 42.500 108.478 42.500 108.365 42.526 108.265 42.500 108.147 42.485 108.035 42.469 107.913 42.477 107.804 42.477 107.691 42.461 107.518 42.420 107.288 42.405 107.166 42.379 107.039 42.363 106.804 42.322 106.678 42.273 106.538 42.232 106.402 42.182 106.262 42.133 106.122 42.092 105.987 42.050 105.862 42.001 105.722 41.953 105.583 41.835 105.314 41.828 105.271 41.735 105.140 41.669 105.036 41.726 104.953 41.726 104.737 41.733 104.627 41.800 104.559 41.884 104.563 41.933 104.475 41.917 104.363 41.902 104.242 41.886 104.131 41.878 104.013 41.863 103.892 41.871 103.701 41.927 103.577 41.960 103.481 41.986 103.391 42.017 103.294 42.058 103.212 42.092 103.044 42.117 102.881 42.133 102.716 42.166 102.569 42.182 102.433 42.215 102.305 42.256 102.141 42.281 102.040 42.422 101.905 42.573 101.756 42.596 101.654 42.612 101.549 42.612 101.375 42.604 101.310 42.620 101.132 42.627 101.003 42.653 100.862 42.677 100.697 42.702 100.555 42.710 100.446 42.726 100.246 42.733 100.126 42.749 100.052 42.726 99.970 42.692 99.840 42.625 99.548 42.633 99.438 42.641 99.329 42.657 99.109 42.665 98.990 42.665 98.877 42.673 98.767 42.681 98.657 42.688 98.548 42.688 98.434 42.696 98.324 42.704 98.215 42.720 98.118 42.735 98.022 42.751 97.926 42.759 97.826 42.790 97.633 42.798 97.533 42.813 97.436 42.829 97.331 42.837 97.231 42.812 97.104 42.804 96.997 42.804 96.883 42.796 96.775 42.788 96.658 42.780 96.550 42.772 96.432 42.864 96.417 42.964 96.402 43.013 96.312 43.189 96.085 43.246 95.998 43.320 95.929 43.404 95.909 43.489 95.877 43.573 95.813 43.665 95.766 43.833 95.679 43.933 95.644 44.017 95.580 44.033 95.474 44.048 95.376 44.132 95.385 44.216 95.384 44.300 95.444 44.316 95.347 44.309 95.238 44.293 95.116 44.300 95.027 44.332 94.937 44.357 94.835 44.383 94.733 44.449 94.659 44.490 94.574 44.531 94.489 44.547 94.381 44.622 94.312 44.680 94.225 44.680 94.101 44.688 93.979 44.696 93.973 44.770 93.884 44.836 93.801 44.903 93.727 44.944 93.641 44.978 93.542 44.978 93.427 45.003 93.334 45.011 93.233 45.011 93.223 45.027 93.126 45.027 93.011 45.053 92.919 45.053 92.814 45.045 92.705 45.037 92.585 45.021 92.471 45.029 92.370 45.037 92.269 45.063 92.168 45.096 92.080 45.088 91.960 45.088 91.855 45.096 91.744 45.096 91.639 45.104 91.538 45.172 91.457 45.138 91.359 45.154 91.261 45.203 91.181 45.229 91.080 45.213 90.966 45.366 90.833 45.451 90.793 45.501 90.713 45.509 90.698 45.602 90.703 45.695 90.741 45.780 90.775 45.848 90.842 45.933 90.927 46.018 91.042 46.111 91.061 46.135 91.053 46.151 91.042 46.236 90.992 46.321 90.964 46.415 91.023 46.593 91.115 46.678 91.075 46.763 91.077 46.823 91.001 46.908 90.983 46.993 90.911 47.010 90.813 47.085 90.735 47.160 90.667 47.235 90.599 47.321 90.536 47.406 90.528 47.491 90.520 47.566 90.442 47.652 90.421 47.693 90.336 47.719 90.242 47.761 90.156 47.846 90.138 47.896 90.046 47.838 89.996 47.830 89.876 47.890 89.799 47.931 89.713 48.017 89.649 48.032 89.550 48.048 89.440 47.989 89.303 47.989 89.195 48.014 89.101 48.082 89.029 48.115 88.928 48.132 88.829 48.173 88.743 48.215 88.646 48.300 88.627 48.393 88.579 48.401 88.466 48.459 88.387 48.493 88.297 48.508 88.187 48.532 88.091 48.592 88.014 48.677 88.132 48.744 88.048 48.752 87.944 48.811 87.866 48.897 87.801 48.982 87.930 49.067 87.887 49.152 87.865 49.152 87.769 49.111 87.630 49.062 87.488 49.077 87.387 49.085 87.338 49.101 87.239 49.109 87.124 49.083 87.003 49.075 86.891 48.990 86.796 48.897 86.782 48.837 86.861 48.744 86.814 48.659 86.762 48.574 86.667 48.489 86.540 48.489 86.422 48.413 86.277 48.421 86.163 48.421 86.046 48.413 85.935 48.338 85.790 48.244 85.734 48.159 85.673 48.074 85.661 47.989 85.629 47.965 85.608 47.939 85.596 47.846 85.612 47.761 85.646 47.667 85.663 47.574 85.670 47.489 85.671 47.463 85.678 47.388 85.749 47.295 85.756 47.210 85.734 47.124 85.608 47.057 85.566 47.049 85.445 47.049 85.339 46.974 85.196 46.906 85.047 46.847 84.912 46.906 84.834 46.982 84.763 46.990 84.651 46.982 84.540 46.997 84.441 47.006 84.338 46.972 84.109 46.972 83.993 46.988 83.894 47.021 83.803 47.037 83.693 47.063 83.599 47.104 83.512 47.146 83.425 47.162 83.325 47.203 83.228 47.146 83.085 47.061 83.077 46.968 83.066 46.883 83.016 46.797 82.947 46.569 82.840 46.476 82.807 46.409 82.766 46.323 82.736 46.238 82.665 46.145 82.611 46.060 82.605 45.889 82.545 45.804 82.497 45.719 82.425 45.626 82.393 45.540 82.353 45.481 82.410 45.473 82.521 45.457 82.620 45.372 82.686 45.287 82.679 45.201 82.649 45.194 82.636 45.160 82.620 45.118 82.559 45.152 82.460 45.209 82.381 45.225 82.283 45.194 82.153 45.152 82.019 45.183 81.928 45.209 81.834 45.295 81.831 45.344 81.748 45.302 81.614 45.269 81.493 45.253 81.381 45.227 81.264 45.177 81.126 45.162 81.013 45.128 80.893 45.144 80.785 45.112 80.665 45.104 80.557 45.046 80.415 45.046 80.310 45.039 80.201 44.997 80.068 44.982 80.030 44.933 79.969 44.848 79.946 44.807 80.034 44.799 80.083 44.815 80.150 44.831 80.271 44.790 80.370 44.774 80.469 44.717 80.551 44.626 80.444 44.457 80.396 44.365 80.421 44.281 80.451 44.189 80.424 44.173 80.418 44.089 80.467 44.005 80.497 43.921 80.568 43.829 80.602 43.829 80.612 43.771 80.630 43.678 80.676 43.594 80.725 43.502 80.780 43.418 80.779 43.334 80.736 43.301 80.836 43.209 80.861 43.124 80.808 43.158 80.707 43.091 80.576 43.007 80.461 42.966 80.549 42.899 80.626 42.892 80.561 42.851 80.441 42.843 80.323 42.759 80.300 42.667 80.235 42.582 80.253 42.498 80.302 42.415 80.300 42.330 80.337 42.305 80.336 42.221 80.294 42.146 80.327 42.054 80.282 42.054 80.168 42.062 80.068 42.054 80.024 41.997 79.889 41.914 79.786 41.880 79.670 41.839 79.550 41.816 79.438 41.782 79.312 41.741 79.193 41.683 79.067 41.642 78.948 41.601 78.829 41.508 78.681 41.475 78.555 41.391 78.432 41.299 78.416 41.291 78.382 41.199 78.307 41.174 78.287 41.090 78.164 41.105 77.964 41.072 77.839 41.039 77.723 41.023 77.615 41.039 77.508 41.064 77.415 41.049 77.306 41.057 77.196 41.082 77.102 41.066 76.994 41.000 76.866 40.915 76.854 40.908 76.852 40.867 76.795 40.783 76.704 40.690 76.690 40.522 76.565 40.438 76.484 40.412 76.363 40.446 76.273 40.431 76.165 40.414 76.056 40.348 75.920 40.356 75.820 40.379 75.726 40.464 75.725 40.548 75.687 40.640 75.680 40.665 75.586 40.599 75.449 40.567 75.398 40.493 75.268 40.501 75.158 40.509 75.059 40.524 75.004 40.540 74.898 40.456 74.858 40.371 74.859 40.356 74.751 40.272 74.618 40.188 74.498 40.137 74.378 40.153 74.271 40.111 74.154 40.037 74.016 40.021 74.010 39.938 73.953 39.854 73.888 39.771 73.966 39.680 73.980 39.639 74.009 39.548 73.932 39.507 73.818 39.499 73.713 ; #2265 5 21.034 110.308 21.060 110.340 21.143 110.394 21.151 110.442 21.125 110.534 21.085 110.611 20.994 110.585 21.068 110.503 21.052 110.404 21.036 110.304 ; #2266 5 21.625 111.896 21.708 111.921 21.733 112.002 21.642 111.947 21.627 111.897 ; #2267 5 22.973 113.500 22.957 113.574 22.874 113.654 22.834 113.685 22.818 113.663 22.874 113.578 22.907 113.566 22.915 113.550 22.892 113.536 22.975 113.505 ; #2268 5 31.847 121.302 31.895 121.421 31.880 121.522 31.806 121.592 31.758 121.680 31.717 121.763 31.677 121.845 31.636 121.946 31.580 122.022 31.530 121.903 31.562 121.817 31.588 121.720 31.628 121.628 31.669 121.545 31.709 121.454 31.801 121.391 31.841 121.300 31.849 121.303 ; #2269 5 19.245 110.563 19.220 110.577 19.236 110.597 19.243 110.562 ; #2270 5 22.269 113.622 22.186 113.633 22.269 113.667 22.284 113.640 22.252 113.634 22.267 113.619 ; #2271 2 -8.837 -139.705 -8.781 -139.605 -8.756 -139.697 -8.839 -139.705 ; #2272 2 17.464 -88.003 17.520 -87.974 17.603 -87.931 17.520 -87.909 17.464 -88.005 ; #2273 2 -1.426 -52.476 -1.342 -52.428 -1.302 -52.324 -1.302 -52.230 -1.376 -52.335 -1.416 -52.430 -1.424 -52.476 ; #2274 2 -0.387 -51.429 -0.303 -51.390 -0.213 -51.333 -0.122 -51.295 -0.048 -51.190 -0.132 -51.145 -0.215 -51.213 -0.305 -51.309 -0.371 -51.404 -0.387 -51.431 ; #2275 2 -1.118 -51.434 -1.027 -51.415 -0.944 -51.320 -0.861 -51.281 -0.777 -51.271 -0.869 -51.235 -0.952 -51.274 -1.043 -51.293 -1.101 -51.397 -1.116 -51.434 ; #2276 2 -0.455 -51.112 -0.371 -51.101 -0.305 -51.006 -0.389 -50.998 -0.445 -51.094 -0.453 -51.112 ; #2277 2 -0.480 -51.026 -0.389 -50.968 -0.305 -50.931 -0.281 -50.836 -0.364 -50.820 -0.420 -50.916 -0.470 -51.011 -0.478 -51.028 ; #2278 2 0.273 -50.481 0.321 -50.576 0.412 -50.514 0.495 -50.498 0.586 -50.490 0.669 -50.455 0.586 -50.398 0.503 -50.397 0.420 -50.369 0.329 -50.442 0.271 -50.487 ; #2279 2 -1.302 -45.039 -1.219 -45.038 -1.242 -45.029 -1.159 -44.965 -1.242 -44.948 -1.300 -45.043 ; #2280 2 14.888 -12.160 14.832 -12.130 14.749 -12.072 14.666 -12.135 14.583 -12.124 14.517 -12.122 14.492 -12.026 14.326 -11.909 14.235 -11.907 14.151 -11.932 14.068 -11.903 13.977 -11.863 13.894 -11.899 13.838 -12.001 13.830 -11.993 13.747 -11.953 13.656 -11.884 13.590 -11.788 13.507 -11.804 13.457 -11.707 13.540 -11.654 13.524 -11.549 13.434 -11.501 13.351 -11.481 13.267 -11.450 13.184 -11.365 13.101 -11.296 13.010 -11.332 12.927 -11.321 12.843 -11.357 12.760 -11.346 12.695 -11.353 12.612 -11.285 12.546 -11.301 12.455 -11.354 12.371 -11.378 12.298 -11.406 12.267 -11.368 12.194 -11.271 12.186 -11.262 12.136 -11.165 12.168 -11.091 12.252 -11.029 12.335 -10.975 12.350 -10.938 12.358 -10.844 12.267 -10.766 12.176 -10.729 12.093 -10.670 12.037 -10.585 12.120 -10.511 12.203 -10.449 12.277 -10.356 12.360 -10.263 12.335 -10.167 12.319 -10.072 12.294 -9.976 12.262 -9.937 12.230 -9.833 12.198 -9.795 12.172 -9.699 12.213 -9.605 12.296 -9.578 12.337 -9.475 12.395 -9.381 12.395 -9.278 12.461 -9.233 12.544 -9.260 12.627 -9.291 12.642 -9.254 12.642 -9.245 12.627 -9.150 12.604 -9.065 12.578 -9.018 12.538 -8.922 12.455 -8.894 12.371 -8.919 12.364 -8.919 12.348 -8.901 12.265 -8.833 12.182 -8.831 12.151 -8.735 12.002 -8.732 11.919 -8.749 11.836 -8.764 11.788 -8.688 11.788 -8.679 11.811 -8.645 11.803 -8.644 11.754 -8.626 11.671 -8.598 11.631 -8.502 11.646 -8.473 11.563 -8.377 11.522 -8.301 11.439 -8.308 11.447 -8.403 11.356 -8.485 11.273 -8.549 11.190 -8.586 11.107 -8.611 11.122 -8.546 11.122 -8.480 11.213 -8.427 11.197 -8.323 11.147 -8.227 11.091 -8.226 11.000 -8.242 10.917 -8.240 10.826 -8.230 10.743 -8.228 10.652 -8.208 10.569 -8.123 10.594 -8.077 10.586 -8.060 10.503 -8.020 10.495 -7.925 10.412 -7.886 10.321 -7.913 10.329 -7.856 10.369 -7.762 10.452 -7.700 10.543 -7.673 10.592 -7.598 10.576 -7.503 10.599 -7.400 10.543 -7.399 10.495 -7.294 10.404 -7.284 10.388 -7.094 10.323 -6.989 10.338 -6.895 10.422 -6.925 10.505 -6.832 10.528 -6.737 10.497 -6.642 10.512 -6.605 10.561 -6.588 10.644 -6.635 10.735 -6.611 10.818 -6.604 10.810 -6.566 10.727 -6.480 10.704 -6.385 10.760 -6.357 10.843 -6.295 10.892 -6.201 10.801 -6.162 10.717 -6.169 10.634 -6.133 10.543 -6.140 10.460 -6.156 10.412 -6.173 10.396 -6.155 10.388 -6.137 10.348 -6.041 10.364 -5.938 10.447 -5.845 10.530 -5.837 10.580 -5.743 10.580 -5.697 10.603 -5.602 10.603 -5.576 10.595 -5.481 10.629 -5.473 10.712 -5.437 10.795 -5.429 10.878 -5.422 10.961 -5.388 11.045 -5.407 11.135 -5.417 11.219 -5.447 11.252 -5.353 11.259 -5.307 11.342 -5.271 11.433 -5.217 11.517 -5.218 11.607 -5.182 11.690 -5.166 11.774 -5.262 11.857 -5.235 11.940 -5.265 11.965 -5.360 11.981 -5.370 11.989 -5.275 12.037 -5.181 12.110 -5.087 12.126 -4.983 12.134 -4.965 12.141 -4.939 12.149 -4.844 12.149 -4.741 12.205 -4.646 12.205 -4.637 12.213 -4.611 12.279 -4.517 12.369 -4.510 12.461 -4.456 12.544 -4.402 12.627 -4.386 12.718 -4.369 12.801 -4.454 12.867 -4.447 12.883 -4.352 12.859 -4.248 12.942 -4.183 13.026 -4.184 13.116 -4.203 13.200 -4.269 13.215 -4.277 13.306 -4.288 13.321 -4.193 13.405 -4.177 13.478 -4.083 13.569 -4.000 13.635 -3.946 13.552 -3.926 13.502 -3.822 13.494 -3.766 13.410 -3.670 13.337 -3.574 13.314 -3.470 13.306 -3.423 13.362 -3.415 13.410 -3.425 13.418 -3.330 13.418 -3.225 13.509 -3.236 13.592 -3.237 13.683 -3.256 13.767 -3.230 13.815 -3.231 13.830 -3.249 13.815 -3.173 13.815 -3.078 13.774 -2.982 13.767 -2.945 13.759 -2.936 13.850 -2.890 13.940 -2.892 14.024 -2.865 14.039 -2.856 14.130 -2.820 14.221 -2.726 14.287 -2.631 14.370 -2.528 14.403 -2.424 14.380 -2.320 14.339 -2.215 14.289 -2.111 14.281 -2.093 14.314 -1.998 14.405 -1.990 14.488 -1.982 14.536 -1.975 14.610 -1.767 14.625 -1.672 14.740 -1.494 14.805 -1.382 14.821 -1.355 14.862 -1.261 14.877 -1.177 14.910 -1.053 14.918 -1.044 15.200 -0.725 15.200 -0.499 15.127 -0.402 15.192 -0.241 15.119 -0.012 15.111 0.006 15.037 0.236 15.121 0.234 15.121 0.243 15.095 0.339 15.095 0.434 15.121 0.509 15.121 0.518 15.088 0.622 15.072 0.707 15.088 0.744 15.095 0.849 15.095 0.953 15.121 0.999 15.219 1.102 15.302 1.185 15.386 1.279 15.411 1.307 15.411 1.412 15.419 1.516 15.419 1.629 15.426 1.733 15.434 1.837 15.434 1.950 15.442 2.046 15.442 2.141 15.449 2.245 15.457 2.358 15.457 2.462 15.465 2.567 15.465 2.775 15.457 2.880 15.457 2.984 15.548 3.012 15.533 3.125 15.517 3.229 15.509 3.285 15.494 3.389 15.494 3.416 15.486 3.462 15.479 3.500 15.562 3.517 15.645 3.574 15.736 3.668 15.786 3.763 15.827 3.858 15.910 3.884 15.993 3.893 16.084 3.949 16.167 3.957 16.250 3.983 16.333 4.020 16.425 4.048 16.498 4.143 16.538 4.169 16.887 4.166 16.970 4.183 17.061 4.191 17.160 4.219 17.831 4.213 17.914 4.221 19.176 4.210 19.249 4.218 19.234 4.104 19.208 4.000 19.193 3.886 19.177 3.781 19.170 3.764 19.154 3.650 19.129 3.545 19.114 3.432 19.089 3.327 19.089 3.309 19.172 3.212 19.230 3.107 19.321 3.124 19.404 3.170 19.487 3.254 19.578 3.215 19.661 3.185 19.744 3.192 19.827 3.201 19.919 3.209 19.959 3.112 20.025 3.016 20.058 2.939 20.065 2.843 20.088 2.737 20.104 2.690 20.104 2.594 20.120 2.498 20.152 2.393 20.243 2.344 20.327 2.279 20.385 2.172 20.319 2.077 20.352 1.981 20.336 1.876 20.410 1.778 20.493 1.681 20.576 1.653 20.667 1.613 20.717 1.516 20.748 1.411 20.822 1.314 20.837 1.275 20.829 1.179 20.920 1.148 21.004 1.165 21.087 1.172 21.110 1.172 21.193 1.153 21.234 1.076 21.300 0.978 21.356 0.881 21.422 0.784 21.478 0.678 21.543 0.580 21.599 0.483 21.665 0.376 21.721 0.279 21.787 0.181 21.843 0.084 21.901 -0.022 21.932 -0.061 21.965 -0.109 22.097 -0.304 22.170 -0.411 22.302 -0.607 22.376 -0.714 22.575 -1.007 22.648 -1.114 22.780 -1.310 22.845 -1.417 22.919 -1.515 22.985 -1.613 23.051 -1.720 23.116 -1.818 23.182 -1.926 23.256 -2.024 23.321 -2.122 23.387 -2.229 23.453 -2.327 23.519 -2.435 23.584 -2.533 23.650 -2.640 23.724 -2.738 23.789 -2.846 23.855 -2.944 23.921 -3.052 24.052 -3.249 24.052 -3.257 24.118 -3.356 24.184 -3.464 24.250 -3.562 24.316 -3.669 24.381 -3.768 24.447 -3.876 24.513 -3.983 24.579 -4.082 24.645 -4.190 24.710 -4.288 24.776 -4.396 24.842 -4.504 24.908 -4.602 24.974 -4.710 25.039 -4.818 25.039 -6.589 24.948 -6.577 24.865 -6.565 24.774 -6.553 24.691 -6.551 24.600 -6.539 24.517 -6.527 24.426 -6.515 24.343 -6.503 24.319 -6.503 24.221 -6.491 24.138 -6.479 24.047 -6.476 23.948 -6.464 23.923 -6.463 23.757 -6.440 23.666 -6.429 23.582 -6.417 23.491 -6.414 23.408 -6.402 23.317 -6.391 23.234 -6.379 23.194 -6.378 23.120 -6.367 23.037 -6.355 22.971 -6.353 22.888 -6.341 22.805 -6.330 22.722 -6.328 22.631 -6.316 22.464 -6.293 22.381 -6.290 22.298 -6.278 22.207 -6.267 22.124 -6.255 22.041 -6.253 21.958 -6.241 21.866 -6.230 21.783 -6.218 21.700 -6.215 21.617 -6.204 21.526 -6.192 21.443 -6.181 21.360 -6.178 21.277 -6.167 21.185 -6.155 21.102 -6.143 21.004 -6.132 20.920 -6.129 20.754 -6.106 20.663 -6.095 20.580 -6.083 20.497 -6.080 20.406 -6.068 20.239 -6.046 20.148 -6.034 20.058 -6.032 20.009 -6.021 19.926 -6.010 19.843 -6.008 19.752 -5.997 19.669 -5.986 19.586 -5.975 19.495 -5.973 19.245 -5.939 19.154 -5.937 19.071 -5.926 18.988 -5.915 18.897 -5.904 18.814 -5.902 18.730 -5.890 18.640 -5.879 18.557 -5.868 18.473 -5.866 18.390 -5.855 18.299 -5.844 18.216 -5.833 18.133 -5.831 18.034 -5.819 17.943 -5.808 17.860 -5.797 17.777 -5.787 17.693 -5.785 17.603 -5.773 17.436 -5.751 17.345 -5.749 17.262 -5.738 17.179 -5.727 17.088 -5.716 17.005 -5.705 16.922 -5.703 16.831 -5.691 16.747 -5.681 16.664 -5.670 16.574 -5.667 16.508 -5.562 16.434 -5.455 16.343 -5.406 16.260 -5.422 16.169 -5.438 16.003 -5.469 15.912 -5.484 15.829 -5.501 15.746 -5.516 15.654 -5.532 15.571 -5.547 15.571 -5.831 15.579 -5.936 15.579 -6.249 15.571 -6.352 15.579 -6.382 15.579 -7.801 15.571 -7.906 15.571 -9.277 15.620 -9.382 15.710 -9.450 15.686 -9.466 15.602 -9.472 15.511 -9.545 15.504 -9.649 15.496 -9.753 15.488 -9.762 15.447 -9.845 15.463 -9.941 15.447 -10.035 15.440 -10.082 15.465 -10.187 15.498 -10.283 15.513 -10.379 15.513 -10.579 15.505 -10.607 15.505 -10.703 15.513 -10.750 15.430 -10.765 15.357 -10.858 15.266 -10.902 15.182 -10.936 15.215 -10.955 15.298 -11.013 15.382 -11.111 15.465 -11.227 15.539 -11.325 15.622 -11.384 15.705 -11.453 15.672 -11.547 15.616 -11.641 15.624 -11.745 15.541 -11.771 15.449 -11.795 15.366 -11.830 15.283 -11.855 15.200 -11.861 15.109 -11.821 15.078 -11.820 14.995 -11.835 14.912 -11.917 14.846 -12.010 14.805 -12.076 14.854 -12.181 14.846 -12.265 ; #2281 2 43.776 7.378 43.800 7.429 43.815 7.419 43.815 7.409 43.774 7.378 ; #2282 2 40.474 8.381 40.407 8.372 40.332 8.475 40.307 8.466 40.223 8.457 40.131 8.488 40.047 8.408 40.039 8.399 39.955 8.440 39.930 8.542 39.914 8.552 39.831 8.543 39.747 8.544 39.813 8.441 39.722 8.442 39.639 8.461 39.556 8.421 39.472 8.403 39.389 8.413 39.297 8.395 39.214 8.424 39.130 8.456 39.115 8.354 39.031 8.435 39.115 8.515 38.948 8.618 38.989 8.719 38.948 8.821 38.989 8.923 39.072 9.025 39.156 9.015 39.239 9.055 39.262 9.083 39.270 9.074 39.262 9.093 39.262 9.112 39.278 9.214 39.252 9.316 39.187 9.427 39.179 9.529 39.262 9.560 39.346 9.620 39.429 9.600 39.513 9.631 39.604 9.640 39.644 9.650 39.736 9.650 39.819 9.659 39.986 9.697 40.043 9.687 40.127 9.718 40.211 9.637 40.295 9.618 40.379 9.677 40.472 9.768 40.556 9.808 40.640 9.746 40.724 9.736 40.816 9.676 40.900 9.657 40.966 9.616 40.982 9.513 41.049 9.616 41.074 9.513 41.158 9.532 41.142 9.429 41.234 9.368 41.286 9.256 41.260 9.153 41.176 9.093 41.150 8.990 41.066 8.879 40.982 8.798 40.958 8.706 40.900 8.604 40.869 8.492 40.900 8.286 40.966 8.182 40.874 8.183 40.790 8.143 40.706 8.185 40.622 8.215 40.556 8.318 40.472 8.381 ; #2283 2 54.500 19.639 54.491 19.660 54.560 19.778 54.647 19.897 54.663 19.908 54.750 19.994 54.758 20.005 54.708 20.114 54.724 20.228 54.724 20.372 54.647 20.253 54.623 20.128 54.615 20.015 54.615 20.005 54.528 19.921 54.477 19.805 54.477 19.860 54.469 19.870 54.469 19.901 54.461 20.000 54.461 20.034 54.453 20.054 54.453 20.167 54.445 20.279 54.437 20.333 54.437 20.388 54.420 20.611 54.413 20.666 54.404 20.720 54.404 20.945 54.396 21.057 54.388 21.179 54.380 21.291 54.380 21.987 54.388 22.031 54.388 22.322 54.396 22.435 54.396 22.548 54.404 22.672 54.413 22.784 54.429 22.765 54.498 22.705 54.505 22.695 54.592 22.703 54.679 22.723 54.688 22.723 54.775 22.742 54.851 22.863 54.938 22.837 54.989 22.730 55.032 22.622 55.111 22.596 55.111 22.585 55.095 22.470 55.095 22.357 55.103 22.235 55.076 22.119 55.120 22.011 55.120 21.876 55.155 21.811 55.180 21.701 55.223 21.592 55.240 21.481 55.319 21.364 55.292 21.296 55.284 21.261 55.213 21.178 55.124 21.203 55.026 21.215 54.938 21.107 54.930 20.993 54.930 20.880 54.973 20.771 54.973 20.535 55.024 20.583 55.084 20.702 55.163 20.823 55.253 20.907 55.305 20.978 55.313 20.937 55.134 20.718 55.044 20.596 55.018 20.549 54.991 20.457 54.967 20.342 54.975 20.230 54.967 20.106 54.975 19.993 54.932 19.924 54.845 19.952 54.758 19.935 54.663 19.872 54.647 19.860 54.560 19.754 54.491 19.636 ; #2284 2 68.944 28.479 68.935 28.606 68.935 28.748 68.838 28.818 68.741 28.695 68.635 28.543 68.558 28.527 68.453 28.607 68.356 28.674 68.249 28.831 68.211 29.081 68.193 29.205 68.164 29.328 68.117 29.458 68.010 29.587 67.913 29.706 67.857 29.845 67.810 29.975 67.781 30.043 67.657 30.016 67.560 29.920 67.474 29.761 67.406 29.618 67.309 29.471 67.204 29.335 67.107 29.202 67.041 29.141 66.944 29.144 66.858 29.252 66.793 29.365 66.716 29.435 66.619 29.540 66.534 29.610 66.437 29.662 66.340 29.767 66.254 29.874 66.157 29.979 66.060 30.019 66.042 30.039 65.945 30.105 65.880 30.140 65.783 30.166 65.774 30.038 65.747 29.895 65.729 29.766 65.672 29.879 65.575 29.774 65.470 29.775 65.373 29.681 65.307 29.691 65.307 29.815 65.211 29.892 65.172 29.760 65.075 29.641 64.979 29.682 64.897 29.789 64.869 29.919 64.878 30.031 64.860 30.151 64.768 30.230 64.686 30.066 64.677 30.027 64.615 30.025 64.606 30.046 64.514 30.088 64.449 30.198 64.432 30.330 64.396 30.446 64.351 30.560 64.258 30.589 64.156 30.640 64.064 30.497 63.991 30.359 63.898 30.217 63.872 30.077 63.855 30.037 63.847 30.024 63.847 30.036 63.717 30.255 63.691 30.320 63.655 30.435 63.581 30.554 63.556 30.671 63.538 30.790 63.484 30.901 63.422 31.021 63.386 31.135 63.349 31.261 63.256 31.301 63.194 31.421 63.129 31.529 63.047 31.619 62.946 31.512 62.854 31.447 62.761 31.390 62.669 31.322 62.576 31.182 62.503 31.034 62.410 30.894 62.346 30.759 62.300 30.668 62.199 30.526 62.126 30.391 62.033 30.251 61.999 30.197 61.990 30.195 61.917 30.085 61.871 30.043 61.807 29.910 61.714 29.797 61.642 29.662 61.633 29.591 61.616 29.565 61.590 29.549 61.508 29.413 61.443 29.331 61.370 29.197 61.325 29.069 61.271 28.939 61.262 28.915 61.254 28.892 61.191 28.760 61.110 28.626 61.101 28.566 61.092 28.553 61.019 28.420 61.010 28.397 60.929 28.252 60.892 28.187 60.810 28.054 60.747 27.937 60.694 27.856 60.694 27.939 60.685 28.056 60.685 28.186 60.730 28.313 60.812 28.458 60.830 28.580 60.883 28.720 60.883 28.743 60.847 28.783 60.801 28.703 60.700 28.706 60.607 28.722 60.653 28.612 60.707 28.491 60.521 28.671 60.504 28.737 60.513 28.857 60.328 29.059 60.310 29.175 60.319 29.306 60.302 29.433 60.338 29.569 60.338 29.699 60.321 29.824 60.229 29.936 60.155 30.040 60.155 30.062 60.147 30.190 60.055 30.251 60.009 30.185 60.009 30.152 60.026 30.037 60.035 30.003 60.061 29.889 60.078 29.764 60.095 29.649 60.112 29.523 60.129 29.408 60.138 29.280 60.138 29.200 60.046 29.065 59.973 29.030 59.940 28.906 59.923 28.774 59.959 28.651 59.986 28.526 59.897 28.454 59.807 28.392 59.824 28.266 59.913 28.177 59.897 28.056 59.799 28.061 59.709 28.116 59.620 28.055 59.603 28.109 59.543 28.217 59.535 28.226 59.501 28.232 59.493 28.113 59.450 27.977 59.425 27.927 59.327 27.889 59.319 27.888 59.239 27.853 59.150 27.781 59.088 27.643 59.028 27.517 58.930 27.479 58.751 27.543 58.662 27.573 58.564 27.593 58.475 27.522 58.385 27.529 58.287 27.630 58.236 27.738 58.184 27.719 58.094 27.751 58.059 27.861 58.007 27.737 58.007 27.702 57.998 27.657 57.909 27.586 57.855 27.462 57.830 27.458 57.741 27.423 57.714 27.430 57.705 27.530 57.616 27.584 57.581 27.694 57.529 27.801 57.493 27.911 57.396 27.906 57.335 27.875 57.319 27.816 57.230 27.823 57.140 27.788 57.051 27.706 57.051 27.809 57.059 27.887 57.007 27.994 56.918 27.959 56.866 28.065 56.795 28.075 56.787 28.085 56.751 28.194 56.654 28.212 56.594 28.237 56.566 28.244 56.477 28.285 56.388 28.260 56.335 28.217 56.319 28.260 56.240 28.361 56.248 28.408 56.284 28.469 56.292 28.596 56.275 28.707 56.267 28.706 56.177 28.757 56.152 28.775 56.144 28.794 56.169 28.913 56.205 29.033 56.221 29.150 56.188 29.269 56.172 29.380 56.136 29.488 56.039 29.437 55.949 29.432 55.897 29.514 55.932 29.634 55.976 29.755 55.968 29.868 56.047 29.995 56.047 30.051 56.039 30.129 56.039 30.310 56.022 30.396 56.014 30.429 55.986 30.539 55.951 30.567 55.872 30.666 55.828 30.772 55.812 30.894 55.803 30.969 55.706 30.961 55.670 30.945 55.643 30.950 55.554 30.902 55.465 30.896 55.375 30.993 55.286 31.032 55.197 30.981 55.188 30.980 55.188 30.990 55.172 30.987 55.136 30.868 55.047 30.841 54.958 30.915 54.916 31.021 54.890 31.051 54.866 31.047 54.839 31.155 54.752 31.152 54.665 31.236 54.657 31.235 54.589 31.299 54.502 31.340 54.415 31.438 54.356 31.551 54.340 31.661 54.315 31.769 54.289 31.809 54.212 31.908 54.204 31.906 54.196 31.895 54.109 31.869 54.022 31.810 54.014 31.809 53.987 31.917 54.014 32.033 54.030 32.148 53.987 32.252 53.987 32.297 53.971 32.383 53.937 32.499 53.850 32.463 53.763 32.537 53.747 32.588 53.713 32.704 53.652 32.782 53.565 32.777 53.549 32.675 53.523 32.559 53.436 32.500 53.377 32.378 53.360 32.365 53.335 32.249 53.308 32.122 53.316 32.012 53.340 31.905 53.417 31.796 53.433 31.687 53.417 31.572 53.417 31.451 53.340 31.417 53.253 31.338 53.166 31.421 53.079 31.518 53.029 31.632 52.934 31.626 52.847 31.612 52.760 31.641 52.699 31.651 52.675 31.647 52.588 31.677 52.501 31.683 52.414 31.766 52.327 31.826 52.319 31.936 52.277 32.039 52.268 32.148 52.303 32.264 52.390 32.377 52.451 32.388 52.467 32.411 52.554 32.416 52.545 32.526 52.529 32.633 52.497 32.738 52.489 32.848 52.473 32.966 52.541 33.089 52.574 33.206 52.600 33.298 52.592 33.408 52.584 33.461 52.584 33.525 52.592 33.537 52.566 33.552 52.523 33.589 52.584 33.711 52.592 33.823 52.541 33.925 52.454 34.019 52.447 34.072 52.351 34.118 52.264 34.113 52.188 34.219 52.119 34.316 52.103 34.358 52.078 34.417 51.991 34.478 51.949 34.360 51.933 34.246 51.925 34.201 51.909 34.134 51.892 34.131 51.815 34.227 51.728 34.274 51.641 34.238 51.607 34.306 51.607 34.326 51.520 34.300 51.512 34.267 51.504 34.246 51.488 34.276 51.496 34.388 51.488 34.496 51.488 34.526 51.480 34.635 51.419 34.743 51.419 34.853 51.461 34.971 51.461 35.036 51.453 35.054 51.403 35.154 51.352 35.178 51.302 35.278 51.293 35.386 51.206 35.336 51.164 35.391 51.069 35.417 50.982 35.486 50.905 35.451 50.810 35.443 50.723 35.490 50.681 35.600 50.630 35.611 50.596 35.713 50.604 35.748 50.673 35.871 50.681 35.916 50.689 36.036 50.673 36.143 50.596 36.237 50.537 36.311 50.545 36.377 50.553 36.497 50.466 36.589 50.509 36.706 50.559 36.826 50.567 36.861 50.592 36.962 50.592 37.137 50.618 37.252 50.677 37.374 50.668 37.481 50.574 37.535 50.523 37.633 50.436 37.658 50.349 37.736 50.306 37.836 50.264 37.936 50.248 37.953 50.240 37.971 50.145 38.028 50.169 38.076 50.246 38.201 50.262 38.194 50.304 38.269 50.244 38.365 50.228 38.425 50.193 38.526 50.201 38.647 50.143 38.743 50.126 38.848 50.050 38.951 50.058 39.061 50.126 39.185 50.039 39.242 49.981 39.348 50.007 39.462 49.981 39.565 49.888 39.621 49.846 39.698 49.805 39.809 49.813 39.919 49.854 39.981 49.862 40.002 49.854 40.109 49.846 40.141 49.761 40.061 49.676 40.087 49.635 40.132 49.549 40.168 49.456 40.097 49.404 40.001 49.311 39.950 49.311 39.842 49.287 39.742 49.202 39.746 49.160 39.770 49.145 39.875 49.121 39.989 49.137 40.012 49.051 40.005 49.067 39.900 49.059 39.791 48.974 39.712 48.899 39.677 48.849 39.678 48.849 39.796 48.756 39.873 48.671 39.909 48.629 39.934 48.587 39.860 48.562 39.898 48.554 39.906 48.554 39.949 48.562 40.003 48.504 40.002 48.496 39.991 48.411 39.901 48.344 39.856 48.320 39.871 48.268 39.809 48.183 39.802 48.115 39.789 48.108 39.778 48.100 39.669 48.108 39.563 48.108 39.456 48.124 39.352 48.124 39.234 48.108 39.124 48.132 39.044 48.139 38.938 48.098 38.822 48.012 38.786 47.963 38.725 47.955 38.671 47.905 38.554 47.898 38.446 47.838 38.328 47.753 38.292 47.667 38.296 47.583 38.219 47.566 38.323 47.481 38.235 47.406 38.242 47.390 38.249 47.390 38.281 47.398 38.293 47.406 38.401 47.473 38.520 47.505 38.568 47.521 38.678 47.521 38.785 47.513 38.667 47.461 38.541 47.404 38.487 47.404 38.604 47.430 38.716 47.430 38.833 47.454 38.945 47.469 38.957 47.537 39.054 47.545 39.173 47.521 39.276 47.487 39.289 47.402 39.273 47.360 39.275 47.386 39.386 47.378 39.385 47.370 39.331 47.285 39.273 47.293 39.158 47.285 39.049 47.218 38.921 47.158 38.803 47.142 38.683 47.134 38.642 47.126 38.534 47.102 38.423 47.017 38.417 47.010 38.522 46.924 38.507 46.932 38.401 46.990 38.305 46.966 38.217 46.940 38.106 46.898 37.982 46.898 37.875 46.924 37.773 46.839 37.800 46.754 37.847 46.669 37.938 46.676 38.056 46.635 38.155 46.568 38.249 46.482 38.340 46.448 38.440 46.399 38.547 46.314 38.532 46.321 38.427 46.381 38.331 46.415 38.222 46.329 38.164 46.244 38.129 46.159 38.052 46.244 38.048 46.329 38.043 46.244 37.922 46.074 37.872 45.988 37.763 45.895 37.714 45.921 37.613 45.836 37.598 45.750 37.645 45.836 37.712 45.750 37.716 45.665 37.753 45.580 37.706 45.606 37.605 45.630 37.504 45.588 37.391 45.604 37.374 45.604 37.268 45.588 37.160 45.531 37.233 45.598 37.139 45.624 37.092 45.709 36.895 45.701 36.788 45.693 36.757 45.608 36.681 45.665 36.797 45.572 36.820 45.546 36.931 45.505 36.818 45.481 36.709 45.405 36.633 45.380 36.733 45.388 36.840 45.346 36.938 45.322 37.040 45.280 37.148 45.255 37.215 45.179 37.307 45.094 37.335 45.009 37.403 44.952 37.499 44.952 37.614 44.927 37.716 44.927 37.821 45.011 37.783 44.970 37.881 44.886 37.930 44.844 38.028 44.770 38.131 44.686 38.188 44.670 38.291 44.647 38.402 44.631 38.505 44.624 38.609 44.583 38.707 44.525 38.812 44.467 38.908 44.418 39.005 44.344 39.097 44.287 39.193 44.238 39.290 44.164 39.382 44.080 39.461 44.021 39.556 43.946 39.648 43.872 39.750 43.831 39.848 43.747 39.916 43.698 40.013 43.690 40.021 43.741 40.030 43.808 40.070 43.892 40.177 43.892 40.282 43.868 40.382 43.835 40.490 43.827 40.594 43.858 40.704 43.810 40.810 43.776 40.909 43.719 41.013 43.694 41.113 43.702 41.219 43.651 41.314 43.651 41.419 43.594 41.513 43.545 41.619 43.545 41.723 43.530 41.835 43.538 41.906 43.522 42.008 43.514 42.111 43.522 42.122 43.555 42.232 43.555 42.347 43.563 42.377 43.547 42.479 43.489 42.573 43.481 42.685 43.506 42.794 43.481 42.894 43.439 43.000 43.355 43.077 43.281 43.167 43.258 43.267 43.250 43.326 43.234 43.406 43.211 43.506 43.177 43.613 43.119 43.706 43.095 43.806 43.037 43.814 42.988 43.754 42.939 43.849 42.913 43.948 42.955 44.060 42.955 44.174 42.962 44.207 43.019 44.269 43.044 44.387 43.076 44.497 43.091 44.605 43.083 44.654 43.033 44.748 42.949 44.802 43.033 44.850 43.083 44.964 43.050 45.008 43.025 45.086 43.025 45.190 42.951 45.279 42.866 45.355 42.874 45.470 42.882 45.575 42.856 45.674 42.808 45.769 42.792 45.765 42.708 45.729 42.616 45.682 42.532 45.675 42.500 45.773 42.450 45.866 42.393 45.968 42.359 46.065 42.336 46.164 42.336 46.278 42.277 46.369 42.236 46.465 42.236 46.474 42.228 46.576 42.172 46.678 42.195 46.787 42.103 46.827 42.070 46.924 41.986 47.020 41.902 47.063 41.902 47.176 41.810 47.229 41.726 47.272 41.642 47.336 41.608 47.442 41.593 47.542 41.577 47.642 41.554 47.750 41.554 47.854 41.638 47.912 41.729 48.035 41.814 48.081 41.839 48.190 41.896 48.316 41.970 48.435 42.037 48.468 42.129 48.548 42.178 48.590 42.234 48.498 42.260 48.400 42.352 48.348 42.436 48.315 42.520 48.229 42.604 48.177 42.688 48.091 42.755 48.002 42.839 47.928 42.923 47.875 42.955 47.778 43.046 47.725 43.130 47.723 43.215 47.690 43.281 47.590 43.330 47.496 43.381 47.476 43.473 47.495 43.557 47.503 43.641 47.603 43.682 47.497 43.767 47.496 43.858 47.535 43.942 47.552 44.035 47.582 44.119 47.629 44.203 47.698 44.228 47.599 44.136 47.550 44.052 47.513 43.968 47.485 43.876 47.475 43.917 47.370 43.950 47.408 44.043 47.447 44.126 47.497 44.210 47.431 44.294 47.388 44.379 47.323 44.471 47.282 44.555 47.248 44.547 47.131 44.631 47.066 44.698 46.965 44.713 46.863 44.721 46.760 44.813 46.696 44.898 46.703 44.989 46.764 45.065 46.887 45.072 46.889 45.140 47.010 45.225 46.988 45.140 47.051 45.225 47.113 45.318 47.218 45.411 47.260 45.497 47.290 45.590 47.383 45.675 47.423 45.768 47.497 45.853 47.517 45.899 47.540 45.980 47.464 46.066 47.390 46.050 47.493 45.965 47.566 45.879 47.617 45.965 47.607 46.058 47.598 46.091 47.554 46.058 47.662 46.008 47.756 45.958 47.860 46.044 47.861 46.052 47.956 46.078 48.079 46.062 48.181 46.147 48.295 46.155 48.403 46.197 48.372 46.264 48.494 46.290 48.574 46.222 48.664 46.173 48.758 46.258 48.769 46.282 48.658 46.375 48.724 46.407 48.637 46.433 48.760 46.399 48.858 46.466 48.885 46.500 49.009 46.500 49.019 46.466 49.126 46.559 49.130 46.645 49.141 46.595 49.245 46.671 49.232 46.712 49.126 46.754 49.030 46.811 48.928 46.803 48.864 46.871 48.765 46.886 48.706 46.920 48.599 46.920 48.588 46.988 48.498 47.003 48.512 47.089 48.640 47.063 48.740 47.013 48.835 47.021 48.963 47.115 49.028 47.200 48.943 47.293 48.859 47.386 48.766 47.471 48.715 47.557 48.661 47.650 48.612 47.743 48.528 47.793 48.433 47.878 48.347 47.963 48.283 48.048 48.187 48.090 48.090 48.098 47.985 48.090 47.865 48.082 47.756 48.098 47.643 48.132 47.544 48.124 47.434 48.030 47.359 48.072 47.252 48.139 47.160 48.233 47.173 48.318 47.121 48.375 47.242 48.469 47.170 48.554 47.157 48.579 47.144 48.603 47.021 48.637 46.912 48.663 46.800 48.663 46.770 48.671 46.752 48.697 46.630 48.789 46.567 48.883 46.622 48.968 46.662 49.025 46.695 49.101 46.734 49.150 46.755 49.244 46.821 49.259 46.857 49.268 46.879 49.327 47.002 49.420 47.077 49.506 47.065 49.573 46.972 49.614 46.864 49.690 46.829 50.100 46.931 50.187 47.032 50.222 47.150 50.290 47.289 50.333 47.332 50.420 47.366 50.489 47.320 50.576 47.334 50.670 47.470 50.748 47.612 50.705 47.709 50.644 47.801 50.576 47.900 50.507 47.990 50.456 48.049 50.379 48.136 50.292 48.164 50.233 48.232 50.165 48.321 50.130 48.420 50.146 48.534 50.181 48.663 50.213 48.759 50.290 48.900 50.325 48.931 50.367 48.911 50.444 48.824 50.618 48.746 50.705 48.728 50.800 48.713 50.887 48.719 50.938 48.624 50.913 48.737 50.887 48.838 50.929 48.960 51.007 49.103 51.083 49.236 51.099 49.350 51.186 49.473 51.281 49.405 51.368 49.452 51.395 49.570 51.395 49.799 51.472 49.943 51.488 49.968 51.522 50.033 51.538 50.147 51.554 50.262 51.597 50.386 51.684 50.434 51.742 50.561 51.829 50.579 51.925 50.639 51.909 50.745 51.874 50.844 51.961 50.830 52.048 50.814 52.021 50.916 51.971 51.020 51.971 51.175 51.979 51.298 51.929 51.392 51.842 51.364 51.755 51.447 51.771 51.526 51.822 51.652 51.744 51.738 51.831 51.833 51.918 51.871 51.961 52.005 51.945 52.121 52.014 52.264 52.064 52.391 51.969 52.413 51.882 52.495 51.795 52.534 51.779 52.549 51.744 52.612 51.753 52.735 51.769 52.861 51.735 52.960 51.759 53.032 51.759 53.152 51.775 53.278 51.775 53.398 51.732 53.494 51.706 53.606 51.611 53.649 51.524 53.696 51.490 53.794 51.474 53.899 51.458 54.014 51.398 54.104 51.398 54.114 51.348 54.171 51.253 54.225 51.192 54.315 51.176 54.419 51.142 54.527 51.047 54.451 50.960 54.443 50.873 54.433 50.812 54.522 50.812 54.533 50.855 54.656 50.942 54.696 51.029 54.672 51.124 54.684 51.201 54.590 51.288 54.567 51.322 54.699 51.279 54.794 51.237 54.899 51.194 54.971 51.186 55.022 51.099 55.102 51.049 55.204 50.988 55.293 50.938 55.385 50.954 55.510 50.885 55.595 50.826 55.695 50.895 55.828 50.929 55.950 51.007 56.086 51.094 56.148 51.128 56.160 51.186 56.290 51.245 56.421 51.340 56.475 51.324 56.589 51.273 56.680 51.360 56.742 51.352 56.860 51.360 56.972 51.360 57.082 51.395 57.205 51.308 57.237 51.265 57.342 51.178 57.407 51.152 57.507 51.152 57.517 51.213 57.649 51.197 57.753 51.291 57.777 51.378 57.776 51.405 57.819 51.389 57.923 51.373 58.027 51.356 58.130 51.425 58.276 51.451 58.360 51.364 58.448 51.364 58.511 51.338 58.622 51.251 58.623 51.156 58.608 51.087 58.692 51.079 58.799 51.002 58.890 50.976 58.990 50.976 59.043 50.960 59.147 50.960 59.255 50.925 59.362 50.925 59.472 50.891 59.579 50.804 59.513 50.812 59.625 50.828 59.741 50.915 59.883 50.931 59.899 51.027 59.946 51.114 59.990 51.121 59.993 51.138 60.009 51.154 60.068 51.138 60.172 51.061 60.186 51.002 60.283 50.976 60.382 50.968 60.499 50.968 60.609 50.952 60.712 50.968 60.838 50.992 60.957 51.027 61.090 51.043 61.206 51.067 61.325 51.117 61.454 51.204 61.478 51.300 61.506 51.332 61.519 51.427 61.546 51.514 61.580 51.547 61.703 51.554 61.663 51.623 61.580 51.710 61.517 51.710 61.507 51.726 61.393 51.742 61.289 51.742 61.179 51.759 61.075 51.801 60.982 51.896 60.965 51.896 60.901 51.904 60.793 51.904 60.552 52.007 60.482 52.094 60.442 52.110 60.327 52.153 60.233 52.145 60.119 52.222 60.028 52.273 60.048 52.273 60.213 52.341 60.360 52.428 60.504 52.428 60.737 52.515 60.882 52.592 61.033 52.608 61.083 52.685 61.003 52.772 60.983 52.815 60.868 52.902 60.837 52.936 60.740 53.023 60.774 53.092 60.912 53.152 61.048 53.248 61.031 53.255 61.156 53.282 61.221 53.255 61.322 53.290 61.458 53.264 61.569 53.221 61.663 53.237 61.781 53.245 61.906 53.203 62.011 53.290 62.158 53.377 62.139 53.403 62.038 53.419 61.922 53.436 61.817 53.504 61.723 53.478 61.601 53.494 61.495 53.536 61.401 53.536 61.278 53.596 61.180 53.683 61.225 53.743 61.361 53.701 61.456 53.769 61.595 53.846 61.514 53.838 61.399 53.812 61.267 53.838 61.154 53.873 61.056 53.915 60.961 53.939 61.083 54.026 61.196 54.087 61.231 54.129 61.135 54.198 61.040 54.206 61.155 54.190 61.261 54.277 61.296 54.311 61.433 54.261 61.535 54.253 61.543 54.237 61.648 54.253 61.689 54.253 61.822 54.202 61.914 54.194 62.044 54.281 62.145 54.273 62.254 54.273 62.366 54.265 62.475 54.178 62.484 54.152 62.585 54.239 62.611 54.326 62.657 54.333 62.783 54.342 62.899 54.350 63.025 54.350 63.137 54.437 63.219 54.429 63.328 54.420 63.400 54.455 63.538 54.489 63.664 54.498 63.780 54.455 63.885 54.447 63.902 54.481 64.017 54.568 64.098 54.568 64.211 54.585 64.341 54.619 64.478 54.635 64.598 54.610 64.653 54.594 64.770 54.645 64.880 54.637 64.989 54.637 65.000 54.578 65.087 54.629 65.222 54.716 65.194 54.803 65.308 54.871 65.461 54.880 65.578 54.853 65.679 54.914 65.818 54.956 65.950 54.869 66.011 54.886 66.098 54.912 66.222 54.936 66.356 54.963 66.481 54.963 66.594 54.971 66.710 55.005 66.850 55.005 66.963 55.041 67.104 55.041 67.217 55.092 67.356 55.101 67.484 55.101 67.597 55.128 67.734 55.217 67.879 55.200 67.984 55.200 68.097 55.236 68.191 55.244 68.216 55.271 68.241 55.307 68.314 55.350 68.223 55.448 68.294 55.440 68.403 55.440 68.527 55.519 68.681 55.608 68.716 55.608 68.761 55.583 68.873 55.592 68.991 55.681 68.937 55.672 69.046 55.645 69.167 55.594 69.253 55.637 69.342 55.610 69.428 55.602 69.559 55.594 69.679 55.550 69.791 55.498 69.887 55.454 69.988 55.454 70.009 55.419 70.125 55.402 70.230 55.454 70.371 55.544 70.450 55.527 70.542 55.562 70.674 55.562 70.787 55.473 70.819 55.413 70.900 55.342 70.976 55.244 70.955 55.184 70.957 55.167 70.948 55.097 71.000 55.007 71.042 54.981 71.142 54.938 71.245 54.843 71.134 54.748 71.143 54.661 71.200 54.574 71.125 54.540 70.985 54.453 71.056 54.411 71.135 54.384 71.246 54.445 71.387 54.376 71.487 54.384 71.604 54.411 71.729 54.514 71.824 54.505 71.942 54.463 72.045 54.463 72.158 54.540 72.083 54.635 72.129 54.585 72.238 54.524 72.332 54.429 72.373 54.404 72.485 54.352 72.370 54.265 72.416 54.170 72.435 54.239 72.591 54.246 72.708 54.324 72.633 54.307 72.513 54.394 72.634 54.394 72.757 54.386 72.876 54.362 72.977 54.275 73.046 54.241 73.152 54.224 73.256 54.241 73.397 54.248 73.524 54.344 73.660 54.328 73.673 54.319 73.680 54.251 73.723 54.234 73.726 54.139 73.699 54.139 73.542 54.107 73.404 54.020 73.340 53.925 73.238 53.917 73.234 53.830 73.314 53.795 73.408 53.708 73.431 53.751 73.506 53.838 73.614 53.891 73.763 53.923 73.902 53.907 73.993 53.848 74.075 53.848 74.086 53.873 74.231 53.777 74.305 53.761 74.420 53.856 74.467 53.960 74.540 54.036 74.702 54.105 74.859 54.089 74.973 54.081 75.024 54.097 75.053 54.139 75.140 54.200 75.270 54.259 75.412 54.354 75.406 54.362 75.534 54.370 75.650 54.394 75.741 54.437 75.876 54.471 76.006 54.514 76.161 54.601 76.261 54.592 76.333 54.592 76.467 54.688 76.629 54.696 76.746 54.722 76.873 54.627 76.734 54.576 76.820 54.481 76.759 54.394 76.625 54.420 76.526 54.386 76.386 54.309 76.468 54.222 76.535 54.206 76.571 54.156 76.667 54.113 76.779 54.071 76.890 54.028 76.990 54.002 77.020 53.960 77.131 53.909 77.227 53.866 77.317 53.832 77.374 53.790 77.474 53.739 77.580 53.688 77.675 53.628 77.777 53.612 77.801 53.553 77.893 53.476 77.964 53.381 78.046 53.294 78.122 53.225 78.197 53.138 78.283 53.061 78.364 52.993 78.438 52.906 78.503 52.829 78.584 52.813 78.596 52.735 78.677 52.648 78.751 52.561 78.826 52.467 78.907 52.380 78.972 52.293 79.047 52.224 79.098 52.147 79.177 52.060 79.241 51.965 79.311 51.878 79.396 51.791 79.470 51.696 79.539 51.593 79.605 51.247 79.857 51.160 79.930 51.110 79.957 51.101 79.973 51.067 80.064 51.154 80.034 51.128 80.140 51.223 80.265 51.247 80.398 51.334 80.445 51.421 80.394 51.516 80.490 51.516 80.609 51.603 80.677 51.579 80.774 51.579 80.894 51.492 80.967 51.500 81.082 51.500 81.146 51.483 81.147 51.441 81.134 51.433 81.130 51.338 81.058 51.251 81.076 51.251 81.186 51.267 81.305 51.215 81.396 51.128 81.435 51.041 81.454 51.032 81.546 51.041 81.648 51.067 81.782 51.075 81.896 51.067 81.968 51.016 82.060 51.016 82.169 51.059 82.313 51.043 82.414 51.059 82.532 51.110 82.670 51.204 82.786 51.188 82.897 51.204 83.016 51.300 83.089 51.300 83.352 51.257 83.459 51.241 83.560 51.206 83.660 51.182 83.756 51.130 83.846 51.079 83.927 50.992 83.941 50.992 83.952 50.984 83.958 50.942 84.053 50.915 84.092 50.828 84.152 50.741 84.146 50.646 84.202 50.559 84.229 50.517 84.324 50.525 84.438 50.492 84.539 50.466 84.643 50.450 84.743 50.407 84.828 50.382 84.922 50.304 84.921 50.304 84.911 50.288 84.902 50.201 84.916 50.201 84.926 50.193 84.975 50.106 85.011 50.045 85.095 49.951 85.109 49.884 85.185 49.926 85.314 49.894 85.417 49.926 85.541 49.876 85.635 49.852 85.732 49.876 85.862 49.819 85.943 49.826 86.055 49.834 86.168 49.920 86.240 49.920 86.251 49.987 86.393 50.011 86.396 50.019 86.400 50.052 86.472 50.094 86.583 50.052 86.667 49.965 86.576 49.880 86.524 49.856 86.631 49.830 86.726 49.745 86.760 49.712 86.852 49.618 86.890 49.561 86.970 49.553 87.019 49.553 87.072 49.537 87.183 49.487 87.223 49.402 87.266 49.386 87.366 49.436 87.510 49.478 87.649 49.478 87.745 49.486 87.868 49.543 88.005 49.636 88.062 49.721 88.072 49.771 88.206 49.779 88.319 49.779 88.428 49.805 88.549 49.753 88.642 49.745 88.746 49.830 88.780 49.797 88.881 49.781 88.982 49.823 89.112 49.908 89.092 49.916 89.215 49.908 89.320 49.942 89.347 49.983 89.488 50.017 89.615 50.094 89.553 50.181 89.562 50.208 89.558 50.250 89.693 50.250 89.802 50.276 89.914 50.292 89.934 50.300 89.939 50.387 89.982 50.414 90.117 50.464 90.257 50.499 90.387 50.515 90.516 50.515 90.625 50.602 90.709 50.663 90.855 50.731 91.007 50.739 91.121 50.774 91.262 50.766 91.367 50.853 91.474 50.940 91.602 50.998 91.748 51.014 91.878 50.998 91.978 50.990 91.993 50.990 92.113 51.067 92.235 51.154 92.269 51.138 92.378 51.085 92.409 51.061 92.504 50.992 92.580 51.027 92.711 51.103 92.869 51.008 92.918 50.966 92.902 50.931 92.944 50.897 93.032 50.913 93.161 50.905 93.276 50.922 93.396 50.887 93.484 50.887 93.603 50.879 93.717 50.887 93.843 50.879 93.947 50.879 94.166 50.826 94.241 50.731 94.266 50.636 94.281 50.549 94.289 50.480 94.354 50.438 94.436 50.369 94.511 50.327 94.593 50.361 94.724 50.353 94.828 50.345 94.899 50.337 94.914 50.320 94.914 50.304 94.936 50.262 95.028 50.262 95.256 50.246 95.354 50.211 95.395 50.195 95.428 50.254 95.575 50.304 95.693 50.313 95.808 50.304 95.823 50.270 95.910 50.304 95.964 50.304 96.018 50.280 96.121 50.246 96.208 50.195 96.283 50.228 96.434 50.169 96.504 50.219 96.657 50.211 96.770 50.203 96.873 50.153 96.949 50.110 97.030 50.050 97.109 50.041 97.212 50.084 97.359 50.179 97.508 50.266 97.639 50.242 97.742 50.311 97.884 50.398 98.051 50.485 98.120 50.572 98.179 50.659 98.227 50.746 98.232 50.780 98.255 50.875 98.209 50.883 98.105 50.925 98.014 51.012 97.963 51.089 97.906 51.176 97.944 51.227 97.857 51.288 97.789 51.364 97.820 51.460 97.874 51.547 97.912 51.633 97.906 51.728 97.992 51.771 98.020 51.779 98.136 51.771 98.194 51.858 98.210 51.953 98.254 52.040 98.334 52.066 98.462 52.090 98.589 52.177 98.712 52.360 98.837 52.447 98.876 52.447 98.907 52.378 98.981 52.351 99.074 52.327 99.168 52.293 99.255 52.250 99.336 52.234 99.446 52.218 99.545 52.210 99.660 52.175 99.747 52.125 99.823 52.074 99.908 52.058 99.974 52.066 100.090 52.050 100.199 52.050 100.531 52.026 100.634 51.991 100.721 51.965 100.823 51.957 100.838 51.923 100.924 51.898 101.028 51.856 101.118 51.856 101.229 51.803 101.302 51.787 101.411 51.813 101.540 51.787 101.632 51.779 101.737 51.744 101.832 51.737 101.937 51.720 102.046 51.688 102.133 51.593 102.153 51.506 102.145 51.411 102.155 51.334 102.210 51.239 102.217 51.152 102.189 51.094 102.268 51.007 102.270 50.920 102.262 50.877 102.342 50.861 102.450 50.741 102.585 50.733 102.698 50.691 102.777 50.648 102.867 50.640 102.971 50.648 103.085 50.632 103.193 50.545 103.228 50.545 103.337 50.529 103.435 50.494 103.529 50.478 103.637 50.539 103.790 50.505 103.875 50.489 103.983 50.505 104.103 50.592 104.275 50.661 104.443 50.661 104.553 50.703 104.693 50.719 104.824 50.746 104.952 50.729 104.994 50.755 105.122 50.824 105.291 50.808 105.389 50.792 105.487 50.766 105.587 50.774 105.712 50.766 105.816 50.757 105.919 50.723 106.014 50.715 106.018 50.681 106.023 50.681 106.067 50.654 106.166 50.654 106.276 50.681 106.404 50.681 106.448 50.689 106.474 50.673 106.681 50.638 106.774 50.588 106.846 50.553 106.930 50.476 106.993 50.434 107.015 50.383 107.097 50.349 107.181 50.349 107.290 50.325 107.345 50.325 107.682 50.298 107.759 50.306 107.798 50.290 107.905 50.282 107.909 50.195 107.877 50.100 107.893 50.013 107.869 49.912 108.020 49.896 108.118 49.845 108.204 49.787 108.276 49.745 108.357 49.696 108.434 49.688 108.548 49.704 108.667 49.696 108.781 49.712 108.886 49.688 108.980 49.712 109.103 49.704 109.216 49.662 109.308 49.636 109.400 49.587 109.477 49.594 109.600 49.579 109.708 49.563 109.807 49.563 109.935 49.547 110.033 49.531 110.141 49.589 110.298 49.565 110.390 49.549 110.488 49.508 110.580 49.508 110.688 49.533 110.813 49.609 110.971 49.666 111.117 49.723 111.264 49.716 111.367 49.723 111.490 49.765 111.626 49.757 111.740 49.757 111.849 49.783 111.985 49.807 112.109 49.848 112.245 49.890 112.392 49.882 112.495 49.882 112.528 49.858 112.585 49.858 112.694 49.916 112.851 50.009 113.001 50.096 113.069 50.183 113.157 50.270 113.334 50.357 113.489 50.407 113.625 50.442 113.761 50.511 113.925 50.588 114.094 50.630 114.237 50.614 114.344 50.597 114.440 50.614 114.573 50.606 114.675 50.590 114.782 50.555 114.864 50.521 114.945 50.470 115.001 50.410 115.062 50.359 115.141 50.317 115.216 50.282 115.297 50.266 115.403 50.266 115.512 50.250 115.608 50.242 115.665 50.345 115.966 50.361 115.999 50.387 116.129 50.371 116.235 50.363 116.269 50.329 116.351 50.313 116.456 50.296 116.552 50.228 116.606 50.193 116.631 50.151 116.716 50.116 116.797 50.074 116.881 50.050 116.971 50.023 117.058 49.999 117.157 49.991 117.260 49.991 117.389 49.967 117.481 49.933 117.566 49.900 117.661 49.900 117.747 49.884 117.789 49.969 117.945 49.985 117.976 50.072 118.132 50.167 118.306 50.254 118.431 50.331 118.603 50.323 118.682 50.349 118.813 50.349 118.952 50.365 119.042 50.373 119.102 50.460 119.248 50.537 119.292 50.563 119.293 50.659 119.286 50.675 119.309 50.717 119.235 50.725 119.123 50.812 119.196 50.907 119.231 50.994 119.304 51.089 119.447 51.176 119.487 51.211 119.485 51.298 119.537 51.385 119.664 51.472 119.737 51.558 119.757 51.654 119.837 51.704 119.900 51.791 119.962 51.878 120.003 51.965 120.056 52.052 120.194 52.139 120.312 52.234 120.490 52.277 120.637 52.364 120.722 52.406 120.704 52.493 120.789 52.580 120.766 52.648 120.703 52.707 120.642 52.794 120.696 52.881 120.717 52.932 120.648 52.966 120.556 53.001 120.474 52.985 120.340 52.950 120.199 52.958 120.084 53.045 120.060 53.132 120.036 53.183 120.201 53.278 120.360 53.304 120.372 53.391 120.489 53.478 120.652 53.565 120.747 53.642 120.936 53.650 121.055 53.634 121.153 53.650 121.279 53.676 121.413 53.684 121.475 53.692 121.503 53.735 121.652 53.761 121.786 53.777 121.912 53.769 122.018 53.820 122.173 53.846 122.309 53.804 122.393 53.804 122.516 53.812 122.635 53.812 122.757 53.820 122.876 53.854 123.019 53.854 123.141 53.889 123.203 53.897 123.322 53.880 123.430 53.856 123.520 53.899 123.600 53.856 123.674 53.856 123.684 53.848 123.753 53.840 123.858 53.808 123.941 53.755 124.016 53.713 124.090 53.729 124.216 53.686 124.290 53.618 124.341 53.575 124.415 53.559 124.523 53.559 124.635 53.509 124.712 53.500 124.816 53.468 124.898 53.563 125.015 53.563 125.181 53.529 125.273 53.494 125.353 53.460 125.444 53.417 125.518 53.425 125.636 53.373 125.712 53.296 125.673 53.262 125.754 53.270 125.872 53.193 125.914 53.142 125.991 53.092 126.067 52.996 125.992 52.944 126.056 52.936 126.170 52.867 126.219 52.833 126.300 52.772 126.366 52.685 126.355 52.653 126.437 52.566 126.412 52.550 126.509 52.491 126.577 52.404 126.478 52.317 126.498 52.256 126.564 52.188 126.613 52.127 126.669 52.058 126.728 52.023 126.751 51.936 126.747 51.902 126.837 51.815 126.802 51.791 126.891 51.704 126.887 51.662 126.959 51.575 126.902 51.480 126.927 51.411 126.974 51.350 127.040 51.334 127.068 51.284 127.133 51.215 127.192 51.156 127.249 51.069 127.268 51.008 127.322 50.922 127.309 50.826 127.277 50.739 127.296 50.670 127.344 50.644 127.439 50.636 127.452 50.602 127.541 50.567 127.531 50.480 127.463 50.393 127.428 50.351 127.434 50.264 127.442 50.177 127.451 50.153 127.538 50.076 127.589 50.034 127.659 49.983 127.735 49.983 127.844 49.967 127.918 49.933 128.011 49.933 128.228 49.975 128.313 49.983 128.428 49.967 128.534 50.001 128.560 50.001 128.581 49.975 128.634 49.951 128.702 49.866 128.722 49.850 128.818 49.843 128.898 49.767 128.958 49.767 129.175 49.743 129.265 49.828 129.301 49.813 129.407 49.797 129.438 49.712 129.445 49.670 129.531 49.670 129.640 49.585 129.669 49.577 129.716 49.577 129.736 49.502 129.796 49.460 129.827 49.418 129.903 49.410 129.927 49.377 129.966 49.335 130.042 49.293 130.117 49.285 130.219 49.309 130.356 49.268 130.432 49.293 130.561 49.277 130.601 49.192 130.544 49.099 130.491 49.014 130.468 48.982 130.551 48.897 130.592 48.889 130.704 48.804 130.703 48.746 130.766 48.697 130.757 48.611 130.690 48.526 130.604 48.450 130.662 48.435 130.683 48.383 130.751 48.334 130.829 48.266 130.884 48.173 130.884 48.115 130.947 48.108 131.048 48.124 131.080 48.165 131.230 48.165 131.455 48.157 131.481 48.090 131.536 48.124 131.670 48.108 131.765 48.108 131.872 48.132 132.008 48.132 132.116 48.165 132.249 48.157 132.361 48.141 132.465 48.209 132.539 48.294 132.606 48.379 132.694 48.447 132.855 48.532 133.030 48.540 133.144 48.532 133.255 48.532 133.363 48.498 133.444 48.514 133.477 48.607 133.551 48.675 133.713 48.691 133.833 48.748 133.997 48.756 134.033 48.772 134.154 48.796 134.226 48.811 134.346 48.796 134.366 48.788 134.403 48.788 134.510 48.772 134.517 48.712 134.577 48.688 134.676 48.655 134.629 48.570 134.623 48.476 134.517 48.391 134.522 48.324 134.575 48.239 134.624 48.213 134.656 48.155 134.717 48.070 134.639 47.985 134.580 47.892 134.496 47.866 134.358 47.781 134.183 47.695 134.105 47.610 134.143 47.517 134.142 47.459 134.053 47.374 134.018 47.281 133.974 47.249 133.959 47.164 133.975 47.071 133.934 47.029 133.881 46.972 133.835 46.964 133.839 46.879 133.802 46.829 133.868 46.744 133.833 46.658 133.786 46.583 133.620 46.498 133.647 46.405 133.593 46.397 133.587 46.312 133.436 46.270 133.403 46.185 133.398 46.100 133.383 46.014 133.326 45.973 133.187 45.887 133.059 45.864 133.040 45.778 133.015 45.685 132.995 45.600 133.021 45.514 132.945 45.473 132.797 45.497 132.732 45.523 132.637 45.538 132.543 45.554 132.450 45.578 132.363 45.594 132.260 45.617 132.172 45.634 132.079 45.649 131.986 45.675 131.890 45.675 131.870 45.733 131.809 45.717 131.691 45.658 131.655 45.572 131.538 45.487 131.453 45.429 131.379 45.404 131.254 45.346 131.094 45.362 131.001 45.295 130.875 45.201 130.897 45.134 130.961 45.041 130.995 44.989 131.008 44.898 131.038 44.823 131.070 44.739 131.095 44.655 131.130 44.563 131.161 44.479 131.154 44.463 131.133 44.371 131.142 44.287 131.116 44.203 131.109 44.111 131.107 44.027 131.111 43.942 131.136 43.919 131.181 43.827 131.211 43.743 131.173 43.659 131.106 43.575 131.119 43.483 131.015 43.398 131.021 43.314 130.944 43.307 130.825 43.322 130.731 43.281 130.589 43.240 130.457 43.156 130.318 43.130 130.405 43.097 130.497 43.013 130.522 42.921 130.492 42.872 130.519 42.823 130.568 42.739 130.604 42.831 130.675 42.915 130.732 42.999 130.759 43.041 130.674 43.082 130.598 43.130 130.735 43.089 130.821 43.089 130.925 43.074 131.018 43.041 131.100 43.124 131.167 43.209 131.182 43.301 131.338 43.385 131.291 43.393 131.410 43.477 131.467 43.561 131.556 43.645 131.595 43.729 131.662 43.745 131.673 43.761 131.797 43.735 131.884 43.643 131.822 43.559 131.774 43.510 131.845 43.594 131.973 43.678 132.135 43.763 132.193 43.678 132.218 43.594 132.230 43.502 132.208 43.418 132.192 43.334 132.185 43.375 132.327 43.342 132.409 43.285 132.474 43.301 132.598 43.301 132.671 43.217 132.696 43.266 132.844 43.232 132.925 43.148 132.918 43.132 133.011 43.189 133.164 43.205 133.279 43.262 133.423 43.295 133.550 43.295 133.654 43.328 133.782 43.412 133.945 43.497 134.073 43.563 134.234 43.622 134.380 43.696 134.536 43.780 134.687 43.864 134.829 43.931 134.981 44.015 135.059 44.107 135.105 44.158 135.245 44.214 135.305 44.298 135.384 44.373 135.332 44.457 135.484 44.541 135.515 44.626 135.555 44.710 135.666 44.801 135.712 44.886 135.855 44.901 135.971 44.993 136.047 45.078 136.082 45.164 136.150 45.195 136.291 45.289 136.355 45.374 136.414 45.424 136.473 45.516 136.621 45.602 136.658 45.687 136.800 45.772 136.940 45.866 137.067 45.951 137.155 46.036 137.244 46.121 137.397 46.207 137.518 46.300 137.593 46.385 137.673 46.470 137.781 46.555 137.861 46.641 137.970 46.726 138.000 46.811 138.038 46.905 138.114 46.990 138.236 47.075 138.234 47.168 138.278 47.253 138.338 47.347 138.395 47.432 138.445 47.517 138.516 47.602 138.649 47.688 138.739 47.781 138.878 47.822 138.922 47.907 138.941 47.993 139.011 48.086 139.099 48.171 139.127 48.257 139.198 48.349 139.308 48.435 139.452 48.520 139.566 48.605 139.647 48.699 139.791 48.748 139.885 48.833 139.967 48.927 140.076 48.994 140.047 49.079 140.056 49.172 140.092 49.257 140.111 49.343 140.225 49.436 140.229 49.428 140.114 49.444 140.180 49.529 140.209 49.622 140.235 49.690 140.252 49.690 140.199 49.775 140.292 49.860 140.321 49.953 140.400 50.039 140.382 50.135 140.391 50.203 140.350 50.264 140.291 50.359 140.365 50.418 140.456 50.505 140.596 50.496 140.479 50.565 140.438 50.652 140.448 50.739 140.461 50.835 140.436 50.911 140.403 50.998 140.403 51.085 140.426 51.172 140.439 51.259 140.492 51.354 140.577 51.441 140.664 51.528 140.664 51.615 140.654 51.710 140.676 51.797 140.860 51.840 140.792 51.927 140.891 52.021 140.899 52.090 141.079 52.186 141.175 52.273 141.242 52.360 141.428 52.402 141.351 52.489 141.351 52.584 141.491 52.634 141.533 52.634 141.422 52.677 141.343 52.712 141.268 52.815 141.130 52.902 141.164 52.996 141.281 53.083 141.294 53.152 141.253 53.239 141.243 53.273 141.167 53.300 141.072 53.335 140.985 53.393 140.933 53.444 140.873 53.478 140.787 53.512 140.699 53.520 140.707 53.529 140.706 53.529 140.828 53.478 140.888 53.462 140.983 53.427 141.070 53.393 141.146 53.480 141.225 53.480 141.336 53.567 141.425 53.618 141.366 53.713 141.397 53.721 141.284 53.737 141.178 53.771 141.091 53.806 141.015 53.830 140.927 53.917 140.894 53.943 140.808 53.967 140.711 54.010 140.642 54.036 140.546 54.095 140.494 54.147 140.425 54.172 140.327 54.222 140.256 54.283 140.206 54.378 140.213 54.447 140.161 54.479 140.082 54.495 139.975 54.503 139.941 54.554 139.870 54.589 139.782 54.657 139.739 54.681 139.641 54.612 139.447 54.578 139.300 54.570 139.179 54.587 139.073 54.603 138.976 54.619 138.880 54.643 138.781 54.677 138.693 54.669 138.573 54.635 138.660 54.548 138.661 54.453 138.600 54.445 138.704 54.358 138.705 54.263 138.631 54.176 138.618 54.089 138.586 53.994 138.511 53.907 138.424 53.899 138.304 53.882 138.165 53.969 138.263 54.065 138.327 54.152 138.458 54.246 138.533 54.333 138.508 54.317 138.380 54.230 138.281 54.136 138.241 54.049 138.089 53.987 137.916 53.945 137.751 53.929 137.622 53.937 137.509 53.921 137.380 53.921 137.268 53.953 137.178 54.040 137.275 54.049 137.405 54.143 137.510 54.230 137.587 54.317 137.763 54.333 137.656 54.333 137.544 54.368 137.455 54.411 137.385 54.418 137.281 54.487 137.237 54.503 137.376 54.598 137.526 54.694 137.656 54.677 137.516 54.685 137.401 54.653 137.256 54.566 137.080 54.479 137.035 54.418 137.098 54.411 137.213 54.324 137.171 54.228 137.107 54.221 136.987 54.237 136.891 54.150 136.728 54.176 136.632 54.253 136.596 54.348 136.612 54.435 136.698 54.522 136.729 54.580 136.665 54.676 136.725 54.726 136.653 54.813 136.729 54.908 136.734 54.995 136.697 54.979 136.569 54.963 136.440 54.971 136.324 54.979 136.208 54.987 136.093 54.971 135.964 54.944 135.825 54.944 135.712 54.953 135.597 55.030 135.553 55.047 135.447 55.055 135.344 55.082 135.260 55.074 135.128 55.153 135.101 55.215 135.045 55.305 135.132 55.365 135.232 55.463 135.406 55.506 135.578 55.569 135.760 55.658 135.959 55.747 136.148 55.845 136.234 55.934 136.344 55.995 136.526 56.022 136.680 56.111 136.825 56.163 136.997 56.252 137.118 56.331 137.321 56.421 137.421 56.510 137.647 56.599 137.727 56.689 137.860 56.787 138.027 56.814 138.172 56.866 138.106 56.945 138.081 57.042 138.248 57.132 138.385 57.221 138.452 57.310 138.575 57.400 138.804 57.489 138.928 57.579 139.076 57.658 139.283 57.691 139.448 57.780 139.551 57.870 139.771 58.049 139.957 58.057 139.967 58.109 140.143 58.117 140.291 58.207 140.476 58.304 140.488 58.393 140.535 58.483 140.594 58.572 140.642 58.662 140.737 58.751 140.899 58.830 141.109 58.865 141.268 58.955 141.467 59.053 141.654 59.142 141.749 59.321 141.919 59.418 142.093 59.508 142.294 59.587 142.506 59.614 142.656 59.647 142.825 59.674 142.976 59.726 143.131 59.718 143.240 59.691 143.335 59.691 143.464 59.726 143.625 59.753 143.776 59.762 143.914 59.753 144.033 59.744 144.141 59.744 144.270 59.728 144.368 59.720 144.476 59.720 144.604 59.728 144.732 59.728 144.861 59.737 144.989 59.772 145.161 59.737 145.247 59.753 145.385 59.762 145.535 59.753 145.642 59.753 145.772 59.718 145.846 59.628 145.746 59.568 145.800 59.551 145.898 59.508 145.962 59.551 146.133 59.535 146.241 59.714 146.252 59.811 146.408 59.795 146.516 59.767 146.612 59.724 146.686 59.716 146.805 59.716 146.816 59.724 146.955 59.697 147.040 59.680 147.147 59.672 147.266 59.645 147.350 59.601 147.413 59.653 147.607 59.620 147.693 59.718 147.737 59.743 147.886 59.759 148.025 59.767 148.163 59.751 148.272 59.716 148.345 59.618 148.351 59.610 148.469 59.626 148.608 59.634 148.747 59.599 148.831 59.697 148.872 59.732 148.799 59.724 148.670 59.784 148.618 59.874 148.720 59.830 148.794 59.813 148.891 59.849 149.064 59.813 149.137 59.884 149.098 59.900 149.001 59.961 148.960 60.052 149.162 60.108 149.356 60.117 149.497 60.108 149.603 60.091 149.709 60.074 149.804 60.056 149.909 60.048 149.920 60.039 149.977 60.003 150.056 60.003 150.175 59.978 150.272 59.961 150.369 59.917 150.442 59.865 150.504 59.865 150.633 59.805 150.674 59.849 150.848 59.938 150.941 59.946 151.069 59.930 151.177 59.946 151.327 59.903 151.389 59.867 151.462 59.840 151.545 59.788 151.607 59.737 151.658 59.666 151.685 59.674 151.814 59.639 151.907 59.664 152.068 59.639 152.153 59.576 152.202 59.524 152.006 59.524 151.631 59.533 151.524 59.533 151.407 59.481 151.211 59.464 151.062 59.402 151.111 59.358 151.172 59.306 151.234 59.262 151.295 59.254 151.413 59.246 151.520 59.237 151.648 59.262 151.809 59.271 151.937 59.279 152.075 59.368 152.111 59.393 152.271 59.393 152.389 59.368 152.485 59.333 152.569 59.306 152.662 59.315 152.812 59.281 152.897 59.370 152.909 59.468 153.058 59.520 153.254 59.610 153.427 59.583 153.521 59.566 153.639 59.558 153.757 59.522 153.828 59.470 153.878 59.443 153.971 59.478 154.157 59.487 154.285 59.576 154.345 59.585 154.485 59.551 154.569 59.516 154.652 59.568 154.848 59.568 154.966 59.620 155.163 59.664 155.092 59.762 155.117 59.778 155.021 59.822 154.961 59.865 154.889 59.849 154.750 59.876 154.667 59.920 154.595 59.859 154.387 59.797 154.434 59.824 154.351 59.815 154.212 59.824 154.094 59.903 154.079 60.000 154.208 59.973 154.290 60.018 154.232 60.082 154.194 60.164 154.179 60.265 154.288 60.274 154.431 60.375 154.480 60.468 154.564 60.561 154.673 60.661 154.805 60.754 154.970 60.847 155.207 60.901 155.403 61.002 155.559 61.064 155.768 61.157 155.902 61.258 155.941 61.351 156.052 61.443 156.222 61.545 156.391 61.590 156.576 61.682 156.677 61.775 156.680 61.868 156.709 61.923 156.922 62.016 157.057 62.098 157.298 62.089 157.416 62.191 157.543 62.182 157.673 62.182 157.794 62.173 157.913 62.145 158.004 62.120 158.086 62.173 158.297 62.210 158.473 62.182 158.552 62.218 158.737 62.201 158.833 62.294 159.091 62.311 159.249 62.294 159.344 62.266 159.445 62.184 159.445 62.193 159.590 62.100 159.547 62.055 159.601 62.091 159.787 62.184 159.984 62.220 160.060 62.313 160.320 62.296 160.415 62.231 160.439 62.139 160.408 62.037 160.315 61.945 160.271 61.852 160.075 61.779 160.087 61.779 160.054 61.687 160.022 61.695 159.902 61.639 159.940 61.577 159.978 61.514 160.017 61.329 159.862 61.374 160.035 61.437 160.247 61.437 160.367 61.391 160.442 61.299 160.363 61.198 160.202 61.144 160.241 61.051 160.138 60.970 160.148 61.062 160.357 61.136 160.596 61.144 160.728 61.116 160.806 61.217 160.873 61.310 161.011 61.411 161.234 61.504 161.418 61.605 161.628 61.697 161.789 61.790 161.928 61.882 162.175 61.984 162.350 62.057 162.556 62.031 162.649 62.003 162.738 62.057 162.687 62.113 162.893 62.077 162.970 61.984 162.936 61.947 163.000 61.911 163.077 62.003 163.147 62.048 163.336 62.122 163.317 62.139 163.211 62.156 163.116 62.173 163.010 62.274 163.083 62.367 163.129 62.460 163.237 62.488 163.158 62.569 163.162 62.662 163.183 62.755 163.407 62.772 163.300 62.817 163.237 62.918 163.308 62.946 163.484 62.964 163.644 63.000 163.822 62.992 163.931 63.037 164.122 63.063 164.283 63.080 164.455 63.080 164.577 63.043 164.652 62.998 164.715 62.953 164.778 62.935 164.884 62.927 165.005 62.901 165.086 62.892 165.205 62.884 165.313 62.875 165.421 62.867 165.541 62.849 165.647 62.841 165.715 62.832 165.569 62.860 165.491 62.860 165.225 62.795 165.257 62.761 165.326 62.716 165.377 62.750 165.308 62.778 165.231 62.815 165.166 62.806 165.021 62.824 164.914 62.841 164.819 62.858 164.714 62.793 164.492 62.701 164.266 62.608 164.157 62.526 164.164 62.341 164.122 62.260 164.128 62.186 164.136 62.085 164.073 61.984 163.885 61.891 163.825 61.809 163.831 61.826 163.989 61.781 164.040 61.708 164.049 61.616 163.967 61.570 163.778 61.469 163.646 61.376 163.600 61.340 163.687 61.312 163.775 61.250 163.550 61.157 163.341 61.202 163.289 61.185 163.132 61.168 162.975 61.075 162.814 61.002 162.584 60.929 162.345 60.875 162.145 60.810 161.918 60.718 161.886 60.672 161.937 60.571 161.833 60.478 161.601 60.386 161.395 60.386 161.406 60.285 161.268 60.192 161.142 60.091 160.957 59.998 160.821 59.971 160.655 59.936 160.488 59.847 160.412 59.749 160.325 59.659 160.121 59.589 159.979 59.491 159.812 59.402 159.724 59.331 159.756 59.242 159.703 59.144 159.561 59.055 159.393 58.965 159.272 58.868 159.244 58.903 159.163 58.813 159.065 58.724 158.853 58.626 158.619 58.537 158.442 58.448 158.291 58.385 158.335 58.413 158.244 58.385 158.081 58.377 157.953 58.377 157.837 58.413 157.756 58.323 157.605 58.225 157.543 58.163 157.334 58.171 157.218 58.188 157.124 58.215 157.043 58.207 156.905 58.109 156.879 58.065 156.938 58.005 156.985 57.934 157.008 57.855 157.020 57.757 156.948 57.668 156.877 57.579 156.794 57.481 156.745 57.489 156.629 57.392 156.513 57.302 156.351 57.205 156.202 57.115 156.086 57.205 156.157 57.115 156.008 57.017 155.959 56.928 155.921 56.830 155.875 56.741 155.837 56.652 155.788 56.562 155.753 56.473 155.694 56.375 155.659 56.285 155.623 56.196 155.623 56.107 155.599 56.018 155.585 55.928 155.550 55.830 155.515 55.741 155.491 55.643 155.490 55.554 155.490 55.465 155.501 55.386 155.513 55.296 155.513 55.225 155.546 55.136 155.546 55.057 155.569 54.979 155.585 54.892 155.609 54.815 155.634 54.746 155.667 54.590 155.736 54.530 155.779 54.453 155.814 54.366 155.827 54.297 155.861 54.210 155.884 54.123 155.907 54.047 155.932 53.960 155.945 53.882 155.969 53.795 155.993 53.719 156.017 53.632 156.040 53.545 156.053 53.468 156.077 53.373 156.081 53.286 156.093 53.209 156.117 53.183 156.142 53.106 156.166 53.047 156.221 52.978 156.255 52.946 156.339 52.938 156.441 52.930 156.321 52.843 156.333 52.766 156.368 52.697 156.401 52.621 156.436 52.543 156.459 52.449 156.462 52.380 156.495 52.284 156.498 52.197 156.498 52.110 156.497 52.016 156.477 51.920 156.468 51.852 156.510 51.765 156.500 51.696 156.543 51.670 156.624 51.619 156.687 51.524 156.678 51.455 156.710 51.368 156.666 51.455 156.850 51.550 157.011 51.619 157.142 51.714 157.281 51.809 157.465 51.896 157.509 51.983 157.706 52.052 157.895 52.139 157.984 52.226 158.093 52.321 158.182 52.408 158.291 52.495 158.327 52.582 158.406 52.669 158.438 52.764 158.537 52.851 158.539 52.885 158.468 52.980 158.536 53.015 158.454 53.110 158.584 53.161 158.521 53.255 158.552 53.342 158.632 53.359 158.540 53.367 158.427 53.454 158.483 53.470 158.614 53.409 158.665 53.340 158.697 53.427 158.886 53.514 159.063 53.557 159.223 53.573 159.365 53.660 159.555 53.660 159.666 53.686 159.819 53.599 159.793 53.573 159.884 53.531 159.957 53.531 160.001 53.618 160.025 53.686 159.993 53.755 159.952 53.806 159.899 53.858 159.838 53.917 159.795 53.891 159.876 53.978 159.934 54.047 159.892 54.063 159.798 54.158 159.811 54.244 159.813 54.331 159.850 54.522 159.940 54.538 159.949 54.625 160.072 54.712 160.274 54.799 160.409 54.894 160.576 54.953 160.770 54.979 160.914 54.987 161.037 54.960 161.128 54.902 161.182 54.894 161.285 54.902 161.419 54.918 161.551 54.902 161.655 54.989 161.748 55.078 161.910 55.176 162.050 55.265 162.079 55.300 162.013 55.361 161.958 55.423 161.917 55.456 161.837 55.510 161.795 55.571 161.752 55.712 161.692 55.791 161.683 55.881 161.678 55.978 161.717 56.067 161.760 56.165 161.870 56.255 161.912 56.352 162.008 56.450 162.038 56.539 162.180 56.591 162.364 56.643 162.490 56.732 162.510 56.768 162.432 56.858 162.620 56.884 162.782 56.849 162.859 56.938 162.980 56.938 163.095 56.849 163.006 56.760 162.759 56.670 162.684 56.573 162.654 56.537 162.731 56.485 162.786 56.450 162.863 56.433 162.967 56.523 163.156 56.612 163.355 56.683 163.336 56.772 163.343 56.833 163.299 56.903 163.269 56.982 163.261 57.042 163.228 57.121 163.221 57.138 163.118 57.105 162.947 57.129 162.855 57.192 162.814 57.271 162.795 57.360 162.826 57.458 162.843 57.518 162.810 57.579 162.776 57.587 162.777 57.658 162.758 57.737 162.773 57.826 162.917 57.915 163.107 58.013 163.220 58.111 163.275 58.182 163.245 58.225 163.178 58.225 163.062 58.252 162.972 58.285 162.890 58.302 162.797 58.337 162.729 58.337 162.602 58.240 162.468 58.161 162.476 58.071 162.376 58.161 162.441 58.177 162.347 58.194 162.243 58.221 162.153 58.265 162.085 58.308 162.007 58.369 161.973 58.423 161.930 58.512 161.960 58.601 162.015 58.699 162.057 58.789 162.111 58.886 162.199 58.976 162.311 59.065 162.412 59.154 162.606 59.252 162.695 59.342 162.851 59.333 162.968 59.412 162.949 59.456 162.871 59.481 163.033 59.456 163.128 59.535 163.108 59.560 163.015 59.649 163.092 59.657 163.232 59.747 163.264 59.801 163.211 59.845 163.142 59.905 163.108 59.994 163.305 60.067 163.295 60.160 163.304 60.252 163.431 60.252 163.561 60.345 163.736 60.345 163.606 60.362 163.585 60.407 163.783 60.390 163.887 60.381 164.003 60.364 164.036 60.355 164.151 60.319 164.086 60.347 164.258 60.364 164.305 60.418 164.268 60.464 164.455 60.418 164.517 60.373 164.578 60.364 164.609 60.310 164.668 60.246 164.689 60.172 164.708 60.155 164.800 60.257 165.011 60.349 165.140 60.367 165.144 60.412 165.083 60.448 165.020 60.485 164.946 60.485 165.065 60.457 165.152 60.550 165.386 60.612 165.600 60.704 165.811 60.797 165.963 60.834 166.139 60.842 166.282 60.789 166.319 60.696 166.235 60.604 166.224 60.511 166.151 60.410 166.090 60.364 166.093 60.263 166.032 60.181 166.025 60.190 166.157 60.283 166.345 60.364 166.481 60.457 166.612 60.550 166.754 60.642 166.885 60.735 167.006 60.726 167.122 60.744 167.268 60.836 167.306 60.799 167.379 60.808 167.523 60.853 167.723 60.887 167.906 60.933 168.096 60.950 168.254 60.959 168.386 60.950 168.492 60.922 168.590 60.930 168.722 60.922 168.828 60.922 169.089 60.967 169.290 60.930 169.351 60.868 169.373 60.840 169.459 60.832 169.551 60.795 169.613 60.750 169.672 60.677 169.688 60.631 169.735 60.604 169.811 60.595 169.927 60.493 169.840 60.440 169.886 60.412 169.947 60.395 170.039 60.367 170.064 60.321 170.112 60.276 170.170 60.369 170.362 60.461 170.402 60.554 170.429 60.647 170.495 60.739 170.568 60.801 170.537 60.784 170.629 60.885 170.719 60.877 170.836 60.905 171.000 60.922 171.157 61.015 171.362 61.107 171.404 61.099 171.521 61.200 171.693 61.200 171.824 61.293 171.960 61.239 172.005 61.275 172.110 61.368 172.211 61.402 172.136 61.448 172.078 61.430 172.181 61.394 172.253 61.385 172.359 61.478 172.377 61.495 172.284 61.512 172.432 61.566 172.387 61.566 172.638 61.659 172.799 61.695 172.726 61.678 172.830 61.661 172.933 61.742 172.934 61.768 172.833 61.797 172.747 61.833 172.937 61.805 173.012 61.768 173.085 61.814 173.278 61.906 173.347 61.923 173.506 61.997 173.505 62.098 173.563 62.098 173.695 62.070 173.770 62.042 173.844 62.134 174.091 62.191 174.062 62.199 174.208 62.182 174.311 62.191 174.458 62.182 174.503 62.227 174.709 62.309 174.710 62.337 174.636 62.328 174.755 62.311 174.846 62.348 175.028 62.393 175.224 62.494 175.305 62.486 175.424 62.539 175.633 62.604 175.862 62.638 176.052 62.666 176.220 62.759 176.433 62.852 176.633 62.880 176.801 62.905 176.977 62.923 177.128 62.931 177.274 62.949 177.171 62.957 177.052 62.994 176.992 63.047 176.960 63.140 177.044 63.196 177.017 63.222 177.001 63.196 177.091 63.159 177.162 63.086 177.173 63.069 177.277 63.161 177.361 63.144 177.466 63.052 177.381 62.970 177.365 62.942 177.440 62.942 177.705 62.933 177.824 62.916 178.061 62.899 178.154 62.871 178.239 62.854 178.332 62.836 178.435 62.819 178.527 62.802 178.620 62.785 178.736 62.767 178.838 62.750 178.931 62.733 179.035 62.697 179.106 62.798 179.217 62.843 179.172 62.878 179.364 62.970 179.485 63.071 179.668 63.134 179.653 63.179 179.597 63.233 179.555 63.250 179.462 63.267 179.359 63.321 179.305 63.375 179.275 63.467 179.444 63.524 179.418 63.558 179.343 63.594 179.283 63.594 179.149 63.631 179.078 63.648 178.985 63.693 178.917 63.710 178.823 63.710 178.957 63.674 179.017 63.719 178.972 63.736 178.941 63.782 178.885 63.827 178.828 63.883 178.789 63.945 178.762 63.872 178.771 63.819 178.814 63.801 178.661 63.902 178.726 63.919 178.621 63.928 178.501 63.892 178.316 63.984 178.511 63.976 178.619 63.939 178.691 63.984 178.634 63.976 178.754 64.049 178.745 64.113 178.721 64.176 178.705 64.238 178.676 64.303 178.642 64.311 178.521 64.303 178.383 64.404 178.448 64.376 178.523 64.432 178.496 64.477 178.438 64.523 178.392 64.585 178.352 64.630 178.295 64.684 178.241 64.591 178.044 64.546 178.090 64.546 177.956 64.563 177.850 64.581 177.756 64.609 177.669 64.643 177.604 64.680 177.531 64.717 177.458 64.725 177.450 64.753 177.363 64.807 177.331 64.860 177.287 64.953 177.362 65.048 177.405 65.086 177.339 65.077 177.198 65.039 177.004 64.945 176.768 64.936 176.617 64.972 176.554 64.998 176.463 64.936 176.209 64.919 176.056 65.012 176.340 65.059 176.290 65.097 176.222 65.154 176.188 65.201 176.138 65.211 176.030 65.228 175.915 65.237 176.055 65.228 176.164 65.199 176.246 65.181 176.312 65.134 176.363 65.181 176.584 65.172 176.692 65.163 176.812 65.115 176.873 65.086 176.946 65.104 177.102 65.201 177.180 65.239 177.113 65.278 177.047 65.316 176.979 65.355 176.913 65.364 176.804 65.325 176.599 65.316 176.446 65.364 176.395 65.364 176.271 65.381 176.428 65.355 176.516 65.355 176.641 65.402 176.875 65.373 176.957 65.355 177.049 65.336 177.140 65.280 177.175 65.251 177.247 65.242 177.377 65.186 177.412 65.129 177.434 65.091 177.512 65.043 177.561 65.025 177.652 65.025 177.777 65.017 177.897 65.007 178.016 64.998 178.124 64.981 178.218 64.990 178.369 65.007 178.536 65.017 178.688 64.923 178.439 64.932 178.577 65.025 178.851 65.122 179.153 65.140 179.322 65.246 179.616 65.343 179.757 65.400 179.972 65.418 -179.859 65.524 -179.625 65.620 -179.545 65.717 -179.490 65.727 -179.609 65.727 -179.758 65.699 -179.934 65.632 -179.934 65.661 179.996 65.661 179.859 65.727 179.980 65.736 -179.954 65.765 -179.763 65.765 -179.638 65.774 -179.484 65.880 -179.297 65.927 -179.346 65.995 -179.346 66.013 -179.449 66.042 -179.532 66.080 -179.599 66.107 -179.685 66.155 -179.746 66.202 -179.783 66.259 -179.803 66.335 -179.786 66.421 -179.764 66.527 -179.627 66.450 -179.645 66.460 -179.489 66.525 -179.229 66.563 -179.284 66.660 -179.378 66.642 -179.273 66.642 -179.147 66.651 -179.141 66.727 -179.124 66.680 -179.075 66.595 -179.098 66.558 -179.040 66.511 -178.991 66.511 -178.853 66.608 -178.682 66.705 -178.572 66.696 -178.462 66.630 -178.448 66.534 -178.519 66.437 -178.640 66.331 -178.790 66.340 -178.899 66.293 -178.850 66.227 -178.835 66.198 -178.753 66.150 -178.705 66.112 -178.639 66.074 -178.435 65.988 -178.471 65.891 -178.527 65.833 -178.500 65.814 -178.397 65.814 -178.135 65.806 -178.014 65.814 -177.861 65.806 -177.741 65.814 -177.587 65.844 -177.395 65.941 -177.113 65.941 -176.975 65.923 -176.872 65.914 -176.753 65.905 -176.632 65.886 -176.542 65.860 -176.455 65.841 -176.353 65.824 -176.250 65.824 -176.125 65.794 -176.032 65.767 -175.958 65.720 -175.911 65.664 -175.880 65.596 -175.884 65.548 -175.826 65.501 -175.780 65.415 -175.817 65.330 -175.842 65.291 -175.790 65.273 -175.688 65.246 -175.603 65.208 -175.539 65.199 -175.432 65.131 -175.424 65.131 -175.288 65.122 -175.181 65.122 -175.056 65.199 -175.035 65.152 -174.989 65.134 -174.899 65.107 -174.814 65.089 -174.712 65.062 -174.628 65.032 -174.548 65.014 -174.458 65.014 -174.322 65.005 -174.305 64.949 -174.259 64.923 -174.170 64.923 -174.158 64.878 -174.104 64.824 -174.077 64.779 -174.035 64.762 -173.930 64.744 -173.826 64.717 -173.740 64.708 -173.632 64.800 -173.405 64.893 -173.373 64.947 -173.411 64.975 -173.411 64.947 -173.336 64.893 -173.298 64.831 -173.287 64.738 -173.381 64.674 -173.363 64.656 -173.259 64.628 -173.186 64.620 -173.166 64.648 -172.981 64.740 -172.885 64.813 -172.877 64.831 -172.981 64.857 -172.798 64.794 -172.777 64.766 -172.704 64.757 -172.583 64.785 -172.397 64.858 -172.400 64.912 -172.438 64.921 -172.557 64.947 -172.646 64.955 -172.767 64.983 -172.851 65.030 -172.888 65.012 -173.058 65.118 -172.795 65.165 -172.829 65.192 -172.912 65.136 -173.144 65.233 -172.958 65.215 -172.858 65.253 -172.647 65.271 -172.477 65.377 -172.222 65.463 -172.194 65.528 -172.193 65.567 -172.254 65.575 -172.362 65.575 -172.499 65.585 -172.618 65.620 -172.412 65.620 -172.287 65.594 -172.202 65.659 -172.212 65.736 -172.189 65.841 -172.109 65.785 -172.343 65.824 -172.394 65.900 -172.382 65.968 -172.388 65.977 -172.508 65.986 -172.628 66.024 -172.702 66.052 -172.787 66.060 -172.632 66.052 -172.512 66.042 -172.404 66.033 -172.285 65.977 -172.257 65.930 -172.223 65.900 -172.155 65.909 -172.001 65.891 -171.899 65.891 -171.750 65.853 -171.973 65.853 -171.848 65.871 -171.687 65.889 -171.515 65.898 -171.360 65.880 -171.258 65.851 -171.178 65.841 -171.060 65.938 -170.969 65.977 -171.019 66.004 -171.103 66.022 -171.205 66.049 -171.289 66.107 -171.313 66.135 -171.397 66.182 -171.442 66.164 -171.339 66.135 -171.260 66.107 -171.175 66.060 -171.131 66.052 -171.010 66.024 -170.926 66.006 -170.825 65.979 -170.740 65.970 -170.621 66.076 -170.462 66.132 -170.490 66.209 -170.464 66.306 -170.285 66.412 -169.913 66.518 -169.904 66.536 -170.007 66.527 -170.150 66.545 -170.253 66.545 -170.115 66.622 -170.101 66.651 -170.192 66.669 -170.283 66.604 -170.551 66.709 -170.354 66.719 -170.473 66.757 -170.537 66.795 -170.610 66.834 -170.674 66.870 -170.740 66.899 -170.821 66.917 -170.923 66.935 -171.039 66.962 -171.123 66.991 -171.205 67.030 -171.267 67.068 -171.343 67.134 -171.351 67.152 -171.455 67.181 -171.535 67.219 -171.599 67.296 -171.575 67.314 -171.690 67.314 -171.969 67.323 -172.102 67.323 -172.241 67.341 -172.345 67.350 -172.478 67.359 -172.601 67.359 -172.473 67.377 -172.565 67.395 -172.680 67.395 -172.881 67.366 -172.812 67.348 -172.696 67.339 -172.575 67.329 -172.454 67.303 -172.355 67.284 -172.542 67.266 -172.717 67.284 -172.821 67.294 -172.953 67.341 -173.000 67.235 -173.108 67.226 -173.264 67.303 -173.252 67.388 -173.212 67.406 -173.038 67.424 -173.130 67.433 -173.251 67.406 -173.432 67.463 -173.472 67.481 -173.577 67.445 -173.787 67.445 -173.926 67.453 -174.049 67.453 -174.342 67.445 -174.498 67.426 -174.395 67.400 -174.320 67.400 -174.180 67.341 -174.155 67.341 -174.016 67.294 -173.969 67.228 -173.958 67.172 -173.929 67.124 -173.882 67.057 -173.887 66.960 -174.165 66.913 -174.130 66.903 -174.035 66.894 -173.915 66.876 -173.811 66.838 -173.746 66.809 -173.665 66.712 -173.742 66.615 -173.906 66.567 -173.949 66.606 -174.001 66.692 -173.972 66.757 -173.972 66.843 -173.944 66.824 -174.106 66.727 -174.282 66.737 -174.391 66.793 -174.420 66.879 -174.405 66.917 -174.469 66.944 -174.555 66.953 -174.677 66.971 -174.780 66.998 -174.867 67.095 -174.791 67.086 -174.669 67.163 -174.672 67.219 -174.689 67.284 -174.689 67.314 -174.783 67.352 -174.836 67.408 -174.854 67.474 -174.867 67.550 -174.845 67.636 -174.816 67.733 -174.767 67.742 -174.878 67.789 -174.914 67.808 -175.006 67.731 -175.028 67.684 -175.248 67.781 -175.160 67.846 -175.173 67.893 -175.208 67.990 -175.299 67.990 -175.261 68.008 -175.238 68.026 -175.355 68.055 -175.438 68.083 -175.537 68.112 -175.620 68.130 -175.726 68.159 -175.821 68.186 -175.908 68.216 -176.003 68.234 -176.109 68.252 -176.216 68.279 -176.315 68.308 -176.398 68.337 -176.495 68.356 -176.600 68.385 -176.696 68.412 -176.785 68.441 -176.869 68.468 -176.969 68.450 -177.145 68.515 -177.147 68.545 -177.231 68.563 -177.338 68.506 -177.588 68.536 -177.594 68.622 -177.569 68.603 -177.475 68.633 -177.560 68.660 -177.648 68.689 -177.744 68.719 -177.828 68.746 -177.929 68.775 -178.015 68.802 -178.116 68.820 -178.223 68.791 -178.137 68.764 -178.048 68.734 -177.952 68.705 -177.868 68.678 -177.766 68.649 -177.681 68.610 -177.886 68.649 -177.952 68.705 -177.985 68.743 -178.051 68.761 -178.158 68.788 -178.247 68.788 -178.377 68.818 -178.473 68.827 -178.598 68.844 -178.705 68.903 -178.733 68.960 -178.765 68.941 -178.659 68.914 -178.570 68.896 -178.517 68.935 -178.584 68.973 -178.664 69.003 -178.761 69.038 -178.833 69.068 -178.931 69.086 -179.038 69.095 -179.162 69.113 -179.269 69.122 -179.381 69.179 -179.415 69.217 -179.471 69.255 -179.528 69.207 -179.749 69.237 -179.847 69.255 -179.942 69.273 179.979 69.273 179.836 69.282 179.710 69.309 179.632 69.356 179.581 69.386 179.507 69.368 179.603 69.341 179.682 69.311 179.755 69.284 179.857 69.332 179.806 69.418 179.583 69.446 179.484 69.476 179.411 69.503 179.332 69.541 179.263 69.560 179.156 69.568 179.018 69.568 178.875 69.560 178.716 69.577 178.594 69.654 178.599 69.645 178.712 69.618 178.815 69.600 178.924 69.647 178.872 69.665 178.775 69.692 178.697 69.710 178.588 69.729 178.468 69.747 178.360 69.747 178.204 69.737 178.044 69.756 177.936 69.764 177.797 69.792 177.718 69.792 177.575 69.839 177.534 69.857 177.413 69.875 177.306 69.884 177.178 69.884 177.035 69.893 176.910 69.911 176.800 69.920 176.675 69.938 176.577 69.965 176.485 69.995 176.410 70.013 176.305 70.023 176.168 70.073 176.142 70.104 176.077 70.145 176.020 70.145 175.744 70.154 175.620 70.145 175.469 70.104 175.252 70.104 174.649 70.114 174.514 70.114 174.370 70.133 174.266 70.133 173.990 70.102 173.794 70.121 173.691 70.140 173.586 70.159 173.494 70.191 173.427 70.191 173.284 70.181 173.119 70.150 173.200 70.119 173.279 70.090 173.351 70.030 173.123 70.080 173.083 70.099 172.991 70.119 172.900 70.138 172.783 70.157 172.691 70.217 172.671 70.207 172.506 70.207 172.363 70.217 172.251 70.226 172.126 70.236 171.990 70.246 171.878 70.246 171.814 70.255 171.701 70.274 171.597 70.284 171.460 70.303 171.356 70.312 171.218 70.331 170.969 70.331 170.825 70.351 170.576 70.370 170.483 70.370 170.340 70.339 170.408 70.289 170.449 70.238 170.436 70.157 170.402 70.097 170.425 70.016 170.416 69.976 170.197 69.871 169.991 69.832 170.064 69.832 170.195 69.841 170.367 69.823 170.478 69.776 170.534 69.717 170.569 69.681 170.635 69.622 170.670 69.587 170.747 69.548 170.807 69.491 170.847 69.415 170.850 69.377 170.922 69.311 170.944 69.311 170.933 69.205 170.624 69.138 170.643 69.072 170.639 69.129 170.612 69.176 170.568 69.070 170.478 69.032 170.551 69.023 170.546 69.050 170.454 69.068 170.332 69.077 170.207 69.059 170.043 69.059 169.940 69.050 169.783 69.041 169.624 69.041 169.537 69.070 169.460 69.108 169.375 69.165 169.347 69.242 169.355 69.309 169.322 69.347 169.249 69.356 169.123 69.374 169.014 69.393 168.917 69.420 168.810 69.438 168.700 69.456 168.578 69.456 168.317 69.474 168.194 69.512 168.121 69.580 168.112 69.636 168.070 69.733 168.114 69.798 168.090 69.816 167.991 69.844 167.909 69.861 167.810 69.938 167.817 69.956 167.718 69.992 167.628 69.983 167.480 69.877 167.249 69.780 166.987 69.724 166.744 69.724 166.600 69.751 166.518 69.751 166.388 69.742 166.228 69.742 165.942 69.760 165.842 69.787 165.747 69.805 165.624 69.814 165.497 69.805 165.349 69.805 165.207 69.814 165.183 69.814 164.897 69.805 164.737 69.805 164.606 69.814 164.480 69.823 164.352 69.841 164.241 69.871 164.149 69.900 164.070 69.927 163.973 69.974 163.901 69.947 163.723 69.909 163.524 69.900 163.353 69.918 163.241 69.927 163.113 69.927 162.969 69.889 162.772 69.871 162.598 69.889 162.498 69.898 162.370 69.889 162.266 69.906 162.166 69.868 162.047 69.859 161.980 69.841 161.793 69.841 161.781 69.879 161.704 69.861 161.529 69.853 161.383 69.814 161.185 69.767 161.016 69.767 160.952 69.794 160.855 69.841 160.794 69.850 160.679 69.868 160.578 69.886 160.453 69.895 160.326 69.866 160.159 69.923 160.113 69.940 160.013 69.940 159.869 69.958 159.824 69.988 159.730 70.006 159.631 70.037 159.547 70.097 159.517 70.219 159.748 70.310 159.804 70.320 159.679 70.339 159.583 70.339 159.726 70.329 159.852 70.401 159.874 70.514 159.998 70.574 159.968 70.634 159.925 70.653 159.925 70.703 159.876 70.753 159.815 70.803 159.779 70.844 159.699 70.882 159.627 70.914 159.542 70.954 159.462 70.973 159.353 71.014 159.286 71.033 159.176 71.064 159.091 71.083 158.982 71.093 158.867 71.112 158.770 71.131 158.661 71.150 158.552 71.170 158.456 71.189 158.347 71.198 158.231 71.208 158.116 71.227 158.006 71.247 157.910 71.247 157.764 71.256 157.648 71.266 157.533 71.266 157.388 71.275 157.259 71.275 157.113 71.285 156.986 71.285 156.839 71.294 156.725 71.285 156.573 71.285 156.294 71.294 156.178 71.294 155.899 71.285 155.735 71.253 155.530 71.253 155.385 71.244 155.222 71.234 155.058 71.224 154.881 71.205 154.712 71.196 154.562 71.165 154.359 71.165 154.226 71.124 154.004 71.095 153.806 71.064 153.616 71.055 153.585 71.074 153.474 71.074 153.329 71.055 153.161 71.045 152.986 71.045 152.707 71.036 152.557 71.045 152.428 71.064 152.319 71.074 152.190 71.093 152.081 71.121 151.986 71.141 151.877 71.150 151.760 71.160 151.632 71.179 151.574 71.170 151.702 71.160 151.830 71.179 151.998 71.248 151.991 71.280 151.914 71.318 151.839 71.359 151.754 71.390 151.677 71.440 151.623 71.490 151.556 71.509 151.444 71.529 151.333 71.538 151.216 71.548 151.075 71.579 150.974 71.560 150.791 71.509 150.566 71.509 150.420 71.459 150.183 71.400 149.958 71.419 149.967 71.481 150.212 71.531 150.437 71.634 150.599 71.704 150.579 71.694 150.415 71.684 150.263 71.704 150.164 71.694 149.999 71.653 149.808 71.756 149.888 71.859 149.927 71.850 149.775 71.840 149.610 71.850 149.481 71.859 149.364 71.878 149.252 71.878 149.104 71.859 148.936 71.859 148.789 71.972 148.856 71.972 148.991 71.962 149.109 72.065 149.294 72.056 149.424 72.037 149.484 71.998 149.548 71.967 149.639 72.017 149.878 72.120 150.039 72.161 149.979 72.211 149.910 72.240 149.828 72.280 149.741 72.321 149.667 72.341 149.542 72.381 149.320 72.400 149.206 72.420 149.094 72.439 148.857 72.448 148.715 72.467 148.613 72.486 148.499 72.496 148.368 72.505 148.249 72.505 148.102 72.515 147.971 72.515 147.391 72.505 147.225 72.486 147.055 72.280 146.637 72.190 146.489 72.087 146.307 71.974 146.029 71.955 145.861 71.914 145.642 71.924 145.512 71.855 145.244 71.864 145.113 71.864 144.966 71.895 144.886 71.955 144.857 71.964 145.007 72.056 145.033 72.087 144.952 72.146 144.922 72.127 145.035 72.108 145.162 72.077 145.242 72.067 145.360 72.098 145.562 72.098 145.710 72.201 145.772 72.211 145.642 72.261 145.583 72.374 145.715 72.415 145.639 72.415 145.800 72.345 145.812 72.336 145.930 72.254 145.934 72.367 146.159 72.336 146.264 72.233 146.094 72.120 145.961 72.051 145.973 72.154 146.209 72.194 146.306 72.297 146.513 72.400 146.709 72.491 146.736 72.491 146.588 72.500 146.456 72.500 146.321 72.491 146.156 72.491 146.021 72.481 145.855 72.481 145.707 72.472 145.555 72.462 145.389 72.453 145.224 72.453 145.076 72.434 144.894 72.434 144.759 72.364 144.490 72.374 144.345 72.405 144.265 72.434 144.167 72.443 144.159 72.462 144.179 72.472 144.345 72.431 144.433 72.534 144.639 72.584 144.702 72.626 144.924 72.606 145.037 72.597 145.169 72.577 145.283 72.537 145.347 72.546 145.526 72.546 145.809 72.537 145.953 72.546 146.106 72.537 146.237 72.537 146.520 72.527 146.638 72.527 146.787 72.568 146.700 72.577 146.580 72.597 146.454 72.616 146.340 72.656 146.115 72.666 145.983 72.676 145.853 72.695 145.738 72.704 145.605 72.724 145.492 72.743 145.376 72.752 145.258 72.752 145.110 72.762 144.990 72.771 144.941 72.771 144.805 72.781 144.660 72.790 144.541 72.809 144.425 72.819 144.293 72.819 144.145 72.829 144.026 72.838 143.893 72.838 143.732 72.848 143.600 72.867 143.484 72.867 142.901 72.877 142.770 72.877 142.335 72.886 142.190 72.896 142.070 72.896 141.922 72.906 141.776 72.925 141.648 72.934 141.515 72.965 141.433 72.996 141.350 73.025 141.250 73.025 141.101 73.044 140.985 73.044 140.848 73.054 140.703 73.063 140.582 72.994 140.600 72.953 140.692 72.922 140.787 72.893 140.874 72.862 140.970 72.759 140.929 72.750 141.050 72.740 140.897 72.690 140.662 72.671 140.481 72.661 140.316 72.661 140.168 72.652 140.003 72.661 139.965 72.671 139.820 72.680 139.688 72.671 139.523 72.568 139.242 72.455 139.078 72.374 139.088 72.336 139.172 72.304 139.280 72.345 139.201 72.336 139.333 72.336 139.481 72.405 139.733 72.405 139.881 72.415 139.951 72.396 140.079 72.364 140.174 72.323 139.957 72.333 139.949 72.352 139.845 72.249 139.659 72.137 139.605 72.127 139.441 72.127 139.306 72.108 139.421 72.098 139.565 72.058 139.632 72.039 139.747 71.936 139.640 71.876 139.686 71.813 139.728 71.763 139.791 71.734 139.877 71.675 139.923 71.675 139.948 71.656 139.942 71.656 139.929 71.675 139.802 71.644 139.603 71.675 139.521 71.593 139.239 71.603 139.121 71.644 139.042 71.704 138.995 71.754 138.944 71.773 138.829 71.802 138.730 71.811 138.611 71.708 138.400 71.790 138.388 71.771 138.210 71.761 138.047 71.649 137.927 71.546 137.782 71.517 137.881 71.517 138.174 71.498 138.288 71.498 138.143 71.469 137.949 71.397 137.989 71.406 137.858 71.397 137.697 71.368 137.796 71.368 137.930 71.306 137.972 71.316 137.843 71.306 137.681 71.356 137.617 71.448 137.621 71.428 137.442 71.478 137.392 71.529 137.329 71.538 137.197 71.579 137.118 71.589 136.987 71.630 136.908 71.649 136.792 71.689 136.724 71.708 136.608 71.689 136.443 71.749 136.423 71.749 136.276 71.758 136.156 71.790 136.061 71.799 135.930 71.809 135.811 71.799 135.661 71.780 135.484 71.708 135.232 71.680 135.040 71.699 134.936 71.596 134.692 71.555 134.677 71.443 134.562 71.555 134.608 71.574 134.505 71.543 134.321 71.543 134.187 71.562 133.900 71.581 133.784 71.591 133.641 71.610 133.524 71.630 133.422 71.660 133.324 71.689 133.211 71.730 133.130 71.761 133.031 71.811 132.977 71.840 132.876 71.900 132.824 71.919 132.708 72.000 132.665 72.091 132.662 72.010 132.398 71.907 132.276 71.804 132.138 71.701 132.041 71.598 131.961 71.495 131.889 71.404 131.879 71.373 131.978 71.313 131.750 71.201 131.574 71.098 131.490 70.985 131.304 70.882 131.027 70.882 130.894 70.901 130.779 70.971 130.753 71.021 130.697 71.093 130.663 71.021 130.407 71.062 130.337 71.071 130.205 71.091 130.102 71.150 130.048 71.201 129.980 71.220 129.852 71.239 129.748 71.248 129.629 71.308 129.588 71.368 129.534 71.409 129.462 71.440 129.364 71.469 129.275 71.531 129.223 71.601 129.184 71.631 129.097 71.701 129.070 71.742 128.986 71.733 128.838 71.742 128.705 71.845 128.810 71.855 128.973 71.895 129.181 71.864 129.292 71.924 129.239 71.964 129.154 72.037 129.119 72.075 129.030 72.116 128.958 72.135 128.881 72.072 128.932 72.013 129.000 71.953 129.055 71.871 128.782 71.890 128.676 71.910 128.559 71.969 128.504 72.032 128.465 72.051 128.347 72.101 128.277 72.170 128.248 72.211 128.163 72.242 128.117 72.252 128.107 72.312 128.038 72.362 128.062 72.362 128.087 72.343 128.193 72.323 128.311 72.304 128.417 72.254 128.393 72.235 128.499 72.204 128.611 72.204 128.906 72.214 129.069 72.264 129.295 72.273 129.161 72.355 129.423 72.374 129.317 72.405 129.218 72.465 129.323 72.496 129.306 72.515 129.200 72.534 129.094 72.573 129.116 72.592 128.997 72.592 128.849 72.582 128.698 72.582 128.562 72.602 128.445 72.621 128.338 72.652 128.226 72.661 128.214 72.671 128.229 72.671 128.324 72.652 128.430 72.652 128.579 72.711 128.820 72.752 128.735 72.783 128.770 72.774 128.876 72.793 129.054 72.822 129.112 72.831 128.990 72.841 128.856 72.860 128.724 72.869 128.591 72.901 128.731 72.891 128.865 72.932 129.066 72.951 128.959 72.970 128.826 72.980 128.693 72.989 128.558 72.999 128.425 72.999 128.275 73.009 128.277 73.018 128.279 73.018 128.292 73.037 128.471 73.078 128.671 73.181 128.927 73.219 128.850 73.159 128.595 73.169 128.584 73.281 128.694 73.310 128.589 73.341 128.487 73.351 128.339 73.341 128.175 73.351 128.040 73.392 128.104 73.442 128.032 73.442 127.882 73.501 127.837 73.511 127.690 73.542 127.779 73.552 127.656 73.561 127.522 73.561 127.234 73.580 127.142 73.609 127.024 73.619 126.875 73.590 126.693 73.509 126.718 73.499 126.565 73.458 126.352 73.458 126.311 73.449 126.255 73.439 126.202 73.490 126.184 73.490 126.046 73.540 125.973 73.590 126.201 73.619 126.094 73.599 125.927 73.590 125.763 73.549 125.562 73.509 125.350 73.612 125.398 73.621 125.276 73.640 125.155 73.631 125.002 73.722 125.004 73.753 124.899 73.762 124.764 73.772 124.641 73.781 124.504 73.801 124.383 73.832 124.279 73.851 124.171 73.791 123.929 73.801 123.805 73.841 123.703 73.739 123.711 73.678 123.471 73.717 123.391 73.779 123.346 73.676 123.191 73.564 123.091 73.535 123.185 73.454 123.200 73.372 123.228 73.322 123.290 73.290 123.393 73.250 123.196 73.240 123.181 73.231 123.181 73.231 123.193 73.190 123.269 73.087 123.140 73.018 122.889 73.037 122.755 73.078 122.679 73.097 122.558 73.107 122.436 73.097 122.285 73.068 122.255 73.049 122.052 73.059 121.905 73.049 121.798 73.059 121.663 73.059 121.212 73.039 121.047 73.020 120.870 73.030 120.722 73.039 120.599 73.059 120.479 73.068 120.330 73.078 120.208 73.087 120.071 73.087 119.922 73.097 119.829 73.097 119.666 73.087 119.573 73.087 119.548 73.078 119.493 73.097 119.384 73.147 119.294 73.147 119.157 73.166 119.022 73.176 118.887 73.216 118.671 73.236 118.549 73.255 118.427 73.274 118.304 73.303 118.208 73.365 118.160 73.468 118.157 73.537 118.394 73.518 118.504 73.518 118.654 73.609 118.634 73.619 118.511 73.638 118.400 73.648 118.251 73.638 118.100 73.648 117.964 73.648 117.083 73.667 116.947 73.676 116.810 73.686 116.659 73.705 116.523 73.715 116.399 73.724 116.275 73.715 116.111 73.715 115.960 73.734 115.837 73.743 115.700 73.753 115.562 73.753 115.123 73.734 114.958 73.702 114.777 73.664 114.574 73.655 114.410 73.645 114.246 73.655 114.109 73.655 113.971 73.636 113.795 73.595 113.576 73.585 113.425 73.566 113.261 73.504 113.314 73.475 113.412 73.444 113.519 73.416 113.618 73.425 113.768 73.384 113.575 73.324 113.356 73.324 113.301 73.427 113.279 73.446 113.155 73.487 113.073 73.578 113.034 73.681 113.255 73.750 113.199 73.791 113.117 73.841 113.048 73.892 112.953 73.952 112.872 73.982 112.776 74.024 112.668 73.921 112.678 73.849 112.731 73.767 112.482 73.767 112.319 73.758 112.155 73.758 111.837 73.777 111.687 73.796 111.549 73.805 111.398 73.837 111.277 73.868 111.168 73.906 111.068 73.906 111.055 74.019 111.068 74.057 111.284 74.098 111.200 74.098 111.050 73.985 110.856 73.966 110.667 73.995 110.542 74.035 110.415 74.055 110.261 74.055 109.933 74.045 109.755 74.045 109.730 73.942 109.593 73.882 109.363 73.770 109.337 73.729 109.434 73.748 109.598 73.748 109.899 73.758 110.049 73.796 110.263 73.827 110.443 73.818 110.581 73.808 110.635 73.746 110.674 73.717 110.498 73.698 110.322 73.678 110.159 73.638 109.941 73.556 109.766 73.516 109.563 73.506 109.387 73.516 109.250 73.545 109.137 73.575 109.014 73.525 109.099 73.495 109.196 73.504 109.071 73.422 108.827 73.403 108.639 73.393 108.477 73.374 108.302 73.365 108.153 73.355 107.991 73.336 108.103 73.308 107.916 73.298 107.766 73.238 107.540 73.238 107.254 73.229 107.104 73.238 106.967 73.248 106.829 73.219 106.656 73.210 106.494 73.229 106.381 73.238 106.244 73.257 106.132 73.145 105.909 73.063 105.956 73.023 105.851 72.879 105.398 72.829 105.187 72.829 105.037 72.838 104.888 72.838 104.793 72.848 104.792 72.857 104.940 72.908 105.139 72.958 105.338 73.070 105.571 73.173 105.608 73.286 105.776 73.377 106.041 73.377 106.190 73.368 106.316 73.387 106.477 73.490 106.608 73.593 106.891 73.674 107.146 73.683 107.308 73.674 107.447 73.693 107.609 73.724 107.800 73.734 107.963 73.815 108.219 73.928 108.379 74.019 108.650 74.100 108.908 74.109 109.058 74.119 109.223 74.179 109.454 74.291 109.670 74.332 109.587 74.323 109.422 74.342 109.295 74.361 109.486 74.351 109.612 74.402 109.705 74.392 109.831 74.433 110.037 74.502 109.979 74.512 110.131 74.502 110.257 74.543 110.451 74.562 110.629 74.644 110.892 74.713 111.125 74.703 111.277 74.684 111.417 74.787 111.626 74.890 111.793 74.909 111.972 74.919 112.125 74.950 112.308 74.991 112.518 75.102 112.761 75.215 113.081 75.328 113.300 75.403 113.267 75.516 113.405 75.527 113.268 75.537 113.143 75.568 113.025 75.647 113.010 75.657 112.885 75.568 112.589 75.613 112.519 75.712 112.536 75.778 112.473 75.788 112.333 75.810 112.226 75.851 112.124 75.862 112.309 75.841 112.417 75.820 112.539 75.786 112.626 75.765 112.761 75.731 112.861 75.710 112.969 75.700 113.122 75.689 113.288 75.634 113.282 75.613 113.404 75.736 113.490 75.849 113.615 75.914 113.567 75.948 113.480 75.883 113.218 75.972 113.207 76.071 113.225 76.160 113.227 76.215 113.173 76.236 113.064 76.302 113.001 76.291 112.813 76.236 112.867 76.205 112.973 76.160 113.044 76.181 112.921 76.192 112.796 76.079 112.472 76.192 112.571 76.226 112.483 76.236 112.356 76.349 112.441 76.414 112.391 76.435 112.281 76.456 112.171 76.490 112.056 76.412 111.787 76.524 111.927 76.559 111.812 76.593 111.724 76.624 111.616 76.645 111.480 76.645 111.322 76.721 111.300 76.732 111.147 76.742 111.005 76.752 110.865 76.784 110.745 76.752 110.550 76.762 110.409 76.784 110.299 76.773 110.137 76.739 109.926 76.729 109.783 76.739 109.642 76.739 109.498 76.760 109.374 76.760 109.230 76.781 109.104 76.750 108.898 76.750 108.596 76.739 108.422 76.750 108.268 76.729 108.065 76.762 107.960 76.762 107.802 76.650 107.742 76.538 107.441 76.538 107.271 76.559 107.133 76.548 106.959 76.527 106.784 76.527 106.614 76.516 106.441 76.516 106.270 76.538 106.133 76.548 106.122 76.569 106.311 76.681 106.522 76.805 106.812 76.846 107.020 76.970 107.166 77.035 106.952 77.024 106.777 77.056 106.667 77.067 106.526 77.035 106.333 77.056 106.206 77.067 106.051 77.077 105.908 77.009 105.647 77.009 105.488 76.998 105.327 76.988 105.153 77.043 105.408 77.155 105.624 77.134 105.419 77.114 105.230 77.103 105.055 77.124 104.943 77.103 104.738 77.103 104.581 77.137 104.487 77.126 104.299 77.106 104.122 77.116 103.967 77.116 103.822 77.151 104.032 77.151 104.177 77.195 104.389 77.184 104.530 77.206 104.708 77.216 104.882 77.250 105.092 77.315 105.337 77.380 105.610 77.380 105.768 77.370 105.898 77.425 105.837 77.446 105.723 77.501 105.649 77.545 105.571 77.567 105.458 77.577 105.314 77.556 105.123 77.567 104.979 77.588 104.838 77.598 104.708 77.619 104.580 77.653 104.473 77.708 104.396 77.698 104.234 77.677 104.042 77.698 103.927 77.729 103.815 77.729 103.669 77.687 103.459 77.643 103.233 77.632 103.043 77.643 102.899 77.643 102.754 77.598 102.542 77.522 102.269 77.467 102.042 77.399 101.783 77.399 101.624 77.357 101.823 77.268 101.533 77.224 101.384 77.134 101.096 77.022 101.077 77.022 100.919 76.899 100.685 76.833 100.747 76.802 100.874 76.802 101.017 76.679 100.937 76.567 100.750 76.545 100.862 76.545 101.019 76.535 101.175 76.524 101.316 76.490 101.423 76.490 101.567 76.480 101.696 76.446 101.803 76.435 101.945 76.414 102.071 76.414 101.758 76.435 101.631 76.480 101.539 76.480 101.370 76.490 101.227 76.490 101.057 76.480 100.885 76.524 100.805 76.556 100.694 76.524 100.492 76.504 100.305 76.493 100.133 76.514 100.019 76.514 99.832 76.493 99.516 76.493 99.359 76.504 99.217 76.514 99.062 76.524 98.933 76.535 98.805 76.435 98.821 76.370 98.873 76.380 99.044 76.346 99.153 76.304 99.238 76.304 99.381 76.236 99.440 76.195 99.538 76.150 99.631 76.071 99.647 76.071 99.577 76.105 99.469 76.116 99.329 76.171 99.236 76.150 99.050 76.171 98.924 76.249 98.864 76.215 98.660 76.291 98.596 76.249 98.396 76.195 98.164 76.195 98.007 76.174 97.836 76.129 97.943 76.087 97.730 76.119 97.604 76.097 97.432 76.077 97.559 76.045 97.659 76.011 97.456 76.011 97.301 75.990 97.130 76.011 97.016 76.011 96.873 75.922 96.597 75.922 96.443 75.912 96.359 76.011 96.323 76.022 96.196 75.979 95.983 75.979 95.841 75.924 95.612 75.904 95.442 76.016 95.735 76.105 96.011 76.137 95.897 76.158 95.770 76.178 95.628 76.168 95.459 76.178 95.316 76.178 95.173 76.158 94.976 76.147 94.793 76.178 94.678 76.189 94.537 76.113 94.280 76.158 94.196 76.137 94.013 76.147 93.884 76.147 93.714 76.158 93.573 76.113 93.670 76.103 93.812 76.068 93.625 76.068 93.469 76.048 93.286 76.092 93.188 76.123 93.073 76.103 92.904 75.979 92.687 75.924 92.772 75.924 92.926 75.956 92.812 75.990 93.012 75.969 93.127 75.927 93.228 75.969 93.339 75.938 93.454 75.938 93.622 75.982 93.965 75.938 93.764 75.917 93.582 75.896 93.413 75.875 93.229 75.865 93.048 75.854 92.866 75.833 92.697 75.822 92.541 75.812 92.358 75.791 92.177 75.791 92.021 75.757 91.836 75.757 91.668 75.767 91.540 75.678 91.272 75.657 91.091 75.700 91.002 75.657 90.794 75.700 90.705 75.668 90.511 75.647 90.330 75.637 90.163 75.626 89.994 75.616 89.840 75.582 89.841 75.550 89.828 75.550 89.660 75.540 89.492 75.474 89.258 75.508 89.145 75.498 88.991 75.476 88.823 75.466 88.768 75.456 88.896 75.446 88.730 75.391 88.509 75.301 88.247 75.189 88.012 75.168 87.846 75.134 87.664 75.155 87.523 75.175 87.381 75.175 87.241 75.186 87.087 75.197 86.946 75.175 86.780 75.120 86.810 75.110 86.951 75.100 87.079 75.068 87.181 75.068 87.462 74.959 87.364 74.978 87.231 75.031 87.138 75.021 86.972 74.978 87.064 74.875 86.863 74.763 86.858 74.782 86.725 74.679 86.717 74.650 86.534 74.692 86.424 74.742 86.323 74.751 86.193 74.771 86.073 74.842 85.993 74.842 85.841 74.792 85.929 74.751 85.734 74.648 85.740 74.658 85.890 74.648 86.032 74.629 86.165 74.610 86.298 74.600 86.440 74.591 86.596 74.571 86.424 74.521 86.512 74.481 86.610 74.471 86.751 74.491 86.911 74.418 86.988 74.409 86.840 74.349 86.626 74.440 86.568 74.440 86.529 74.478 86.416 74.497 86.283 74.466 86.112 74.466 85.947 74.438 86.084 74.365 86.149 74.397 86.015 74.407 85.874 74.315 85.946 74.306 86.089 74.306 86.392 74.287 86.537 74.246 86.634 74.164 86.702 74.124 86.800 74.124 86.950 74.114 87.092 74.105 87.234 74.105 86.944 74.002 86.977 73.961 87.028 73.942 86.995 73.932 86.918 73.952 86.774 73.961 86.620 73.942 86.449 73.942 86.299 73.923 86.141 73.932 86.012 73.923 85.852 73.894 85.684 73.884 85.511 73.781 85.299 73.772 85.139 73.791 84.994 73.791 84.886 73.801 84.840 73.820 84.709 73.820 84.558 73.810 84.397 73.781 84.218 73.772 84.046 73.772 83.732 73.762 83.584 73.743 83.428 73.734 83.267 73.734 82.704 73.743 82.550 73.743 82.412 73.734 82.238 73.734 81.937 73.724 81.765 73.724 81.448 73.705 81.279 73.674 81.113 73.674 80.975 73.664 80.815 73.655 80.668 73.564 80.433 73.583 80.589 73.480 80.384 73.398 80.158 73.379 80.290 73.289 80.356 73.269 80.188 73.260 80.317 73.178 80.390 73.159 80.522 73.140 80.653 73.068 80.736 72.965 80.749 72.862 80.628 72.750 80.603 72.647 80.644 72.597 80.733 72.515 80.954 72.465 81.069 72.465 81.204 72.455 81.331 72.455 81.384 72.446 81.511 72.436 81.650 72.417 81.780 72.398 81.910 72.388 82.037 72.357 82.155 72.288 82.251 72.185 82.220 72.144 82.329 72.116 82.437 72.065 82.537 71.993 82.616 71.934 82.642 71.883 82.633 71.864 82.467 71.855 82.312 71.826 82.150 71.816 81.994 71.826 81.856 71.816 81.712 71.826 81.587 71.855 81.479 71.874 81.338 71.893 81.221 71.984 81.145 72.014 81.026 72.096 80.782 72.116 80.718 72.144 80.584 72.135 80.735 72.216 80.663 72.225 80.536 72.244 80.419 72.264 80.276 72.273 80.137 72.302 80.028 72.321 79.938 72.341 79.820 72.371 79.701 72.412 79.590 72.450 79.477 72.470 79.346 72.479 79.206 72.479 79.070 72.470 78.914 72.470 78.779 72.489 78.635 72.499 78.508 72.499 78.429 72.479 78.437 72.489 78.298 72.460 78.124 72.429 77.948 72.369 77.760 72.288 77.540 72.319 77.420 72.216 77.317 72.166 77.421 72.194 77.580 72.214 77.746 72.214 77.881 72.173 78.004 72.122 78.095 72.019 78.124 71.960 77.936 71.940 77.785 71.921 77.633 71.931 77.482 71.962 77.374 72.022 77.279 72.063 77.168 72.091 77.045 72.101 77.000 72.130 76.890 72.149 76.772 72.130 76.608 72.111 76.457 72.101 76.300 72.051 76.122 72.019 75.949 71.938 76.014 71.847 76.083 71.775 76.169 71.663 76.219 71.653 76.345 71.634 76.462 71.596 76.576 71.565 76.683 71.546 76.801 71.527 76.931 71.517 77.056 71.467 77.172 71.435 77.279 71.416 77.408 71.406 77.533 71.387 77.663 71.469 77.880 71.366 77.855 71.376 78.010 71.366 78.148 71.297 78.220 71.194 78.196 71.153 78.305 71.172 78.455 71.060 78.357 71.069 78.498 71.041 78.619 71.069 78.789 71.120 78.967 71.017 78.783 71.017 78.492 70.988 78.322 71.026 78.210 71.045 78.093 71.055 77.956 71.074 77.840 71.186 77.804 71.237 77.703 71.256 77.586 71.256 77.521 71.266 77.396 71.266 77.262 71.275 77.124 71.275 76.978 71.172 76.850 71.275 76.820 71.294 76.703 71.304 76.566 71.304 76.273 71.313 76.136 71.313 75.990 71.332 75.860 71.351 75.730 71.371 75.613 71.390 75.483 71.409 75.353 71.440 75.221 71.522 75.155 71.541 75.330 71.644 75.417 71.694 75.312 71.807 75.261 71.857 75.156 71.969 75.185 72.072 75.363 72.091 75.367 72.194 75.442 72.307 75.526 72.410 75.601 72.500 75.543 72.603 75.482 72.706 75.479 72.757 75.373 72.860 75.366 72.898 75.263 72.908 75.135 72.958 75.017 72.949 74.872 72.910 74.703 72.838 74.791 72.788 74.884 72.719 74.962 72.513 75.029 72.410 75.034 72.297 74.992 72.194 74.880 72.144 74.690 72.113 74.517 72.094 74.447 72.084 74.386 72.065 74.235 72.024 74.066 72.005 73.916 71.986 73.740 71.936 73.551 71.833 73.442 71.730 73.370 71.617 73.172 71.505 72.934 71.474 73.055 71.414 73.299 71.373 73.412 71.323 73.505 71.242 73.571 71.150 73.630 71.100 73.722 71.041 73.819 70.938 73.852 70.887 73.944 70.846 74.056 70.806 74.156 70.715 74.226 70.612 74.218 70.499 74.038 70.396 73.914 70.293 73.687 70.191 73.643 70.078 73.577 70.069 73.570 69.968 73.530 69.871 73.436 69.774 73.442 69.706 73.524 69.659 73.621 69.602 73.710 69.516 73.779 69.420 73.748 69.314 73.671 69.217 73.716 69.169 73.825 69.199 73.975 69.237 74.145 69.237 74.276 69.228 74.412 69.201 74.534 69.183 74.663 69.201 74.818 69.239 74.989 69.287 75.154 69.334 75.332 69.352 75.475 69.334 75.604 69.325 75.751 69.334 75.889 69.304 76.009 69.276 76.118 69.248 76.239 69.230 76.368 69.248 76.525 69.219 76.644 69.154 76.737 69.106 76.843 69.097 76.966 69.088 77.089 69.070 77.218 69.032 77.331 69.023 77.466 68.993 77.585 68.896 77.614 68.799 77.654 68.694 77.637 68.628 77.728 68.572 77.826 68.495 77.897 68.457 77.997 68.360 77.935 68.351 77.799 68.342 77.651 68.256 77.458 68.159 77.423 68.053 77.430 67.956 77.381 67.859 77.448 67.851 77.581 67.868 77.723 67.839 77.829 67.821 77.866 67.803 77.993 67.794 78.114 67.794 78.394 67.737 78.490 67.785 78.666 67.747 78.765 67.690 78.862 67.709 78.748 67.726 78.634 67.709 78.480 67.690 78.338 67.699 78.205 67.699 78.078 67.681 77.936 67.690 77.803 67.709 77.781 67.679 77.631 67.744 77.552 67.783 77.441 67.812 77.323 67.839 77.203 67.878 77.092 67.975 77.024 67.965 77.158 68.062 77.156 68.169 77.158 68.266 77.207 68.362 77.217 68.468 77.168 68.565 77.167 68.662 77.188 68.709 77.095 68.727 76.955 68.775 76.861 68.822 76.744 68.849 76.634 68.896 76.516 68.993 76.565 69.079 76.488 69.088 76.352 69.088 76.080 69.070 75.937 69.052 75.782 69.034 75.627 69.016 75.483 69.007 75.335 68.989 75.191 68.962 75.029 68.933 74.866 68.914 74.723 68.896 74.568 68.840 74.398 68.734 74.333 68.637 74.376 68.540 74.268 68.455 74.347 68.416 74.460 68.360 74.548 68.294 74.641 68.197 74.685 68.100 74.743 67.995 74.729 67.898 74.710 67.792 74.597 67.715 74.402 67.647 74.226 67.582 74.040 67.485 73.920 67.379 73.884 67.282 73.838 67.185 73.793 67.079 73.630 66.982 73.462 66.955 73.304 66.926 73.145 66.888 72.991 66.791 72.785 66.773 72.635 66.764 72.490 66.687 72.310 66.590 72.294 66.484 72.295 66.419 72.124 66.390 71.967 66.360 71.908 66.378 71.794 66.416 71.694 66.464 71.588 66.473 71.457 66.491 71.330 66.500 71.199 66.500 71.073 66.509 70.941 66.500 70.796 66.491 70.664 66.482 70.521 66.473 70.376 66.482 70.245 66.511 70.126 66.529 69.999 66.538 69.917 66.557 69.803 66.604 69.697 66.622 69.582 66.630 69.449 66.640 69.329 66.678 69.216 66.716 69.114 66.773 69.013 66.879 69.043 66.917 68.930 66.917 68.906 66.935 68.894 66.962 69.039 66.953 69.172 66.962 69.316 66.935 69.437 66.953 69.576 66.944 69.708 66.982 69.872 66.924 69.919 66.876 70.014 66.829 70.122 66.811 70.237 66.829 70.386 66.888 70.553 66.906 70.691 66.906 70.703 66.953 70.862 66.962 70.995 67.018 71.172 67.027 71.305 67.027 71.317 67.037 71.450 67.063 71.595 67.111 71.767 67.208 71.919 67.255 71.824 67.284 71.983 67.276 72.105 67.373 72.032 67.438 72.217 67.535 72.358 67.632 72.437 67.661 72.458 67.747 72.657 67.812 72.830 67.841 72.991 67.938 72.985 68.044 73.111 68.141 73.065 68.207 72.983 68.304 73.013 68.410 73.163 68.506 73.321 68.603 73.478 68.700 73.405 68.730 73.285 68.768 73.171 68.816 73.063 68.854 72.949 68.881 72.826 68.910 72.694 68.958 72.597 69.014 72.495 69.100 72.426 69.197 72.380 69.293 72.369 69.399 72.508 69.476 72.420 69.573 72.500 69.670 72.427 69.767 72.420 69.864 72.529 69.970 72.525 70.028 72.425 70.078 72.388 70.181 72.445 70.293 72.430 70.334 72.330 70.437 72.424 70.497 72.604 70.610 72.669 70.681 72.594 70.784 72.676 70.887 72.706 71.000 72.719 71.050 72.626 71.110 72.541 71.213 72.571 71.263 72.465 71.282 72.347 71.311 72.225 71.351 72.099 71.392 71.998 71.452 71.899 71.503 71.793 71.615 71.749 71.656 71.915 71.687 72.074 71.790 72.247 71.902 72.247 72.005 72.450 72.087 72.491 72.199 72.622 72.302 72.681 72.405 72.790 72.496 72.729 72.599 72.789 72.661 72.692 72.764 72.684 72.833 72.592 72.853 72.459 72.872 72.326 72.891 72.192 72.910 72.046 72.879 71.872 72.939 71.759 72.958 71.625 72.987 71.512 72.987 71.363 72.977 71.206 72.987 71.052 72.987 70.903 72.968 70.751 72.968 70.602 72.977 70.461 72.977 70.163 72.968 69.993 72.968 69.790 72.958 69.634 72.968 69.492 73.009 69.661 73.047 69.554 73.047 69.404 72.934 69.237 72.831 69.078 72.728 68.986 72.626 68.841 72.513 68.779 72.410 68.754 72.307 68.675 72.204 68.622 72.101 68.556 72.082 68.516 71.979 68.451 71.866 68.366 71.763 68.263 71.704 68.071 71.601 67.876 71.551 67.692 71.490 67.514 71.440 67.318 71.421 67.170 71.380 66.982 71.289 66.769 71.186 66.645 71.083 66.635 71.083 66.768 70.981 66.576 70.868 66.599 70.868 66.732 70.878 66.885 70.909 67.052 70.890 67.184 70.799 67.261 70.686 67.167 70.583 67.132 70.471 67.127 70.368 67.065 70.265 67.015 70.255 67.140 70.164 67.218 70.061 67.104 70.042 66.974 70.061 66.856 70.061 66.767 70.021 66.751 69.913 66.704 69.807 66.660 69.710 66.673 69.663 66.786 69.760 66.860 69.751 66.986 69.722 67.110 69.692 67.222 69.692 67.364 69.665 67.490 69.618 67.590 69.588 67.701 69.571 67.832 69.618 67.994 69.521 67.993 69.424 67.918 69.327 67.996 69.259 68.082 69.203 68.187 69.147 68.280 69.070 68.371 69.034 68.490 69.005 68.624 69.014 68.760 69.052 68.915 69.005 69.026 68.975 68.864 68.910 68.963 68.813 68.898 68.716 68.822 68.610 68.701 68.513 68.550 68.416 68.573 68.416 68.560 68.331 68.375 68.292 68.210 68.339 68.112 68.436 68.187 68.504 68.090 68.531 67.979 68.560 67.844 68.570 67.721 68.635 67.622 68.682 67.524 68.721 67.419 68.759 67.302 68.788 67.180 68.824 67.074 68.930 67.027 68.948 66.909 68.966 66.767 68.975 66.643 68.985 66.507 69.011 66.394 69.030 66.252 69.077 66.152 69.095 66.034 69.113 65.903 69.131 65.785 69.149 65.653 69.197 65.542 69.205 65.689 69.214 65.564 69.224 65.416 69.242 65.297 69.271 65.174 69.300 65.062 69.336 64.942 69.251 64.812 69.212 64.737 69.221 64.667 69.318 64.703 69.374 64.881 69.404 64.744 69.442 64.626 69.478 64.493 69.516 64.374 69.546 64.249 69.573 64.135 69.591 64.004 69.609 63.872 69.638 63.759 69.657 63.628 69.674 63.495 69.692 63.364 69.710 63.244 69.729 63.124 69.737 62.973 69.747 62.836 69.747 62.705 69.764 62.545 69.774 62.407 69.774 61.975 69.782 61.837 69.792 61.700 69.801 61.549 69.809 61.423 69.819 61.274 69.857 61.153 69.866 61.027 69.875 60.889 69.884 60.763 69.798 60.570 69.702 60.502 69.692 60.354 69.702 60.216 69.605 60.030 69.548 60.129 69.471 60.240 69.404 60.343 69.347 60.441 69.251 60.501 69.154 60.537 69.201 60.718 69.154 60.821 69.048 60.848 68.951 60.816 68.894 60.642 68.788 60.479 68.761 60.322 68.752 60.187 68.743 60.053 68.752 59.916 68.770 59.875 68.685 59.686 68.637 59.788 68.540 59.863 68.443 59.785 68.405 59.635 68.405 59.506 68.423 59.375 68.441 59.232 68.450 59.108 68.480 58.995 68.577 59.037 68.682 58.993 68.759 59.176 68.797 59.339 68.854 59.241 68.901 59.125 68.948 59.022 69.014 58.928 69.043 59.087 69.034 58.940 69.043 58.803 69.025 58.651 69.007 58.511 68.978 58.354 68.913 58.188 68.816 58.238 68.863 58.122 68.919 58.023 68.892 57.878 68.795 57.814 68.786 57.668 68.795 57.543 68.709 57.368 68.612 57.201 68.595 57.039 68.603 56.914 68.622 56.771 68.660 56.649 68.687 56.522 68.678 56.388 68.660 56.250 68.669 56.113 68.698 55.987 68.689 55.841 68.642 55.687 68.624 55.548 68.624 55.407 68.605 55.269 68.547 55.098 68.491 54.928 68.453 54.858 68.356 54.833 68.249 54.804 68.231 54.654 68.279 54.549 68.364 54.462 68.317 54.310 68.270 54.145 68.270 54.122 68.376 54.150 68.290 53.967 68.281 53.834 68.308 53.734 68.317 53.597 68.317 53.456 68.299 53.319 68.308 53.171 68.405 53.256 68.423 53.406 68.461 53.566 68.423 53.688 68.488 53.861 68.585 53.807 68.653 53.699 68.750 53.759 68.856 53.799 68.894 53.947 68.921 53.820 68.930 53.682 68.960 53.555 68.978 53.705 68.969 53.843 68.987 53.982 68.987 54.123 68.996 54.258 69.043 54.411 69.043 54.270 69.034 54.123 69.034 53.981 69.025 53.846 69.016 53.712 68.989 53.557 68.971 53.406 68.944 53.263 68.896 53.086 68.849 52.934 68.831 52.795 68.784 52.631 68.746 52.484 68.649 52.296 68.640 52.433 68.583 52.547 68.498 52.647 68.470 52.505 68.403 52.332 68.376 52.190 68.461 52.090 68.558 52.199 68.635 52.093 68.597 51.935 68.570 51.780 68.560 51.634 68.495 51.463 68.477 51.326 68.459 51.176 68.432 51.023 68.423 50.890 68.441 50.757 68.373 50.585 68.317 50.430 68.279 50.273 68.231 50.122 68.135 49.950 68.152 49.946 68.170 49.954 68.170 49.943 68.123 49.781 68.067 49.627 68.028 49.470 68.001 49.330 67.963 49.185 67.945 49.036 67.936 48.892 67.954 48.760 67.972 48.639 67.916 48.755 67.819 48.814 67.781 48.938 67.715 49.037 67.762 48.918 67.781 48.786 67.799 48.654 67.751 48.493 67.760 48.357 67.769 48.233 67.672 48.052 67.720 47.933 67.664 47.769 67.587 47.864 67.490 47.862 67.393 47.733 67.287 47.653 67.190 47.713 67.084 47.669 66.987 47.528 67.005 47.408 67.005 47.281 66.967 47.127 66.948 46.969 66.931 46.835 66.913 46.688 66.913 46.550 66.856 46.388 66.953 46.540 66.953 46.413 66.935 46.279 66.926 46.136 66.917 45.995 66.946 45.956 66.973 45.828 67.147 45.643 67.244 45.595 67.291 45.486 67.318 45.358 67.336 45.214 67.413 44.965 67.498 44.898 67.595 44.959 67.625 45.009 67.672 45.167 67.699 45.305 67.806 45.297 67.833 45.436 67.851 45.582 67.851 45.711 67.859 45.854 67.868 45.986 67.878 46.118 67.907 46.282 67.898 46.407 67.889 46.543 67.907 46.679 68.013 46.635 68.078 46.522 68.175 46.499 68.252 46.402 68.270 46.268 68.317 46.158 68.385 46.046 68.450 45.943 68.547 45.907 68.556 45.781 68.585 45.651 68.595 45.514 68.624 45.384 68.633 45.247 68.642 45.097 68.642 44.800 68.624 44.651 68.624 44.522 68.615 44.404 68.605 44.259 68.597 44.103 68.615 43.968 68.642 43.849 68.689 43.726 68.698 43.576 68.736 43.461 68.671 43.295 68.633 43.422 68.585 43.533 68.547 43.648 68.509 43.774 68.481 43.893 68.443 44.020 68.396 44.131 68.349 44.214 68.252 44.189 68.155 44.152 68.117 44.266 68.078 44.123 67.981 44.199 67.954 44.060 67.857 44.098 67.751 44.007 67.654 43.923 67.557 43.836 67.451 43.757 67.354 43.721 67.257 43.812 67.257 44.079 67.201 44.185 67.124 44.294 67.066 44.399 67.000 44.501 66.894 44.422 66.798 44.410 66.741 44.526 66.674 44.363 66.567 44.298 66.491 44.197 66.455 44.145 66.349 44.082 66.252 44.057 66.146 44.129 66.040 44.112 65.943 44.149 65.981 44.102 66.078 44.013 66.175 43.988 66.232 43.871 66.261 43.756 66.232 43.607 66.222 43.478 66.117 43.416 66.182 43.303 66.259 43.468 66.286 43.604 66.383 43.578 66.412 43.463 66.430 43.343 66.507 43.234 66.507 43.108 66.498 42.966 66.488 42.824 66.480 42.684 66.536 42.577 66.565 42.462 66.595 42.322 66.613 42.190 66.516 42.030 66.419 41.896 66.313 41.733 66.236 41.569 66.180 41.423 66.132 41.269 66.114 41.138 66.085 41.002 66.076 40.862 66.058 40.718 65.972 40.564 65.866 40.403 65.819 40.262 65.763 40.107 65.736 39.973 65.697 39.849 65.600 39.708 65.503 39.676 65.398 39.752 65.330 39.867 65.253 39.967 65.194 40.019 65.118 40.131 65.070 40.251 65.023 40.308 64.929 40.376 64.837 40.396 64.736 40.414 64.643 40.495 64.615 40.486 64.615 40.448 64.643 40.334 64.634 40.196 64.680 40.074 64.717 39.962 64.725 39.915 64.663 39.773 64.634 39.629 64.643 39.507 64.677 39.383 64.723 39.261 64.740 39.131 64.777 39.018 64.811 38.893 64.828 38.774 64.837 38.652 64.865 38.513 64.820 38.364 64.803 38.224 64.749 38.085 64.850 38.042 64.858 38.180 64.932 38.336 64.914 38.196 64.923 38.063 64.949 37.946 64.986 37.821 65.062 37.708 65.109 37.673 65.147 37.560 65.194 37.438 65.212 37.319 65.231 37.188 65.260 37.061 65.260 36.924 65.163 36.835 65.057 36.804 65.010 36.666 64.992 36.526 64.992 36.402 64.900 36.474 64.807 36.573 64.781 36.702 64.699 36.815 64.617 36.917 64.555 37.023 64.482 37.127 64.456 37.254 64.439 37.373 64.466 37.516 64.492 37.647 64.492 37.770 64.419 37.884 64.382 37.997 64.290 37.925 64.228 38.031 64.126 38.062 64.034 37.976 64.008 37.871 63.999 37.746 64.008 37.625 63.915 37.502 63.898 37.363 63.935 37.239 63.988 37.131 63.988 36.996 64.006 36.878 64.023 36.760 64.023 36.626 64.059 36.512 64.077 36.394 64.150 36.279 64.242 36.195 64.316 36.091 64.288 35.960 64.380 35.861 64.425 35.750 64.471 35.626 64.425 35.480 64.408 35.352 64.454 35.217 64.488 35.103 64.516 34.986 64.589 34.869 64.598 34.823 64.606 34.802 64.699 34.935 64.762 34.815 64.826 34.967 64.826 34.978 64.843 34.972 64.852 34.850 64.945 34.851 65.028 34.748 65.037 34.678 65.055 34.717 65.161 34.758 65.217 34.636 65.314 34.590 65.332 34.458 65.438 34.388 65.515 34.544 65.582 34.687 65.679 34.763 65.776 34.740 65.776 34.877 65.873 34.880 65.970 34.833 65.970 34.696 66.067 34.685 66.132 34.564 66.189 34.454 66.227 34.327 66.245 34.194 66.322 34.076 66.313 33.948 66.342 33.829 66.360 33.697 66.398 33.569 66.380 33.427 66.380 33.301 66.410 33.446 66.419 33.586 66.448 33.606 66.545 33.631 66.536 33.490 66.554 33.356 66.602 33.231 66.572 33.085 66.581 32.950 66.617 33.096 66.617 33.323 66.599 33.445 66.664 33.323 66.655 33.183 66.637 33.066 66.647 32.931 66.655 32.859 66.655 32.998 66.712 33.150 66.694 33.284 66.750 33.160 66.750 33.010 66.768 32.888 66.795 32.768 66.795 32.907 66.851 32.782 66.890 32.665 66.937 32.550 66.937 32.412 67.043 32.564 67.102 32.440 67.120 32.318 67.185 32.207 67.185 32.144 67.176 32.003 67.206 31.872 67.197 32.008 67.206 32.137 67.206 32.212 67.215 32.365 67.197 32.422 67.187 32.559 67.169 32.693 67.152 32.828 67.152 32.955 67.122 32.821 67.025 32.858 66.978 32.973 66.913 33.096 66.865 33.222 66.827 33.338 66.789 33.467 66.806 33.610 66.836 33.744 66.759 33.851 66.750 33.987 66.836 34.137 66.739 34.087 66.730 34.212 66.721 34.347 66.712 34.471 66.606 34.443 66.606 34.569 66.653 34.708 66.662 34.849 66.626 34.977 66.617 34.987 66.570 35.111 66.534 35.240 66.486 35.353 66.457 35.494 66.448 35.630 66.430 35.774 66.421 35.898 66.412 36.034 66.394 36.166 66.385 36.289 66.367 36.410 66.367 36.686 66.358 36.809 66.349 36.892 66.340 37.015 66.322 37.147 66.304 37.280 66.266 37.406 66.218 37.517 66.200 37.638 66.191 37.761 66.173 37.893 66.164 38.039 66.155 38.162 66.146 38.285 66.137 38.408 66.137 38.546 66.146 38.674 66.155 38.802 66.184 38.950 66.184 39.075 66.193 39.216 66.222 39.351 66.261 39.490 66.279 39.621 66.297 39.765 66.335 39.903 66.344 39.980 66.403 40.136 66.460 40.281 66.477 40.426 66.671 40.744 66.824 41.049 66.921 41.209 67.018 41.278 67.077 41.274 67.077 41.286 67.174 41.359 67.280 41.344 67.298 41.212 67.336 41.098 67.433 41.131 67.530 41.103 67.616 41.004 67.722 41.041 67.808 40.943 67.799 40.799 67.846 40.687 67.882 40.571 67.846 40.420 67.911 40.314 68.008 40.206 68.055 40.082 68.094 39.993 68.191 39.885 68.238 39.760 68.132 39.826 68.123 39.694 68.132 39.635 68.141 39.498 68.197 39.375 68.274 39.119 68.322 38.994 68.378 38.872 68.396 38.748 68.443 38.622 68.358 38.736 68.376 38.601 68.394 38.478 68.461 38.370 68.518 38.247 68.556 38.130 68.603 38.016 68.719 37.770 68.757 37.640 68.784 37.519 68.802 37.395 68.849 37.256 68.888 37.138 68.924 37.007 68.962 36.889 68.991 36.744 69.038 36.629 69.065 36.495 69.075 36.368 69.102 36.246 69.149 36.118 69.179 35.984 69.217 35.865 69.226 35.804 69.235 35.665 69.252 35.540 69.271 35.403 69.289 35.253 69.242 35.110 69.232 34.977 69.251 34.828 69.269 34.690 69.287 34.553 69.304 34.403 69.332 34.269 69.332 34.139 69.341 33.998 69.349 33.870 69.321 33.732 69.338 33.607 69.232 33.554 69.127 33.439 69.108 33.291 69.090 33.157 68.985 33.026 68.975 33.012 69.082 33.016 69.111 33.153 69.129 33.288 69.185 33.445 69.242 33.306 69.271 33.444 69.289 33.318 69.366 33.469 69.442 33.346 69.433 33.202 69.406 33.064 69.349 32.907 69.456 33.025 69.465 32.885 69.494 32.750 69.494 32.619 69.503 32.480 69.456 32.337 69.438 32.189 69.476 32.342 69.505 32.480 69.543 32.386 69.580 32.265 69.609 32.129 69.647 31.996 69.744 32.096 69.659 32.218 69.640 32.356 69.632 32.484 69.622 32.625 69.605 32.776 69.595 32.904 69.632 33.044 69.729 33.122 69.767 32.988 69.785 32.862 69.794 32.721 69.785 32.576 69.850 32.438 69.906 32.165 69.954 32.045 69.936 31.910 69.850 32.019 69.841 31.874 69.841 31.731 69.744 31.682 69.706 31.530 69.650 31.385 69.747 31.306 69.764 31.167 69.782 30.909 69.792 30.847 69.685 30.953 69.588 30.942 69.541 30.800 69.550 30.659 69.550 30.529 69.588 30.395 69.636 30.275 69.645 30.238 69.654 30.216 69.616 30.231 69.510 30.170 69.404 30.015 69.404 30.003 69.374 29.854 69.374 29.802 69.336 29.663 69.327 29.507 69.300 29.359 69.194 29.348 69.138 29.311 69.052 29.163 69.034 29.029 69.005 28.893 68.987 28.747 68.948 28.597 68.921 28.489 68.913 28.447 ; #2285 2 80.238 52.348 80.225 52.339 80.211 52.496 80.199 52.640 80.186 52.798 80.186 52.950 80.199 53.140 80.199 53.338 80.186 53.481 80.238 53.698 80.293 53.889 80.307 53.746 80.333 53.583 80.359 53.448 80.441 53.338 80.441 53.003 80.346 52.758 80.304 52.576 80.317 52.405 80.290 52.219 80.235 52.349 ; #2286 2 81.111 54.488 81.084 54.606 81.084 54.789 81.058 54.939 81.046 55.085 81.046 55.267 81.032 55.441 80.990 55.564 80.977 55.709 80.934 55.860 80.921 56.019 80.921 56.187 80.908 56.347 80.895 56.519 80.895 56.688 80.852 56.810 80.810 56.978 80.770 57.103 80.784 57.295 80.810 57.482 80.895 57.701 80.921 57.553 80.947 57.390 80.960 57.232 80.960 57.077 80.974 56.905 81.000 56.755 81.068 56.652 81.094 56.334 81.120 56.184 81.120 56.001 81.108 55.837 81.094 55.659 81.108 55.499 81.163 55.230 81.176 55.038 81.176 54.870 81.215 54.729 81.104 54.480 ; #2287 2 81.320 59.101 81.293 59.201 81.293 59.371 81.281 59.531 81.281 59.700 81.293 59.893 81.320 59.760 81.320 59.093 ; #2288 2 68.446 50.879 68.493 51.042 68.520 51.195 68.520 51.337 68.511 51.485 68.484 51.332 68.475 51.199 68.457 51.061 68.418 50.902 68.448 50.880 ; #2289 2 69.167 59.295 69.203 59.185 69.271 59.093 69.298 58.965 69.356 58.856 69.318 58.977 69.289 59.103 69.262 59.218 69.165 59.294 ; #2290 2 73.454 70.101 73.372 70.103 73.313 70.148 73.210 70.092 73.181 70.044 73.078 69.962 73.068 70.104 73.140 70.202 73.089 70.324 73.080 70.466 73.118 70.659 73.150 70.833 73.169 70.985 73.159 71.127 73.169 71.272 73.219 71.461 73.219 71.611 73.238 71.777 73.308 71.683 73.368 71.582 73.286 71.379 73.305 71.257 73.387 71.174 73.490 71.337 73.509 71.189 73.540 71.051 73.540 70.902 73.530 70.743 73.521 70.585 73.511 70.428 73.492 70.275 73.451 70.092 ; #2291 2 72.383 76.985 72.333 77.033 72.323 77.172 72.333 77.328 72.333 77.625 72.343 77.781 72.343 77.916 72.434 78.132 72.453 78.284 72.534 78.505 72.584 78.402 72.616 78.294 72.626 78.155 72.645 78.023 72.654 77.895 72.664 77.755 72.613 77.562 72.510 77.364 72.439 77.166 72.379 76.978 ; #2292 2 74.821 86.515 74.771 86.615 74.771 86.755 74.809 86.642 74.818 86.512 ; #2293 2 73.935 86.576 73.976 86.481 74.006 86.361 73.956 86.461 73.937 86.579 ; #2294 2 75.896 92.996 75.875 92.813 75.865 92.955 75.898 92.998 ; #2295 2 79.709 100.085 79.596 100.050 79.628 100.097 79.672 100.328 79.683 100.166 79.704 100.077 ; #2296 2 76.142 96.525 76.231 96.477 76.276 96.693 76.186 96.741 76.310 96.823 76.320 96.680 76.341 96.540 76.320 96.368 76.320 96.225 76.310 96.054 76.331 95.940 76.276 95.723 76.320 95.612 76.241 95.650 76.241 95.820 76.210 95.946 76.200 96.076 76.189 96.230 76.189 96.387 76.158 96.486 76.147 96.525 ; #2297 2 76.343 96.829 76.378 96.733 76.378 96.589 76.367 96.719 76.346 96.833 ; #2298 2 76.784 97.650 76.828 97.553 76.817 97.394 76.797 97.510 76.786 97.654 ; #2299 2 75.681 140.942 75.715 140.844 75.736 140.731 75.681 140.761 75.681 140.945 ; #2300 2 71.551 138.179 71.601 138.128 71.620 138.014 71.630 137.883 71.620 137.708 71.620 137.561 71.601 137.396 71.509 137.380 71.490 137.483 71.471 137.585 71.512 137.518 71.522 137.681 71.493 137.767 71.462 137.862 71.503 138.063 71.553 138.183 ; #2301 2 17.080 41.896 17.040 41.958 17.024 41.940 17.001 41.968 16.910 41.954 16.951 41.860 17.024 41.940 17.082 41.896 ; #2302 2 27.341 49.499 27.374 49.512 27.367 49.538 27.417 49.602 27.384 49.697 27.369 49.713 27.361 49.614 27.369 49.538 27.345 49.500 ; #2303 2 22.880 90.523 22.938 90.628 22.931 90.724 22.865 90.722 22.857 90.645 22.849 90.606 22.766 90.593 22.758 90.583 22.842 90.519 22.882 90.525 ; #2304 2 22.118 90.566 22.167 90.601 22.191 90.614 22.207 90.634 22.191 90.641 22.108 90.628 22.060 90.582 22.133 90.603 22.118 90.564 ; #2305 2 21.984 91.939 21.894 91.934 21.810 91.903 21.977 91.911 21.984 91.941 ; #2306 2 27.347 49.500 27.370 49.538 27.378 49.512 27.345 49.500 ; #2307 2 79.044 101.505 79.033 101.639 79.012 101.757 79.023 101.609 79.044 101.509 ; #2308 2 54.425 137.774 54.433 137.740 54.502 137.696 54.596 137.747 54.509 137.772 54.422 137.774 ; #2309 2 54.413 137.853 54.438 137.900 54.534 137.974 54.483 138.047 54.415 137.855 ; #2310 2 -15.327 124.575 -15.237 124.513 -15.154 124.562 -15.237 124.661 -15.320 124.581 -15.327 124.573 ; #2311 2 -14.503 125.137 -14.529 125.186 -14.455 125.243 -14.372 125.260 -14.349 125.193 -14.432 125.185 -14.439 125.186 -14.424 125.149 -14.507 125.142 ; #2312 2 -11.230 132.673 -11.147 132.700 -11.064 132.698 -10.973 132.668 -10.889 132.630 -10.973 132.586 -11.056 132.569 -11.139 132.626 -11.230 132.675 ; #2313 2 44.547 146.289 44.455 146.186 44.371 146.131 44.287 146.025 44.203 145.960 44.119 145.906 44.035 145.809 43.950 145.662 43.858 145.572 43.774 145.591 43.774 145.705 43.858 145.738 43.942 145.812 44.027 145.949 44.119 146.040 44.203 146.136 44.287 146.242 44.313 146.376 44.397 146.534 44.397 146.639 44.488 146.700 44.463 146.575 44.463 146.461 44.496 146.381 44.545 146.314 44.545 146.284 ; #2314 2 -11.553 133.468 -11.505 133.516 -11.489 133.467 -11.555 133.468 ; #2315 2 43.909 147.042 43.901 146.931 43.827 146.760 43.753 146.817 43.819 146.973 43.911 147.044 ; #2316 2 -40.571 144.883 -40.555 144.931 -40.522 145.019 -40.489 144.881 -40.573 144.884 ; #2317 2 -42.596 148.041 -42.512 148.046 -42.438 148.102 -42.522 148.095 -42.596 148.038 ; #2318 2 49.325 154.727 49.418 154.752 49.504 154.842 49.589 154.892 49.682 154.947 49.640 155.026 49.555 154.966 49.462 154.919 49.386 154.966 49.301 154.820 49.327 154.726 ; #2319 2 48.774 154.135 48.867 154.242 48.952 154.365 48.867 154.328 48.774 154.133 ; #2320 2 26.581 88.428 26.573 88.483 26.541 88.582 26.467 88.614 26.451 88.573 26.401 88.465 26.378 88.442 26.287 88.375 26.272 88.315 26.181 88.237 26.097 88.220 26.014 88.176 25.923 88.195 25.898 88.296 25.865 88.386 25.817 88.441 25.761 88.527 25.745 88.524 25.679 88.557 25.606 88.639 25.581 88.739 25.621 88.845 25.591 88.907 25.507 88.898 25.424 88.978 25.384 89.075 25.358 89.043 25.275 89.007 25.300 88.927 25.275 88.824 25.275 88.815 25.300 88.724 25.293 88.625 25.277 88.525 25.194 88.525 25.111 88.478 25.078 88.471 25.037 88.445 24.996 88.340 24.996 88.322 25.062 88.258 25.037 88.224 24.954 88.227 24.871 88.139 24.788 88.108 24.705 88.163 24.614 88.215 24.573 88.306 24.573 88.315 24.548 88.388 24.532 88.404 24.524 88.421 24.517 88.428 24.459 88.517 24.451 88.545 24.426 88.627 24.426 88.733 24.434 88.734 24.426 88.751 24.360 88.797 24.302 88.798 24.302 88.779 24.253 88.764 24.171 88.789 24.114 88.781 24.089 88.795 24.074 88.793 23.991 88.704 23.975 88.655 23.801 88.629 23.718 88.693 23.644 88.747 23.629 88.842 23.604 88.856 23.580 88.843 23.497 88.822 23.457 88.798 23.373 88.795 23.373 88.891 23.348 88.984 23.265 88.990 23.182 88.939 23.149 88.934 23.066 88.949 23.017 88.971 22.934 89.015 22.851 89.002 22.768 88.999 22.752 89.005 22.679 88.986 22.588 89.057 22.530 89.049 22.447 89.066 22.364 89.100 22.333 89.123 22.317 89.129 22.252 89.119 22.168 89.134 22.085 89.140 22.002 89.145 21.952 89.223 21.868 89.257 21.777 89.253 21.868 89.331 21.952 89.326 22.035 89.403 22.101 89.395 22.017 89.430 21.926 89.407 21.843 89.433 21.934 89.512 22.025 89.525 22.108 89.556 22.167 89.529 22.250 89.541 22.234 89.521 22.317 89.515 22.376 89.515 22.424 89.522 22.340 89.528 22.250 89.561 22.167 89.567 22.133 89.591 22.224 89.614 22.308 89.599 22.391 89.620 22.464 89.658 22.290 89.632 22.207 89.629 22.124 89.599 22.083 89.610 21.992 89.588 21.909 89.575 21.901 89.650 21.984 89.663 22.058 89.683 22.033 89.697 21.984 89.795 22.010 89.896 22.093 89.890 22.184 89.876 22.209 89.833 22.209 89.852 22.292 89.911 22.376 89.885 22.466 89.908 22.549 89.911 22.598 90.015 22.605 90.025 22.613 90.035 22.530 89.985 22.447 89.934 22.364 89.922 22.308 89.942 22.217 89.955 22.133 89.972 22.190 90.037 22.272 90.079 22.288 90.119 22.197 90.067 22.167 90.033 22.151 90.040 22.135 90.037 22.209 90.145 22.292 90.254 22.323 90.277 22.240 90.235 22.167 90.128 22.083 90.068 21.992 90.063 22.066 90.160 21.975 90.119 21.934 90.218 22.008 90.314 22.091 90.336 22.107 90.339 22.139 90.352 22.230 90.404 22.346 90.422 22.412 90.423 22.329 90.446 22.246 90.424 22.276 90.526 22.360 90.605 22.451 90.646 22.534 90.632 22.617 90.627 22.700 90.563 22.617 90.474 22.708 90.497 22.791 90.527 22.874 90.481 22.859 90.461 22.884 90.400 22.899 90.420 22.991 90.490 23.047 90.537 23.138 90.495 23.170 90.481 23.196 90.544 23.279 90.633 23.369 90.637 23.418 90.560 23.443 90.467 23.509 90.371 23.550 90.300 23.565 90.276 23.565 90.285 23.580 90.287 23.548 90.379 23.524 90.472 23.509 90.576 23.524 90.587 23.590 90.606 23.674 90.533 23.698 90.508 23.674 90.560 23.714 90.663 23.706 90.653 23.623 90.631 23.631 90.729 23.646 90.722 23.670 90.726 23.670 90.735 23.662 90.752 23.596 90.724 23.596 90.647 23.505 90.633 23.439 90.691 23.356 90.696 23.273 90.675 23.190 90.662 23.149 90.685 23.083 90.731 23.000 90.775 22.909 90.799 22.826 90.852 22.743 90.935 22.694 91.025 22.702 91.044 22.793 91.040 22.710 91.124 22.718 91.230 22.801 91.234 22.816 91.333 22.890 91.373 22.890 91.391 22.963 91.499 23.021 91.517 22.938 91.504 22.847 91.519 22.774 91.605 22.690 91.677 22.607 91.730 22.524 91.764 22.441 91.789 22.350 91.814 22.441 91.836 22.449 91.855 22.505 91.902 22.538 91.908 22.538 91.937 22.505 91.913 22.439 91.868 22.265 91.841 22.182 91.893 22.099 91.898 22.050 91.920 21.959 91.944 21.876 91.978 21.793 91.992 21.710 92.038 21.627 92.025 21.543 91.974 21.452 92.036 21.369 92.070 21.286 92.066 21.203 92.130 21.112 92.201 21.029 92.226 20.996 92.248 20.913 92.293 20.996 92.297 21.079 92.274 21.170 92.279 21.178 92.280 21.261 92.228 21.309 92.206 21.392 92.228 21.476 92.241 21.559 92.351 21.528 92.442 21.495 92.455 21.503 92.552 21.412 92.594 21.420 92.681 21.503 92.656 21.594 92.631 21.760 92.622 21.843 92.617 21.926 92.620 22.017 92.644 22.101 92.618 22.184 92.604 22.267 92.626 22.358 92.611 22.441 92.606 22.524 92.572 22.615 92.568 22.698 92.563 22.789 92.551 22.872 92.496 22.955 92.482 23.004 92.471 23.095 92.409 23.178 92.413 23.269 92.391 23.352 92.386 23.393 92.422 23.459 92.414 23.542 92.361 23.625 92.357 23.708 92.322 23.799 92.327 23.832 92.314 23.847 92.220 23.840 92.189 23.757 92.101 23.757 92.071 23.797 91.981 23.714 91.997 23.623 92.010 23.600 91.997 23.526 91.889 23.443 91.838 23.360 91.816 23.277 91.851 23.186 91.855 23.103 91.745 23.095 91.715 23.095 91.618 23.120 91.584 23.211 91.560 23.294 91.536 23.302 91.529 23.367 91.433 23.284 91.430 23.202 91.398 23.226 91.384 23.317 91.369 23.401 91.344 23.491 91.331 23.575 91.305 23.608 91.281 23.691 91.237 23.774 91.212 23.782 91.251 23.865 91.255 23.948 91.295 23.956 91.296 24.022 91.288 24.105 91.357 24.112 91.406 24.128 91.417 24.211 91.421 24.203 91.517 24.203 91.613 24.229 91.673 24.312 91.695 24.263 91.735 24.329 91.851 24.289 91.942 24.372 91.964 24.462 91.987 24.488 92.088 24.571 92.168 24.645 92.189 24.728 92.229 24.819 92.261 24.902 92.292 24.917 92.294 24.933 92.287 24.981 92.277 24.981 92.374 24.956 92.406 24.972 92.494 25.004 92.517 25.087 92.439 25.103 92.442 25.128 92.439 25.177 92.353 25.200 92.251 25.250 92.165 25.281 92.075 25.281 92.048 25.273 91.941 25.258 91.743 25.233 91.728 25.241 91.633 25.241 91.536 25.256 91.442 25.279 91.342 25.295 91.279 25.287 91.180 25.279 91.082 25.256 90.980 25.256 90.971 25.248 90.872 25.256 90.768 25.271 90.674 25.271 90.577 25.248 90.466 25.271 90.374 25.296 90.282 25.304 90.245 25.320 90.151 25.360 90.054 25.368 90.038 25.391 89.975 25.376 89.886 25.467 89.858 25.500 89.865 25.540 89.883 25.687 89.915 25.770 89.894 25.796 89.881 25.836 89.880 25.852 89.875 25.884 89.873 25.892 89.865 25.900 89.867 25.991 89.905 26.014 89.919 26.022 89.893 26.029 89.877 26.078 89.896 26.103 89.865 26.186 89.825 26.234 89.769 26.242 89.673 26.159 89.694 26.127 89.669 26.035 89.623 26.076 89.534 26.076 89.525 26.101 89.483 26.109 89.378 26.182 89.297 26.238 89.211 26.330 89.183 26.413 89.192 26.479 89.099 26.479 89.002 26.395 89.070 26.304 89.098 26.304 89.042 26.353 89.004 26.353 88.975 26.360 88.870 26.368 88.854 26.376 88.790 26.459 88.769 26.543 88.680 26.583 88.591 26.598 88.576 26.606 88.560 26.662 88.475 26.639 88.460 26.556 88.425 ; #2321 2 -14.912 128.484 -14.838 128.399 -14.755 128.396 -14.838 128.463 -14.912 128.481 ; #2322 2 64.749 -172.545 64.777 -172.494 64.878 -172.298 64.869 -172.190 64.833 -172.121 64.788 -172.067 64.742 -172.286 64.725 -172.453 64.751 -172.541 ; #2323 2 -20.207 149.019 -20.115 149.013 -20.032 149.009 -20.115 149.069 -20.199 149.062 -20.207 149.017 ; #2324 2 13.209 -61.258 13.293 -61.208 13.376 -61.197 13.466 -61.250 13.383 -61.308 13.293 -61.347 13.209 -61.256 ; #2325 2 16.529 42.841 16.469 42.840 16.475 42.919 16.516 43.016 16.598 43.096 16.640 43.163 16.688 43.174 16.771 43.196 16.796 43.293 16.887 43.327 16.970 43.247 17.061 43.242 17.144 43.256 17.235 43.261 17.319 43.292 17.402 43.334 17.485 43.338 17.568 43.438 17.568 43.447 17.618 43.546 17.593 43.640 17.560 43.734 17.477 43.805 17.436 43.907 17.452 44.004 17.452 44.100 17.436 44.194 17.485 44.284 17.492 44.284 17.550 44.534 17.547 44.635 17.578 44.711 17.578 45.273 17.479 45.467 17.396 46.168 17.380 46.423 17.436 46.795 17.106 47.052 17.106 47.232 17.262 47.517 17.603 47.651 18.314 48.235 18.762 49.158 18.943 50.822 19.092 52.063 19.133 52.039 20.120 55.036 22.133 55.695 22.820 55.197 22.747 55.144 22.762 55.002 22.770 54.926 22.828 54.489 22.859 54.232 22.859 54.194 22.899 53.892 22.940 53.577 22.965 53.379 23.014 52.902 23.047 52.626 23.196 52.465 23.335 52.350 23.418 52.281 23.724 52.026 23.830 51.929 23.879 51.885 24.101 51.691 24.209 51.603 24.300 51.610 24.366 51.579 24.358 51.540 24.414 51.439 24.391 51.380 24.482 51.322 24.573 51.406 24.656 51.489 24.679 51.394 24.606 51.321 24.697 51.328 24.712 51.235 24.664 51.154 24.648 51.134 24.664 51.030 24.729 50.938 24.788 50.886 24.828 50.860 24.844 50.852 24.852 50.767 24.942 50.756 25.026 50.698 25.091 50.667 25.173 50.579 25.264 50.580 25.354 50.551 25.438 50.542 25.521 50.503 25.587 50.413 25.643 50.314 25.734 50.247 25.817 50.190 25.734 50.287 25.817 50.258 25.900 50.181 25.983 50.151 26.074 50.152 26.074 50.046 26.082 50.037 26.148 50.054 26.181 50.048 26.236 50.054 26.196 50.145 26.244 50.247 26.302 50.263 26.318 50.264 26.401 50.264 26.484 50.237 26.500 50.220 26.500 50.202 26.533 50.108 26.624 50.071 26.639 50.054 26.664 50.057 26.720 50.072 26.728 50.055 26.744 50.048 26.817 50.064 26.751 50.094 26.759 50.113 26.759 50.122 26.710 50.202 26.784 50.133 26.865 50.065 26.873 50.057 26.881 50.048 26.904 50.033 26.912 50.004 26.919 49.948 26.919 49.930 26.968 49.838 26.983 49.810 27.067 49.724 27.067 49.715 27.074 49.716 27.122 49.673 27.206 49.616 27.246 49.639 27.181 49.587 27.181 49.570 27.186 49.510 27.194 49.463 27.260 49.479 27.283 49.386 27.308 49.389 27.391 49.380 27.440 49.287 27.531 49.374 27.596 49.283 27.589 49.175 27.581 49.136 27.596 49.129 27.622 49.102 27.662 49.059 27.662 48.963 27.647 48.943 27.647 48.925 27.662 48.909 27.655 48.917 27.647 48.925 27.655 48.917 27.662 48.909 27.670 48.928 27.753 48.918 27.761 48.871 27.753 48.861 27.769 48.854 27.784 48.865 27.867 48.883 27.852 48.919 27.796 48.943 27.879 48.961 27.895 48.944 27.978 48.855 27.993 48.839 28.059 48.836 28.067 48.810 28.115 48.718 28.206 48.679 28.272 48.686 28.355 48.608 28.446 48.617 28.529 48.590 28.585 48.498 28.585 48.177 28.578 48.078 28.578 47.775 28.669 47.698 28.752 47.659 28.835 47.649 28.918 47.610 28.926 47.610 29.032 47.555 29.048 47.449 29.055 47.343 29.071 47.246 29.079 47.140 29.086 47.043 29.102 46.937 29.109 46.840 29.117 46.802 29.150 46.650 29.135 46.639 29.127 46.611 29.094 46.510 29.102 46.404 29.117 46.209 29.133 46.026 29.148 45.882 29.156 45.718 29.171 45.553 29.187 45.381 29.195 45.206 29.203 45.100 29.210 45.053 29.218 44.946 29.226 44.819 29.299 44.719 29.380 44.601 29.464 44.483 29.562 44.346 29.694 44.153 29.777 44.035 29.868 43.915 29.876 43.907 29.932 43.805 30.005 43.704 30.013 43.696 30.021 43.688 30.104 43.561 30.187 43.454 30.253 43.363 30.326 43.256 30.417 43.120 30.483 43.021 30.549 42.930 30.688 42.740 30.787 42.615 30.878 42.499 31.002 42.339 31.118 42.188 31.148 42.083 31.189 41.989 31.230 41.886 31.270 41.783 31.278 41.774 31.311 41.671 31.359 41.559 31.367 41.551 31.458 41.384 31.582 41.182 31.655 41.043 31.754 40.868 31.837 40.721 31.928 40.554 31.944 40.456 31.969 40.312 31.984 40.196 31.992 40.139 32.017 39.956 32.033 39.858 32.048 39.752 32.064 39.615 32.071 39.589 32.087 39.461 32.110 39.316 32.044 39.231 31.978 39.125 31.955 39.024 31.948 38.984 31.924 38.885 31.899 38.783 31.876 38.673 31.851 38.592 31.827 38.490 31.803 38.379 31.795 38.370 31.795 38.342 31.775 38.223 31.481 37.182 31.176 37.471 31.092 37.561 31.027 37.623 30.943 37.711 30.961 37.662 30.493 38.110 30.332 37.778 30.042 37.669 29.980 37.590 29.970 37.466 29.955 37.367 29.939 37.267 29.924 37.168 29.899 37.068 29.883 36.968 29.835 36.866 29.752 36.815 29.669 36.761 29.585 36.707 29.495 36.643 29.421 36.531 29.348 36.430 29.274 36.338 29.201 36.234 29.201 36.225 29.216 36.140 29.231 36.043 29.247 35.937 29.262 35.840 29.270 35.745 29.286 35.648 29.301 35.550 29.316 35.453 29.332 35.356 29.340 35.259 29.355 35.164 29.363 35.135 29.363 35.125 29.282 35.091 29.199 35.066 29.115 35.052 29.032 35.028 28.893 35.018 28.802 35.003 28.719 34.970 28.635 34.974 28.579 34.979 28.496 34.955 28.413 34.920 28.330 34.887 28.249 34.853 28.165 34.799 28.117 34.757 28.034 34.808 28.117 34.844 28.110 34.940 28.125 35.039 28.110 35.136 28.125 35.174 28.092 35.279 28.067 35.374 27.986 35.408 27.978 35.407 27.897 35.499 27.805 35.529 27.722 35.610 27.639 35.670 27.548 35.682 27.457 35.732 27.374 35.804 27.301 35.905 27.218 35.976 27.134 35.980 27.053 36.040 26.970 36.141 26.879 36.212 26.796 36.253 26.705 36.333 26.622 36.404 26.531 36.454 26.447 36.505 26.357 36.546 26.266 36.596 26.175 36.637 26.091 36.717 26.076 36.813 25.977 36.853 25.920 36.820 25.838 36.843 25.747 36.932 25.699 37.035 25.608 37.105 25.527 37.155 25.436 37.205 25.345 37.246 25.264 37.317 25.181 37.388 25.089 37.372 25.041 37.395 24.942 37.380 24.886 37.280 24.795 37.352 24.712 37.413 24.621 37.494 24.581 37.510 24.498 37.571 24.414 37.576 24.323 37.636 24.300 37.741 24.308 37.847 24.225 37.940 24.225 37.958 24.233 38.064 24.151 38.116 24.101 38.210 24.052 38.275 24.045 38.284 23.989 38.386 23.905 38.479 23.815 38.568 23.731 38.602 23.648 38.636 23.565 38.728 23.474 38.788 23.393 38.793 23.310 38.806 23.226 38.867 23.143 38.910 23.060 38.906 23.019 39.000 22.929 39.060 22.977 38.966 22.896 39.009 22.812 39.069 22.729 39.123 22.638 39.163 22.605 39.171 22.522 39.175 22.431 39.179 22.348 39.174 22.265 39.131 22.174 39.118 22.093 39.113 22.010 39.099 21.919 39.112 21.836 39.126 21.752 39.169 21.669 39.182 21.578 39.195 21.495 39.257 21.412 39.215 21.331 39.201 21.240 39.252 21.157 39.275 21.066 39.337 20.992 39.438 20.918 39.461 20.835 39.512 20.754 39.593 20.671 39.635 20.588 39.686 20.497 39.766 20.414 39.838 20.373 39.931 20.357 40.026 20.350 40.073 20.342 40.168 20.269 40.270 20.186 40.349 20.145 40.452 20.079 40.525 19.998 40.596 19.915 40.668 19.874 40.762 19.791 40.863 19.700 40.858 19.616 40.901 19.584 41.005 19.501 41.009 19.419 41.023 19.336 41.104 19.245 41.117 19.179 41.210 19.096 41.224 19.005 41.220 18.922 41.309 18.841 41.278 18.758 41.301 18.692 41.326 18.651 41.420 18.568 41.481 18.487 41.505 18.396 41.537 18.312 41.562 18.229 41.642 18.214 41.659 18.131 41.711 18.040 41.735 17.966 41.836 17.910 41.926 17.827 42.018 17.754 42.110 17.671 42.191 17.605 42.283 17.522 42.363 17.438 42.368 17.355 42.381 17.272 42.395 17.181 42.399 17.272 42.413 17.191 42.473 17.158 42.489 17.110 42.582 17.026 42.596 16.943 42.609 16.887 42.711 16.804 42.753 16.721 42.766 16.638 42.771 16.554 42.833 16.488 42.830 ; #2326 7 9.299 -73.448 9.299 -73.363 9.307 -73.269 9.363 -73.169 9.429 -73.078 9.338 -73.046 9.255 -73.042 9.263 -72.947 9.230 -72.842 9.205 -72.867 9.197 -72.858 9.106 -72.835 8.940 -72.789 8.849 -72.767 8.766 -72.754 8.758 -72.744 8.692 -72.686 8.609 -72.607 8.518 -72.518 8.518 -72.500 8.435 -72.469 8.344 -72.464 8.261 -72.434 8.178 -72.430 8.112 -72.521 8.021 -72.542 7.937 -72.538 7.880 -72.561 7.788 -72.565 7.705 -72.552 7.622 -72.565 7.539 -72.495 7.531 -72.448 7.523 -72.353 7.475 -72.247 7.392 -72.260 7.367 -72.250 7.276 -72.208 7.193 -72.157 7.193 -72.148 7.145 -72.043 7.145 -72.025 7.119 -71.920 7.167 -71.828 7.193 -71.726 7.152 -71.621 7.167 -71.518 7.152 -71.422 7.119 -71.318 7.127 -71.214 7.119 -71.110 7.167 -71.018 7.216 -70.918 7.224 -70.823 7.208 -70.719 7.160 -70.622 7.127 -70.525 7.079 -70.420 7.104 -70.327 7.111 -70.232 7.111 -70.223 7.063 -70.175 6.964 -70.104 6.908 -70.055 6.817 -69.986 6.735 -69.916 6.643 -69.837 6.560 -69.777 6.469 -69.707 6.371 -69.627 6.345 -69.608 6.262 -69.540 6.295 -69.438 6.229 -69.340 6.303 -69.240 6.351 -69.148 6.336 -69.053 6.328 -68.958 6.313 -68.854 6.281 -68.758 6.305 -68.665 6.330 -68.571 6.322 -68.467 6.330 -68.373 6.363 -68.280 6.355 -68.177 6.355 -68.082 6.421 -67.991 6.446 -67.889 6.438 -67.794 6.415 -67.698 6.349 -67.600 6.342 -67.562 6.259 -67.595 6.175 -67.537 6.092 -67.579 6.009 -67.658 5.926 -67.729 5.835 -67.750 5.751 -67.737 5.668 -67.733 5.585 -67.824 5.512 -67.914 5.504 -67.923 5.421 -67.936 5.337 -67.906 5.297 -67.921 5.214 -67.891 5.148 -67.896 5.092 -67.911 5.009 -67.916 4.925 -67.914 4.842 -67.938 4.752 -67.945 4.668 -67.961 4.585 -67.884 4.494 -67.882 4.403 -67.907 4.320 -67.888 4.237 -67.831 4.204 -67.812 4.148 -67.802 4.057 -67.783 3.974 -67.743 3.890 -67.676 3.832 -67.580 3.749 -67.532 3.666 -67.504 3.593 -67.408 3.509 -67.432 3.418 -67.496 3.418 -67.542 3.335 -67.624 3.237 -67.734 3.138 -67.835 3.039 -67.945 2.956 -67.952 2.989 -67.898 2.964 -67.794 2.933 -67.699 2.842 -67.651 2.776 -67.555 2.693 -67.478 2.610 -67.393 2.526 -67.297 2.443 -67.332 2.360 -67.305 2.269 -67.236 2.186 -67.235 2.153 -67.252 2.070 -67.184 1.823 -67.095 1.732 -67.084 1.648 -67.045 1.565 -67.017 1.482 -67.007 1.391 -66.987 1.383 -66.978 1.310 -66.882 1.226 -66.786 1.136 -66.681 1.053 -66.585 0.969 -66.480 0.929 -66.376 0.929 -66.281 0.954 -66.187 0.969 -66.093 1.060 -66.012 1.110 -65.919 1.159 -65.826 1.159 -65.722 1.085 -65.626 1.002 -65.633 0.911 -65.686 0.820 -65.638 0.869 -65.545 0.952 -65.509 1.043 -65.465 1.091 -65.372 1.149 -65.279 1.232 -65.271 1.316 -65.219 1.339 -65.116 1.354 -65.090 1.395 -64.996 1.426 -64.902 1.441 -64.808 1.497 -64.707 1.580 -64.671 1.638 -64.577 1.623 -64.483 1.540 -64.464 1.623 -64.402 1.706 -64.309 1.780 -64.216 1.863 -64.189 1.954 -64.183 2.037 -64.184 2.120 -64.111 2.136 -64.017 2.128 -63.923 2.202 -63.830 2.267 -63.728 2.283 -63.634 2.298 -63.540 2.381 -63.513 2.389 -63.513 2.472 -63.497 2.564 -63.481 2.579 -63.576 2.586 -63.680 2.594 -63.774 2.586 -63.869 2.579 -63.971 2.620 -64.067 2.693 -64.172 2.776 -64.127 2.859 -64.120 2.950 -64.139 3.034 -64.198 3.117 -64.246 3.200 -64.283 3.283 -64.351 3.374 -64.335 3.457 -64.346 3.548 -64.356 3.631 -64.340 3.715 -64.315 3.805 -64.381 3.888 -64.466 3.929 -64.562 4.012 -64.658 4.179 -64.793 4.262 -64.821 4.345 -64.917 4.436 -64.865 4.370 -64.760 4.362 -64.751 4.272 -64.712 4.279 -64.617 4.295 -64.523 4.295 -64.429 4.279 -64.326 4.214 -64.230 4.131 -64.199 4.039 -64.160 4.063 -64.057 4.103 -63.964 4.080 -63.869 4.095 -63.766 4.022 -63.670 4.030 -63.575 4.113 -63.503 4.072 -63.407 3.989 -63.342 3.906 -63.245 3.823 -63.180 3.740 -63.095 3.716 -63.000 3.757 -62.907 3.840 -62.862 3.931 -62.873 4.014 -62.903 4.105 -62.896 4.188 -62.863 4.196 -62.768 4.204 -62.665 4.295 -62.603 4.318 -62.509 4.278 -62.414 4.246 -62.310 4.270 -62.216 4.318 -62.123 4.302 -62.019 4.351 -61.926 4.399 -61.832 4.392 -61.728 4.457 -61.635 4.548 -61.629 4.564 -61.534 4.579 -61.440 4.662 -61.405 4.637 -61.310 4.630 -61.292 4.645 -61.189 4.678 -61.095 4.769 -61.059 4.852 -60.978 4.902 -60.884 4.968 -60.782 5.051 -60.730 5.134 -60.716 5.175 -60.736 5.258 -60.766 5.341 -60.865 5.433 -60.943 5.516 -61.022 5.606 -61.101 5.697 -61.180 5.788 -61.267 5.879 -61.346 5.962 -61.425 6.053 -61.504 6.078 -61.513 6.162 -61.434 6.195 -61.418 6.268 -61.327 6.351 -61.247 6.434 -61.277 6.609 -61.285 6.692 -61.335 6.783 -61.312 6.831 -61.278 6.846 -61.175 6.846 -61.080 6.938 -61.047 6.912 -60.951 6.889 -60.856 6.972 -60.765 6.996 -60.671 7.061 -60.570 7.053 -60.504 7.145 -60.471 7.228 -60.420 7.276 -60.477 7.316 -60.574 7.251 -60.665 7.342 -60.764 7.425 -60.741 7.508 -60.763 7.599 -60.842 7.682 -60.836 7.748 -60.745 7.831 -60.711 7.922 -60.678 7.945 -60.576 7.953 -60.481 7.961 -60.482 8.034 -60.401 8.100 -60.309 8.156 -60.217 8.214 -60.145 8.298 -60.103 8.313 -60.085 8.338 -59.992 8.404 -59.949 8.495 -60.017 8.586 -60.087 8.642 -60.127 8.650 -60.136 8.665 -60.183 8.706 -60.280 8.729 -60.375 8.736 -60.470 8.678 -60.563 8.630 -60.615 8.638 -60.633 8.653 -60.737 8.702 -60.834 8.686 -60.928 8.686 -61.032 8.678 -61.058 8.512 -61.220 8.595 -61.233 8.580 -61.327 8.507 -61.418 8.590 -61.497 8.605 -61.592 8.646 -61.689 8.696 -61.794 8.727 -61.778 8.727 -61.732 8.696 -61.636 8.712 -61.542 8.696 -61.446 8.696 -61.343 8.779 -61.329 8.862 -61.305 8.953 -61.244 8.986 -61.255 9.042 -61.240 9.058 -61.232 9.148 -61.141 9.232 -61.145 9.148 -61.236 9.240 -61.183 9.295 -61.102 9.344 -61.009 9.402 -60.917 9.493 -60.948 9.576 -61.035 9.650 -61.133 9.665 -61.238 9.665 -61.341 9.706 -61.418 9.779 -61.516 9.870 -61.566 9.954 -61.654 9.961 -61.758 9.878 -61.699 9.870 -61.725 9.895 -61.821 9.863 -61.915 9.822 -61.886 9.830 -61.924 9.739 -61.966 9.764 -61.959 9.847 -61.944 9.895 -61.965 9.978 -62.052 10.052 -62.161 10.083 -62.258 10.083 -62.342 10.042 -62.348 10.019 -62.242 9.954 -62.143 9.969 -62.200 9.992 -62.295 9.909 -62.282 9.818 -62.269 9.735 -62.294 9.719 -62.329 9.793 -62.286 9.876 -62.290 9.967 -62.303 10.050 -62.372 9.967 -62.349 9.876 -62.371 9.793 -62.433 9.801 -62.443 9.816 -62.443 9.841 -62.427 9.932 -62.469 10.015 -62.557 10.081 -62.553 10.097 -62.554 10.180 -62.588 10.271 -62.632 10.304 -62.729 10.221 -62.723 10.129 -62.800 10.079 -62.899 10.079 -62.917 10.112 -62.937 10.079 -63.029 10.079 -63.038 10.087 -63.048 10.178 -63.121 10.170 -63.037 10.120 -62.929 10.145 -62.836 10.228 -62.748 10.311 -62.781 10.394 -62.805 10.478 -62.896 10.452 -62.988 10.412 -63.080 10.503 -63.041 10.518 -62.938 10.601 -63.003 10.553 -63.102 10.609 -63.003 10.625 -62.909 10.633 -62.815 10.633 -62.720 10.617 -62.615 10.617 -62.512 10.625 -62.418 10.708 -62.349 10.716 -62.255 10.708 -62.159 10.731 -62.057 10.814 -61.989 10.799 -62.082 10.783 -62.176 10.760 -62.278 10.776 -62.374 10.783 -62.470 10.799 -62.574 10.814 -62.670 10.814 -62.869 10.791 -62.962 10.776 -63.056 10.791 -63.152 10.776 -63.255 10.768 -63.348 10.760 -63.452 10.752 -63.546 10.712 -63.638 10.719 -63.733 10.735 -63.838 10.776 -63.936 10.710 -64.025 10.710 -64.414 10.627 -64.324 10.642 -64.230 10.650 -64.127 10.627 -64.030 10.619 -63.935 10.553 -63.825 10.520 -63.927 10.536 -64.023 10.520 -64.116 10.545 -64.213 10.545 -64.308 10.488 -64.398 10.447 -64.499 10.356 -64.549 10.331 -64.650 10.331 -64.734 10.257 -64.823 10.174 -64.891 10.166 -64.985 10.166 -65.080 10.135 -65.181 10.159 -65.278 10.159 -65.231 10.191 -65.338 10.207 -65.434 10.222 -65.538 10.245 -65.624 10.279 -65.722 10.319 -65.820 10.311 -65.923 10.394 -65.996 10.543 -66.198 10.584 -66.228 10.667 -66.226 10.708 -66.324 10.700 -66.419 10.685 -66.435 10.700 -66.531 10.708 -66.636 10.700 -66.730 10.700 -66.825 10.693 -66.919 10.685 -67.022 10.693 -67.117 10.659 -67.209 10.636 -67.311 10.629 -67.405 10.621 -67.500 10.621 -67.517 10.613 -67.611 10.597 -67.713 10.582 -67.787 10.574 -67.881 10.551 -67.974 10.559 -67.992 10.574 -68.089 10.574 -68.193 10.590 -68.289 10.681 -68.363 10.689 -68.363 10.772 -68.408 10.896 -68.445 10.986 -68.406 11.069 -68.422 11.153 -68.456 11.178 -68.475 11.269 -68.539 11.342 -68.640 11.408 -68.749 11.441 -68.847 11.524 -68.949 11.524 -69.082 11.517 -69.107 11.565 -69.215 11.590 -69.312 11.605 -69.409 11.565 -69.500 11.581 -69.605 11.530 -69.696 11.604 -69.797 11.687 -69.842 11.778 -69.876 11.861 -69.910 11.944 -69.926 12.035 -69.925 12.118 -69.959 12.202 -70.004 12.267 -70.104 12.267 -70.131 12.211 -70.221 12.178 -70.313 12.105 -70.333 12.014 -70.372 11.931 -70.382 11.847 -70.328 11.822 -70.309 11.774 -70.313 11.683 -70.314 11.683 -70.276 11.690 -70.251 11.706 -70.186 11.729 -70.104 11.737 -70.010 11.752 -69.907 11.669 -69.874 11.586 -69.848 11.503 -69.916 11.536 -70.023 11.551 -70.062 11.584 -70.103 11.592 -70.129 11.640 -70.237 11.607 -70.188 11.524 -70.154 11.540 -70.260 11.457 -70.270 11.424 -70.331 11.398 -70.433 11.316 -70.615 11.308 -70.710 11.308 -70.813 11.284 -70.906 11.252 -71.007 11.193 -71.097 11.145 -71.188 11.062 -71.370 11.054 -71.416 10.981 -71.504 10.965 -71.529 10.882 -71.568 10.874 -71.663 10.849 -71.642 10.849 -71.634 10.824 -71.622 10.741 -71.615 10.650 -71.634 10.601 -71.592 10.518 -71.558 10.478 -71.555 10.394 -71.501 10.354 -71.471 10.288 -71.427 10.281 -71.418 10.273 -71.400 10.257 -71.380 10.174 -71.327 10.083 -71.301 10.052 -71.252 9.969 -71.180 9.954 -71.170 9.880 -71.166 9.797 -71.144 9.706 -71.157 9.640 -71.180 9.557 -71.167 9.532 -71.166 9.449 -71.153 9.383 -71.215 9.299 -71.306 9.269 -71.322 9.218 -71.385 9.211 -71.394 9.188 -71.487 9.147 -71.580 9.139 -71.692 9.154 -71.758 9.238 -71.847 9.321 -71.860 9.387 -71.826 9.470 -71.821 9.485 -71.886 9.541 -71.944 9.590 -72.041 9.673 -72.046 9.756 -72.096 9.839 -72.167 9.922 -72.198 10.006 -72.128 10.089 -72.089 10.114 -72.082 10.205 -72.044 10.271 -71.955 10.279 -71.947 10.304 -71.931 10.387 -71.893 10.470 -71.834 10.526 -71.735 10.574 -71.722 10.657 -71.703 10.665 -71.703 10.749 -71.684 10.840 -71.730 10.840 -71.739 10.855 -71.749 10.921 -71.792 11.004 -71.817 11.095 -71.863 11.103 -71.855 11.118 -71.761 11.169 -71.860 11.259 -71.935 11.342 -71.988 11.509 -72.059 11.600 -72.067 11.683 -72.047 11.708 -71.955 11.739 -71.863 11.764 -71.770 11.772 -71.667 11.788 -71.573 11.844 -71.483 11.927 -71.435 11.894 -71.499 11.861 -71.591 11.838 -71.702 11.812 -71.794 11.772 -71.885 11.756 -71.997 11.724 -72.089 11.557 -72.187 11.466 -72.234 11.426 -72.256 11.335 -72.304 11.244 -72.390 11.228 -72.493 11.195 -72.585 11.112 -72.632 11.021 -72.670 10.938 -72.758 10.847 -72.796 10.764 -72.835 10.681 -72.894 10.597 -72.933 10.507 -72.988 10.433 -72.990 10.350 -73.001 10.259 -73.001 10.168 -73.019 10.085 -73.038 10.019 -73.042 9.936 -73.027 9.853 -73.069 9.769 -73.120 9.686 -73.153 9.596 -73.243 9.512 -73.285 9.429 -73.344 9.346 -73.377 9.263 -73.439 ; #2327 7 6.355 -3.183 6.281 -3.136 6.198 -3.107 6.108 -3.088 6.016 -3.050 5.918 -3.032 5.819 -2.974 5.736 -2.982 5.744 -2.888 5.703 -2.784 5.612 -2.775 5.529 -2.756 5.455 -2.738 5.397 -2.803 5.314 -2.785 5.231 -2.758 5.224 -2.861 5.224 -2.908 5.208 -2.945 5.208 -2.954 5.224 -3.048 5.224 -3.123 5.198 -3.122 5.167 -3.028 5.152 -2.933 5.136 -2.839 5.121 -2.744 5.098 -2.640 5.072 -2.546 5.049 -2.451 5.034 -2.356 5.011 -2.301 4.937 -2.198 4.846 -2.114 4.869 -2.011 4.943 -1.917 4.983 -1.813 5.067 -1.719 5.132 -1.654 5.140 -1.599 5.164 -1.496 5.188 -1.402 5.204 -1.307 5.237 -1.213 5.295 -1.119 5.310 -1.025 5.310 -0.921 5.318 -0.827 5.359 -0.781 5.433 -0.687 5.465 -0.592 5.506 -0.490 5.589 -0.416 5.604 -0.387 5.620 -0.292 5.651 -0.190 5.684 -0.095 5.717 -0.031 5.783 0.062 5.831 0.156 5.864 0.251 5.871 0.345 5.864 0.449 5.864 0.543 5.947 0.609 6.030 0.591 6.113 0.487 6.169 0.392 6.136 0.297 6.136 0.289 6.177 0.214 6.185 0.178 6.185 0.196 6.177 0.214 6.162 0.271 6.177 0.365 6.169 0.392 6.162 0.467 6.154 0.476 6.088 0.559 6.063 0.577 5.980 0.624 5.939 0.616 5.873 0.653 5.858 0.757 5.873 0.820 5.889 0.915 5.980 0.960 6.063 0.989 6.146 1.063 6.204 1.157 6.260 1.157 6.260 1.062 6.343 0.987 6.426 0.874 6.500 0.779 6.583 0.695 6.632 0.686 6.680 0.648 6.771 0.611 6.854 0.546 6.920 0.500 7.003 0.525 7.051 0.479 7.125 0.573 7.208 0.581 7.291 0.598 7.374 0.624 7.458 0.615 7.483 0.521 7.574 0.482 7.673 0.482 7.756 0.547 7.839 0.584 7.980 0.584 8.071 0.574 8.162 0.564 8.245 0.573 8.328 0.601 8.411 0.684 8.503 0.629 8.586 0.591 8.644 0.487 8.727 0.403 8.810 0.365 8.843 0.347 8.874 0.450 8.889 0.459 8.922 0.476 9.021 0.467 9.104 0.411 9.188 0.448 9.278 0.494 9.361 0.485 9.445 0.519 9.528 0.473 9.576 0.378 9.510 0.274 9.510 0.191 9.559 0.248 9.642 0.229 9.650 0.333 9.816 0.296 9.907 0.322 9.990 0.313 10.074 0.321 10.106 0.367 10.114 0.367 10.197 0.329 10.263 0.319 10.346 0.347 10.379 0.364 10.435 0.269 10.468 0.174 10.551 0.118 10.592 0.089 10.665 -0.007 10.673 -0.034 10.756 -0.110 10.772 -0.110 10.855 -0.082 10.938 -0.046 11.029 -0.028 11.052 -0.001 11.135 0.008 11.161 -0.030 11.153 -0.125 11.201 -0.181 11.217 -0.276 11.184 -0.313 11.135 -0.387 11.087 -0.482 11.062 -0.537 10.979 -0.639 10.979 -0.648 11.062 -0.705 11.062 -0.808 11.039 -0.912 11.071 -1.007 11.079 -1.110 11.064 -1.128 11.064 -1.336 11.097 -1.431 11.097 -1.543 11.064 -1.647 11.064 -2.481 11.071 -2.585 11.056 -2.680 11.071 -2.763 11.071 -2.848 10.981 -2.837 10.898 -2.892 10.814 -2.916 10.774 -2.945 10.691 -2.943 10.524 -2.866 10.433 -2.847 10.350 -2.817 10.267 -2.808 10.183 -2.806 10.100 -2.796 10.068 -2.787 9.984 -2.777 9.893 -2.759 9.810 -2.805 9.727 -2.766 9.636 -2.783 9.553 -2.708 9.553 -2.699 9.470 -2.689 9.379 -2.734 9.295 -2.706 9.230 -2.751 9.147 -2.779 9.090 -2.684 9.007 -2.665 8.924 -2.619 8.859 -2.636 8.859 -2.607 8.793 -2.589 8.702 -2.580 8.618 -2.561 8.535 -2.552 8.445 -2.542 8.354 -2.524 8.262 -2.532 8.204 -2.626 8.121 -2.617 8.091 -2.711 8.057 -2.739 8.025 -2.768 7.999 -2.803 7.916 -2.831 7.826 -2.876 7.785 -2.893 7.694 -2.939 7.595 -2.947 7.504 -2.964 7.414 -2.980 7.330 -2.980 7.239 -3.025 7.141 -3.108 7.125 -3.117 7.026 -3.173 6.943 -3.219 6.860 -3.235 6.777 -3.226 6.693 -3.243 6.603 -3.233 6.520 -3.215 6.436 -3.197 6.345 -3.179 ; #2328 7 33.377 129.955 33.410 129.940 33.395 129.833 33.372 129.724 33.280 129.714 33.248 129.799 33.157 129.817 33.124 129.902 33.099 130.000 33.065 130.085 32.975 130.084 32.892 130.147 32.884 130.153 32.917 130.059 32.917 129.959 33.000 129.947 33.083 129.907 32.992 129.789 32.909 129.841 32.876 129.926 32.785 129.985 32.702 129.967 32.793 130.094 32.808 130.150 32.841 130.273 32.793 130.351 32.710 130.287 32.661 130.365 32.727 130.502 32.810 130.520 32.901 130.493 32.926 130.405 32.894 130.282 32.984 130.349 33.000 130.356 33.091 130.329 33.174 130.266 33.240 130.394 33.199 130.485 33.199 130.504 33.126 130.571 33.052 130.575 33.044 130.581 32.954 130.630 32.903 130.707 32.820 130.748 32.737 130.703 32.706 130.789 32.623 130.722 32.565 130.745 32.482 130.699 32.398 130.662 32.307 130.574 32.224 130.499 32.191 130.376 32.108 130.339 32.017 130.348 31.934 130.342 31.886 130.378 31.803 130.381 31.729 130.448 31.638 130.466 31.555 130.448 31.472 130.384 31.479 130.288 31.396 130.339 31.313 130.381 31.313 130.489 31.305 130.584 31.232 130.651 31.247 130.757 31.331 130.802 31.381 130.716 31.464 130.674 31.555 130.666 31.638 130.702 31.721 130.748 31.737 130.745 31.777 130.872 31.745 130.956 31.661 130.920 31.686 130.832 31.596 130.840 31.512 130.870 31.429 130.912 31.338 130.920 31.255 130.893 31.172 130.838 31.088 130.793 31.129 130.918 31.178 131.038 31.261 131.123 31.334 131.254 31.408 131.187 31.491 131.176 31.532 131.281 31.491 131.362 31.450 131.443 31.541 131.512 31.624 131.520 31.707 131.586 31.773 131.597 31.864 131.627 31.948 131.586 32.129 131.667 32.213 131.673 32.296 131.719 32.386 131.750 32.470 131.805 32.553 131.870 32.644 131.844 32.727 131.938 32.793 132.016 32.876 132.141 32.967 132.123 33.023 132.049 33.107 132.153 33.114 132.057 33.170 131.973 33.253 132.001 33.286 131.907 33.310 131.818 33.302 131.715 33.360 131.632 33.426 131.770 33.509 131.855 33.592 131.865 33.683 131.817 33.724 131.736 33.700 131.626 33.617 131.480 33.633 131.387 33.658 131.319 33.665 131.223 33.739 131.156 33.822 131.126 33.905 131.093 33.989 131.130 33.996 131.096 33.963 131.063 33.963 130.963 33.971 130.858 33.923 130.737 33.899 130.627 33.808 130.596 33.726 130.511 33.642 130.504 33.650 130.408 33.673 130.319 33.590 130.252 33.507 130.176 33.491 130.142 33.565 130.104 33.549 129.998 33.458 129.967 33.375 129.950 ; #2329 7 33.975 131.054 34.015 131.091 34.074 131.135 34.066 131.231 33.983 131.304 33.983 131.403 34.031 131.534 34.047 131.640 34.072 131.751 34.104 131.866 34.031 131.942 34.006 132.031 33.957 132.109 33.932 132.206 33.892 132.288 33.983 132.249 34.074 132.339 34.157 132.327 34.240 132.346 34.281 132.346 34.364 132.423 34.405 132.541 34.346 132.614 34.263 132.677 34.263 132.816 34.354 132.925 34.362 133.028 34.369 133.131 34.426 133.257 34.360 133.245 34.335 133.273 34.360 133.315 34.451 133.347 34.426 133.384 34.426 133.484 34.517 133.544 34.491 133.632 34.557 133.762 34.542 133.855 34.509 133.949 34.542 134.064 34.550 134.067 34.633 134.136 34.625 134.023 34.650 134.143 34.674 134.254 34.757 134.371 34.757 134.381 34.749 134.396 34.757 134.438 34.772 134.485 34.795 134.596 34.811 134.703 34.811 134.812 34.762 134.899 34.722 134.981 34.672 135.058 34.664 135.163 34.712 135.285 34.762 135.418 34.737 135.506 34.722 135.508 34.648 135.533 34.565 135.522 34.474 135.432 34.391 135.314 34.341 135.192 34.333 135.179 34.260 135.245 34.176 135.274 34.093 135.255 34.010 135.207 33.919 135.235 33.863 135.309 33.822 135.390 33.782 135.471 33.698 135.481 33.615 135.543 33.582 135.637 33.549 135.721 33.526 135.820 33.485 135.901 33.569 135.996 33.652 136.065 33.735 136.113 33.743 136.125 33.826 136.164 33.917 136.215 33.991 136.349 34.074 136.378 34.164 136.429 34.248 136.458 34.281 136.573 34.304 136.693 34.337 136.808 34.304 136.893 34.329 137.004 34.412 136.975 34.495 136.965 34.544 136.888 34.584 136.798 34.633 136.721 34.648 136.628 34.722 136.603 34.805 136.633 34.888 136.711 34.979 136.725 35.063 136.789 35.063 136.829 35.095 136.887 35.045 136.959 34.962 136.897 34.871 136.934 34.787 136.923 34.780 137.028 34.863 136.997 34.946 137.054 34.855 137.061 34.807 137.138 34.807 137.257 34.838 137.371 34.747 137.397 34.698 137.265 34.615 137.207 34.656 137.326 34.681 137.438 34.696 137.545 34.696 137.564 34.712 137.671 34.704 137.686 34.696 137.761 34.681 137.864 34.681 137.924 34.696 138.031 34.681 138.124 34.648 138.218 34.633 138.311 34.716 138.291 34.799 138.368 34.882 138.397 34.973 138.489 35.057 138.565 35.148 138.697 35.163 138.815 35.130 138.905 35.057 138.963 35.024 138.834 34.933 138.847 34.849 138.826 34.766 138.826 34.675 138.851 34.644 138.946 34.728 139.053 34.819 139.135 34.901 139.174 34.985 139.204 35.076 139.167 35.159 139.176 35.208 139.204 35.299 139.266 35.340 139.390 35.348 139.495 35.332 139.596 35.284 139.668 35.210 139.725 35.301 139.808 35.342 139.731 35.425 139.722 35.509 139.730 35.559 139.870 35.590 139.848 35.682 139.951 35.666 139.960 35.699 140.089 35.674 140.142 35.590 140.194 35.499 140.073 35.416 139.994 35.332 139.887 35.258 139.944 35.175 139.905 35.091 139.905 35.000 139.824 34.944 139.906 34.977 140.022 35.061 140.060 35.091 140.117 35.149 140.251 35.165 140.360 35.256 140.472 35.340 140.490 35.423 140.472 35.515 140.516 35.598 140.583 35.682 140.691 35.722 140.815 35.771 140.953 35.778 140.939 35.853 140.873 35.936 140.822 36.019 140.760 36.102 140.709 36.186 140.678 36.277 140.674 36.361 140.713 36.452 140.718 36.536 140.737 36.627 140.790 36.710 140.830 36.801 140.865 36.885 140.924 36.926 140.930 36.982 141.073 37.073 141.099 37.157 141.129 37.248 141.134 37.331 141.155 37.415 141.165 37.506 141.170 37.597 141.165 37.680 141.155 37.764 141.156 37.838 141.089 37.921 141.058 37.962 141.052 38.046 141.052 38.137 141.078 38.220 141.109 38.303 141.189 38.387 141.239 38.402 141.329 38.428 141.445 38.428 141.485 38.402 141.510 38.362 141.587 38.313 141.660 38.397 141.630 38.488 141.625 38.571 141.626 38.655 141.666 38.738 141.697 38.822 141.686 38.913 141.790 38.997 141.750 39.055 141.854 39.088 141.985 39.171 141.967 39.254 142.067 39.338 142.086 39.421 142.068 39.513 142.113 39.596 142.124 39.680 142.072 39.763 142.091 39.854 142.065 39.938 142.026 40.021 142.019 40.021 142.009 40.078 141.939 40.162 141.971 40.246 141.942 40.321 141.894 40.395 141.836 40.470 141.788 40.493 141.755 40.552 141.695 40.567 141.593 40.651 141.564 40.744 141.550 40.828 141.542 40.912 141.541 40.970 141.545 41.055 141.544 41.146 141.542 41.230 141.572 41.323 141.601 41.407 141.631 41.358 141.492 41.366 141.395 41.424 141.335 41.473 141.267 41.496 141.171 41.489 141.062 41.397 140.986 41.313 140.954 41.228 140.933 41.144 140.975 41.193 141.114 41.193 141.217 41.278 141.328 41.221 141.400 41.137 141.420 41.045 141.381 40.960 141.351 40.876 141.250 40.925 141.182 40.966 141.109 41.008 141.026 40.923 141.006 40.831 140.898 40.855 140.834 40.939 140.792 41.031 140.790 41.115 140.781 41.199 140.780 41.232 140.701 41.217 140.577 41.258 140.504 41.217 140.483 41.125 140.417 41.066 140.477 40.974 140.452 40.890 140.432 40.806 140.390 40.749 140.246 40.749 140.134 40.665 140.073 40.581 139.993 40.530 140.069 40.438 140.053 40.371 140.108 40.371 140.118 40.287 140.138 40.196 140.101 40.103 140.054 40.012 139.988 39.978 139.876 40.012 139.795 39.920 139.799 39.879 139.886 39.912 140.008 39.872 140.096 39.847 140.110 39.763 140.150 39.672 140.165 39.588 140.165 39.522 140.166 39.431 140.143 39.348 140.113 39.307 140.069 39.224 140.020 39.140 140.011 39.107 140.000 39.023 139.970 38.932 139.935 38.907 139.929 38.824 139.899 38.732 139.816 38.649 139.727 38.517 139.649 38.434 139.610 38.342 139.586 38.259 139.587 38.175 139.557 38.084 139.473 38.001 139.334 37.950 139.202 37.950 139.193 37.943 139.170 37.869 139.026 37.778 138.942 37.694 138.924 37.638 138.900 37.547 138.807 37.463 138.748 37.380 138.650 37.288 138.529 37.205 138.401 37.190 138.291 37.133 138.148 37.075 138.013 37.042 137.893 37.011 137.774 37.003 137.760 36.988 137.650 36.904 137.583 36.813 137.512 36.788 137.396 36.796 137.300 36.828 137.218 36.912 137.155 36.995 137.213 37.079 137.212 37.095 137.110 37.143 137.037 37.226 137.113 37.234 137.228 37.318 137.295 37.374 137.428 37.457 137.427 37.541 137.506 37.549 137.409 37.508 137.275 37.449 137.140 37.427 137.026 37.343 136.889 37.260 136.859 37.168 136.875 37.085 136.876 36.993 136.914 36.910 136.915 36.819 136.872 36.735 136.824 36.644 136.753 36.561 136.666 36.477 136.590 36.394 136.502 36.310 136.385 36.277 136.277 36.186 136.234 36.102 136.157 36.019 136.091 35.936 136.133 35.862 136.191 35.771 136.218 35.688 136.181 35.728 136.104 35.645 136.038 35.652 135.942 35.569 135.894 35.521 135.767 35.536 135.675 35.577 135.588 35.585 135.584 35.585 135.483 35.501 135.494 35.542 135.417 35.557 135.316 35.641 135.354 35.724 135.419 35.790 135.347 35.774 135.238 35.709 135.100 35.686 134.987 35.686 134.926 35.678 134.812 35.678 134.611 35.637 134.488 35.621 134.430 35.573 134.293 35.557 134.184 35.557 134.075 35.532 133.960 35.532 133.860 35.547 133.768 35.555 133.663 35.489 133.526 35.497 133.430 35.581 133.367 35.596 133.356 35.596 133.256 35.571 133.142 35.538 133.014 35.505 132.895 35.474 132.778 35.390 132.781 35.307 132.686 35.223 132.540 35.140 132.455 35.057 132.320 34.983 132.214 34.900 132.107 34.817 132.033 34.733 131.907 34.708 131.796 34.634 131.674 34.544 131.585 34.461 131.518 34.427 131.394 34.412 131.288 34.461 131.209 34.405 131.075 34.321 131.008 34.230 131.068 34.147 131.003 34.056 131.051 33.973 131.072 ; #2330 7 45.487 141.787 45.402 141.767 45.316 141.716 45.231 141.687 45.146 141.721 45.070 141.764 44.995 141.816 44.946 141.841 44.778 141.904 44.694 141.912 44.610 141.900 44.518 141.883 44.434 141.852 44.350 141.790 44.257 141.792 44.173 141.802 44.082 141.805 43.997 141.784 43.972 141.775 43.888 141.670 43.796 141.510 43.711 141.510 43.620 141.535 43.536 141.536 43.469 141.591 43.377 141.584 43.293 141.522 43.209 141.399 43.193 141.378 43.209 141.275 43.225 141.183 43.266 141.099 43.232 140.970 43.281 140.892 43.314 140.812 43.363 140.734 43.404 140.660 43.348 140.514 43.264 140.492 43.205 140.563 43.148 140.625 43.074 140.684 42.990 140.604 42.905 140.523 42.813 140.424 42.821 140.316 42.729 140.166 42.729 140.085 42.645 140.004 42.561 140.025 42.477 140.005 42.385 139.948 42.301 139.947 42.260 140.030 42.201 140.091 42.168 140.171 42.160 140.194 42.027 140.305 41.943 140.304 41.851 140.237 41.767 140.185 41.683 140.153 41.667 140.142 41.583 140.154 41.508 140.181 41.475 140.260 41.498 140.380 41.550 140.458 41.599 140.597 41.683 140.588 41.767 140.710 41.833 140.861 41.826 140.938 41.810 141.039 41.776 141.118 41.810 141.246 41.894 141.307 41.935 141.234 41.958 141.147 42.017 141.087 42.066 141.010 42.123 140.948 42.182 140.877 42.156 140.755 42.182 140.661 42.230 140.592 42.271 140.519 42.312 140.445 42.397 140.446 42.489 140.494 42.573 140.565 42.622 140.714 42.622 140.818 42.598 140.915 42.532 140.970 42.491 141.053 42.407 141.095 42.373 141.174 42.457 141.286 42.541 141.452 42.625 141.606 42.659 141.735 42.667 141.853 42.659 141.952 42.625 142.031 42.584 142.114 42.536 142.182 42.502 142.271 42.479 142.357 42.430 142.425 42.346 142.570 42.312 142.659 42.287 142.744 42.246 142.827 42.213 142.905 42.189 143.001 42.174 143.093 42.133 143.176 42.102 143.256 42.050 143.332 42.066 143.447 42.150 143.491 42.234 143.512 42.326 143.498 42.411 143.542 42.502 143.601 42.586 143.673 42.679 143.761 42.763 143.875 42.763 143.885 42.854 143.995 42.939 144.109 43.005 144.264 43.039 144.392 43.054 144.518 43.046 144.522 42.998 144.589 42.998 144.807 42.982 144.899 43.066 144.912 43.058 145.020 43.042 145.121 43.099 145.269 43.183 145.292 43.217 145.431 43.232 145.547 43.225 145.645 43.316 145.725 43.383 145.890 43.441 145.820 43.391 145.743 43.324 145.651 43.309 145.639 43.316 145.540 43.400 145.491 43.475 145.443 43.559 145.415 43.643 145.418 43.620 145.514 43.653 145.435 43.676 145.339 43.735 145.279 43.802 145.225 43.894 145.254 43.978 145.267 44.238 145.465 44.322 145.510 44.389 145.446 44.305 145.363 44.220 145.267 44.136 145.142 44.052 145.058 43.968 144.921 43.968 144.816 43.976 144.708 43.983 144.609 44.007 144.512 44.066 144.452 44.140 144.404 44.084 144.247 44.168 144.247 44.183 144.154 44.152 144.015 44.152 143.911 44.236 143.914 44.259 143.817 44.293 143.737 44.318 143.651 44.350 143.561 44.400 143.494 44.441 143.420 44.490 143.342 44.523 143.252 44.572 143.184 44.614 143.100 44.670 143.038 44.719 142.960 44.760 142.898 44.819 142.837 44.886 142.772 44.937 142.705 45.011 142.657 45.078 142.598 45.128 142.534 45.177 142.470 45.237 142.405 45.295 142.347 45.354 142.282 45.396 142.212 45.445 142.148 45.503 142.080 45.518 141.987 45.433 141.845 45.465 141.766 ; #2331 7 -50.397 166.215 -50.448 166.157 -50.500 166.099 -50.587 166.160 -50.674 166.177 -50.648 166.026 -50.674 165.938 -50.587 165.844 -50.545 165.914 -50.518 165.991 -50.442 166.020 -50.365 166.038 -50.357 166.137 -50.399 166.218 ; #2332 7 -46.728 167.956 -46.743 168.078 -46.650 168.059 -46.565 167.963 -46.524 167.805 -46.539 167.705 -46.633 167.715 -46.726 167.756 -46.785 167.700 -46.861 167.669 -46.894 167.587 -46.979 167.566 -47.029 167.490 -47.063 167.640 -46.996 167.689 -47.011 167.831 -46.977 167.903 -46.954 167.997 -46.938 168.116 -46.922 168.207 -46.837 168.195 -46.769 168.011 -46.795 167.920 -46.728 167.958 ; #2333 7 -40.518 173.938 -40.610 173.952 -40.694 173.925 -40.728 173.843 -40.636 173.800 -40.569 173.852 -40.545 173.934 -40.520 173.942 ; #2334 7 -36.588 175.218 -36.671 175.210 -36.646 175.082 -36.605 175.161 -36.590 175.220 ; #2335 7 -35.895 175.417 -35.978 175.449 -36.153 175.579 -36.161 175.484 -36.069 175.357 -35.986 175.344 -35.912 175.390 -35.897 175.419 ; #2336 7 10.940 -64.124 11.023 -64.194 11.015 -64.297 11.039 -64.394 11.122 -64.447 11.163 -64.347 11.163 -64.252 11.079 -64.170 11.112 -64.078 11.195 -64.038 11.253 -63.939 11.170 -63.906 11.079 -63.852 11.013 -63.942 10.981 -64.034 10.940 -64.126 ; #2337 9 53.745 -166.467 53.761 -166.445 53.804 -166.381 53.873 -166.364 53.846 -166.440 53.830 -166.530 53.743 -166.464 ; #2338 9 55.433 -160.867 55.442 -160.901 55.408 -160.974 55.365 -161.023 55.275 -161.002 55.186 -160.935 55.195 -160.834 55.167 -160.681 55.257 -160.724 55.346 -160.744 55.425 -160.738 55.365 -160.762 55.356 -160.873 55.436 -160.868 ; #2339 9 55.379 -160.491 55.396 -160.516 55.371 -160.603 55.319 -160.638 55.292 -160.485 55.381 -160.494 ; #2340 9 55.084 -159.524 55.032 -159.560 54.973 -159.589 54.997 -159.508 55.087 -159.527 ; #2341 9 58.691 -161.344 58.734 -161.284 58.762 -161.198 58.778 -161.106 58.805 -161.020 58.840 -160.947 58.778 -160.978 58.726 -161.015 58.682 -161.075 58.631 -161.113 58.595 -161.185 58.595 -161.313 58.684 -161.334 58.693 -161.347 ; #2342 9 56.647 -154.319 56.647 -154.445 56.631 -154.535 56.552 -154.535 56.544 -154.409 56.579 -154.334 56.649 -154.322 ; #2343 9 63.624 -162.566 63.588 -162.625 63.579 -162.744 63.588 -162.893 63.650 -162.879 63.667 -162.775 63.667 -162.641 63.622 -162.562 ; #2344 9 59.437 -153.578 59.367 -153.602 59.367 -153.720 59.418 -153.668 59.435 -153.575 ; #2345 9 60.022 -148.269 60.076 -148.224 60.084 -148.225 60.050 -148.291 60.041 -148.407 60.069 -148.321 60.143 -148.316 60.160 -148.212 60.151 -148.210 60.086 -148.229 60.123 -148.182 60.160 -148.108 60.086 -148.113 60.061 -148.192 60.024 -148.240 60.024 -148.273 ; #2346 9 33.553 -118.753 33.479 -118.640 33.389 -118.558 33.404 -118.456 33.487 -118.523 33.519 -118.637 33.551 -118.752 ; #2347 9 57.549 -134.791 57.566 -134.687 57.583 -134.592 57.558 -134.676 57.531 -134.767 57.433 -134.673 57.425 -134.547 57.408 -134.641 57.408 -134.756 57.329 -134.781 57.267 -134.827 57.177 -134.802 57.088 -134.802 57.080 -134.677 57.115 -134.607 57.167 -134.559 57.211 -134.489 57.219 -134.384 57.282 -134.350 57.371 -134.338 57.363 -134.212 57.379 -134.118 57.439 -134.079 57.502 -134.275 57.510 -134.160 57.571 -134.122 57.668 -134.167 57.757 -134.292 57.847 -134.386 57.945 -134.480 57.996 -134.431 58.086 -134.480 57.996 -134.353 57.907 -134.305 57.810 -134.190 57.720 -134.156 57.631 -134.041 57.728 -134.085 57.818 -134.084 57.907 -134.178 58.005 -134.259 58.094 -134.342 58.184 -134.366 58.184 -134.482 58.192 -134.619 58.200 -134.746 58.192 -134.852 58.370 -135.038 58.362 -135.144 58.273 -135.085 58.175 -135.025 58.211 -134.944 58.121 -134.955 58.059 -134.990 57.970 -134.942 57.880 -134.917 57.782 -134.907 57.685 -134.860 57.595 -134.812 57.543 -134.778 ; #2348 9 63.207 -170.262 63.190 -170.208 63.088 -170.047 63.190 -170.134 63.097 -169.978 62.996 -169.892 63.032 -169.836 63.106 -169.836 63.142 -169.779 63.159 -169.688 63.204 -169.636 63.230 -169.561 63.230 -169.428 63.213 -169.530 63.222 -169.424 63.222 -169.302 63.194 -169.119 63.222 -169.047 63.258 -168.991 63.351 -169.024 63.377 -169.193 63.377 -169.327 63.342 -169.386 63.405 -169.622 63.467 -169.868 63.484 -170.021 63.521 -170.223 63.198 -170.244 ; #2349 9 66.067 -170.209 66.028 -169.995 66.067 -169.946 66.114 -169.913 66.200 -170.131 66.200 -170.143 66.209 -170.161 66.218 -170.215 66.065 -170.198 ; #2350 9 43.749 -124.328 43.774 -124.306 43.767 -124.240 43.751 -124.332 ; #2351 9 30.179 -89.324 30.096 -89.295 30.129 -89.405 30.177 -89.324 ; #2352 9 54.712 8.560 54.728 8.447 54.779 8.559 54.710 8.560 ; #2353 9 4.384 -77.412 4.361 -77.403 4.361 -77.377 4.384 -77.415 ; #2354 9 -16.682 11.777 -16.599 11.712 -16.515 11.683 -16.424 11.674 -16.515 11.721 -16.599 11.739 -16.682 11.775 ; #2355 9 20.833 -17.092 20.891 -17.077 20.974 -17.082 21.058 -17.039 21.141 -17.014 21.197 -16.999 21.131 -16.919 21.040 -16.868 20.992 -16.828 20.976 -16.818 20.926 -16.797 20.895 -16.787 20.812 -16.725 20.729 -16.702 20.638 -16.601 20.729 -16.577 20.795 -16.544 20.711 -16.503 20.646 -16.452 20.555 -16.419 20.472 -16.388 20.389 -16.337 20.297 -16.256 20.214 -16.281 20.131 -16.268 20.075 -16.274 19.992 -16.355 19.909 -16.304 19.818 -16.330 19.735 -16.373 19.652 -16.434 19.568 -16.498 19.485 -16.521 19.568 -16.469 19.609 -16.375 19.526 -16.380 19.460 -16.482 19.467 -16.579 19.377 -16.537 19.352 -16.536 19.296 -16.429 19.212 -16.349 19.121 -16.290 19.081 -16.279 18.997 -16.246 18.914 -16.225 18.824 -16.212 18.740 -16.200 18.657 -16.170 18.566 -16.137 18.543 -16.127 18.460 -16.133 18.376 -16.120 18.286 -16.116 18.203 -16.104 18.028 -16.097 17.779 -16.114 17.695 -16.128 17.605 -16.151 17.522 -16.177 17.438 -16.199 17.347 -16.234 17.264 -16.268 17.181 -16.311 17.090 -16.354 17.007 -16.406 16.924 -16.432 16.833 -16.475 16.742 -16.508 16.659 -16.523 16.568 -16.528 16.485 -16.553 16.401 -16.587 16.144 -16.577 16.152 -16.548 16.144 -16.539 16.227 -16.534 16.318 -16.433 16.401 -16.419 16.485 -16.394 16.568 -16.361 16.600 -16.267 16.634 -16.173 16.576 -16.075 16.591 -15.980 16.591 -15.876 16.583 -15.857 16.568 -15.761 16.608 -15.667 16.616 -15.572 16.632 -15.477 16.655 -15.382 16.647 -15.278 16.662 -15.183 16.753 -15.158 16.746 -15.062 16.761 -15.062 16.753 -15.015 16.721 -14.919 16.728 -14.823 16.728 -14.728 16.713 -14.623 16.713 -14.527 16.721 -14.432 16.638 -14.333 16.581 -14.236 16.498 -14.157 16.433 -14.050 16.349 -14.029 16.266 -13.930 16.233 -13.833 16.248 -13.758 16.216 -13.653 16.231 -13.558 16.148 -13.470 16.065 -13.441 15.981 -13.391 15.898 -13.350 15.808 -13.310 15.724 -13.306 15.699 -13.210 15.608 -13.169 15.585 -13.064 15.494 -13.005 15.411 -12.926 15.328 -12.941 15.244 -12.854 15.236 -12.845 15.181 -12.747 15.188 -12.739 15.148 -12.642 15.091 -12.536 15.084 -12.536 15.001 -12.515 14.993 -12.515 14.927 -12.409 14.862 -12.312 14.869 -12.228 14.821 -12.123 14.862 -12.057 14.927 -11.963 15.010 -11.882 15.093 -11.867 15.125 -11.868 15.215 -11.909 15.298 -11.902 15.382 -11.877 15.465 -11.842 15.556 -11.818 15.639 -11.792 15.631 -11.688 15.688 -11.594 15.720 -11.500 15.637 -11.431 15.554 -11.372 15.481 -11.274 15.397 -11.159 15.314 -11.060 15.231 -11.002 15.198 -10.983 15.281 -10.949 15.372 -10.905 15.445 -10.812 15.529 -10.797 15.521 -10.750 15.521 -10.654 15.529 -10.626 15.529 -10.426 15.513 -10.331 15.481 -10.234 15.455 -10.129 15.463 -10.082 15.479 -9.988 15.463 -9.892 15.504 -9.809 15.511 -9.800 15.519 -9.696 15.527 -9.592 15.618 -9.519 15.701 -9.513 15.726 -9.497 15.635 -9.429 15.587 -9.324 15.587 -7.953 15.595 -7.848 15.595 -6.429 15.587 -6.399 15.595 -6.296 15.595 -5.983 15.587 -5.878 15.587 -5.594 15.670 -5.579 15.761 -5.563 15.844 -5.548 15.927 -5.531 16.018 -5.516 16.185 -5.485 16.276 -5.469 16.359 -5.453 16.450 -5.502 16.523 -5.609 16.589 -5.714 16.680 -5.717 16.763 -5.728 16.846 -5.739 16.937 -5.750 17.020 -5.752 17.104 -5.763 17.195 -5.774 17.278 -5.785 17.361 -5.796 17.452 -5.798 17.618 -5.820 17.709 -5.832 17.792 -5.834 17.876 -5.844 17.959 -5.856 18.049 -5.866 18.148 -5.878 18.231 -5.880 18.314 -5.891 18.406 -5.902 18.489 -5.913 18.572 -5.916 18.655 -5.927 18.746 -5.938 18.829 -5.949 18.912 -5.951 19.003 -5.962 19.087 -5.973 19.170 -5.984 19.260 -5.987 19.510 -6.020 19.601 -6.022 19.684 -6.033 19.768 -6.044 19.859 -6.055 19.941 -6.057 20.025 -6.068 20.073 -6.079 20.164 -6.082 20.255 -6.093 20.421 -6.116 20.512 -6.128 20.596 -6.130 20.679 -6.142 20.769 -6.153 20.936 -6.177 21.019 -6.179 21.118 -6.191 21.201 -6.203 21.292 -6.214 21.375 -6.226 21.458 -6.228 21.542 -6.240 21.633 -6.251 21.716 -6.263 21.799 -6.265 21.882 -6.277 21.973 -6.289 22.056 -6.300 22.139 -6.303 22.222 -6.315 22.314 -6.326 22.396 -6.338 22.480 -6.340 22.646 -6.363 22.737 -6.375 22.820 -6.378 22.903 -6.389 22.987 -6.401 23.053 -6.403 23.136 -6.415 23.209 -6.426 23.250 -6.427 23.333 -6.439 23.424 -6.450 23.507 -6.462 23.598 -6.465 23.681 -6.476 23.772 -6.488 23.939 -6.512 23.964 -6.512 24.062 -6.524 24.153 -6.527 24.236 -6.539 24.335 -6.550 24.358 -6.551 24.441 -6.563 24.532 -6.575 24.616 -6.586 24.707 -6.598 24.790 -6.601 24.880 -6.613 24.964 -6.624 25.055 -6.637 25.055 -4.866 25.103 -4.945 25.169 -5.054 25.177 -5.063 25.243 -5.172 25.308 -5.272 25.366 -5.380 25.432 -5.489 25.498 -5.598 25.563 -5.706 25.614 -5.785 25.679 -5.895 25.811 -6.113 25.869 -6.212 25.935 -6.322 26.001 -6.430 26.067 -6.540 26.123 -6.648 26.188 -6.758 26.254 -6.858 26.312 -6.967 26.378 -7.076 26.443 -7.186 26.500 -7.295 26.631 -7.514 26.689 -7.623 26.755 -7.733 26.813 -7.833 26.945 -8.052 27.001 -8.161 27.067 -8.271 27.122 -8.381 27.188 -8.490 27.245 -8.600 27.310 -8.719 27.220 -8.714 27.121 -8.719 27.022 -8.714 26.923 -8.717 26.825 -8.712 26.726 -8.717 26.627 -8.712 26.529 -8.716 26.430 -8.711 26.332 -8.715 26.233 -8.710 26.134 -8.714 26.035 -8.709 26.035 -12.040 25.886 -12.040 25.788 -12.044 25.780 -12.043 25.581 -12.040 25.457 -12.042 25.341 -12.035 25.217 -12.037 25.043 -12.036 24.952 -12.031 24.844 -12.036 24.761 -12.032 24.669 -12.038 24.478 -12.030 24.372 -12.034 24.190 -12.036 24.050 -12.030 23.960 -12.035 23.869 -12.031 23.753 -12.035 23.629 -12.030 23.505 -12.034 23.490 -12.090 23.459 -12.203 23.418 -12.298 23.367 -12.411 23.360 -12.525 23.337 -12.630 23.329 -12.630 23.263 -12.732 23.132 -12.956 23.041 -13.057 22.957 -13.130 22.867 -13.156 22.784 -13.161 22.700 -13.139 22.617 -13.118 22.519 -13.104 22.435 -13.101 22.352 -13.088 22.013 -13.074 21.930 -13.061 21.673 -13.050 21.590 -13.037 21.408 -13.029 21.408 -16.896 21.352 -16.998 21.269 -17.011 21.178 -17.036 21.095 -17.061 21.004 -17.092 20.920 -17.088 20.837 -17.075 ; #2356 9 50.992 9.956 50.966 10.009 50.966 10.020 50.923 10.053 50.881 10.032 50.881 10.012 50.794 9.949 50.699 9.895 50.725 10.005 50.725 10.014 50.638 10.058 50.570 10.068 50.596 10.177 50.553 10.286 50.527 10.339 50.450 10.448 50.407 10.567 50.320 10.600 50.262 10.708 50.296 10.817 50.383 10.722 50.418 10.775 50.450 10.884 50.442 10.927 50.418 11.036 50.402 11.145 50.325 11.253 50.341 11.264 50.428 11.285 50.523 11.266 50.565 11.353 50.574 11.406 50.487 11.458 50.436 11.567 50.444 11.676 50.452 11.707 50.468 11.793 50.442 11.836 50.468 11.910 50.460 11.953 50.434 11.985 50.375 12.093 50.375 12.146 50.315 12.265 50.219 12.306 50.219 12.316 50.246 12.327 50.262 12.317 50.349 12.392 50.436 12.490 50.462 12.600 50.462 12.709 50.505 12.819 50.462 12.927 50.487 12.991 50.555 13.102 50.614 13.212 50.630 13.299 50.663 13.409 50.705 13.520 50.774 13.631 50.774 13.641 50.782 13.761 50.782 13.771 50.808 13.881 50.858 13.979 50.867 14.099 50.901 14.210 50.927 14.220 50.927 14.231 50.936 14.251 50.978 14.362 51.055 14.255 51.071 14.365 51.079 14.475 51.087 14.486 51.087 14.496 51.079 14.495 51.029 14.568 50.960 14.586 50.943 14.619 50.875 14.690 50.901 14.800 50.909 14.811 50.936 14.812 50.943 14.822 50.986 14.867 51.073 14.911 51.089 14.932 51.176 14.966 51.202 14.967 51.298 15.004 51.332 15.005 51.358 14.973 51.409 14.954 51.460 14.946 51.528 14.829 51.561 14.720 51.577 14.710 51.664 14.733 51.706 14.725 51.775 14.630 51.862 14.579 51.949 14.669 51.975 14.691 51.991 14.691 52.007 14.682 52.023 14.692 52.101 14.739 52.177 14.665 52.264 14.689 52.280 14.669 52.315 14.559 52.341 14.560 52.349 14.550 52.384 14.531 52.471 14.565 52.529 14.611 52.588 14.613 52.604 14.603 52.612 14.582 52.663 14.473 52.697 14.420 52.774 14.312 52.825 14.202 52.875 14.129 52.891 14.130 52.891 14.140 52.900 14.141 52.987 14.164 53.029 14.277 53.037 14.287 53.045 14.287 53.088 14.343 53.114 14.354 53.156 14.366 53.172 14.346 53.259 14.424 53.276 14.414 53.335 14.382 53.342 14.383 53.419 14.354 53.454 14.335 53.462 14.335 53.549 14.283 53.636 14.266 53.694 14.257 53.737 14.136 53.745 14.025 53.788 13.914 53.838 13.804 53.862 13.794 53.862 13.804 53.957 13.828 54.034 13.765 54.121 13.723 54.156 13.690 54.121 13.577 54.105 13.454 54.071 13.474 54.131 13.363 54.218 13.266 54.251 13.145 54.267 13.124 54.291 13.093 54.291 13.083 54.378 13.009 54.378 12.897 54.354 12.773 54.388 12.661 54.354 12.548 54.319 12.482 54.243 12.369 54.330 12.380 54.364 12.481 54.398 12.594 54.406 12.706 54.398 12.819 54.422 12.707 54.431 12.594 54.447 12.482 54.360 12.402 54.273 12.324 54.230 12.201 54.161 12.088 54.074 12.096 54.170 12.077 54.154 11.955 54.129 11.842 54.137 11.730 54.095 11.617 54.044 11.504 54.077 11.617 54.000 11.504 53.913 11.458 53.887 11.437 53.945 11.326 53.962 11.214 53.996 11.102 53.987 11.047 53.955 10.935 53.947 10.891 53.939 10.901 53.889 10.922 53.880 10.809 53.873 10.799 53.830 10.744 53.814 10.754 53.790 10.764 53.773 10.754 53.749 10.743 53.696 10.855 53.654 10.943 53.567 10.932 53.567 10.898 53.516 10.822 53.482 10.700 53.458 10.645 53.381 10.601 53.373 10.601 53.373 10.612 53.357 10.723 53.270 10.810 53.227 10.932 53.177 11.043 53.177 11.155 53.134 11.266 53.076 11.340 53.092 11.462 53.049 11.573 52.962 11.494 52.920 11.372 52.895 11.261 52.920 11.173 52.928 11.062 52.904 10.987 52.861 10.875 52.861 10.764 52.774 10.784 52.687 10.871 52.645 10.969 52.550 10.958 52.523 10.989 52.507 10.935 52.473 10.935 52.456 10.955 52.380 11.052 52.293 11.031 52.240 11.051 52.240 11.030 52.153 11.019 52.085 10.898 52.076 10.788 52.076 10.677 52.034 10.567 51.947 10.597 51.913 10.630 51.817 10.566 51.730 10.653 51.662 10.686 51.611 10.641 51.585 10.521 51.619 10.411 51.542 10.291 51.518 10.257 51.476 10.147 51.467 10.027 51.443 9.994 51.417 9.940 51.358 9.940 51.324 9.961 51.324 9.991 51.255 10.101 51.223 10.211 51.215 10.221 51.164 10.200 51.164 10.168 51.181 10.168 51.094 10.127 51.051 10.190 51.043 10.190 51.034 10.180 51.043 10.093 51.051 10.083 50.998 10.030 50.990 10.040 50.974 9.997 50.982 9.966 50.982 9.946 ; #2357 9 -17.121 11.729 -17.096 11.834 -17.047 11.929 -17.015 12.034 -17.007 12.051 -17.022 12.156 -17.088 12.252 -17.096 12.348 -17.111 12.443 -17.096 12.547 -16.997 12.738 -16.939 12.834 -16.883 12.929 -16.842 13.034 -16.827 13.129 -16.852 13.225 -16.844 13.320 -16.868 13.405 -16.951 13.501 -17.041 13.577 -17.115 13.673 -17.165 13.769 -17.214 13.873 -17.287 13.970 -17.280 13.979 -17.295 14.084 -17.254 14.179 -17.254 17.052 -17.262 17.157 -17.262 17.358 -17.254 17.453 -17.254 18.427 -17.345 18.495 -17.429 18.532 -17.512 18.609 -17.585 18.705 -17.634 18.811 -17.674 18.916 -17.690 19.012 -17.666 19.107 -17.666 19.212 -17.690 19.287 -17.722 19.384 -17.722 19.584 -17.730 19.680 -17.722 19.776 -17.722 19.880 -17.748 19.965 -17.756 20.061 -17.730 20.166 -17.722 20.261 -17.748 20.357 -17.796 20.453 -17.837 20.550 -17.844 20.646 -17.869 20.742 -17.869 20.837 -17.821 20.932 -17.813 21.037 -17.790 21.132 -17.798 21.150 -17.823 21.246 -17.871 21.343 -17.864 21.419 -17.848 21.514 -17.825 21.618 -17.810 21.723 -17.810 21.732 -17.794 21.836 -17.779 21.931 -17.756 22.036 -17.740 22.140 -17.724 22.235 -17.709 22.340 -17.684 22.435 -17.668 22.539 -17.653 22.643 -17.637 22.739 -17.612 22.843 -17.597 22.939 -17.581 23.042 -17.558 23.147 -17.543 23.242 -17.527 23.338 -17.512 23.433 -17.453 23.327 -17.397 23.222 -17.314 23.115 -17.224 23.037 -17.140 22.940 -17.049 22.834 -16.958 22.727 -16.860 22.630 -16.776 22.552 -16.686 22.475 -16.603 22.378 -16.519 22.272 -16.446 22.175 -16.355 22.098 -16.272 22.096 -16.181 22.048 -16.097 22.000 -16.067 21.970 -15.536 21.960 -15.453 21.968 -14.939 21.958 -14.898 21.966 -14.302 21.958 -14.219 21.966 -13.606 21.958 -13.515 21.966 -12.993 21.960 -12.910 21.967 -12.910 23.801 -12.861 23.970 -12.770 23.894 -12.687 23.854 -12.603 23.880 -12.520 23.896 -12.430 23.921 -12.346 23.986 -12.263 24.003 -12.172 23.993 -12.089 23.936 -11.998 23.944 -11.824 23.941 -11.733 23.977 -11.650 23.967 -11.559 23.928 -11.476 23.964 -11.393 23.990 -11.301 24.035 -11.218 23.996 -11.136 23.986 -11.044 23.993 -11.037 23.966 -10.963 23.974 -10.872 23.973 -10.789 23.943 -10.872 23.898 -10.938 23.795 -10.913 23.700 -10.921 23.605 -10.889 23.510 -10.882 23.406 -10.907 23.311 -10.963 23.217 -10.988 23.123 -11.013 23.028 -11.013 22.925 -10.963 22.820 -11.004 22.726 -10.996 22.631 -10.948 22.527 -11.031 22.453 -11.046 22.444 -11.087 22.349 -11.160 22.256 -11.160 22.198 -11.145 22.207 -11.062 22.215 -10.979 22.205 -10.895 22.157 -10.812 22.138 -10.722 22.175 -10.688 22.269 -10.615 22.286 -10.599 22.277 -10.534 22.267 -10.451 22.257 -10.359 22.247 -10.276 22.273 -10.193 22.225 -10.110 22.186 -10.019 22.168 -9.936 22.149 -9.920 22.140 -9.837 22.113 -9.796 22.018 -9.713 21.962 -9.623 21.887 -9.539 21.822 -9.456 21.804 -9.365 21.786 -9.282 21.785 -9.191 21.811 -9.108 21.828 -9.050 21.810 -8.959 21.818 -8.893 21.826 -8.810 21.834 -8.719 21.851 -8.636 21.859 -8.553 21.876 -8.462 21.904 -8.378 21.904 -8.295 21.874 -8.263 21.874 -8.171 21.836 -8.088 21.827 -8.005 21.780 -7.914 21.724 -7.831 21.741 -7.740 21.749 -7.657 21.766 -7.574 21.792 -7.491 21.820 -7.407 21.828 -7.324 21.810 -7.233 21.772 -7.210 21.754 -7.218 21.659 -7.218 20.506 -7.127 20.506 -7.044 20.514 -6.961 20.560 -6.877 20.587 -6.844 20.596 -6.844 20.304 -6.935 20.286 -6.935 19.512 -6.984 19.530 -7.075 19.473 -7.158 19.474 -7.241 19.457 -7.332 19.486 -7.415 19.495 -7.498 19.441 -7.498 19.346 -7.589 19.364 -7.614 19.373 -7.698 19.356 -7.789 19.328 -7.872 19.328 -7.928 19.338 -7.928 18.763 -7.855 18.737 -7.862 18.633 -7.855 18.587 -7.920 18.483 -7.920 18.389 -7.928 18.286 -7.920 18.191 -7.953 18.096 -7.953 18.087 -8.036 18.088 -8.036 17.993 -7.970 17.898 -8.003 17.804 -7.988 17.700 -8.028 17.606 -8.013 17.511 -7.922 17.473 -7.839 17.418 -7.755 17.371 -7.672 17.296 -7.589 17.267 -7.541 17.249 -7.458 17.174 -7.375 17.156 -7.309 17.081 -7.235 16.986 -7.152 16.939 -7.061 16.921 -6.978 16.950 -6.895 16.912 -6.812 16.903 -6.720 16.818 -6.637 16.801 -6.630 16.783 -6.547 16.754 -6.455 16.745 -6.372 16.707 -6.289 16.689 -6.206 16.706 -6.133 16.714 -6.049 16.631 -5.958 16.593 -5.943 16.593 -5.852 16.584 -5.844 16.575 -5.844 16.566 -5.819 16.472 -5.834 16.436 -5.794 16.333 -5.794 16.135 -5.802 16.098 -5.802 15.900 -5.810 15.805 -5.794 15.616 -5.794 15.513 -5.802 15.419 -5.802 14.994 -5.810 14.900 -5.817 14.796 -5.817 14.759 -5.825 14.656 -5.833 14.561 -5.833 14.392 -5.817 14.297 -5.802 14.202 -5.802 14.099 -5.794 14.005 -5.786 13.901 -5.794 13.807 -5.802 13.712 -5.802 13.609 -5.794 13.515 -5.794 13.403 -5.810 13.376 -5.810 13.282 -5.794 13.178 -5.834 13.084 -5.819 13.075 -5.827 12.972 -5.918 12.888 -5.958 12.794 -5.951 12.699 -5.976 12.596 -6.009 12.492 -6.017 12.398 -6.049 12.303 -6.133 12.321 -6.216 12.368 -6.307 12.405 -6.390 12.451 -6.481 12.498 -6.572 12.536 -6.655 12.619 -6.662 12.619 -6.746 12.702 -6.837 12.769 -6.927 12.824 -7.001 12.833 -7.084 12.833 -7.108 12.842 -7.191 12.851 -7.274 12.906 -7.357 12.944 -7.448 12.970 -7.614 13.045 -7.705 13.072 -7.721 13.090 -7.804 13.116 -7.887 13.163 -7.970 13.200 -8.062 13.246 -8.144 13.275 -8.235 13.340 -8.251 13.348 -8.334 13.366 -8.390 13.358 -8.481 13.340 -8.504 13.349 -8.587 13.387 -8.671 13.349 -8.679 13.294 -8.737 13.200 -8.802 13.153 -8.893 13.070 -8.976 13.015 -8.893 13.024 -8.802 13.118 -8.876 13.015 -8.901 13.006 -8.992 12.969 -9.075 13.015 -9.166 13.070 -9.249 13.117 -9.257 13.126 -9.340 13.153 -9.431 13.161 -9.514 13.190 -9.597 13.173 -9.681 13.228 -9.772 13.283 -9.855 13.312 -9.911 13.303 -9.994 13.361 -10.085 13.416 -10.158 13.463 -10.249 13.501 -10.332 13.510 -10.415 13.594 -10.507 13.669 -10.590 13.745 -10.673 13.698 -10.764 13.754 -10.772 13.763 -10.855 13.818 -10.946 13.810 -11.037 13.811 -11.120 13.793 -11.203 13.794 -11.294 13.765 -11.377 13.757 -11.650 13.758 -11.650 13.767 -11.733 13.750 -11.824 13.741 -11.907 13.695 -11.990 13.678 -12.081 13.632 -12.165 13.614 -12.248 13.548 -12.331 13.453 -12.404 13.445 -12.488 13.361 -12.488 13.258 -12.480 13.239 -12.513 13.144 -12.596 13.061 -12.679 12.957 -12.770 12.911 -12.803 12.929 -12.894 12.920 -12.985 12.845 -13.068 12.762 -13.141 12.667 -13.240 12.629 -13.296 12.526 -13.380 12.508 -13.463 12.517 -13.546 12.508 -13.637 12.500 -13.720 12.491 -13.778 12.396 -13.869 12.379 -13.952 12.333 -14.043 12.342 -14.126 12.313 -14.210 12.331 -14.308 12.322 -14.391 12.296 -14.482 12.278 -14.565 12.261 -14.656 12.261 -14.739 12.195 -14.830 12.178 -14.887 12.149 -14.977 12.113 -15.068 12.132 -15.159 12.048 -15.243 12.039 -15.333 12.031 -15.407 12.022 -15.498 11.985 -15.589 11.909 -15.596 11.909 -15.679 11.834 -15.720 11.739 -15.803 11.766 -15.886 11.804 -15.970 11.775 -16.061 11.784 -16.159 11.793 -16.250 11.803 -16.334 11.811 -16.608 11.812 -16.699 11.804 -16.782 11.775 -16.873 11.758 -16.964 11.758 -17.047 11.749 -17.131 11.749 ; #2358 9 -4.896 12.020 -4.881 12.085 -4.881 12.113 -4.972 12.038 -5.055 12.104 -5.070 12.104 -5.161 12.160 -5.210 12.168 -5.301 12.197 -5.384 12.224 -5.475 12.149 -5.558 12.149 -5.649 12.204 -5.633 12.222 -5.610 12.325 -5.610 12.419 -5.585 12.514 -5.502 12.514 -5.411 12.522 -5.146 12.522 -5.055 12.531 -4.972 12.447 -4.939 12.447 -4.931 12.493 -4.883 12.587 -4.827 12.605 -4.761 12.699 -4.677 12.774 -4.653 12.783 -4.604 12.886 -4.572 12.980 -4.523 13.075 -4.450 12.980 -4.366 12.897 -4.335 12.888 -4.295 12.793 -4.287 12.765 -4.370 12.691 -4.453 12.644 -4.461 12.627 -4.476 12.533 -4.502 12.429 -4.585 12.374 -4.668 12.337 -4.691 12.271 -4.724 12.177 -4.807 12.141 -4.890 12.038 -4.906 12.020 ; #2359 9 54.372 13.119 54.364 13.139 54.356 13.139 54.321 13.149 54.295 13.261 54.311 13.374 54.370 13.488 54.370 13.508 54.344 13.620 54.328 13.732 54.415 13.714 54.457 13.602 54.552 13.660 54.612 13.640 54.605 13.527 54.621 13.405 54.708 13.387 54.631 13.272 54.596 13.305 54.605 13.418 54.518 13.492 54.552 13.380 54.578 13.268 54.578 13.155 54.491 13.208 54.404 13.227 54.370 13.113 ; #2360 9 18.680 97.438 18.589 97.463 18.506 97.508 18.423 97.525 18.373 97.623 18.380 97.720 18.297 97.708 18.214 97.763 18.131 97.798 18.048 97.814 17.957 97.763 17.926 97.768 17.900 97.800 17.817 97.846 17.734 97.910 17.603 98.083 17.520 98.118 17.436 98.183 17.345 98.266 17.262 98.350 17.179 98.394 17.154 98.408 17.138 98.501 17.055 98.566 16.972 98.591 16.889 98.580 16.805 98.577 16.740 98.606 16.657 98.650 16.574 98.714 16.483 98.727 16.392 98.782 16.483 98.869 16.566 98.919 16.483 98.983 16.399 98.971 16.309 98.912 16.225 98.842 16.225 98.738 16.160 98.634 16.111 98.655 16.020 98.643 15.937 98.649 15.854 98.619 15.771 98.626 15.746 98.613 15.654 98.618 15.571 98.635 15.481 98.567 15.465 98.461 15.374 98.457 15.366 98.447 15.407 98.358 15.341 98.253 15.276 98.252 15.192 98.232 15.109 98.247 15.101 98.246 15.018 98.290 14.935 98.290 14.844 98.345 14.678 98.500 14.595 98.556 14.511 98.595 14.420 98.670 14.388 98.762 14.304 98.830 14.248 98.919 14.183 99.008 14.099 99.058 14.016 99.114 13.933 99.161 13.842 99.208 13.776 99.201 13.685 99.201 13.602 99.239 13.519 99.249 13.428 99.232 13.403 99.238 13.319 99.239 13.263 99.169 13.180 99.152 13.097 99.228 13.006 99.228 12.923 99.266 12.840 99.285 12.766 99.382 12.700 99.470 12.617 99.462 12.534 99.483 12.451 99.484 12.360 99.513 12.269 99.587 12.186 99.579 12.103 99.627 12.019 99.610 11.929 99.684 11.846 99.659 11.762 99.596 11.689 99.494 11.598 99.476 11.515 99.430 11.431 99.358 11.416 99.356 11.333 99.302 11.242 99.264 11.159 99.173 11.126 99.132 11.043 99.029 10.960 99.021 10.903 98.921 10.903 98.894 10.820 98.820 10.737 98.812 10.646 98.850 10.563 98.795 10.480 98.769 10.472 98.768 10.388 98.752 10.305 98.715 10.222 98.681 10.131 98.626 10.083 98.638 9.992 98.535 9.909 98.531 9.826 98.535 9.735 98.492 9.652 98.461 9.568 98.447 9.478 98.413 9.437 98.403 9.354 98.380 9.263 98.375 9.180 98.353 9.096 98.348 9.013 98.306 8.930 98.292 8.839 98.269 8.756 98.265 8.673 98.231 8.590 98.255 8.499 98.285 8.415 98.309 8.324 98.379 8.292 98.472 8.375 98.503 8.458 98.499 8.499 98.596 8.507 98.691 8.423 98.732 8.340 98.783 8.249 98.778 8.166 98.856 8.191 98.953 8.176 98.961 8.085 99.002 8.011 99.092 7.928 99.061 7.845 99.102 7.870 99.198 7.804 99.289 7.788 99.298 7.705 99.330 7.615 99.371 7.531 99.375 7.448 99.425 7.440 99.519 7.531 99.543 7.458 99.613 7.374 99.571 7.291 99.612 7.259 99.705 7.274 99.761 7.282 99.770 7.191 99.708 7.107 99.731 7.024 99.709 6.976 99.810 6.893 99.900 6.802 99.989 6.719 100.021 6.703 100.029 6.663 100.122 6.580 100.143 6.663 100.194 6.754 100.200 6.837 100.213 6.860 100.223 6.852 100.317 6.804 100.341 6.721 100.373 6.695 100.401 6.680 100.437 6.665 100.531 6.614 100.622 6.622 100.717 6.630 100.735 6.597 100.828 6.506 100.851 6.448 100.865 6.448 100.857 6.392 100.957 6.400 101.061 6.309 101.093 6.225 101.125 6.142 101.129 6.052 101.049 5.968 101.009 5.935 101.007 5.903 101.023 5.837 101.122 5.821 101.216 5.904 101.267 5.978 101.375 6.018 101.472 6.034 101.510 6.059 101.606 5.976 101.667 5.920 101.699 5.904 101.801 5.988 101.901 5.988 101.910 6.078 101.941 6.162 101.984 6.177 101.993 6.260 102.093 6.343 102.089 6.376 102.100 6.392 102.101 6.448 102.009 6.539 101.920 6.595 101.829 6.686 101.750 6.719 101.724 6.802 101.674 6.893 101.624 6.918 101.617 7.001 101.558 7.034 101.457 7.075 101.364 7.042 101.297 7.009 101.191 7.009 101.087 7.024 100.985 7.090 100.894 7.106 100.801 7.197 100.731 7.280 100.672 7.295 100.578 7.295 100.484 7.378 100.433 7.452 100.401 7.500 100.309 7.583 100.258 7.675 100.207 7.758 100.176 7.841 100.172 7.907 100.233 7.907 100.328 7.824 100.340 7.740 100.336 7.667 100.426 7.583 100.439 7.500 100.452 7.410 100.447 7.369 100.539 7.452 100.535 7.535 100.493 7.619 100.461 7.702 100.437 7.792 100.425 7.876 100.412 7.959 100.399 8.050 100.375 8.075 100.369 8.166 100.347 8.249 100.323 8.332 100.319 8.415 100.307 8.507 100.285 8.590 100.253 8.524 100.203 8.597 100.112 8.680 100.062 8.706 100.035 8.789 99.985 8.872 99.981 8.955 99.968 9.038 99.964 9.129 99.960 9.212 99.956 9.295 99.915 9.387 99.903 9.452 99.812 9.437 99.707 9.404 99.610 9.338 99.503 9.331 99.419 9.355 99.317 9.447 99.267 9.530 99.327 9.613 99.294 9.696 99.252 9.787 99.211 9.870 99.190 9.926 99.184 10.017 99.199 10.100 99.198 10.131 99.192 10.215 99.191 10.305 99.229 10.388 99.246 10.480 99.199 10.488 99.295 10.571 99.303 10.654 99.294 10.745 99.349 10.828 99.423 10.911 99.477 10.994 99.495 11.085 99.550 11.126 99.562 11.217 99.543 11.308 99.569 11.391 99.614 11.474 99.640 11.557 99.677 11.648 99.695 11.731 99.749 11.814 99.784 11.898 99.858 11.981 99.884 12.072 99.893 12.155 99.957 12.238 100.031 12.296 100.054 12.369 100.053 12.453 100.052 12.519 100.049 12.602 100.029 12.693 100.020 12.759 100.018 12.849 100.018 12.933 100.055 12.941 100.055 13.024 100.090 13.107 100.116 13.198 100.134 13.281 100.113 13.331 100.054 13.414 100.007 13.445 100.047 13.486 100.069 13.544 100.139 13.577 100.237 13.625 100.318 13.600 100.410 13.600 100.448 13.608 100.512 13.623 100.609 13.714 100.627 13.623 100.684 13.616 100.788 13.590 100.881 13.575 100.974 13.606 101.032 13.575 101.021 13.492 101.030 13.409 100.958 13.325 100.987 13.267 100.964 13.184 100.955 13.093 100.964 13.010 100.918 12.927 100.965 12.836 100.881 12.770 100.978 12.762 101.024 12.795 101.122 12.780 101.216 12.772 101.290 12.749 101.383 12.733 101.477 12.749 101.573 12.764 101.670 12.830 101.772 12.815 101.836 12.732 101.912 12.648 101.988 12.722 101.995 12.638 102.062 12.623 102.078 12.623 102.115 12.532 102.162 12.459 102.250 12.542 102.258 12.459 102.325 12.482 102.391 12.391 102.298 12.308 102.325 12.292 102.418 12.292 102.427 12.260 102.528 12.176 102.584 12.260 102.592 12.325 102.590 12.285 102.681 12.202 102.736 12.128 102.795 12.037 102.795 11.954 102.870 11.871 102.926 11.788 102.926 11.764 102.933 11.847 102.941 11.903 102.918 11.987 102.863 12.070 102.833 12.153 102.804 12.244 102.767 12.327 102.747 12.410 102.764 12.493 102.772 12.544 102.813 12.627 102.757 12.710 102.670 12.766 102.581 12.857 102.535 12.873 102.545 12.956 102.536 13.039 102.527 13.122 102.535 13.205 102.468 13.289 102.419 13.379 102.393 13.420 102.379 13.503 102.387 13.594 102.388 13.677 102.367 13.677 102.472 13.685 102.568 13.769 102.585 13.793 102.587 13.850 102.688 13.933 102.761 13.966 102.782 14.049 102.808 14.132 102.912 14.147 102.922 14.155 102.923 14.239 102.949 14.279 102.953 14.352 103.056 14.426 103.158 14.442 103.195 14.442 103.253 14.465 103.310 14.465 103.406 14.498 103.504 14.523 103.602 14.546 103.700 14.480 103.797 14.455 103.890 14.471 103.987 14.455 104.049 14.471 104.146 14.504 104.196 14.511 104.292 14.488 104.385 14.472 104.459 14.465 104.563 14.531 104.644 14.523 104.739 14.538 104.835 14.523 104.861 14.507 104.917 14.500 104.971 14.492 104.997 14.434 105.000 14.418 104.998 14.335 105.054 14.391 105.155 14.457 105.208 14.472 105.265 14.513 105.365 14.596 105.477 14.679 105.524 14.770 105.507 14.854 105.515 14.937 105.515 15.020 105.563 15.103 105.584 15.152 105.536 15.235 105.464 15.258 105.467 15.341 105.526 15.432 105.587 15.424 105.501 15.490 105.494 15.539 105.596 15.622 105.600 15.705 105.641 15.788 105.625 15.854 105.530 15.854 105.484 15.927 105.391 16.011 105.357 16.094 105.445 16.117 105.373 16.142 105.281 16.158 105.179 16.190 105.088 16.274 105.046 16.357 105.020 16.382 104.997 16.397 104.970 16.488 104.900 16.579 104.809 16.670 104.767 16.753 104.788 16.837 104.792 16.943 104.799 17.034 104.775 17.133 104.781 17.231 104.833 17.279 104.840 17.388 104.839 17.496 104.818 17.580 104.745 17.603 104.731 17.651 104.643 17.691 104.553 17.707 104.538 17.781 104.453 17.864 104.409 17.920 104.313 18.003 104.279 18.086 104.236 18.135 104.187 18.201 104.142 18.284 104.107 18.367 104.044 18.374 103.949 18.400 103.857 18.400 103.761 18.448 103.672 18.481 103.593 18.489 103.489 18.489 103.480 18.497 103.385 18.431 103.280 18.348 103.314 18.316 103.214 18.233 103.184 18.208 103.133 18.175 103.099 18.092 103.105 18.059 103.082 18.075 102.989 18.034 102.888 17.960 102.781 17.953 102.762 17.953 102.657 18.036 102.614 18.044 102.519 18.092 102.421 18.133 102.332 18.216 102.248 18.282 102.162 18.282 102.153 18.266 102.095 18.183 102.025 18.109 101.918 18.133 101.826 18.049 101.796 17.966 101.719 17.883 101.611 17.842 101.577 17.769 101.471 17.761 101.451 17.688 101.345 17.605 101.286 17.574 101.244 17.558 101.224 17.543 101.222 17.576 101.131 17.616 101.090 17.639 100.998 17.655 100.973 17.738 101.023 17.829 101.045 17.912 101.084 17.996 101.124 18.079 101.184 18.162 101.224 18.245 101.228 18.328 101.204 18.412 101.233 18.460 101.136 18.485 101.122 18.568 101.152 18.659 101.241 18.742 101.310 18.826 101.285 18.909 101.297 18.992 101.326 19.075 101.376 19.158 101.351 19.241 101.298 19.324 101.292 19.407 101.278 19.481 101.250 19.564 101.318 19.655 101.246 19.648 101.149 19.678 101.106 19.686 101.012 19.636 100.900 19.553 100.823 19.603 100.734 19.562 100.633 19.562 100.623 19.636 100.529 19.719 100.485 19.810 100.451 19.818 100.453 19.901 100.494 19.984 100.561 20.067 100.584 20.141 100.605 20.224 100.619 20.224 100.584 20.265 100.494 20.338 100.449 20.421 100.407 20.429 100.408 20.452 100.316 20.369 100.246 20.329 100.143 20.412 100.139 20.412 100.130 20.470 100.055 20.500 100.031 20.493 99.934 20.478 99.914 20.395 99.803 20.379 99.705 20.387 99.647 20.379 99.550 20.295 99.583 20.205 99.559 20.156 99.486 20.131 99.386 20.182 99.298 20.189 99.204 20.148 99.121 20.065 99.089 20.007 99.088 19.924 99.085 19.841 99.009 19.818 98.976 19.883 98.890 19.827 98.786 19.779 98.683 19.754 98.632 19.762 98.537 19.762 98.473 19.754 98.376 19.795 98.285 19.853 98.197 19.853 98.101 19.762 98.089 19.678 98.039 19.638 97.928 19.539 97.915 19.448 97.873 19.365 97.899 19.282 97.906 19.249 97.910 19.158 97.879 19.075 97.812 18.992 97.753 18.909 97.818 18.818 97.832 18.734 97.858 18.643 97.837 18.636 97.731 18.579 97.627 18.572 97.530 18.645 97.444 18.661 97.438 ; #2361 9 52.392 173.907 52.434 173.850 52.434 173.729 52.442 173.629 52.511 173.827 52.545 173.981 52.458 173.958 52.390 173.905 ; #2362 9 60.332 -172.129 60.367 -172.187 60.367 -172.305 60.358 -172.450 60.386 -172.531 60.423 -172.586 60.448 -172.671 60.476 -172.752 60.502 -172.837 60.547 -172.878 60.556 -172.743 60.511 -172.692 60.483 -172.611 60.455 -172.530 60.429 -172.456 60.412 -172.367 60.421 -172.233 60.384 -172.168 60.355 -172.087 60.330 -172.132 ; #2363 9 51.635 -177.663 51.686 -177.706 51.702 -177.804 51.797 -177.699 51.822 -177.777 51.856 -177.842 51.882 -177.928 51.959 -177.716 51.925 -177.640 51.882 -177.576 51.874 -177.477 51.874 -177.367 51.831 -177.533 51.744 -177.561 51.650 -177.666 51.633 -177.668 ; #2364 9 -8.978 141.050 -9.061 141.140 -9.069 141.236 -9.011 141.325 -8.988 141.418 -9.036 141.526 -9.059 141.623 -9.067 141.718 -9.042 141.810 -9.067 141.907 -9.052 141.990 -9.036 142.083 -9.036 142.092 -9.029 142.186 -9.013 142.249 -9.054 142.347 -9.069 142.451 -9.117 142.550 -9.174 142.630 -9.174 142.667 -9.125 142.758 -9.085 142.858 -9.036 142.949 -8.970 143.038 -8.930 143.138 -8.889 143.230 -8.866 143.322 -8.841 143.423 -8.758 143.434 -8.667 143.435 -8.584 143.410 -8.526 143.359 -8.442 143.297 -8.359 143.195 -8.303 143.095 -8.288 142.999 -8.237 142.900 -8.181 142.792 -8.173 142.697 -8.197 142.604 -8.229 142.503 -8.146 142.430 -8.063 142.406 -8.104 142.438 -8.187 142.480 -8.179 142.583 -8.139 142.674 -8.123 142.767 -8.139 142.872 -8.179 142.970 -8.179 143.065 -8.154 143.158 -8.139 143.260 -8.123 143.353 -8.108 143.446 -8.100 143.549 -8.100 143.644 -8.017 143.654 -7.992 143.635 -7.901 143.600 -7.853 143.502 -7.787 143.439 -7.779 143.412 -7.763 143.411 -7.787 143.507 -7.870 143.609 -7.855 143.702 -7.903 143.810 -7.903 143.904 -7.819 143.880 -7.853 143.977 -7.853 143.995 -7.769 143.970 -7.686 143.917 -7.595 143.900 -7.512 143.846 -7.429 143.804 -7.345 143.722 -7.305 143.710 -7.328 143.721 -7.361 143.827 -7.444 143.863 -7.535 143.945 -7.568 144.043 -7.608 144.141 -7.624 144.237 -7.584 144.299 -7.500 144.319 -7.531 144.405 -7.614 144.507 -7.448 144.475 -7.375 144.468 -7.465 144.522 -7.375 144.561 -7.375 144.587 -7.458 144.604 -7.506 144.702 -7.423 144.704 -7.431 144.713 -7.514 144.795 -7.506 144.889 -7.433 144.901 -7.516 144.917 -7.599 144.886 -7.648 144.994 -7.663 145.059 -7.678 145.155 -7.670 145.210 -7.719 145.317 -7.744 145.414 -7.800 145.513 -7.793 145.616 -7.808 145.712 -7.785 145.805 -7.868 145.867 -7.891 145.964 -7.916 146.061 -7.999 146.143 -8.082 146.196 -8.166 146.278 -8.214 146.300 -8.305 146.317 -8.388 146.371 -8.436 146.421 -8.520 146.503 -8.603 146.539 -8.694 146.622 -8.777 146.583 -8.860 146.636 -8.891 146.743 -8.932 146.841 -8.948 146.937 -8.963 146.910 -9.046 146.909 -9.129 146.991 -9.220 147.017 -9.311 147.071 -9.319 147.118 -9.360 147.216 -9.352 147.299 -9.443 147.362 -9.526 147.424 -9.617 147.488 -9.700 147.495 -9.791 147.578 -9.832 147.645 -9.922 147.700 -9.882 147.771 -9.932 147.871 -9.998 147.971 -9.975 148.064 -9.909 148.142 -9.965 148.241 -10.023 148.343 -10.039 148.449 -10.015 148.540 -10.007 148.634 -9.977 148.734 -10.067 148.718 -10.067 148.821 -10.108 148.922 -10.083 149.013 -10.083 149.117 -10.116 149.217 -10.141 149.324 -10.156 149.421 -10.182 149.520 -10.174 149.613 -10.174 149.660 -10.189 149.757 -10.238 149.868 -10.321 149.909 -10.272 149.986 -10.296 150.064 -10.346 149.988 -10.338 149.892 -10.421 149.962 -10.406 149.986 -10.489 150.082 -10.522 150.182 -10.515 150.285 -10.522 150.381 -10.456 150.474 -10.449 150.568 -10.415 150.658 -10.332 150.645 -10.292 150.544 -10.259 150.444 -10.236 150.346 -10.152 150.371 -10.160 150.467 -10.186 150.574 -10.160 150.665 -10.120 150.754 -10.079 150.851 -10.104 150.751 -10.112 150.658 -10.079 150.558 -10.046 150.458 -10.046 150.355 -10.013 150.255 -9.940 150.153 -9.924 150.047 -9.924 149.984 -9.868 149.884 -9.843 149.844 -9.760 149.791 -9.669 149.707 -9.629 149.799 -9.613 149.892 -9.588 149.993 -9.505 150.014 -9.479 149.994 -9.487 149.900 -9.472 149.795 -9.456 149.699 -9.472 149.606 -9.439 149.508 -9.446 149.445 -9.373 149.343 -9.348 149.246 -9.264 149.202 -9.181 149.203 -9.098 149.253 -9.015 149.320 -8.924 149.312 -8.858 149.212 -8.858 149.117 -8.899 149.026 -8.899 148.922 -8.932 148.830 -8.957 148.738 -8.942 148.633 -8.850 148.541 -8.767 148.534 -8.684 148.498 -8.593 148.490 -8.510 148.427 -8.462 148.319 -8.371 148.236 -8.288 148.258 -8.197 148.232 -8.114 148.225 -8.030 148.189 -7.982 148.176 -7.899 148.168 -7.907 148.065 -7.914 148.049 -7.856 148.006 -7.800 147.906 -7.793 147.802 -7.709 147.731 -7.636 147.630 -7.552 147.605 -7.469 147.503 -7.411 147.403 -7.363 147.304 -7.272 147.201 -7.189 147.177 -7.106 147.178 -7.023 147.125 -6.931 147.090 -6.848 147.008 -6.758 146.971 -6.674 146.982 -6.608 146.994 -6.593 147.087 -6.577 147.189 -6.610 147.286 -6.618 147.390 -6.610 147.484 -6.618 147.580 -6.595 147.672 -6.595 147.767 -6.570 147.868 -6.487 147.898 -6.403 147.882 -6.320 147.883 -6.229 147.858 -6.146 147.756 -6.063 147.711 -5.980 147.640 -5.896 147.549 -5.872 147.529 -5.831 147.422 -5.815 147.326 -5.838 147.234 -5.831 147.139 -5.798 147.041 -5.715 146.950 -5.715 146.856 -5.691 146.816 -5.633 146.717 -5.577 146.617 -5.511 146.508 -5.481 146.431 -5.456 146.334 -5.430 146.238 -5.407 146.132 -5.366 146.034 -5.374 145.940 -5.349 145.835 -5.266 145.753 -5.183 145.754 -5.092 145.813 -4.925 145.819 -4.842 145.807 -4.759 145.821 -4.668 145.744 -4.585 145.646 -4.502 145.597 -4.418 145.519 -4.335 145.441 -4.252 145.343 -4.277 145.250 -4.252 145.145 -4.179 145.059 -4.096 145.019 -4.055 144.923 -3.972 144.891 -3.915 144.794 -3.900 144.710 -3.885 144.635 -3.793 144.603 -3.736 144.592 -3.705 144.496 -3.689 144.393 -3.763 144.301 -3.730 144.205 -3.697 144.101 -3.624 144.003 -3.540 143.897 -3.500 143.801 -3.449 143.705 -3.366 143.638 -3.318 143.533 -3.294 143.438 -3.287 143.343 -3.264 143.287 -3.256 143.192 -3.256 143.155 -3.248 143.061 -3.217 142.956 -3.184 142.860 -3.159 142.756 -3.126 142.661 -3.103 142.556 -3.055 142.460 -3.022 142.364 -2.997 142.261 -2.973 142.165 -2.890 142.107 -2.875 142.012 -2.826 141.907 -2.786 141.811 -2.745 141.715 -2.697 141.610 -2.648 141.514 -2.615 141.419 -2.550 141.313 -2.527 141.217 -2.511 141.122 -2.527 141.086 -2.915 141.083 -3.163 141.083 -3.910 141.073 -4.084 141.071 -4.506 141.057 -4.904 141.046 -4.937 141.047 -5.020 141.042 -5.111 141.041 -5.202 141.049 -5.285 141.047 -5.376 141.055 -5.467 141.053 -5.550 141.051 -5.641 141.059 -5.732 141.058 -5.815 141.065 -5.906 141.064 -5.972 141.060 -6.063 141.068 -6.146 141.067 -6.237 141.065 -6.252 141.029 -6.336 140.981 -6.419 140.979 -6.510 140.941 -6.593 140.922 -6.676 140.946 -6.760 140.982 -6.792 141.079 -6.823 141.082 -6.914 141.080 -6.997 141.078 -7.088 141.078 -7.172 141.085 -7.353 141.082 -7.437 141.081 -7.527 141.079 -7.618 141.087 -7.701 141.085 -7.793 141.084 -7.875 141.082 -7.966 141.081 -8.058 141.089 -8.141 141.087 -8.231 141.085 -8.315 141.084 -8.406 141.083 -8.496 141.082 -8.580 141.080 -8.671 141.087 -8.754 141.085 -8.845 141.085 -9.011 141.081 -9.019 141.081 ; #2365 9 -10.658 142.255 -10.574 142.185 -10.491 142.258 -10.574 142.336 -10.658 142.253 ; #2366 9 -10.568 151.006 -10.485 151.011 -10.493 151.107 -10.526 151.017 -10.567 151.005 ; #2367 9 -2.881 150.891 -2.815 150.983 -2.840 151.078 -2.863 150.985 -2.879 150.891 ; #2368 9 -1.855 147.505 -1.888 147.514 -1.872 147.523 -1.857 147.505 ; #2369 9 18.164 -65.598 18.171 -65.503 18.228 -65.414 18.235 -65.511 18.162 -65.598 ; #2370 9 42.937 17.664 42.888 17.732 42.937 17.630 42.953 17.526 43.011 17.425 43.052 17.313 43.068 17.209 43.027 17.103 43.027 17.208 42.986 17.310 42.960 17.422 42.903 17.524 42.878 17.627 42.870 17.741 42.854 17.844 42.788 17.945 42.755 18.048 42.747 18.047 42.698 18.096 42.698 18.127 42.665 18.229 42.581 18.296 42.532 18.397 42.516 18.488 42.540 18.470 42.623 18.464 42.683 18.354 42.690 18.250 42.724 18.210 42.755 18.161 42.813 18.060 42.837 17.957 42.903 17.855 42.953 17.848 42.968 17.735 42.943 17.673 42.935 17.664 ; #2371 9 56.041 -134.314 56.111 -134.279 56.200 -134.360 56.217 -134.268 56.296 -134.254 56.207 -134.196 56.240 -134.114 56.329 -134.149 56.329 -134.035 56.419 -134.093 56.462 -134.034 56.552 -134.082 56.649 -134.126 56.595 -133.942 56.674 -133.918 56.764 -133.955 56.755 -134.069 56.704 -134.129 56.677 -134.209 56.720 -134.150 56.783 -134.104 56.872 -134.186 56.970 -134.426 56.872 -134.312 56.932 -134.503 56.835 -134.470 56.886 -134.557 56.826 -134.595 56.737 -134.582 56.720 -134.571 56.720 -134.446 56.631 -134.422 56.595 -134.502 56.535 -134.311 56.446 -134.229 56.411 -134.309 56.411 -134.423 56.340 -134.448 56.356 -134.354 56.313 -134.413 56.242 -134.437 56.144 -134.414 56.055 -134.332 56.039 -134.311 ; #2372 9 56.371 -132.578 56.388 -132.620 56.371 -132.724 56.310 -132.762 56.267 -132.821 56.215 -132.882 56.126 -132.780 56.047 -132.566 55.957 -132.454 55.982 -132.372 56.044 -132.336 56.134 -132.381 56.169 -132.312 56.259 -132.538 56.250 -132.652 56.285 -132.571 56.375 -132.583 ; #2373 9 55.273 -133.235 55.282 -133.268 55.220 -133.303 55.130 -133.246 55.087 -133.315 54.997 -133.259 54.910 -133.161 54.815 -133.064 54.728 -132.946 54.712 -132.804 54.799 -132.847 54.894 -132.943 54.981 -133.062 55.069 -133.160 55.097 -133.081 55.186 -133.192 55.275 -133.238 ; #2374 9 55.826 -133.497 55.826 -133.621 55.862 -133.780 55.818 -133.839 55.729 -133.694 55.808 -133.670 55.791 -133.535 55.826 -133.503 ; #2375 9 55.014 -131.353 54.997 -131.412 54.989 -131.515 54.938 -131.572 54.904 -131.421 54.930 -131.337 55.018 -131.358 ; #2376 10 80.702 -66.995 80.660 -66.790 80.672 -66.638 80.741 -66.876 80.699 -66.992 ; #2377 10 68.730 -52.264 68.739 -52.400 68.730 -52.534 68.739 -52.683 68.721 -52.812 68.702 -52.928 68.674 -53.049 68.655 -53.165 68.637 -53.023 68.655 -52.895 68.655 -52.753 68.664 -52.618 68.694 -52.509 68.685 -52.362 68.732 -52.265 ; #2378 10 73.444 -56.084 73.413 -56.137 73.353 -56.221 73.343 -56.076 73.446 -56.086 ; #2379 10 73.803 -56.508 73.772 -56.481 73.781 -56.338 73.801 -56.506 ; #2380 10 72.930 -55.689 72.869 -55.637 72.908 -55.534 72.927 -55.686 ; #2381 10 59.809 -43.950 59.817 -43.932 59.834 -43.822 59.905 -43.739 59.959 -43.883 59.992 -44.018 59.921 -44.101 59.832 -44.161 59.840 -44.036 59.900 -43.948 59.803 -43.947 ; #2382 10 62.910 -41.647 62.955 -41.589 63.056 -41.556 63.000 -41.660 62.907 -41.646 ; #2383 10 82.121 -51.387 82.163 -51.445 82.245 -51.842 82.287 -52.058 82.301 -52.243 82.313 -52.458 82.424 -52.730 82.450 -52.930 82.464 -53.116 82.464 -53.289 82.424 -53.406 82.327 -53.462 82.232 -53.206 82.219 -53.035 82.205 -52.848 82.193 -52.664 82.166 -52.464 82.140 -52.252 82.127 -52.082 82.114 -51.896 82.114 -51.534 82.127 -51.390 ; #2384 10 82.921 -48.433 82.921 -47.844 82.973 -47.735 83.000 -47.949 83.013 -48.121 83.026 -48.323 82.915 -48.423 ; #2385 10 83.117 -39.990 83.173 -40.178 83.186 -40.364 83.199 -40.535 83.239 -40.776 83.294 -40.983 83.294 -41.381 83.280 -41.561 83.254 -41.363 83.215 -41.124 83.173 -40.915 83.146 -40.717 83.134 -40.531 83.121 -40.346 83.121 -39.997 ; #2386 10 71.098 -25.737 71.088 -25.878 71.047 -25.993 71.028 -26.117 71.009 -26.253 70.971 -26.381 70.952 -26.505 70.933 -26.642 70.933 -26.774 70.923 -26.915 70.933 -27.052 70.914 -27.176 70.854 -27.293 70.825 -27.412 70.784 -27.525 70.734 -27.645 70.684 -27.766 70.684 -27.899 70.664 -28.022 70.561 -28.048 70.511 -28.156 70.473 -28.006 70.473 -27.862 70.492 -27.739 70.502 -27.599 70.511 -27.471 70.511 -27.327 70.542 -27.197 70.542 -27.065 70.561 -26.930 70.561 -26.653 70.593 -26.522 70.612 -26.387 70.621 -26.259 70.559 -26.085 70.590 -25.967 70.640 -25.846 70.640 -25.714 70.672 -25.583 70.681 -25.455 70.710 -25.335 70.801 -25.509 70.841 -25.395 70.954 -25.458 71.014 -25.619 71.014 -25.752 71.105 -25.740 ; #2387 10 72.939 -24.843 72.949 -24.969 72.930 -25.097 72.910 -25.236 72.882 -25.372 72.862 -25.214 72.833 -25.064 72.853 -24.937 72.944 -24.842 ; #2388 10 72.949 -21.962 72.980 -22.029 72.970 -22.174 73.020 -22.332 73.039 -22.489 73.049 -22.630 73.059 -22.796 73.068 -22.949 73.087 -23.107 73.097 -23.260 73.087 -23.406 73.078 -23.538 73.059 -23.667 73.059 -23.815 73.049 -23.961 73.039 -24.118 73.039 -24.268 73.030 -24.400 72.939 -24.507 72.949 -24.363 72.958 -24.218 72.958 -24.069 72.949 -23.916 72.930 -23.771 72.910 -23.626 72.910 -23.176 72.891 -23.006 72.841 -22.848 72.738 -22.696 72.757 -22.556 72.747 -22.403 72.738 -22.250 72.738 -22.114 72.728 -21.974 72.831 -22.068 72.860 -22.229 72.891 -22.093 72.951 -21.957 ; #2389 10 76.559 -20.800 76.559 -20.943 76.504 -21.060 76.504 -21.216 76.449 -21.046 76.438 -20.897 76.527 -20.785 76.561 -20.801 ; #2390 10 74.615 -18.721 74.674 -18.896 74.655 -19.029 74.617 -19.166 74.555 -18.989 74.555 -18.850 74.586 -18.723 74.617 -18.722 ; #2391 10 78.258 -20.442 78.269 -20.460 78.279 -20.613 78.237 -20.768 78.216 -20.581 78.261 -20.443 ; #2392 10 78.821 -19.409 78.831 -19.265 78.944 -19.319 78.944 -19.483 78.889 -19.619 78.857 -19.767 78.779 -19.565 78.769 -19.398 78.802 -19.238 78.824 -19.411 ; #2393 10 78.292 -19.232 78.313 -19.081 78.347 -18.950 78.368 -19.135 78.292 -19.229 ; #2394 10 77.954 -17.693 77.964 -17.742 77.944 -17.907 77.854 -18.027 77.810 -18.154 77.734 -18.266 77.724 -18.115 77.734 -17.959 77.755 -17.795 77.844 -17.675 77.957 -17.698 ; #2395 10 -52.464 -68.580 -52.507 -68.585 -52.602 -68.589 -52.689 -68.587 -52.750 -68.580 -52.819 -68.591 -52.845 -68.586 -52.861 -68.596 -53.035 -68.591 -53.130 -68.595 -53.130 -68.584 -53.225 -68.588 -53.486 -68.581 -53.581 -68.585 -53.668 -68.583 -53.745 -68.587 -54.178 -68.574 -54.273 -68.577 -54.315 -68.572 -54.350 -68.573 -54.524 -68.567 -54.582 -68.558 -54.598 -68.538 -54.651 -68.447 -54.651 -68.392 -54.598 -68.236 -54.598 -68.204 -54.615 -68.159 -54.623 -68.041 -54.649 -67.945 -54.657 -67.837 -54.673 -67.724 -54.682 -67.606 -54.665 -67.483 -54.682 -67.380 -54.682 -67.257 -54.689 -67.139 -54.698 -67.031 -54.705 -66.912 -54.722 -66.810 -54.738 -66.696 -54.789 -66.614 -54.823 -66.522 -54.831 -66.414 -54.772 -66.255 -54.772 -66.132 -54.756 -66.009 -54.687 -65.845 -54.687 -65.732 -54.738 -65.639 -54.712 -65.511 -54.677 -65.368 -54.703 -65.270 -54.617 -65.198 -54.530 -65.157 -54.443 -65.085 -54.426 -65.188 -54.435 -65.315 -54.443 -65.443 -54.451 -65.560 -54.451 -65.673 -54.443 -65.781 -54.408 -65.873 -54.392 -65.986 -54.358 -66.078 -54.332 -66.185 -54.299 -66.278 -54.256 -66.376 -54.222 -66.468 -54.172 -66.559 -54.111 -66.635 -54.069 -66.722 -54.034 -66.814 -54.010 -66.911 -53.959 -67.004 -53.925 -67.095 -53.899 -67.201 -53.856 -67.288 -53.805 -67.369 -53.771 -67.471 -53.721 -67.552 -53.625 -67.582 -53.609 -67.695 -53.540 -67.765 -53.490 -67.847 -53.437 -67.926 -53.379 -68.013 -53.284 -68.053 -53.197 -68.089 -53.120 -68.154 -53.120 -68.386 -53.093 -68.482 -53.017 -68.557 -52.930 -68.483 -52.835 -68.381 -52.843 -68.275 -52.938 -68.221 -52.843 -68.252 -52.756 -68.298 -52.687 -68.367 -52.636 -68.447 -52.568 -68.526 -52.533 -68.559 -52.475 -68.612 ; #2396 10 70.028 -51.065 70.009 -51.010 70.009 -51.035 70.028 -51.061 ; #2397 10 60.024 -43.960 60.061 -43.850 60.069 -43.984 60.123 -44.131 60.188 -44.047 60.179 -43.924 60.179 -43.901 60.162 -43.788 60.134 -43.655 60.126 -43.521 60.108 -43.383 60.091 -43.256 60.029 -43.212 60.029 -43.294 60.065 -43.443 60.102 -43.592 60.029 -43.553 59.938 -43.637 59.973 -43.772 60.009 -43.920 60.026 -43.964 ; #2398 10 62.735 -42.477 62.828 -42.456 62.845 -42.343 62.836 -42.205 62.828 -42.131 62.819 -42.078 62.785 -42.193 62.757 -42.300 62.740 -42.412 62.740 -42.482 ; #2399 10 57.042 9.288 57.059 9.403 57.059 9.518 57.032 9.633 57.092 9.748 57.092 9.919 57.101 9.940 57.101 9.919 57.134 9.793 57.109 9.678 57.082 9.563 57.082 9.448 57.057 9.333 57.040 9.288 ; #2400 10 56.558 21.031 56.487 21.024 56.398 20.994 56.308 20.996 56.219 21.029 56.122 21.065 56.130 21.101 56.130 21.215 56.219 21.269 56.290 21.390 56.317 21.507 56.317 21.518 56.333 21.551 56.361 21.679 56.386 21.796 56.413 21.913 56.421 21.946 56.429 21.992 56.464 22.121 56.448 22.234 56.448 22.484 56.440 22.608 56.431 22.639 56.415 22.751 56.450 22.870 56.450 22.995 56.361 23.086 56.413 23.206 56.421 23.298 56.404 23.410 56.377 23.521 56.404 23.639 56.404 23.660 56.388 23.783 56.388 23.898 56.363 24.009 56.319 24.128 56.328 24.244 56.354 24.314 56.319 24.434 56.335 24.551 56.415 24.662 56.450 24.781 56.494 24.887 56.423 24.956 56.344 25.001 56.319 25.043 56.230 25.145 56.230 25.270 56.221 25.325 56.213 25.438 56.213 25.552 56.205 25.676 56.115 25.777 56.044 25.882 56.044 25.903 56.001 26.011 55.993 26.041 55.932 26.147 55.799 26.297 55.764 26.406 55.755 26.450 55.729 26.560 55.729 26.605 55.755 26.675 55.739 26.728 55.739 26.738 55.799 26.872 55.888 26.985 55.897 27.100 55.872 27.221 55.881 27.337 55.872 27.346 55.845 27.456 55.845 27.580 55.872 27.605 55.897 27.609 55.986 27.657 56.084 27.787 56.163 27.913 56.190 28.032 56.198 28.147 56.250 28.190 56.340 28.215 56.429 28.173 56.456 28.167 56.516 28.142 56.614 28.123 56.649 28.014 56.658 28.005 56.728 27.995 56.780 27.888 56.870 27.924 56.922 27.818 56.913 27.738 56.913 27.637 57.003 27.718 57.092 27.753 57.182 27.746 57.198 27.805 57.259 27.836 57.356 27.840 57.392 27.731 57.443 27.623 57.479 27.513 57.569 27.461 57.576 27.359 57.576 27.282 57.594 27.169 57.618 27.046 57.654 26.984 57.670 26.871 57.618 26.737 57.583 26.616 57.566 26.603 57.583 26.490 57.618 26.379 57.670 26.260 57.760 26.171 57.803 26.075 57.812 26.055 57.820 26.034 57.890 25.964 57.890 25.848 57.961 25.731 57.953 25.614 58.013 25.506 58.065 25.397 58.032 25.276 58.057 25.212 58.101 25.102 58.057 25.005 58.040 24.886 58.032 24.758 57.978 24.635 57.970 24.518 57.899 24.393 57.899 24.358 57.907 24.316 57.845 24.297 57.747 24.319 57.658 24.376 57.569 24.364 57.479 24.388 57.390 24.408 57.300 24.407 57.211 24.294 57.140 24.170 57.105 24.051 57.053 23.963 57.017 23.844 57.001 23.727 57.009 23.614 57.069 23.495 57.078 23.381 57.129 23.272 57.398 23.132 57.425 23.019 57.549 22.803 57.594 22.692 57.691 22.587 57.780 22.541 57.753 22.422 57.720 22.303 57.712 22.256 57.668 22.136 57.635 22.016 57.635 21.890 57.618 21.772 57.539 21.648 57.450 21.561 57.352 21.460 57.263 21.419 57.173 21.410 57.084 21.411 56.994 21.301 56.924 21.179 56.835 21.068 56.745 21.071 56.656 21.041 56.566 21.021 56.550 21.064 56.461 21.056 56.550 21.019 ; #2401 10 -16.012 22.000 -16.043 22.030 -16.127 22.078 -16.217 22.126 -16.301 22.128 -16.392 22.205 -16.465 22.302 -16.548 22.408 -16.631 22.505 -16.722 22.583 -16.806 22.660 -16.904 22.758 -16.995 22.864 -17.086 22.970 -17.169 23.068 -17.260 23.145 -17.344 23.251 -17.399 23.357 -17.457 23.463 -17.442 23.518 -17.427 23.623 -17.411 23.718 -17.388 23.822 -17.372 23.926 -17.357 24.021 -17.332 24.125 -17.316 24.229 -17.316 24.383 -17.342 24.480 -17.372 24.575 -17.332 24.679 -17.357 24.775 -17.372 24.871 -17.397 24.956 -17.423 24.984 -17.506 25.071 -17.589 25.168 -17.637 25.245 -17.637 25.254 -17.678 25.360 -17.686 25.455 -17.678 25.551 -17.645 25.654 -17.686 25.751 -17.760 25.838 -17.775 25.820 -17.833 25.926 -17.808 26.010 -17.760 26.105 -17.726 26.200 -17.767 26.305 -17.767 26.361 -17.808 26.458 -17.848 26.563 -17.897 26.661 -17.897 26.678 -17.848 26.773 -17.833 26.819 -17.817 26.884 -17.794 26.979 -17.794 26.996 -17.711 27.090 -17.628 27.125 -17.537 27.208 -17.438 27.289 -17.347 27.382 -17.256 27.485 -17.248 27.502 -17.158 27.584 -17.075 27.600 -16.983 27.652 -16.885 27.725 -16.794 27.789 -16.763 27.884 -16.722 27.979 -16.715 27.987 -16.674 28.090 -16.591 28.193 -16.535 28.296 -16.502 28.390 -16.461 28.485 -16.420 28.579 -16.405 28.674 -16.380 28.720 -16.372 28.720 -16.289 28.782 -16.198 28.808 -16.032 28.803 -15.941 28.818 -15.900 28.817 -15.817 28.890 -15.817 28.898 -15.801 28.993 -15.718 29.066 -15.653 29.169 -15.612 29.263 -15.579 29.357 -15.564 29.461 -15.523 29.555 -15.515 29.659 -15.482 29.754 -15.482 29.849 -15.515 29.945 -15.492 30.049 -15.508 30.145 -15.508 30.240 -15.500 30.344 -15.492 30.362 -15.459 30.343 -15.368 30.331 -15.202 30.308 -15.119 30.221 -15.028 30.200 -14.945 30.169 -14.846 30.167 -14.838 30.262 -14.797 30.366 -14.749 30.460 -14.716 30.554 -14.676 30.666 -14.643 30.761 -14.618 30.856 -14.594 30.959 -14.579 31.054 -14.556 31.149 -14.540 31.244 -14.517 31.339 -14.492 31.433 -14.443 31.536 -14.411 31.599 -14.370 31.694 -14.347 31.788 -14.306 31.883 -14.291 31.987 -14.242 32.081 -14.227 32.176 -14.202 32.279 -14.202 32.297 -14.169 32.400 -14.128 32.503 -14.095 32.615 -14.055 32.727 -14.014 32.839 -13.983 32.951 -13.942 33.054 -13.902 33.166 -13.818 33.118 -13.818 33.100 -13.909 33.007 -13.909 32.943 -13.826 32.941 -13.736 32.854 -13.685 32.758 -13.629 32.739 -13.546 32.746 -13.521 32.641 -13.437 32.734 -13.354 32.796 -13.256 32.869 -13.165 32.893 -13.081 32.966 -12.991 32.935 -12.908 32.951 -12.824 32.976 -12.733 32.909 -12.650 32.907 -12.559 32.969 -12.494 33.062 -12.486 33.157 -12.420 33.259 -12.387 33.362 -12.296 33.444 -12.281 33.470 -12.240 33.365 -12.149 33.268 -12.093 33.249 -12.010 33.218 -11.926 33.244 -11.836 33.260 -11.753 33.258 -11.662 33.273 -11.570 33.262 -11.487 33.242 -11.397 33.202 -11.313 33.238 -11.222 33.273 -11.139 33.326 -11.056 33.333 -10.957 33.275 -10.867 33.244 -10.776 33.196 -10.727 33.289 -10.720 33.401 -10.628 33.483 -10.545 33.565 -10.479 33.638 -10.389 33.570 -10.298 33.503 -10.214 33.483 -10.131 33.481 -10.058 33.385 -10.000 33.280 -9.917 33.270 -9.834 33.324 -9.742 33.296 -9.659 33.200 -9.593 33.170 -9.520 33.074 -9.535 32.980 -9.535 32.933 -9.520 32.942 -9.479 32.932 -9.396 32.885 -9.330 32.884 -9.298 32.820 -9.264 32.725 -9.257 32.707 -9.241 32.707 -9.209 32.671 -9.201 32.576 -9.185 32.481 -9.094 32.433 -9.061 32.338 -9.061 32.235 -9.021 32.140 -8.990 32.044 -8.982 31.980 -8.934 31.885 -8.843 31.837 -8.818 31.733 -8.850 31.688 -8.850 31.650 -8.777 31.554 -8.694 31.516 -8.603 31.451 -8.570 31.413 -8.530 31.317 -8.555 31.223 -8.530 31.128 -8.537 31.120 -8.537 31.025 -8.472 30.920 -8.388 30.853 -8.305 30.806 -8.214 30.758 -8.131 30.731 -8.146 30.636 -8.154 30.542 -8.162 30.533 -8.170 30.438 -8.185 30.335 -8.201 30.241 -8.216 30.146 -8.231 30.043 -8.239 29.968 -8.255 29.865 -8.270 29.770 -8.286 29.676 -8.293 29.572 -8.301 29.544 -8.317 29.441 -8.332 29.346 -8.340 29.252 -8.355 29.148 -8.371 29.053 -8.386 28.960 -8.402 28.865 -8.493 28.912 -8.576 28.922 -8.667 28.886 -8.750 28.831 -8.833 28.757 -8.916 28.684 -9.000 28.590 -9.073 28.496 -9.121 28.402 -9.205 28.348 -9.245 28.443 -9.286 28.490 -9.294 28.490 -9.309 28.481 -9.392 28.528 -9.483 28.548 -9.567 28.586 -9.657 28.624 -9.740 28.625 -9.824 28.598 -9.907 28.590 -9.990 28.591 -10.081 28.564 -10.164 28.565 -10.248 28.576 -10.338 28.607 -10.421 28.590 -10.505 28.619 -10.596 28.630 -10.679 28.556 -10.762 28.511 -10.853 28.496 -10.936 28.471 -11.027 28.444 -11.110 28.437 -11.193 28.401 -11.209 28.401 -11.265 28.393 -11.348 28.331 -11.439 28.333 -11.522 28.381 -11.606 28.409 -11.689 28.420 -11.772 28.517 -11.863 28.602 -11.878 28.706 -11.944 28.737 -12.027 28.813 -12.118 28.910 -12.201 28.958 -12.267 29.054 -12.267 29.158 -12.292 29.254 -12.315 29.349 -12.285 29.444 -12.201 29.425 -12.118 29.507 -12.110 29.601 -12.095 29.656 -12.054 29.751 -12.054 29.768 -12.229 29.772 -12.319 29.765 -12.536 29.769 -12.627 29.763 -12.983 29.771 -13.066 29.763 -13.331 29.769 -13.339 29.665 -13.256 29.588 -13.173 29.653 -13.117 29.557 -13.182 29.454 -13.223 29.360 -13.271 29.265 -13.329 29.171 -13.281 29.075 -13.281 29.029 -13.256 28.933 -13.165 28.923 -13.081 28.895 -12.998 28.837 -12.908 28.798 -12.882 28.789 -12.799 28.712 -12.733 28.607 -12.749 28.598 -12.691 28.502 -12.607 28.482 -12.524 28.472 -12.441 28.433 -12.350 28.347 -12.342 28.320 -12.335 28.320 -12.335 28.225 -12.327 28.130 -12.269 28.034 -12.203 27.937 -12.153 27.841 -12.193 27.776 -12.201 27.681 -12.135 27.576 -12.044 27.510 -11.961 27.480 -11.878 27.461 -11.795 27.375 -11.729 27.270 -11.646 27.213 -11.555 27.211 -11.472 27.192 -11.472 27.183 -11.487 27.089 -11.570 27.026 -11.654 26.990 -11.737 26.983 -11.820 26.938 -11.878 26.835 -11.886 26.740 -11.886 26.637 -11.871 26.542 -11.820 26.456 -11.820 26.353 -11.828 26.258 -11.803 26.163 -11.803 26.059 -11.762 25.963 -11.689 25.858 -11.704 25.764 -11.638 25.667 -11.654 25.564 -11.588 25.468 -11.548 25.372 -11.464 25.324 -11.373 25.332 -11.290 25.292 -11.207 25.300 -11.124 25.336 -11.132 25.241 -11.155 25.147 -11.162 25.043 -11.170 24.997 -11.186 24.903 -11.218 24.799 -11.234 24.696 -11.292 24.602 -11.358 24.499 -11.317 24.403 -11.294 24.308 -11.211 24.382 -11.120 24.407 -11.037 24.379 -10.953 24.323 -10.938 24.227 -10.930 24.124 -10.839 24.123 -10.774 24.027 -10.774 23.980 -10.857 24.010 -10.948 24.011 -11.021 24.004 -11.029 24.031 -11.120 24.023 -11.203 24.033 -11.286 24.072 -11.377 24.027 -11.460 24.002 -11.544 23.965 -11.634 24.004 -11.717 24.014 -11.809 23.978 -11.982 23.981 -12.074 23.974 -12.157 24.030 -12.248 24.040 -12.331 24.024 -12.414 23.959 -12.505 23.934 -12.588 23.917 -12.671 23.892 -12.755 23.931 -12.846 24.007 -12.894 23.838 -12.894 22.005 -12.977 21.997 -13.499 22.003 -13.591 21.996 -14.204 22.004 -14.287 21.996 -14.883 22.004 -14.923 21.995 -15.438 22.005 -15.521 21.998 -16.051 22.008 ; #2402 10 16.583 97.600 16.558 97.540 16.475 97.556 16.384 97.543 16.384 97.647 16.467 97.659 16.550 97.688 16.583 97.597 ; #2403 10 10.808 98.349 10.892 98.339 10.975 98.301 11.048 98.213 10.965 98.150 10.981 98.255 10.890 98.312 10.806 98.351 ; #2404 10 12.503 98.549 12.503 98.587 12.594 98.569 12.503 98.552 ; #2405 10 39.431 44.074 39.415 44.091 39.332 44.139 39.248 44.164 39.166 44.253 39.082 44.240 39.049 44.207 38.965 44.253 38.899 44.345 38.816 44.322 38.732 44.319 38.641 44.363 38.558 44.369 38.535 44.356 38.519 44.354 38.428 44.429 38.387 44.524 38.303 44.443 38.220 44.430 38.137 44.357 38.046 44.303 37.962 44.281 37.954 44.280 37.946 44.380 37.881 44.481 37.847 44.577 37.781 44.668 37.758 44.654 37.675 44.660 37.591 44.647 37.500 44.663 37.459 44.768 37.385 44.857 37.302 44.825 37.219 44.843 37.170 44.835 37.112 44.927 37.029 44.944 36.945 44.931 36.854 44.955 36.828 45.051 36.828 45.061 36.745 45.115 36.689 45.088 36.605 45.066 36.539 45.134 36.440 45.320 36.349 45.346 36.266 45.372 36.250 45.370 36.167 45.415 36.083 45.383 36.076 45.381 36.091 45.564 36.076 45.602 36.042 45.645 36.050 45.675 35.926 45.774 35.893 45.869 35.916 45.973 35.924 46.075 35.932 46.177 35.891 46.271 35.899 46.382 35.815 46.319 35.782 46.213 35.774 46.111 35.691 46.058 35.635 46.031 35.551 46.036 35.460 46.101 35.377 46.175 35.346 46.161 35.262 46.208 35.196 46.197 35.181 46.176 35.140 46.060 35.181 45.966 35.173 45.956 35.082 45.911 35.033 45.912 35.000 45.807 34.985 45.805 34.901 45.715 34.819 45.685 34.728 45.744 34.644 45.760 34.652 45.662 34.693 45.558 34.644 45.551 34.561 45.482 34.478 45.502 34.437 45.584 34.354 45.623 34.271 45.593 34.104 45.492 34.079 45.480 34.072 45.451 34.039 45.475 34.031 45.504 33.973 45.596 33.890 45.653 33.807 45.700 33.733 45.799 33.726 45.886 33.669 45.979 33.586 45.958 33.571 46.056 33.538 46.090 33.455 46.119 33.372 46.217 33.288 46.245 33.230 46.180 33.199 46.097 33.141 46.189 33.058 46.187 33.065 46.296 33.058 46.395 33.035 46.491 32.994 46.555 32.944 46.648 32.936 46.665 32.880 46.757 32.806 46.856 32.733 46.945 32.677 47.046 32.611 47.137 32.578 47.231 32.586 47.290 32.593 47.310 32.593 47.349 32.561 47.432 32.470 47.468 32.462 47.458 32.396 47.515 32.313 47.571 32.230 47.608 32.230 47.627 32.215 47.643 32.141 47.720 32.133 47.728 32.125 47.727 32.095 47.741 32.012 47.818 31.928 47.885 31.845 47.864 31.812 47.850 31.729 47.809 31.638 47.778 31.555 47.737 31.464 47.725 31.297 47.720 31.207 47.716 31.124 47.753 31.124 47.960 31.116 48.058 31.025 48.055 30.941 48.052 30.851 48.049 30.760 48.045 30.669 48.051 30.586 48.079 30.562 48.163 30.555 48.171 30.471 48.198 30.456 48.295 30.373 48.370 30.290 48.406 30.206 48.434 30.133 48.453 30.092 48.546 30.085 48.602 30.133 48.657 30.181 48.646 30.158 48.729 30.158 48.887 30.241 48.926 30.324 48.937 30.407 48.883 30.448 48.870 30.531 48.921 30.539 49.020 30.612 48.953 30.646 49.056 30.638 49.082 30.638 49.101 30.614 49.196 30.524 49.240 30.508 49.140 30.524 49.043 30.524 48.936 30.441 49.002 30.383 49.101 30.375 49.199 30.292 49.235 30.299 49.334 30.299 49.433 30.226 49.500 30.202 49.497 30.144 49.587 30.278 49.803 30.334 49.918 30.350 49.998 30.342 50.036 30.259 50.102 30.176 50.138 30.135 50.132 30.044 50.158 29.970 50.247 29.963 50.255 29.955 50.254 29.872 50.322 29.788 50.391 29.764 50.457 29.740 50.472 29.657 50.550 29.591 50.641 29.508 50.650 29.417 50.680 29.334 50.622 29.301 50.628 29.276 50.723 29.276 50.821 29.203 50.920 29.119 50.902 29.127 50.805 29.044 50.814 28.970 50.913 28.938 51.007 28.854 51.064 28.763 51.072 28.680 51.072 28.639 51.077 28.548 51.135 28.465 51.192 28.382 51.280 28.299 51.262 28.251 51.266 28.185 51.356 28.094 51.394 28.061 51.497 27.995 51.588 27.980 51.684 27.995 51.801 27.980 51.906 27.980 52.013 27.924 52.104 27.850 52.194 27.817 52.297 27.802 52.393 27.761 52.495 27.678 52.563 27.604 52.652 27.521 52.585 27.481 52.678 27.473 52.687 27.415 52.778 27.367 52.879 27.250 53.060 27.227 53.164 27.194 53.258 27.162 53.352 27.128 53.446 27.088 53.470 26.997 53.516 26.931 53.606 26.865 53.705 26.865 53.811 26.873 53.910 26.906 54.020 26.873 54.114 26.873 54.221 26.865 54.326 26.774 54.372 26.759 54.476 26.736 54.571 26.678 54.661 26.662 54.766 26.710 54.879 26.794 54.986 26.794 54.995 26.877 55.112 26.943 55.226 26.951 55.324 26.925 55.428 26.933 55.486 26.974 55.588 27.057 55.550 27.065 55.551 27.156 55.660 27.164 55.768 27.171 55.816 27.179 55.856 27.229 55.969 27.328 56.176 27.353 56.286 27.353 56.384 27.328 56.487 27.312 56.582 27.312 56.689 27.305 56.795 27.256 56.828 27.173 56.855 27.140 56.949 27.049 56.974 26.966 57.022 26.883 57.048 26.792 57.066 26.709 57.074 26.618 57.053 26.535 57.090 26.451 57.109 26.368 57.164 26.285 57.145 26.194 57.162 26.111 57.229 26.020 57.256 25.937 57.342 25.921 57.437 25.914 57.543 25.921 57.641 25.888 57.743 25.798 57.740 25.805 57.759 25.863 57.864 25.822 57.965 25.739 58.022 25.714 58.125 25.730 58.225 25.770 58.327 25.747 58.430 25.755 58.528 25.730 58.622 25.738 58.729 25.697 58.821 25.639 58.911 25.565 59.007 25.565 59.104 25.598 59.206 25.614 59.276 25.645 59.377 25.629 59.472 25.563 59.560 25.571 59.668 25.579 59.766 25.513 59.854 25.546 59.956 25.546 59.965 25.513 60.066 25.538 60.167 25.546 60.206 25.498 60.297 25.498 60.403 25.505 60.368 25.589 60.397 25.614 60.498 25.531 60.563 25.440 60.569 25.432 60.674 25.416 60.769 25.391 60.862 25.384 60.968 25.358 61.061 25.318 61.162 25.277 61.254 25.262 61.349 25.295 61.450 25.386 61.462 25.378 61.567 25.461 61.597 25.552 61.609 25.643 61.613 25.726 61.625 25.809 61.627 25.892 61.648 25.975 61.650 26.067 61.749 26.150 61.760 26.240 61.782 26.256 61.775 26.339 61.795 26.422 61.854 26.447 61.965 26.488 62.068 26.537 62.180 26.529 62.248 26.602 62.239 26.686 62.290 26.726 62.393 26.742 62.493 26.757 62.601 26.772 62.701 26.813 62.804 26.813 62.901 26.806 63.007 26.798 63.112 26.881 63.160 26.972 63.174 27.055 63.253 27.146 63.228 27.186 63.224 27.260 63.244 27.285 63.266 27.285 63.275 27.293 63.294 27.293 63.303 27.308 63.297 27.391 63.211 27.407 63.115 27.407 63.018 27.374 62.906 27.399 62.812 27.483 62.776 27.566 62.779 27.649 62.800 27.740 62.795 27.823 62.789 27.914 62.792 27.997 62.766 28.088 62.740 28.179 62.735 28.311 62.753 28.394 62.756 28.402 62.659 28.394 62.599 28.442 62.499 28.526 62.413 28.574 62.321 28.599 62.218 28.631 62.125 28.647 62.020 28.680 61.927 28.746 61.838 28.895 61.663 28.978 61.588 29.061 61.542 29.127 61.513 29.143 61.506 29.226 61.479 29.299 61.391 29.382 61.345 29.465 61.327 29.572 61.244 29.663 61.158 29.746 61.071 29.829 60.996 29.995 60.823 30.003 60.814 30.052 60.872 30.142 60.957 30.158 60.969 30.241 61.062 30.264 61.075 30.431 61.241 30.514 61.325 30.605 61.409 30.688 61.493 30.779 61.576 30.862 61.658 30.953 61.744 30.994 61.752 31.077 61.758 31.084 61.769 31.110 61.782 31.208 61.801 31.291 61.768 31.375 61.727 31.383 61.728 31.466 61.725 31.481 61.710 31.512 61.658 31.520 61.590 31.536 61.494 31.543 61.397 31.551 61.341 31.566 61.236 31.574 61.139 31.582 61.073 31.598 61.007 31.605 60.901 31.688 60.817 31.771 60.784 31.855 60.809 31.946 60.798 32.029 60.795 32.120 60.793 32.160 60.782 32.243 60.816 32.334 60.842 32.418 60.818 32.508 60.786 32.592 60.763 32.675 60.729 32.758 60.708 32.849 60.676 32.932 60.652 33.023 60.630 33.107 60.587 33.197 60.574 33.280 60.580 33.447 60.729 33.530 60.832 33.621 60.907 33.671 60.849 33.679 60.751 33.679 60.703 33.671 60.692 33.702 60.588 33.768 60.501 33.851 60.486 33.942 60.533 34.008 60.515 34.091 60.501 34.174 60.488 34.198 60.483 34.288 60.509 34.371 60.592 34.427 60.711 34.484 60.822 34.650 60.715 34.675 60.829 34.749 60.943 34.832 60.949 34.915 61.023 34.998 61.029 35.089 61.059 35.097 61.071 35.189 61.101 35.272 61.071 35.363 61.073 35.447 61.151 35.538 61.202 35.621 61.249 35.705 61.250 35.796 61.201 35.879 61.229 35.971 61.220 36.054 61.160 36.070 61.104 36.161 61.175 36.252 61.205 36.335 61.175 36.419 61.136 36.502 61.136 36.594 61.148 36.677 61.177 36.743 61.143 36.743 60.366 36.809 60.280 36.900 60.221 36.984 60.139 37.067 60.078 37.141 59.993 37.141 59.984 37.166 59.889 37.215 59.799 37.240 59.694 37.263 59.598 37.296 59.504 37.380 59.422 37.463 59.370 37.547 59.370 37.630 59.299 37.622 59.196 37.678 59.107 37.719 59.005 37.752 58.911 37.760 58.802 37.737 58.696 37.770 58.593 37.737 58.484 37.721 58.379 37.754 58.306 37.803 58.215 37.886 58.165 37.894 58.066 37.925 57.971 37.941 57.944 37.956 57.836 37.989 57.742 38.005 57.644 38.012 57.544 38.020 57.435 38.069 57.344 38.152 57.362 38.243 57.292 38.327 57.238 38.335 57.138 38.294 57.092 38.286 56.979 38.286 56.942 38.311 56.846 38.360 56.754 38.352 56.734 38.319 56.625 38.344 56.519 38.329 56.414 38.245 56.316 38.162 56.330 38.154 56.217 38.170 56.140 38.154 56.026 38.170 55.928 38.185 55.829 38.193 55.720 38.185 55.617 38.170 55.512 38.121 55.391 38.080 55.281 38.048 55.225 38.006 55.115 37.923 55.009 37.882 54.941 37.799 54.823 37.716 54.787 37.632 54.800 37.549 54.704 37.533 54.599 37.500 54.491 37.451 54.371 37.427 54.265 37.419 54.162 37.427 54.053 37.434 53.953 37.434 53.913 37.427 53.921 37.335 53.934 37.252 53.967 37.168 53.978 37.085 54.011 37.077 53.990 36.993 54.032 36.910 54.025 36.885 53.910 36.892 53.810 36.900 53.711 36.949 53.610 36.957 53.722 36.957 53.823 36.982 53.939 36.990 53.830 36.982 53.727 36.974 53.615 36.974 53.515 36.958 53.401 36.943 53.297 36.928 53.193 36.920 53.161 36.896 53.067 36.871 52.961 36.846 52.856 36.823 52.750 36.807 52.637 36.784 52.531 36.776 52.429 36.751 52.314 36.725 52.208 36.695 52.102 36.679 51.988 36.679 51.887 36.704 51.791 36.720 51.684 36.735 51.586 36.759 51.480 36.766 51.453 36.782 51.355 36.798 51.248 36.813 51.141 36.844 51.046 36.894 50.945 36.943 50.853 36.984 50.759 37.033 50.667 37.057 50.613 37.098 50.510 37.172 50.422 37.230 50.332 37.314 50.289 37.397 50.233 37.481 50.147 37.504 50.041 37.511 50.011 37.519 49.954 37.527 49.854 37.543 49.789 37.551 49.680 37.558 49.580 37.566 49.470 37.591 49.364 37.632 49.270 37.673 49.176 37.739 49.087 37.830 49.013 37.913 48.999 37.997 48.955 38.080 48.939 38.172 48.925 38.255 48.911 38.346 48.896 38.430 48.892 38.513 48.907 38.513 48.827 38.488 48.754 38.464 48.648 38.488 48.621 38.554 48.574 38.627 48.485 38.676 48.382 38.717 48.288 38.800 48.231 38.841 48.127 38.897 48.035 38.981 48.068 39.029 48.179 39.045 48.293 39.101 48.343 39.192 48.257 39.258 48.167 39.342 48.140 39.398 48.252 39.439 48.371 39.472 48.346 39.621 48.168 39.713 48.072 39.769 47.980 39.745 47.956 39.738 47.844 39.664 47.728 39.616 47.618 39.558 47.496 39.509 47.386 39.509 47.376 39.417 47.270 39.385 47.153 39.336 47.095 39.245 47.039 39.229 46.935 39.188 46.826 39.105 46.762 39.021 46.646 38.938 46.564 38.946 46.525 38.961 46.416 38.954 46.313 38.903 46.202 38.903 46.183 38.936 46.077 38.944 45.977 38.952 45.876 38.983 45.770 39.008 45.672 39.008 45.663 39.023 45.606 39.039 45.506 39.055 45.459 39.138 45.414 39.222 45.365 39.247 45.258 39.303 45.165 39.387 45.119 39.470 45.020 39.518 44.957 39.602 44.933 39.676 44.842 39.709 44.797 39.765 44.704 39.815 44.610 39.742 44.496 39.717 44.501 39.633 44.469 39.542 44.455 39.458 44.423 39.451 44.381 39.451 44.177 39.425 44.061 ; #2406 10 16.303 95.024 16.310 95.052 16.326 95.063 16.301 95.024 ; #2407 10 8.003 32.994 7.988 33.003 7.905 33.096 7.905 33.191 7.856 33.294 7.856 33.389 7.849 33.483 7.808 33.577 7.792 33.680 7.709 33.774 7.669 33.868 7.578 33.961 7.495 34.035 7.412 34.033 7.328 34.096 7.255 34.189 7.171 34.226 7.088 34.299 7.073 34.393 7.017 34.487 6.943 34.504 6.870 34.568 6.837 34.671 6.754 34.745 6.663 34.772 6.580 34.788 6.496 34.844 6.405 34.851 6.322 34.896 6.231 34.950 6.148 34.977 6.082 34.967 5.992 34.994 5.918 35.039 5.827 35.093 5.728 35.157 5.662 35.259 5.579 35.258 5.496 35.321 5.562 35.416 5.562 35.519 5.514 35.613 5.506 35.707 5.473 35.801 5.399 35.783 5.316 35.818 5.233 35.762 4.943 35.758 4.860 35.841 4.769 35.924 4.746 35.932 4.672 35.932 4.599 36.026 4.599 36.195 4.606 36.241 4.591 36.250 4.591 36.476 4.583 36.694 4.583 36.871 4.525 37.023 4.442 37.117 4.351 37.265 4.152 37.564 4.069 37.696 3.887 37.976 3.804 38.039 3.778 38.150 3.763 38.300 3.755 38.423 3.763 38.535 3.778 38.658 3.695 38.787 3.672 38.927 3.680 39.031 3.687 39.057 3.639 39.169 3.631 39.263 3.623 39.298 3.623 39.421 3.567 39.524 3.659 39.562 3.840 39.752 4.022 39.829 4.088 39.958 4.088 39.967 4.194 40.146 4.219 40.250 4.276 40.353 4.324 40.486 4.382 40.627 4.438 40.739 4.364 40.833 4.281 40.927 4.190 41.009 4.107 41.092 4.099 41.187 4.099 41.384 4.125 41.479 4.140 41.582 4.148 41.677 4.107 41.771 4.132 41.855 4.216 41.893 4.289 41.988 4.320 42.023 4.353 42.118 4.353 42.325 4.368 42.419 4.392 42.514 4.407 42.617 4.415 42.681 4.415 42.690 4.438 42.785 4.521 42.869 4.604 42.898 4.688 42.963 4.771 43.058 4.836 43.153 5.003 43.530 5.028 43.625 5.043 43.729 5.059 43.824 5.100 43.937 5.092 44.040 5.084 44.134 5.084 44.237 5.076 44.341 5.076 44.358 5.069 44.461 5.061 44.564 5.053 44.668 5.053 44.771 5.045 44.874 5.102 44.939 5.134 44.968 5.233 45.054 5.241 45.063 5.324 45.140 5.423 45.236 5.514 45.313 5.612 45.410 5.620 45.419 5.711 45.495 5.802 45.581 5.901 45.667 5.999 45.764 6.090 45.849 6.181 45.926 6.272 46.023 6.313 46.061 6.321 46.070 6.419 46.167 6.518 46.264 6.609 46.361 6.707 46.457 6.806 46.554 6.897 46.640 6.996 46.737 7.094 46.834 7.177 46.920 7.276 47.017 7.367 47.122 7.466 47.219 7.557 47.325 7.655 47.422 7.738 47.507 7.829 47.613 7.912 47.698 7.928 47.717 8.027 47.813 8.110 47.899 8.110 46.918 8.117 46.909 8.133 46.863 8.166 46.760 8.199 46.658 8.230 46.555 8.262 46.452 8.303 46.358 8.336 46.255 8.369 46.153 8.402 46.050 8.433 45.947 8.466 45.845 8.499 45.742 8.539 45.639 8.572 45.536 8.605 45.433 8.636 45.331 8.669 45.237 8.735 45.032 8.775 44.929 8.808 44.826 8.839 44.723 8.872 44.620 8.887 44.574 8.919 44.463 8.951 44.369 8.984 44.266 9.017 44.163 9.050 44.060 9.081 43.958 9.164 43.856 9.346 43.653 9.437 43.560 9.445 43.456 9.502 43.363 9.586 43.336 9.669 43.274 9.685 43.274 9.775 43.192 9.859 43.177 9.942 43.160 9.982 43.058 10.066 42.977 10.074 42.977 10.164 42.945 10.230 42.853 10.313 42.781 10.396 42.755 10.480 42.740 10.571 42.688 10.654 42.625 10.679 42.617 10.762 42.675 10.853 42.707 10.919 42.773 11.002 42.861 11.075 42.881 11.068 42.785 11.141 42.693 11.157 42.599 11.165 42.590 11.157 42.555 11.131 42.450 11.075 42.353 11.083 42.258 11.058 42.194 11.066 42.099 11.025 41.994 11.002 41.898 11.035 41.805 11.101 41.752 11.340 41.760 11.431 41.745 11.530 41.722 11.613 41.725 11.696 41.746 11.788 41.778 11.820 41.805 11.894 41.911 11.985 41.972 11.993 41.972 12.076 42.031 12.174 42.109 12.265 42.158 12.356 42.237 12.455 42.287 12.528 42.345 12.612 42.263 12.635 42.256 12.685 42.219 12.776 42.168 12.849 42.075 12.890 41.972 12.964 41.880 13.054 41.837 13.138 41.802 13.153 41.794 13.236 41.750 13.319 41.669 13.393 41.577 13.459 41.475 13.517 41.381 13.583 41.288 13.641 41.187 13.724 41.134 13.807 41.090 13.898 41.036 13.981 40.974 14.147 40.809 14.147 40.801 14.213 40.708 14.237 40.604 14.262 40.510 14.310 40.408 14.384 40.315 14.467 40.222 14.482 40.185 14.507 40.082 14.500 39.987 14.507 39.949 14.474 39.852 14.540 39.759 14.533 39.664 14.548 39.569 14.571 39.466 14.540 39.370 14.525 39.314 14.517 39.218 14.476 39.179 14.525 39.163 14.608 39.139 14.633 39.111 14.674 39.074 14.697 38.980 14.674 38.971 14.591 38.930 14.533 38.833 14.509 38.738 14.502 38.702 14.486 38.597 14.471 38.501 14.471 38.406 14.554 38.314 14.720 38.223 14.728 38.128 14.753 38.034 14.836 37.941 14.927 37.868 14.844 37.837 14.761 37.797 14.678 37.768 14.670 37.758 14.571 37.718 14.488 37.687 14.405 37.647 14.322 37.618 14.239 37.577 14.155 37.546 14.147 37.537 14.231 37.475 14.322 37.403 14.405 37.359 14.438 37.322 14.494 37.228 14.478 37.132 14.312 36.997 14.352 36.894 14.368 36.799 14.368 36.704 14.360 36.620 14.320 36.523 14.304 36.523 14.239 36.503 14.155 36.474 14.072 36.454 13.974 36.442 13.882 36.469 13.799 36.428 13.709 36.397 13.625 36.386 13.534 36.319 13.451 36.259 13.360 36.221 13.277 36.201 13.194 36.181 13.095 36.149 13.004 36.138 12.931 36.154 12.847 36.142 12.764 36.140 12.749 36.102 12.774 35.999 12.759 35.903 12.743 35.799 12.728 35.694 12.678 35.693 12.594 35.607 12.345 35.459 12.246 35.418 12.162 35.352 12.079 35.332 11.996 35.266 11.955 35.218 11.915 35.122 11.832 35.073 11.741 35.070 11.658 35.097 11.575 35.077 11.491 35.048 11.400 35.009 11.327 34.969 11.286 34.986 11.271 35.003 11.222 35.001 11.199 34.992 11.109 34.972 11.025 34.943 10.934 34.976 10.752 34.781 10.801 34.783 10.884 34.701 10.958 34.608 10.892 34.503 10.808 34.425 10.725 34.377 10.642 34.309 10.627 34.299 10.611 34.299 10.528 34.314 10.437 34.329 10.354 34.345 10.255 34.342 10.172 34.305 10.074 34.227 10.066 34.227 9.974 34.207 9.884 34.169 9.801 34.139 9.717 34.120 9.619 34.100 9.536 34.108 9.445 34.116 9.361 34.114 9.278 34.121 9.188 34.129 9.104 34.137 9.005 34.144 8.922 34.142 8.839 34.133 8.665 34.130 8.616 34.094 8.533 33.998 8.518 33.903 8.469 33.799 8.454 33.790 8.503 33.696 8.535 33.592 8.543 33.498 8.520 33.403 8.543 33.308 8.520 33.214 8.487 33.185 8.396 33.183 8.313 33.190 8.230 33.198 8.172 33.122 8.089 33.046 8.065 33.037 7.974 33.010 ; #2408 11 60.252 22.256 60.289 22.261 60.315 22.241 60.315 22.123 60.343 22.245 60.334 22.362 60.326 22.383 60.309 22.381 60.291 22.261 60.226 22.300 60.255 22.257 ; #2409 11 20.851 -17.118 20.934 -17.131 21.017 -17.135 21.108 -17.104 21.191 -17.079 21.282 -17.055 21.365 -17.041 21.422 -16.939 21.422 -13.073 21.603 -13.081 21.687 -13.093 21.944 -13.104 22.027 -13.117 22.368 -13.132 22.451 -13.144 22.534 -13.148 22.633 -13.161 22.716 -13.182 22.799 -13.204 22.882 -13.199 22.973 -13.173 23.056 -13.101 23.147 -12.999 23.279 -12.775 23.345 -12.673 23.352 -12.673 23.375 -12.568 23.383 -12.454 23.433 -12.342 23.474 -12.247 23.505 -12.133 23.521 -12.078 23.644 -12.074 23.768 -12.079 23.884 -12.075 23.975 -12.079 24.066 -12.073 24.205 -12.079 24.387 -12.077 24.494 -12.073 24.685 -12.081 24.776 -12.076 24.859 -12.079 24.968 -12.075 25.059 -12.080 25.233 -12.081 25.356 -12.079 25.472 -12.086 25.596 -12.085 25.796 -12.087 25.803 -12.087 25.902 -12.084 26.051 -12.084 26.051 -8.753 26.150 -8.758 26.248 -8.754 26.347 -8.759 26.445 -8.755 26.545 -8.760 26.643 -8.756 26.742 -8.761 26.840 -8.756 26.939 -8.761 27.038 -8.757 27.136 -8.762 27.235 -8.758 27.326 -8.763 27.434 -8.759 27.533 -8.764 27.632 -8.760 27.697 -8.763 27.697 -13.270 27.614 -13.303 27.523 -13.327 27.440 -13.370 27.357 -13.403 27.274 -13.464 27.241 -13.480 27.074 -13.528 26.991 -13.559 26.908 -13.583 26.817 -13.625 26.734 -13.697 26.668 -13.790 26.620 -13.885 26.564 -13.978 26.505 -14.081 26.473 -14.176 26.465 -14.273 26.374 -14.332 26.318 -14.435 26.252 -14.528 26.169 -14.570 26.086 -14.574 26.045 -14.572 25.962 -14.602 25.879 -14.664 25.788 -14.715 25.705 -14.739 25.614 -14.760 25.531 -14.822 25.448 -14.864 25.364 -14.894 25.273 -14.907 25.183 -14.909 25.099 -14.895 25.051 -14.901 24.968 -14.896 24.877 -14.930 24.793 -14.944 24.710 -14.997 24.627 -15.078 24.562 -15.172 24.505 -15.266 24.422 -15.330 24.339 -15.412 24.265 -15.505 24.182 -15.586 24.099 -15.659 24.058 -15.734 24.002 -15.836 23.919 -15.929 23.828 -15.990 23.745 -16.033 23.836 -15.961 23.902 -15.868 23.819 -15.837 23.728 -15.897 23.644 -15.970 23.561 -16.022 23.470 -16.046 23.387 -16.119 23.304 -16.162 23.221 -16.196 23.130 -16.268 23.047 -16.217 22.989 -16.250 22.940 -16.344 22.857 -16.369 22.766 -16.394 22.683 -16.399 22.609 -16.433 22.526 -16.485 22.443 -16.508 22.360 -16.609 22.360 -16.706 22.269 -16.798 22.186 -16.859 22.019 -16.947 21.936 -16.980 21.862 -17.004 21.764 -16.999 21.681 -17.012 21.597 -17.026 21.514 -17.040 21.424 -17.053 21.400 -17.061 21.309 -17.065 21.226 -17.070 21.143 -17.093 21.052 -17.097 20.969 -17.111 20.886 -17.106 20.837 -17.075 ; #2410 11 69.108 20.651 69.090 20.791 69.063 20.890 69.063 20.914 69.005 20.919 68.958 21.079 68.910 21.215 68.854 21.337 68.806 21.473 68.750 21.619 68.721 21.745 68.674 21.892 68.626 22.027 68.570 22.149 68.570 22.313 68.543 22.373 68.533 22.501 68.515 22.627 68.486 22.752 68.459 22.890 68.421 23.025 68.344 23.154 68.247 23.192 68.247 23.344 68.150 23.431 68.103 23.564 68.047 23.684 68.020 23.669 67.961 23.507 67.855 23.515 67.758 23.524 67.661 23.486 67.555 23.517 67.555 23.645 67.537 23.782 67.431 23.789 67.384 23.655 67.287 23.578 67.201 23.704 67.095 23.815 66.989 23.964 66.933 24.017 66.806 23.909 66.709 23.895 66.613 23.768 66.507 23.702 66.401 23.686 66.294 23.831 66.239 23.961 66.124 24.028 66.027 24.123 65.950 24.162 65.932 24.159 65.923 24.169 65.893 24.188 65.911 24.278 65.873 24.409 65.882 24.536 65.900 24.562 65.871 24.558 65.806 24.597 65.806 24.609 65.738 24.723 65.756 24.862 65.717 24.981 65.679 25.100 65.641 25.144 65.614 25.264 65.517 25.346 65.420 25.269 65.334 25.290 65.237 25.228 65.199 25.346 65.102 25.465 65.093 25.441 65.055 25.412 65.017 25.281 64.923 25.350 64.951 25.230 65.005 25.114 64.988 24.987 64.979 24.975 64.971 24.826 64.934 24.696 64.833 24.572 64.740 24.411 64.639 24.373 64.577 24.240 64.540 24.111 64.447 24.000 64.374 23.855 64.282 23.744 64.264 23.693 64.171 23.631 64.163 23.533 64.145 23.408 64.045 23.428 64.016 23.290 63.991 23.164 63.991 23.092 63.898 23.020 63.853 22.891 63.760 22.879 63.760 22.842 63.823 22.716 63.786 22.589 63.685 22.528 63.593 22.444 63.646 22.329 63.553 22.440 63.599 22.323 63.498 22.358 63.444 22.423 63.427 22.361 63.381 22.233 63.381 22.111 63.344 21.973 63.381 21.955 63.344 21.828 63.344 21.731 63.418 21.607 63.364 21.563 63.263 21.589 63.170 21.685 63.187 21.555 63.095 21.521 62.994 21.387 62.957 21.261 62.864 21.215 62.763 21.121 62.746 21.240 62.653 21.182 62.552 21.267 62.543 21.311 62.535 21.321 62.443 21.381 62.406 21.410 62.313 21.378 62.212 21.344 62.120 21.297 62.094 21.330 62.048 21.446 61.956 21.506 61.863 21.601 61.762 21.623 61.680 21.720 61.706 21.602 61.714 21.534 61.622 21.487 61.529 21.546 61.437 21.572 61.336 21.524 61.243 21.480 61.217 21.346 61.125 21.394 61.032 21.417 60.939 21.396 60.847 21.480 60.745 21.446 60.728 21.563 60.728 21.575 60.711 21.583 60.702 21.560 60.657 21.674 60.750 21.685 60.758 21.722 60.758 21.841 60.666 21.830 60.666 21.960 60.601 22.046 60.575 22.162 60.539 22.277 60.539 22.429 60.530 22.464 60.521 22.556 60.429 22.501 60.375 22.599 60.375 22.729 60.412 22.852 60.457 22.976 60.493 23.110 60.392 22.979 60.300 22.898 60.255 23.011 60.226 23.008 60.181 23.131 60.181 23.249 60.145 23.126 60.136 23.194 60.136 23.158 60.035 23.168 59.998 23.058 59.946 22.923 59.955 23.053 59.963 23.172 60.043 23.300 60.106 23.438 60.115 23.439 60.132 23.452 60.132 23.499 60.115 23.486 60.058 23.349 60.050 23.477 60.067 23.598 60.067 23.727 60.129 23.864 60.129 23.922 60.147 24.043 60.175 24.176 60.183 24.296 60.129 24.299 60.129 24.497 60.166 24.538 60.267 24.599 60.267 24.740 60.312 24.865 60.330 24.986 60.338 25.106 60.384 25.231 60.392 25.362 60.384 25.480 60.457 25.620 60.502 25.663 60.410 25.671 60.364 25.782 60.373 25.902 60.466 25.873 60.502 26.008 60.595 25.964 60.550 26.076 60.532 26.204 60.504 26.318 60.550 26.444 60.604 26.474 60.569 26.540 60.569 26.659 60.595 26.782 60.604 26.914 60.640 27.039 60.685 27.177 60.685 27.199 60.640 27.262 60.623 27.378 60.631 27.510 60.604 27.636 60.612 27.755 60.666 27.787 60.720 27.868 60.782 27.985 60.864 28.118 60.901 28.183 60.982 28.328 60.991 28.352 61.064 28.485 61.073 28.497 61.082 28.557 61.163 28.691 61.226 28.822 61.234 28.846 61.243 28.870 61.297 29.000 61.342 29.128 61.415 29.262 61.480 29.343 61.562 29.479 61.588 29.496 61.605 29.521 61.613 29.593 61.687 29.727 61.779 29.840 61.844 29.973 61.889 30.015 61.962 30.125 61.971 30.127 62.005 30.182 62.098 30.320 62.171 30.456 62.272 30.597 62.317 30.689 62.382 30.823 62.475 30.963 62.548 31.111 62.640 31.252 62.733 31.320 62.826 31.376 62.918 31.441 63.020 31.548 63.101 31.458 63.166 31.350 63.228 31.230 63.321 31.190 63.358 31.064 63.394 30.949 63.456 30.829 63.510 30.718 63.527 30.600 63.553 30.483 63.627 30.364 63.663 30.249 63.689 30.183 63.819 29.964 63.819 29.952 63.827 29.966 63.844 30.007 63.870 30.145 63.962 30.287 64.036 30.425 64.128 30.568 64.230 30.517 64.322 30.488 64.368 30.374 64.404 30.258 64.421 30.127 64.486 30.017 64.579 29.975 64.587 29.953 64.650 29.955 64.658 29.994 64.740 30.158 64.833 30.079 64.850 29.958 64.841 29.847 64.869 29.717 64.951 29.609 65.045 29.568 65.142 29.687 65.181 29.820 65.278 29.742 65.278 29.618 65.343 29.609 65.440 29.701 65.546 29.701 65.643 29.806 65.699 29.693 65.717 29.822 65.744 29.965 65.754 30.092 65.851 30.066 65.916 30.031 66.013 29.965 66.031 29.946 66.128 29.905 66.225 29.801 66.311 29.694 66.408 29.589 66.505 29.536 66.590 29.466 66.687 29.360 66.764 29.291 66.829 29.179 66.915 29.070 67.012 29.066 67.077 29.128 67.174 29.261 67.280 29.396 67.377 29.544 67.445 29.687 67.530 29.845 67.627 29.941 67.751 29.968 67.781 29.900 67.828 29.771 67.884 29.631 67.981 29.512 68.087 29.383 68.135 29.253 68.164 29.130 68.182 29.006 68.220 28.756 68.326 28.599 68.423 28.532 68.529 28.453 68.605 28.468 68.712 28.620 68.809 28.742 68.906 28.672 68.906 28.531 68.914 28.403 68.924 28.444 68.951 28.552 68.989 28.702 69.007 28.847 69.036 28.984 69.045 28.962 69.122 28.812 69.237 28.836 69.314 29.019 69.438 29.253 69.564 29.231 69.679 29.126 69.688 29.128 69.724 28.889 69.762 28.636 69.859 28.354 69.898 28.143 69.995 27.992 70.085 27.869 70.066 27.721 70.056 27.575 70.006 27.432 69.997 27.406 69.988 27.393 69.931 27.238 69.913 27.090 69.931 26.963 69.949 26.835 69.949 26.692 69.931 26.557 69.846 26.410 69.769 26.265 69.722 26.113 69.665 25.960 69.647 25.981 69.550 25.875 69.444 25.832 69.408 25.861 69.311 25.768 69.205 25.737 69.108 25.744 69.003 25.737 68.917 25.592 68.926 25.452 68.917 25.399 68.881 25.263 68.784 25.159 68.687 25.131 68.669 24.987 68.612 24.926 68.651 24.818 68.707 24.698 68.725 24.559 68.743 24.409 68.770 24.260 68.829 24.100 68.856 23.975 68.838 23.806 68.741 23.689 68.732 23.495 68.694 23.360 68.664 23.202 68.721 22.991 68.721 22.861 68.768 22.609 68.759 22.431 68.885 22.333 68.982 22.193 69.048 22.060 69.095 21.979 69.124 21.932 69.298 21.670 69.316 21.503 69.325 21.334 69.210 21.059 69.124 21.179 69.086 21.008 69.133 20.793 69.068 20.643 ; #2411 11 20.238 58.686 20.329 58.668 20.412 58.676 20.495 58.739 20.586 58.823 20.669 58.878 20.752 58.912 20.669 58.934 20.578 58.981 20.512 58.879 20.429 58.834 20.346 58.808 20.263 58.704 20.239 58.685 ; #2412 11 49.238 87.936 49.152 87.958 49.067 88.001 48.982 87.872 48.897 87.937 48.837 88.015 48.830 88.119 48.762 88.202 48.677 88.084 48.617 88.162 48.594 88.258 48.577 88.367 48.544 88.458 48.486 88.537 48.478 88.650 48.385 88.698 48.300 88.717 48.259 88.814 48.217 88.900 48.201 88.999 48.167 89.100 48.100 89.172 48.074 89.266 48.074 89.374 48.133 89.512 48.118 89.621 48.102 89.721 48.017 89.784 47.975 89.870 47.916 89.947 47.923 90.068 47.981 90.118 47.931 90.209 47.846 90.228 47.804 90.313 47.778 90.407 47.737 90.493 47.652 90.513 47.576 90.592 47.491 90.600 47.406 90.608 47.321 90.671 47.245 90.738 47.170 90.806 47.095 90.884 47.079 90.983 46.993 91.055 46.908 91.073 46.849 91.148 46.763 91.146 46.678 91.186 46.500 91.094 46.407 91.035 46.321 91.064 46.236 91.113 46.220 91.124 46.197 91.132 46.103 91.113 46.018 90.998 45.933 90.913 45.866 90.846 45.780 90.812 45.687 90.774 45.594 90.768 45.586 90.784 45.536 90.864 45.451 90.904 45.299 91.037 45.314 91.151 45.289 91.252 45.239 91.332 45.223 91.429 45.257 91.528 45.190 91.609 45.181 91.710 45.181 91.815 45.173 91.926 45.173 92.031 45.181 92.151 45.148 92.239 45.122 92.340 45.114 92.441 45.106 92.543 45.122 92.656 45.130 92.776 45.138 92.885 45.138 92.991 45.112 93.083 45.112 93.197 45.096 93.295 45.096 93.305 45.088 93.406 45.063 93.498 45.063 93.612 45.029 93.710 44.987 93.794 44.921 93.867 44.854 93.951 44.780 94.040 44.772 94.046 44.764 94.168 44.764 94.292 44.706 94.379 44.631 94.448 44.616 94.556 44.574 94.641 44.533 94.727 44.467 94.800 44.441 94.902 44.416 95.005 44.385 95.094 44.377 95.183 44.393 95.306 44.400 95.414 44.385 95.512 44.300 95.452 44.216 95.452 44.132 95.444 44.117 95.541 44.101 95.648 44.017 95.712 43.917 95.746 43.749 95.833 43.657 95.881 43.573 95.945 43.489 95.977 43.404 95.997 43.330 96.065 43.273 96.152 43.097 96.379 43.048 96.469 42.949 96.484 42.856 96.500 42.864 96.617 42.872 96.725 42.880 96.842 42.888 96.950 42.888 97.064 42.895 97.172 42.921 97.298 42.913 97.399 42.897 97.504 42.882 97.601 42.874 97.701 42.843 97.894 42.835 97.994 42.819 98.090 42.804 98.186 42.788 98.283 42.780 98.392 42.772 98.502 42.772 98.616 42.765 98.725 42.757 98.835 42.749 98.945 42.749 99.058 42.741 99.178 42.726 99.397 42.718 99.507 42.710 99.617 42.776 99.909 42.810 100.039 42.833 100.121 42.817 100.195 42.810 100.315 42.794 100.515 42.786 100.625 42.761 100.767 42.737 100.931 42.712 101.073 42.704 101.202 42.688 101.380 42.696 101.444 42.696 101.618 42.681 101.724 42.657 101.825 42.506 101.975 42.366 102.110 42.340 102.211 42.299 102.375 42.266 102.503 42.250 102.639 42.217 102.786 42.201 102.951 42.176 103.114 42.143 103.282 42.102 103.364 42.070 103.461 42.044 103.552 42.011 103.647 41.955 103.772 41.947 103.963 41.962 104.084 41.970 104.201 41.986 104.313 42.001 104.434 42.017 104.546 41.968 104.633 41.884 104.630 41.818 104.698 41.810 104.807 41.810 105.024 41.753 105.107 41.820 105.211 41.912 105.342 41.919 105.385 42.037 105.655 42.085 105.794 42.135 105.933 42.176 106.059 42.217 106.194 42.266 106.334 42.316 106.474 42.357 106.610 42.407 106.750 42.448 106.876 42.463 107.111 42.489 107.238 42.504 107.360 42.545 107.590 42.561 107.763 42.561 107.877 42.553 107.986 42.569 108.108 42.584 108.220 42.610 108.338 42.584 108.438 42.584 108.551 42.577 108.660 42.569 108.760 42.553 108.855 42.553 108.959 42.604 109.091 42.596 109.210 42.588 109.319 42.596 109.427 42.596 109.531 42.604 109.545 42.645 109.681 42.720 109.836 42.770 109.969 42.786 110.091 42.786 110.195 42.853 110.337 42.894 110.464 42.986 110.556 43.070 110.696 43.162 110.768 43.254 110.860 43.338 110.950 43.430 111.043 43.514 111.205 43.547 111.328 43.588 111.466 43.622 111.495 43.629 111.603 43.713 111.744 43.806 111.847 43.806 111.952 43.821 111.981 43.821 112.000 43.921 112.038 44.005 111.972 44.089 111.916 44.138 111.839 44.171 111.744 44.238 111.667 44.313 111.595 44.397 111.570 44.445 111.484 44.537 111.466 44.622 111.534 44.706 111.592 44.790 111.601 44.890 111.649 44.974 111.707 45.059 111.760 45.118 111.807 45.186 111.966 45.219 112.093 45.195 112.183 45.195 112.289 45.179 112.490 45.130 112.572 45.122 112.577 45.046 112.644 45.021 112.742 44.989 112.837 44.974 112.933 44.958 113.030 44.933 113.129 44.925 113.240 44.917 113.350 44.917 113.456 44.901 113.551 44.886 113.658 44.970 113.812 45.055 113.937 45.063 114.057 45.130 114.175 45.223 114.288 45.308 114.428 45.394 114.526 45.479 114.582 45.564 114.732 45.556 114.842 45.531 114.931 45.523 115.031 45.538 115.167 45.538 115.378 45.546 115.489 45.546 115.499 45.570 115.621 45.612 115.754 45.697 115.863 45.782 116.026 45.816 116.155 45.901 116.296 45.927 116.323 46.020 116.280 46.105 116.328 46.199 116.391 46.284 116.490 46.377 116.616 46.462 116.726 46.496 116.864 46.512 116.981 46.504 117.092 46.496 117.193 46.504 117.315 46.496 117.319 46.589 117.445 46.682 117.489 46.734 117.631 46.674 117.716 46.658 117.821 46.744 117.964 46.767 118.087 46.809 118.233 46.868 118.380 46.843 118.479 46.827 118.574 46.843 118.692 46.819 118.782 46.905 118.913 46.853 118.983 46.837 119.089 46.795 119.166 46.787 119.277 46.754 119.361 46.770 119.478 46.770 119.594 46.761 119.695 46.746 119.800 46.803 119.934 46.896 119.958 46.982 119.986 47.057 119.922 47.124 119.863 47.210 119.839 47.285 119.785 47.343 119.719 47.384 119.641 47.434 119.569 47.459 119.535 47.501 119.457 47.542 119.369 47.542 119.359 47.628 119.302 47.652 119.201 47.745 119.183 47.802 119.106 47.836 119.012 47.860 118.912 47.894 118.818 47.953 118.752 48.088 118.612 48.112 118.469 48.120 118.367 48.143 118.266 48.143 118.158 48.120 118.034 48.120 118.015 48.128 117.958 48.086 117.812 48.052 117.768 47.967 117.669 47.882 117.557 47.866 117.537 47.781 117.383 47.838 117.306 47.888 117.212 47.937 117.130 47.963 117.030 47.997 116.936 47.989 116.813 47.973 116.685 47.957 116.557 47.965 116.455 47.981 116.349 47.949 116.220 47.864 116.097 47.822 115.961 47.872 115.888 47.913 115.809 47.963 115.736 48.012 115.662 48.106 115.630 48.157 115.612 48.199 115.609 48.292 115.715 48.349 115.861 48.443 115.883 48.528 115.878 48.613 115.862 48.706 115.935 48.877 116.092 48.970 116.104 49.063 116.157 49.250 116.286 49.343 116.340 49.529 116.469 49.614 116.518 49.793 116.642 49.886 116.696 49.920 116.720 49.953 116.690 50.021 116.631 50.037 116.535 50.054 116.430 50.088 116.349 50.096 116.315 50.112 116.209 50.086 116.079 50.070 116.045 49.967 115.750 49.975 115.692 49.991 115.594 49.991 115.486 50.007 115.378 50.041 115.297 50.084 115.222 50.135 115.144 50.195 115.083 50.246 115.027 50.280 114.945 50.315 114.864 50.331 114.758 50.339 114.655 50.323 114.523 50.339 114.427 50.355 114.321 50.313 114.179 50.236 114.009 50.167 113.845 50.132 113.710 50.082 113.573 49.995 113.420 49.910 113.254 49.824 113.176 49.740 113.119 49.646 112.971 49.589 112.814 49.589 112.706 49.613 112.649 49.613 112.616 49.620 112.512 49.579 112.366 49.537 112.230 49.513 112.105 49.487 111.970 49.487 111.862 49.495 111.748 49.454 111.613 49.446 111.489 49.454 111.386 49.396 111.240 49.339 111.094 49.264 110.936 49.238 110.811 49.238 110.703 49.279 110.612 49.295 110.514 49.319 110.421 49.261 110.266 49.277 110.157 49.293 110.060 49.293 109.932 49.309 109.834 49.325 109.725 49.317 109.602 49.367 109.526 49.392 109.434 49.434 109.343 49.442 109.230 49.418 109.106 49.442 109.013 49.426 108.907 49.434 108.794 49.418 108.675 49.426 108.562 49.476 108.485 49.517 108.403 49.575 108.332 49.626 108.247 49.642 108.148 49.743 107.996 49.828 108.009 49.922 107.983 50.007 108.006 50.015 108.002 50.032 107.894 50.023 107.856 50.050 107.779 50.050 107.443 50.074 107.387 50.074 107.278 50.108 107.195 50.159 107.114 50.201 107.092 50.278 107.029 50.313 106.946 50.363 106.874 50.398 106.780 50.414 106.574 50.405 106.548 50.405 106.504 50.379 106.376 50.379 106.267 50.405 106.167 50.405 106.124 50.440 106.119 50.448 106.115 50.483 106.021 50.490 105.917 50.499 105.814 50.490 105.689 50.517 105.589 50.533 105.492 50.549 105.394 50.480 105.225 50.454 105.097 50.470 105.055 50.444 104.927 50.428 104.796 50.385 104.656 50.385 104.547 50.317 104.379 50.230 104.208 50.213 104.087 50.230 103.980 50.264 103.895 50.203 103.743 50.219 103.635 50.254 103.541 50.270 103.444 50.270 103.335 50.357 103.300 50.373 103.193 50.365 103.078 50.373 102.975 50.416 102.885 50.458 102.806 50.466 102.693 50.586 102.559 50.602 102.450 50.644 102.371 50.731 102.379 50.818 102.376 50.877 102.299 50.964 102.327 51.059 102.320 51.136 102.265 51.231 102.255 51.318 102.263 51.413 102.243 51.445 102.156 51.461 102.047 51.469 101.943 51.504 101.847 51.512 101.743 51.538 101.652 51.512 101.523 51.528 101.414 51.581 101.341 51.581 101.231 51.623 101.141 51.648 101.037 51.682 100.951 51.690 100.936 51.716 100.834 51.751 100.748 51.775 100.645 51.775 100.314 51.791 100.204 51.783 100.089 51.799 100.023 51.850 99.937 51.900 99.862 51.935 99.776 51.943 99.661 51.959 99.561 51.975 99.452 52.018 99.371 52.052 99.284 52.076 99.190 52.103 99.098 52.172 99.025 52.172 98.994 52.085 98.954 51.902 98.830 51.815 98.707 51.791 98.580 51.765 98.452 51.678 98.372 51.583 98.328 51.496 98.313 51.504 98.254 51.496 98.138 51.453 98.110 51.358 98.025 51.271 98.031 51.184 97.992 51.089 97.939 51.012 97.907 50.952 97.976 50.901 98.062 50.814 98.024 50.737 98.082 50.650 98.133 50.608 98.223 50.600 98.327 50.505 98.372 50.470 98.349 50.383 98.344 50.296 98.296 50.209 98.237 50.123 98.169 50.036 98.002 49.967 97.864 49.991 97.758 49.906 97.637 49.813 97.497 49.771 97.355 49.779 97.251 49.839 97.166 49.880 97.081 49.930 97.001 49.937 96.896 49.946 96.783 49.896 96.635 49.953 96.559 49.922 96.413 49.972 96.332 50.005 96.243 50.029 96.139 50.029 96.086 49.995 96.031 50.029 95.944 50.037 95.929 50.029 95.816 49.979 95.699 49.922 95.558 49.937 95.524 49.972 95.480 49.987 95.380 49.987 95.153 50.029 95.060 50.045 95.037 50.062 95.038 50.070 95.023 50.078 94.952 50.086 94.848 50.052 94.717 50.094 94.636 50.163 94.561 50.205 94.480 50.274 94.415 50.361 94.407 50.456 94.392 50.551 94.367 50.604 94.291 50.604 94.073 50.612 93.969 50.604 93.844 50.612 93.730 50.612 93.611 50.646 93.524 50.630 93.404 50.638 93.290 50.622 93.160 50.656 93.073 50.691 93.031 50.733 93.047 50.828 92.998 50.751 92.840 50.717 92.709 50.786 92.633 50.810 92.539 50.863 92.508 50.879 92.399 50.792 92.365 50.715 92.243 50.715 92.123 50.723 92.108 50.739 92.009 50.723 91.879 50.664 91.733 50.577 91.606 50.490 91.498 50.499 91.394 50.464 91.254 50.456 91.139 50.387 90.988 50.327 90.842 50.240 90.758 50.240 90.649 50.224 90.520 50.189 90.390 50.139 90.251 50.112 90.115 50.025 90.073 50.017 90.068 50.001 90.048 49.975 89.938 49.975 89.830 49.933 89.699 49.908 89.706 49.823 89.705 49.747 89.775 49.714 89.649 49.672 89.508 49.638 89.480 49.646 89.377 49.638 89.254 49.553 89.273 49.511 89.143 49.527 89.043 49.561 88.942 49.476 88.908 49.484 88.804 49.535 88.712 49.509 88.590 49.509 88.481 49.502 88.369 49.452 88.236 49.367 88.225 49.274 88.168 49.216 88.030 49.208 87.908 ; #2413 11 -8.684 157.707 -8.653 157.609 -8.620 157.701 -8.686 157.707 ; #2414 11 -7.347 157.683 -7.307 157.585 -7.284 157.677 -7.349 157.683 ; #2415 11 -8.434 159.773 -8.378 159.673 -8.295 159.627 -8.270 159.728 -8.353 159.736 -8.436 159.773 ; #2416 11 -9.089 160.327 -9.005 160.385 -9.013 160.489 -9.054 160.390 -9.087 160.327 ; #2417 11 -9.684 161.628 -9.601 161.573 -9.553 161.474 -9.462 161.473 -9.379 161.474 -9.296 161.457 -9.386 161.550 -9.470 161.604 -9.553 161.630 -9.644 161.639 -9.684 161.625 ; #2418 11 12.087 -61.766 12.170 -61.828 12.254 -61.799 12.319 -61.700 12.228 -61.675 12.145 -61.697 12.089 -61.768 ; #2419 11 19.092 52.076 19.044 52.091 17.440 52.823 17.400 52.782 17.392 52.791 17.384 52.855 16.786 53.165 16.779 53.232 16.811 53.329 16.827 53.426 16.852 53.523 16.845 53.618 16.910 53.728 16.958 53.827 16.984 53.924 17.009 54.021 17.092 54.092 17.100 54.168 17.115 54.264 17.123 54.361 17.123 54.456 17.131 54.561 17.123 54.665 17.057 54.756 17.042 54.851 17.082 54.958 17.108 55.055 17.181 55.156 17.264 55.238 17.347 55.290 17.438 55.315 17.522 55.330 17.605 55.260 17.695 55.295 17.769 55.396 17.860 55.441 17.943 55.542 17.968 55.640 17.984 55.746 17.992 55.842 17.992 55.938 18.017 56.036 18.017 56.158 18.042 56.256 18.026 56.359 18.109 56.450 18.193 56.552 18.276 56.576 18.367 56.620 18.533 56.668 18.624 56.666 18.707 56.710 18.790 56.792 18.831 56.831 18.887 56.931 18.928 57.039 18.961 57.137 18.984 57.235 19.009 57.332 19.017 57.438 19.033 57.544 19.025 57.639 19.025 57.735 19.065 57.834 19.148 57.832 19.240 57.830 19.322 57.769 19.405 57.775 19.489 57.791 19.572 57.741 19.663 57.730 19.746 57.736 19.746 57.727 19.829 57.716 19.920 57.770 20.003 57.805 20.077 57.830 20.160 57.855 20.251 57.834 20.334 57.870 20.391 57.972 20.474 57.970 20.539 58.081 20.622 58.098 20.671 58.198 20.588 58.256 20.497 58.247 20.456 58.348 20.431 58.442 20.464 58.484 20.547 58.547 20.630 58.573 20.713 58.598 20.805 58.662 20.888 58.688 20.971 58.760 21.054 58.806 21.145 58.870 21.228 58.945 21.311 59.038 21.394 59.130 21.460 59.233 21.509 59.334 21.592 59.380 21.675 59.443 21.758 59.480 21.849 59.506 21.940 59.582 22.023 59.655 22.107 59.681 22.190 59.726 22.280 59.803 22.314 59.806 22.396 59.822 22.480 59.830 22.563 59.820 22.596 59.805 22.603 59.709 22.636 59.616 22.621 59.518 22.788 59.360 22.871 59.283 22.961 59.253 23.045 59.184 23.110 59.085 23.194 59.028 23.277 58.997 23.360 58.948 23.443 58.850 23.534 58.802 23.608 58.704 23.691 58.615 23.706 58.519 23.683 58.411 23.683 58.314 23.716 58.261 23.764 58.160 23.780 58.065 23.772 57.958 23.787 57.863 23.838 57.770 23.838 57.674 23.869 57.571 23.902 57.477 23.927 57.373 23.960 57.279 23.983 57.185 24.048 57.094 24.122 56.995 24.205 56.905 24.289 56.836 24.372 56.787 24.455 56.718 24.528 56.628 24.612 56.579 24.703 56.530 24.869 56.448 24.960 56.408 25.026 56.386 25.026 56.368 25.018 56.349 24.977 56.345 24.912 56.292 24.878 56.203 24.853 56.200 24.838 56.190 24.790 56.089 24.797 56.081 24.853 56.038 24.861 56.039 24.919 56.062 24.942 56.055 25.034 55.988 25.026 55.949 24.952 55.844 24.919 55.823 24.836 55.834 24.753 55.836 24.705 55.861 24.614 55.796 24.530 55.816 24.440 55.847 24.356 55.821 24.265 55.879 24.265 55.976 24.200 55.999 24.116 55.974 24.076 55.874 24.091 55.799 24.084 55.701 24.058 55.614 23.985 55.510 23.962 55.556 23.879 55.576 23.795 55.559 23.722 55.515 23.631 55.498 23.548 55.426 23.457 55.400 23.373 55.384 23.283 55.338 23.200 55.284 23.116 55.259 22.942 55.244 22.851 55.245 22.810 55.241 22.762 55.229 22.729 55.255 22.081 55.729 20.064 55.067 19.092 52.114 19.077 52.066 ; #2420 12 50.468 -125.415 50.391 -125.445 50.375 -125.538 50.359 -125.412 50.272 -125.279 50.185 -125.276 50.236 -125.209 50.323 -125.235 50.410 -125.304 50.468 -125.418 ; #2421 12 69.332 -135.450 69.397 -135.701 69.415 -135.588 69.329 -135.446 ; #2422 5 -51.127 -59.996 -51.162 -59.895 -51.154 -59.987 -51.127 -59.994 ; #2423 12 -7.883 39.678 -7.800 39.677 -7.717 39.721 -7.684 39.815 -7.601 39.878 -7.684 39.897 -7.767 39.861 -7.815 39.767 -7.881 39.674 ; #2424 5 -60.565 -45.067 -60.511 -45.167 -60.485 -45.272 -60.468 -45.392 -60.459 -45.506 -60.442 -45.616 -60.386 -45.714 -60.431 -45.858 -60.339 -45.901 -60.330 -45.767 -60.313 -45.639 -60.339 -45.524 -60.339 -45.405 -60.384 -45.311 -60.420 -45.212 -60.465 -45.118 -60.558 -45.063 -60.567 -45.068 ; #2425 12 60.276 -140.384 60.276 -140.337 60.312 -140.261 60.349 -140.196 60.386 -140.131 60.421 -140.042 60.421 -139.901 60.429 -139.761 60.429 -139.620 60.412 -139.455 60.310 -139.483 60.181 -139.553 60.080 -139.417 60.072 -139.393 60.018 -139.186 59.928 -139.040 59.822 -138.929 59.732 -138.761 59.634 -138.583 59.545 -138.405 59.528 -138.383 59.493 -138.313 59.395 -138.135 59.306 -138.004 59.209 -137.966 59.102 -137.905 59.013 -137.854 59.048 -137.774 59.084 -137.703 59.117 -137.609 59.144 -137.518 59.179 -137.425 59.204 -137.331 59.239 -137.249 59.248 -137.110 59.256 -136.982 59.308 -136.934 59.368 -136.875 59.448 -136.863 59.545 -136.853 59.537 -136.725 59.589 -136.644 59.678 -136.716 59.705 -136.623 59.722 -136.517 59.730 -136.399 59.747 -136.292 59.772 -136.196 59.799 -136.103 59.826 -136.010 59.851 -135.915 59.780 -135.670 59.691 -135.505 59.674 -135.461 59.585 -135.412 59.524 -135.461 59.435 -135.410 59.345 -135.282 59.294 -135.097 59.196 -134.875 59.098 -134.805 59.009 -134.756 58.920 -134.617 58.859 -134.411 58.762 -134.216 58.664 -134.100 58.593 -133.961 58.504 -133.846 58.433 -133.871 58.344 -133.756 58.254 -133.630 58.165 -133.561 58.076 -133.502 57.986 -133.376 57.888 -133.273 57.799 -133.215 57.710 -133.111 57.620 -133.029 57.441 -132.801 57.344 -132.724 57.255 -132.725 57.165 -132.679 57.103 -132.485 57.024 -132.521 56.934 -132.440 56.837 -132.328 56.747 -132.260 56.695 -132.205 56.695 -132.080 56.652 -131.900 56.581 -131.697 56.491 -131.483 56.483 -131.359 56.450 -131.192 56.361 -131.070 56.317 -130.880 56.219 -130.780 56.194 -130.635 56.194 -130.500 56.105 -130.445 56.007 -130.438 56.024 -130.427 55.980 -130.418 55.936 -130.454 55.893 -130.525 55.814 -130.541 55.725 -130.510 55.627 -130.480 55.537 -130.414 55.440 -130.384 55.396 -130.342 55.344 -130.391 55.328 -130.415 55.284 -130.475 55.223 -130.514 55.126 -130.415 55.197 -130.379 55.223 -130.345 55.275 -130.286 55.346 -130.259 55.398 -130.209 55.496 -130.240 55.556 -130.200 55.645 -130.220 55.735 -130.230 55.637 -130.176 55.548 -130.056 55.539 -129.932 55.539 -130.045 55.469 -130.082 55.417 -130.143 55.365 -130.192 55.305 -130.242 55.242 -130.279 55.199 -130.350 55.101 -130.343 55.109 -130.240 55.101 -130.117 55.109 -130.003 55.084 -130.039 55.076 -130.141 55.067 -130.255 55.076 -130.378 55.076 -130.388 55.032 -130.448 54.944 -130.471 54.902 -130.537 54.833 -130.573 54.746 -130.401 54.730 -130.284 54.730 -130.407 54.817 -130.592 54.809 -130.696 54.766 -130.772 54.679 -130.687 54.592 -130.491 54.627 -130.416 54.601 -130.408 54.601 -130.453 54.532 -130.489 54.445 -130.425 54.429 -130.417 54.471 -130.486 54.566 -130.601 54.653 -130.697 54.740 -130.824 54.653 -130.841 54.566 -130.800 54.532 -130.874 54.445 -130.778 54.453 -130.675 54.358 -130.682 54.324 -130.676 54.281 -130.517 54.307 -130.422 54.331 -130.326 54.348 -130.232 54.331 -130.091 54.340 -129.987 54.356 -129.893 54.340 -129.951 54.297 -130.016 54.313 -130.157 54.321 -130.279 54.263 -130.337 54.176 -130.263 54.089 -130.167 54.176 -130.273 54.271 -130.421 54.255 -130.482 54.168 -130.509 54.081 -130.513 53.994 -130.428 53.951 -130.370 53.864 -130.244 53.769 -130.140 53.683 -130.024 53.596 -129.898 53.500 -129.729 53.569 -129.692 53.664 -129.697 53.751 -129.680 53.793 -129.604 53.836 -129.538 53.913 -129.511 53.913 -129.399 54.000 -129.394 53.913 -129.344 53.963 -129.287 54.006 -129.221 54.049 -129.145 54.117 -129.096 54.085 -129.061 53.990 -129.080 53.947 -128.911 53.963 -129.052 53.929 -129.127 53.903 -129.221 53.808 -129.206 53.731 -129.244 53.644 -129.139 53.549 -128.972 53.565 -128.890 53.616 -128.823 53.599 -128.694 53.575 -128.545 53.480 -128.453 53.393 -128.414 53.480 -128.552 53.575 -128.600 53.575 -128.711 53.567 -128.825 53.551 -128.920 53.482 -128.957 53.577 -129.124 53.664 -129.307 53.664 -129.419 53.577 -129.324 53.490 -129.305 53.403 -129.310 53.308 -129.119 53.351 -129.110 53.255 -128.953 53.197 -129.001 53.110 -128.972 53.023 -128.966 52.936 -128.795 52.936 -128.683 52.987 -128.627 53.021 -128.552 52.962 -128.601 52.893 -128.591 52.817 -128.620 52.748 -128.657 52.687 -128.713 52.600 -128.685 52.531 -128.732 52.489 -128.798 52.420 -128.834 52.428 -128.733 52.479 -128.676 52.539 -128.619 52.598 -128.571 52.648 -128.514 52.675 -128.422 52.701 -128.339 52.641 -128.395 52.625 -128.489 52.556 -128.526 52.461 -128.455 52.495 -128.381 52.582 -128.387 52.632 -128.329 52.574 -128.378 52.487 -128.339 52.426 -128.385 52.339 -128.312 52.382 -128.260 52.408 -128.178 52.424 -128.084 52.458 -128.010 52.501 -127.934 52.543 -127.858 52.570 -127.775 52.639 -127.727 52.689 -127.670 52.732 -127.604 52.766 -127.530 52.817 -127.463 52.904 -127.457 52.991 -127.495 52.904 -127.413 52.808 -127.400 52.750 -127.459 52.724 -127.541 52.689 -127.616 52.647 -127.682 52.560 -127.643 52.465 -127.499 52.491 -127.416 52.507 -127.311 52.499 -127.239 52.483 -127.319 52.440 -127.396 52.353 -127.367 52.259 -127.213 52.172 -127.165 52.346 -127.393 52.432 -127.474 52.440 -127.604 52.406 -127.678 52.355 -127.746 52.339 -127.839 52.297 -127.905 52.220 -127.933 52.212 -128.046 52.273 -127.999 52.238 -128.073 52.161 -128.113 52.085 -128.142 52.076 -128.243 52.042 -128.317 51.955 -128.345 51.781 -128.291 51.773 -128.282 51.678 -128.235 51.591 -128.143 51.615 -128.058 51.676 -128.003 51.763 -127.997 51.840 -128.048 51.840 -127.938 51.909 -127.901 51.935 -127.818 51.892 -127.883 51.805 -127.868 51.840 -127.794 51.813 -127.656 51.829 -127.563 51.813 -127.425 51.813 -127.315 51.805 -127.196 51.829 -127.101 51.916 -127.106 51.829 -127.057 51.779 -127.125 51.787 -127.243 51.787 -127.364 51.795 -127.483 51.795 -127.714 51.779 -127.807 51.763 -127.899 51.712 -127.967 51.635 -127.995 51.585 -128.062 51.524 -128.108 51.465 -128.143 51.474 -128.042 51.439 -127.765 51.474 -127.581 51.439 -127.655 51.423 -127.748 51.431 -127.876 51.439 -127.995 51.415 -128.079 51.398 -128.182 51.330 -128.229 51.235 -128.055 51.251 -127.962 51.208 -127.797 51.201 -127.679 51.208 -127.568 51.225 -127.475 51.225 -127.365 51.233 -127.253 51.267 -127.180 51.293 -127.088 51.251 -127.153 51.208 -127.228 51.208 -127.447 51.192 -127.551 51.184 -127.652 51.192 -127.770 51.245 -127.945 51.158 -127.974 51.071 -127.829 51.063 -127.710 50.994 -127.518 51.029 -127.445 51.071 -127.609 51.055 -127.482 51.047 -127.354 51.089 -127.289 51.012 -127.099 51.047 -127.026 51.097 -126.958 51.184 -126.940 51.089 -126.871 51.073 -126.744 51.065 -126.616 51.057 -126.717 51.057 -126.947 50.970 -126.909 50.996 -126.827 51.004 -126.716 51.004 -126.606 50.917 -126.495 50.875 -126.571 50.816 -126.619 50.833 -126.527 50.849 -126.424 50.849 -126.314 50.856 -126.203 50.899 -126.138 50.986 -126.108 51.037 -126.052 51.114 -126.012 51.201 -126.006 51.114 -125.958 51.027 -125.965 51.000 -126.047 50.913 -126.033 50.826 -126.162 50.810 -126.264 50.794 -126.356 50.802 -126.474 50.786 -126.577 50.778 -126.678 50.735 -126.603 50.760 -126.519 50.751 -126.391 50.717 -126.595 50.640 -126.624 50.640 -126.515 50.614 -126.368 50.640 -126.286 50.673 -126.200 50.586 -126.080 50.654 -126.031 50.713 -125.983 50.808 -125.972 50.816 -125.861 50.782 -125.945 50.687 -125.933 50.600 -125.919 50.608 -125.818 50.600 -125.690 50.565 -125.546 50.634 -125.508 50.677 -125.442 50.727 -125.374 50.778 -125.317 50.865 -125.311 50.960 -125.388 51.002 -125.323 51.071 -125.275 51.045 -125.227 50.976 -125.265 50.889 -125.285 50.802 -125.269 50.715 -125.266 50.681 -125.340 50.630 -125.407 50.570 -125.453 50.483 -125.407 50.551 -125.369 50.464 -125.322 50.448 -125.196 50.490 -125.120 50.551 -125.074 50.551 -124.965 50.576 -124.881 50.592 -124.778 50.557 -124.862 50.531 -124.954 50.515 -125.046 50.456 -125.095 50.369 -124.986 50.292 -125.016 50.224 -125.064 50.137 -125.049 50.137 -125.145 50.094 -125.101 50.007 -124.917 49.922 -124.830 49.906 -124.697 49.914 -124.595 49.922 -124.494 49.963 -124.412 50.050 -124.375 49.955 -124.276 50.050 -124.335 50.137 -124.371 50.153 -124.357 50.177 -124.262 50.254 -124.222 50.341 -124.373 50.290 -124.213 50.203 -124.145 50.169 -124.229 50.135 -124.303 50.126 -124.304 50.039 -124.236 49.868 -124.232 49.783 -124.072 49.799 -123.967 49.832 -123.888 49.783 -123.953 49.767 -124.048 49.725 -124.130 49.640 -124.152 49.733 -124.191 49.819 -124.244 49.852 -124.382 49.785 -124.432 49.699 -124.368 49.614 -124.220 49.565 -124.069 49.523 -123.924 49.565 -123.852 49.650 -123.863 49.684 -123.774 49.751 -123.615 49.801 -123.540 49.725 -123.593 49.640 -123.627 49.555 -123.616 49.462 -123.535 49.454 -123.508 49.438 -123.386 49.472 -123.307 49.521 -123.242 49.454 -123.291 49.430 -123.389 49.430 -123.527 49.337 -123.510 49.337 -123.583 49.252 -123.499 49.285 -123.420 49.285 -123.410 49.228 -123.479 49.143 -123.480 49.143 -123.417 49.150 -123.424 49.208 -123.366 49.224 -123.271 49.139 -123.144 49.139 -95.490 49.240 -95.496 49.307 -95.489 49.401 -95.490 49.502 -95.484 49.509 -95.479 49.493 -95.415 49.493 -95.264 49.408 -95.163 49.323 -95.148 49.230 -95.115 49.145 -95.076 49.059 -95.049 49.002 -95.052 48.909 -95.019 48.859 -94.923 48.843 -94.794 48.851 -94.691 48.794 -94.544 48.786 -94.431 48.786 -94.314 48.770 -94.195 48.684 -94.157 48.669 -94.029 48.684 -93.931 48.693 -93.829 48.752 -93.751 48.760 -93.736 48.760 -93.727 48.752 -93.701 48.784 -93.615 48.768 -93.486 48.768 -93.378 48.734 -93.237 48.701 -93.108 48.677 -92.974 48.592 -92.947 48.558 -92.807 48.472 -92.803 48.397 -92.668 48.405 -92.644 48.491 -92.624 48.506 -92.527 48.439 -92.365 48.354 -92.214 48.330 -92.081 48.270 -92.061 48.255 -92.009 48.213 -91.929 48.205 -91.816 48.205 -91.806 48.213 -91.759 48.229 -91.662 48.262 -91.576 48.304 -91.486 48.338 -91.400 48.338 -91.391 48.371 -91.295 48.379 -91.192 48.364 -91.192 48.364 -91.203 48.332 -91.191 48.246 -91.083 48.262 -90.986 48.255 -90.864 48.255 -90.756 48.262 -90.644 48.270 -90.541 48.255 -90.424 48.187 -90.370 48.154 -90.231 48.179 -90.140 48.163 -90.012 48.155 -89.945 48.171 -89.945 48.195 -89.843 48.296 -89.693 48.381 -89.630 48.467 -89.590 48.552 -89.592 48.619 -89.528 48.653 -89.442 48.669 -89.344 48.693 -89.242 48.693 -89.134 48.625 -89.198 48.532 -89.224 48.465 -89.289 48.489 -89.186 48.522 -89.100 48.607 -89.059 48.682 -89.000 48.768 -88.979 48.835 -88.915 48.920 -88.906 48.996 -88.836 48.920 -88.680 48.835 -88.699 48.784 -88.774 48.726 -88.845 48.669 -88.925 48.583 -88.924 48.625 -88.842 48.710 -88.802 48.726 -88.694 48.734 -88.591 48.794 -88.521 48.869 -88.462 48.954 -88.506 49.047 -88.608 49.133 -88.610 49.117 -88.557 49.143 -88.455 49.101 -88.321 49.067 -88.191 49.051 -88.063 48.984 -87.912 48.992 -87.809 48.916 -87.654 48.933 -87.546 48.933 -87.438 48.956 -87.334 48.907 -87.195 48.933 -87.103 48.891 -86.970 48.907 -86.872 48.891 -86.744 48.806 -86.680 48.720 -86.627 48.627 -86.599 48.542 -86.545 48.457 -86.522 48.371 -86.459 48.278 -86.401 48.193 -86.306 48.108 -86.146 48.084 -86.014 48.076 -85.891 48.076 -85.784 48.108 -85.696 48.115 -85.583 48.115 -85.476 48.124 -85.364 48.115 -85.251 48.023 -85.256 47.937 -85.257 47.888 -85.333 47.812 -85.363 47.745 -85.363 47.660 -85.239 47.592 -85.091 47.507 -84.986 47.422 -84.987 47.354 -85.062 47.261 -85.068 47.203 -85.139 47.111 -85.021 47.102 -84.909 47.095 -84.798 47.010 -84.736 47.010 -84.843 46.952 -84.914 46.859 -84.910 46.916 -84.838 46.831 -84.839 46.774 -84.910 46.688 -84.911 46.673 -84.795 46.688 -84.752 46.688 -84.710 46.696 -84.608 46.704 -84.507 46.619 -84.446 46.534 -84.478 46.492 -84.347 46.492 -84.231 46.450 -84.099 46.442 -83.988 46.450 -83.963 46.409 -83.832 46.393 -83.707 46.367 -83.585 46.359 -83.474 46.343 -83.359 46.343 -83.242 46.359 -83.146 46.367 -83.044 46.343 -82.914 46.367 -82.822 46.359 -82.701 46.310 -82.566 46.302 -82.455 46.268 -82.329 46.276 -82.227 46.276 -82.112 46.190 -82.123 46.240 -82.046 46.274 -81.950 46.199 -82.022 46.207 -81.911 46.165 -81.928 46.123 -82.010 46.157 -81.923 46.157 -81.817 46.141 -81.702 46.133 -81.582 46.183 -81.505 46.098 -81.507 46.121 -81.415 46.113 -81.326 46.098 -81.201 46.022 -81.051 45.937 -80.982 45.851 -80.952 45.766 -80.862 45.792 -80.761 45.707 -80.722 45.614 -80.720 45.529 -80.629 45.505 -80.510 45.580 -80.437 45.487 -80.374 45.429 -80.446 45.344 -80.356 45.336 -80.332 45.302 -80.332 45.302 -80.438 45.227 -80.333 45.211 -80.334 45.203 -80.330 45.170 -80.259 45.085 -80.169 44.999 -80.111 45.048 -80.033 45.048 -80.023 44.964 -80.051 44.939 -80.143 45.031 -80.253 45.031 -80.327 44.989 -80.409 44.905 -80.376 44.880 -80.333 44.831 -80.338 44.772 -80.337 44.723 -80.332 44.657 -80.403 44.672 -80.516 44.706 -80.648 44.729 -80.765 44.780 -80.906 44.864 -80.949 44.888 -81.077 44.854 -81.165 44.788 -81.236 44.880 -81.232 44.964 -81.224 44.980 -81.337 44.939 -81.421 45.005 -81.351 45.090 -81.328 45.090 -81.444 45.166 -81.517 45.166 -81.578 45.259 -81.590 45.344 -81.659 45.411 -81.804 45.419 -81.924 45.427 -82.034 45.342 -81.911 45.249 -81.837 45.164 -81.758 45.096 -81.699 44.919 -81.602 44.835 -81.600 44.751 -81.639 44.684 -81.719 44.600 -81.781 44.551 -81.860 44.484 -81.941 44.400 -81.958 44.309 -82.015 44.234 -82.091 44.142 -82.073 44.058 -82.070 43.966 -82.074 43.882 -82.081 43.798 -82.079 43.706 -82.051 43.622 -82.058 43.538 -82.087 43.481 -82.172 43.430 -82.250 43.398 -82.338 43.332 -82.418 43.283 -82.497 43.250 -82.583 43.225 -82.685 43.201 -82.777 43.152 -82.780 43.085 -82.827 42.901 -82.856 42.817 -82.884 42.759 -82.945 42.751 -83.011 42.702 -82.935 42.687 -82.823 42.594 -82.766 42.561 -82.790 42.512 -82.868 42.504 -82.968 42.504 -83.081 42.520 -83.193 42.536 -83.315 42.520 -83.410 42.512 -83.426 42.420 -83.460 42.336 -83.476 42.252 -83.461 42.211 -83.326 42.186 -83.210 42.211 -83.119 42.236 -83.029 42.152 -82.881 42.244 -82.825 42.311 -82.756 42.377 -82.584 42.418 -82.491 42.452 -82.405 42.459 -82.305 42.508 -82.226 42.582 -82.151 42.631 -82.072 42.690 -81.989 42.747 -81.915 42.780 -81.828 42.813 -81.731 42.845 -81.643 42.853 -81.543 42.853 -81.430 42.845 -81.321 42.837 -81.203 42.813 -81.087 42.780 -80.957 42.765 -80.845 42.765 -80.741 42.749 -80.619 42.741 -80.512 42.749 -80.402 42.757 -80.520 42.765 -80.628 42.790 -80.754 42.941 -80.623 42.982 -80.529 42.982 -80.425 42.998 -80.351 43.005 -80.241 43.021 -80.145 43.044 -80.043 43.044 -79.939 43.037 -79.916 43.052 -79.820 43.052 -79.706 43.060 -79.606 43.052 -79.498 43.060 -79.388 43.076 -79.281 43.091 -79.261 43.175 -79.385 43.268 -79.431 43.275 -79.415 43.283 -79.410 43.357 -79.396 43.449 -79.414 43.434 -79.510 43.400 -79.607 43.367 -79.695 43.383 -79.807 43.383 -79.921 43.416 -80.042 43.508 -80.117 43.567 -80.043 43.641 -79.977 43.725 -79.936 43.767 -79.853 43.815 -79.773 43.839 -79.670 43.890 -79.582 43.931 -79.498 43.987 -79.422 44.013 -79.320 44.021 -79.219 44.037 -79.113 44.052 -79.016 44.068 -78.909 44.068 -78.804 44.093 -78.702 44.117 -78.609 44.117 -78.495 44.132 -78.398 44.140 -78.297 44.148 -78.196 44.173 -78.104 44.189 -77.997 44.181 -77.889 44.107 -77.747 44.123 -77.641 44.099 -77.514 44.015 -77.492 44.048 -77.394 44.072 -77.301 44.087 -77.194 44.103 -77.317 44.187 -77.243 44.253 -77.171 44.228 -77.264 44.203 -77.366 44.287 -77.397 44.294 -77.506 44.279 -77.613 44.294 -77.726 44.261 -77.824 44.261 -77.885 44.285 -77.792 44.311 -77.699 44.318 -77.589 44.318 -77.484 44.352 -77.386 44.326 -77.268 44.269 -77.345 44.269 -77.240 44.311 -77.146 44.377 -76.968 44.377 -76.854 44.393 -76.757 44.426 -76.668 44.467 -76.573 44.482 -76.476 44.508 -76.383 44.531 -76.280 44.583 -76.200 44.639 -76.113 44.639 -76.103 44.696 -76.026 44.754 -75.939 44.811 -75.862 44.860 -75.771 44.919 -75.694 44.968 -75.603 45.001 -75.514 45.043 -75.431 45.076 -75.334 45.108 -75.290 45.124 -75.183 45.140 -75.086 45.132 -74.976 45.132 -74.819 45.124 -74.774 45.124 -74.196 45.132 -74.084 45.132 -73.864 45.140 -73.753 45.140 -73.385 45.148 -73.284 45.148 -71.780 45.233 -71.753 45.326 -71.696 45.411 -71.646 45.404 -71.536 45.404 -71.421 45.437 -71.387 45.479 -71.303 45.394 -71.208 45.453 -71.133 45.538 -71.134 45.531 -71.025 45.624 -71.031 45.673 -71.014 45.748 -70.938 45.798 -70.857 45.840 -70.773 45.925 -70.723 45.975 -70.642 46.042 -70.571 46.127 -70.615 46.212 -70.606 46.236 -70.579 46.329 -70.608 46.415 -70.545 46.482 -70.474 46.540 -70.387 46.555 -70.375 46.641 -70.367 46.734 -70.350 46.819 -70.342 46.827 -70.336 46.894 -70.264 47.045 -70.109 47.120 -70.040 47.196 -69.962 47.271 -69.884 47.338 -69.811 47.414 -69.733 47.489 -69.655 47.557 -69.582 47.572 -69.571 47.557 -69.456 47.471 -69.392 47.396 -69.386 47.311 -69.258 47.295 -69.230 47.329 -69.131 47.345 -69.032 47.376 -68.931 47.410 -68.841 47.402 -68.721 47.469 -68.648 47.435 -68.524 47.343 -68.370 47.275 -68.294 47.190 -68.157 47.174 -68.139 47.089 -68.139 46.995 -68.134 46.910 -68.134 46.817 -68.117 46.732 -68.116 46.639 -68.112 46.553 -68.112 46.460 -68.107 46.375 -68.105 46.282 -68.100 46.111 -68.099 46.018 -68.072 45.925 -68.078 45.875 -68.115 45.790 -68.063 45.733 -67.928 45.717 -67.805 45.709 -67.740 45.675 -67.723 45.608 -67.796 45.523 -67.734 45.429 -67.762 45.344 -67.729 45.259 -67.636 45.310 -67.546 45.295 -67.506 45.328 -67.430 45.243 -67.398 45.277 -67.309 45.251 -67.191 45.166 -67.098 45.181 -67.000 45.213 -66.901 45.247 -66.811 45.213 -66.690 45.255 -66.604 45.306 -66.590 45.291 -66.477 45.350 -66.400 45.443 -66.507 45.451 -66.469 45.501 -66.387 45.568 -66.304 45.475 -66.321 45.390 -66.372 45.390 -66.353 45.314 -66.211 45.356 -66.126 45.380 -66.022 45.413 -65.932 45.439 -65.839 45.489 -65.757 45.538 -65.666 45.572 -65.576 45.606 -65.487 45.630 -65.382 45.663 -65.293 45.722 -65.215 45.707 -65.093 45.782 -65.023 45.868 -64.957 45.953 -64.882 46.046 -64.958 46.131 -64.999 46.046 -64.939 45.953 -64.852 45.868 -64.770 45.925 -64.692 45.933 -64.590 45.917 -64.634 45.849 -64.707 45.774 -64.788 45.725 -64.870 45.683 -64.956 45.564 -65.111 45.531 -65.200 45.445 -65.201 45.396 -65.062 45.411 -65.050 45.487 -64.980 45.512 -64.887 45.497 -64.774 45.481 -64.661 45.489 -64.549 45.505 -64.451 45.489 -64.338 45.455 -64.207 45.489 -64.117 45.489 -63.896 45.481 -63.787 45.465 -63.674 45.457 -63.679 45.424 -63.779 45.424 -63.991 45.415 -64.092 45.382 -64.192 45.350 -64.282 45.324 -64.376 45.282 -64.472 45.197 -64.461 45.104 -64.407 45.104 -64.449 45.146 -64.449 45.239 -64.576 45.205 -64.666 45.291 -64.654 45.383 -64.718 45.342 -64.804 45.318 -64.898 45.293 -65.001 45.277 -65.099 45.235 -65.185 45.186 -65.276 45.144 -65.372 45.110 -65.461 45.025 -65.631 44.983 -65.727 44.942 -65.814 44.894 -65.909 44.809 -65.978 44.833 -65.883 44.858 -65.788 44.817 -65.876 44.758 -65.956 44.727 -66.058 44.801 -66.109 44.752 -66.193 44.711 -66.290 44.594 -66.449 44.510 -66.518 44.568 -66.429 44.635 -66.353 44.686 -66.270 44.686 -66.154 44.627 -66.234 44.578 -66.318 44.504 -66.401 44.420 -66.447 44.336 -66.472 44.244 -66.515 44.160 -66.489 44.076 -66.481 43.991 -66.487 43.907 -66.451 43.815 -66.350 43.849 -66.304 43.933 -66.235 43.849 -66.158 43.765 -66.102 43.680 -66.086 43.647 -65.967 43.680 -65.876 43.596 -65.800 43.688 -65.778 43.688 -65.673 43.772 -65.668 43.864 -65.697 43.815 -65.572 43.907 -65.550 43.823 -65.464 43.823 -65.400 43.880 -65.320 43.921 -65.232 43.980 -65.153 44.072 -65.153 44.087 -65.045 44.171 -64.976 44.255 -64.941 44.263 -64.902 44.287 -64.798 44.361 -64.724 44.445 -64.740 44.412 -64.612 44.496 -64.637 44.512 -64.614 44.596 -64.640 44.645 -64.556 44.669 -64.451 44.585 -64.425 44.618 -64.334 44.710 -64.382 44.760 -64.299 44.792 -64.207 44.700 -64.239 44.616 -64.162 44.566 -64.036 44.574 -63.925 44.633 -63.845 44.717 -63.870 44.809 -63.928 44.776 -63.872 44.727 -63.813 44.751 -63.708 44.735 -63.596 44.760 -63.587 44.801 -63.499 44.833 -63.397 44.817 -63.285 44.833 -63.187 44.884 -63.093 44.907 -62.998 44.933 -62.903 44.974 -62.805 45.007 -62.713 45.023 -62.606 45.065 -62.520 45.072 -62.408 45.098 -62.315 45.132 -62.288 45.148 -62.190 45.173 -62.151 45.197 -62.046 45.247 -61.963 45.247 -61.848 45.255 -61.747 45.312 -61.667 45.328 -61.569 45.304 -61.452 45.346 -61.366 45.431 -61.353 45.447 -61.466 45.431 -61.573 45.431 -61.583 45.507 -61.723 45.523 -61.625 45.608 -61.592 45.693 -61.692 45.727 -61.727 45.776 -61.855 45.709 -61.930 45.717 -62.040 45.766 -62.178 45.860 -62.231 45.945 -62.312 45.887 -62.391 45.846 -62.488 45.804 -62.575 45.778 -62.668 45.737 -62.755 45.770 -62.876 45.729 -62.963 45.721 -63.075 45.778 -63.050 45.812 -62.960 45.853 -63.085 45.870 -63.208 45.885 -63.321 45.851 -63.411 45.851 -63.527 45.893 -63.652 45.969 -63.794 45.969 -63.910 45.935 -63.999 45.984 -64.129 46.078 -64.256 46.078 -64.362 46.119 -64.414 46.135 -64.315 46.151 -64.207 46.218 -64.123 46.234 -64.195 46.260 -64.323 46.252 -64.425 46.312 -64.560 46.312 -64.666 46.319 -64.776 46.327 -64.886 46.413 -64.907 46.413 -65.022 46.488 -64.943 46.581 -65.007 46.666 -65.058 46.752 -65.099 46.837 -65.171 46.922 -65.233 47.015 -65.215 47.083 -65.141 47.168 -65.234 47.168 -65.341 47.152 -65.450 47.126 -65.544 47.168 -65.596 47.168 -65.703 47.202 -65.613 47.244 -65.526 47.293 -65.443 47.351 -65.364 47.418 -65.290 47.493 -65.219 47.586 -65.200 47.671 -65.169 47.747 -65.098 47.815 -65.013 47.798 -65.123 47.884 -65.174 47.876 -65.277 47.909 -65.401 47.901 -65.514 47.870 -65.606 47.828 -65.693 47.776 -65.775 47.753 -65.880 47.703 -65.963 47.703 -65.974 47.778 -66.010 47.864 -66.042 47.957 -66.108 47.999 -66.235 48.006 -66.356 48.048 -66.484 48.082 -66.618 48.139 -66.754 48.113 -66.858 48.082 -66.960 48.056 -67.055 48.072 -67.170 48.080 -67.112 48.096 -67.002 48.130 -66.912 48.179 -66.829 48.179 -66.379 48.237 -66.300 48.213 -66.180 48.187 -66.148 48.163 -66.019 48.130 -65.895 48.070 -65.748 48.078 -65.645 48.102 -65.540 48.143 -65.452 48.177 -65.361 48.244 -65.276 48.253 -65.173 48.302 -65.089 48.387 -65.036 48.403 -65.023 48.429 -64.918 48.455 -64.813 48.471 -64.713 48.528 -64.623 48.570 -64.535 48.655 -64.596 48.748 -64.569 48.833 -64.718 48.833 -64.760 48.841 -64.711 48.875 -64.791 48.883 -64.804 48.907 -64.763 48.883 -64.644 48.857 -64.513 48.942 -64.534 49.036 -64.675 49.121 -64.824 49.172 -64.957 49.214 -65.095 49.255 -65.224 49.272 -65.350 49.279 -65.462 49.287 -65.575 49.303 -65.700 49.311 -65.812 49.303 -65.927 49.303 -65.937 49.277 -66.042 49.277 -66.151 49.270 -66.265 49.270 -66.374 49.254 -66.474 49.246 -66.588 49.222 -66.684 49.196 -66.779 49.180 -66.890 49.154 -66.985 49.131 -67.082 49.105 -67.177 49.071 -67.268 49.030 -67.365 49.006 -67.461 48.990 -67.561 48.974 -67.661 48.933 -67.759 48.924 -67.872 48.891 -67.941 48.857 -68.031 48.823 -68.122 48.789 -68.223 48.758 -68.315 48.742 -68.415 48.718 -68.521 48.677 -68.607 48.617 -68.695 48.601 -68.795 48.526 -68.874 48.518 -68.945 48.476 -69.032 48.443 -69.132 48.401 -69.218 48.360 -69.304 48.310 -69.397 48.242 -69.470 48.090 -69.714 48.048 -69.809 47.981 -69.882 47.888 -69.941 47.820 -70.024 47.763 -70.102 47.688 -70.170 47.630 -70.257 47.588 -70.343 47.529 -70.385 47.435 -70.453 47.410 -70.547 47.317 -70.606 47.249 -70.688 47.216 -70.723 47.156 -70.799 47.098 -70.885 47.083 -70.983 47.049 -71.073 47.008 -71.168 46.991 -71.266 46.950 -71.361 46.950 -71.467 46.892 -71.554 46.851 -71.639 46.851 -71.649 46.859 -71.653 46.859 -71.643 46.918 -71.558 46.993 -71.490 47.045 -71.410 47.102 -71.324 47.144 -71.239 47.160 -71.163 47.194 -71.074 47.279 -71.001 47.354 -70.933 47.448 -70.887 47.533 -70.837 47.549 -70.738 47.564 -70.639 47.614 -70.558 47.707 -70.522 47.759 -70.441 47.808 -70.349 47.858 -70.281 47.943 -70.239 48.028 -70.176 48.113 -70.126 48.207 -70.089 48.240 -70.213 48.326 -70.343 48.334 -70.399 48.326 -70.503 48.383 -70.640 48.425 -70.769 48.441 -70.895 48.433 -70.999 48.433 -71.117 48.399 -71.207 48.493 -71.170 48.526 -71.305 48.526 -71.413 48.542 -71.337 48.526 -71.210 48.510 -71.094 48.478 -70.970 48.463 -70.844 48.463 -70.736 48.413 -70.593 48.356 -70.456 48.364 -70.352 48.338 -70.286 48.244 -70.166 48.229 -70.050 48.286 -69.962 48.387 -69.799 48.463 -69.721 48.530 -69.648 48.623 -69.622 48.673 -69.540 48.732 -69.453 48.826 -69.416 48.859 -69.403 48.891 -69.311 48.933 -69.214 48.984 -69.133 49.025 -69.036 49.101 -68.967 49.143 -68.870 49.176 -68.779 49.270 -68.784 49.220 -68.728 49.135 -68.758 49.176 -68.661 49.176 -68.553 49.261 -68.639 49.261 -68.563 49.321 -68.475 49.362 -68.388 49.362 -68.280 49.347 -68.154 49.381 -68.063 49.388 -67.948 49.396 -67.834 49.396 -67.726 49.472 -67.645 49.539 -67.571 49.624 -67.571 49.795 -67.508 49.880 -67.476 49.888 -67.361 49.973 -67.295 50.068 -67.252 50.076 -67.227 50.092 -67.117 50.161 -67.049 50.248 -66.981 50.224 -66.936 50.197 -66.802 50.292 -66.877 50.335 -66.793 50.276 -66.639 50.268 -66.526 50.284 -66.426 50.335 -66.347 50.351 -66.237 50.325 -66.113 50.333 -65.999 50.341 -65.894 50.365 -65.789 50.373 -65.675 50.357 -65.556 50.349 -65.433 50.341 -65.319 50.333 -65.218 50.341 -65.113 50.341 -65.004 50.349 -64.890 50.383 -64.801 50.357 -64.720 50.331 -64.596 50.331 -64.487 50.357 -64.383 50.365 -64.278 50.373 -64.164 50.331 -64.031 50.323 -63.907 50.280 -63.774 50.306 -63.680 50.306 -63.571 50.357 -63.480 50.373 -63.380 50.349 -63.258 50.357 -63.143 50.341 -63.025 50.341 -62.916 50.325 -62.798 50.351 -62.693 50.300 -62.556 50.292 -62.433 50.300 -62.318 50.274 -62.195 50.197 -62.120 50.224 -62.025 50.248 -61.919 50.205 -61.982 50.163 -62.078 50.179 -61.968 50.213 -61.878 50.238 -61.782 50.254 -61.682 50.262 -61.578 50.254 -61.454 50.286 -61.363 50.278 -61.250 50.270 -61.126 50.278 -61.021 50.278 -60.903 50.313 -60.802 50.313 -60.693 50.304 -60.570 50.288 -60.452 50.315 -60.347 50.331 -60.325 50.365 -60.234 50.452 -60.217 50.503 -60.136 50.519 -60.035 50.543 -59.929 50.577 -59.916 50.638 -59.839 50.715 -59.771 50.768 -59.680 50.792 -59.583 50.853 -59.506 50.922 -59.433 50.835 -59.397 50.885 -59.314 50.980 -59.331 50.988 -59.326 51.075 -59.361 51.067 -59.247 51.136 -59.164 51.170 -59.073 51.221 -58.979 51.308 -59.046 51.316 -59.007 51.324 -58.901 51.356 -58.808 51.340 -58.680 51.332 -58.555 51.356 -58.458 51.382 -58.352 51.441 -58.273 51.449 -58.157 51.474 -58.060 51.482 -57.954 51.490 -57.838 51.532 -57.750 51.490 -57.608 51.455 -57.480 51.463 -57.420 51.490 -57.324 51.514 -57.227 51.583 -57.142 51.659 -57.071 51.684 -56.974 51.726 -56.886 51.769 -56.787 51.819 -56.703 51.828 -56.586 51.886 -56.506 51.929 -56.417 51.955 -56.310 52.042 -56.244 52.119 -56.173 52.145 -56.065 52.232 -56.141 52.319 -56.121 52.362 -56.263 52.465 -56.538 52.432 -56.410 52.398 -56.272 52.414 -56.170 52.390 -56.036 52.477 -56.080 52.527 -56.217 52.536 -56.265 52.543 -56.390 52.578 -56.519 52.561 -56.621 52.594 -56.749 52.621 -56.874 52.621 -56.840 52.604 -56.710 52.578 -56.586 52.604 -56.489 52.596 -56.374 52.683 -56.439 52.659 -56.305 52.625 -56.176 52.719 -56.171 52.719 -56.282 52.746 -56.406 52.833 -56.495 52.833 -56.384 52.849 -56.271 52.900 -56.209 52.907 -56.192 52.994 -56.268 53.027 -56.406 53.061 -56.535 53.061 -56.414 53.053 -56.299 53.122 -56.212 53.199 -56.140 53.286 -56.195 53.373 -56.209 53.415 -56.285 53.407 -56.403 53.494 -56.427 53.581 -56.561 53.607 -56.462 53.607 -56.574 53.650 -56.708 53.642 -56.816 53.658 -56.947 53.708 -57.085 53.701 -56.958 53.788 -56.915 53.737 -57.000 53.745 -57.127 53.745 -57.351 53.694 -57.436 53.607 -57.502 53.531 -57.584 53.523 -57.691 53.609 -57.703 53.618 -57.819 53.626 -57.912 53.668 -57.823 53.684 -57.709 53.717 -57.615 53.777 -57.535 53.836 -57.443 53.923 -57.588 54.010 -57.644 54.105 -57.715 54.192 -57.783 54.184 -57.891 54.210 -58.027 54.202 -58.135 54.218 -58.256 54.244 -58.382 54.244 -58.505 54.218 -58.604 54.218 -58.716 54.123 -58.709 54.131 -58.601 54.147 -58.487 54.139 -58.371 54.115 -58.246 54.089 -58.344 54.105 -58.465 54.081 -58.574 54.072 -58.682 54.038 -58.786 54.030 -58.894 53.996 -58.988 53.969 -59.085 53.962 -59.203 53.893 -59.289 53.850 -59.378 53.755 -59.381 53.704 -59.465 53.713 -59.592 53.688 -59.690 53.646 -59.779 53.593 -59.873 53.561 -59.978 53.553 -60.085 53.561 -60.201 53.474 -60.241 53.474 -60.252 53.431 -60.340 53.415 -60.373 53.365 -60.457 53.330 -60.560 53.296 -60.653 53.296 -60.764 53.304 -60.789 53.320 -60.687 53.346 -60.580 53.371 -60.714 53.431 -60.636 53.474 -60.548 53.482 -60.431 53.569 -60.543 53.593 -60.668 53.680 -60.828 53.715 -60.959 53.723 -61.086 53.739 -61.207 53.834 -61.228 53.850 -61.227 53.763 -61.080 53.747 -60.959 53.704 -60.823 53.628 -60.658 53.577 -60.519 53.672 -60.473 53.733 -60.394 53.802 -60.364 53.818 -60.261 53.868 -60.177 53.852 -60.046 53.844 -59.929 53.852 -59.822 53.895 -59.722 53.929 -59.629 53.955 -59.521 53.971 -59.418 53.998 -59.320 54.067 -59.234 54.050 -59.113 54.050 -59.001 54.109 -58.911 54.161 -58.826 54.230 -58.741 54.206 -58.850 54.180 -58.949 54.145 -59.042 54.129 -59.156 54.113 -59.259 54.089 -59.359 54.081 -59.466 54.054 -59.564 54.038 -59.678 54.038 -59.790 54.022 -59.846 54.022 -59.880 54.083 -59.924 54.074 -59.807 54.083 -59.689 54.099 -59.586 54.125 -59.478 54.158 -59.271 54.158 -59.148 54.174 -59.044 54.208 -58.940 54.241 -58.846 54.257 -58.731 54.265 -58.623 54.352 -58.547 54.378 -58.449 54.394 -58.345 54.394 -57.997 54.429 -57.892 54.479 -57.807 54.479 -57.920 54.471 -58.028 54.495 -57.965 54.495 -57.852 54.503 -57.733 54.598 -57.695 54.657 -57.839 54.641 -57.953 54.683 -58.089 54.742 -58.233 54.734 -58.342 54.742 -58.459 54.793 -58.609 54.784 -58.718 54.801 -58.850 54.809 -58.967 54.825 -59.089 54.912 -59.212 54.904 -59.320 54.938 -59.226 55.026 -59.320 55.115 -59.309 55.107 -59.417 55.080 -59.513 55.020 -59.601 55.003 -59.704 55.047 -59.617 55.117 -59.536 55.207 -59.501 55.199 -59.609 55.109 -59.679 55.066 -59.775 55.003 -59.850 54.953 -59.935 54.910 -60.036 54.868 -60.125 54.781 -60.143 54.772 -60.251 54.823 -60.166 54.910 -60.114 54.979 -60.029 55.011 -59.935 55.055 -59.848 55.117 -59.762 55.215 -59.833 55.155 -59.919 55.147 -60.027 55.113 -60.120 55.165 -60.265 55.165 -60.152 55.225 -60.076 55.323 -60.146 55.271 -60.238 55.246 -60.336 55.211 -60.383 55.132 -60.447 55.080 -60.529 55.028 -60.620 55.107 -60.556 55.151 -60.470 55.248 -60.440 55.257 -60.559 55.213 -60.655 55.170 -60.752 55.107 -60.827 55.064 -60.923 55.003 -60.999 55.003 -61.009 55.047 -60.992 55.082 -60.948 55.126 -60.851 55.205 -60.777 55.265 -60.700 55.238 -60.797 55.195 -60.894 55.273 -60.829 55.300 -60.733 55.398 -60.704 55.415 -60.590 55.504 -60.601 55.479 -60.699 55.427 -60.790 55.487 -60.714 55.577 -60.737 55.675 -60.830 55.702 -60.733 55.799 -60.752 55.799 -60.865 55.710 -60.900 55.650 -60.986 55.747 -60.957 55.837 -61.003 55.766 -61.072 55.750 -61.176 55.758 -61.247 55.775 -61.143 55.864 -61.189 55.872 -61.308 55.855 -61.422 55.899 -61.563 55.978 -61.499 55.978 -61.613 56.030 -61.770 56.074 -61.673 56.049 -61.782 56.138 -61.772 56.236 -61.744 56.219 -61.847 56.227 -61.967 56.219 -62.076 56.211 -62.116 56.238 -62.133 56.238 -62.247 56.308 -62.417 56.300 -62.297 56.265 -62.150 56.292 -62.053 56.319 -62.185 56.328 -62.065 56.417 -62.236 56.425 -62.367 56.469 -62.509 56.512 -62.422 56.521 -62.313 56.496 -62.172 56.585 -62.114 56.602 -62.240 56.594 -62.349 56.610 -62.485 56.627 -62.610 56.635 -62.594 56.627 -62.464 56.635 -62.354 56.660 -62.485 56.704 -62.628 56.739 -62.765 56.837 -62.929 56.837 -62.804 56.845 -62.695 56.837 -62.564 56.828 -62.443 56.820 -62.553 56.828 -62.684 56.757 -62.753 56.722 -62.616 56.706 -62.491 56.672 -62.343 56.645 -62.211 56.672 -62.103 56.770 -62.188 56.707 -62.262 56.797 -62.218 56.814 -62.103 56.874 -62.027 56.926 -61.945 56.988 -61.870 56.961 -61.727 56.978 -61.727 57.067 -61.749 57.165 -61.903 57.217 -62.051 57.200 -62.166 57.252 -62.315 57.331 -62.240 57.429 -62.324 57.454 -62.466 57.446 -62.576 57.429 -62.681 57.489 -62.835 57.464 -62.703 57.535 -62.634 57.526 -62.513 57.587 -62.426 57.604 -62.321 57.693 -62.322 57.782 -62.482 57.880 -62.443 57.970 -62.523 57.934 -62.615 57.951 -62.742 57.861 -62.786 57.951 -62.799 57.959 -62.920 57.951 -63.031 57.984 -62.926 57.993 -62.815 58.009 -62.699 58.099 -62.779 58.071 -62.878 58.161 -62.844 58.152 -62.955 58.127 -63.066 58.119 -63.152 58.127 -63.274 58.074 -63.354 58.057 -63.459 57.986 -63.529 57.994 -63.661 58.055 -63.585 58.055 -63.550 58.090 -63.446 58.142 -63.364 58.150 -63.253 58.167 -63.148 58.227 -63.061 58.254 -63.195 58.254 -63.078 58.298 -62.980 58.387 -63.017 58.477 -63.008 58.468 -63.119 58.452 -63.225 58.435 -63.341 58.418 -63.446 58.375 -63.534 58.445 -63.464 58.454 -63.586 58.418 -63.690 58.358 -63.777 58.350 -63.888 58.383 -63.783 58.473 -63.750 58.464 -63.861 58.481 -63.756 58.481 -63.628 58.498 -63.523 58.541 -63.435 58.558 -63.329 58.620 -63.254 58.709 -63.324 58.799 -63.290 58.870 -63.454 58.826 -63.553 58.835 -63.686 58.859 -63.575 58.957 -63.561 58.924 -63.667 59.003 -63.591 59.038 -63.498 59.046 -63.620 59.055 -63.743 59.028 -63.853 59.011 -63.935 59.003 -64.046 59.011 -64.169 58.948 -64.255 59.046 -64.343 59.046 -64.225 59.030 -64.086 59.038 -63.974 59.073 -63.870 59.163 -63.813 59.252 -63.780 59.200 -63.873 59.192 -63.984 59.225 -63.889 59.323 -63.920 59.306 -64.037 59.246 -64.114 59.344 -64.158 59.352 -64.209 59.387 -64.362 59.395 -64.250 59.404 -64.127 59.493 -64.069 59.537 -64.216 59.493 -64.316 59.591 -64.313 59.556 -64.407 59.645 -64.363 59.653 -64.498 59.697 -64.527 59.705 -64.522 59.741 -64.546 59.830 -64.489 59.920 -64.582 59.963 -64.483 59.963 -64.552 59.946 -64.644 59.884 -64.720 59.867 -64.827 59.965 -64.800 59.965 -64.822 60.046 -64.750 60.018 -64.848 60.000 -64.964 59.965 -65.069 59.965 -65.138 59.973 -65.121 60.000 -65.011 60.037 -64.919 60.063 -64.809 60.155 -64.783 60.138 -64.889 60.201 -64.816 60.229 -64.966 60.212 -65.072 60.248 -64.969 60.265 -64.864 60.310 -64.990 60.319 -65.126 60.255 -65.197 60.162 -65.198 60.108 -65.288 60.026 -65.346 59.965 -65.421 59.895 -65.454 59.851 -65.554 59.762 -65.456 59.728 -65.316 59.744 -65.456 59.797 -65.610 59.762 -65.704 59.753 -65.816 59.664 -65.847 59.574 -65.807 59.477 -65.647 59.441 -65.505 59.352 -65.387 59.395 -65.496 59.448 -65.649 59.439 -65.761 59.456 -65.890 59.367 -65.782 59.277 -65.767 59.310 -65.907 59.221 -65.846 59.169 -65.927 59.221 -66.080 59.131 -66.065 59.042 -65.946 59.051 -65.835 59.007 -65.688 59.015 -65.811 58.963 -65.892 59.015 -66.045 58.945 -66.114 58.909 -66.206 58.849 -66.293 58.822 -66.146 58.805 -66.192 58.805 -66.309 58.797 -66.420 58.699 -66.388 58.610 -66.245 58.521 -66.265 58.458 -66.339 58.369 -66.335 58.308 -66.421 58.352 -66.439 58.387 -66.347 58.485 -66.379 58.556 -66.311 58.645 -66.440 58.734 -66.559 58.824 -66.713 58.791 -66.818 58.701 -66.860 58.658 -66.946 58.568 -66.977 58.471 -66.979 58.487 -67.107 58.435 -67.188 58.468 -67.314 58.398 -67.380 58.354 -67.478 58.319 -67.570 58.302 -67.674 58.275 -67.783 58.232 -67.869 58.179 -67.959 58.101 -68.020 58.011 -68.036 57.913 -68.070 57.984 -68.073 58.074 -68.034 58.171 -68.056 58.260 -68.027 58.350 -68.057 58.439 -68.141 58.350 -68.181 58.260 -68.210 58.207 -68.289 58.136 -68.355 58.109 -68.452 58.171 -68.380 58.215 -68.294 58.285 -68.228 58.375 -68.269 58.464 -68.254 58.554 -68.360 58.510 -68.456 58.439 -68.523 58.350 -68.538 58.252 -68.586 58.192 -68.659 58.103 -68.665 58.051 -68.744 58.015 -68.835 57.998 -68.939 57.991 -69.060 57.965 -69.158 57.948 -69.262 57.924 -69.372 57.888 -69.463 57.845 -69.548 57.810 -69.638 57.774 -69.729 57.828 -69.652 57.872 -69.556 57.905 -69.463 57.940 -69.362 57.968 -69.266 57.984 -69.161 58.011 -69.064 58.028 -68.960 58.036 -68.850 58.090 -68.761 58.169 -68.700 58.267 -68.653 58.356 -68.600 58.445 -68.560 58.535 -68.645 58.624 -68.697 58.714 -68.728 58.812 -68.798 58.882 -68.965 58.909 -69.112 58.874 -69.204 58.890 -69.332 58.890 -69.461 58.882 -69.571 58.865 -69.676 58.822 -69.762 58.770 -69.852 58.753 -69.957 58.701 -70.036 58.641 -70.121 58.624 -70.225 58.714 -70.186 58.697 -70.291 58.749 -70.361 58.757 -70.438 58.784 -70.575 58.784 -70.458 58.812 -70.361 58.828 -70.269 58.845 -70.154 58.934 -70.161 59.023 -70.226 58.971 -70.071 58.882 -70.039 58.792 -69.964 58.855 -69.892 58.934 -69.821 59.113 -69.740 59.156 -69.889 59.211 -69.811 59.235 -69.711 59.219 -69.582 59.317 -69.663 59.344 -69.800 59.327 -69.917 59.344 -70.057 59.414 -69.980 59.503 -70.066 59.556 -69.987 59.591 -69.883 59.680 -69.981 59.770 -69.928 59.859 -69.983 59.948 -70.084 59.940 -70.195 59.940 -70.313 59.932 -70.365 59.948 -70.495 59.957 -70.631 59.957 -70.749 59.948 -70.872 59.984 -71.027 59.992 -71.055 60.020 -71.206 60.037 -71.337 60.046 -71.333 60.037 -71.208 60.000 -71.050 59.984 -70.920 59.975 -70.856 59.984 -70.744 59.984 -70.686 59.992 -70.563 59.984 -70.428 59.984 -70.087 60.020 -70.162 60.020 -70.032 60.046 -69.934 60.138 -69.913 60.240 -69.992 60.332 -70.053 60.424 -70.092 60.517 -70.107 60.580 -70.026 60.672 -70.041 60.718 -69.947 60.745 -69.849 60.771 -69.739 60.864 -69.732 60.956 -69.804 61.049 -69.982 60.956 -70.040 60.864 -70.001 60.892 -70.142 60.819 -70.203 60.827 -70.340 60.864 -70.488 60.965 -70.463 61.058 -70.570 61.067 -70.696 61.010 -70.771 60.993 -70.876 61.047 -71.049 61.047 -71.169 61.056 -71.187 61.101 -71.353 61.118 -71.487 61.136 -71.632 61.110 -71.730 61.202 -71.805 61.165 -71.905 61.267 -72.071 61.359 -72.168 61.351 -72.030 61.396 -71.947 61.396 -72.067 61.422 -72.219 61.467 -72.136 61.512 -72.114 61.521 -72.001 61.547 -71.891 61.639 -72.036 61.667 -72.190 61.676 -72.316 61.574 -72.329 61.566 -72.442 61.592 -72.583 61.574 -72.449 61.628 -72.362 61.721 -72.426 61.749 -72.569 61.842 -72.550 61.859 -72.696 61.895 -72.846 61.904 -72.974 61.850 -73.050 61.814 -73.140 61.850 -73.088 61.932 -73.025 62.005 -72.965 62.098 -73.030 62.080 -73.147 62.143 -73.320 62.208 -73.494 62.300 -73.619 62.335 -73.780 62.352 -73.915 62.445 -74.089 62.436 -74.202 62.391 -74.285 62.326 -74.363 62.309 -74.469 62.300 -74.594 62.255 -74.677 62.227 -74.785 62.227 -75.027 62.182 -75.121 62.080 -74.976 62.163 -75.166 62.236 -75.349 62.244 -75.389 62.272 -75.534 62.289 -75.681 62.272 -75.799 62.244 -75.895 62.199 -75.988 62.173 -76.087 62.137 -76.176 62.173 -76.171 62.210 -76.082 62.272 -76.014 62.281 -76.143 62.326 -76.314 62.317 -76.427 62.371 -76.606 62.399 -76.751 62.436 -76.904 62.462 -77.059 62.490 -77.204 62.507 -77.340 62.498 -77.465 62.526 -77.611 62.561 -77.773 62.526 -77.864 62.498 -77.972 62.445 -78.046 62.427 -78.152 62.393 -78.253 62.365 -78.350 62.328 -78.438 62.255 -78.506 62.154 -78.512 62.053 -78.482 61.960 -78.446 61.868 -78.423 61.859 -78.427 61.757 -78.338 61.665 -78.235 61.674 -78.122 61.581 -77.994 61.519 -77.819 61.536 -77.966 61.443 -77.907 61.415 -78.014 61.353 -78.080 61.260 -78.058 61.159 -78.053 61.094 -78.116 61.032 -78.182 60.987 -78.273 60.933 -78.345 60.879 -78.429 60.778 -78.421 60.795 -78.317 60.804 -78.205 60.767 -78.279 60.758 -78.141 60.776 -78.037 60.784 -77.915 60.711 -77.981 60.666 -78.061 60.573 -78.076 60.537 -77.925 60.519 -77.791 60.483 -77.879 60.455 -77.985 60.381 -78.051 60.289 -77.891 60.196 -77.790 60.104 -77.769 60.011 -77.808 60.029 -77.705 59.975 -77.531 59.940 -77.597 59.851 -77.643 59.762 -77.630 59.753 -77.751 59.718 -77.841 59.620 -77.785 59.655 -77.931 59.680 -78.069 59.591 -78.008 59.512 -78.063 59.485 -78.170 59.395 -78.156 59.368 -78.017 59.344 -78.114 59.300 -78.137 59.256 -78.219 59.221 -78.319 59.194 -78.414 59.104 -78.447 59.053 -78.523 58.973 -78.577 58.948 -78.674 58.922 -78.780 58.897 -78.877 58.799 -78.821 58.709 -78.806 58.612 -78.820 58.595 -78.679 58.506 -78.572 58.454 -78.415 58.462 -78.410 58.445 -78.397 58.356 -78.269 58.323 -78.127 58.287 -77.982 58.198 -77.795 58.101 -77.673 58.030 -77.490 57.940 -77.410 57.843 -77.312 57.753 -77.242 57.664 -77.162 57.574 -77.113 57.477 -77.049 57.388 -77.001 57.298 -76.943 57.209 -76.909 57.111 -76.878 57.021 -76.900 56.932 -76.877 56.835 -76.858 56.745 -76.845 56.656 -76.853 56.558 -76.859 56.469 -76.856 56.371 -76.859 56.282 -76.881 56.192 -76.937 56.103 -76.959 56.032 -77.019 55.997 -77.106 55.926 -77.176 55.874 -77.250 55.812 -77.316 55.760 -77.401 55.662 -77.440 55.610 -77.513 55.567 -77.594 55.523 -77.674 55.479 -77.764 55.425 -77.836 55.392 -77.934 55.348 -78.014 55.286 -78.090 55.278 -78.083 55.250 -78.186 55.217 -78.285 55.182 -78.371 55.147 -78.457 55.103 -78.536 55.059 -78.626 55.043 -78.726 55.016 -78.818 55.007 -78.832 54.981 -78.926 54.946 -79.026 54.938 -79.143 54.896 -79.226 54.862 -79.315 54.845 -79.417 54.837 -79.534 54.803 -79.634 54.786 -79.735 54.761 -79.830 54.734 -79.934 54.657 -79.992 54.605 -79.842 54.509 -79.820 54.422 -79.803 54.335 -79.773 54.277 -79.620 54.234 -79.702 54.200 -79.566 54.166 -79.419 54.123 -79.512 54.047 -79.346 53.987 -79.417 53.901 -79.387 53.858 -79.246 53.866 -79.364 53.779 -79.378 53.755 -79.473 53.729 -79.343 53.642 -79.405 53.642 -79.282 53.555 -79.310 53.504 -79.387 53.417 -79.282 53.330 -79.297 53.243 -79.268 53.156 -79.295 53.069 -79.313 53.027 -79.172 53.019 -79.210 52.932 -79.171 52.924 -79.054 52.837 -79.072 52.829 -79.188 52.742 -79.096 52.655 -79.036 52.604 -79.046 52.596 -78.929 52.509 -78.880 52.414 -78.835 52.327 -78.886 52.311 -78.800 52.277 -78.898 52.190 -78.915 52.121 -78.989 52.018 -79.139 51.993 -79.243 51.906 -79.183 51.856 -79.259 51.787 -79.332 51.753 -79.278 51.666 -79.154 51.579 -79.159 51.554 -79.032 51.554 -79.086 51.502 -79.170 51.415 -79.154 51.407 -79.192 51.320 -79.253 51.233 -79.173 51.241 -79.209 51.328 -79.279 51.415 -79.295 51.502 -79.344 51.597 -79.496 51.613 -79.617 51.700 -79.613 51.700 -79.723 51.650 -79.799 51.615 -79.895 51.528 -79.889 51.485 -79.957 51.409 -80.024 51.314 -80.045 51.227 -80.072 51.140 -80.022 51.053 -79.866 50.879 -79.683 50.792 -79.644 50.818 -79.661 50.913 -79.737 51.000 -79.840 51.025 -79.856 51.094 -79.977 51.144 -80.033 51.231 -80.180 51.318 -80.316 51.326 -80.365 51.360 -80.499 51.387 -80.637 51.387 -80.747 51.352 -80.843 51.293 -80.912 51.241 -80.996 51.199 -81.076 51.182 -81.174 51.105 -81.230 51.097 -81.334 51.124 -81.309 51.156 -81.222 51.225 -81.150 51.233 -81.112 51.293 -81.035 51.344 -80.960 51.368 -80.913 51.395 -80.822 51.482 -80.762 51.569 -80.823 51.655 -80.873 51.751 -80.929 51.846 -81.016 52.020 -81.292 52.107 -81.451 52.141 -81.596 52.210 -81.755 52.297 -81.914 52.297 -82.035 52.280 -82.134 52.256 -82.228 52.307 -82.199 52.315 -82.151 52.341 -82.059 52.366 -81.956 52.382 -81.856 52.469 -81.908 52.564 -81.995 52.651 -82.102 52.738 -82.251 52.825 -82.334 52.912 -82.396 52.980 -82.567 52.989 -82.594 53.023 -82.639 53.031 -82.614 53.126 -82.638 53.213 -82.602 53.264 -82.584 53.298 -82.487 53.393 -82.457 53.480 -82.488 53.575 -82.547 53.662 -82.544 53.749 -82.508 53.836 -82.459 53.923 -82.478 54.018 -82.526 54.105 -82.568 54.192 -82.686 54.287 -82.744 54.374 -82.752 54.461 -82.717 54.730 -82.564 54.825 -82.520 54.912 -82.494 54.999 -82.536 55.034 -82.554 55.132 -82.544 55.115 -82.643 55.205 -82.840 55.213 -82.960 55.186 -83.051 55.195 -83.182 55.151 -83.246 55.240 -83.206 55.273 -83.357 55.240 -83.443 55.257 -83.580 55.273 -83.706 55.290 -83.833 55.315 -83.967 55.225 -83.862 55.261 -84.005 55.350 -84.191 55.342 -84.298 55.307 -84.393 55.333 -84.528 55.325 -84.645 55.309 -84.745 55.284 -84.848 55.284 -84.961 55.309 -85.096 55.325 -85.233 55.325 -85.346 55.309 -85.456 55.257 -85.526 55.197 -85.589 55.126 -85.643 55.037 -85.682 55.028 -85.706 55.037 -85.713 55.115 -85.679 55.257 -85.571 55.317 -85.498 55.406 -85.493 55.433 -85.629 55.512 -85.809 55.610 -85.912 55.670 -86.076 55.733 -86.243 55.733 -86.356 55.750 -86.495 55.793 -86.645 55.845 -86.814 55.881 -86.958 55.916 -87.102 55.943 -87.239 55.959 -87.377 55.976 -87.505 56.030 -87.677 56.055 -87.812 56.072 -87.837 56.044 -87.928 56.036 -87.932 56.044 -87.938 56.134 -87.949 56.223 -88.037 56.321 -88.143 56.411 -88.266 56.500 -88.399 56.544 -88.562 56.622 -88.745 56.712 -88.938 56.801 -89.084 56.891 -89.207 56.874 -89.319 56.883 -89.358 56.899 -89.488 56.934 -89.644 56.970 -89.905 56.986 -90.046 57.021 -90.192 57.049 -90.331 57.127 -90.517 57.172 -90.682 57.234 -90.853 57.250 -90.983 57.277 -91.133 57.285 -91.256 57.285 -91.371 57.269 -91.472 57.252 -91.582 57.227 -91.675 57.211 -91.786 57.186 -91.879 57.169 -91.990 57.144 -92.083 57.117 -92.183 57.101 -92.284 57.084 -92.383 57.076 -92.502 57.040 -92.595 57.005 -92.678 56.980 -92.770 56.980 -92.802 57.005 -92.710 57.049 -92.624 57.103 -92.548 57.103 -92.673 57.086 -92.784 57.051 -92.867 57.017 -92.962 56.974 -93.038 56.957 -93.137 56.957 -93.217 56.984 -93.116 57.009 -93.024 57.071 -92.966 57.124 -92.899 57.202 -92.845 57.263 -92.785 57.360 -92.759 57.450 -92.785 57.629 -92.902 57.727 -92.982 57.815 -93.042 57.905 -93.092 57.994 -93.129 58.092 -93.152 58.182 -93.213 58.271 -93.285 58.360 -93.335 58.458 -93.393 58.547 -93.465 58.637 -93.481 58.726 -93.483 58.787 -93.667 58.734 -93.735 58.797 -93.922 58.813 -94.054 58.805 -94.174 58.797 -94.283 58.797 -94.481 58.707 -94.514 58.645 -94.583 58.547 -94.583 58.458 -94.580 58.379 -94.623 58.308 -94.672 58.254 -94.714 58.344 -94.682 58.433 -94.674 58.523 -94.641 58.620 -94.652 58.691 -94.590 58.780 -94.582 58.755 -94.676 58.845 -94.817 58.915 -95.012 58.863 -95.080 58.943 -95.038 59.032 -95.054 59.048 -95.138 59.084 -95.299 59.084 -95.322 59.111 -95.230 59.119 -95.110 59.209 -95.116 59.306 -95.092 59.358 -95.013 59.448 -95.052 59.545 -95.111 59.634 -95.115 59.724 -95.107 59.813 -95.075 59.903 -95.102 59.992 -95.095 60.020 -95.101 60.082 -95.035 60.164 -95.001 60.265 -95.011 60.330 -94.959 60.412 -94.925 60.513 -95.097 60.504 -94.969 60.558 -95.048 60.541 -94.911 60.569 -94.821 60.670 -94.806 60.724 -94.731 60.834 -94.703 60.887 -94.628 60.933 -94.555 60.996 -94.500 61.068 -94.456 61.096 -94.354 61.189 -94.416 61.234 -94.332 61.327 -94.438 61.336 -94.436 61.308 -94.287 61.325 -94.185 61.407 -94.293 61.499 -94.268 61.555 -94.206 61.572 -94.103 61.618 -94.019 61.663 -93.945 61.691 -93.843 61.717 -93.738 61.762 -93.664 61.826 -93.697 61.861 -93.853 61.954 -93.948 61.937 -93.810 61.891 -93.643 61.954 -93.587 62.046 -93.660 62.011 -93.492 62.046 -93.408 62.083 -93.314 62.184 -93.418 62.201 -93.315 62.184 -93.176 62.277 -93.249 62.341 -93.447 62.341 -93.400 62.324 -93.250 62.298 -93.102 62.206 -92.974 62.298 -92.937 62.352 -93.124 62.380 -93.021 62.472 -92.995 62.490 -92.880 62.583 -92.916 62.537 -92.737 62.574 -92.654 62.600 -92.559 62.537 -92.399 62.565 -92.307 62.610 -92.232 62.655 -92.399 62.664 -92.529 62.757 -92.732 62.849 -92.694 62.821 -92.544 62.875 -92.478 62.849 -92.318 62.832 -92.179 62.824 -92.037 62.806 -91.899 62.798 -91.757 62.832 -91.659 62.860 -91.566 62.914 -91.488 62.950 -91.392 62.950 -91.270 62.942 -91.129 63.004 -91.059 63.058 -90.992 63.151 -91.015 63.252 -91.070 63.297 -91.093 63.390 -91.273 63.390 -91.150 63.463 -91.359 63.480 -91.499 63.480 -91.632 63.543 -91.819 63.636 -91.949 63.709 -92.147 63.681 -92.240 63.653 -92.334 63.618 -92.431 63.601 -92.536 63.547 -92.603 63.547 -92.737 63.538 -92.862 63.584 -92.775 63.620 -92.690 63.629 -92.565 63.683 -92.499 63.728 -92.680 63.790 -92.879 63.782 -92.992 63.819 -93.165 63.855 -93.325 63.881 -93.487 63.890 -93.544 63.952 -93.733 63.859 -93.670 63.823 -93.766 63.851 -93.918 63.943 -94.086 63.969 -94.065 63.969 -93.942 64.006 -93.858 64.099 -93.968 64.171 -94.067 64.070 -93.912 63.988 -93.691 63.961 -93.539 63.915 -93.357 63.879 -93.196 63.862 -93.055 63.816 -92.874 63.762 -92.696 63.762 -92.561 63.734 -92.409 63.771 -92.314 63.788 -92.209 63.743 -92.040 63.717 -91.879 63.700 -91.764 63.618 -91.557 63.601 -91.406 63.556 -91.238 63.564 -91.112 63.581 -90.996 63.590 -90.883 63.683 -90.966 63.665 -90.825 63.620 -90.645 63.620 -90.523 63.693 -90.464 63.739 -90.387 63.767 -90.333 63.829 -90.324 63.922 -90.441 63.950 -90.347 63.967 -90.316 63.922 -90.136 64.014 -90.181 64.107 -90.298 64.107 -90.321 64.144 -90.310 64.126 -90.169 64.199 -90.120 64.099 -90.141 64.016 -89.923 63.935 -89.818 64.027 -89.877 64.019 -89.745 63.982 -89.585 63.948 -89.416 64.040 -89.521 64.133 -89.603 64.040 -89.461 63.984 -89.282 63.976 -89.139 63.976 -89.004 64.004 -88.910 64.040 -88.823 64.066 -88.726 64.094 -88.620 64.131 -88.533 64.139 -88.407 64.176 -88.320 64.268 -88.315 64.303 -88.227 64.385 -88.174 64.458 -88.124 64.503 -88.045 64.529 -87.936 64.574 -87.846 64.591 -87.826 64.693 -87.817 64.693 -87.693 64.729 -87.606 64.811 -87.553 64.874 -87.491 64.910 -87.391 64.983 -87.329 65.059 -87.284 65.156 -87.336 65.212 -87.520 65.231 -87.664 65.231 -87.800 65.249 -87.944 65.231 -88.061 65.239 -88.194 65.231 -88.322 65.239 -88.455 65.239 -88.701 65.249 -88.847 65.267 -88.991 65.276 -89.125 65.284 -89.271 65.391 -89.458 65.447 -89.644 65.544 -89.738 65.641 -89.942 65.717 -90.161 65.756 -90.289 65.783 -90.444 65.813 -90.612 65.821 -90.747 65.851 -90.905 65.851 -91.042 65.860 -91.178 65.878 -91.323 65.781 -91.303 65.810 -91.461 65.848 -91.641 65.925 -91.588 65.907 -91.443 65.898 -91.295 65.880 -91.150 65.862 -91.004 65.862 -90.731 65.871 -90.615 65.853 -90.721 65.824 -90.563 65.833 -90.437 65.841 -90.321 65.833 -90.288 65.785 -90.111 65.824 -90.027 65.900 -90.236 65.909 -90.296 65.909 -90.170 65.900 -90.023 65.862 -89.856 65.806 -89.669 65.738 -89.471 65.652 -89.241 65.661 -89.126 65.623 -88.959 65.605 -88.803 65.596 -88.709 65.596 -88.971 65.605 -89.106 65.557 -88.930 65.510 -88.754 65.413 -88.577 65.316 -88.363 65.289 -88.210 65.289 -87.949 65.280 -87.815 65.280 -87.679 65.307 -87.582 65.336 -87.478 65.355 -87.373 65.440 -87.326 65.497 -87.261 65.515 -87.144 65.551 -87.057 65.598 -86.982 65.627 -86.876 65.675 -86.790 65.781 -86.777 65.858 -86.732 65.858 -86.633 65.896 -86.548 65.943 -86.461 65.961 -86.343 66.027 -86.286 66.094 -86.232 66.200 -86.454 66.229 -86.611 66.247 -86.768 66.266 -86.914 66.363 -87.078 66.391 -86.983 66.488 -87.074 66.471 -86.929 66.498 -86.820 66.488 -86.684 66.480 -86.537 66.461 -86.391 66.461 -86.253 66.471 -86.125 66.488 -86.018 66.527 -85.932 66.536 -85.803 66.439 -85.651 66.342 -85.637 66.236 -85.577 66.236 -85.439 66.198 -85.273 66.216 -85.166 66.169 -84.979 66.142 -84.825 66.124 -84.681 66.221 -84.819 66.326 -84.906 66.335 -84.790 66.239 -84.689 66.256 -84.582 66.200 -84.385 66.153 -84.210 66.171 -84.104 66.256 -84.093 66.353 -84.193 66.450 -84.329 66.547 -84.529 66.604 -84.461 66.633 -84.630 66.709 -84.636 66.727 -84.643 66.746 -84.789 66.775 -84.957 66.775 -84.819 66.840 -85.026 66.849 -84.897 66.896 -85.085 66.879 -85.193 66.870 -85.323 66.813 -85.390 66.813 -85.517 66.879 -85.459 66.917 -85.361 66.926 -85.243 66.935 -85.126 66.926 -84.978 66.944 -85.123 66.962 -85.016 66.944 -84.858 66.926 -84.701 66.917 -84.830 66.926 -84.901 66.879 -84.713 66.782 -84.550 66.782 -84.688 66.726 -84.641 66.726 -84.629 66.707 -84.633 66.689 -84.615 66.662 -84.460 66.719 -84.392 66.757 -84.294 66.823 -84.236 66.726 -84.220 66.629 -84.170 66.647 -84.326 66.550 -84.287 66.493 -84.102 66.396 -83.902 66.299 -83.891 66.299 -83.753 66.308 -83.636 66.346 -83.538 66.394 -83.460 66.423 -83.353 66.500 -83.305 66.509 -83.177 66.509 -82.913 66.574 -82.853 66.622 -82.763 66.669 -82.674 66.669 -82.547 66.651 -82.455 66.757 -82.451 66.823 -82.380 66.879 -82.298 66.926 -82.219 66.935 -82.090 66.926 -81.954 66.935 -81.825 67.000 -81.753 67.097 -81.712 67.271 -81.634 67.348 -81.573 67.453 -81.618 67.550 -81.741 67.618 -81.949 67.715 -82.135 67.812 -82.348 67.918 -82.445 68.003 -82.405 68.060 -82.324 68.051 -82.454 68.078 -82.611 68.164 -82.571 68.211 -82.749 68.249 -82.648 68.326 -82.869 68.373 -82.789 68.391 -82.679 68.373 -82.520 68.439 -82.458 68.342 -82.256 68.371 -82.157 68.436 -82.096 68.418 -81.937 68.455 -81.845 68.493 -81.743 68.522 -81.632 68.549 -81.531 68.655 -81.553 68.752 -81.614 68.770 -81.774 68.809 -81.956 68.818 -82.095 68.799 -82.217 68.782 -82.328 68.811 -82.217 68.829 -82.107 68.858 -81.995 68.885 -81.881 68.924 -81.780 68.971 -81.699 68.989 -81.575 69.086 -81.612 69.095 -81.752 69.160 -81.950 69.160 -82.092 69.169 -82.244 69.133 -82.336 69.124 -82.469 69.183 -82.400 69.280 -82.605 69.289 -82.472 69.327 -82.655 69.345 -82.816 69.354 -82.825 69.372 -82.987 69.390 -83.137 69.399 -83.276 69.418 -83.438 69.418 -83.296 69.399 -83.133 69.399 -82.861 69.467 -82.802 69.515 -82.722 69.505 -82.569 69.535 -82.731 69.582 -82.924 69.573 -83.045 69.573 -83.187 69.564 -83.321 69.582 -83.482 69.553 -83.582 69.571 -83.744 69.580 -83.884 69.609 -84.047 69.627 -84.209 69.704 -84.434 69.731 -84.594 69.731 -84.725 69.722 -84.858 69.704 -84.970 69.685 -85.092 69.677 -85.226 69.659 -85.338 69.715 -85.541 69.724 -85.682 69.706 -85.794 69.697 -85.668 69.640 -85.737 69.543 -85.762 69.446 -85.620 69.429 -85.731 69.323 -85.731 69.349 -85.630 69.302 -85.721 69.205 -85.592 69.214 -85.744 69.108 -85.617 69.061 -85.436 69.070 -85.316 69.023 -85.395 69.032 -85.275 68.973 -85.082 68.917 -84.891 68.917 -85.021 68.908 -85.153 68.899 -85.246 68.851 -85.065 68.833 -85.188 68.863 -85.349 68.766 -85.308 68.775 -85.447 68.709 -85.247 68.727 -85.137 68.662 -85.196 68.653 -85.327 68.662 -85.479 68.633 -85.589 68.689 -85.779 68.642 -85.869 68.595 -85.947 68.529 -86.018 68.432 -85.988 68.335 -86.013 68.259 -86.059 68.182 -86.117 68.105 -86.163 68.008 -86.187 67.931 -86.244 67.902 -86.354 67.855 -86.443 67.816 -86.530 67.769 -86.618 67.742 -86.640 67.684 -86.716 67.627 -86.783 67.530 -86.741 67.433 -86.765 67.356 -86.810 67.271 -86.857 67.348 -87.079 67.321 -87.177 67.273 -87.253 67.176 -87.262 67.138 -87.359 67.156 -87.518 67.070 -87.552 67.023 -87.563 67.070 -87.741 67.147 -87.697 67.253 -87.738 67.350 -87.917 67.544 -88.256 67.640 -88.448 67.737 -88.554 67.844 -88.624 67.941 -88.653 68.017 -88.597 68.114 -88.603 68.211 -88.671 68.241 -88.575 68.279 -88.488 68.182 -88.468 68.164 -88.319 68.155 -88.169 68.193 -88.109 68.290 -88.087 68.387 -88.104 68.484 -88.199 68.581 -88.192 68.678 -88.236 68.784 -88.393 68.881 -88.615 68.937 -88.808 69.014 -89.023 69.111 -89.180 69.187 -89.409 69.169 -89.530 69.131 -89.617 69.075 -89.696 69.018 -89.762 68.980 -89.861 68.941 -89.959 68.876 -90.015 68.770 -89.974 68.674 -89.967 68.577 -89.987 68.595 -90.136 68.538 -90.214 68.470 -90.075 68.414 -90.153 68.376 -90.250 68.367 -90.276 68.349 -90.279 68.339 -90.281 68.311 -90.273 68.272 -90.370 68.186 -90.403 68.169 -90.523 68.274 -90.591 68.274 -90.732 68.304 -90.637 68.351 -90.819 68.436 -90.775 68.533 -90.770 68.630 -90.739 68.736 -90.730 68.727 -90.849 68.764 -90.776 68.861 -90.851 68.966 -90.971 69.063 -91.093 69.140 -91.311 69.207 -91.519 69.217 -91.388 69.244 -91.289 69.187 -91.312 69.217 -91.203 69.207 -91.062 69.284 -91.008 69.314 -90.912 69.341 -90.800 69.370 -90.692 69.361 -90.551 69.418 -90.746 69.446 -90.921 69.399 -90.997 69.435 -91.169 69.426 -91.313 69.456 -91.490 69.438 -91.600 69.438 -91.730 69.456 -91.608 69.483 -91.509 69.521 -91.422 69.568 -91.620 69.550 -91.730 69.512 -91.817 69.474 -91.914 69.435 -92.013 69.426 -92.133 69.456 -92.310 69.553 -92.423 69.571 -92.586 69.600 -92.763 69.571 -92.871 69.571 -93.002 69.600 -92.906 69.609 -92.774 69.618 -92.927 69.609 -93.047 69.647 -92.950 69.695 -92.874 69.712 -92.752 69.731 -92.643 69.758 -92.531 69.796 -92.433 69.844 -92.357 69.882 -92.258 69.891 -92.193 69.976 -92.436 69.968 -92.582 69.929 -92.668 70.016 -92.628 70.066 -92.562 70.075 -92.442 70.045 -92.271 70.004 -92.074 70.013 -91.944 70.023 -91.812 70.032 -91.693 70.135 -91.878 70.238 -91.919 70.248 -92.064 70.188 -92.117 70.188 -92.261 70.238 -92.195 70.351 -92.316 70.382 -92.500 70.463 -92.474 70.566 -92.726 70.576 -92.883 70.679 -92.941 70.698 -93.043 70.717 -93.200 70.748 -93.097 70.851 -93.127 70.933 -93.102 71.036 -93.105 71.139 -93.176 71.242 -93.234 71.354 -93.477 71.445 -93.744 71.514 -93.984 71.617 -93.975 71.649 -94.164 71.677 -94.337 71.677 -94.496 71.627 -94.562 71.577 -94.641 71.680 -94.661 71.680 -94.808 71.752 -94.771 71.811 -94.704 71.893 -94.949 71.893 -94.974 71.883 -95.096 71.883 -95.230 71.864 -95.338 71.855 -95.473 71.804 -95.539 71.754 -95.323 71.754 -95.177 71.744 -95.017 71.775 -94.925 71.734 -95.016 71.744 -95.176 71.744 -95.323 71.734 -95.456 71.694 -95.535 71.625 -95.574 71.625 -95.721 71.605 -95.829 71.586 -95.949 71.536 -96.027 71.527 -96.148 71.476 -96.213 71.416 -95.986 71.406 -95.838 71.416 -95.693 71.376 -95.784 71.273 -95.778 71.203 -95.828 71.213 -95.975 71.316 -96.209 71.325 -96.259 71.325 -96.391 71.294 -96.496 71.234 -96.547 71.215 -96.667 71.196 -96.774 71.093 -96.686 71.064 -96.792 70.962 -96.728 70.890 -96.763 70.820 -96.814 70.761 -96.865 70.648 -96.675 70.545 -96.470 70.564 -96.351 70.595 -96.249 70.624 -96.156 70.574 -96.220 70.533 -96.309 70.463 -96.071 70.473 -96.217 70.482 -96.373 70.463 -96.492 70.404 -96.544 70.322 -96.577 70.303 -96.683 70.252 -96.746 70.172 -96.781 70.069 -96.746 69.968 -96.626 69.911 -96.533 69.873 -96.355 69.787 -96.382 69.710 -96.158 69.710 -95.884 69.605 -95.653 69.575 -95.487 69.537 -95.299 69.498 -95.122 69.508 -94.990 69.593 -94.949 69.496 -94.758 69.399 -94.618 69.363 -94.434 69.363 -94.160 69.420 -94.097 69.438 -93.988 69.446 -93.843 69.349 -93.753 69.302 -93.840 69.293 -93.687 69.302 -93.634 69.255 -93.721 69.228 -93.819 69.180 -93.893 69.151 -93.989 69.113 -94.074 69.210 -94.097 69.248 -94.012 69.296 -93.926 69.334 -93.828 69.334 -93.971 69.296 -94.057 69.296 -94.187 69.287 -94.318 69.269 -94.439 69.251 -94.561 69.154 -94.560 69.088 -94.329 69.050 -94.437 68.973 -94.489 68.964 -94.619 68.908 -94.683 68.917 -94.835 68.820 -94.835 68.754 -94.887 68.669 -94.711 68.698 -94.604 68.698 -94.475 68.716 -94.367 68.754 -94.270 68.802 -94.184 68.840 -94.100 68.811 -94.195 68.782 -94.302 68.878 -94.286 68.926 -94.212 68.993 -94.150 68.896 -93.921 68.799 -93.859 68.743 -93.923 68.667 -93.974 68.590 -94.014 68.563 -93.853 68.581 -93.733 68.554 -93.842 68.515 -93.849 68.486 -93.944 68.468 -94.063 68.439 -94.158 68.421 -94.290 68.391 -94.384 68.344 -94.458 68.279 -94.510 68.222 -94.585 68.193 -94.679 68.155 -94.763 68.128 -94.883 68.080 -94.956 68.033 -95.029 68.003 -95.135 68.022 -95.297 68.040 -95.458 68.010 -95.564 68.040 -95.739 67.954 -95.766 67.907 -95.850 67.810 -95.836 67.762 -95.921 67.724 -96.004 67.627 -95.866 67.521 -95.654 67.456 -95.717 67.359 -95.678 67.253 -95.492 67.226 -95.587 67.149 -95.625 67.111 -95.669 66.917 -95.569 66.870 -95.652 66.888 -95.800 66.888 -96.077 66.915 -96.236 66.915 -96.374 66.818 -96.311 66.721 -96.123 66.712 -95.986 66.635 -96.023 66.588 -96.094 66.558 -96.133 66.644 -96.095 66.741 -96.186 66.789 -96.368 66.894 -96.554 66.991 -96.730 67.038 -96.647 66.942 -96.459 66.951 -96.342 67.027 -96.306 66.931 -96.254 66.931 -96.128 66.948 -96.010 66.921 -95.839 66.940 -95.734 66.978 -95.651 67.055 -95.706 67.160 -95.756 67.179 -95.904 67.169 -96.032 67.131 -96.115 67.197 -96.053 67.235 -95.970 67.273 -95.876 67.329 -96.082 67.282 -96.165 67.255 -96.273 67.208 -96.344 67.190 -96.450 67.296 -96.540 67.334 -96.457 67.391 -96.397 67.391 -96.536 67.458 -96.744 67.535 -96.695 67.602 -96.647 67.593 -96.509 67.690 -96.511 67.796 -96.550 67.853 -96.478 68.006 -96.403 68.073 -96.343 68.170 -96.318 68.180 -96.305 68.227 -96.221 68.209 -96.340 68.191 -96.447 68.173 -96.554 68.144 -96.648 68.125 -96.767 68.078 -96.839 68.001 -96.888 67.993 -97.006 68.078 -96.980 68.135 -96.907 68.173 -96.823 68.249 -96.774 68.231 -96.882 68.184 -96.954 68.222 -97.140 68.204 -97.248 68.222 -97.398 68.259 -97.313 68.356 -97.453 68.453 -97.685 68.461 -97.825 68.432 -97.930 68.488 -98.127 68.498 -98.267 68.401 -98.225 68.344 -98.207 68.306 -98.289 68.279 -98.397 68.261 -98.516 68.328 -98.727 68.328 -98.856 68.337 -98.995 68.241 -98.877 68.144 -98.657 68.047 -98.668 68.152 -98.785 68.105 -98.856 68.008 -98.762 67.911 -98.569 67.806 -98.441 67.871 -98.380 67.909 -98.298 67.927 -98.180 67.936 -98.062 67.975 -97.969 67.878 -97.765 67.859 -97.603 67.762 -97.451 67.706 -97.524 67.659 -97.417 67.640 -97.522 67.593 -97.552 67.602 -97.691 67.573 -97.795 67.573 -97.923 67.659 -98.154 67.724 -98.361 67.821 -98.514 67.927 -98.666 68.024 -98.859 68.024 -98.999 67.956 -99.044 67.859 -98.914 67.754 -98.685 67.754 -98.813 67.744 -98.942 67.726 -99.060 67.726 -99.188 67.661 -99.248 67.690 -99.411 67.681 -99.541 67.758 -99.762 67.767 -99.913 67.776 -100.052 67.767 -100.169 67.776 -100.308 67.785 -100.331 67.794 -100.470 67.812 -100.621 67.812 -100.749 67.774 -100.842 67.765 -100.917 67.794 -101.081 67.765 -101.173 67.717 -101.253 67.717 -101.381 67.747 -101.558 67.690 -101.627 67.699 -101.779 67.652 -101.848 67.661 -101.987 67.709 -102.187 67.717 -102.337 67.717 -102.477 67.661 -102.535 67.758 -102.784 67.767 -102.935 67.785 -103.098 67.882 -103.244 67.891 -103.396 67.968 -103.622 68.073 -103.654 68.100 -103.817 68.024 -103.849 68.024 -103.977 67.995 -104.079 67.986 -104.196 68.003 -104.281 67.986 -104.387 67.977 -104.466 68.003 -104.640 67.995 -104.757 68.092 -104.894 68.197 -104.901 68.207 -105.053 68.189 -105.159 68.274 -105.141 68.266 -105.258 68.218 -105.337 68.283 -105.551 68.360 -105.792 68.425 -105.735 68.425 -105.606 68.531 -105.732 68.628 -105.807 68.725 -105.871 68.831 -106.073 68.831 -106.215 68.878 -106.406 68.861 -106.524 68.831 -106.615 68.813 -106.733 68.795 -106.839 68.766 -106.942 68.766 -107.071 68.747 -107.188 68.730 -107.294 68.702 -107.388 68.685 -107.505 68.657 -107.599 68.649 -107.716 68.640 -107.846 68.622 -107.951 68.612 -108.080 68.603 -108.197 68.603 -108.326 68.595 -108.456 68.585 -108.573 68.556 -108.674 68.500 -108.741 68.443 -108.807 68.387 -108.872 68.349 -108.950 68.319 -109.040 68.263 -109.106 68.236 -108.941 68.263 -108.836 68.166 -108.770 68.204 -108.692 68.139 -108.734 68.121 -108.581 68.150 -108.491 68.150 -108.351 68.141 -108.211 68.169 -108.106 68.150 -107.953 68.247 -108.210 68.313 -108.157 68.313 -108.016 68.322 -107.898 68.294 -107.721 68.247 -107.530 68.286 -107.441 68.313 -107.348 68.351 -107.257 68.351 -107.128 68.322 -106.960 68.339 -106.843 68.436 -106.947 68.436 -106.806 68.475 -106.727 68.522 -106.660 68.540 -106.542 68.558 -106.437 68.588 -106.346 68.597 -106.229 68.588 -106.076 68.605 -105.970 68.540 -106.026 68.443 -106.001 68.387 -106.057 68.387 -106.198 68.369 -106.303 68.351 -106.421 68.360 -106.574 68.322 -106.664 68.313 -106.782 68.227 -106.798 68.227 -106.927 68.150 -106.966 68.121 -107.069 68.083 -107.069 68.092 -107.222 68.083 -107.338 68.092 -107.490 68.062 -107.580 68.033 -107.682 68.033 -107.950 68.006 -108.043 67.988 -108.148 68.026 -108.070 68.035 -108.210 67.938 -108.133 67.929 -107.981 67.873 -108.047 67.855 -108.152 67.837 -108.256 67.789 -108.321 67.704 -108.337 67.627 -108.211 67.530 -108.010 67.433 -107.972 67.336 -107.972 67.231 -107.884 67.134 -107.672 67.104 -107.683 67.057 -107.696 66.960 -107.570 66.863 -107.479 66.960 -107.706 66.874 -107.732 66.809 -107.774 66.906 -107.974 66.924 -107.871 67.010 -107.856 66.980 -107.944 66.998 -108.095 66.892 -108.069 66.786 -108.019 66.759 -108.110 66.662 -107.960 66.565 -107.834 66.460 -107.674 66.363 -107.514 66.439 -107.750 66.536 -107.841 66.633 -108.016 66.739 -108.166 66.662 -108.193 66.759 -108.270 66.824 -108.493 66.843 -108.567 66.851 -108.440 66.958 -108.505 66.976 -108.655 67.034 -108.860 67.131 -108.937 67.055 -108.709 67.016 -108.519 67.063 -108.454 67.063 -108.327 67.082 -108.224 67.179 -108.252 67.276 -108.343 67.381 -108.621 67.400 -108.773 67.343 -108.826 67.537 -108.904 67.575 -109.082 67.470 -109.070 67.393 -109.107 67.346 -109.172 67.442 -109.352 67.481 -109.378 67.508 -109.275 67.614 -109.341 67.711 -109.447 67.720 -109.598 67.729 -109.739 67.720 -109.866 67.690 -109.954 67.787 -110.060 67.873 -110.304 67.844 -110.338 67.862 -110.339 67.927 -110.299 67.965 -110.339 67.983 -110.503 67.898 -110.516 67.925 -110.681 67.916 -110.809 67.878 -110.897 67.859 -111.000 67.841 -111.104 67.794 -111.181 67.767 -111.283 67.776 -111.424 67.747 -111.512 67.823 -111.488 67.806 -111.604 67.776 -111.705 67.720 -111.767 67.729 -111.908 67.720 -112.023 67.737 -112.188 67.672 -112.227 67.672 -112.238 67.720 -112.443 67.720 -112.699 67.672 -112.774 67.664 -112.890 67.664 -113.030 67.672 -113.182 67.664 -113.298 67.664 -113.426 67.690 -113.601 67.690 -113.881 67.681 -113.997 67.681 -114.137 67.699 -114.290 67.717 -114.466 67.709 -114.582 67.726 -114.747 67.756 -114.928 67.803 -115.122 67.785 -115.224 67.776 -115.352 67.785 -115.438 67.862 -115.686 67.871 -115.827 67.927 -115.766 67.945 -115.652 67.954 -115.535 67.981 -115.445 68.078 -115.530 68.155 -115.498 68.137 -115.344 68.128 -115.190 68.166 -115.105 68.214 -115.171 68.231 -115.067 68.222 -114.913 68.241 -114.811 68.202 -114.616 68.231 -114.529 68.214 -114.363 68.299 -114.353 68.337 -114.265 68.443 -114.378 68.540 -114.502 68.578 -114.696 68.675 -114.820 68.702 -114.988 68.809 -115.240 68.809 -115.370 68.865 -115.580 68.903 -115.775 68.921 -115.942 68.951 -116.114 68.883 -116.159 68.913 -116.331 68.939 -116.498 68.921 -116.615 68.824 -116.413 68.786 -116.488 68.843 -116.699 68.816 -116.801 68.833 -116.956 68.843 -117.111 68.861 -117.267 68.851 -117.383 68.869 -117.551 68.917 -117.749 68.926 -117.903 68.944 -118.071 68.953 -118.215 69.010 -118.438 69.048 -118.623 69.145 -118.880 69.192 -119.079 69.201 -119.247 69.230 -119.419 69.239 -119.575 69.248 -119.731 69.257 -119.886 69.276 -120.055 69.276 -120.186 69.284 -120.235 69.323 -120.435 69.408 -120.692 69.505 -120.938 69.582 -121.196 69.638 -121.411 69.685 -121.612 69.695 -121.769 69.724 -121.956 69.733 -122.100 69.733 -122.255 69.715 -122.359 69.733 -122.517 69.724 -122.647 69.733 -122.791 69.733 -123.065 69.742 -123.210 69.706 -123.287 69.629 -123.313 69.564 -123.345 69.487 -123.371 69.431 -123.415 69.440 -123.572 69.401 -123.668 69.325 -123.682 69.307 -123.785 69.298 -123.915 69.316 -124.084 69.307 -124.106 69.289 -124.222 69.289 -124.482 69.307 -124.651 69.393 -124.653 69.440 -124.583 69.469 -124.497 69.516 -124.426 69.564 -124.357 69.591 -124.254 69.629 -124.457 69.638 -124.612 69.735 -124.646 69.803 -124.620 69.909 -124.666 69.918 -124.644 69.918 -124.607 69.936 -124.635 69.954 -124.598 69.936 -124.714 69.983 -124.918 69.965 -125.022 69.974 -125.179 69.918 -125.379 69.853 -125.369 69.889 -125.293 69.918 -125.196 69.918 -124.988 69.900 -124.997 69.918 -124.894 69.918 -124.817 69.889 -124.903 69.871 -125.019 69.841 -125.117 69.794 -125.175 69.747 -125.233 69.764 -125.404 69.688 -125.428 69.688 -125.285 69.640 -125.069 69.670 -125.245 69.652 -125.361 69.616 -125.447 69.616 -125.578 69.539 -125.603 69.521 -125.444 69.424 -125.359 69.460 -125.545 69.442 -125.648 69.413 -125.733 69.366 -125.803 69.384 -125.688 69.393 -125.572 69.345 -125.356 69.327 -125.470 69.336 -125.615 69.269 -125.654 69.307 -125.843 69.316 -125.999 69.374 -126.232 69.480 -126.487 69.577 -126.662 69.674 -126.865 69.771 -126.953 69.877 -126.987 69.924 -127.061 69.963 -127.085 70.073 -127.217 70.176 -127.344 70.279 -127.535 70.382 -127.804 70.495 -128.118 70.495 -128.250 70.466 -128.332 70.415 -128.388 70.312 -128.339 70.293 -128.162 70.212 -128.151 70.193 -127.973 70.164 -127.792 70.145 -127.902 70.145 -128.034 70.126 -128.144 70.116 -128.271 70.097 -128.382 70.069 -128.474 70.037 -128.563 69.938 -128.504 69.929 -128.514 69.882 -128.570 69.853 -128.680 69.826 -128.780 69.787 -128.850 69.749 -128.921 69.710 -128.990 69.692 -129.104 69.636 -129.146 69.692 -129.366 69.789 -129.378 69.798 -129.249 69.837 -129.167 69.913 -129.145 69.816 -129.277 69.798 -129.392 69.798 -129.535 69.780 -129.649 69.771 -129.779 69.753 -129.893 69.724 -129.989 69.706 -130.103 69.697 -130.232 69.697 -130.244 69.679 -130.358 69.661 -130.460 69.643 -130.562 69.605 -130.644 69.548 -130.684 69.510 -130.765 69.471 -130.847 69.415 -130.899 69.377 -130.980 69.347 -131.063 69.300 -131.118 69.252 -131.185 69.176 -131.204 69.147 -131.287 69.214 -131.253 69.271 -131.214 69.347 -131.206 69.321 -131.294 69.368 -131.227 69.444 -131.219 69.388 -131.272 69.349 -131.340 69.397 -131.286 69.483 -131.293 69.568 -131.342 69.560 -131.264 69.560 -131.122 69.607 -131.055 69.645 -130.985 69.654 -130.858 69.702 -130.803 69.740 -130.733 69.758 -130.618 69.796 -130.549 69.805 -130.432 69.823 -130.318 69.841 -130.216 69.850 -130.195 69.868 -130.067 69.898 -129.971 69.927 -129.886 69.945 -129.772 69.983 -129.757 70.001 -129.655 70.092 -129.672 70.102 -129.832 70.214 -129.900 70.164 -129.943 70.114 -129.997 70.075 -130.060 70.045 -130.150 70.054 -130.298 70.035 -130.395 70.085 -130.616 70.075 -130.742 70.114 -130.679 70.085 -130.759 70.066 -130.869 70.047 -130.967 70.037 -131.093 69.979 -131.135 69.949 -131.219 69.920 -131.224 69.873 -131.279 69.846 -131.379 69.807 -131.447 69.904 -131.580 69.857 -131.646 69.848 -131.776 69.819 -131.871 69.792 -131.970 69.744 -132.025 69.726 -132.139 69.708 -132.241 69.690 -132.354 69.654 -132.426 69.710 -132.661 69.729 -132.547 69.719 -132.676 69.702 -132.789 69.634 -132.823 69.616 -132.649 69.607 -132.778 69.625 -132.951 69.634 -133.108 69.607 -133.195 69.530 -133.213 69.474 -133.251 69.435 -133.320 69.406 -133.414 69.388 -133.527 69.397 -133.684 69.388 -133.812 69.370 -133.914 69.323 -133.967 69.323 -134.109 69.276 -134.174 69.276 -134.237 69.266 -134.365 69.257 -134.413 69.219 -134.481 69.162 -134.530 69.135 -134.628 69.097 -134.696 69.097 -134.838 69.041 -134.875 68.964 -134.891 68.867 -134.769 68.770 -134.623 68.705 -134.552 68.696 -134.550 68.696 -134.562 68.687 -134.598 68.716 -134.788 68.822 -134.948 68.919 -135.095 68.910 -135.210 68.892 -135.322 68.892 -135.451 68.921 -135.642 68.921 -135.783 68.865 -135.833 68.847 -135.661 68.782 -135.683 68.685 -135.488 68.685 -135.563 68.694 -135.654 68.779 -135.924 68.844 -136.172 68.874 -136.296 68.892 -136.456 68.901 -136.574 68.910 -136.730 68.901 -136.845 68.883 -136.945 68.892 -137.089 68.960 -137.344 68.951 -137.470 69.007 -137.694 69.025 -137.866 69.072 -138.076 69.111 -138.269 69.176 -138.522 69.282 -138.688 69.224 -138.720 69.309 -138.979 69.406 -139.231 69.503 -139.408 69.494 -139.523 69.541 -139.734 69.571 -139.915 69.598 -140.104 69.598 -140.365 69.588 -140.480 69.580 -140.608 69.588 -140.754 69.598 -140.913 69.607 -141.008 60.309 -141.008 60.283 -140.859 60.255 -140.699 60.283 -140.622 60.328 -140.559 60.272 -140.347 60.218 -140.138 ; #2426 12 68.872 -132.605 68.844 -132.704 68.863 -132.875 68.881 -133.045 68.843 -133.114 68.843 -133.243 68.890 -133.449 68.851 -133.516 68.754 -133.323 68.736 -133.153 68.736 -133.294 68.784 -133.500 68.881 -133.658 68.928 -133.605 68.928 -133.475 68.955 -133.389 69.041 -133.386 69.070 -133.304 69.079 -133.177 69.097 -133.076 69.011 -133.066 69.097 -133.064 69.165 -133.043 69.212 -132.978 69.248 -132.906 69.277 -132.811 69.248 -132.634 69.296 -132.580 69.314 -132.479 69.341 -132.393 69.370 -132.298 69.426 -132.245 69.494 -132.212 69.530 -132.128 69.539 -132.001 69.566 -131.901 69.575 -131.772 69.575 -131.499 69.605 -131.416 69.622 -131.302 69.613 -131.223 69.587 -131.311 69.490 -131.179 69.422 -131.200 69.374 -131.255 69.442 -131.234 69.548 -131.352 69.442 -131.270 69.384 -131.306 69.356 -131.393 69.338 -131.507 69.377 -131.425 69.406 -131.342 69.503 -131.434 69.456 -131.489 69.399 -131.541 69.370 -131.625 69.467 -131.650 69.476 -131.795 69.449 -131.893 69.372 -131.912 69.325 -131.979 69.307 -132.080 69.269 -132.148 69.269 -132.291 69.239 -132.374 69.221 -132.487 69.174 -132.541 69.135 -132.620 69.201 -132.585 69.154 -132.650 69.135 -132.750 69.106 -132.846 69.106 -132.976 69.059 -133.040 68.953 -132.869 68.876 -132.875 68.913 -132.804 68.865 -132.598 ; #2427 12 70.576 -116.416 70.535 -116.483 70.535 -116.627 70.555 -116.527 70.574 -116.412 ; #2428 12 68.130 -109.607 68.033 -109.477 68.051 -109.641 68.128 -109.604 ; #2429 12 68.015 -109.118 67.918 -109.052 67.945 -109.216 68.013 -109.166 68.013 -109.115 ; #2430 12 67.607 -108.360 67.510 -108.295 67.501 -108.422 67.557 -108.357 67.605 -108.357 ; #2431 12 61.865 -93.222 61.865 -93.188 61.928 -93.121 61.956 -93.281 61.863 -93.220 ; #2432 12 73.504 -107.189 73.504 -107.038 73.454 -106.810 73.403 -106.595 73.334 -106.352 73.231 -106.315 73.212 -106.136 73.099 -105.964 72.996 -105.715 72.936 -105.637 72.917 -105.459 72.989 -105.431 73.030 -105.357 73.059 -105.252 73.131 -105.224 73.159 -105.118 73.200 -105.029 73.250 -104.968 73.300 -104.907 73.341 -104.833 73.411 -104.788 73.492 -104.761 73.542 -104.700 73.655 -104.858 73.674 -105.026 73.693 -105.067 73.784 -105.357 73.784 -105.645 73.775 -105.782 73.755 -105.903 73.755 -106.505 73.746 -106.654 73.736 -106.790 73.705 -106.879 73.655 -106.951 73.614 -107.026 73.585 -107.119 73.545 -107.207 73.504 -107.182 ; #2433 12 68.971 -100.126 69.068 -100.117 69.133 -100.287 69.086 -100.369 68.989 -100.273 68.971 -100.121 ; #2434 12 72.405 -102.099 72.343 -101.874 72.333 -101.724 72.333 -101.589 72.374 -101.487 72.323 -101.279 72.220 -101.183 72.252 -101.093 72.242 -100.933 72.139 -100.706 72.037 -100.546 71.934 -100.320 71.905 -100.213 71.823 -99.962 71.720 -99.829 71.608 -99.575 71.505 -99.524 71.402 -99.444 71.392 -99.284 71.421 -99.191 71.318 -98.954 71.327 -98.820 71.337 -98.689 71.378 -98.611 71.416 -98.519 71.448 -98.404 71.498 -98.328 71.548 -98.264 71.651 -98.502 71.754 -98.646 71.845 -98.639 71.886 -98.550 71.936 -98.486 71.771 -98.547 71.680 -98.274 71.689 -98.153 71.680 -97.993 71.649 -97.815 71.649 -97.668 71.668 -97.536 71.699 -97.445 71.718 -97.325 71.768 -97.261 71.809 -97.170 71.840 -97.066 71.881 -96.976 71.840 -96.785 71.900 -96.720 71.931 -96.911 71.991 -96.846 71.991 -96.711 72.060 -96.955 72.091 -96.838 72.111 -96.718 72.201 -96.708 72.304 -96.864 72.345 -97.069 72.345 -96.921 72.364 -96.800 72.396 -96.683 72.436 -96.603 72.465 -96.508 72.568 -96.626 72.671 -96.675 72.774 -96.765 72.733 -96.843 72.724 -96.991 72.704 -97.113 72.673 -97.206 72.632 -97.297 72.724 -97.276 72.827 -97.368 72.877 -97.587 72.896 -97.452 72.999 -97.556 73.028 -97.746 73.047 -97.922 73.056 -98.073 73.047 -98.221 73.015 -98.325 72.996 -98.448 72.946 -98.513 72.906 -98.592 73.018 -98.672 73.049 -98.580 73.078 -98.471 73.118 -98.393 73.159 -98.302 73.178 -98.192 73.219 -98.100 73.260 -98.022 73.300 -97.930 73.319 -97.820 73.329 -97.684 73.348 -97.561 73.368 -97.452 73.387 -97.329 73.490 -97.555 73.480 -97.678 73.461 -97.801 73.542 -97.767 73.523 -97.602 73.564 -97.510 73.564 -97.372 73.604 -97.267 73.623 -97.156 73.674 -97.078 73.786 -97.250 73.858 -97.503 73.858 -97.641 73.878 -97.820 73.846 -97.939 73.897 -97.860 73.887 -97.997 73.846 -98.090 73.827 -98.201 73.796 -98.319 73.796 -98.457 73.786 -98.581 73.777 -98.718 73.767 -98.868 73.748 -98.978 73.748 -99.142 73.739 -99.265 73.688 -99.343 73.791 -99.531 73.832 -99.740 73.944 -100.028 73.935 -100.122 73.925 -100.247 73.906 -100.356 73.868 -100.438 73.837 -100.242 73.846 -100.134 73.878 -100.042 73.818 -100.092 73.786 -100.142 73.805 -100.334 73.825 -100.501 73.853 -100.681 73.844 -100.817 73.815 -100.913 73.815 -101.064 73.784 -101.168 73.734 -101.245 73.674 -101.007 73.602 -100.750 73.521 -100.769 73.561 -100.979 73.599 -101.185 73.609 -101.350 73.559 -101.413 73.559 -101.550 73.528 -101.642 73.496 -101.759 73.416 -101.489 73.334 -101.207 73.274 -100.969 73.293 -100.834 73.313 -100.713 73.332 -100.604 73.382 -100.540 73.279 -100.282 73.238 -100.169 73.229 -100.005 73.200 -100.113 73.200 -100.180 73.269 -100.417 73.279 -100.568 73.238 -100.659 73.188 -100.723 73.150 -100.505 73.037 -100.287 72.934 -100.259 72.896 -100.365 72.896 -100.501 72.946 -100.425 73.059 -100.522 73.039 -100.630 72.980 -100.693 72.867 -100.516 72.785 -100.548 72.766 -100.668 72.766 -100.966 72.785 -101.019 72.716 -101.054 72.726 -101.205 72.726 -101.353 72.745 -101.530 72.795 -101.467 72.814 -101.631 72.917 -101.769 73.030 -101.959 73.089 -102.197 73.099 -102.361 73.080 -102.482 73.061 -102.590 73.042 -102.698 72.991 -102.760 72.922 -102.807 72.819 -102.952 72.706 -102.852 72.603 -102.580 72.553 -102.358 72.523 -102.177 72.420 -101.973 72.400 -102.080 72.391 -102.079 ; #2435 12 53.302 -80.133 53.389 -80.204 53.405 -80.140 53.310 -80.053 53.302 -80.136 ; #2436 12 76.367 -104.634 76.367 -104.277 76.357 -104.115 76.346 -103.926 76.357 -103.802 76.367 -103.664 76.378 -103.539 76.443 -103.344 76.487 -103.279 76.542 -103.521 76.532 -103.647 76.611 -103.932 76.642 -104.132 76.632 -104.269 76.687 -104.212 76.707 -104.407 76.707 -104.564 76.687 -104.683 76.677 -104.705 76.655 -104.838 76.577 -104.852 76.464 -104.648 76.365 -104.625 ; #2437 12 63.799 -85.829 63.707 -85.740 63.605 -85.738 63.513 -85.745 63.420 -85.778 63.319 -85.762 63.226 -85.722 63.164 -85.540 63.164 -85.406 63.172 -85.282 63.209 -85.195 63.226 -85.089 63.254 -84.982 63.291 -84.896 63.336 -84.806 63.353 -84.700 63.407 -84.618 63.489 -84.573 63.562 -84.510 63.616 -84.427 63.653 -84.328 63.644 -84.197 63.700 -84.128 63.717 -84.021 63.771 -83.939 63.808 -83.851 63.808 -83.728 63.900 -83.734 64.002 -83.770 64.066 -83.697 64.128 -83.633 64.120 -83.490 64.156 -83.390 64.165 -83.276 64.202 -83.187 64.109 -83.110 64.053 -83.180 63.999 -83.007 63.991 -82.876 63.991 -82.742 63.962 -82.580 63.870 -82.471 63.836 -82.562 63.799 -82.650 63.707 -82.586 63.679 -82.437 63.707 -82.330 63.715 -82.215 63.679 -82.059 63.670 -81.916 63.596 -81.726 63.588 -81.596 63.534 -81.413 63.498 -81.257 63.480 -81.106 63.553 -81.041 63.581 -80.944 63.618 -80.843 63.655 -80.755 63.689 -80.663 63.745 -80.581 63.754 -80.443 63.771 -80.336 63.864 -80.481 63.892 -80.630 63.909 -80.780 63.917 -80.653 64.010 -80.667 64.027 -80.806 64.120 -80.974 64.092 -81.071 64.030 -81.137 64.066 -81.294 64.092 -81.441 64.055 -81.540 64.047 -81.667 64.038 -81.793 64.021 -81.900 64.012 -82.027 64.105 -81.990 64.113 -81.864 64.139 -81.754 64.204 -81.691 64.296 -81.849 64.389 -81.852 64.482 -81.840 64.583 -81.996 64.675 -82.154 64.693 -82.295 64.774 -82.508 64.746 -82.605 64.774 -82.767 64.876 -82.923 64.912 -83.082 64.940 -83.245 65.035 -83.397 65.131 -83.458 65.167 -83.630 65.167 -83.879 65.197 -84.033 65.215 -84.187 65.312 -84.249 65.398 -84.462 65.474 -84.677 65.406 -84.732 65.350 -84.811 65.253 -84.847 65.215 -84.931 65.312 -85.066 65.409 -85.068 65.495 -85.293 65.571 -85.236 65.598 -85.139 65.704 -85.238 65.801 -85.265 65.837 -85.440 65.801 -85.527 65.898 -85.567 65.916 -85.711 65.886 -85.818 65.851 -85.918 65.792 -85.981 65.744 -86.057 65.571 -86.149 65.398 -86.217 65.301 -86.226 65.204 -86.197 65.097 -86.185 65.041 -86.251 64.947 -86.227 64.854 -86.246 64.789 -86.306 64.717 -86.369 64.643 -86.421 64.551 -86.440 64.458 -86.472 64.357 -86.444 64.264 -86.376 64.171 -86.274 64.090 -86.318 64.081 -86.443 64.045 -86.542 64.027 -86.648 63.999 -86.756 63.982 -86.862 63.945 -86.959 63.909 -87.058 63.855 -87.128 63.801 -87.197 63.747 -87.279 63.665 -87.320 63.584 -87.107 63.584 -86.984 63.612 -86.878 63.657 -86.799 63.691 -86.699 63.691 -86.577 63.674 -86.426 63.674 -86.303 63.702 -86.196 63.719 -86.090 63.728 -85.976 63.756 -85.870 63.793 -85.808 ; #2438 12 55.932 -80.109 55.899 -79.968 55.959 -79.902 56.011 -79.818 56.082 -79.750 56.142 -79.683 56.053 -79.669 55.982 -79.727 55.920 -79.802 55.849 -79.860 55.893 -79.780 55.893 -79.666 55.909 -79.555 55.980 -79.497 56.041 -79.420 56.130 -79.376 56.209 -79.324 56.119 -79.265 55.941 -79.352 56.011 -79.294 56.101 -79.239 56.190 -79.195 56.280 -79.199 56.377 -79.162 56.280 -79.095 56.200 -79.158 56.122 -79.211 56.032 -79.254 55.934 -79.292 56.014 -79.240 56.103 -79.185 56.192 -79.141 56.271 -79.089 56.333 -79.013 56.423 -79.038 56.475 -79.193 56.564 -79.243 56.616 -79.398 56.527 -79.407 56.438 -79.428 56.348 -79.482 56.250 -79.519 56.215 -79.605 56.172 -79.685 56.250 -79.623 56.340 -79.592 56.429 -79.548 56.527 -79.546 56.438 -79.590 56.348 -79.620 56.269 -79.672 56.225 -79.762 56.190 -79.848 56.111 -79.900 56.057 -79.982 55.997 -80.049 55.970 -80.107 55.926 -80.104 ; #2439 12 72.930 -96.894 72.910 -97.015 72.891 -97.125 72.779 -97.075 72.779 -96.939 72.819 -96.847 72.932 -96.898 ; #2440 12 71.878 -95.521 71.818 -95.558 71.768 -95.624 71.778 -95.503 71.881 -95.524 ; #2441 12 56.978 -79.909 56.986 -79.937 56.916 -80.007 56.891 -79.861 56.980 -79.911 ; #2442 12 62.503 -84.056 62.410 -84.003 62.317 -83.846 62.225 -83.844 62.216 -83.703 62.253 -83.617 62.281 -83.511 62.289 -83.398 62.216 -83.209 62.253 -83.123 62.289 -83.024 62.317 -82.929 62.363 -82.839 62.417 -82.768 62.462 -82.689 62.488 -82.581 62.561 -82.527 62.606 -82.436 62.623 -82.331 62.652 -82.225 62.697 -82.133 62.742 -82.054 62.835 -82.057 62.916 -82.011 62.978 -82.202 63.015 -82.358 62.987 -82.453 62.953 -82.554 62.970 -82.703 62.961 -82.828 62.933 -82.923 62.897 -83.022 62.871 -83.120 62.880 -83.261 62.942 -83.440 62.907 -83.530 62.862 -83.620 62.789 -83.674 62.697 -83.708 62.652 -83.787 62.589 -83.849 62.552 -83.947 62.515 -84.034 62.498 -84.054 ; #2443 12 74.636 -97.475 74.627 -97.600 74.595 -97.707 74.545 -97.787 74.486 -97.854 74.486 -97.714 74.516 -97.619 74.536 -97.482 74.639 -97.478 ; #2444 12 69.224 -90.690 69.232 -90.636 69.289 -90.571 69.386 -90.706 69.377 -90.826 69.300 -90.880 69.318 -90.759 69.221 -90.687 ; #2445 12 77.763 -93.463 77.797 -93.617 77.828 -93.844 77.818 -93.974 77.797 -94.112 77.808 -94.276 77.808 -94.582 77.818 -94.747 77.839 -94.957 77.839 -95.116 77.828 -95.272 77.808 -95.397 77.818 -95.576 77.852 -95.792 77.831 -95.931 77.821 -96.074 77.810 -96.216 77.789 -96.327 77.768 -96.450 77.724 -96.547 77.658 -96.581 77.545 -96.274 77.535 -96.097 77.535 -95.618 77.525 -95.441 77.535 -95.286 77.545 -95.144 77.535 -94.954 77.545 -94.811 77.535 -94.634 77.515 -94.454 77.525 -94.312 77.504 -94.117 77.515 -93.989 77.515 -93.830 77.580 -93.793 77.635 -93.738 77.690 -93.656 77.700 -93.515 77.766 -93.464 ; #2446 12 74.019 -90.151 74.088 -90.134 74.079 -90.215 74.028 -90.299 74.019 -90.148 ; #2447 12 76.648 -88.951 76.524 -88.859 76.449 -88.911 76.504 -88.839 76.535 -88.732 76.648 -88.894 76.770 -88.960 76.802 -88.865 76.823 -88.740 76.755 -88.778 76.642 -88.699 76.519 -88.576 76.430 -88.595 76.420 -88.422 76.399 -88.234 76.420 -88.109 76.388 -87.904 76.409 -87.793 76.475 -87.737 76.587 -87.828 76.608 -87.703 76.496 -87.530 76.417 -87.252 76.396 -87.077 76.406 -86.936 76.461 -86.877 76.516 -86.804 76.538 -86.666 76.650 -86.724 76.561 -86.445 76.527 -86.550 76.414 -86.548 76.404 -86.362 76.404 -86.219 76.394 -86.061 76.372 -85.858 76.339 -85.651 76.349 -85.509 76.317 -85.306 76.328 -85.153 76.339 -85.012 76.339 -84.712 76.359 -84.600 76.394 -84.794 76.438 -85.004 76.459 -85.192 76.571 -85.261 76.616 -85.185 76.504 -84.976 76.469 -84.781 76.480 -84.640 76.480 -84.497 76.579 -84.475 76.692 -84.546 76.650 -84.326 76.527 -84.143 76.461 -83.902 76.461 -83.746 76.451 -83.574 76.496 -83.483 76.608 -83.492 76.721 -83.645 76.608 -83.351 76.485 -83.283 76.441 -83.075 76.430 -82.916 76.441 -82.774 76.441 -82.618 76.451 -82.477 76.527 -82.430 76.640 -82.509 76.674 -82.703 76.786 -82.798 76.674 -82.535 76.674 -82.378 76.695 -82.238 76.695 -82.066 76.674 -82.194 76.652 -82.320 76.540 -82.199 76.519 -82.025 76.509 -81.854 76.509 -81.710 76.542 -81.602 76.542 -81.445 76.532 -81.273 76.420 -81.041 76.378 -81.138 76.323 -81.202 76.223 -81.229 76.168 -81.293 76.189 -81.166 76.200 -81.039 76.200 -80.883 76.233 -80.775 76.244 -80.633 76.278 -80.539 76.268 -80.368 76.288 -80.255 76.288 -80.185 76.323 -80.090 76.333 -79.949 76.354 -79.822 76.343 -79.664 76.343 -79.521 76.409 -79.457 76.454 -79.377 76.475 -79.236 76.519 -79.155 76.585 -79.090 76.605 -78.963 76.493 -78.778 76.493 -78.635 76.538 -78.540 76.559 -78.426 76.624 -78.359 76.668 -78.278 76.668 -78.121 76.734 -78.069 76.823 -78.048 76.935 -78.135 77.048 -78.337 77.059 -78.510 77.038 -78.639 76.993 -78.734 76.949 -78.830 76.915 -78.926 76.860 -79.019 76.894 -79.212 76.970 -79.162 76.970 -79.464 76.990 -79.652 77.022 -79.538 77.056 -79.442 77.111 -79.363 77.200 -79.331 77.255 -79.555 77.265 -79.714 77.276 -79.875 77.265 -80.019 77.255 -80.149 77.221 -80.258 77.221 -80.272 77.187 -80.395 77.145 -80.480 77.145 -80.625 77.187 -80.526 77.242 -80.447 77.252 -80.621 77.263 -80.796 77.284 -80.971 77.284 -81.129 77.305 -81.305 77.294 -81.449 77.273 -81.577 77.252 -81.705 77.232 -81.834 77.210 -81.960 77.287 -82.246 77.331 -82.456 77.342 -82.299 77.320 -82.095 77.331 -81.966 77.331 -81.807 77.342 -81.664 77.397 -81.585 77.397 -81.744 77.475 -82.005 77.588 -82.026 77.700 -82.193 77.622 -81.930 77.509 -81.666 77.444 -81.424 77.389 -81.171 77.354 -80.976 77.334 -80.786 77.323 -80.625 77.313 -80.452 77.302 -80.264 77.323 -80.179 77.344 -80.064 77.344 -79.876 77.334 -79.715 77.323 -79.554 77.334 -79.397 77.354 -79.267 77.389 -79.171 77.389 -78.998 77.344 -79.094 77.354 -78.950 77.376 -78.835 77.386 -78.677 77.407 -78.547 77.475 -78.484 77.486 -78.327 77.530 -78.231 77.585 -78.162 77.684 -78.143 77.706 -78.320 77.761 -78.237 77.883 -78.440 77.938 -78.679 77.960 -78.549 78.004 -78.466 77.972 -78.274 77.962 -78.098 77.962 -77.439 77.920 -77.220 77.931 -77.074 77.952 -76.956 77.962 -76.811 78.007 -76.713 78.027 -76.568 78.007 -76.377 77.975 -76.187 78.017 -76.098 78.051 -75.985 78.140 -75.962 78.140 -76.122 78.151 -76.299 78.151 -76.487 78.172 -76.664 78.172 -76.838 78.237 -77.092 78.237 -76.917 78.258 -76.785 78.237 -76.594 78.247 -76.461 78.237 -76.285 78.227 -76.123 78.206 -75.919 78.216 -75.786 78.261 -75.687 78.305 -75.601 78.305 -75.425 78.381 -75.384 78.415 -75.578 78.436 -75.770 78.446 -75.960 78.457 -76.123 78.457 -76.271 78.512 -76.511 78.501 -76.644 78.522 -76.863 78.533 -76.701 78.544 -76.568 78.533 -76.392 78.512 -76.187 78.501 -76.009 78.501 -75.834 78.512 -75.673 78.512 -75.511 78.533 -75.392 78.533 -75.229 78.554 -75.097 78.666 -75.077 78.779 -75.085 78.813 -74.970 78.845 -75.163 78.865 -75.386 78.876 -75.550 78.865 -75.712 78.876 -75.903 78.865 -76.065 78.855 -76.200 78.865 -76.391 78.865 -76.568 78.886 -76.434 78.886 -76.272 78.897 -76.124 78.952 -76.007 78.973 -76.213 78.973 -76.377 78.994 -76.556 78.994 -76.883 78.983 -77.031 78.983 -77.194 78.963 -77.342 78.963 -77.504 78.952 -77.652 78.941 -77.814 78.920 -77.961 78.886 -78.060 78.855 -78.179 78.821 -78.279 78.811 -78.412 78.855 -78.328 78.897 -78.212 78.931 -78.112 78.952 -77.993 78.986 -77.879 79.020 -78.092 79.020 -78.269 79.041 -78.462 79.030 -78.624 79.030 -78.773 79.041 -78.966 79.041 -78.817 79.052 -78.683 79.052 -78.533 79.041 -78.354 79.041 -78.027 79.007 -77.815 78.996 -77.636 79.018 -77.503 79.028 -77.368 79.038 -77.221 79.049 -77.059 79.049 -76.895 79.059 -76.733 79.049 -76.541 79.038 -76.362 79.073 -76.247 79.093 -76.440 79.104 -76.620 79.114 -76.784 79.114 -77.291 79.125 -77.470 79.125 -77.634 79.136 -77.813 79.136 -78.126 79.146 -78.318 79.146 -78.141 79.156 -78.007 79.167 -77.829 79.156 -77.652 79.156 -77.488 79.146 -77.295 79.146 -76.968 79.156 -76.819 79.146 -76.654 79.156 -76.506 79.156 -76.342 79.146 -76.163 79.033 -75.854 79.023 -75.690 79.012 -75.512 79.002 -75.333 79.002 -75.171 78.992 -75.024 78.992 -74.712 79.036 -74.610 79.148 -74.917 79.159 -74.754 79.180 -74.634 79.191 -74.826 79.201 -74.990 79.191 -75.153 79.191 -75.481 79.201 -75.645 79.191 -75.809 79.191 -76.136 79.221 -76.330 79.221 -76.480 79.232 -76.645 79.232 -76.959 79.221 -77.122 79.221 -77.299 79.211 -77.463 79.201 -77.625 79.235 -77.511 79.266 -77.720 79.266 -77.884 79.311 -78.112 79.301 -77.947 79.301 -77.783 79.290 -77.604 79.279 -77.438 79.290 -77.290 79.402 -77.453 79.402 -77.302 79.303 -76.995 79.303 -76.681 79.293 -76.501 79.303 -76.352 79.293 -76.187 79.313 -76.053 79.413 -76.359 79.423 -76.538 79.423 -76.716 79.434 -76.882 79.434 -77.047 79.468 -77.260 79.457 -77.081 79.457 -76.930 79.468 -76.767 79.457 -76.587 79.447 -76.421 79.416 -76.212 79.382 -76.000 79.360 -75.819 79.350 -75.654 79.329 -75.297 79.329 -75.119 79.363 -75.001 79.429 -74.943 79.394 -74.703 79.394 -74.206 79.416 -74.072 79.492 -74.027 79.447 -73.800 79.447 -73.454 79.468 -73.319 79.499 -73.211 79.622 -73.367 79.688 -73.609 79.698 -73.788 79.709 -73.954 79.720 -74.134 79.730 -74.299 79.720 -74.436 79.720 -74.768 79.775 -74.665 79.785 -74.500 79.795 -74.350 79.806 -74.199 79.806 -74.034 79.785 -73.852 79.751 -73.626 79.751 -73.447 79.740 -73.267 79.751 -73.117 79.628 -73.006 79.607 -72.813 79.607 -72.647 79.617 -72.510 79.596 -72.317 79.607 -72.153 79.628 -72.016 79.628 -71.851 79.649 -71.714 79.659 -71.564 79.680 -71.441 79.691 -71.277 79.724 -71.171 79.756 -71.048 79.811 -71.288 79.801 -71.453 79.845 -71.348 79.866 -71.196 79.876 -71.045 79.887 -70.894 79.887 -70.728 79.897 -70.696 79.942 -70.637 80.022 -70.923 79.997 -71.057 79.986 -71.222 79.976 -71.388 79.966 -71.554 79.955 -71.719 79.966 -71.928 79.955 -72.065 79.955 -72.415 79.976 -72.292 79.986 -72.108 79.997 -71.958 80.048 -72.190 80.091 -72.397 80.078 -72.200 80.078 -72.048 79.997 -71.791 79.997 -71.639 80.009 -71.488 80.036 -71.343 80.062 -71.211 80.062 -71.044 80.088 -70.911 80.101 -70.762 80.088 -70.593 80.074 -70.396 80.074 -70.229 80.130 -70.135 80.225 -70.421 80.365 -70.554 80.447 -70.827 80.447 -70.631 80.379 -70.390 80.254 -70.051 80.254 -69.884 80.268 -69.720 80.281 -69.570 80.307 -69.436 80.375 -69.356 80.418 -69.257 80.473 -69.160 80.499 -69.039 80.555 -68.942 80.581 -68.821 80.607 -68.687 80.633 -68.552 80.660 -68.417 80.702 -68.302 80.715 -68.151 80.741 -68.016 80.780 -67.896 80.794 -67.745 80.820 -67.623 80.875 -67.538 80.875 -67.370 80.888 -67.218 80.914 -67.082 80.941 -66.932 80.967 -66.796 80.993 -66.673 81.048 -66.572 81.075 -66.422 81.114 -66.316 81.140 -66.164 81.166 -66.027 81.166 -65.872 81.179 -65.705 81.192 -65.537 81.219 -65.400 81.245 -65.263 81.271 -65.124 81.284 -64.972 81.310 -64.833 81.336 -64.709 81.389 -64.589 81.473 -64.860 81.473 -65.016 81.461 -65.186 81.461 -65.355 81.447 -65.523 81.434 -65.677 81.434 -65.861 81.408 -65.999 81.395 -66.153 81.382 -66.292 81.369 -66.445 81.369 -66.601 81.356 -66.754 81.343 -66.908 81.329 -67.046 81.317 -67.214 81.317 -67.384 81.303 -67.523 81.277 -67.674 81.264 -67.827 81.251 -67.980 81.225 -68.144 81.212 -68.283 81.212 -68.467 81.199 -68.619 81.186 -68.772 81.173 -68.925 81.159 -69.062 81.147 -69.216 81.147 -69.384 81.133 -69.537 81.108 -69.658 81.082 -69.793 81.055 -69.928 81.042 -70.095 81.068 -69.974 81.094 -69.839 81.108 -70.053 81.108 -70.222 81.120 -70.040 81.133 -69.889 81.147 -69.705 81.173 -69.569 81.186 -69.417 81.199 -69.249 81.199 -69.080 81.212 -68.928 81.225 -68.789 81.238 -68.605 81.264 -68.468 81.277 -68.330 81.303 -68.179 81.317 -68.012 81.329 -67.873 81.343 -67.705 81.356 -67.566 81.382 -67.415 81.395 -67.276 81.408 -67.123 81.421 -66.969 81.447 -66.691 81.490 -66.914 81.502 -67.085 81.502 -67.472 81.490 -67.612 81.490 -67.814 81.477 -67.982 81.477 -68.138 81.464 -68.324 81.464 -68.494 81.451 -68.661 81.477 -68.865 81.477 -68.492 81.558 -68.766 81.584 -68.970 81.627 -69.180 81.653 -69.384 81.653 -69.213 81.614 -69.008 81.588 -68.804 81.548 -68.598 81.506 -68.359 81.506 -68.204 81.519 -68.050 81.533 -67.911 81.533 -67.727 81.545 -67.540 81.545 -67.185 81.558 -67.032 81.558 -66.848 81.572 -66.665 81.558 -66.478 81.558 -66.308 81.584 -66.170 81.584 -66.014 81.572 -65.843 81.598 -65.690 81.610 -65.521 81.624 -65.707 81.624 -66.033 81.637 -65.847 81.650 -65.691 81.663 -65.538 81.706 -65.434 81.679 -65.198 81.692 -65.044 81.666 -64.857 81.666 -64.483 81.679 -64.328 81.706 -64.204 81.732 -64.049 81.745 -63.909 81.771 -63.770 81.797 -63.645 81.810 -63.476 81.823 -63.334 81.836 -63.179 81.862 -63.039 81.876 -62.884 81.902 -62.743 81.915 -62.589 81.941 -62.448 81.954 -62.278 81.993 -62.151 82.019 -62.026 82.075 -61.887 82.088 -61.731 82.101 -61.545 82.127 -61.405 82.153 -61.263 82.209 -61.155 82.363 -61.398 82.402 -61.616 82.402 -61.866 82.414 -62.054 82.428 -62.256 82.402 -62.428 82.444 -62.289 82.444 -62.653 82.431 -62.811 82.431 -62.969 82.375 -63.074 82.363 -63.265 82.363 -63.438 82.375 -63.265 82.418 -63.158 82.470 -63.065 82.512 -63.287 82.594 -63.545 82.637 -63.784 82.650 -63.628 82.663 -63.469 82.745 -63.728 82.745 -64.074 82.731 -64.246 82.706 -64.388 82.680 -64.544 82.721 -64.754 82.803 -65.030 82.803 -65.203 82.791 -65.346 82.696 -65.401 82.696 -65.560 82.748 -65.814 82.748 -65.988 82.735 -66.144 82.709 -66.300 82.696 -66.456 82.683 -66.614 82.656 -66.739 82.644 -66.896 82.630 -67.037 82.618 -67.180 82.604 -67.336 82.591 -67.477 82.578 -67.634 82.578 -68.172 82.565 -68.342 82.565 -68.530 82.552 -68.686 82.594 -68.568 82.620 -68.429 82.620 -68.240 82.634 -68.085 82.647 -67.895 82.660 -67.705 82.673 -67.519 82.699 -67.236 82.712 -67.094 82.725 -66.936 82.752 -66.763 82.764 -66.606 82.791 -66.433 82.817 -66.421 82.843 -66.642 82.856 -66.848 82.829 -66.988 82.843 -67.179 82.843 -67.368 82.869 -67.574 82.869 -67.923 82.856 -68.080 82.898 -68.308 82.911 -68.499 82.885 -68.655 82.885 -69.017 82.911 -69.225 82.911 -69.429 82.898 -69.584 82.937 -69.477 82.937 -69.652 83.006 -69.961 83.006 -70.503 82.993 -70.659 83.006 -70.836 82.980 -70.976 82.993 -71.153 82.967 -71.276 82.941 -71.416 82.915 -71.540 82.889 -71.346 82.849 -71.134 82.807 -70.903 82.807 -71.077 82.833 -71.459 82.885 -71.703 82.983 -71.662 82.997 -71.869 82.997 -72.377 82.983 -72.533 82.997 -72.740 82.970 -72.878 82.957 -73.050 82.931 -73.186 82.918 -73.328 82.892 -73.467 82.865 -73.604 82.839 -73.727 82.813 -73.517 82.719 -73.213 82.706 -73.036 82.680 -72.813 82.666 -72.636 82.624 -72.751 82.666 -72.968 82.680 -73.174 82.692 -73.379 82.719 -73.575 82.745 -73.769 82.856 -74.098 82.925 -74.367 82.937 -74.574 82.951 -74.767 82.951 -75.163 82.925 -75.315 82.937 -75.522 82.951 -75.715 82.951 -75.904 82.964 -76.130 82.951 -76.286 82.937 -76.440 82.925 -76.581 82.925 -77.170 82.937 -77.378 82.869 -77.437 82.843 -77.226 82.829 -77.048 82.778 -76.814 82.709 -76.557 82.709 -76.147 82.696 -76.287 82.644 -76.402 82.618 -76.176 82.591 -75.980 82.565 -75.755 82.552 -75.578 82.539 -75.734 82.526 -75.873 82.483 -75.971 82.457 -76.122 82.431 -76.243 82.444 -76.434 82.470 -76.299 82.552 -76.241 82.578 -76.452 82.591 -76.643 82.660 -76.899 82.716 -77.138 82.797 -77.367 82.797 -77.555 82.810 -77.763 82.836 -77.989 82.797 -78.090 82.771 -78.227 82.813 -78.366 82.839 -78.230 82.882 -78.119 82.895 -78.312 82.827 -78.401 82.853 -78.502 82.879 -78.699 82.853 -78.849 82.810 -78.945 82.879 -79.221 82.905 -79.432 82.892 -79.588 82.879 -79.757 82.865 -79.944 82.865 -80.118 82.839 -80.238 82.827 -80.408 82.771 -80.166 82.771 -79.977 82.757 -79.784 82.702 -79.875 82.676 -79.678 82.650 -79.452 82.637 -79.273 82.637 -79.101 82.624 -78.892 82.624 -78.513 82.611 -78.668 82.611 -78.841 82.624 -79.062 82.611 -79.231 82.624 -79.423 82.637 -79.602 82.650 -79.809 82.594 -79.885 82.676 -80.180 82.731 -80.435 82.745 -80.629 82.745 -80.802 82.757 -80.995 82.757 -81.312 82.689 -81.416 82.663 -81.203 82.594 -80.942 82.483 -80.617 82.483 -80.933 82.539 -81.190 82.565 -81.402 82.578 -81.595 82.591 -81.788 82.604 -81.981 82.604 -82.168 82.510 -82.198 82.483 -81.970 82.457 -81.773 82.444 -81.566 82.444 -81.738 82.457 -81.945 82.444 -82.113 82.457 -82.291 82.457 -82.478 82.402 -82.582 82.306 -82.594 82.265 -82.358 82.238 -82.146 82.196 -81.911 82.169 -81.699 82.143 -81.503 82.117 -81.277 82.117 -81.106 82.035 -80.779 82.023 -80.589 82.009 -80.412 81.996 -80.222 81.984 -80.046 81.927 -79.807 81.859 -79.522 81.778 -79.232 81.778 -79.404 81.816 -79.645 81.902 -79.941 81.941 -80.155 81.954 -80.346 81.941 -80.498 81.984 -80.732 81.996 -80.937 82.039 -81.186 82.052 -81.377 82.078 -81.603 82.104 -81.799 82.117 -81.990 82.173 -82.230 82.212 -82.462 82.238 -82.673 82.238 -82.860 82.153 -82.888 82.042 -82.549 82.042 -82.392 82.029 -82.200 81.987 -81.966 82.013 -82.176 82.013 -82.504 82.025 -82.680 82.025 -83.056 82.121 -83.044 82.245 -83.405 82.284 -83.623 82.310 -83.834 82.310 -84.180 82.323 -84.387 82.337 -84.580 82.363 -84.778 82.375 -84.610 82.402 -84.667 82.402 -84.854 82.414 -85.031 82.414 -85.237 82.402 -85.376 82.402 -85.533 82.388 -85.717 82.363 -85.849 82.349 -85.670 82.225 -85.304 82.212 -85.455 82.186 -85.572 82.173 -85.738 82.173 -86.616 82.075 -86.618 82.061 -86.440 82.049 -86.220 82.049 -86.048 82.023 -85.850 81.996 -85.622 81.996 -85.451 81.984 -85.245 81.984 -85.060 81.927 -84.801 81.833 -84.812 81.927 -85.129 81.941 -85.307 81.941 -85.649 81.800 -85.336 81.869 -85.613 81.938 -85.877 81.980 -86.116 81.993 -86.306 81.993 -86.839 81.924 -86.887 81.898 -87.017 81.830 -86.752 81.869 -86.986 82.009 -87.318 82.035 -87.531 82.023 -87.682 82.035 -87.859 82.035 -88.044 82.023 -88.196 82.023 -88.397 82.009 -88.532 81.996 -88.668 81.970 -88.797 81.944 -88.927 81.862 -88.980 81.888 -89.193 81.846 -89.296 81.833 -89.089 81.790 -89.191 81.751 -89.284 81.862 -89.635 81.862 -89.791 81.850 -89.942 81.836 -89.949 81.850 -90.062 81.850 -90.233 81.836 -90.367 81.823 -90.549 81.797 -90.678 81.784 -90.813 81.784 -90.998 81.715 -91.070 81.715 -91.411 81.689 -91.539 81.663 -91.653 81.607 -91.730 81.581 -91.886 81.569 -91.822 81.555 -91.644 81.470 -91.335 81.497 -91.176 81.497 -91.005 81.552 -90.941 81.578 -90.813 81.605 -90.672 81.605 -90.331 81.646 -90.229 81.565 -89.926 81.578 -89.918 81.565 -89.681 81.565 -89.525 81.552 -89.659 81.552 -89.829 81.509 -89.930 81.509 -90.021 81.497 -90.156 81.470 -90.297 81.457 -90.446 81.431 -90.589 81.363 -90.646 81.307 -90.372 81.333 -90.244 81.346 -90.110 81.359 -89.934 81.372 -89.864 81.385 -89.730 81.411 -89.588 81.425 -89.439 81.437 -89.275 81.451 -89.141 81.477 -89.013 81.490 -88.850 81.490 -88.666 81.502 -88.501 81.516 -88.338 81.490 -88.094 81.502 -87.944 81.490 -87.769 81.464 -87.558 81.437 -87.331 81.451 -87.522 81.464 -87.727 81.477 -87.903 81.477 -88.073 81.464 -88.237 81.464 -88.638 81.437 -88.781 81.395 -88.869 81.395 -89.038 81.369 -89.165 81.343 -89.293 81.317 -89.436 81.303 -89.570 81.291 -89.733 81.248 -89.848 81.235 -89.657 81.222 -89.483 81.179 -89.245 81.192 -89.095 81.179 -88.921 81.179 -89.075 81.154 -89.203 81.140 -89.365 81.154 -89.556 81.179 -89.752 81.179 -89.936 81.166 -90.051 81.140 -90.178 81.097 -90.264 80.957 -89.916 80.957 -89.901 80.931 -89.692 80.931 -89.537 80.944 -89.390 80.944 -89.222 80.957 -89.045 80.970 -88.883 80.970 -88.700 80.983 -88.551 80.996 -88.371 80.996 -87.848 80.983 -87.672 80.983 -87.518 80.996 -87.342 81.010 -87.180 81.010 -86.997 81.022 -86.847 81.036 -86.667 81.048 -86.503 81.048 -86.334 81.075 -86.207 81.114 -86.114 81.140 -85.984 81.154 -85.850 81.166 -85.701 81.179 -85.538 81.192 -85.360 81.219 -85.231 81.219 -85.062 81.231 -84.912 81.205 -84.703 81.179 -84.818 81.166 -84.952 81.154 -85.116 81.140 -85.265 81.114 -85.423 81.101 -85.557 81.075 -85.672 81.048 -85.799 81.010 -85.924 80.996 -86.071 80.983 -86.252 80.957 -86.394 80.944 -86.558 80.931 -86.706 80.931 -86.888 80.918 -87.022 80.905 -87.171 80.905 -87.493 80.918 -87.681 80.931 -87.871 80.931 -88.408 80.918 -88.570 80.905 -88.733 80.892 -88.909 80.878 -89.070 80.866 -89.219 80.823 -89.347 80.754 -89.084 80.729 -88.876 80.702 -88.680 80.663 -88.451 80.621 -88.231 80.595 -88.037 80.581 -87.863 80.555 -87.655 80.542 -87.466 80.542 -87.285 80.555 -87.138 80.597 -87.036 80.650 -86.949 80.693 -86.848 80.718 -86.735 80.744 -86.606 80.784 -86.499 80.810 -86.385 80.849 -86.278 80.875 -86.136 80.914 -86.027 80.928 -85.879 80.954 -85.737 80.967 -85.603 80.980 -85.454 80.980 -85.088 80.993 -84.925 81.006 -84.748 81.006 -84.393 81.019 -84.243 81.019 -84.089 81.032 -83.926 81.032 -83.743 81.046 -83.562 81.058 -83.397 81.058 -83.229 81.072 -83.095 81.084 -82.912 81.097 -82.777 81.097 -82.609 81.072 -82.416 81.072 -82.584 81.046 -82.729 81.046 -83.067 81.032 -83.215 81.019 -83.364 81.006 -83.513 81.006 -83.668 80.993 -83.845 80.993 -84.014 80.980 -84.177 80.967 -84.340 80.967 -84.541 80.954 -84.704 80.967 -84.878 80.941 -84.993 80.928 -85.142 80.914 -85.289 80.902 -85.424 80.888 -85.587 80.862 -85.730 80.820 -85.832 80.777 -85.935 80.751 -86.063 80.708 -86.165 80.683 -86.293 80.640 -86.395 80.601 -86.502 80.477 -86.480 80.451 -86.258 80.437 -86.084 80.437 -85.918 80.463 -85.804 80.503 -85.697 80.503 -85.530 80.421 -85.586 80.421 -85.419 80.408 -85.233 80.408 -84.898 80.421 -84.751 80.421 -84.570 80.408 -84.383 80.408 -84.216 80.421 -84.036 80.421 -83.869 80.447 -83.756 80.487 -83.662 80.640 -83.769 80.653 -83.622 80.679 -83.493 80.705 -83.364 80.732 -83.236 80.718 -83.062 80.693 -83.177 80.666 -83.305 80.597 -83.357 80.597 -83.203 80.611 -83.023 80.624 -82.861 80.636 -82.712 80.636 -82.558 80.679 -82.440 80.693 -82.306 80.705 -82.156 80.718 -82.022 80.744 -81.893 80.718 -81.687 80.693 -81.817 80.666 -81.931 80.640 -82.060 80.627 -82.223 80.614 -82.404 80.601 -82.566 80.588 -82.730 80.561 -82.857 80.535 -83.015 80.437 -83.023 80.437 -82.702 80.451 -82.555 80.451 -82.374 80.463 -82.239 80.477 -82.077 80.477 -81.882 80.490 -81.719 80.503 -81.543 80.516 -81.394 80.529 -81.231 80.542 -81.069 80.555 -80.936 80.568 -80.786 80.581 -80.637 80.595 -80.503 80.621 -80.374 80.633 -80.210 80.660 -80.066 80.672 -79.917 80.699 -79.773 80.712 -79.608 80.738 -79.492 80.780 -79.386 80.833 -79.307 80.931 -79.279 80.970 -79.167 81.013 -79.044 81.013 -79.091 81.094 -79.377 81.055 -79.151 81.029 -78.946 81.029 -78.791 81.097 -78.688 81.123 -78.555 81.150 -78.425 81.176 -78.307 81.219 -78.198 81.231 -78.047 81.257 -77.900 81.257 -78.160 81.271 -78.009 81.284 -77.844 81.297 -77.692 81.310 -77.542 81.323 -77.377 81.349 -77.229 81.336 -77.012 81.310 -77.160 81.284 -77.293 81.271 -77.457 81.257 -77.593 81.245 -77.731 81.231 -77.881 81.205 -78.013 81.179 -78.146 81.179 -77.934 81.140 -78.047 81.114 -78.180 81.101 -78.315 81.032 -78.419 81.006 -78.536 80.964 -78.644 80.938 -78.790 80.911 -78.906 80.758 -78.824 80.770 -78.659 80.784 -78.511 80.797 -78.347 80.797 -78.147 80.810 -78.011 80.810 -77.675 80.797 -77.488 80.797 -77.152 80.784 -76.965 80.741 -76.724 80.741 -77.457 80.729 -77.639 80.729 -77.821 80.715 -78.003 80.702 -78.151 80.689 -78.316 80.689 -78.469 80.676 -78.618 80.650 -78.764 80.636 -78.913 80.624 -79.048 80.611 -79.196 80.597 -79.373 80.571 -79.504 80.545 -79.649 80.503 -79.769 80.490 -79.570 80.503 -79.420 80.503 -79.239 80.516 -79.076 80.516 -78.877 80.503 -78.676 80.503 -78.357 80.490 -78.171 80.477 -77.985 80.463 -78.119 80.463 -78.653 80.451 -78.803 80.451 -79.290 80.437 -79.438 80.437 -79.620 80.424 -79.800 80.424 -80.151 80.369 -80.253 80.355 -80.386 80.355 -80.568 80.343 -80.731 80.343 -80.898 80.329 -81.060 80.317 -81.223 80.304 -81.384 80.304 -81.583 80.290 -81.716 80.290 -81.911 80.278 -82.091 80.264 -82.239 80.251 -82.418 80.251 -82.598 80.238 -82.779 80.225 -82.940 80.186 -83.048 80.088 -82.738 80.006 -82.466 79.929 -82.181 79.885 -81.962 79.885 -81.934 79.863 -81.736 79.853 -81.569 79.822 -81.369 79.822 -81.521 79.732 -81.550 79.667 -81.601 79.622 -81.369 79.622 -81.204 79.588 -81.001 79.567 -80.805 79.567 -80.626 79.578 -80.464 79.599 -80.316 79.599 -80.151 79.610 -80.002 79.599 -79.913 79.610 -79.764 79.575 -79.878 79.555 -79.998 79.555 -80.148 79.544 -80.297 79.533 -80.446 79.523 -80.581 79.492 -80.712 79.512 -80.922 79.523 -81.089 79.544 -81.285 79.555 -81.466 79.520 -81.565 79.531 -81.745 79.599 -81.698 79.675 -81.993 79.787 -82.222 79.842 -82.471 79.887 -82.692 79.908 -82.798 79.952 -83.033 80.009 -83.273 80.104 -83.579 80.146 -83.793 80.160 -83.966 80.160 -84.816 80.146 -85.008 80.160 -85.180 80.173 -85.367 80.186 -85.538 80.211 -85.744 80.225 -85.931 80.211 -86.063 80.211 -86.229 80.199 -86.377 80.130 -86.439 80.062 -86.486 80.006 -86.553 79.882 -86.339 79.882 -86.068 79.871 -85.899 79.861 -85.718 79.850 -85.520 79.795 -85.281 79.830 -85.516 79.830 -85.668 79.840 -85.863 79.850 -86.032 79.861 -86.214 79.840 -86.360 79.764 -86.403 79.651 -86.283 79.640 -86.115 79.610 -85.886 79.610 -85.722 79.620 -85.559 79.599 -85.361 79.499 -85.038 79.387 -84.788 79.353 -84.585 79.230 -84.452 79.117 -84.363 79.117 -84.214 79.062 -83.965 78.996 -83.700 78.975 -83.519 78.965 -83.667 78.975 -83.845 79.010 -83.985 79.044 -84.111 79.065 -84.307 79.075 -84.473 79.065 -84.619 79.044 -84.737 78.965 -84.764 78.944 -84.568 78.910 -84.367 78.900 -84.201 78.900 -84.052 78.889 -83.872 78.879 -83.694 78.879 -83.531 78.889 -83.352 78.889 -83.189 78.879 -82.997 78.857 -82.801 78.837 -82.607 78.847 -82.446 78.857 -82.285 78.879 -82.154 78.920 -82.055 78.955 -81.943 78.975 -81.797 78.965 -81.605 78.934 -81.735 78.834 -81.747 78.813 -81.865 78.813 -82.222 78.792 -82.367 78.792 -82.692 78.802 -82.870 78.802 -83.213 78.758 -83.322 78.727 -83.111 78.693 -82.910 78.682 -82.732 78.703 -82.588 78.682 -82.408 78.693 -82.586 78.638 -82.664 78.549 -82.383 78.538 -82.529 78.627 -82.826 78.661 -83.039 78.672 -83.218 78.727 -83.450 78.737 -83.615 78.792 -83.849 78.802 -84.040 78.802 -84.217 78.813 -84.382 78.813 -84.708 78.834 -84.917 78.865 -85.115 78.855 -85.276 78.845 -85.422 78.824 -85.552 78.802 -85.695 78.792 -85.828 78.792 -85.991 78.782 -86.137 78.772 -86.298 78.772 -86.474 78.761 -86.620 78.750 -86.751 78.719 -86.864 78.698 -86.980 78.654 -87.073 78.599 -87.134 78.533 -87.177 78.522 -86.999 78.522 -87.174 78.512 -87.321 78.478 -87.428 78.446 -87.554 78.412 -87.647 78.324 -87.654 78.200 -87.518 78.180 -87.293 78.180 -87.440 78.169 -87.598 78.114 -87.672 78.103 -87.508 78.093 -87.331 78.093 -87.156 78.103 -87.025 78.114 -86.882 78.145 -86.784 78.180 -86.676 78.190 -86.544 78.190 -86.383 78.224 -86.276 78.279 -86.200 78.310 -86.088 78.355 -85.981 78.290 -86.042 78.224 -86.087 78.190 -86.195 78.145 -86.286 78.046 -86.293 78.056 -86.148 78.067 -86.004 78.077 -85.831 78.088 -85.674 78.109 -85.559 78.151 -85.463 78.185 -85.354 78.240 -85.278 78.284 -85.199 78.328 -85.106 78.394 -85.060 78.460 -84.986 78.504 -84.906 78.525 -84.776 78.481 -84.856 78.426 -84.933 78.313 -84.876 78.313 -84.728 78.292 -84.857 78.271 -84.986 78.172 -84.995 78.192 -84.865 78.192 -84.718 78.182 -84.541 78.148 -84.328 78.148 -84.167 78.137 -84.312 78.158 -84.491 78.169 -84.668 78.169 -84.829 78.148 -84.944 78.148 -85.137 78.048 -85.130 78.038 -84.967 78.048 -84.809 78.059 -84.650 78.048 -84.459 78.048 -84.633 78.038 -84.779 78.007 -84.892 78.017 -85.068 78.038 -85.247 78.017 -85.376 77.996 -85.503 77.975 -85.618 77.954 -85.747 77.909 -85.824 77.865 -85.595 77.886 -85.481 77.886 -85.144 77.897 -84.985 77.907 -84.855 77.897 -84.692 77.876 -84.500 77.886 -84.676 77.886 -84.836 77.865 -84.965 77.876 -85.141 77.865 -85.272 77.865 -85.418 77.789 -85.475 77.810 -85.348 77.800 -85.185 77.789 -85.329 77.745 -85.406 77.645 -85.428 77.625 -85.236 77.614 -85.060 77.635 -84.932 77.655 -84.804 77.677 -84.690 77.643 -84.798 77.598 -84.877 77.522 -84.920 77.512 -84.745 77.522 -84.601 77.522 -84.455 77.501 -84.251 77.490 -84.089 77.512 -83.949 77.543 -83.823 77.564 -83.709 77.596 -83.596 77.651 -83.519 77.684 -83.410 77.740 -83.333 77.784 -83.253 77.828 -83.146 77.871 -83.049 77.891 -82.934 78.004 -82.943 78.035 -82.816 78.046 -82.671 78.035 -82.494 78.015 -82.610 78.004 -82.755 77.891 -82.733 77.836 -82.824 77.792 -82.918 77.737 -82.996 77.703 -83.105 77.648 -83.182 77.616 -83.308 77.572 -83.388 77.538 -83.496 77.496 -83.592 77.486 -83.723 77.464 -83.850 77.409 -83.926 77.344 -83.670 77.354 -83.843 77.365 -84.005 77.399 -84.202 77.389 -84.345 77.378 -84.488 77.399 -84.692 77.287 -84.681 77.297 -84.842 77.362 -85.114 77.373 -85.276 77.383 -85.450 77.449 -85.696 77.428 -85.837 77.417 -85.980 77.517 -85.973 77.640 -86.092 77.753 -86.324 77.818 -86.572 77.839 -86.765 77.860 -86.944 77.871 -87.121 77.871 -87.282 77.881 -87.458 77.860 -87.599 77.850 -87.730 77.839 -87.860 77.828 -88.002 77.808 -88.144 77.797 -88.301 77.721 -88.327 77.622 -88.316 77.577 -88.099 77.464 -87.851 77.352 -87.833 77.331 -87.655 77.331 -87.483 77.352 -87.357 77.362 -87.215 77.342 -87.023 77.331 -87.166 77.331 -87.311 77.276 -87.371 77.255 -87.193 77.200 -87.280 77.189 -87.105 77.179 -86.931 77.134 -87.020 77.179 -87.248 77.179 -87.419 77.169 -87.548 77.100 -87.600 77.100 -87.759 77.122 -87.937 77.132 -88.111 77.111 -88.237 77.132 -88.441 77.122 -88.584 77.067 -88.643 77.045 -88.780 77.014 -88.875 77.004 -89.017 76.993 -89.159 76.951 -89.251 76.930 -89.361 76.909 -89.487 76.899 -89.629 76.854 -89.715 76.742 -89.564 76.677 -89.605 76.642 -89.722 76.553 -89.726 76.553 -89.582 76.441 -89.378 76.441 -89.234 76.420 -89.059 76.464 -88.972 76.564 -88.970 76.605 -88.879 ; #2448 12 64.518 -74.396 64.482 -74.500 64.447 -74.335 64.520 -74.398 ; #2449 12 69.756 -78.211 69.747 -78.345 69.717 -78.459 69.661 -78.544 69.652 -78.666 69.593 -78.750 69.546 -78.844 69.519 -78.948 69.510 -78.808 69.528 -78.696 69.528 -78.554 69.557 -78.440 69.584 -78.325 69.593 -78.191 69.640 -78.083 69.737 -78.144 69.756 -78.214 ; #2450 12 64.574 -73.591 64.566 -73.707 64.473 -73.665 64.419 -73.743 64.437 -73.634 64.529 -73.615 64.574 -73.593 ; #2451 12 72.908 -80.168 72.869 -79.986 72.798 -79.765 72.779 -79.607 72.788 -79.457 72.798 -79.319 72.817 -79.205 72.836 -79.078 72.855 -78.953 72.874 -78.825 72.893 -78.699 72.912 -78.559 72.932 -78.408 72.922 -78.247 72.922 -78.098 72.932 -77.973 72.922 -77.813 72.922 -77.664 72.891 -77.491 72.882 -77.345 72.872 -77.185 72.872 -76.912 72.853 -76.742 72.853 -76.605 72.862 -76.467 72.872 -76.342 72.932 -76.261 72.982 -76.454 73.085 -76.479 73.166 -76.708 73.269 -76.784 73.351 -77.040 73.454 -77.251 73.545 -77.494 73.585 -77.678 73.604 -77.838 73.636 -78.025 73.676 -78.210 73.686 -78.371 73.686 -78.535 73.676 -78.662 73.676 -78.949 73.657 -79.078 73.657 -79.516 73.667 -79.679 73.698 -79.866 73.717 -80.039 73.736 -80.129 73.717 -80.244 73.767 -80.443 73.786 -80.616 73.777 -80.755 73.767 -80.894 73.676 -80.922 73.626 -81.012 73.523 -80.913 73.492 -81.014 73.401 -81.041 73.298 -80.797 73.279 -80.624 73.269 -80.463 73.166 -80.328 73.063 -80.326 72.951 -80.193 72.901 -80.159 ; #2452 12 66.773 -70.550 66.696 -70.608 66.678 -70.466 66.775 -70.551 ; #2453 12 61.865 -65.814 61.882 -65.838 61.874 -65.952 61.820 -66.032 61.803 -65.898 61.868 -65.815 ; #2454 12 76.155 -79.077 76.166 -79.118 76.155 -79.259 76.111 -79.353 76.066 -79.446 76.045 -79.572 76.001 -79.666 75.956 -79.745 75.857 -79.762 75.836 -79.577 75.901 -79.526 75.912 -79.385 75.880 -79.200 75.901 -79.060 76.013 -79.329 76.048 -79.235 76.068 -79.121 76.158 -79.077 ; #2455 12 64.437 -64.973 64.428 -65.027 64.335 -64.922 64.437 -64.976 ; #2456 12 68.844 -68.525 68.806 -68.479 68.797 -68.329 68.779 -68.184 68.741 -68.009 68.768 -67.903 68.786 -68.049 68.813 -68.214 68.822 -68.351 68.840 -68.522 ; #2457 12 69.717 -67.934 69.670 -67.943 69.688 -68.102 69.652 -68.201 69.593 -68.291 69.557 -68.129 69.548 -67.990 69.616 -67.907 69.722 -67.938 ; #2458 12 69.600 -67.504 69.582 -67.643 69.525 -67.724 69.543 -67.597 69.602 -67.506 ; #2459 12 55.022 -8.562 55.022 -8.518 54.987 -8.544 55.022 -8.559 ; #2460 12 67.014 -84.716 66.967 -84.527 66.870 -84.364 66.870 -84.503 66.813 -84.456 66.831 -84.602 66.861 -84.771 66.861 -84.632 66.926 -84.839 66.935 -84.710 66.982 -84.898 66.965 -85.006 66.955 -85.136 66.899 -85.203 66.899 -85.330 66.965 -85.272 67.003 -85.173 67.012 -85.056 67.021 -84.938 67.012 -84.791 67.030 -84.936 67.048 -84.828 67.030 -84.670 67.012 -84.513 67.003 -84.642 67.012 -84.714 ; #2461 12 11.041 -15.044 11.033 -15.044 10.942 -15.088 10.859 -15.022 10.859 -14.984 10.942 -15.004 11.033 -14.943 11.041 -15.046 ; #2462 12 4.475 7.174 4.558 7.192 4.616 7.238 4.533 7.301 4.475 7.207 4.475 7.169 ; #2463 12 63.872 -64.976 63.864 -64.847 63.945 -64.786 63.928 -64.638 63.874 -64.598 63.821 -64.692 63.728 -64.487 63.756 -64.643 63.819 -64.824 63.872 -64.973 ; #2464 12 69.242 -69.048 69.232 -68.909 69.232 -68.973 69.242 -69.045 ; #2465 12 53.840 14.595 53.882 14.631 53.882 14.620 53.840 14.598 ; #2466 12 30.040 48.203 29.874 48.342 29.790 48.381 29.765 48.369 29.682 48.295 29.674 48.196 29.690 48.188 29.781 48.129 29.864 48.090 29.947 48.107 29.972 48.217 30.038 48.207 ; #2467 12 17.084 41.896 17.026 41.940 17.042 41.958 17.082 41.896 ; #2468 12 27.370 49.541 27.363 49.617 27.370 49.715 27.386 49.699 27.419 49.605 27.369 49.540 ; #2469 12 17.759 -64.980 17.767 -64.952 17.775 -64.857 17.790 -64.763 17.839 -64.673 17.823 -64.767 17.864 -64.867 17.839 -64.969 17.755 -64.977 ; #2470 12 5.357 163.095 5.380 163.002 5.463 163.094 5.380 163.123 5.357 163.092 ; #2471 12 57.487 -61.905 57.504 -61.837 57.564 -61.760 57.564 -61.782 57.537 -61.880 57.485 -61.903 ; #2472 12 54.935 -57.995 54.926 -58.080 54.900 -58.179 54.849 -58.275 54.781 -58.126 54.815 -58.020 54.857 -57.919 54.849 -58.039 54.936 -57.996 ; #2473 12 47.963 -64.581 47.955 -64.597 47.931 -64.693 47.890 -64.780 47.804 -64.687 47.872 -64.612 47.965 -64.584 ; #2474 12 48.227 -53.641 48.219 -53.657 48.185 -53.761 48.219 -53.882 48.203 -53.983 48.135 -53.848 48.128 -53.738 48.143 -53.626 48.229 -53.642 ; #2475 12 50.650 -127.066 50.693 -127.121 50.668 -127.204 50.652 -127.069 ; #2476 12 53.616 -130.201 53.658 -130.136 53.571 -130.072 53.484 -130.031 53.389 -129.938 53.302 -129.822 53.278 -129.684 53.355 -129.657 53.449 -129.638 53.518 -129.825 53.518 -129.713 53.614 -129.837 53.701 -129.932 53.788 -130.059 53.856 -130.177 53.943 -130.351 53.919 -130.437 53.832 -130.386 53.745 -130.322 53.692 -130.186 53.668 -130.180 53.618 -130.190 ; #2477 12 53.363 -129.435 53.371 -129.464 53.294 -129.493 53.235 -129.550 53.140 -129.427 53.191 -129.370 53.278 -129.366 53.365 -129.440 ; #2478 12 52.909 -128.712 52.833 -128.741 52.738 -128.693 52.825 -128.675 52.912 -128.714 ; #2479 12 52.772 -131.692 52.756 -131.751 52.705 -131.817 52.689 -131.679 52.776 -131.697 ; #2480 12 53.257 -130.212 53.199 -130.148 53.215 -130.054 53.231 -129.950 53.318 -129.991 53.413 -130.084 53.500 -130.199 53.569 -130.340 53.628 -130.526 53.670 -130.684 53.593 -130.722 53.506 -130.596 53.419 -130.490 53.351 -130.293 53.255 -130.210 ; #2481 12 53.832 -130.461 53.832 -130.493 53.763 -130.529 53.713 -130.585 53.626 -130.401 53.660 -130.328 53.747 -130.391 53.834 -130.466 ; #2482 12 53.225 -129.675 53.148 -129.689 53.053 -129.630 53.045 -129.510 53.132 -129.594 53.227 -129.677 ; #2483 5 35.621 79.927 35.688 79.837 35.728 79.750 35.812 79.706 35.895 79.664 35.895 79.625 34.979 78.242 34.913 78.284 34.830 78.312 34.747 78.340 34.656 78.405 34.640 78.459 35.623 79.925 ; #2484 12 45.562 -81.948 45.621 -82.054 45.645 -81.962 45.731 -81.906 45.689 -81.987 45.639 -82.064 45.614 -82.155 45.673 -82.306 45.741 -82.451 45.741 -82.557 45.800 -82.697 45.834 -82.832 45.842 -82.943 45.866 -83.073 45.907 -83.204 45.915 -83.314 46.000 -83.281 45.984 -83.165 45.984 -83.050 45.969 -82.935 45.883 -82.833 45.875 -82.722 45.868 -82.602 45.953 -82.632 45.978 -82.541 46.020 -82.460 45.971 -82.325 45.885 -82.245 45.971 -82.211 46.012 -82.130 45.978 -81.994 45.893 -81.924 45.800 -81.890 45.885 -81.846 45.927 -81.765 45.834 -81.794 45.849 -81.697 45.764 -81.741 45.689 -81.803 45.621 -81.869 45.562 -81.951 ; #2485 12 45.562 -81.948 45.621 -82.054 45.645 -81.962 45.731 -81.906 45.689 -81.987 45.639 -82.064 45.614 -82.155 45.673 -82.306 45.741 -82.451 45.741 -82.557 45.800 -82.697 45.834 -82.832 45.842 -82.943 45.866 -83.073 45.907 -83.204 45.915 -83.314 46.000 -83.281 45.984 -83.165 45.984 -83.050 45.969 -82.935 45.883 -82.833 45.875 -82.722 45.868 -82.602 45.953 -82.632 45.978 -82.541 46.020 -82.460 45.971 -82.325 45.885 -82.245 45.971 -82.211 46.012 -82.130 45.978 -81.994 45.893 -81.924 45.800 -81.890 45.885 -81.846 45.927 -81.765 45.834 -81.794 45.849 -81.697 45.764 -81.741 45.689 -81.803 45.621 -81.869 45.562 -81.951 ; #2486 13 -11.820 43.477 -11.737 43.379 -11.696 43.283 -11.613 43.233 -11.530 43.268 -11.439 43.273 -11.356 43.270 -11.273 43.294 -11.257 43.388 -11.341 43.409 -11.431 43.403 -11.514 43.398 -11.598 43.447 -11.681 43.468 -11.772 43.517 -11.820 43.473 ; #2487 13 -12.267 43.869 -12.251 43.774 -12.236 43.678 -12.145 43.646 -12.145 43.741 -12.211 43.838 -12.269 43.869 ; #2488 13 11.066 -74.438 11.091 -74.365 11.083 -74.365 11.068 -74.438 ; #2489 13 16.991 -25.315 17.007 -25.344 17.090 -25.358 17.181 -25.354 17.229 -25.252 17.262 -25.158 17.214 -25.060 17.131 -25.038 17.082 -25.131 16.999 -25.222 16.991 -25.317 ; #2490 13 14.983 -23.545 14.999 -23.650 15.055 -23.748 15.146 -23.809 15.229 -23.804 15.395 -23.738 15.312 -23.678 15.229 -23.598 15.146 -23.518 15.063 -23.496 14.979 -23.550 ; #2491 13 -2.633 29.046 -2.724 29.073 -2.807 29.102 -2.890 29.177 -2.973 29.261 -3.064 29.235 -3.148 29.244 -3.163 29.253 -3.204 29.227 -3.227 29.236 -3.310 29.254 -3.393 29.263 -3.560 29.264 -3.650 29.247 -3.734 29.247 -3.825 29.265 -3.908 29.341 -3.991 29.379 -4.074 29.406 -4.157 29.406 -4.248 29.415 -4.331 29.433 -4.331 29.780 -4.291 29.789 -4.243 29.883 -4.184 29.986 -4.169 30.003 -4.086 30.058 -4.002 30.152 -3.912 30.217 -3.829 30.234 -3.745 30.300 -3.662 30.354 -3.670 30.400 -3.604 30.391 -3.521 30.437 -3.438 30.454 -3.381 30.537 -3.349 30.631 -3.258 30.622 -3.200 30.716 -3.192 30.780 -3.109 30.834 -3.018 30.833 -2.935 30.796 -2.869 30.842 -2.877 30.778 -2.869 30.684 -2.803 30.580 -2.844 30.486 -2.753 30.419 -2.670 30.447 -2.587 30.493 -2.546 30.521 -2.553 30.427 -2.463 30.481 -2.380 30.518 -2.296 30.572 -2.296 30.544 -2.230 30.449 -2.230 30.355 -2.256 30.280 -2.240 30.215 -2.324 30.151 -2.308 30.096 -2.242 30.002 -2.242 29.993 -2.209 29.957 -2.217 29.949 -2.308 29.949 -2.391 29.941 -2.474 29.924 -2.565 29.924 -2.648 29.869 -2.656 29.775 -2.689 29.672 -2.697 29.578 -2.712 29.552 -2.697 29.457 -2.689 29.363 -2.598 29.353 -2.525 29.258 -2.491 29.155 -2.540 29.061 -2.631 29.053 -2.639 29.035 ; #2492 13 7.063 118.622 7.071 118.605 7.119 118.514 7.145 118.610 7.061 118.622 ; #2493 13 11.464 119.921 11.538 119.930 11.515 119.823 11.466 119.921 ; #2494 13 11.855 121.949 11.840 122.042 11.814 122.143 11.724 122.187 11.633 122.167 11.542 122.147 11.451 122.154 11.360 122.125 11.276 122.115 11.186 122.133 11.087 122.121 11.004 122.064 10.921 122.036 10.898 122.025 10.799 122.050 10.708 122.057 10.617 122.028 10.534 121.989 10.534 122.084 10.559 122.105 10.642 122.161 10.716 122.274 10.749 122.372 10.764 122.469 10.764 122.573 10.795 122.672 10.878 122.711 10.886 122.720 10.886 122.824 10.969 122.863 11.052 122.845 11.109 122.955 11.109 123.030 11.199 123.097 11.240 123.196 11.331 123.179 11.422 123.199 11.505 123.218 11.528 123.239 11.619 123.232 11.627 123.178 11.569 123.067 11.513 122.965 11.596 123.021 11.629 122.962 11.685 122.874 11.644 122.774 11.596 122.664 11.629 122.677 11.629 122.573 11.712 122.555 11.803 122.481 11.811 122.456 11.851 122.366 11.899 122.277 11.907 122.249 11.933 122.148 12.016 122.064 11.933 121.990 11.849 121.951 ; #2495 13 6.160 121.844 6.167 121.863 6.112 121.953 6.104 121.979 6.096 121.978 6.080 121.951 6.088 121.934 6.088 121.916 6.162 121.847 ; #2496 13 12.586 122.628 12.521 122.525 12.455 122.612 12.381 122.707 12.348 122.738 12.439 122.796 12.523 122.789 12.578 122.700 12.586 122.664 12.586 122.626 ; #2497 13 -18.442 -173.839 -18.491 -173.843 -18.574 -173.905 -18.483 -173.930 -18.442 -173.836 ; #2498 14 42.622 18.469 42.538 18.475 42.514 18.493 42.506 18.512 42.506 18.575 42.514 18.679 42.545 18.763 42.497 18.770 42.489 18.779 42.481 18.769 42.514 18.688 42.463 18.686 42.448 18.581 42.440 18.685 42.355 18.751 42.330 18.781 42.338 18.885 42.246 18.962 42.121 19.110 42.037 19.137 42.029 19.147 41.972 19.247 41.931 19.336 41.915 19.367 41.941 19.368 41.974 19.351 42.066 19.387 42.115 19.380 42.141 19.381 42.225 19.323 42.309 19.346 42.393 19.421 42.401 19.412 42.409 19.412 42.424 19.423 42.508 19.519 42.592 19.593 42.677 19.639 42.692 19.659 42.651 19.771 42.618 19.749 42.534 19.817 42.549 19.878 42.575 19.993 42.608 20.077 42.692 20.101 42.708 20.121 42.749 20.073 42.765 20.042 42.813 20.055 42.806 20.146 42.798 20.196 42.849 20.209 42.880 20.315 42.880 20.347 42.888 20.356 42.972 20.320 43.003 20.252 43.019 20.149 43.027 20.130 43.042 20.102 43.068 20.084 43.117 19.982 43.142 19.879 43.158 19.776 43.166 19.757 43.191 19.739 43.217 19.731 43.217 19.617 43.283 19.517 43.367 19.450 43.375 19.441 43.408 19.402 43.441 19.343 43.483 19.241 43.491 19.209 43.506 19.200 43.555 19.194 43.555 19.130 43.540 19.037 43.555 18.924 43.489 18.920 43.396 19.020 43.297 18.996 43.313 18.987 43.369 18.949 43.385 18.845 43.369 18.854 43.361 18.834 43.338 18.773 43.287 18.666 43.246 18.673 43.154 18.618 43.146 18.617 43.062 18.642 43.054 18.499 42.988 18.455 42.888 18.479 42.880 18.469 42.796 18.506 42.755 18.565 42.714 18.572 42.622 18.517 42.614 18.508 42.614 18.466 ; #2499 15 -0.604 8.963 -0.520 8.972 -0.604 9.029 -0.619 9.029 -0.667 9.000 -0.602 8.963 ; #2500 15 28.110 -14.365 28.183 -14.272 28.239 -14.178 28.272 -14.082 28.287 -13.976 28.370 -13.925 28.462 -13.883 28.545 -13.888 28.635 -13.855 28.719 -13.870 28.802 -13.902 28.787 -13.999 28.695 -14.050 28.529 -14.137 28.446 -14.191 28.355 -14.233 28.272 -14.255 28.198 -14.348 28.158 -14.452 28.110 -14.362 ; #2501 15 28.898 -13.808 28.906 -13.799 28.972 -13.706 29.013 -13.601 29.069 -13.507 29.152 -13.482 29.235 -13.536 29.195 -13.631 29.139 -13.726 29.105 -13.830 29.022 -13.864 28.932 -13.906 28.898 -13.806 ; #2502 15 42.931 -9.175 42.915 -9.142 42.823 -9.103 42.839 -8.990 42.888 -8.891 42.854 -8.939 42.780 -9.035 42.696 -9.077 42.604 -9.028 42.696 -8.956 42.712 -8.854 42.769 -8.756 42.737 -8.752 42.653 -8.826 42.569 -8.921 42.485 -8.902 42.469 -8.797 42.495 -8.686 42.461 -8.755 42.405 -8.862 42.320 -8.895 42.328 -8.792 42.361 -8.691 42.428 -8.635 42.420 -8.625 42.353 -8.691 42.312 -8.747 42.238 -8.852 42.154 -8.925 42.070 -8.916 41.978 -8.875 42.029 -8.777 42.113 -8.682 42.121 -8.674 42.137 -8.572 42.152 -8.460 42.160 -8.357 42.209 -8.248 42.225 -8.231 42.133 -8.212 42.125 -8.108 42.040 -8.203 41.956 -8.235 41.941 -8.234 41.941 -8.214 41.890 -8.199 41.890 -8.087 41.949 -7.979 41.941 -7.875 41.964 -7.764 41.949 -7.659 41.915 -7.552 41.882 -7.458 41.915 -7.348 41.956 -7.248 41.956 -7.239 42.040 -7.218 42.033 -7.114 42.040 -7.023 42.025 -6.980 42.017 -6.876 42.009 -6.763 42.017 -6.660 41.951 -6.550 41.859 -6.582 41.808 -6.597 41.759 -6.479 41.751 -6.375 41.677 -6.265 41.643 -6.231 41.569 -6.306 41.477 -6.357 41.420 -6.455 41.379 -6.512 41.323 -6.610 41.297 -6.710 41.213 -6.793 41.129 -6.836 41.121 -6.845 41.121 -6.948 41.113 -6.947 41.105 -6.956 41.090 -6.945 41.090 -6.935 40.998 -6.876 40.949 -6.831 40.857 -6.854 40.773 -6.836 40.688 -6.847 40.681 -6.857 40.589 -6.838 40.505 -6.862 40.412 -6.822 40.364 -6.887 40.348 -6.967 40.264 -7.039 40.180 -6.941 40.088 -6.901 40.004 -6.925 39.920 -6.968 39.912 -6.996 39.905 -7.005 39.821 -7.008 39.763 -7.044 39.755 -7.072 39.755 -7.184 39.763 -7.287 39.747 -7.397 39.755 -7.500 39.763 -7.550 39.672 -7.481 39.588 -7.394 39.563 -7.311 39.472 -7.335 39.456 -7.324 39.373 -7.256 39.365 -7.255 39.282 -7.199 39.208 -7.091 39.224 -7.064 39.132 -6.997 39.132 -6.988 39.124 -6.978 39.033 -7.042 39.018 -7.060 38.985 -7.057 38.944 -7.104 38.870 -7.200 38.855 -7.229 38.772 -7.292 38.688 -7.294 38.605 -7.337 38.589 -7.336 38.581 -7.326 38.548 -7.342 38.490 -7.278 38.406 -7.203 38.315 -7.137 38.300 -7.127 38.315 -7.026 38.315 -6.967 38.232 -7.001 38.141 -7.034 38.156 -7.137 38.108 -7.235 38.074 -7.282 38.044 -7.279 37.960 -7.322 37.877 -7.426 37.793 -7.479 37.702 -7.521 37.661 -7.548 37.646 -7.537 37.554 -7.481 37.471 -7.465 37.380 -7.448 37.372 -7.457 37.341 -7.436 37.333 -7.435 37.292 -7.413 37.325 -7.305 37.341 -7.206 37.333 -7.104 37.318 -7.001 37.401 -6.998 37.393 -6.908 37.335 -6.953 37.261 -6.889 37.220 -6.784 37.170 -6.680 37.104 -6.564 37.021 -6.478 36.947 -6.393 36.988 -6.377 37.029 -6.371 37.021 -6.280 36.988 -6.379 36.939 -6.385 36.947 -6.395 36.906 -6.401 36.832 -6.476 36.749 -6.381 36.708 -6.277 36.652 -6.223 36.637 -6.222 36.613 -6.300 36.530 -6.256 36.489 -6.214 36.398 -6.136 36.314 -6.072 36.314 -5.971 36.231 -5.865 36.190 -5.752 36.132 -5.647 36.157 -5.591 36.190 -5.483 36.281 -5.489 36.281 -5.379 36.322 -5.373 36.413 -5.311 36.446 -5.294 36.520 -5.250 36.561 -5.152 36.592 -5.044 36.617 -4.987 36.625 -4.887 36.617 -4.786 36.642 -4.687 36.708 -4.581 36.800 -4.498 36.850 -4.433 36.842 -4.331 36.850 -4.221 36.873 -4.143 36.858 -4.041 36.866 -3.941 36.866 -3.831 36.858 -3.729 36.858 -3.628 36.850 -3.597 36.817 -3.494 36.866 -3.396 36.873 -3.287 36.873 -2.986 36.832 -2.873 36.809 -2.771 36.858 -2.673 36.941 -2.607 36.949 -2.507 36.957 -2.439 36.941 -2.337 36.858 -2.253 36.890 -2.154 36.964 -2.057 37.131 -1.946 37.222 -1.902 37.306 -1.876 37.389 -1.890 37.413 -1.780 37.496 -1.695 37.529 -1.628 37.537 -1.561 37.620 -1.495 37.678 -1.396 37.686 -1.295 37.678 -1.184 37.694 -1.083 37.678 -0.981 37.694 -0.872 37.760 -0.774 37.851 -0.806 37.760 -0.783 37.791 -0.886 37.875 -0.881 37.966 -0.826 38.057 -0.769 38.141 -0.723 38.224 -0.709 38.290 -0.681 38.323 -0.581 38.406 -0.585 38.464 -0.486 38.556 -0.441 38.605 -0.341 38.629 -0.232 38.653 -0.131 38.736 -0.066 38.777 0.034 38.835 0.133 38.919 0.110 38.967 -0.004 38.975 -0.065 38.991 -0.094 38.999 -0.114 39.082 -0.208 39.166 -0.262 39.256 -0.306 39.330 -0.309 39.414 -0.363 39.445 -0.365 39.528 -0.400 39.586 -0.384 39.678 -0.338 39.761 -0.272 39.769 -0.273 39.817 -0.245 39.843 -0.236 39.926 -0.159 40.017 -0.082 40.017 -0.063 40.092 -0.036 40.133 -0.020 40.190 0.089 40.282 0.153 40.450 0.328 40.618 0.441 40.667 0.469 40.651 0.573 40.726 0.681 40.775 0.781 40.808 0.789 40.908 0.631 40.982 0.740 41.066 0.817 41.133 0.916 41.148 1.019 41.156 1.059 41.197 1.160 41.213 1.250 41.238 1.352 41.270 1.454 41.278 1.566 41.293 1.647 41.319 1.759 41.342 1.861 41.350 1.963 41.391 2.074 41.450 2.100 41.534 2.188 41.567 2.290 41.616 2.391 41.657 2.493 41.690 2.604 41.731 2.706 41.763 2.746 41.788 2.848 41.845 2.949 41.912 3.050 41.919 3.059 42.003 3.128 42.087 3.116 42.096 3.115 42.180 3.061 42.271 3.038 42.328 3.077 42.312 3.191 42.397 3.219 42.405 3.115 42.489 3.093 42.497 3.092 42.497 3.023 42.538 2.907 42.522 2.804 42.530 2.804 42.481 2.693 42.407 2.592 42.422 2.487 42.430 2.383 42.463 2.311 42.497 2.206 42.489 2.103 42.422 1.993 42.497 1.885 42.497 1.876 42.504 1.875 42.512 1.834 42.545 1.772 42.553 1.658 42.569 1.658 42.561 1.619 42.520 1.517 42.504 1.414 42.579 1.401 42.663 1.377 42.755 1.322 42.780 1.217 42.772 1.104 42.839 0.997 42.864 0.891 42.888 0.776 42.895 0.703 42.903 0.684 42.919 0.651 42.835 0.605 42.743 0.610 42.751 0.517 42.751 0.413 42.743 0.375 42.743 0.261 42.784 0.155 42.769 0.043 42.743 -0.060 42.776 -0.144 42.851 -0.252 42.899 -0.369 42.858 -0.458 42.866 -0.573 42.851 -0.572 42.843 -0.590 42.894 -0.663 42.978 -0.773 43.019 -0.807 43.003 -0.919 43.019 -1.024 43.068 -1.131 43.083 -1.225 43.167 -1.322 43.167 -1.332 43.083 -1.397 43.150 -1.505 43.234 -1.440 43.326 -1.456 43.342 -1.561 43.350 -1.676 43.350 -1.780 43.391 -1.802 43.398 -1.832 43.406 -1.823 43.414 -1.905 43.381 -2.007 43.373 -2.027 43.365 -2.036 43.357 -2.139 43.365 -2.244 43.350 -2.348 43.373 -2.463 43.422 -2.559 43.438 -2.664 43.471 -2.781 43.479 -2.886 43.453 -2.989 43.461 -3.008 43.369 -3.062 43.385 -3.095 43.393 -3.188 43.400 -3.208 43.449 -3.316 43.457 -3.431 43.508 -3.539 43.540 -3.646 43.508 -3.747 43.524 -3.853 43.508 -3.956 43.449 -4.066 43.475 -4.078 43.475 -4.097 43.449 -4.199 43.434 -4.302 43.434 -4.416 43.441 -4.448 43.434 -4.552 43.434 -4.594 43.449 -4.699 43.475 -4.805 43.491 -4.921 43.499 -5.036 43.506 -5.097 43.514 -5.139 43.514 -5.244 43.571 -5.353 43.586 -5.459 43.586 -5.572 43.579 -5.676 43.637 -5.796 43.661 -5.902 43.612 -6.003 43.604 -6.106 43.604 -6.116 43.612 -6.221 43.604 -6.325 43.596 -6.438 43.588 -6.542 43.604 -6.648 43.579 -6.750 43.594 -6.812 43.602 -6.864 43.602 -6.968 43.528 -7.075 43.594 -7.092 43.594 -7.196 43.627 -7.304 43.711 -7.394 43.761 -7.504 43.719 -7.604 43.761 -7.723 43.802 -7.727 43.702 -7.926 43.786 -7.934 43.737 -8.034 43.680 -8.133 43.622 -8.241 43.581 -8.341 43.497 -8.332 43.522 -8.221 43.530 -8.222 43.530 -8.202 43.514 -8.210 43.465 -8.310 43.457 -8.195 43.449 -8.194 43.426 -8.296 43.385 -8.406 43.400 -8.512 43.359 -8.612 43.334 -8.723 43.359 -8.830 43.359 -8.935 43.275 -8.998 43.234 -9.098 43.227 -9.202 43.142 -9.253 43.050 -9.284 42.966 -9.265 42.951 -9.150 42.909 -9.177 ; #2503 15 35.965 -5.411 35.916 -5.389 35.891 -5.369 35.949 -5.342 35.965 -5.413 ; #2504 15 39.344 67.413 39.260 67.472 39.228 67.566 39.228 67.668 39.162 67.752 39.078 67.749 39.053 67.854 39.045 67.954 39.061 68.060 39.061 68.162 38.977 68.230 38.961 68.235 38.878 68.232 38.794 68.160 38.711 68.138 38.627 68.135 38.554 68.177 38.505 68.173 38.480 68.195 38.397 68.275 38.348 68.363 38.265 68.443 38.115 68.403 38.032 68.344 38.008 68.307 37.925 68.183 37.841 68.142 37.750 68.069 37.667 67.967 37.584 67.914 37.500 67.883 37.409 67.908 37.325 67.906 37.284 67.876 37.277 67.874 37.261 67.851 37.170 67.846 37.137 67.938 37.063 68.020 37.038 68.054 36.997 68.111 37.005 68.122 37.089 68.245 37.081 68.311 37.164 68.343 37.190 68.368 37.182 68.476 37.238 68.592 37.271 68.660 37.345 68.781 37.320 68.885 37.403 68.937 37.387 69.044 37.304 69.123 37.230 69.204 37.222 69.212 37.174 69.299 37.222 69.413 37.238 69.458 37.271 69.476 37.337 69.466 37.428 69.441 37.511 69.444 37.595 69.538 37.644 69.652 37.644 69.732 37.652 69.845 37.684 69.955 37.636 70.043 37.628 70.060 37.613 70.124 37.613 70.225 37.696 70.319 37.787 70.344 37.853 70.322 37.919 70.238 38.003 70.242 38.069 70.362 38.127 70.439 38.211 70.542 38.294 70.584 38.385 70.647 38.468 70.720 38.509 70.833 38.517 70.936 38.533 71.042 38.476 71.138 38.428 71.226 38.370 71.311 38.329 71.411 38.245 71.407 38.078 71.341 37.987 71.316 37.980 71.425 38.012 71.536 37.987 71.630 37.913 71.649 37.822 71.584 37.739 71.579 37.655 71.556 37.572 71.564 37.481 71.538 37.397 71.545 37.222 71.496 37.139 71.483 37.048 71.516 36.881 71.590 36.798 71.637 36.764 71.695 36.749 71.802 36.790 71.914 36.873 72.038 36.931 72.155 37.015 72.268 37.063 72.383 37.071 72.495 37.087 72.601 37.095 72.704 37.135 72.725 37.219 72.786 37.302 72.881 37.358 72.998 37.384 73.106 37.467 73.189 37.508 73.302 37.515 73.405 37.541 73.523 37.515 73.617 37.500 73.714 37.500 73.815 37.492 73.822 37.401 73.796 37.318 73.713 37.302 73.819 37.343 73.932 37.366 74.040 37.391 74.148 37.417 74.266 37.500 74.380 37.459 74.469 37.451 74.577 37.451 74.606 37.467 74.721 37.434 74.782 37.393 74.880 37.310 74.957 37.358 75.040 37.442 75.144 37.525 75.159 37.591 75.068 37.607 75.033 37.673 74.951 37.764 74.987 37.847 75.021 37.904 74.936 37.987 74.952 38.078 74.948 38.119 74.858 38.211 74.836 38.301 74.834 38.385 74.840 38.451 74.899 38.535 74.884 38.591 74.789 38.624 74.687 38.657 74.596 38.680 74.501 38.713 74.409 38.713 74.297 38.729 74.200 38.645 74.095 38.597 73.979 38.637 73.880 38.703 73.831 38.719 73.835 38.802 73.788 38.886 73.754 38.977 73.771 39.002 73.880 39.086 73.823 39.160 73.743 39.243 73.665 39.334 73.673 39.417 73.687 39.501 73.681 39.509 73.674 39.517 73.574 39.501 73.457 39.445 73.339 39.437 73.318 39.414 73.209 39.429 73.111 39.414 73.005 39.414 72.894 39.429 72.796 39.455 72.701 39.429 72.592 39.406 72.473 39.332 72.340 39.248 72.286 39.305 72.233 39.353 72.135 39.404 72.048 39.353 71.931 39.330 71.823 39.414 71.778 39.497 71.801 39.513 71.746 39.497 71.639 39.554 71.543 39.637 71.558 39.652 71.460 39.602 71.333 39.586 71.227 39.554 71.116 39.470 71.073 39.478 70.973 39.447 70.863 39.470 70.758 39.554 70.709 39.602 70.694 39.627 70.590 39.652 70.495 39.612 70.371 39.579 70.260 39.670 70.276 39.621 70.151 39.588 70.039 39.614 69.987 39.588 69.878 39.637 69.780 39.629 69.665 39.588 69.552 39.588 69.348 39.672 69.351 39.755 69.334 39.847 69.299 39.930 69.312 40.014 69.417 39.965 69.505 40.049 69.530 40.133 69.539 40.159 69.566 40.174 69.674 40.207 69.787 40.231 69.898 40.256 70.009 40.264 70.043 40.264 70.083 40.248 70.106 40.200 70.202 40.192 70.302 40.135 70.395 40.119 70.492 40.094 70.586 40.068 70.587 40.053 70.582 39.996 70.504 40.004 70.566 40.053 70.685 40.094 70.698 40.178 70.777 40.227 70.895 40.301 71.023 40.293 70.918 40.268 70.807 40.260 70.702 40.411 70.547 40.403 70.513 40.411 70.475 40.426 70.421 40.475 70.397 40.524 70.422 40.575 70.552 40.606 70.581 40.681 70.709 40.773 70.843 40.788 70.839 40.812 70.744 40.904 70.725 40.978 70.637 41.078 70.517 40.994 70.429 40.910 70.319 40.869 70.203 40.802 70.078 40.794 70.056 40.794 70.047 40.769 69.935 40.684 69.805 40.718 69.703 40.792 69.625 40.800 69.608 40.849 69.522 40.800 69.403 40.716 69.385 40.624 69.285 40.540 69.317 40.466 69.343 40.424 69.370 40.340 69.362 40.332 69.318 40.291 69.315 40.284 69.331 40.250 69.361 40.243 69.308 40.235 69.296 40.235 69.286 40.243 69.208 40.276 69.128 40.284 69.091 40.284 69.071 40.268 68.994 40.244 68.884 40.244 68.834 40.252 68.808 40.227 68.688 40.203 68.661 40.188 68.687 40.164 68.748 40.188 68.909 40.196 68.931 40.121 68.987 40.129 68.949 40.129 68.847 40.045 68.851 39.961 68.928 40.017 68.842 39.934 68.858 39.918 68.752 39.903 68.686 39.819 68.673 39.703 68.670 39.620 68.579 39.586 68.458 39.602 68.361 39.602 68.249 39.610 68.149 39.633 68.043 39.648 67.945 39.664 67.847 39.664 67.744 39.608 67.618 39.558 67.564 39.534 67.499 39.534 67.489 39.509 67.493 39.425 67.480 39.334 67.416 ; #2505 15 -16.475 167.592 -16.434 167.545 -16.351 167.533 -16.268 167.494 -16.177 167.472 -16.093 167.469 -16.003 167.399 -16.043 167.306 -15.960 167.238 -15.877 167.264 -15.786 167.259 -15.771 167.351 -15.854 167.447 -15.937 167.468 -16.020 167.584 -16.103 167.671 -16.144 167.777 -16.235 167.864 -16.318 167.922 -16.409 167.869 -16.386 167.759 -16.426 167.674 -16.475 167.590 ; #2506 15 -18.875 169.352 -18.843 169.297 -18.810 169.193 -18.753 169.074 -18.670 169.090 -18.587 169.088 -18.504 169.134 -18.535 169.246 -18.618 169.332 -18.701 169.306 -18.792 169.413 -18.875 169.350 ; #2507 15 16.349 -86.715 16.433 -86.652 16.465 -86.562 16.498 -86.463 16.506 -86.368 16.473 -86.459 16.433 -86.557 16.392 -86.646 16.351 -86.715 ; #2508 15 25.053 -77.535 25.068 -77.520 25.076 -77.425 25.117 -77.328 25.141 -77.441 25.134 -77.536 25.051 -77.534 ; #2509 8 -33.530 -79.024 -33.447 -78.948 -33.462 -78.854 -33.503 -78.967 -33.526 -79.023 ; #2510 8 -44.535 -74.451 -44.528 -74.562 -44.520 -74.663 -44.463 -74.521 -44.512 -74.439 -44.537 -74.452 ; #2511 8 -44.835 -74.330 -44.751 -74.206 -44.717 -74.085 -44.733 -73.978 -44.782 -73.896 -44.807 -74.013 -44.833 -74.131 -44.833 -74.182 -44.856 -74.299 -44.833 -74.329 ; #2512 8 -48.917 -75.231 -48.823 -75.288 -48.816 -75.391 -48.816 -75.499 -48.807 -75.613 -48.722 -75.618 -48.681 -75.488 -48.672 -75.375 -48.758 -75.359 -48.758 -75.252 -48.843 -75.214 -48.919 -75.235 ; #2513 8 -45.596 -73.629 -45.536 -73.703 -45.495 -73.797 -45.410 -73.761 -45.324 -73.716 -45.290 -73.583 -45.376 -73.576 -45.469 -73.596 -45.554 -73.599 -45.596 -73.631 ; #2514 8 -49.105 -75.487 -49.071 -75.576 -48.986 -75.581 -48.928 -75.431 -48.843 -75.374 -48.893 -75.294 -48.978 -75.311 -49.011 -75.437 -49.097 -75.464 -49.105 -75.489 ; #2515 8 -49.834 -74.840 -49.759 -74.679 -49.775 -74.796 -49.690 -74.717 -49.604 -74.743 -49.612 -74.856 -49.527 -74.895 -49.477 -74.749 -49.426 -74.839 -49.341 -74.812 -49.357 -74.712 -49.271 -74.646 -49.238 -74.735 -49.323 -74.814 -49.357 -74.941 -49.450 -74.993 -49.535 -74.954 -49.620 -74.938 -49.713 -74.980 -49.698 -75.079 -49.630 -75.161 -49.537 -75.182 -49.479 -75.259 -49.394 -75.287 -49.309 -75.303 -49.301 -75.416 -49.216 -75.443 -49.123 -75.401 -49.172 -75.322 -49.258 -75.262 -49.317 -75.186 -49.232 -75.235 -49.146 -75.306 -49.146 -75.197 -49.222 -75.131 -49.129 -75.153 -49.162 -75.063 -49.077 -75.049 -49.119 -74.964 -49.186 -74.893 -49.093 -74.861 -49.007 -74.825 -48.922 -74.820 -48.863 -74.896 -48.778 -74.806 -48.827 -74.951 -48.742 -75.000 -48.692 -74.855 -48.709 -74.982 -48.623 -74.945 -48.538 -74.825 -48.522 -74.709 -48.563 -74.614 -48.649 -74.608 -48.563 -74.561 -48.649 -74.513 -48.742 -74.544 -48.784 -74.459 -48.869 -74.505 -48.944 -74.438 -49.029 -74.419 -49.123 -74.431 -49.293 -74.458 -49.378 -74.485 -49.472 -74.526 -49.557 -74.563 -49.464 -74.502 -49.490 -74.408 -49.575 -74.381 -49.575 -74.500 -49.616 -74.404 -49.702 -74.408 -49.787 -74.465 -49.753 -74.555 -49.829 -74.511 -49.870 -74.653 -49.829 -74.639 -49.829 -74.650 -49.854 -74.772 -49.829 -74.768 -49.829 -74.831 ; #2516 8 -49.111 -74.929 -49.043 -75.000 -49.002 -75.095 -48.986 -75.194 -48.900 -75.147 -48.885 -75.031 -48.885 -74.913 -48.970 -74.864 -49.063 -74.895 -49.112 -74.933 ; #2517 8 -51.312 -74.978 -51.225 -74.877 -51.166 -74.949 -51.079 -74.805 -51.036 -74.668 -51.053 -74.569 -51.140 -74.583 -51.235 -74.580 -51.176 -74.662 -51.210 -74.705 -51.279 -74.719 -51.287 -74.734 -51.219 -74.710 -51.269 -74.776 -51.285 -74.896 -51.310 -74.976 ; #2518 8 -51.040 -74.414 -50.998 -74.496 -50.948 -74.573 -50.861 -74.473 -50.948 -74.456 -50.972 -74.362 -51.040 -74.417 ; #2519 8 -51.902 -74.722 -51.807 -74.606 -51.807 -74.486 -51.894 -74.653 -51.902 -74.725 ; #2520 8 -54.055 -70.491 -54.030 -70.598 -53.996 -70.688 -53.953 -70.774 -53.884 -70.852 -53.789 -70.858 -53.702 -70.868 -53.678 -70.741 -53.694 -70.629 -53.607 -70.686 -53.520 -70.676 -53.433 -70.556 -53.468 -70.466 -53.555 -70.466 -53.642 -70.432 -53.737 -70.426 -53.796 -70.351 -53.838 -70.490 -53.787 -70.570 -53.874 -70.560 -53.961 -70.503 -54.048 -70.479 -54.056 -70.494 ; #2521 8 -53.975 -70.319 -53.941 -70.409 -53.890 -70.265 -53.977 -70.320 ; #2522 8 -54.653 -70.398 -54.714 -70.559 -54.705 -70.667 -54.655 -70.522 -54.655 -70.399 ; #2523 8 -54.950 -69.934 -54.890 -69.784 -54.874 -69.650 -54.865 -69.532 -54.961 -69.502 -54.874 -69.493 -54.865 -69.364 -54.815 -69.219 -54.815 -69.107 -54.831 -69.004 -54.805 -68.875 -54.805 -68.751 -54.772 -68.618 -54.764 -68.490 -54.772 -68.382 -54.823 -68.301 -54.910 -68.375 -54.910 -68.499 -54.961 -68.654 -54.944 -68.756 -54.902 -68.854 -54.867 -68.945 -54.944 -68.869 -54.968 -68.761 -54.995 -68.654 -55.003 -68.546 -55.003 -68.423 -55.011 -68.316 -55.047 -68.227 -55.098 -68.149 -55.116 -68.274 -55.116 -68.387 -55.132 -68.511 -55.080 -68.599 -55.151 -68.534 -55.142 -68.405 -55.169 -68.300 -55.205 -68.211 -55.221 -68.098 -55.282 -68.016 -55.379 -68.004 -55.469 -67.975 -55.477 -68.094 -55.442 -68.193 -55.344 -68.192 -55.309 -68.282 -55.325 -68.406 -55.273 -68.495 -55.282 -68.614 -55.249 -68.704 -55.282 -68.851 -55.184 -68.728 -55.184 -68.841 -55.086 -68.808 -55.086 -68.932 -55.043 -69.015 -55.043 -69.128 -54.954 -69.170 -54.962 -69.298 -55.013 -69.208 -55.057 -69.361 -55.119 -69.281 -55.180 -69.210 -55.250 -69.134 -55.286 -69.283 -55.269 -69.385 -55.209 -69.456 -55.182 -69.551 -55.130 -69.628 -55.040 -69.545 -55.057 -69.669 -55.065 -69.798 -54.977 -69.770 -54.977 -69.883 -54.984 -69.932 -54.942 -69.927 ; #2524 8 -55.610 -67.278 -55.583 -67.385 -55.558 -67.481 -55.460 -67.338 -55.531 -67.272 -55.610 -67.281 ; #2525 8 51.817 3.857 51.878 3.975 51.862 4.029 51.819 4.152 51.761 4.265 51.744 4.309 51.737 4.329 51.704 4.221 51.728 4.156 51.737 4.145 51.805 4.032 51.840 3.920 51.824 3.856 ; #2526 8 -18.172 -70.415 -18.245 -70.328 -18.268 -70.322 -18.301 -70.335 -18.392 -70.347 -18.475 -70.349 -18.566 -70.352 -18.649 -70.353 -18.732 -70.326 -18.815 -70.318 -18.907 -70.292 -18.990 -70.285 -19.073 -70.287 -19.164 -70.271 -19.247 -70.226 -19.330 -70.210 -19.353 -70.204 -19.444 -70.198 -19.535 -70.163 -19.618 -70.164 -19.701 -70.157 -19.785 -70.130 -19.818 -70.134 -19.901 -70.135 -19.992 -70.147 -20.015 -70.168 -20.098 -70.143 -20.189 -70.194 -20.272 -70.180 -20.356 -70.211 -20.446 -70.206 -20.529 -70.210 -20.613 -70.222 -20.704 -70.151 -20.787 -70.172 -20.870 -70.158 -20.953 -70.133 -21.037 -70.098 -21.120 -70.084 -21.203 -70.087 -21.236 -70.074 -21.259 -70.078 -21.342 -70.108 -21.425 -70.158 -21.516 -70.163 -21.599 -70.167 -21.690 -70.181 -21.774 -70.202 -21.857 -70.206 -21.948 -70.237 -22.213 -70.277 -22.296 -70.263 -22.387 -70.303 -22.470 -70.307 -22.553 -70.320 -22.636 -70.323 -22.719 -70.318 -22.803 -70.358 -22.876 -70.465 -22.836 -70.556 -23.002 -70.599 -23.085 -70.612 -23.176 -70.616 -23.259 -70.629 -23.283 -70.536 -23.290 -70.440 -23.373 -70.415 -23.464 -70.429 -23.547 -70.488 -23.631 -70.510 -23.812 -70.538 -23.896 -70.512 -23.979 -70.525 -24.070 -70.548 -24.153 -70.551 -24.236 -70.564 -24.327 -70.596 -24.418 -70.571 -24.501 -70.584 -24.751 -70.507 -24.842 -70.483 -24.925 -70.468 -25.008 -70.434 -25.182 -70.472 -25.266 -70.546 -25.314 -70.653 -25.405 -70.664 -25.488 -70.700 -25.579 -70.737 -25.662 -70.717 -25.753 -70.660 -25.819 -70.647 -25.902 -70.683 -25.993 -70.694 -26.076 -70.702 -26.142 -70.678 -26.308 -70.732 -26.399 -70.734 -26.566 -70.809 -26.656 -70.855 -26.739 -70.835 -26.823 -70.844 -26.838 -70.847 -26.922 -70.913 -27.005 -70.969 -27.095 -70.962 -27.111 -70.965 -27.194 -70.965 -27.277 -70.927 -27.444 -70.981 -27.535 -71.087 -27.618 -71.123 -27.701 -71.151 -27.784 -71.169 -27.875 -71.198 -27.883 -71.200 -27.966 -71.191 -28.057 -71.201 -28.140 -71.192 -28.190 -71.222 -28.222 -71.229 -28.304 -71.285 -28.395 -71.314 -28.479 -71.341 -28.562 -71.399 -28.645 -71.515 -28.728 -71.533 -28.819 -71.506 -28.986 -71.503 -28.993 -71.496 -29.049 -71.410 -29.132 -71.351 -29.224 -71.323 -29.307 -71.341 -29.390 -71.302 -29.473 -71.330 -29.556 -71.330 -29.647 -71.293 -29.663 -71.287 -29.753 -71.385 -29.779 -71.400 -29.862 -71.370 -29.945 -71.388 -30.028 -71.495 -30.044 -71.598 -30.135 -71.673 -30.218 -71.679 -30.301 -71.695 -30.392 -71.712 -30.475 -71.709 -30.483 -71.702 -30.574 -71.711 -30.657 -71.696 -30.748 -71.666 -30.831 -71.672 -30.914 -71.688 -30.998 -71.664 -31.089 -71.643 -31.172 -71.640 -31.262 -71.609 -31.346 -71.606 -31.379 -71.607 -31.470 -71.586 -31.553 -71.553 -31.636 -71.549 -31.727 -71.568 -31.810 -71.565 -31.893 -71.580 -31.959 -71.590 -32.050 -71.529 -32.133 -71.476 -32.216 -71.482 -32.307 -71.527 -32.390 -71.494 -32.473 -71.528 -32.565 -71.595 -32.648 -71.570 -32.688 -71.601 -32.772 -71.617 -32.855 -71.741 -32.938 -71.765 -33.029 -71.753 -33.112 -71.720 -33.203 -71.757 -33.286 -71.682 -33.369 -71.688 -33.468 -71.717 -33.524 -71.834 -33.615 -71.880 -33.689 -71.911 -33.772 -71.945 -33.855 -72.009 -33.946 -72.046 -34.029 -72.022 -34.112 -72.007 -34.143 -72.056 -34.234 -72.065 -34.317 -72.081 -34.408 -72.080 -34.492 -72.105 -34.515 -72.122 -34.598 -72.165 -34.689 -72.202 -34.772 -72.208 -34.780 -72.202 -34.863 -72.227 -34.946 -72.352 -35.037 -72.421 -35.053 -72.418 -35.078 -72.427 -35.169 -72.488 -35.253 -72.547 -35.336 -72.657 -35.427 -72.612 -35.510 -72.585 -35.594 -72.665 -35.677 -72.754 -35.769 -72.797 -35.800 -72.809 -35.883 -72.821 -35.974 -72.836 -36.058 -72.849 -36.114 -72.888 -36.198 -72.919 -36.289 -73.003 -36.372 -72.985 -36.456 -73.016 -36.440 -73.111 -36.357 -73.108 -36.440 -73.167 -36.523 -73.208 -36.539 -73.186 -36.623 -73.168 -36.706 -73.180 -36.790 -73.184 -36.881 -73.218 -36.964 -73.338 -36.972 -73.452 -36.947 -73.543 -36.898 -73.626 -36.982 -73.666 -37.065 -73.698 -37.156 -73.643 -37.240 -73.626 -37.323 -73.706 -37.407 -73.689 -37.490 -73.661 -37.581 -73.594 -37.665 -73.537 -37.756 -73.491 -37.847 -73.486 -37.931 -73.498 -38.014 -73.549 -38.098 -73.552 -38.189 -73.559 -38.212 -73.549 -38.296 -73.540 -38.387 -73.504 -38.470 -73.476 -38.470 -73.447 -38.536 -73.423 -38.620 -73.396 -38.703 -73.358 -38.795 -73.322 -38.878 -73.283 -38.962 -73.275 -38.930 -73.243 -39.014 -73.256 -39.097 -73.248 -39.121 -73.266 -39.204 -73.270 -39.295 -73.304 -39.386 -73.367 -39.470 -73.390 -39.553 -73.402 -39.569 -73.399 -39.577 -73.392 -39.609 -73.507 -39.666 -73.640 -39.724 -73.703 -39.808 -73.663 -39.899 -73.717 -39.932 -73.711 -40.023 -73.748 -40.107 -73.758 -40.199 -73.760 -40.283 -73.780 -40.368 -73.859 -40.452 -73.879 -40.536 -73.919 -40.628 -73.911 -40.712 -74.009 -40.796 -73.989 -40.888 -73.982 -40.972 -73.930 -41.056 -73.887 -41.149 -73.890 -41.232 -73.868 -41.299 -73.787 -41.315 -73.691 -41.322 -73.613 -41.389 -73.747 -41.473 -73.787 -41.481 -73.677 -41.504 -73.585 -41.520 -73.573 -41.520 -73.461 -41.495 -73.345 -41.510 -73.240 -41.419 -73.137 -41.334 -73.139 -41.242 -73.097 -41.201 -72.965 -41.227 -72.874 -41.268 -72.789 -41.301 -72.776 -41.393 -72.727 -41.426 -72.639 -41.400 -72.524 -41.316 -72.426 -41.232 -72.397 -41.149 -72.378 -41.232 -72.344 -41.316 -72.383 -41.400 -72.440 -41.434 -72.569 -41.442 -72.675 -41.526 -72.796 -41.610 -72.885 -41.694 -72.863 -41.735 -72.779 -41.735 -72.675 -41.678 -72.536 -41.763 -72.524 -41.847 -72.535 -41.862 -72.513 -42.031 -72.530 -42.115 -72.487 -42.171 -72.484 -42.179 -72.497 -42.087 -72.537 -42.004 -72.590 -41.919 -72.623 -41.927 -72.730 -41.950 -72.844 -42.043 -72.836 -42.117 -72.767 -42.201 -72.715 -42.234 -72.616 -42.234 -72.607 -42.260 -72.648 -42.218 -72.732 -42.203 -72.838 -42.295 -72.910 -42.379 -72.867 -42.463 -72.915 -42.555 -72.886 -42.612 -72.808 -42.637 -72.791 -42.729 -72.814 -42.729 -72.918 -42.821 -72.980 -42.905 -72.958 -42.989 -73.080 -43.082 -73.132 -43.166 -73.152 -43.250 -73.087 -43.298 -73.006 -43.298 -72.986 -43.383 -73.045 -43.434 -73.089 -43.475 -73.003 -43.383 -72.887 -43.475 -72.889 -43.516 -73.013 -43.600 -73.093 -43.692 -73.165 -43.784 -73.148 -43.776 -73.249 -43.860 -73.308 -43.902 -73.222 -43.925 -73.204 -43.966 -73.118 -43.991 -73.026 -44.066 -72.956 -44.099 -72.857 -44.140 -72.773 -44.066 -72.634 -44.150 -72.632 -44.242 -72.694 -44.326 -72.704 -44.410 -72.712 -44.494 -72.866 -44.551 -72.998 -44.643 -73.105 -44.651 -73.213 -44.643 -73.324 -44.684 -73.395 -44.776 -73.356 -44.860 -73.322 -44.952 -73.448 -44.977 -73.355 -44.936 -73.221 -44.985 -73.129 -45.043 -73.053 -45.084 -72.969 -45.076 -72.849 -45.102 -72.812 -45.152 -72.848 -45.144 -72.949 -45.102 -73.032 -45.069 -73.120 -44.983 -73.192 -45.076 -73.313 -45.092 -73.427 -45.178 -73.501 -45.271 -73.530 -45.364 -73.560 -45.449 -73.586 -45.364 -73.447 -45.322 -73.310 -45.346 -73.217 -45.362 -73.340 -45.447 -73.479 -45.532 -73.554 -45.625 -73.612 -45.711 -73.648 -45.796 -73.620 -45.881 -73.645 -45.974 -73.695 -45.881 -73.571 -45.796 -73.496 -45.711 -73.419 -45.796 -73.455 -45.881 -73.542 -45.974 -73.559 -46.060 -73.698 -46.145 -73.763 -46.230 -73.819 -46.264 -73.940 -46.178 -73.924 -46.093 -73.837 -46.008 -73.772 -45.915 -73.764 -45.873 -73.848 -45.824 -73.927 -45.917 -73.957 -45.984 -73.887 -45.976 -73.989 -45.919 -74.064 -45.927 -74.184 -45.935 -74.295 -45.927 -74.396 -45.885 -74.489 -45.919 -74.392 -45.927 -74.290 -45.893 -74.156 -45.826 -74.014 -45.740 -73.969 -45.673 -74.039 -45.758 -74.065 -45.709 -74.144 -45.616 -74.052 -45.582 -74.150 -45.489 -74.130 -45.496 -74.240 -45.489 -74.296 -45.481 -74.344 -45.566 -74.451 -45.651 -74.413 -45.627 -74.506 -45.534 -74.528 -45.518 -74.625 -45.495 -74.718 -45.552 -74.864 -45.578 -74.983 -45.562 -75.080 -45.647 -75.075 -45.681 -74.987 -45.697 -74.890 -45.713 -75.004 -45.798 -75.050 -45.798 -74.944 -45.723 -74.798 -45.629 -74.748 -45.723 -74.692 -45.808 -74.812 -45.901 -74.779 -45.852 -74.858 -45.937 -74.956 -45.903 -75.043 -45.996 -75.135 -46.038 -75.042 -46.022 -75.149 -46.064 -75.278 -46.149 -75.386 -46.206 -75.523 -46.292 -75.641 -46.318 -75.685 -46.403 -75.711 -46.488 -75.697 -46.496 -75.701 -46.555 -75.649 -46.571 -75.638 -46.638 -75.558 -46.631 -75.448 -46.545 -75.372 -46.470 -75.437 -46.395 -75.512 -46.470 -75.659 -46.377 -75.566 -46.353 -75.447 -46.337 -75.323 -46.313 -75.204 -46.228 -75.063 -46.143 -74.956 -46.228 -74.972 -46.313 -75.081 -46.399 -75.043 -46.456 -74.967 -46.506 -74.878 -46.506 -74.772 -46.573 -74.702 -46.581 -74.590 -46.597 -74.492 -46.530 -74.562 -46.537 -74.682 -46.496 -74.554 -46.462 -74.420 -46.470 -74.307 -46.563 -74.264 -46.631 -74.184 -46.682 -74.105 -46.690 -74.003 -46.732 -73.995 -46.747 -74.110 -46.773 -74.228 -46.859 -74.180 -46.817 -74.073 -46.742 -74.003 -46.775 -74.002 -46.861 -74.007 -46.876 -74.122 -46.970 -74.163 -46.894 -74.229 -46.970 -74.386 -47.055 -74.494 -47.140 -74.530 -47.140 -74.423 -47.226 -74.417 -47.285 -74.345 -47.277 -74.234 -47.235 -74.095 -47.320 -74.101 -47.313 -74.214 -47.398 -74.312 -47.440 -74.228 -47.416 -74.322 -47.366 -74.411 -47.281 -74.408 -47.247 -74.494 -47.255 -74.615 -47.340 -74.619 -47.390 -74.753 -47.449 -74.678 -47.457 -74.565 -47.449 -74.455 -47.481 -74.355 -47.481 -74.248 -47.473 -74.136 -47.523 -74.046 -47.531 -73.943 -47.489 -73.814 -47.396 -73.804 -47.311 -73.748 -47.226 -73.754 -47.311 -73.728 -47.404 -73.768 -47.489 -73.707 -47.497 -73.595 -47.497 -73.575 -47.590 -73.540 -47.657 -73.459 -47.650 -73.348 -47.683 -73.249 -47.668 -73.357 -47.675 -73.468 -47.650 -73.562 -47.592 -73.648 -47.677 -73.664 -47.745 -73.593 -47.802 -73.517 -47.844 -73.422 -47.758 -73.324 -47.844 -73.317 -47.902 -73.378 -47.860 -73.473 -47.902 -73.603 -47.816 -73.621 -47.792 -73.716 -47.792 -73.833 -47.725 -73.904 -47.725 -74.011 -47.683 -74.105 -47.675 -74.208 -47.683 -74.330 -47.769 -74.291 -47.854 -74.263 -47.779 -74.329 -47.703 -74.405 -47.670 -74.494 -47.677 -74.615 -47.762 -74.672 -47.755 -74.560 -47.840 -74.489 -47.941 -74.330 -48.009 -74.249 -47.992 -74.133 -48.034 -74.263 -48.050 -74.165 -48.084 -74.065 -48.084 -73.958 -48.177 -74.051 -48.262 -73.990 -48.228 -74.079 -48.187 -74.163 -48.187 -74.271 -48.272 -74.390 -48.357 -74.396 -48.415 -74.310 -48.391 -74.190 -48.407 -74.091 -48.423 -74.079 -48.407 -74.188 -48.433 -74.310 -48.449 -74.426 -48.542 -74.457 -48.609 -74.386 -48.694 -74.452 -48.780 -74.413 -48.865 -74.375 -48.950 -74.412 -49.043 -74.430 -49.103 -74.354 -49.178 -74.287 -49.093 -74.198 -49.000 -74.157 -48.915 -74.174 -48.821 -74.048 -48.736 -74.066 -48.687 -73.922 -48.720 -73.832 -48.704 -73.941 -48.790 -74.018 -48.883 -74.006 -48.968 -73.967 -49.009 -73.904 -48.986 -73.999 -49.071 -74.118 -49.156 -74.112 -49.190 -74.022 -49.190 -73.914 -49.275 -73.875 -49.333 -73.798 -49.390 -73.711 -49.359 -73.812 -49.317 -73.897 -49.232 -73.947 -49.224 -74.060 -49.239 -74.177 -49.289 -74.313 -49.374 -74.306 -49.400 -74.212 -49.392 -74.090 -49.434 -74.231 -49.519 -74.318 -49.571 -74.228 -49.587 -74.128 -49.636 -74.046 -49.551 -73.915 -49.636 -73.981 -49.670 -73.989 -49.685 -73.889 -49.702 -74.007 -49.676 -74.101 -49.668 -74.140 -49.610 -74.227 -49.602 -74.331 -49.670 -74.348 -49.737 -74.276 -49.787 -74.185 -49.872 -74.123 -49.872 -74.014 -49.921 -73.923 -49.947 -73.828 -49.947 -73.937 -49.906 -74.032 -49.921 -74.150 -49.854 -74.221 -49.779 -74.299 -49.763 -74.399 -49.763 -74.517 -49.848 -74.661 -49.864 -74.561 -49.921 -74.483 -50.007 -74.422 -50.033 -74.331 -49.947 -74.280 -50.033 -74.267 -50.065 -74.179 -50.049 -74.060 -50.108 -73.979 -50.177 -73.914 -50.177 -74.023 -50.143 -74.119 -50.230 -74.079 -50.171 -74.161 -50.136 -74.248 -50.205 -74.183 -50.292 -74.185 -50.387 -74.137 -50.456 -74.061 -50.491 -73.974 -50.440 -73.833 -50.345 -73.806 -50.258 -73.770 -50.171 -73.705 -50.094 -73.582 -50.181 -73.681 -50.276 -73.645 -50.292 -73.536 -50.308 -73.656 -50.404 -73.746 -50.491 -73.728 -50.456 -73.815 -50.543 -73.807 -50.527 -73.906 -50.543 -74.025 -50.535 -74.130 -50.622 -74.206 -50.656 -74.119 -50.751 -74.136 -50.838 -74.139 -50.873 -74.041 -50.786 -74.029 -50.855 -73.953 -50.887 -73.854 -50.800 -73.768 -50.842 -73.675 -50.929 -73.677 -50.861 -73.754 -50.948 -73.712 -51.042 -73.719 -51.111 -73.654 -51.198 -73.646 -51.285 -73.615 -51.208 -73.686 -51.122 -73.740 -51.061 -73.810 -51.029 -73.909 -51.123 -73.927 -51.200 -73.867 -51.287 -73.879 -51.303 -73.770 -51.399 -73.777 -51.364 -73.645 -51.356 -73.530 -51.443 -73.586 -51.512 -73.509 -51.607 -73.483 -51.548 -73.556 -51.480 -73.632 -51.567 -73.634 -51.653 -73.603 -51.730 -73.542 -51.765 -73.444 -51.823 -73.371 -51.736 -73.325 -51.641 -73.329 -51.554 -73.347 -51.467 -73.345 -51.381 -73.366 -51.467 -73.312 -51.554 -73.314 -51.649 -73.287 -51.736 -73.269 -51.649 -73.180 -51.562 -73.050 -51.536 -73.154 -51.449 -73.078 -51.381 -73.144 -51.372 -73.249 -51.285 -73.313 -51.294 -73.198 -51.362 -73.132 -51.379 -73.023 -51.413 -72.935 -51.429 -72.835 -51.480 -72.757 -51.480 -72.637 -51.393 -72.572 -51.358 -72.670 -51.316 -72.753 -51.257 -72.825 -51.241 -72.925 -51.188 -73.012 -51.164 -73.106 -51.164 -73.226 -51.077 -73.107 -51.154 -73.036 -51.196 -72.953 -51.221 -72.849 -51.237 -72.739 -51.287 -72.661 -51.346 -72.588 -51.415 -72.522 -51.502 -72.544 -51.589 -72.502 -51.623 -72.634 -51.710 -72.658 -51.779 -72.592 -51.830 -72.513 -51.917 -72.515 -52.004 -72.590 -52.080 -72.529 -52.072 -72.634 -52.056 -72.745 -52.088 -72.876 -51.993 -72.728 -51.906 -72.596 -51.819 -72.584 -51.750 -72.650 -51.708 -72.744 -51.621 -72.765 -51.595 -72.859 -51.769 -72.970 -51.855 -72.915 -51.761 -72.865 -51.855 -72.861 -51.855 -72.915 -51.848 -72.974 -51.882 -73.106 -51.795 -73.051 -51.743 -73.127 -51.830 -73.247 -51.864 -73.379 -51.805 -73.462 -51.821 -73.583 -51.763 -73.655 -51.676 -73.709 -51.763 -73.721 -51.839 -73.660 -51.926 -73.642 -52.013 -73.611 -52.100 -73.570 -52.196 -73.577 -52.283 -73.707 -52.290 -73.602 -52.377 -73.669 -52.309 -73.514 -52.214 -73.431 -52.240 -73.338 -52.327 -73.307 -52.232 -73.201 -52.145 -73.233 -52.129 -73.112 -52.145 -73.002 -52.153 -73.128 -52.203 -73.040 -52.203 -73.160 -52.290 -73.182 -52.377 -73.336 -52.428 -73.248 -52.436 -73.374 -52.428 -73.480 -52.489 -73.408 -52.547 -73.335 -52.539 -73.208 -52.598 -73.368 -52.693 -73.385 -52.719 -73.291 -52.727 -73.185 -52.719 -73.059 -52.624 -72.967 -52.450 -72.986 -52.400 -72.833 -52.313 -72.713 -52.270 -72.807 -52.321 -72.950 -52.234 -72.915 -52.191 -72.777 -52.191 -72.656 -52.165 -72.529 -52.157 -72.413 -52.216 -72.561 -52.276 -72.479 -52.189 -72.380 -52.173 -72.259 -52.165 -72.133 -52.191 -72.039 -52.175 -71.908 -52.191 -71.798 -52.200 -71.693 -52.200 -71.582 -52.276 -71.509 -52.319 -71.646 -52.327 -71.773 -52.327 -71.884 -52.292 -71.982 -52.285 -72.088 -52.285 -72.199 -52.379 -72.313 -52.466 -72.456 -52.459 -72.562 -52.475 -72.683 -52.388 -72.627 -52.345 -72.721 -52.432 -72.864 -52.527 -72.946 -52.614 -72.947 -52.709 -72.921 -52.786 -72.859 -52.760 -72.731 -52.847 -72.766 -52.839 -72.882 -52.805 -72.971 -52.805 -73.082 -52.821 -73.214 -52.796 -73.310 -52.865 -73.243 -52.917 -73.166 -52.942 -73.060 -52.976 -72.971 -53.019 -72.887 -53.069 -72.808 -53.096 -72.703 -53.138 -72.609 -53.180 -72.525 -53.172 -72.408 -53.096 -72.470 -53.035 -72.543 -53.011 -72.649 -52.915 -72.534 -52.828 -72.499 -52.853 -72.403 -52.845 -72.276 -52.776 -72.354 -52.718 -72.428 -52.718 -72.539 -52.683 -72.395 -52.709 -72.301 -52.725 -72.200 -52.768 -72.106 -52.681 -71.963 -52.594 -71.843 -52.544 -71.701 -52.493 -71.558 -52.398 -71.431 -52.372 -71.425 -52.430 -71.351 -52.446 -71.240 -52.489 -71.156 -52.576 -71.220 -52.663 -71.286 -52.750 -71.371 -52.766 -71.503 -52.835 -71.657 -52.930 -71.782 -53.017 -71.773 -53.112 -71.778 -53.172 -71.928 -53.086 -71.806 -52.990 -71.834 -52.903 -71.843 -52.871 -71.934 -52.958 -72.033 -53.053 -72.083 -53.077 -72.221 -52.990 -72.090 -52.903 -72.122 -52.887 -72.223 -52.903 -72.355 -52.990 -72.421 -53.077 -72.433 -53.146 -72.365 -53.215 -72.287 -53.247 -72.196 -53.316 -72.129 -53.308 -72.002 -53.350 -71.918 -53.385 -71.828 -53.417 -71.726 -53.444 -71.632 -53.452 -71.515 -53.468 -71.414 -53.500 -71.312 -53.484 -71.190 -53.450 -71.057 -53.354 -70.976 -53.267 -70.955 -53.172 -70.950 -53.086 -70.993 -52.990 -70.998 -52.903 -70.964 -52.808 -70.959 -52.721 -70.894 -52.634 -70.840 -52.539 -70.824 -52.452 -70.834 -52.365 -70.857 -52.341 -70.731 -52.325 -70.611 -52.325 -70.500 -52.274 -70.358 -52.274 -70.237 -52.187 -70.085 -52.171 -70.022 -52.111 -69.874 -52.153 -69.779 -52.129 -69.653 -52.102 -69.606 -52.094 -69.601 -52.086 -69.587 -52.060 -69.580 -51.973 -69.517 -51.886 -69.453 -51.852 -69.322 -51.844 -69.197 -51.852 -69.138 -51.894 -69.053 -51.928 -68.953 -51.928 -68.800 -51.937 -68.740 -51.953 -68.640 -51.953 -68.553 -51.945 -68.602 -51.928 -68.702 -51.921 -68.808 -51.921 -68.818 -51.894 -68.912 -51.886 -68.907 -51.852 -68.997 -51.817 -69.096 -51.809 -69.145 -51.785 -69.241 -51.785 -69.471 -51.759 -69.565 -51.743 -69.630 -51.716 -69.723 -51.690 -69.828 -51.665 -69.923 -51.640 -70.028 -51.640 -71.927 -51.615 -71.976 -51.520 -71.959 -51.461 -72.033 -51.411 -72.111 -51.368 -72.204 -51.342 -72.297 -51.326 -72.320 -51.230 -72.357 -51.205 -72.451 -51.118 -72.352 -51.022 -72.325 -50.935 -72.301 -50.909 -72.265 -50.850 -72.301 -50.800 -72.389 -50.713 -72.355 -50.626 -72.258 -50.531 -72.241 -50.444 -72.283 -50.349 -72.309 -50.290 -72.326 -50.264 -72.429 -50.306 -72.574 -50.298 -72.678 -50.282 -72.777 -50.341 -72.923 -50.418 -73.080 -50.375 -73.173 -50.280 -73.166 -50.203 -73.237 -50.029 -73.235 -49.936 -73.278 -49.876 -73.354 -49.827 -73.446 -49.741 -73.508 -49.656 -73.462 -49.640 -73.474 -49.580 -73.550 -49.495 -73.504 -49.410 -73.467 -49.317 -73.525 -49.232 -73.552 -49.146 -73.526 -49.061 -73.469 -48.968 -73.429 -48.968 -73.321 -48.919 -73.176 -48.893 -73.183 -48.799 -73.100 -48.714 -73.064 -48.629 -72.965 -48.613 -72.849 -48.563 -72.705 -48.496 -72.617 -48.411 -72.572 -48.326 -72.579 -48.241 -72.595 -48.155 -72.625 -48.114 -72.571 -48.080 -72.445 -47.987 -72.311 -47.902 -72.318 -47.816 -72.338 -47.731 -72.400 -47.672 -72.476 -47.622 -72.556 -47.528 -72.517 -47.443 -72.482 -47.350 -72.422 -47.265 -72.358 -47.172 -72.341 -47.086 -72.296 -47.063 -72.166 -46.977 -72.070 -46.952 -72.046 -46.894 -72.006 -46.886 -71.896 -46.878 -71.891 -46.785 -71.937 -46.743 -72.031 -46.659 -71.967 -46.573 -71.975 -46.480 -71.935 -46.423 -71.799 -46.329 -71.699 -46.244 -71.706 -46.220 -71.704 -46.204 -71.706 -46.119 -71.755 -46.026 -71.771 -45.992 -71.773 -45.984 -71.768 -45.899 -71.817 -45.824 -71.894 -45.800 -71.776 -45.715 -71.700 -45.689 -71.667 -45.631 -71.637 -45.598 -71.652 -45.572 -71.667 -45.548 -71.771 -45.481 -71.755 -45.395 -71.783 -45.302 -71.754 -45.217 -71.659 -45.225 -71.557 -45.176 -71.480 -45.090 -71.446 -45.005 -71.297 -44.913 -71.347 -44.864 -71.430 -44.790 -71.501 -44.697 -71.564 -44.682 -71.586 -44.682 -71.691 -44.633 -71.783 -44.649 -71.905 -44.617 -71.996 -44.559 -72.083 -44.475 -72.024 -44.483 -71.914 -44.459 -71.798 -44.483 -71.704 -44.467 -71.581 -44.467 -71.476 -44.508 -71.381 -44.433 -71.242 -44.341 -71.251 -44.258 -71.139 -44.140 -71.232 -44.132 -71.342 -44.107 -71.435 -44.114 -71.544 -44.122 -71.662 -44.107 -71.769 -44.107 -71.874 -44.015 -71.831 -43.931 -71.834 -43.846 -71.887 -43.762 -71.788 -43.755 -71.785 -43.671 -71.704 -43.637 -71.699 -43.622 -71.711 -43.555 -71.785 -43.481 -71.855 -43.397 -71.746 -43.304 -71.764 -43.289 -71.818 -43.273 -71.830 -43.199 -71.900 -43.132 -71.984 -43.048 -71.926 -42.991 -71.796 -42.900 -71.795 -42.868 -71.884 -42.853 -71.981 -42.845 -72.091 -42.788 -72.169 -42.696 -72.199 -42.612 -72.170 -42.520 -72.178 -42.352 -72.183 -42.260 -72.170 -42.175 -72.122 -42.091 -72.112 -42.035 -72.190 -41.950 -72.122 -41.866 -72.033 -41.874 -71.924 -41.825 -71.798 -41.741 -71.820 -41.716 -71.837 -41.624 -71.836 -41.540 -71.901 -41.456 -71.914 -41.363 -71.975 -41.279 -71.917 -41.195 -71.920 -41.103 -71.947 -41.019 -71.919 -40.927 -71.927 -40.835 -71.886 -40.751 -71.898 -40.667 -71.888 -40.575 -71.937 -40.491 -71.971 -40.465 -71.979 -40.374 -71.877 -40.281 -71.876 -40.197 -71.829 -40.113 -71.710 -40.029 -71.700 -39.996 -71.788 -39.913 -71.826 -39.829 -71.823 -39.836 -71.714 -39.753 -71.692 -39.738 -71.677 -39.654 -71.637 -39.571 -71.708 -39.555 -71.711 -39.464 -71.737 -39.380 -71.745 -39.332 -71.678 -39.358 -71.585 -39.342 -71.529 -39.258 -71.558 -39.175 -71.498 -39.091 -71.458 -39.008 -71.436 -38.917 -71.443 -38.833 -71.452 -38.750 -71.471 -38.666 -71.450 -38.600 -71.323 -38.552 -71.204 -38.495 -71.071 -38.470 -70.960 -38.437 -70.920 -38.354 -70.899 -38.270 -70.908 -38.222 -70.992 -38.138 -71.042 -37.971 -71.082 -37.915 -71.071 -37.824 -71.065 -37.741 -71.114 -37.649 -71.151 -37.566 -71.201 -37.474 -71.238 -37.391 -71.248 -37.300 -71.195 -37.217 -71.174 -37.133 -71.233 -37.042 -71.258 -36.958 -71.199 -36.875 -71.178 -36.792 -71.197 -36.718 -71.188 -36.692 -71.198 -36.669 -71.218 -36.586 -71.227 -36.495 -71.193 -36.403 -71.111 -36.320 -71.109 -36.246 -71.082 -36.238 -70.978 -36.172 -70.944 -36.206 -70.856 -36.114 -70.765 -36.031 -70.753 -35.947 -70.633 -35.932 -70.527 -35.906 -70.479 -35.815 -70.418 -35.775 -70.443 -35.683 -70.419 -35.516 -70.417 -35.425 -70.452 -35.342 -70.440 -35.259 -70.450 -35.167 -70.487 -35.084 -70.506 -35.043 -70.591 -34.977 -70.541 -34.952 -70.433 -34.861 -70.388 -34.805 -70.390 -34.714 -70.373 -34.631 -70.339 -34.547 -70.324 -34.482 -70.295 -34.391 -70.278 -34.308 -70.205 -34.225 -70.152 -34.133 -70.107 -34.068 -70.106 -34.052 -70.062 -34.068 -69.958 -33.977 -69.891 -33.886 -69.913 -33.803 -69.908 -33.719 -69.972 -33.636 -69.957 -33.553 -69.972 -33.462 -69.945 -33.379 -69.939 -33.288 -69.904 -33.205 -69.870 -33.122 -69.874 -33.031 -69.935 -33.079 -70.048 -33.079 -70.067 -32.996 -70.131 -32.905 -70.162 -32.831 -70.168 -32.748 -70.096 -32.692 -70.070 -32.652 -70.067 -32.611 -70.155 -32.596 -70.159 -32.512 -70.223 -32.429 -70.238 -32.346 -70.204 -32.263 -70.228 -32.206 -70.311 -32.116 -70.303 -32.100 -70.307 -32.017 -70.382 -32.001 -70.387 -31.918 -70.420 -31.828 -70.433 -31.843 -70.338 -31.760 -70.296 -31.677 -70.379 -31.669 -70.476 -31.586 -70.540 -31.503 -70.554 -31.419 -70.617 -31.328 -70.639 -31.245 -70.624 -31.162 -70.599 -31.079 -70.594 -30.988 -70.576 -30.904 -70.524 -30.928 -70.432 -30.844 -70.381 -30.761 -70.366 -30.678 -70.369 -30.587 -70.343 -30.504 -70.301 -30.413 -70.274 -30.330 -70.241 -30.239 -70.166 -30.156 -70.190 -30.187 -70.101 -30.187 -70.032 -30.104 -69.921 -30.020 -69.907 -29.947 -69.862 -29.881 -69.946 -29.798 -69.955 -29.707 -69.945 -29.624 -69.945 -29.541 -69.955 -29.508 -69.956 -29.425 -70.005 -29.334 -70.003 -29.251 -70.043 -29.168 -70.072 -29.076 -70.071 -29.061 -70.040 -28.978 -69.984 -28.922 -69.864 -28.839 -69.837 -28.756 -69.846 -28.672 -69.810 -28.589 -69.783 -28.506 -69.804 -28.415 -69.767 -28.332 -69.721 -28.241 -69.720 -28.200 -69.720 -28.127 -69.607 -28.036 -69.548 -27.953 -69.433 -27.870 -69.397 -27.786 -69.332 -27.703 -69.227 -27.612 -69.199 -27.579 -69.192 -27.496 -69.135 -27.405 -69.116 -27.322 -69.080 -27.239 -69.035 -27.148 -68.968 -27.065 -68.960 -26.974 -68.913 -26.916 -68.804 -26.956 -68.715 -26.890 -68.595 -26.875 -68.494 -26.792 -68.390 -26.709 -68.372 -26.693 -68.378 -26.527 -68.497 -26.444 -68.577 -26.353 -68.644 -26.269 -68.654 -26.186 -68.645 -26.103 -68.627 -26.020 -68.513 -25.929 -68.466 -25.680 -68.530 -25.588 -68.537 -25.339 -68.629 -25.256 -68.639 -25.165 -68.620 -25.109 -68.590 -25.018 -68.553 -24.977 -68.528 -24.952 -68.427 -24.869 -68.453 -24.820 -68.484 -24.737 -68.499 -24.696 -68.590 -24.606 -68.615 -24.523 -68.575 -24.432 -68.544 -24.348 -68.455 -24.308 -68.363 -24.277 -68.340 -24.186 -68.230 -24.145 -68.127 -24.105 -68.024 -24.064 -67.922 -24.023 -67.819 -23.983 -67.707 -23.975 -67.697 -23.952 -67.637 -23.911 -67.526 -23.861 -67.422 -23.770 -67.381 -23.671 -67.349 -23.580 -67.327 -23.573 -67.326 -23.482 -67.294 -23.383 -67.271 -23.285 -67.239 -23.193 -67.216 -22.863 -67.092 -22.779 -67.147 -22.689 -67.239 -22.663 -67.263 -22.689 -67.372 -22.713 -67.490 -22.729 -67.607 -22.737 -67.705 -22.721 -67.817 -22.689 -67.918 -22.598 -67.951 -22.506 -67.947 -22.424 -67.926 -22.341 -67.952 -22.249 -67.977 -22.166 -68.020 -22.083 -67.990 -21.992 -68.033 -21.909 -68.039 -21.826 -68.132 -21.742 -68.158 -21.660 -68.155 -21.576 -68.180 -21.485 -68.223 -21.402 -68.249 -21.311 -68.253 -21.145 -68.247 -21.079 -68.285 -21.071 -68.292 -21.056 -68.299 -21.015 -68.331 -20.932 -68.386 -20.841 -68.437 -20.793 -68.527 -20.777 -68.580 -20.694 -68.615 -20.611 -68.611 -20.520 -68.551 -20.437 -68.586 -20.386 -68.674 -20.330 -68.772 -20.247 -68.806 -20.149 -68.736 -20.057 -68.760 -19.967 -68.832 -19.926 -68.722 -19.918 -68.625 -19.862 -68.600 -19.779 -68.572 -19.696 -68.609 -19.671 -68.662 -19.597 -68.748 -19.514 -68.682 -19.431 -68.625 -19.423 -68.624 -19.332 -68.556 -19.249 -68.538 -19.175 -68.624 -19.135 -68.715 -19.052 -68.789 -18.968 -68.884 -18.920 -68.973 -18.895 -68.979 -18.812 -69.045 -18.721 -69.016 -18.630 -69.051 -18.546 -69.078 -18.456 -69.094 -18.415 -69.098 -18.324 -69.095 -18.241 -69.140 -18.150 -69.147 -18.076 -69.176 -17.993 -69.203 -17.910 -69.137 -17.903 -69.182 -17.869 -69.274 -17.829 -69.374 -17.738 -69.380 -17.655 -69.396 -17.564 -69.481 -17.481 -69.555 -17.415 -69.555 -17.384 -69.561 -17.450 -69.636 -17.541 -69.743 -17.533 -69.837 -17.624 -69.904 -17.707 -69.868 -17.790 -69.852 -17.873 -69.845 -17.957 -69.882 -18.048 -69.940 -18.131 -70.017 -18.146 -70.057 -18.179 -70.157 -18.202 -70.256 -18.194 -70.360 -18.194 -70.386 -18.220 -70.456 ; #2527 8 -52.178 -68.455 -52.220 -68.437 -52.196 -68.432 -52.180 -68.456 ; #2528 8 -54.618 -68.573 -54.705 -68.582 -54.689 -68.507 -54.620 -68.577 ; #2529 8 27.751 -13.271 27.751 -8.764 27.850 -8.760 27.949 -8.764 28.048 -8.761 28.146 -8.766 28.245 -8.761 28.343 -8.766 28.543 -8.758 28.709 -8.767 28.792 -8.762 28.833 -8.686 28.874 -8.590 28.947 -8.487 29.096 -8.298 29.137 -8.202 29.177 -8.106 29.260 -8.003 29.316 -7.908 29.357 -7.862 29.431 -7.767 29.464 -7.670 29.456 -7.572 29.514 -7.468 29.597 -7.403 29.653 -7.298 29.701 -7.202 29.686 -7.103 29.678 -7.005 29.671 -6.898 29.645 -6.798 29.638 -6.700 29.711 -6.605 29.794 -6.579 29.878 -6.525 29.878 -6.439 29.870 -6.331 29.910 -6.234 29.903 -6.135 29.895 -6.087 29.920 -5.990 29.943 -5.893 29.951 -5.786 29.959 -5.688 29.990 -5.591 30.040 -5.495 30.063 -5.449 30.137 -5.354 30.220 -5.261 30.236 -5.252 30.319 -5.179 30.409 -5.136 30.465 -5.100 30.557 -5.039 30.589 -4.942 30.622 -4.836 30.655 -4.739 30.678 -4.633 30.686 -4.546 30.686 -4.537 30.744 -4.442 30.785 -4.336 30.793 -4.327 30.818 -4.280 30.901 -4.198 30.967 -4.093 30.982 -3.995 30.990 -3.888 30.998 -3.790 31.088 -3.707 31.172 -3.778 31.205 -3.887 31.278 -3.909 31.361 -3.913 31.452 -3.840 31.500 -3.941 31.592 -3.955 31.675 -3.950 31.748 -3.855 31.741 -3.746 31.715 -3.646 31.741 -3.539 31.773 -3.442 31.822 -3.247 31.837 -3.199 31.878 -3.093 31.886 -3.093 31.969 -3.058 32.052 -3.062 32.125 -2.966 32.125 -2.858 32.141 -2.760 32.164 -2.652 32.179 -2.554 32.187 -2.455 32.179 -2.347 32.172 -2.247 32.164 -2.148 32.157 -2.048 32.149 -1.949 32.149 -1.841 32.141 -1.741 32.141 -1.504 32.125 -1.404 32.125 -1.317 32.133 -1.308 32.189 -1.398 32.189 -1.407 32.255 -1.373 32.346 -1.368 32.429 -1.323 32.462 -1.215 32.545 -1.152 32.619 -1.264 32.685 -1.374 32.741 -1.476 32.824 -1.558 32.922 -1.629 33.006 -1.605 33.097 -1.609 33.180 -1.700 33.263 -1.773 33.346 -1.777 33.437 -1.771 33.520 -1.726 33.603 -1.721 33.694 -1.785 33.720 -1.844 33.810 -1.809 33.894 -1.831 33.985 -1.807 34.068 -1.780 34.118 -1.773 34.217 -1.807 34.308 -1.839 34.391 -1.901 34.489 -1.817 34.505 -1.799 34.571 -1.911 34.654 -1.945 34.737 -1.890 34.793 -1.932 34.809 -1.952 34.875 -2.064 34.948 -2.167 35.004 -2.258 35.095 -2.321 35.129 -2.423 35.129 -2.454 35.144 -2.555 35.103 -2.653 35.111 -2.763 35.144 -2.864 35.227 -2.969 35.144 -2.897 35.151 -2.998 35.235 -3.021 35.276 -3.023 35.276 -3.072 35.332 -3.057 35.423 -3.072 35.332 -3.146 35.233 -3.341 35.192 -3.447 35.208 -3.548 35.223 -3.650 35.264 -3.752 35.264 -3.862 35.206 -3.916 35.222 -4.017 35.237 -4.119 35.204 -4.217 35.189 -4.325 35.155 -4.424 35.155 -4.533 35.181 -4.623 35.196 -4.733 35.222 -4.835 35.278 -4.949 35.352 -5.054 35.384 -5.105 35.441 -5.197 35.524 -5.273 35.616 -5.368 35.699 -5.423 35.782 -5.438 35.831 -5.451 35.856 -5.471 35.905 -5.493 35.881 -5.592 35.866 -5.600 35.817 -5.707 35.825 -5.808 35.784 -5.905 35.792 -6.006 35.701 -6.039 35.617 -6.082 35.534 -6.116 35.443 -6.149 35.369 -6.181 35.278 -6.214 35.194 -6.247 35.111 -6.290 35.020 -6.324 34.994 -6.331 34.911 -6.366 34.820 -6.409 34.737 -6.453 34.654 -6.506 34.571 -6.550 34.405 -6.658 34.313 -6.732 34.265 -6.759 34.182 -6.803 34.099 -6.865 34.041 -6.910 33.957 -7.004 33.892 -7.100 33.834 -7.196 33.818 -7.252 33.778 -7.350 33.720 -7.455 33.696 -7.523 33.631 -7.628 33.623 -7.727 33.567 -7.823 33.541 -7.930 33.501 -8.027 33.476 -8.083 33.435 -8.180 33.420 -8.287 33.387 -8.385 33.346 -8.419 33.280 -8.524 33.265 -8.622 33.174 -8.694 33.091 -8.758 33.008 -8.831 32.917 -8.933 32.843 -9.027 32.760 -9.121 32.752 -9.129 32.679 -9.223 32.595 -9.317 32.512 -9.339 32.429 -9.342 32.338 -9.336 32.255 -9.340 32.172 -9.382 32.081 -9.412 32.066 -9.421 31.992 -9.503 31.909 -9.575 31.826 -9.656 31.735 -9.738 31.652 -9.750 31.568 -9.810 31.477 -9.864 31.394 -9.876 31.311 -9.861 31.220 -9.882 31.137 -9.895 31.054 -9.879 30.971 -9.883 30.913 -9.869 30.821 -9.872 30.738 -9.923 30.655 -9.936 30.632 -9.835 30.549 -9.742 30.465 -9.698 30.400 -9.663 30.309 -9.675 30.226 -9.687 30.135 -9.699 30.052 -9.752 30.036 -9.761 29.953 -9.804 29.897 -9.839 29.814 -9.922 29.723 -10.003 29.599 -10.113 29.516 -10.145 29.425 -10.218 29.342 -10.280 29.276 -10.374 29.193 -10.438 29.152 -10.475 29.069 -10.556 29.003 -10.651 28.962 -10.747 28.914 -10.842 28.874 -10.938 28.817 -11.032 28.759 -11.136 28.736 -11.153 28.653 -11.255 28.486 -11.421 28.403 -11.473 28.345 -11.568 28.313 -11.673 28.272 -11.768 28.241 -11.864 28.208 -11.969 28.167 -12.065 28.134 -12.110 28.102 -12.304 28.086 -12.401 28.071 -12.498 28.048 -12.603 28.048 -12.701 28.040 -12.798 28.014 -12.894 27.982 -12.999 27.899 -13.033 27.807 -13.084 27.759 -13.187 27.726 -13.204 ; #2530 8 56.115 21.065 56.107 21.074 56.018 21.076 55.920 21.056 55.830 21.069 55.652 21.186 55.554 21.221 55.465 21.258 55.375 21.270 55.313 21.285 55.288 21.272 55.296 21.307 55.323 21.376 55.244 21.492 55.228 21.603 55.184 21.712 55.159 21.822 55.124 21.887 55.124 22.021 55.080 22.130 55.107 22.246 55.099 22.369 55.099 22.482 55.115 22.597 55.115 22.607 55.037 22.632 54.993 22.741 54.942 22.849 54.855 22.874 54.779 22.753 54.692 22.734 54.683 22.733 54.596 22.714 54.509 22.706 54.502 22.715 54.433 22.776 54.417 22.796 54.449 22.911 54.406 23.020 54.364 23.138 54.321 23.233 54.313 23.243 54.297 23.354 54.237 23.460 54.150 23.505 54.117 23.512 54.091 23.520 54.004 23.511 53.996 23.585 53.980 23.695 53.996 23.809 53.987 23.853 54.004 23.967 53.996 24.078 54.004 24.100 54.012 24.121 54.012 24.234 53.962 24.317 53.969 24.430 54.020 24.558 54.047 24.629 54.030 24.739 54.117 24.825 54.204 24.879 54.204 25.002 54.188 25.034 54.230 25.151 54.281 25.199 54.324 25.225 54.307 25.346 54.315 25.367 54.358 25.452 54.289 25.556 54.202 25.534 54.194 25.656 54.255 25.776 54.342 25.766 54.376 25.647 54.408 25.539 54.495 25.628 54.582 25.659 54.643 25.756 54.677 25.739 54.764 25.739 54.815 25.725 54.902 25.777 54.926 25.791 54.995 25.913 54.995 26.026 55.022 26.142 55.039 26.166 55.128 26.233 55.172 26.240 55.188 26.366 55.197 26.480 55.180 26.533 55.172 26.611 55.188 26.624 55.267 26.656 55.338 26.780 55.354 26.669 55.354 26.556 55.398 26.449 55.487 26.506 55.577 26.541 55.612 26.590 55.702 26.603 55.718 26.595 55.718 26.550 55.745 26.441 55.753 26.397 55.789 26.288 55.922 26.138 55.982 26.032 55.991 26.002 56.034 25.894 56.034 25.873 56.105 25.769 56.194 25.667 56.202 25.543 56.202 25.429 56.211 25.315 56.219 25.261 56.219 25.136 56.308 25.033 56.333 24.992 56.413 24.946 56.483 24.879 56.440 24.771 56.404 24.652 56.325 24.541 56.308 24.425 56.344 24.304 56.317 24.235 56.308 24.119 56.352 24.000 56.377 23.888 56.377 23.774 56.394 23.651 56.394 23.630 56.367 23.512 56.394 23.401 56.411 23.288 56.402 23.197 56.350 23.077 56.440 22.986 56.440 22.861 56.404 22.743 56.421 22.630 56.429 22.599 56.438 22.475 56.438 22.225 56.454 22.112 56.419 21.983 56.411 21.937 56.402 21.904 56.375 21.787 56.350 21.670 56.323 21.543 56.307 21.509 56.307 21.498 56.280 21.381 56.209 21.260 56.119 21.206 56.119 21.092 56.111 21.056 ; #2531 8 37.723 25.014 37.682 25.020 37.675 25.039 37.601 25.144 37.601 25.246 37.684 25.221 37.700 25.121 37.723 25.011 ; #2532 8 36.817 25.806 36.840 25.867 36.906 25.973 36.947 26.077 36.939 25.975 36.898 25.871 36.815 25.806 ; #2533 8 37.556 25.999 37.564 26.079 37.648 26.287 37.731 26.365 37.698 26.251 37.690 26.149 37.640 26.035 37.556 26.001 ; #2534 8 35.449 27.148 35.532 27.244 35.623 27.213 35.707 27.171 35.790 27.226 35.874 27.224 35.790 27.179 35.707 27.134 35.623 27.097 35.540 27.130 35.449 27.153 ; #2535 8 41.822 52.523 41.796 52.567 41.729 52.665 41.645 52.664 41.561 52.704 41.495 52.792 41.411 52.862 41.319 52.879 41.234 52.921 41.150 52.911 41.100 52.980 41.025 52.993 40.941 52.943 40.849 52.930 40.765 52.929 40.681 52.869 40.589 52.797 40.412 52.755 40.387 52.759 40.303 52.789 40.211 52.798 40.127 52.809 40.078 52.847 40.062 52.863 40.029 52.957 40.113 52.937 40.080 53.031 40.072 53.142 40.088 53.236 40.047 53.328 40.055 53.433 40.031 53.530 39.948 53.512 39.856 53.484 39.765 53.516 39.765 53.618 39.674 53.600 39.650 53.707 39.666 53.608 39.658 53.504 39.650 53.400 39.699 53.298 39.783 53.374 39.734 53.296 39.642 53.237 39.560 53.170 39.476 53.185 39.385 53.236 39.468 53.321 39.453 53.430 39.404 53.522 39.346 53.613 39.262 53.677 39.179 53.741 39.262 53.758 39.179 53.750 39.138 53.854 39.082 53.944 38.991 54.028 38.958 54.003 38.874 53.986 38.783 53.927 38.699 53.901 38.616 53.885 38.533 53.896 38.442 53.928 38.358 53.920 38.275 53.904 38.183 53.876 38.100 53.869 38.016 53.862 37.925 53.872 37.841 53.874 37.758 53.897 37.667 53.908 37.584 53.940 37.500 53.943 37.451 53.952 37.451 53.992 37.444 54.092 37.436 54.201 37.444 54.304 37.469 54.410 37.517 54.530 37.551 54.638 37.566 54.742 37.650 54.839 37.733 54.826 37.817 54.862 37.900 54.980 37.941 55.047 38.024 55.154 38.065 55.264 38.098 55.320 38.139 55.430 38.187 55.551 38.203 55.656 38.211 55.759 38.203 55.868 38.187 55.967 38.172 56.065 38.187 56.179 38.172 56.256 38.179 56.369 38.263 56.356 38.346 56.454 38.362 56.559 38.337 56.664 38.370 56.773 38.378 56.793 38.329 56.884 38.303 56.981 38.303 57.019 38.311 57.132 38.352 57.178 38.344 57.278 38.261 57.331 38.170 57.401 38.086 57.383 38.038 57.474 38.030 57.583 38.022 57.683 38.006 57.781 37.974 57.875 37.958 57.983 37.943 58.010 37.911 58.105 37.904 58.204 37.821 58.255 37.772 58.346 37.739 58.418 37.754 58.523 37.787 58.631 37.754 58.735 37.778 58.842 37.770 58.951 37.737 59.044 37.696 59.146 37.640 59.235 37.648 59.338 37.564 59.409 37.481 59.409 37.397 59.461 37.314 59.544 37.281 59.637 37.258 59.733 37.232 59.838 37.184 59.928 37.158 60.023 37.158 60.033 37.085 60.117 37.001 60.178 36.918 60.260 36.827 60.320 36.761 60.405 36.761 61.181 36.695 61.215 36.611 61.187 36.520 61.175 36.436 61.175 36.353 61.214 36.269 61.244 36.178 61.214 36.087 61.144 36.072 61.198 35.988 61.259 35.897 61.268 35.813 61.239 35.722 61.289 35.746 61.395 35.672 61.436 35.614 61.532 35.565 61.621 35.549 61.718 35.534 61.824 35.567 61.932 35.567 62.042 35.519 62.098 35.445 62.230 35.388 62.275 35.363 62.269 35.280 62.299 35.272 62.297 35.356 62.386 35.404 62.507 35.363 62.598 35.379 62.711 35.445 62.827 35.519 62.945 35.551 63.063 35.643 63.124 35.726 63.104 35.800 63.210 35.815 63.244 35.889 63.162 35.973 63.121 35.980 63.122 35.973 63.221 35.973 63.331 35.996 63.437 36.029 63.546 36.087 63.670 36.095 63.772 36.143 63.894 36.151 63.996 36.235 64.096 36.283 64.218 36.324 64.328 36.357 64.437 36.440 64.558 36.532 64.621 36.615 64.642 36.699 64.622 36.790 64.644 36.873 64.705 36.957 64.754 37.048 64.807 37.131 64.797 37.215 64.799 37.281 64.916 37.322 65.016 37.354 65.126 37.339 65.223 37.354 65.337 37.354 65.539 37.421 65.615 37.504 65.655 37.588 65.667 37.678 65.791 37.654 65.824 37.588 65.909 37.562 66.013 37.539 66.108 37.473 66.193 37.440 66.286 37.448 66.389 37.448 66.500 37.473 66.516 37.473 66.543 37.489 66.529 37.580 66.580 37.663 66.534 37.747 66.555 37.830 66.546 37.921 66.559 38.005 66.640 38.088 66.671 38.104 66.644 38.144 66.553 38.144 66.452 38.177 66.349 38.251 66.266 38.275 66.171 38.333 66.075 38.348 65.967 38.381 65.874 38.325 65.749 38.340 65.651 38.374 65.558 38.406 65.486 38.422 65.450 38.470 65.360 38.529 65.264 38.585 65.176 38.651 65.091 38.707 64.994 38.732 64.962 38.756 64.857 38.789 64.763 38.830 64.662 38.946 64.487 39.020 64.394 39.035 64.379 39.068 64.307 39.035 64.197 39.076 64.105 39.132 64.017 39.173 63.915 39.224 63.826 39.272 63.726 39.280 63.709 39.328 63.661 39.336 63.654 39.419 63.572 39.485 63.487 39.584 63.306 39.625 63.204 39.676 63.114 39.724 63.015 39.781 62.926 39.839 62.828 39.938 62.647 39.986 62.557 40.060 62.465 40.094 62.425 40.178 62.409 40.262 62.424 40.354 62.391 40.438 62.355 40.522 62.289 40.556 62.196 40.571 62.191 40.655 62.125 40.740 62.089 40.824 62.042 40.915 62.008 41.000 62.001 41.084 61.975 41.135 61.952 41.201 61.868 41.260 61.772 41.309 61.683 41.332 61.586 41.358 61.481 41.301 61.415 41.268 61.395 41.242 61.369 41.234 61.264 41.291 61.177 41.284 61.071 41.276 61.029 41.317 60.937 41.317 60.721 41.291 60.611 41.284 60.505 41.342 60.409 41.391 60.320 41.414 60.223 41.465 60.124 41.550 60.119 41.634 60.193 41.718 60.166 41.810 60.101 41.818 60.103 41.851 60.131 41.851 60.235 41.935 60.198 41.943 60.191 41.992 60.101 41.999 60.071 42.007 60.032 42.056 60.037 42.141 60.050 42.148 60.043 42.156 60.036 42.197 60.037 42.271 60.039 42.305 59.988 42.361 59.891 42.370 59.779 42.361 59.726 42.353 59.620 42.346 59.599 42.338 59.515 42.379 59.422 42.403 59.325 42.411 59.308 42.495 59.300 42.569 59.216 42.569 59.112 42.577 59.011 42.635 58.914 42.769 58.742 42.784 58.633 42.700 58.578 42.700 58.474 42.726 58.377 42.718 58.262 42.633 58.239 42.600 58.343 42.516 58.413 42.424 58.479 42.340 58.548 42.381 58.446 42.473 58.398 42.506 58.304 42.498 58.188 42.547 58.097 42.489 57.977 42.405 57.996 42.312 57.952 42.228 57.860 42.213 57.743 42.197 57.635 42.213 57.525 42.197 57.418 42.148 57.301 42.056 57.226 41.972 57.132 41.906 57.011 41.822 57.030 41.737 57.017 41.645 57.054 41.561 57.072 41.477 57.101 41.403 57.194 41.319 57.090 41.319 56.987 41.344 56.881 41.336 56.776 41.336 56.663 41.344 56.562 41.352 56.451 41.352 56.339 41.360 56.228 41.368 56.127 41.375 56.038 41.375 56.018 41.368 55.913 41.334 55.792 41.309 55.683 41.309 55.570 41.350 55.477 41.434 55.439 41.475 55.336 41.560 55.266 41.651 55.198 41.735 55.128 41.820 55.045 41.988 54.965 42.054 54.878 42.111 54.779 42.162 54.688 42.203 54.595 42.244 54.491 42.285 54.398 42.342 54.299 42.375 54.203 42.383 54.091 42.375 53.986 42.359 53.912 42.344 53.805 42.328 53.719 42.320 53.604 42.305 53.496 42.279 53.386 42.238 53.263 42.207 53.152 42.166 53.038 42.100 52.919 41.915 52.668 41.890 52.621 41.790 52.494 ; #2536 16 70.830 -9.072 70.942 -8.994 70.962 -8.866 71.012 -8.733 71.031 -8.604 71.091 -8.486 71.172 -8.359 71.182 -8.215 71.201 -8.074 71.088 -8.024 71.028 -8.155 71.009 -8.296 70.990 -8.425 70.990 -8.558 70.971 -8.698 70.930 -8.821 70.880 -8.942 70.830 -9.075 ; #2537 16 59.986 5.362 59.961 5.467 59.863 5.554 59.766 5.464 59.792 5.406 59.890 5.321 59.988 5.364 ; #2538 16 63.002 7.633 63.002 7.511 63.104 7.497 63.067 7.620 63.159 7.641 63.067 7.750 63.002 7.630 ; #2539 16 63.403 8.217 63.366 8.096 63.384 7.974 63.410 7.839 63.482 7.960 63.491 8.094 63.437 8.216 63.401 8.217 ; #2540 16 63.782 8.872 63.728 8.788 63.710 8.642 63.728 8.496 63.728 8.374 63.745 8.496 63.762 8.630 63.825 8.752 63.779 8.875 ; #2541 16 66.856 13.383 66.886 13.511 66.876 13.649 66.868 13.522 66.858 13.383 ; #2542 16 77.515 20.853 77.493 20.995 77.493 21.141 77.515 21.318 77.525 21.465 77.535 21.626 77.535 21.786 77.545 21.961 77.545 22.121 77.580 22.273 77.625 22.441 77.614 22.585 77.603 22.743 77.515 22.565 77.480 22.413 77.357 22.388 77.323 22.541 77.313 22.684 77.334 22.846 77.409 23.008 77.444 23.174 77.433 23.332 77.454 23.482 77.486 23.661 77.519 23.815 77.632 23.986 77.708 24.162 77.729 24.313 77.750 24.478 77.761 24.627 77.771 24.789 77.847 24.648 77.891 24.511 77.912 24.356 77.923 24.211 77.912 24.062 77.881 23.895 77.902 23.726 77.923 23.584 77.967 23.433 77.989 23.290 78.019 23.136 78.132 23.321 78.177 23.478 78.221 23.341 78.253 23.200 78.263 23.040 78.273 22.896 78.253 22.568 78.221 22.401 78.221 22.092 78.232 21.919 78.232 21.758 78.221 21.595 78.211 21.446 78.190 21.280 78.180 21.118 78.158 20.953 78.059 21.096 78.025 21.250 77.993 21.391 77.983 21.536 77.871 21.461 77.781 21.298 77.669 21.250 77.635 21.085 77.614 20.935 77.501 20.857 ; #2543 16 80.072 31.580 80.072 31.609 80.084 31.779 80.084 31.931 80.098 32.088 80.098 32.255 80.110 32.439 80.124 32.611 80.137 32.768 80.163 32.958 80.163 33.110 80.176 33.267 80.202 33.443 80.228 33.619 80.242 33.457 80.254 33.281 80.228 33.119 80.215 32.948 80.202 32.791 80.189 32.620 80.176 32.435 80.163 32.278 80.150 32.093 80.137 31.936 80.124 31.765 80.068 31.579 ; #2544 16 -2.091 -81.025 -2.175 -81.001 -2.240 -80.936 -2.265 -80.882 -2.281 -80.788 -2.346 -80.696 -2.437 -80.614 -2.521 -80.542 -2.569 -80.440 -2.627 -80.338 -2.536 -80.354 -2.488 -80.258 -2.405 -80.181 -2.322 -80.141 -2.230 -80.102 -2.223 -80.075 -2.256 -80.076 -2.304 -80.095 -2.312 -80.104 -2.352 -80.079 -2.368 -80.004 -2.384 -80.051 -2.376 -80.077 -2.459 -80.145 -2.499 -80.080 -2.484 -80.034 -2.469 -80.007 -2.378 -79.967 -2.286 -79.948 -2.188 -79.945 -2.105 -79.980 -2.072 -79.979 -2.006 -79.969 -1.923 -79.883 -1.908 -79.846 -1.991 -79.914 -2.056 -79.953 -2.064 -79.953 -2.163 -79.929 -2.246 -79.931 -2.337 -79.896 -2.428 -79.815 -2.511 -79.826 -2.602 -79.874 -2.685 -79.914 -2.768 -79.933 -2.867 -79.962 -2.950 -79.973 -3.041 -80.021 -3.107 -80.041 -3.132 -80.079 -3.140 -80.088 -3.172 -80.115 -3.206 -80.199 -3.221 -80.217 -3.229 -80.263 -3.229 -80.318 -3.244 -80.365 -3.260 -80.402 -3.268 -80.403 -3.293 -80.366 -3.293 -80.349 -3.308 -80.323 -3.374 -80.315 -3.430 -80.299 -3.513 -80.275 -3.596 -80.277 -3.763 -80.226 -3.887 -80.370 -3.863 -80.464 -3.937 -80.569 -4.002 -80.544 -4.086 -80.529 -4.119 -80.435 -4.209 -80.501 -4.293 -80.541 -4.359 -80.448 -4.326 -80.381 -4.159 -80.188 -4.175 -80.151 -4.248 -80.058 -4.264 -80.022 -4.289 -79.939 -4.355 -79.846 -4.314 -79.742 -4.355 -79.648 -4.446 -79.556 -4.461 -79.574 -4.552 -79.539 -4.635 -79.504 -4.701 -79.459 -4.784 -79.378 -4.833 -79.285 -4.833 -79.258 -4.840 -79.155 -4.865 -79.118 -4.873 -79.110 -4.865 -79.101 -4.833 -79.062 -4.749 -79.034 -4.666 -78.977 -4.575 -78.966 -4.492 -78.869 -4.451 -78.774 -4.451 -78.765 -4.368 -78.737 -4.260 -78.734 -4.177 -78.750 -4.169 -78.732 -4.002 -78.673 -3.919 -78.634 -3.829 -78.631 -3.745 -78.583 -3.654 -78.506 -3.614 -78.487 -3.531 -78.468 -3.447 -78.457 -3.357 -78.455 -3.298 -78.359 -3.381 -78.315 -3.298 -78.267 -3.208 -78.302 -3.124 -78.196 -3.041 -78.140 -2.875 -77.966 -2.842 -77.910 -2.819 -77.835 -2.794 -77.769 -2.760 -77.673 -2.728 -77.578 -2.697 -77.483 -2.664 -77.388 -2.631 -77.284 -2.623 -77.257 -2.591 -77.153 -2.557 -77.058 -2.525 -76.963 -2.493 -76.867 -2.461 -76.764 -2.436 -76.737 -2.362 -76.641 -2.288 -76.535 -2.238 -76.468 -2.165 -76.372 -2.016 -76.180 -2.000 -76.162 -1.917 -76.094 -1.826 -76.017 -1.743 -75.952 -1.652 -75.875 -1.569 -75.807 -1.478 -75.730 -1.445 -75.703 -1.437 -75.685 -1.255 -75.626 -1.172 -75.606 -1.081 -75.587 -0.998 -75.558 -0.817 -75.516 -0.872 -75.423 -0.872 -75.329 -0.807 -75.354 -0.716 -75.370 -0.633 -75.393 -0.550 -75.383 -0.534 -75.356 -0.451 -75.354 -0.360 -75.435 -0.286 -75.537 -0.203 -75.552 -0.112 -75.616 -0.079 -75.718 -0.014 -75.717 -0.014 -75.680 -0.037 -75.577 -0.037 -75.483 -0.021 -75.379 0.012 -75.425 0.037 -75.529 0.103 -75.625 0.110 -75.634 0.126 -75.728 0.133 -75.831 0.217 -75.937 0.232 -75.955 0.316 -76.060 0.406 -76.117 0.472 -76.213 0.480 -76.307 0.495 -76.402 0.487 -76.505 0.447 -76.504 0.348 -76.493 0.340 -76.519 0.325 -76.622 0.356 -76.717 0.333 -76.811 0.340 -76.914 0.374 -77.009 0.389 -77.073 0.455 -77.169 0.447 -77.224 0.447 -77.327 0.455 -77.402 0.495 -77.506 0.586 -77.526 0.669 -77.537 0.752 -77.565 0.778 -77.668 0.818 -77.736 0.901 -77.746 0.933 -77.813 0.901 -77.915 0.967 -78.011 0.993 -78.095 1.008 -78.199 1.074 -78.295 1.130 -78.391 1.196 -78.487 1.279 -78.564 1.287 -78.658 1.352 -78.686 1.345 -78.723 1.352 -78.732 1.435 -78.809 1.519 -78.905 1.435 -78.958 1.352 -78.973 1.262 -79.046 1.205 -79.071 1.288 -79.110 1.223 -79.203 1.174 -79.305 1.174 -79.399 1.159 -79.502 1.110 -79.596 1.078 -79.689 0.995 -79.724 0.969 -79.706 0.936 -79.705 0.961 -79.714 0.995 -79.724 1.043 -79.734 1.051 -79.828 0.967 -79.930 0.944 -80.023 0.919 -80.078 0.871 -80.171 0.788 -80.186 0.704 -80.110 0.696 -80.100 0.613 -80.098 0.530 -80.105 0.480 -80.067 0.439 -80.066 0.439 -80.074 0.356 -80.110 0.265 -80.098 0.182 -80.123 0.099 -80.167 0.008 -80.259 -0.158 -80.451 -0.242 -80.519 -0.325 -80.548 -0.408 -80.495 -0.499 -80.451 -0.524 -80.357 -0.532 -80.340 -0.540 -80.435 -0.532 -80.538 -0.615 -80.577 -0.698 -80.596 -0.789 -80.636 -0.815 -80.740 -0.822 -80.834 -0.878 -80.930 -0.962 -80.987 -1.045 -80.952 -1.128 -80.900 -1.219 -80.836 -1.302 -80.856 -1.385 -80.884 -1.468 -80.923 -1.559 -80.908 -1.575 -80.900 -1.658 -80.856 -1.749 -80.832 -1.832 -80.816 -1.923 -80.836 -2.006 -80.856 -2.079 -80.952 -2.105 -80.999 -2.089 -81.036 ; #2545 16 59.489 6.219 59.524 6.275 59.541 6.322 59.568 6.439 59.593 6.556 59.585 6.438 59.620 6.319 59.522 6.229 59.487 6.219 ; #2546 16 64.947 11.947 64.947 11.959 64.964 12.084 64.972 12.208 64.955 12.242 64.955 12.366 64.927 12.490 64.964 12.367 64.981 12.231 64.990 12.208 64.990 12.072 64.945 11.947 ; #2547 16 46.113 13.515 46.028 13.555 45.995 13.648 45.986 13.638 45.893 13.604 45.877 13.613 45.870 13.623 45.836 13.728 45.786 13.833 45.786 13.842 45.770 13.862 45.763 13.862 45.687 13.912 45.671 13.891 45.655 13.817 45.663 13.734 45.614 13.723 45.606 13.651 45.546 13.608 45.538 13.640 45.531 13.711 45.531 13.773 45.505 13.878 45.520 13.971 45.529 13.981 45.586 14.024 45.544 14.129 45.544 14.161 45.560 14.213 45.568 14.265 45.560 14.284 45.552 14.316 45.552 14.378 45.594 14.485 45.645 14.517 45.703 14.571 45.729 14.582 45.721 14.611 45.689 14.620 45.596 14.710 45.572 14.774 45.546 14.888 45.562 15.004 45.554 15.024 45.562 15.056 45.536 15.097 45.495 15.211 45.495 15.220 45.570 15.329 45.586 15.320 45.636 15.302 45.695 15.323 45.711 15.356 45.711 15.385 45.727 15.386 45.750 15.271 45.759 15.239 45.766 15.240 45.816 15.325 45.832 15.409 45.848 15.462 45.879 15.524 45.879 15.544 45.905 15.692 45.913 15.693 45.913 15.683 45.947 15.674 45.997 15.686 46.072 15.698 46.113 15.658 46.199 15.599 46.266 15.654 46.266 15.747 46.290 15.790 46.315 15.843 46.315 15.853 46.323 15.925 46.357 16.042 46.433 16.065 46.448 16.149 46.422 16.168 46.422 16.284 46.439 16.275 46.506 16.236 46.573 16.281 46.581 16.387 46.557 16.428 46.524 16.533 46.516 16.585 46.609 16.495 46.676 16.391 46.744 16.362 46.759 16.362 46.845 16.323 46.912 16.219 46.905 16.103 46.912 16.093 46.879 16.020 46.793 15.975 46.708 16.024 46.700 16.023 46.726 15.962 46.758 15.857 46.742 15.740 46.750 15.634 46.726 15.633 46.674 15.525 46.682 15.418 46.690 15.390 46.690 15.060 46.664 14.985 46.656 14.975 46.649 14.975 46.673 14.943 46.656 14.913 46.607 14.828 46.540 14.719 46.498 14.666 46.430 14.570 46.462 14.455 46.478 14.349 46.486 14.265 46.478 14.233 46.502 14.127 46.527 14.021 46.527 14.012 46.561 13.906 46.546 13.790 46.561 13.716 46.486 13.684 46.470 13.578 46.403 13.470 46.317 13.394 46.268 13.509 46.226 13.614 46.218 13.665 46.133 13.557 46.100 13.495 ; #2548 16 33.155 35.118 33.163 35.129 33.155 35.227 33.170 35.308 33.129 35.371 33.153 35.472 33.178 35.523 33.226 35.546 33.310 35.563 33.350 35.597 33.317 35.612 33.310 35.641 33.334 35.635 33.342 35.644 33.342 35.672 33.391 35.747 33.398 35.766 33.406 35.797 33.472 35.860 33.479 35.871 33.487 35.902 33.536 35.955 33.584 35.950 33.584 35.959 33.633 36.064 33.648 36.055 33.663 36.039 33.729 35.977 33.786 36.002 33.876 36.077 33.901 36.159 33.886 36.175 33.886 36.185 33.894 36.285 33.878 36.384 33.903 36.386 33.977 36.293 34.060 36.380 34.101 36.483 34.184 36.571 34.250 36.617 34.333 36.595 34.416 36.524 34.474 36.548 34.497 36.480 34.546 36.436 34.538 36.347 34.571 36.341 34.654 36.410 34.670 36.392 34.677 36.393 34.700 36.356 34.708 36.347 34.716 36.348 34.724 36.309 34.716 36.309 34.708 36.298 34.700 36.307 34.685 36.296 34.677 36.247 34.677 36.147 34.685 36.119 34.677 36.119 34.677 36.059 34.693 35.981 34.685 35.971 34.602 35.991 34.561 35.968 34.561 35.959 34.503 35.853 34.437 35.787 34.389 35.734 34.315 35.660 34.174 35.646 34.118 35.650 34.035 35.624 34.002 35.602 33.946 35.560 33.913 35.497 33.897 35.504 33.807 35.466 33.724 35.428 33.640 35.401 33.625 35.391 33.541 35.335 33.451 35.278 33.402 35.264 33.370 35.242 33.336 35.221 33.253 35.222 33.170 35.136 33.145 35.125 ; #2549 1 -67.575 -68.773 -67.548 -68.878 -67.480 -68.957 -67.454 -69.074 -67.357 -69.127 -67.260 -68.992 -67.154 -68.772 -67.057 -68.652 -66.960 -68.580 -66.863 -68.531 -66.757 -68.404 -66.660 -68.232 -66.554 -68.093 -66.489 -67.911 -66.421 -67.715 -66.412 -67.570 -66.509 -67.568 -66.615 -67.769 -66.711 -67.829 -66.808 -67.838 -66.885 -67.766 -66.933 -67.680 -67.029 -67.713 -67.086 -67.889 -67.192 -68.065 -67.210 -67.943 -67.307 -67.926 -67.354 -68.106 -67.345 -68.226 -67.442 -68.298 -67.548 -68.453 -67.557 -68.600 -67.575 -68.744 -67.575 -68.779 ; #2550 1 -62.911 -62.636 -62.819 -62.532 -62.727 -62.395 -62.699 -62.242 -62.800 -62.292 -62.862 -62.459 -62.908 -62.614 -62.908 -62.636 ; #2551 1 -70.652 -60.646 -70.662 -60.719 -70.765 -60.775 -70.806 -60.679 -70.825 -60.539 -70.834 -60.403 -70.815 -60.386 -70.712 -60.426 -70.662 -60.513 -70.652 -60.649 ; #2552 1 -70.396 3.162 -70.377 3.032 -70.336 2.891 -70.234 2.913 -70.174 3.061 -70.164 3.218 -70.164 3.350 -70.193 3.491 -70.296 3.523 -70.346 3.387 -70.387 3.239 -70.396 3.159 ; #2553 1 -66.678 48.265 -66.581 48.285 -66.563 48.404 -66.581 48.538 -66.563 48.669 -66.649 48.579 -66.666 48.448 -66.694 48.322 -66.676 48.264 ; #2554 1 -77.857 167.432 -77.912 167.411 -77.943 167.330 -77.988 167.297 -77.999 167.150 -78.009 167.001 -77.943 166.687 -77.923 166.795 -77.902 166.889 -77.870 166.983 -77.849 167.091 -77.807 167.144 -77.862 167.444 ; #2555 1 -77.616 166.584 -77.585 166.664 -77.540 166.713 -77.520 166.877 -77.498 167.014 -77.477 167.120 -77.443 167.224 -77.412 167.319 -77.402 167.451 -77.412 167.624 -77.412 167.782 -77.402 167.915 -77.446 168.172 -77.457 168.372 -77.425 168.452 -77.414 168.597 -77.404 168.730 -77.383 168.823 -77.362 168.941 -77.341 169.047 -77.320 169.183 -77.286 169.242 -77.231 169.017 -77.176 168.807 -77.176 168.635 -77.156 168.424 -77.145 168.239 -77.134 168.053 -77.156 167.935 -77.176 167.829 -77.187 167.698 -77.187 167.553 -77.176 167.354 -77.156 167.157 -77.043 166.959 -76.954 166.579 -76.954 166.420 -76.988 166.348 -77.019 166.268 -77.053 166.193 -77.166 166.447 -77.200 166.387 -77.221 166.294 -77.265 166.260 -77.286 166.140 -77.307 166.033 -77.420 166.314 -77.430 166.501 -77.440 166.686 -77.462 166.580 -77.472 166.432 -77.493 166.659 -77.538 166.597 -77.569 166.531 -77.624 166.611 ; #2556 1 -74.694 163.499 -74.684 163.589 -74.643 163.645 -74.572 163.637 -74.521 163.686 -74.471 163.734 -74.442 163.814 -74.433 163.933 -74.392 163.685 -74.421 163.605 -74.452 163.516 -74.471 163.418 -74.512 163.348 -74.552 163.279 -74.665 163.485 -74.696 163.507 ; #2557 1 -76.464 -147.117 -76.454 -147.262 -76.443 -147.393 -76.422 -147.541 -76.401 -147.660 -76.356 -147.691 -76.356 -147.435 -76.378 -147.319 -76.411 -147.231 -76.433 -147.114 -76.466 -147.127 ; #2558 1 -77.024 -146.992 -77.003 -147.155 -76.962 -147.223 -76.951 -147.051 -76.951 -146.850 -77.029 -147.005 ; #2559 1 -72.460 -97.701 -72.522 -97.938 -72.532 -98.112 -72.512 -98.245 -72.443 -98.000 -72.433 -97.838 -72.453 -97.730 -72.462 -97.705 ; #2560 99 46.829 -92.244 46.744 -92.072 46.752 -91.970 46.776 -91.879 46.791 -91.783 46.815 -91.682 46.831 -91.586 46.855 -91.495 46.888 -91.410 46.938 -91.326 46.938 -91.219 46.972 -91.134 46.988 -91.028 46.995 -90.926 46.910 -90.914 46.843 -90.977 46.758 -90.974 46.682 -91.041 46.674 -90.930 46.724 -90.846 46.649 -90.691 46.615 -90.563 46.631 -90.531 46.664 -90.447 46.690 -90.347 46.706 -90.250 46.732 -90.150 46.748 -90.118 46.849 -89.970 46.883 -89.876 46.883 -89.769 46.890 -89.667 46.890 -89.551 46.916 -89.460 46.958 -89.370 47.008 -89.286 47.033 -89.195 47.049 -89.088 47.117 -89.025 47.166 -88.949 47.216 -88.864 47.265 -88.789 47.180 -88.755 47.087 -88.633 47.001 -88.560 46.916 -88.591 46.823 -88.574 46.890 -88.500 46.976 -88.341 46.890 -88.381 46.940 -88.305 46.956 -88.209 46.948 -88.088 46.940 -87.966 46.873 -87.817 46.787 -87.712 46.694 -87.612 46.609 -87.507 46.542 -87.359 46.542 -87.242 46.575 -87.147 46.500 -86.994 46.525 -86.904 46.492 -86.777 46.508 -86.725 46.524 -86.683 46.573 -86.607 46.607 -86.521 46.641 -86.435 46.682 -86.345 46.716 -86.259 46.708 -86.138 46.734 -86.047 46.726 -85.936 46.726 -85.819 46.718 -85.708 46.718 -85.592 46.750 -85.505 46.776 -85.414 46.801 -85.323 46.801 -85.207 46.809 -85.118 46.767 -85.122 46.674 -85.140 46.589 -85.130 46.522 -85.109 46.506 -84.993 46.498 -84.872 46.531 -84.776 46.464 -84.629 46.514 -84.553 46.538 -84.493 46.538 -84.483 46.452 -84.370 46.282 -84.287 46.240 -84.368 46.216 -84.248 46.131 -84.155 46.046 -84.020 45.997 -84.097 46.012 -84.212 46.020 -84.333 46.036 -84.448 46.044 -84.558 46.068 -84.689 46.068 -84.795 45.975 -84.832 45.889 -84.801 45.905 -84.926 45.990 -85.039 46.040 -85.099 46.074 -85.225 46.098 -85.346 46.123 -85.477 46.123 -85.593 46.082 -85.674 46.014 -85.739 46.006 -85.850 46.006 -85.965 45.965 -86.046 45.998 -86.182 45.990 -86.284 45.965 -86.374 45.889 -86.434 45.840 -86.445 45.806 -86.530 45.772 -86.625 45.697 -86.684 45.663 -86.769 45.748 -86.760 45.816 -86.696 45.901 -86.643 45.893 -86.743 45.901 -86.854 45.748 -86.972 45.715 -87.057 45.808 -87.085 45.893 -87.076 45.844 -87.161 45.759 -87.192 45.701 -87.263 45.626 -87.322 45.550 -87.391 45.457 -87.439 45.390 -87.503 45.314 -87.562 45.179 -87.689 45.146 -87.688 45.053 -87.714 45.037 -87.714 45.003 -87.798 44.987 -87.904 44.903 -87.941 44.836 -88.009 44.762 -88.083 44.678 -88.119 44.594 -88.102 44.620 -88.011 44.676 -87.928 44.710 -87.841 44.794 -87.795 44.868 -87.721 44.892 -87.629 44.925 -87.542 44.840 -87.412 44.756 -87.449 44.665 -87.504 44.590 -87.567 44.498 -87.600 44.414 -87.627 44.330 -87.641 44.238 -87.610 44.179 -87.683 44.123 -87.766 44.031 -87.808 43.946 -87.844 43.862 -87.839 43.778 -87.822 43.686 -87.854 43.612 -87.917 43.520 -87.918 43.445 -87.981 43.354 -88.013 43.270 -88.027 43.101 -88.017 43.009 -87.967 42.925 -87.961 42.841 -87.896 42.757 -87.901 42.673 -87.937 42.547 -87.928 42.463 -87.933 42.372 -87.943 42.287 -87.939 42.203 -87.883 42.111 -87.782 42.027 -87.777 41.943 -87.731 41.859 -87.705 41.774 -87.639 41.708 -87.534 41.685 -87.418 41.685 -87.314 41.718 -87.229 41.741 -87.128 41.774 -87.043 41.816 -86.952 41.841 -86.906 41.890 -86.829 41.956 -86.752 42.031 -86.688 42.115 -86.652 42.207 -86.598 42.273 -86.530 42.357 -86.471 42.442 -86.425 42.526 -86.388 42.618 -86.368 42.710 -86.366 42.794 -86.339 43.046 -86.352 43.113 -86.388 43.205 -86.428 43.289 -86.414 43.305 -86.380 43.389 -86.530 43.473 -86.576 43.565 -86.616 43.649 -86.662 43.733 -86.647 43.800 -86.579 43.892 -86.556 43.976 -86.582 44.060 -86.618 44.144 -86.603 44.201 -86.520 44.369 -86.402 44.453 -86.364 44.537 -86.359 44.629 -86.326 44.713 -86.362 44.772 -86.279 44.788 -86.182 44.956 -86.149 44.982 -86.058 44.989 -85.947 45.031 -85.879 45.116 -85.815 45.192 -85.755 45.233 -85.675 45.148 -85.697 45.063 -85.697 45.029 -85.718 44.944 -85.700 44.860 -85.738 44.909 -85.659 44.993 -85.611 44.909 -85.595 44.817 -85.650 44.866 -85.562 44.950 -85.502 45.025 -85.471 45.118 -85.456 45.203 -85.478 45.289 -85.478 45.346 -85.407 45.388 -85.317 45.413 -85.227 45.405 -85.117 45.405 -85.097 45.439 -85.012 45.455 -85.095 45.548 -85.203 45.634 -85.203 45.693 -85.123 45.701 -85.098 45.786 -85.088 45.794 -84.977 45.820 -84.887 45.778 -84.756 45.693 -84.589 45.693 -84.483 45.701 -84.447 45.659 -84.316 45.566 -84.241 45.525 -84.110 45.491 -83.984 45.449 -83.854 45.400 -83.719 45.383 -83.604 45.299 -83.492 45.213 -83.471 45.128 -83.391 45.104 -83.493 45.029 -83.553 44.944 -83.487 44.860 -83.413 44.776 -83.410 44.684 -83.403 44.600 -83.432 44.508 -83.435 44.451 -83.435 44.367 -83.451 44.334 -83.548 44.311 -83.641 44.226 -83.688 44.134 -83.701 44.093 -83.784 44.052 -83.876 44.037 -83.973 43.962 -84.038 43.878 -84.067 43.786 -84.079 43.702 -83.993 43.702 -83.983 43.661 -83.857 43.686 -83.757 43.753 -83.687 43.778 -83.596 43.946 -83.475 44.021 -83.400 44.052 -83.207 44.093 -83.124 44.101 -83.023 44.035 -82.874 43.950 -82.810 43.858 -82.772 43.774 -82.757 43.682 -82.739 43.598 -82.724 43.514 -82.680 43.430 -82.677 43.338 -82.658 43.169 -82.612 43.085 -82.568 43.062 -82.547 43.085 -82.455 43.111 -82.354 43.144 -82.267 43.193 -82.188 43.260 -82.109 43.291 -82.021 43.342 -81.943 43.398 -81.858 43.483 -81.828 43.567 -81.821 43.659 -81.849 43.743 -81.851 43.827 -81.843 43.919 -81.840 44.003 -81.842 44.095 -81.861 44.169 -81.784 44.261 -81.727 44.346 -81.710 44.412 -81.630 44.461 -81.550 44.545 -81.488 44.612 -81.408 44.696 -81.369 44.780 -81.370 44.956 -81.462 45.023 -81.518 45.108 -81.596 45.201 -81.670 45.287 -81.793 45.278 -81.683 45.271 -81.563 45.203 -81.418 45.118 -81.349 45.025 -81.337 45.025 -81.276 44.950 -81.207 44.950 -81.091 44.866 -81.119 44.799 -81.190 44.840 -81.106 44.825 -80.993 44.741 -81.001 44.649 -81.005 44.715 -80.934 44.749 -80.846 44.725 -80.719 44.641 -80.676 44.590 -80.535 44.566 -80.418 44.533 -80.286 44.518 -80.173 44.585 -80.102 44.633 -80.107 44.692 -80.108 44.741 -80.103 44.766 -80.146 44.850 -80.179 44.892 -80.095 44.892 -80.021 44.799 -79.914 44.825 -79.821 44.909 -79.790 44.909 -79.800 44.860 -79.881 44.944 -79.933 45.029 -80.020 45.063 -80.090 45.070 -80.095 45.087 -80.094 45.162 -80.198 45.162 -80.093 45.195 -80.092 45.203 -80.116 45.289 -80.207 45.346 -80.134 45.439 -80.197 45.364 -80.270 45.388 -80.389 45.473 -80.479 45.566 -80.481 45.651 -80.520 45.626 -80.621 45.711 -80.711 45.796 -80.741 45.881 -80.810 45.956 -80.959 45.973 -81.084 45.980 -81.173 45.956 -81.265 46.042 -81.262 45.992 -81.340 46.000 -81.460 46.016 -81.575 46.016 -81.681 45.982 -81.767 46.024 -81.686 46.066 -81.668 46.058 -81.780 46.133 -81.708 46.100 -81.804 46.050 -81.880 46.135 -81.869 46.135 -81.985 46.127 -82.086 46.161 -82.212 46.169 -82.322 46.218 -82.458 46.226 -82.579 46.203 -82.671 46.226 -82.801 46.218 -82.902 46.203 -82.999 46.203 -83.115 46.218 -83.230 46.226 -83.341 46.252 -83.462 46.268 -83.588 46.310 -83.719 46.302 -83.744 46.310 -83.855 46.351 -83.986 46.351 -84.102 46.393 -84.233 46.478 -84.200 46.563 -84.262 46.555 -84.363 46.547 -84.465 46.547 -84.506 46.531 -84.549 46.547 -84.665 46.632 -84.664 46.690 -84.593 46.776 -84.592 46.718 -84.664 46.811 -84.668 46.868 -84.596 46.868 -84.490 46.954 -84.551 46.962 -84.663 46.970 -84.774 47.063 -84.892 47.120 -84.821 47.214 -84.816 47.281 -84.740 47.366 -84.739 47.452 -84.843 47.519 -84.991 47.604 -85.115 47.671 -85.114 47.747 -85.086 47.796 -85.009 47.882 -85.008 47.975 -85.003 47.983 -85.115 47.975 -85.227 47.975 -85.335 47.967 -85.447 47.935 -85.535 47.935 -85.642 47.943 -85.765 47.967 -85.896 48.052 -86.056 48.137 -86.152 48.231 -86.210 48.316 -86.272 48.401 -86.295 48.486 -86.348 48.579 -86.376 48.665 -86.429 48.750 -86.492 48.766 -86.621 48.750 -86.718 48.792 -86.852 48.766 -86.944 48.815 -87.083 48.792 -87.186 48.792 -87.293 48.776 -87.402 48.851 -87.557 48.843 -87.660 48.911 -87.811 48.927 -87.938 48.960 -88.068 49.002 -88.202 48.976 -88.304 48.992 -88.357 48.907 -88.355 48.813 -88.253 48.728 -88.209 48.653 -88.269 48.594 -88.339 48.585 -88.441 48.570 -88.549 48.484 -88.590 48.443 -88.671 48.528 -88.673 48.585 -88.592 48.643 -88.521 48.695 -88.446 48.780 -88.427 48.855 -88.583 48.780 -88.653 48.695 -88.662 48.627 -88.726 48.542 -88.747 48.467 -88.807 48.381 -88.847 48.347 -88.933 48.324 -89.036 48.391 -88.971 48.484 -88.946 48.552 -88.881 48.552 -88.989 48.528 -89.091 48.512 -89.189 48.478 -89.275 48.411 -89.339 48.326 -89.337 48.240 -89.377 48.155 -89.440 48.054 -89.590 48.030 -89.692 48.014 -89.692 47.983 -89.789 47.941 -89.869 47.907 -89.955 47.882 -90.056 47.858 -90.115 47.832 -90.216 47.806 -90.307 47.791 -90.404 47.765 -90.504 47.749 -90.601 47.715 -90.686 47.682 -90.782 47.658 -90.873 47.608 -90.958 47.557 -91.031 47.515 -91.122 47.473 -91.202 47.424 -91.286 47.356 -91.349 47.297 -91.417 47.239 -91.497 47.190 -91.571 47.148 -91.660 47.047 -91.808 47.006 -91.898 46.964 -91.988 46.922 -92.067 46.881 -92.156 46.831 -92.230 46.815 -92.239 ; #2561 99 42.375 -83.188 42.391 -83.092 42.375 -82.970 42.359 -82.859 42.359 -82.746 42.368 -82.646 42.416 -82.567 42.450 -82.544 42.541 -82.601 42.557 -82.713 42.606 -82.789 42.681 -82.777 42.737 -82.857 42.696 -82.949 42.612 -82.988 42.520 -83.012 42.436 -83.029 42.403 -83.115 42.370 -83.180 ; #2562 99 -13.606 35.031 -13.613 34.927 -13.530 34.887 -13.439 34.885 -13.399 34.902 -13.300 34.890 -13.217 34.830 -13.134 34.837 -13.051 34.834 -12.967 34.841 -12.884 34.810 -12.801 34.781 -12.710 34.814 -12.619 34.849 -12.536 34.830 -12.445 34.789 -12.354 34.732 -12.263 34.738 -12.089 34.733 -12.006 34.806 -11.940 34.899 -11.857 34.915 -11.766 34.968 -11.683 34.994 -11.501 34.989 -11.468 34.997 -11.385 34.986 -11.301 34.928 -11.228 34.832 -11.145 34.754 -11.062 34.697 -10.971 34.648 -10.880 34.628 -10.797 34.683 -10.630 34.696 -10.547 34.685 -10.464 34.617 -10.431 34.616 -10.348 34.605 -10.265 34.603 -10.182 34.618 -10.015 34.556 -9.924 34.555 -9.899 34.546 -9.816 34.489 -9.733 34.413 -9.642 34.365 -9.475 34.173 -9.384 34.077 -9.450 33.983 -9.508 33.993 -9.599 33.966 -9.607 33.957 -9.706 33.941 -9.789 33.971 -9.872 33.990 -9.895 33.999 -9.986 34.035 -10.077 34.104 -10.160 34.190 -10.251 34.256 -10.342 34.296 -10.509 34.226 -10.599 34.228 -10.690 34.248 -10.781 34.259 -10.872 34.262 -10.955 34.255 -11.122 34.259 -11.213 34.297 -11.303 34.300 -11.387 34.310 -11.478 34.331 -11.503 34.340 -11.586 34.342 -11.669 34.249 -11.760 34.205 -11.843 34.144 -11.934 34.080 -12.025 34.073 -12.116 34.058 -12.139 34.067 -12.223 34.087 -12.273 34.184 -12.364 34.223 -12.447 34.208 -12.538 34.219 -12.629 34.306 -12.727 34.308 -12.810 34.337 -12.894 34.368 -12.993 34.362 -13.159 34.366 -13.250 34.340 -13.341 34.389 -13.424 34.437 -13.449 34.542 -13.532 34.611 -13.623 34.631 -13.714 34.616 -13.798 34.580 -13.888 34.554 -13.979 34.585 -14.062 34.634 -14.153 34.720 -14.138 34.766 -14.055 34.828 -13.963 34.872 -13.881 34.870 -13.963 34.948 -14.029 35.014 -14.120 35.100 -14.211 35.178 -14.285 35.244 -14.194 35.288 -14.103 35.230 -14.012 35.199 -13.929 35.188 -13.838 35.139 -13.755 35.128 -13.664 35.088 -13.598 35.011 ; #2563 99 22.269 113.622 22.186 113.633 22.269 113.667 22.284 113.640 22.252 113.634 22.267 113.619 ; #2564 99 45.217 53.811 45.217 53.832 45.201 53.857 45.168 53.879 45.142 53.904 45.118 53.907 45.102 53.912 45.068 53.903 45.043 53.886 45.027 53.850 45.001 53.801 44.993 53.779 44.985 53.736 44.978 53.692 44.978 53.673 44.970 53.619 44.970 53.505 44.962 53.483 44.954 53.461 44.946 53.449 44.931 53.436 44.915 53.413 44.884 53.373 44.858 53.347 44.842 53.334 44.801 53.292 44.776 53.276 44.760 53.262 44.727 53.244 44.711 53.231 44.678 53.213 44.653 53.187 44.612 53.167 44.588 53.142 44.572 53.128 44.541 53.111 44.508 53.083 44.492 53.079 44.459 53.052 44.451 53.050 44.443 53.058 44.428 53.073 44.420 53.091 44.412 53.099 44.404 53.116 44.397 53.134 44.389 53.152 44.397 53.173 44.404 53.194 44.428 53.210 44.461 53.228 44.469 53.240 44.561 53.262 44.586 53.278 44.602 53.292 44.627 53.318 44.635 53.329 44.659 53.354 44.684 53.360 44.700 53.374 44.715 53.368 44.739 53.374 44.764 53.371 44.788 53.377 44.795 53.398 44.811 53.412 44.860 53.465 44.886 53.503 44.894 53.515 44.909 53.548 44.917 53.582 44.917 53.792 44.942 53.850 44.958 53.883 44.958 53.893 44.966 53.915 44.966 53.944 44.958 53.994 44.942 54.041 44.927 54.069 44.927 54.108 44.935 54.151 44.942 54.163 44.966 54.179 44.991 54.195 45.025 54.204 45.048 54.191 45.065 54.186 45.080 54.171 45.096 54.143 45.122 54.131 45.138 54.103 45.164 54.069 45.179 54.054 45.229 54.026 45.255 54.024 45.271 53.998 45.297 53.986 45.312 53.970 45.328 53.975 45.344 53.989 45.344 54.041 45.360 54.065 45.376 54.079 45.392 54.074 45.407 54.069 45.441 54.006 45.449 53.957 45.457 53.908 45.457 53.847 45.441 53.822 45.426 53.818 45.400 53.801 45.358 53.790 45.350 53.768 45.334 53.743 45.318 53.698 45.310 53.644 45.287 53.576 45.287 53.514 45.278 53.503 45.287 53.495 45.287 53.465 45.278 53.444 45.271 53.380 45.263 53.336 45.271 53.300 45.287 53.252 45.302 53.237 45.318 53.222 45.344 53.199 45.344 53.180 45.336 53.167 45.328 53.146 45.321 53.112 45.328 53.072 45.344 53.037 45.368 53.012 45.402 53.001 45.417 52.986 45.467 52.980 45.509 52.949 45.516 52.942 45.532 52.927 45.540 52.919 45.600 52.935 45.616 52.950 45.632 52.963 45.658 52.970 45.681 52.967 45.756 52.988 45.772 53.002 45.798 53.019 45.806 53.030 45.840 53.050 45.866 53.067 45.907 53.098 45.939 53.116 45.988 53.150 46.100 53.180 46.149 53.184 46.165 53.188 46.199 53.188 46.222 53.194 46.256 53.193 46.306 53.155 46.332 53.143 46.357 53.129 46.381 53.127 46.422 53.118 46.456 53.107 46.490 53.087 46.514 53.062 46.540 53.049 46.555 53.033 46.597 53.025 46.621 53.022 46.654 53.011 46.696 53.003 46.712 52.987 46.738 52.985 46.754 52.969 46.795 52.919 46.803 52.901 46.827 52.856 46.843 52.828 46.851 52.800 46.859 52.783 46.866 52.755 46.866 52.735 46.875 52.717 46.875 52.708 46.866 52.685 46.859 52.651 46.859 52.545 46.866 52.537 46.866 52.504 46.875 52.497 46.875 52.487 46.883 52.489 46.890 52.481 46.890 52.472 46.898 52.464 46.898 52.412 46.906 52.394 46.906 52.384 46.898 52.372 46.898 52.362 46.864 52.353 46.857 52.361 46.849 52.349 46.841 52.347 46.833 52.334 46.825 52.322 46.809 52.318 46.809 52.308 46.801 52.296 46.793 52.274 46.793 52.225 46.785 52.222 46.778 52.211 46.778 52.201 46.785 52.193 46.785 52.173 46.793 52.165 46.793 52.133 46.785 52.131 46.778 52.139 46.770 52.157 46.761 52.164 46.761 52.174 46.754 52.172 46.754 52.182 46.746 52.179 46.738 52.187 46.730 52.195 46.722 52.193 46.722 52.118 46.730 52.111 46.730 52.040 46.738 52.031 46.738 52.021 46.746 52.014 46.772 52.021 46.772 51.991 46.779 51.983 46.787 51.985 46.787 51.976 46.795 51.978 46.795 51.958 46.803 51.960 46.803 51.950 46.811 51.952 46.827 51.966 46.827 51.976 46.843 51.981 46.843 51.970 46.851 51.972 46.851 51.963 46.843 51.961 46.843 51.951 46.835 51.938 46.819 51.934 46.803 51.920 46.795 51.908 46.787 51.896 46.795 51.889 46.795 51.869 46.803 51.861 46.803 51.819 46.811 51.821 46.819 51.833 46.827 51.845 46.835 51.847 46.843 51.859 46.843 51.827 46.835 51.815 46.835 51.795 46.827 51.783 46.819 51.761 46.819 51.741 46.827 51.733 46.835 51.725 46.843 51.718 46.851 51.700 46.851 51.690 46.859 51.660 46.866 51.653 46.875 51.655 46.883 51.647 46.908 51.653 46.908 51.664 46.916 51.666 46.932 51.660 46.958 51.667 46.958 51.647 46.966 51.639 46.966 51.629 46.958 51.627 46.958 51.617 46.950 51.615 46.950 51.605 46.892 51.590 46.892 51.580 46.900 51.562 46.908 51.555 46.916 51.536 46.924 51.529 46.932 51.531 46.940 51.523 46.948 51.525 46.956 51.518 46.964 51.510 46.964 51.435 46.972 51.427 46.980 51.400 46.988 51.392 46.988 51.350 46.995 51.300 46.995 51.280 47.003 51.262 47.003 51.252 47.012 51.244 47.012 51.213 47.019 51.204 47.019 51.185 47.012 51.173 47.003 51.151 46.988 51.127 46.980 51.115 46.980 51.104 46.972 51.093 46.972 51.050 46.980 51.043 46.980 51.033 46.972 51.011 46.964 50.999 46.964 50.969 46.956 50.967 46.956 50.957 46.940 50.953 46.940 50.943 46.932 50.931 46.924 50.919 46.924 50.889 46.932 50.881 46.940 50.883 46.940 50.854 46.932 50.852 46.924 50.860 46.908 50.855 46.892 50.832 46.885 50.830 46.877 50.817 46.868 50.806 46.835 50.797 46.827 50.785 46.819 50.773 46.819 50.753 46.843 50.759 46.859 50.773 46.875 50.777 46.875 50.758 46.866 50.746 46.859 50.733 46.833 50.697 46.833 50.677 46.841 50.660 46.841 50.640 46.825 50.636 46.817 50.643 46.759 50.628 46.752 50.617 46.744 50.605 46.736 50.592 46.744 50.585 46.752 50.587 46.778 50.613 46.793 50.618 46.793 50.588 46.785 50.586 46.785 50.553 46.770 50.530 46.778 50.522 46.785 50.514 46.793 50.516 46.793 50.506 46.801 50.498 46.801 50.478 46.809 50.480 46.809 50.461 46.783 50.454 46.776 50.442 46.742 50.433 46.734 50.421 46.718 50.417 46.718 50.407 46.750 50.415 46.750 50.406 46.765 50.410 46.758 50.408 46.758 50.398 46.716 50.387 46.716 50.348 46.708 50.346 46.684 50.329 46.676 50.327 46.669 50.315 46.660 50.304 46.652 50.291 46.637 50.277 46.637 50.268 46.645 50.260 46.652 50.272 46.678 50.278 46.678 50.249 46.671 50.247 46.671 50.237 46.662 50.235 46.654 50.223 46.654 50.203 46.647 50.201 46.647 50.191 46.639 50.189 46.623 50.175 46.615 50.163 46.607 50.151 46.607 50.141 46.599 50.139 46.599 50.130 46.573 50.123 46.573 50.113 46.565 50.111 46.557 50.099 46.549 50.097 46.549 50.023 46.542 50.021 46.534 50.009 46.525 50.007 46.525 49.997 46.518 49.985 46.518 49.965 46.510 49.963 46.510 49.953 46.502 49.951 46.502 49.912 46.494 49.900 46.460 49.891 46.460 49.871 46.476 49.856 46.484 49.848 46.484 49.828 46.476 49.836 46.460 49.832 46.460 49.822 46.476 49.807 46.476 49.796 46.484 49.788 46.476 49.777 46.460 49.782 46.444 49.778 46.444 49.769 46.452 49.771 46.452 49.761 46.468 49.765 46.476 49.757 46.476 49.737 46.484 49.729 46.492 49.721 46.500 49.713 46.500 49.704 46.474 49.697 46.466 49.705 46.458 49.703 46.450 49.711 46.442 49.709 46.442 49.699 46.450 49.701 46.450 49.681 46.417 49.673 46.424 49.665 46.433 49.657 46.448 49.661 46.448 49.651 46.456 49.643 46.464 49.613 46.464 49.603 46.472 49.595 46.472 49.585 46.480 49.577 46.480 49.568 46.488 49.560 46.496 49.562 46.480 49.558 46.472 49.566 46.464 49.573 46.448 49.579 46.441 49.577 46.433 49.585 46.424 49.593 46.417 49.591 46.417 49.581 46.424 49.573 46.424 49.563 46.433 49.556 46.433 49.546 46.458 49.552 46.466 49.534 46.474 49.526 46.474 49.517 46.458 49.513 46.458 49.503 46.466 49.495 46.466 49.463 46.474 49.455 46.474 49.445 46.482 49.447 46.490 49.429 46.490 49.409 46.498 49.412 46.506 49.403 46.498 49.401 46.490 49.409 46.482 49.417 46.466 49.445 46.458 49.443 46.450 49.451 46.442 49.459 46.435 49.467 46.426 49.465 46.426 49.475 46.419 49.483 46.419 49.493 46.403 49.489 46.403 49.479 46.411 49.471 46.411 49.419 46.419 49.421 46.419 49.411 46.435 49.415 46.442 49.407 46.442 49.378 46.442 49.387 46.435 49.396 46.426 49.394 46.426 49.403 46.419 49.401 46.411 49.390 46.403 49.388 46.403 49.397 46.395 49.395 46.387 49.413 46.379 49.431 46.379 49.441 46.371 49.439 46.363 49.457 46.355 49.465 46.347 49.463 46.332 49.468 46.323 49.466 46.323 49.447 46.332 49.439 46.332 49.429 46.339 49.421 46.347 49.413 46.355 49.415 46.363 49.397 46.371 49.380 46.387 49.384 46.387 49.373 46.395 49.376 46.395 49.324 46.387 49.354 46.363 49.348 46.347 49.364 46.339 49.381 46.332 49.389 46.323 49.387 46.323 49.335 46.332 49.337 46.332 49.327 46.339 49.320 46.339 49.280 46.323 49.276 46.323 49.286 46.315 49.284 46.315 49.326 46.300 49.322 46.284 49.328 46.268 49.324 46.268 49.334 46.252 49.330 46.236 49.346 46.236 49.355 46.228 49.363 46.212 49.389 46.212 49.399 46.205 49.397 46.205 49.407 46.197 49.405 46.188 49.393 46.188 49.373 46.197 49.375 46.197 49.355 46.205 49.358 46.212 49.349 46.212 49.288 46.220 49.290 46.220 49.280 46.228 49.262 46.228 49.252 46.236 49.254 46.236 49.245 46.244 49.247 46.252 49.258 46.252 49.268 46.268 49.272 46.268 49.240 46.252 49.236 46.244 49.225 46.228 49.221 46.228 49.191 46.220 49.179 46.220 49.189 46.205 49.185 46.197 49.173 46.197 49.163 46.188 49.171 46.188 49.203 46.181 49.211 46.181 49.221 46.157 49.215 46.141 49.221 46.133 49.228 46.125 49.226 46.109 49.233 46.093 49.229 46.093 49.209 46.102 49.211 46.102 49.201 46.109 49.203 46.117 49.195 46.125 49.197 46.133 49.189 46.133 49.179 46.141 49.172 46.141 49.152 46.133 49.140 46.117 49.136 46.117 49.094 46.109 49.092 46.102 49.081 46.102 49.070 46.093 49.068 46.085 49.056 46.078 49.054 46.070 49.062 46.062 49.071 46.036 49.064 46.036 49.044 46.044 49.036 46.060 49.041 46.068 49.032 46.076 49.034 46.076 49.025 46.083 49.027 46.091 49.019 46.100 49.011 46.100 49.001 46.091 48.999 46.083 49.007 46.068 49.003 46.060 49.011 46.052 49.009 46.052 48.999 46.060 49.001 46.060 48.991 46.068 48.993 46.076 48.985 46.083 48.977 46.091 48.969 46.083 48.957 46.076 48.966 46.076 48.975 46.068 48.983 46.052 48.979 46.044 48.987 46.036 48.995 46.028 49.003 46.020 48.991 46.028 48.983 46.020 48.971 46.028 48.973 46.036 48.965 46.044 48.967 46.052 48.960 46.060 48.952 46.068 48.944 46.076 48.936 46.076 48.916 46.068 48.914 46.060 48.932 46.052 48.940 46.044 48.948 46.036 48.946 46.028 48.954 46.002 48.947 46.002 48.937 46.010 48.930 46.018 48.922 46.026 48.924 46.034 48.915 46.042 48.908 46.042 48.898 46.050 48.890 46.058 48.872 46.074 48.846 46.074 48.837 46.058 48.833 46.058 48.823 46.066 48.825 46.066 48.805 46.032 48.797 46.032 48.767 46.024 48.765 46.024 48.785 46.008 48.823 46.008 48.833 46.000 48.831 45.976 48.855 45.969 48.863 45.953 48.859 45.953 48.849 45.945 48.847 45.937 48.835 45.937 48.815 45.929 48.804 45.929 48.794 45.921 48.792 45.921 48.782 45.913 48.780 45.913 48.800 45.921 48.811 45.921 48.831 45.929 48.833 45.929 48.865 45.921 48.863 45.921 48.873 45.897 48.887 45.889 48.885 45.881 48.873 45.873 48.871 45.866 48.879 45.857 48.887 45.842 48.883 45.834 48.901 45.826 48.909 45.818 48.916 45.810 48.914 45.802 48.922 45.794 48.910 45.802 48.912 45.802 48.903 45.810 48.895 45.818 48.897 45.810 48.885 45.802 48.883 45.802 48.851 45.770 48.843 45.786 48.827 45.794 48.829 45.802 48.822 45.818 48.826 45.818 48.815 45.826 48.817 45.834 48.829 45.834 48.839 45.842 48.831 45.842 48.802 45.849 48.794 45.857 48.796 45.866 48.778 45.866 48.768 45.873 48.760 45.881 48.762 45.889 48.744 45.897 48.737 45.905 48.739 45.913 48.730 45.921 48.713 45.921 48.693 45.913 48.681 45.905 48.669 45.905 48.660 45.897 48.658 45.889 48.646 45.889 48.594 45.881 48.592 45.881 48.583 45.857 48.577 45.857 48.567 45.849 48.555 45.824 48.549 45.824 48.539 45.832 48.531 45.832 48.511 45.816 48.507 45.816 48.517 45.808 48.515 45.808 48.557 45.800 48.565 45.792 48.563 45.792 48.511 45.800 48.494 45.800 48.474 45.792 48.462 45.800 48.455 45.792 48.442 45.776 48.439 45.768 48.447 45.761 48.435 45.735 48.428 45.735 48.418 45.727 48.416 45.727 48.377 45.719 48.376 45.711 48.384 45.695 48.399 45.687 48.397 45.687 48.407 45.679 48.405 45.671 48.393 45.679 48.395 45.679 48.385 45.687 48.378 45.695 48.380 45.703 48.361 45.703 48.342 45.695 48.330 45.695 48.321 45.703 48.312 45.703 48.303 45.687 48.299 45.695 48.291 45.703 48.273 45.703 48.263 45.711 48.255 45.711 48.236 45.703 48.234 45.703 48.224 45.687 48.220 45.687 48.200 45.679 48.189 45.671 48.187 45.671 48.167 45.687 48.161 45.695 48.153 45.695 48.144 45.687 48.132 45.687 48.112 45.679 48.110 45.679 48.100 45.671 48.098 45.655 48.084 45.655 48.075 45.663 48.067 45.679 48.071 45.679 48.061 45.687 48.043 45.679 48.032 45.663 48.028 45.647 48.033 45.639 48.031 45.632 48.020 45.616 48.016 45.608 48.024 45.608 48.034 45.592 48.030 45.576 48.007 45.584 47.999 45.592 47.990 45.600 47.992 45.600 47.983 45.616 47.967 45.624 47.959 45.639 47.963 45.647 47.955 45.647 47.945 45.655 47.947 45.647 47.935 45.647 47.925 45.655 47.918 45.663 47.909 45.671 47.902 45.671 47.892 45.663 47.880 45.671 47.862 45.679 47.854 45.695 47.858 45.695 47.848 45.703 47.850 45.703 47.831 45.711 47.833 45.711 47.823 45.719 47.814 45.719 47.805 45.727 47.797 45.727 47.755 45.701 47.749 45.701 47.779 45.709 47.781 45.709 47.790 45.685 47.784 45.685 47.794 45.677 47.793 45.677 47.822 45.643 47.814 45.643 47.823 45.628 47.820 45.628 47.800 45.612 47.806 45.596 47.803 45.596 47.844 45.588 47.852 45.562 47.846 45.554 47.834 45.546 47.832 45.546 47.842 45.538 47.840 45.531 47.848 45.523 47.846 45.523 47.815 45.531 47.806 45.546 47.810 45.554 47.793 45.570 47.796 45.604 47.765 45.612 47.757 45.619 47.759 45.628 47.741 45.628 47.689 45.636 47.682 45.636 47.672 45.643 47.664 45.643 47.654 45.651 47.646 45.659 47.638 45.667 47.650 45.675 47.652 45.675 47.662 45.667 47.679 45.675 47.691 45.675 47.711 45.675 47.701 45.683 47.693 45.691 47.695 45.691 47.623 45.699 47.616 45.707 47.618 45.707 47.586 45.699 47.584 45.691 47.592 45.683 47.599 45.675 47.608 45.675 47.617 45.659 47.613 45.643 47.620 45.636 47.618 45.636 47.647 45.628 47.655 45.619 47.663 45.619 47.673 45.612 47.681 45.619 47.692 45.619 47.703 45.612 47.701 45.612 47.720 45.596 47.736 45.596 47.746 45.580 47.742 45.564 47.748 45.548 47.754 45.540 47.762 45.525 47.758 45.516 47.746 45.501 47.743 45.501 47.733 45.509 47.725 45.516 47.717 45.525 47.709 45.532 47.711 45.540 47.703 45.548 47.705 45.556 47.697 45.548 47.695 45.548 47.686 45.532 47.682 45.532 47.691 45.525 47.699 45.509 47.706 45.501 47.704 45.493 47.711 45.493 47.721 45.485 47.729 45.477 47.737 45.469 47.725 45.469 47.706 45.461 47.704 45.453 47.692 45.437 47.698 45.396 47.688 45.396 47.659 45.404 47.660 45.404 47.641 45.396 47.629 45.396 47.577 45.388 47.576 45.380 47.584 45.380 47.635 45.372 47.643 45.372 47.653 45.364 47.661 45.356 47.659 45.356 47.649 45.348 47.628 45.340 47.616 45.306 47.608 45.306 47.598 45.291 47.595 45.275 47.581 45.217 47.567 45.217 47.577 45.201 47.573 45.194 47.581 45.168 47.575 45.168 47.555 45.175 47.538 45.175 47.508 45.168 47.496 45.100 47.480 45.092 47.469 45.068 47.463 45.061 47.452 45.035 47.445 45.035 47.436 44.985 47.425 44.970 47.411 44.962 47.410 44.962 47.378 44.954 47.376 44.954 47.367 44.923 47.360 44.923 47.350 44.931 47.352 44.931 47.342 44.939 47.334 44.939 47.324 44.946 47.326 44.946 47.306 44.913 47.319 44.882 47.312 44.874 47.320 44.866 47.328 44.850 47.325 44.850 47.315 44.817 47.308 44.817 47.298 44.784 47.291 44.784 47.281 44.809 47.267 44.817 47.259 44.825 47.251 44.840 47.244 44.848 47.237 44.857 47.228 44.890 47.235 44.905 47.229 44.913 47.221 44.913 47.211 44.872 47.202 44.864 47.210 44.857 47.209 44.848 47.217 44.833 47.223 44.825 47.232 44.817 47.230 44.817 47.220 44.809 47.208 44.801 47.207 44.801 47.197 44.786 47.194 44.778 47.182 44.762 47.179 44.770 47.171 44.770 47.151 44.762 47.140 44.762 47.130 44.754 47.119 44.754 47.109 44.747 47.108 44.731 47.085 44.723 47.083 44.715 47.072 44.700 47.068 44.700 47.058 44.708 47.051 44.708 47.021 44.700 47.009 44.692 46.998 44.659 46.991 44.659 46.952 44.651 46.950 44.643 46.959 44.576 46.945 44.568 46.953 44.568 46.963 44.553 46.959 44.553 46.930 44.545 46.928 44.537 46.917 44.522 46.923 44.498 46.929 44.490 46.936 44.475 46.933 44.475 46.943 44.459 46.940 44.451 46.948 44.451 46.957 44.443 46.956 44.436 46.974 44.436 46.984 44.428 46.992 44.412 46.998 44.412 47.040 44.420 47.051 44.420 47.071 44.412 47.089 44.412 47.108 44.404 47.116 44.404 47.136 44.397 47.144 44.397 47.205 44.389 47.213 44.389 47.245 44.381 47.263 44.373 47.261 44.373 47.271 44.365 47.269 44.357 47.277 44.350 47.275 44.350 47.285 44.334 47.282 44.318 47.288 44.311 47.296 44.294 47.303 44.287 47.301 44.279 47.309 44.271 47.318 44.271 47.327 44.263 47.335 44.263 47.345 44.255 47.353 44.248 47.371 44.240 47.370 44.240 47.401 44.248 47.412 44.248 47.422 44.255 47.424 44.263 47.435 44.263 47.455 44.255 47.453 44.248 47.461 44.240 47.469 44.232 47.468 44.201 47.471 44.185 47.477 44.177 47.486 44.154 47.500 44.146 47.498 44.138 47.507 44.123 47.513 44.115 47.521 44.107 47.529 44.091 47.555 44.084 47.553 44.084 47.563 44.076 47.561 44.068 47.570 44.060 47.568 44.052 47.576 44.044 47.574 44.037 47.582 44.029 47.590 44.013 47.587 44.005 47.595 43.997 47.613 43.989 47.611 43.981 47.619 43.981 47.629 43.966 47.626 43.950 47.632 43.935 47.629 43.935 47.660 43.927 47.659 43.927 47.669 43.903 47.664 43.903 47.654 43.878 47.648 43.878 47.658 43.886 47.669 43.886 47.689 43.878 47.697 43.870 47.695 43.855 47.702 43.847 47.700 43.839 47.708 43.831 47.706 43.831 47.697 43.823 47.675 43.815 47.664 43.815 47.654 43.808 47.653 43.800 47.642 43.800 47.651 43.767 47.644 43.767 47.654 43.759 47.662 43.751 47.660 43.751 47.651 43.743 47.649 43.743 47.639 43.727 47.636 43.719 47.625 43.694 47.619 43.694 47.609 43.678 47.606 43.678 47.596 43.686 47.589 43.694 47.580 43.661 47.573 43.661 47.583 43.653 47.581 43.645 47.589 43.629 47.596 43.622 47.604 43.622 47.613 43.614 47.612 43.614 47.622 43.606 47.610 43.598 47.608 43.590 47.617 43.583 47.615 43.583 47.656 43.598 47.659 43.606 47.671 43.614 47.673 43.647 47.670 43.731 47.688 43.731 47.698 43.739 47.699 43.747 47.710 43.780 47.717 43.780 47.708 43.796 47.711 43.812 47.724 43.845 47.731 43.853 47.743 43.894 47.751 43.901 47.743 43.917 47.737 43.925 47.739 43.940 47.751 43.940 47.761 43.948 47.763 43.948 47.773 43.956 47.784 43.964 47.796 43.964 47.815 43.972 47.827 43.964 47.834 43.964 47.844 43.956 47.853 43.948 47.870 43.948 47.890 43.940 47.888 43.940 47.898 43.933 47.886 43.933 47.867 43.925 47.865 43.917 47.854 43.909 47.852 43.901 47.841 43.886 47.838 43.886 47.828 43.845 47.809 43.837 47.807 43.796 47.789 43.788 47.787 43.763 47.772 43.747 47.769 43.731 47.756 43.680 47.745 43.672 47.734 43.624 47.723 43.600 47.728 43.584 47.725 43.577 47.713 43.569 47.712 43.561 47.700 43.502 47.688 43.495 47.696 43.487 47.694 43.479 47.703 43.445 47.695 43.430 47.702 43.381 47.691 43.381 47.701 43.373 47.699 43.381 47.710 43.396 47.734 43.412 47.746 43.412 47.756 43.420 47.768 43.420 47.777 43.412 47.775 43.412 47.785 43.396 47.782 43.396 47.791 43.371 47.786 43.371 47.777 43.363 47.765 43.355 47.763 43.348 47.752 43.340 47.751 43.332 47.739 43.332 47.729 43.324 47.718 43.324 47.708 43.316 47.707 43.316 47.697 43.275 47.688 43.268 47.696 43.252 47.693 43.252 47.683 43.236 47.680 43.229 47.688 43.205 47.683 43.205 47.673 43.197 47.671 43.189 47.660 43.166 47.665 43.158 47.673 43.124 47.666 43.124 47.676 43.117 47.674 43.109 47.682 43.101 47.690 43.093 47.708 43.085 47.716 43.085 47.725 43.078 47.724 43.062 47.740 43.054 47.748 43.054 47.777 43.046 47.785 43.046 47.795 43.013 47.807 43.013 47.817 43.005 47.825 43.005 47.835 42.998 47.843 42.998 47.852 42.990 47.882 42.982 47.881 42.982 47.890 42.966 47.897 42.958 47.895 42.958 47.905 42.943 47.902 42.943 47.911 42.903 47.903 42.895 47.911 42.895 47.920 42.856 47.912 42.849 47.901 42.833 47.897 42.817 47.903 42.817 47.913 42.802 47.920 42.786 47.917 42.786 47.926 42.770 47.923 42.763 47.931 42.755 47.938 42.747 47.947 42.747 47.988 42.739 47.986 42.739 48.025 42.731 48.033 42.724 48.051 42.716 48.059 42.708 48.066 42.700 48.065 42.692 48.073 42.677 48.079 42.669 48.077 42.661 48.086 42.661 48.095 42.653 48.094 42.645 48.101 42.637 48.100 42.637 48.110 42.622 48.106 42.622 48.116 42.614 48.114 42.606 48.122 42.606 48.132 42.598 48.140 42.590 48.138 42.582 48.146 42.575 48.154 42.567 48.172 42.559 48.170 42.551 48.178 42.551 48.188 42.528 48.202 42.528 48.212 42.520 48.210 42.520 48.220 42.512 48.228 42.512 48.237 42.497 48.266 42.489 48.273 42.481 48.281 42.473 48.290 42.465 48.297 42.457 48.296 42.450 48.304 42.442 48.311 42.426 48.318 42.426 48.328 42.418 48.326 42.418 48.335 42.411 48.334 42.395 48.350 42.387 48.348 42.379 48.356 42.372 48.364 42.346 48.378 42.330 48.384 42.314 48.390 42.307 48.399 42.299 48.416 42.291 48.433 42.283 48.442 42.275 48.440 42.275 48.450 42.268 48.457 42.260 48.466 42.219 48.476 42.203 48.482 42.195 48.481 42.170 48.507 42.154 48.503 42.146 48.511 42.139 48.519 42.123 48.547 42.115 48.546 42.107 48.563 42.100 48.571 42.092 48.579 42.092 48.661 42.083 48.659 42.083 48.669 42.076 48.667 42.076 48.686 42.068 48.694 42.052 48.710 42.052 48.720 42.037 48.736 42.029 48.743 42.021 48.761 42.005 48.789 41.997 48.797 41.990 48.814 41.982 48.813 41.966 48.841 41.941 48.854 41.915 48.880 41.900 48.896 41.900 48.906 41.892 48.904 41.876 48.910 41.869 48.918 41.861 48.926 41.853 48.925 41.845 48.932 41.830 48.939 41.822 48.937 41.822 48.947 41.814 48.954 41.814 48.964 41.806 48.963 41.806 48.972 41.798 48.980 41.790 48.988 41.790 48.997 41.774 48.994 41.774 49.004 41.767 49.002 41.767 49.012 41.759 49.010 41.743 49.016 41.743 49.026 41.727 49.032 41.720 49.030 41.712 49.038 41.712 49.048 41.704 49.056 41.696 49.064 41.696 49.073 41.681 49.089 41.673 49.097 41.665 49.095 41.649 49.101 41.642 49.110 41.642 49.129 41.634 49.137 41.626 49.144 41.626 49.154 41.618 49.162 41.610 49.170 41.602 49.168 41.602 49.178 41.569 49.190 41.561 49.188 41.561 49.198 41.554 49.196 41.546 49.204 41.530 49.210 41.530 49.219 41.522 49.218 41.498 49.241 41.491 49.240 41.491 49.250 41.483 49.258 41.459 49.252 41.459 49.262 41.426 49.254 41.418 49.263 41.403 49.259 41.403 49.268 41.379 49.263 41.371 49.271 41.364 49.270 41.356 49.278 41.348 49.285 41.340 49.293 41.307 49.296 41.284 49.300 41.258 49.314 41.250 49.322 41.234 49.337 41.226 49.336 41.211 49.352 41.203 49.359 41.195 49.367 41.195 49.377 41.187 49.385 41.180 49.393 41.172 49.400 41.164 49.408 41.156 49.426 41.148 49.424 41.133 49.440 41.125 49.448 41.117 49.456 41.117 49.465 41.109 49.463 41.101 49.471 41.086 49.487 41.070 49.503 41.070 49.512 41.062 49.530 41.062 49.571 41.055 49.578 41.055 49.588 41.039 49.604 41.031 49.612 41.023 49.619 41.016 49.627 41.000 49.624 40.992 49.612 40.966 49.607 40.951 49.594 40.935 49.591 40.927 49.598 40.919 49.596 40.904 49.613 40.896 49.630 40.888 49.638 40.880 49.636 40.880 49.645 40.865 49.661 40.865 49.733 40.857 49.750 40.849 49.749 40.841 49.757 40.841 49.766 40.833 49.764 40.833 49.774 40.826 49.782 40.826 49.844 40.818 49.852 40.818 49.880 40.810 49.888 40.810 49.917 40.818 49.919 40.818 49.950 40.826 49.961 40.826 49.981 40.833 49.991 40.833 50.023 40.841 50.043 40.833 50.073 40.826 50.081 40.826 50.112 40.833 50.113 40.833 50.133 40.810 50.128 40.810 50.137 40.802 50.135 40.802 50.145 40.787 50.160 40.771 50.176 40.771 50.186 40.763 50.184 40.763 50.244 40.755 50.242 40.755 50.261 40.747 50.269 40.747 50.288 40.740 50.296 40.724 50.312 40.716 50.310 40.708 50.317 40.692 50.333 40.684 50.341 40.684 50.351 40.677 50.349 40.669 50.376 40.661 50.383 40.661 50.393 40.645 50.390 40.645 50.399 40.638 50.398 40.638 50.407 40.630 50.405 40.622 50.413 40.599 50.408 40.591 50.415 40.550 50.406 40.534 50.422 40.526 50.420 40.511 50.436 40.495 50.432 40.495 50.423 40.503 50.424 40.503 50.415 40.511 50.407 40.518 50.409 40.534 50.403 40.550 50.387 40.550 50.378 40.558 50.380 40.565 50.372 40.565 50.362 40.573 50.364 40.573 50.355 40.581 50.346 40.581 50.337 40.589 50.320 40.597 50.312 40.597 50.281 40.604 50.273 40.604 50.223 40.612 50.215 40.612 50.205 40.620 50.197 40.620 50.169 40.612 50.158 40.604 50.146 40.604 50.096 40.597 50.094 40.597 50.085 40.589 50.083 40.589 50.055 40.581 50.053 40.581 50.043 40.589 50.035 40.597 50.037 40.604 50.029 40.612 50.031 40.612 49.990 40.620 49.983 40.620 49.963 40.628 49.956 40.620 49.944 40.620 49.935 40.604 49.932 40.604 49.912 40.597 49.910 40.589 49.918 40.573 49.915 40.565 49.903 40.558 49.902 40.550 49.891 40.550 49.850 40.542 49.839 40.534 49.827 40.534 49.787 40.526 49.785 40.526 49.776 40.518 49.764 40.503 49.742 40.503 49.710 40.495 49.681 40.487 49.669 40.487 49.659 40.479 49.648 40.479 49.639 40.472 49.637 40.464 49.626 40.456 49.615 40.448 49.603 40.440 49.592 40.433 49.581 40.424 49.569 40.416 49.568 40.409 49.576 40.393 49.581 40.385 49.580 40.377 49.588 40.369 49.576 40.369 49.567 40.362 49.556 40.362 49.546 40.354 49.535 40.346 49.524 40.338 49.513 40.330 49.511 40.323 49.518 40.307 49.535 40.282 49.560 40.274 49.568 40.266 49.566 40.258 49.554 40.258 49.545 40.243 49.532 40.235 49.521 40.227 49.510 40.202 49.504 40.202 49.514 40.186 49.510 40.178 49.518 40.162 49.524 40.155 49.532 40.146 49.521 40.131 49.499 40.115 49.495 40.107 49.503 40.092 49.499 40.084 49.488 40.076 49.477 40.068 49.475 40.060 49.483 40.045 49.480 40.019 49.505 40.012 49.513 39.996 49.509 39.996 49.491 39.988 49.480 39.980 49.468 39.980 49.459 39.957 49.455 39.957 49.445 39.950 49.444 39.950 49.435 39.942 49.433 39.942 49.424 39.934 49.412 39.868 49.401 39.860 49.390 39.787 49.377 39.787 49.386 39.779 49.384 39.771 49.402 39.755 49.419 39.740 49.435 39.732 49.443 39.724 49.472 39.717 49.471 39.709 49.489 39.709 49.498 39.701 49.496 39.701 49.506 39.685 49.503 39.678 49.492 39.644 49.486 39.637 49.495 39.629 49.493 39.637 49.495 39.637 49.485 39.644 49.486 39.660 49.459 39.644 49.456 39.637 49.464 39.637 49.473 39.629 49.472 39.614 49.488 39.606 49.496 39.598 49.495 39.598 49.485 39.606 49.477 39.606 49.468 39.614 49.459 39.621 49.461 39.629 49.453 39.629 49.443 39.637 49.445 39.644 49.436 39.644 49.427 39.652 49.419 39.652 49.379 39.644 49.368 39.637 49.356 39.621 49.344 39.556 49.333 39.540 49.339 39.499 49.332 39.499 49.341 39.458 49.334 39.443 49.322 39.410 49.316 39.410 49.307 39.377 49.301 39.361 49.307 39.346 49.304 39.338 49.294 39.330 49.283 39.315 49.271 39.315 49.261 39.307 49.250 39.299 49.239 39.299 49.220 39.291 49.200 39.291 49.171 39.299 49.172 39.299 49.163 39.332 49.169 39.332 49.178 39.340 49.180 39.340 49.218 39.348 49.219 39.348 49.229 39.355 49.240 39.379 49.244 39.379 49.254 39.412 49.259 39.419 49.251 39.419 49.241 39.427 49.243 39.427 49.172 39.453 49.176 39.453 49.167 39.460 49.168 39.460 49.178 39.476 49.180 39.476 49.171 39.483 49.163 39.491 49.155 39.499 49.156 39.499 49.147 39.507 49.117 39.507 49.098 39.499 49.087 39.499 49.077 39.491 49.067 39.443 49.058 39.435 49.047 39.427 49.046 39.419 49.054 39.396 49.050 39.396 49.040 39.389 49.049 39.365 49.044 39.365 49.054 39.357 49.062 39.350 49.070 39.342 49.069 39.326 49.056 39.278 49.048 39.270 49.037 39.237 49.031 39.229 49.020 39.214 49.008 39.206 48.997 39.198 48.986 39.198 48.946 39.190 48.945 39.175 48.951 39.150 48.947 39.134 48.954 39.126 48.961 39.119 48.960 39.119 48.970 39.111 48.968 39.103 48.977 39.095 48.984 39.063 48.978 39.055 48.987 39.014 48.980 39.006 48.988 38.999 48.987 38.999 48.996 38.958 48.988 38.934 48.994 38.901 48.988 38.878 48.993 38.870 48.992 38.855 48.999 38.814 48.991 38.814 49.001 38.806 49.000 38.798 49.007 38.791 48.997 38.783 49.005 38.651 48.981 38.651 48.991 38.627 48.987 38.620 48.995 38.605 48.992 38.597 49.000 38.581 48.997 38.566 49.004 38.558 49.003 38.558 49.012 38.542 49.009 38.527 49.016 38.496 49.011 38.488 49.019 38.480 49.027 38.449 49.021 38.449 49.031 38.400 49.022 38.400 49.032 38.393 49.030 38.378 49.046 38.370 49.045 38.370 49.054 38.362 49.053 38.346 49.060 38.290 49.050 38.282 49.058 38.275 49.057 38.259 49.063 38.251 49.071 38.243 49.080 38.228 49.096 38.213 49.102 38.197 49.099 38.189 49.089 38.173 49.095 38.166 49.103 38.150 49.110 38.142 49.109 38.142 49.118 38.127 49.125 38.127 49.134 38.119 49.133 38.111 49.141 38.086 49.155 38.070 49.162 38.070 49.171 38.063 49.170 38.038 49.206 38.030 49.214 38.030 49.223 38.022 49.222 38.022 49.231 38.014 49.230 38.014 49.239 38.006 49.247 37.999 49.255 37.999 49.274 37.991 49.273 37.984 49.290 37.984 49.300 37.976 49.308 37.968 49.307 37.968 49.316 37.952 49.353 37.945 49.371 37.929 49.408 37.921 49.437 37.913 49.464 37.905 49.472 37.905 49.491 37.898 49.509 37.890 49.526 37.890 49.575 37.882 49.614 37.882 49.756 37.875 49.754 37.875 49.783 37.867 49.812 37.867 49.871 37.859 49.900 37.859 49.947 37.867 49.958 37.867 49.977 37.882 49.989 37.882 50.020 37.875 50.037 37.867 50.036 37.859 50.044 37.867 50.036 37.867 50.026 37.859 50.016 37.851 50.014 37.851 50.023 37.843 50.041 37.836 50.070 37.836 50.111 37.828 50.109 37.828 50.128 37.821 50.126 37.821 50.186 37.813 50.203 37.813 50.212 37.805 50.230 37.805 50.248 37.797 50.257 37.797 50.275 37.789 50.283 37.781 50.291 37.766 50.288 37.766 50.298 37.743 50.294 37.727 50.300 37.719 50.299 37.696 50.304 37.696 50.314 37.671 50.328 37.663 50.326 37.648 50.342 37.640 50.341 37.640 50.350 37.624 50.348 37.609 50.354 37.601 50.362 37.593 50.361 37.586 50.369 37.578 50.377 37.570 50.385 37.562 50.392 37.562 50.402 37.554 50.401 37.554 50.410 37.547 50.409 37.547 50.418 37.539 50.426 37.539 50.436 37.531 50.443 37.515 50.471 37.515 50.481 37.508 50.498 37.500 50.497 37.500 50.506 37.492 50.514 37.485 50.513 37.477 50.521 37.469 50.528 37.461 50.546 37.453 50.554 37.438 50.598 37.430 50.606 37.430 50.616 37.415 50.641 37.407 50.649 37.407 50.668 37.399 50.666 37.399 50.676 37.391 50.693 37.384 50.701 37.376 50.709 37.368 50.727 37.360 50.734 37.353 50.764 37.345 50.781 37.337 50.810 37.329 50.818 37.314 50.834 37.306 50.851 37.306 50.871 37.298 50.888 37.290 50.895 37.290 50.905 37.282 50.913 37.275 50.921 37.275 50.930 37.267 50.939 37.267 50.948 37.260 50.956 37.234 50.991 37.234 51.001 37.226 50.999 37.226 51.018 37.219 51.026 37.203 51.051 37.203 51.060 37.188 51.098 37.188 51.107 37.180 51.115 37.180 51.155 37.172 51.163 37.172 51.203 37.164 51.232 37.164 51.281 37.157 51.289 37.157 51.318 37.149 51.325 37.149 51.356 37.141 51.394 37.141 51.432 37.133 51.440 37.133 51.449 37.125 51.457 37.117 51.496 37.117 51.505 37.110 51.513 37.110 51.562 37.095 51.618 37.095 51.637 37.087 51.664 37.087 51.694 37.079 51.703 37.079 51.752 37.071 51.779 37.063 51.786 37.063 51.815 37.055 51.832 37.055 51.841 37.048 51.849 37.048 52.018 37.055 52.039 37.055 52.069 37.063 52.080 37.063 52.089 37.071 52.122 37.071 52.131 37.079 52.132 37.079 52.151 37.087 52.162 37.095 52.183 37.095 52.192 37.102 52.203 37.110 52.235 37.110 52.263 37.117 52.274 37.117 52.302 37.125 52.313 37.125 52.343 37.141 52.395 37.141 52.415 37.149 52.435 37.149 52.524 37.164 52.576 37.164 52.595 37.172 52.606 37.172 52.634 37.180 52.654 37.180 52.674 37.188 52.684 37.188 52.715 37.195 52.726 37.195 52.775 37.203 52.777 37.211 52.807 37.211 52.816 37.219 52.845 37.219 52.864 37.226 52.885 37.226 52.903 37.234 52.914 37.234 52.924 37.242 52.935 37.242 52.953 37.250 52.965 37.258 52.996 37.258 53.006 37.265 53.017 37.265 53.047 37.273 53.058 37.273 53.089 37.281 53.090 37.281 53.109 37.288 53.120 37.288 53.129 37.296 53.161 37.296 53.202 37.304 53.222 37.304 53.241 37.312 53.261 37.312 53.310 37.320 53.321 37.320 53.361 37.327 53.382 37.327 53.422 37.335 53.423 37.335 53.543 37.343 53.575 37.343 53.655 37.351 53.675 37.351 53.845 37.358 53.856 37.358 53.884 37.366 53.904 37.374 53.906 37.374 53.925 37.389 53.928 37.389 53.937 37.382 53.945 37.374 53.934 37.351 53.930 37.343 53.918 37.343 53.860 37.335 53.849 37.335 53.778 37.327 53.777 37.327 53.767 37.320 53.757 37.320 53.737 37.327 53.720 37.327 53.692 37.320 53.681 37.320 53.601 37.327 53.584 37.320 53.563 37.320 53.554 37.312 53.553 37.312 53.602 37.304 53.601 37.304 53.581 37.296 53.580 37.281 53.596 37.273 53.604 37.273 53.613 37.265 53.621 37.265 53.689 37.258 53.688 37.258 53.768 37.250 53.785 37.250 53.874 37.258 53.885 37.258 53.904 37.265 53.915 37.265 53.946 37.273 53.947 37.273 53.956 37.339 53.969 37.347 53.962 37.362 53.965 37.385 53.960 37.411 53.965 37.411 53.955 37.419 53.948 37.419 53.929 37.427 53.921 37.434 53.923 37.449 53.944 37.465 53.948 37.481 53.942 37.489 53.943 37.489 53.934 37.496 53.935 37.504 53.927 37.519 53.921 37.535 53.914 37.535 53.905 37.560 53.910 37.584 53.905 37.591 53.897 37.607 53.900 37.622 53.894 37.630 53.895 37.630 53.886 37.646 53.889 37.654 53.881 37.661 53.883 37.676 53.877 37.684 53.869 37.684 53.838 37.684 53.878 37.684 53.869 37.692 53.861 37.700 53.862 37.716 53.856 37.731 53.859 37.739 53.851 37.762 53.856 37.762 53.847 37.770 53.848 37.795 53.844 37.811 53.847 37.819 53.839 37.826 53.840 37.841 53.834 37.857 53.837 37.888 53.834 37.913 53.839 37.921 53.831 37.929 53.823 37.937 53.825 37.945 53.817 37.960 53.810 37.985 53.806 38.001 53.809 38.008 53.801 38.024 53.804 38.032 53.797 38.048 53.790 38.055 53.792 38.070 53.785 38.086 53.788 38.094 53.781 38.102 53.782 38.135 53.770 38.142 53.771 38.150 53.763 38.175 53.768 38.199 53.763 38.214 53.766 38.222 53.759 38.247 53.764 38.255 53.756 38.278 53.760 38.278 53.751 38.329 53.761 38.360 53.758 38.393 53.764 38.408 53.758 38.507 53.777 38.523 53.790 38.637 53.813 38.653 53.806 38.727 53.821 38.742 53.815 38.758 53.818 38.773 53.802 38.789 53.796 38.796 53.798 38.804 53.789 38.820 53.792 38.835 53.786 38.843 53.787 38.851 53.780 38.866 53.783 38.874 53.775 38.899 53.780 38.915 53.774 38.971 53.785 38.979 53.796 39.053 53.810 39.053 53.820 39.061 53.822 39.068 53.832 39.093 53.837 39.101 53.849 39.109 53.850 39.117 53.862 39.124 53.863 39.132 53.874 39.140 53.875 39.148 53.868 39.156 53.869 39.164 53.861 39.171 53.872 39.179 53.883 39.194 53.886 39.202 53.879 39.210 53.889 39.226 53.892 39.233 53.904 39.241 53.905 39.248 53.916 39.256 53.917 39.264 53.910 39.264 53.919 39.297 53.926 39.290 53.924 39.282 53.913 39.274 53.912 39.274 53.902 39.299 53.907 39.299 53.898 39.291 53.887 39.291 53.877 39.299 53.879 39.307 53.871 39.307 53.861 39.315 53.854 39.323 53.846 39.330 53.837 39.338 53.839 39.346 53.831 39.353 53.823 39.379 53.828 39.379 53.800 39.387 53.792 39.387 53.764 39.394 53.765 39.394 53.715 39.387 53.714 39.387 53.704 39.379 53.712 39.379 53.702 39.387 53.694 39.394 53.687 39.410 53.680 39.417 53.672 39.425 53.664 39.425 53.655 39.466 53.663 39.482 53.657 39.482 53.647 39.507 53.652 39.499 53.660 39.499 53.669 39.507 53.671 39.507 53.681 39.515 53.672 39.515 53.654 39.538 53.658 39.546 53.650 39.554 53.652 39.554 53.643 39.538 53.639 39.530 53.628 39.530 53.638 39.522 53.645 39.466 53.634 39.451 53.641 39.443 53.649 39.435 53.648 39.435 53.638 39.443 53.639 39.443 53.630 39.451 53.622 39.458 53.614 39.466 53.606 39.474 53.607 39.482 53.600 39.489 53.601 39.505 53.594 39.513 53.587 39.520 53.579 39.528 53.571 39.528 53.561 39.536 53.563 39.536 53.553 39.544 53.555 39.552 53.566 39.567 53.569 39.567 53.550 39.534 53.543 39.534 53.534 39.542 53.526 39.573 53.532 39.573 53.523 39.565 53.521 39.573 53.513 39.588 53.516 39.596 53.528 39.621 53.532 39.621 53.542 39.621 53.532 39.596 53.518 39.588 53.506 39.596 53.499 39.604 53.500 39.612 53.511 39.620 53.504 39.620 53.513 39.627 53.514 39.627 53.495 39.635 53.497 39.635 53.487 39.627 53.486 39.627 53.476 39.642 53.480 39.650 53.490 39.650 53.481 39.642 53.470 39.642 53.461 39.650 53.462 39.650 53.453 39.642 53.441 39.642 53.432 39.658 53.435 39.658 53.425 39.666 53.427 39.666 53.417 39.674 53.419 39.674 53.379 39.666 53.377 39.666 53.367 39.674 53.369 39.682 53.380 39.689 53.382 39.682 53.370 39.682 53.361 39.689 53.363 39.697 53.374 39.705 53.366 39.697 53.364 39.697 53.355 39.689 53.344 39.689 53.334 39.697 53.336 39.697 53.326 39.689 53.315 39.689 53.275 39.697 53.276 39.697 53.257 39.705 53.259 39.705 53.249 39.713 53.241 39.713 53.223 39.720 53.205 39.713 53.203 39.713 53.163 39.705 53.152 39.697 53.160 39.697 53.179 39.689 53.177 39.689 53.187 39.682 53.195 39.674 53.193 39.666 53.182 39.650 53.170 39.620 53.163 39.620 53.154 39.604 53.151 39.596 53.159 39.596 53.169 39.571 53.164 39.571 53.173 39.556 53.170 39.556 53.151 39.580 53.156 39.580 53.147 39.596 53.150 39.596 53.140 39.621 53.145 39.629 53.137 39.652 53.141 39.660 53.134 39.676 53.137 39.684 53.129 39.699 53.122 39.740 53.092 39.747 53.084 39.755 53.086 39.763 53.078 39.779 53.081 39.787 53.092 39.794 53.093 39.809 53.106 39.825 53.118 39.833 53.129 39.841 53.131 39.849 53.142 39.881 53.168 39.881 53.177 39.889 53.179 39.897 53.190 39.905 53.191 39.920 53.204 39.928 53.206 39.936 53.217 39.992 53.228 40.008 53.240 40.015 53.242 40.015 53.292 40.008 53.290 40.008 53.300 40.000 53.298 40.000 53.267 39.992 53.256 39.952 53.248 39.952 53.229 39.911 53.221 39.903 53.210 39.879 53.206 39.872 53.213 39.872 53.254 39.879 53.265 39.879 53.327 39.887 53.347 39.887 53.416 39.895 53.449 39.887 53.447 39.879 53.455 39.872 53.454 39.872 53.463 39.879 53.465 39.895 53.458 39.903 53.450 39.918 53.444 39.934 53.447 39.942 53.458 39.950 53.460 39.950 53.478 39.934 53.475 39.934 53.485 39.950 53.488 39.950 53.498 39.942 53.496 39.934 53.504 39.918 53.492 39.911 53.490 39.903 53.498 39.911 53.499 39.911 53.509 39.903 53.508 39.903 53.517 39.895 53.515 39.887 53.523 39.879 53.522 39.864 53.509 39.864 53.490 39.856 53.489 39.849 53.497 39.841 53.485 39.833 53.484 39.825 53.492 39.841 53.504 39.849 53.516 39.849 53.525 39.881 53.532 39.881 53.551 39.889 53.562 39.881 53.561 39.874 53.568 39.874 53.578 39.858 53.584 39.858 53.603 39.866 53.605 39.874 53.597 39.881 53.598 39.881 53.589 39.897 53.592 39.897 53.601 39.889 53.610 39.881 53.608 39.881 53.627 39.889 53.629 39.889 53.647 39.881 53.646 39.881 53.656 39.889 53.666 39.897 53.668 39.897 53.649 39.905 53.651 39.905 53.641 39.897 53.630 39.897 53.611 39.905 53.613 39.912 53.605 39.920 53.606 39.920 53.596 39.928 53.589 39.920 53.587 39.920 53.577 39.897 53.573 39.897 53.554 39.889 53.543 39.889 53.534 39.897 53.535 39.905 53.527 39.912 53.519 39.920 53.511 39.936 53.514 39.944 53.525 39.936 53.523 39.936 53.533 39.928 53.541 39.928 53.550 39.920 53.540 39.912 53.538 39.912 53.557 39.928 53.560 39.928 53.550 39.936 53.552 39.944 53.563 39.944 53.582 39.959 53.585 39.959 53.576 39.967 53.578 39.967 53.568 39.974 53.569 39.974 53.560 39.967 53.558 39.959 53.566 39.952 53.565 39.952 53.555 39.959 53.547 39.952 53.536 39.952 53.526 39.959 53.519 39.967 53.529 39.982 53.533 39.990 53.525 39.998 53.526 39.998 53.517 40.006 53.519 40.006 53.509 39.990 53.506 39.982 53.514 39.974 53.512 39.982 53.505 39.990 53.496 39.998 53.488 40.006 53.490 40.014 53.483 40.014 53.473 40.006 53.471 39.998 53.479 39.990 53.487 39.974 53.483 39.967 53.492 39.967 53.473 39.982 53.466 39.990 53.468 39.990 53.437 39.998 53.429 39.998 53.419 40.006 53.411 40.014 53.404 40.021 53.406 40.021 53.396 40.037 53.400 40.045 53.393 40.084 53.402 40.076 53.390 40.076 53.371 40.084 53.373 40.092 53.384 40.099 53.377 40.107 53.379 40.107 53.388 40.115 53.390 40.115 53.400 40.123 53.411 40.131 53.403 40.131 53.413 40.139 53.415 40.155 53.428 40.162 53.430 40.170 53.441 40.178 53.453 40.186 53.445 40.209 53.451 40.217 53.462 40.225 53.464 40.225 53.455 40.248 53.460 40.241 53.440 40.241 53.430 40.248 53.422 40.248 53.403 40.264 53.407 40.272 53.418 40.280 53.420 40.280 53.389 40.264 53.366 40.264 53.357 40.272 53.358 40.280 53.370 40.287 53.362 40.280 53.360 40.280 53.351 40.272 53.340 40.272 53.320 40.264 53.309 40.256 53.297 40.256 53.257 40.264 53.230 40.272 53.222 40.272 53.213 40.280 53.215 40.280 53.196 40.287 53.188 40.295 53.180 40.295 53.171 40.303 53.163 40.303 53.154 40.295 53.142 40.295 53.114 40.280 53.110 40.280 53.069 40.272 53.058 40.272 53.048 40.287 53.052 40.287 53.043 40.303 53.047 40.303 53.037 40.295 53.025 40.295 53.006 40.287 53.004 40.295 52.997 40.295 52.987 40.287 52.985 40.287 52.976 40.280 52.965 40.280 52.945 40.287 52.947 40.287 52.938 40.295 52.940 40.295 52.920 40.287 52.909 40.287 52.899 40.295 52.901 40.303 52.913 40.311 52.924 40.327 52.928 40.327 52.919 40.319 52.907 40.319 52.878 40.303 52.875 40.295 52.882 40.287 52.890 40.287 52.909 40.280 52.907 40.264 52.913 40.231 52.915 40.198 52.917 40.182 52.922 40.174 52.930 40.174 52.940 40.159 52.936 40.166 52.928 40.174 52.911 40.174 52.901 40.182 52.903 40.190 52.895 40.198 52.897 40.205 52.890 40.221 52.884 40.237 52.878 40.237 52.869 40.244 52.861 40.244 52.851 40.252 52.844 40.252 52.834 40.278 52.812 40.286 52.814 40.293 52.806 40.301 52.798 40.301 52.789 40.293 52.787 40.293 52.767 40.301 52.769 40.309 52.762 40.340 52.769 40.340 52.759 40.356 52.754 40.364 52.746 40.379 52.750 40.412 52.767 40.454 52.777 40.462 52.769 40.477 52.773 40.477 52.763 40.485 52.765 40.477 52.754 40.470 52.752 40.495 52.758 40.495 52.748 40.528 52.756 40.528 52.746 40.536 52.748 40.536 52.739 40.544 52.741 40.552 52.733 40.559 52.735 40.559 52.725 40.567 52.727 40.575 52.719 40.632 52.733 40.640 52.745 40.665 52.750 40.665 52.741 40.698 52.749 40.698 52.739 40.773 52.756 40.781 52.768 40.788 52.770 40.804 52.783 40.812 52.785 40.828 52.798 40.835 52.800 40.843 52.812 40.851 52.823 40.859 52.825 40.867 52.836 40.874 52.838 40.882 52.850 40.890 52.861 40.915 52.867 40.923 52.878 40.954 52.886 40.962 52.878 40.962 52.859 40.970 52.851 40.970 52.842 40.986 52.846 40.994 52.857 41.010 52.860 41.017 52.872 41.017 52.891 41.025 52.893 41.051 52.880 41.059 52.882 41.082 52.897 41.156 52.915 41.164 52.926 41.180 52.930 41.187 52.941 41.244 52.955 41.260 52.940 41.268 52.941 41.276 52.933 41.301 52.940 41.309 52.910 41.301 52.908 41.301 52.899 41.309 52.891 41.309 52.881 41.317 52.874 41.325 52.866 41.391 52.882 41.399 52.874 41.407 52.876 41.422 52.870 41.430 52.872 41.438 52.864 41.446 52.857 41.461 52.841 41.477 52.835 41.493 52.839 41.508 52.833 41.516 52.826 41.532 52.829 41.540 52.821 41.556 52.825 41.563 52.817 41.571 52.810 41.579 52.812 41.579 52.802 41.587 52.794 41.602 52.797 41.610 52.790 41.618 52.782 41.618 52.763 41.626 52.755 41.651 52.752 41.659 52.754 41.659 52.744 41.675 52.729 41.683 52.711 41.683 52.680 41.690 52.682 41.706 52.676 41.706 52.666 41.714 52.658 41.722 52.641 41.722 52.631 41.737 52.604 41.737 52.595 41.761 52.600 41.768 52.611 41.776 52.613 41.784 52.625 41.816 52.632 41.824 52.624 41.865 52.634 41.872 52.627 41.872 52.617 41.880 52.619 41.888 52.611 41.896 52.612 41.896 52.603 41.904 52.585 41.904 52.576 41.919 52.561 41.919 52.551 41.927 52.543 41.935 52.526 41.943 52.527 41.943 52.518 41.951 52.500 41.951 52.491 41.958 52.483 42.007 52.495 42.023 52.517 42.056 52.525 42.056 52.516 42.064 52.518 42.072 52.529 42.087 52.543 42.111 52.548 42.127 52.533 42.143 52.537 42.143 52.527 42.158 52.530 42.166 52.522 42.174 52.515 42.182 52.507 42.182 52.497 42.189 52.490 42.205 52.484 42.213 52.485 42.221 52.478 42.228 52.480 42.244 52.493 42.252 52.495 42.252 52.485 42.268 52.469 42.275 52.462 42.316 52.472 42.332 52.485 42.348 52.479 42.355 52.481 42.363 52.492 42.372 52.494 42.372 52.514 42.379 52.525 42.395 52.538 42.411 52.542 42.411 52.551 42.426 52.555 42.426 52.565 42.434 52.567 42.442 52.579 42.450 52.581 42.457 52.592 42.473 52.605 42.481 52.617 42.489 52.619 42.504 52.632 42.579 52.650 42.586 52.661 42.586 52.671 42.594 52.673 42.594 52.682 42.644 52.694 42.651 52.706 42.726 52.724 42.733 52.716 42.757 52.711 42.765 52.704 42.780 52.708 42.796 52.701 42.796 52.692 42.804 52.694 42.804 52.684 42.829 52.671 42.837 52.653 42.853 52.648 42.860 52.618 42.868 52.610 42.876 52.602 42.909 52.610 42.909 52.620 42.894 52.626 42.878 52.622 42.870 52.630 42.862 52.637 42.862 52.647 42.854 52.655 42.854 52.665 42.839 52.693 42.831 52.701 42.823 52.708 42.808 52.714 42.815 52.716 42.808 52.714 42.792 52.730 42.776 52.736 42.761 52.741 42.753 52.749 42.761 52.761 42.776 52.765 42.817 52.784 42.825 52.786 42.833 52.778 42.849 52.772 42.882 52.780 42.890 52.772 42.890 52.763 42.897 52.765 42.897 52.745 42.905 52.747 42.905 52.728 42.913 52.720 42.913 52.710 42.921 52.702 42.913 52.691 42.913 52.671 42.921 52.683 42.929 52.685 42.929 52.675 42.937 52.677 42.937 52.668 42.945 52.670 42.945 52.660 42.953 52.652 42.960 52.622 42.968 52.605 42.968 52.595 42.976 52.578 42.976 52.558 42.984 52.519 42.992 52.511 42.992 52.429 42.984 52.407 42.984 52.378 42.976 52.377 42.976 52.367 42.968 52.365 42.968 52.355 42.953 52.352 42.953 52.342 42.945 52.341 42.953 52.333 42.968 52.326 42.976 52.319 42.976 52.309 42.984 52.301 43.009 52.298 43.017 52.280 43.033 52.264 43.041 52.257 43.041 52.133 43.033 52.131 43.033 52.122 43.025 52.110 43.025 52.081 43.017 52.079 43.017 52.070 43.009 52.048 43.001 52.037 43.001 51.976 43.009 51.968 43.009 51.959 43.017 51.951 43.025 51.952 43.025 51.943 43.050 51.939 43.050 51.929 43.058 51.922 43.066 51.914 43.066 51.904 43.082 51.908 43.089 51.900 43.097 51.902 43.113 51.886 43.113 51.876 43.121 51.878 43.128 51.870 43.136 51.872 43.144 51.864 43.160 51.868 43.167 51.860 43.183 51.854 43.199 51.826 43.238 51.794 43.238 51.765 43.246 51.757 43.246 51.748 43.262 51.751 43.277 51.765 43.293 51.758 43.301 51.760 43.309 51.753 43.324 51.737 43.324 51.717 43.316 51.706 43.316 51.624 43.309 51.622 43.309 51.612 43.293 51.608 43.293 51.598 43.301 51.581 43.301 51.477 43.293 51.465 43.293 51.455 43.301 51.438 43.301 51.428 43.293 51.416 43.293 51.407 43.285 51.395 43.285 51.386 43.293 51.368 43.301 51.361 43.357 51.374 43.383 51.389 43.424 51.398 43.432 51.410 43.439 51.412 43.455 51.406 43.514 51.419 43.545 51.417 43.553 51.419 43.569 51.413 43.577 51.415 43.584 51.407 43.592 51.408 43.600 51.401 43.608 51.403 43.608 51.393 43.616 51.395 43.631 51.389 43.631 51.379 43.647 51.373 43.655 51.374 43.670 51.369 43.678 51.371 43.678 51.361 43.686 51.363 43.686 51.353 43.694 51.354 43.702 51.347 43.702 51.328 43.709 51.319 43.709 51.309 43.735 51.315 43.735 51.306 43.743 51.308 43.743 51.288 43.735 51.277 43.735 51.257 43.743 51.249 43.751 51.251 43.751 51.241 43.759 51.234 43.782 51.219 43.790 51.212 43.806 51.205 43.821 51.200 43.829 51.192 43.837 51.193 43.845 51.185 43.853 51.178 43.860 51.179 43.860 51.169 43.868 51.171 43.868 51.161 43.894 51.148 43.901 51.140 43.917 51.134 43.942 51.121 43.966 51.116 43.966 51.106 43.974 51.108 43.981 51.100 44.005 51.106 44.013 51.098 44.021 51.100 44.021 51.090 44.037 51.074 44.037 51.065 44.062 51.060 44.070 51.052 44.078 51.045 44.085 51.046 44.085 51.037 44.093 51.038 44.101 51.031 44.101 51.021 44.109 51.013 44.109 50.993 44.117 50.985 44.125 50.978 44.132 50.979 44.132 50.969 44.148 50.973 44.148 50.983 44.181 50.991 44.189 50.983 44.197 50.984 44.205 50.977 44.228 50.982 44.244 50.976 44.251 50.978 44.259 50.970 44.267 50.971 44.283 50.966 44.291 50.957 44.291 50.947 44.324 50.873 44.332 50.865 44.332 50.855 44.340 50.847 44.340 50.837 44.348 50.807 44.348 50.778 44.356 50.770 44.348 50.768 44.348 50.749 44.356 50.741 44.356 50.731 44.363 50.723 44.363 50.672 44.371 50.654 44.371 50.539 44.379 50.541 44.379 50.522 44.387 50.514 44.387 50.472 44.395 50.454 44.402 50.456 44.402 50.417 44.410 50.419 44.418 50.402 44.434 50.385 44.441 50.377 44.449 50.379 44.457 50.371 44.498 50.380 44.522 50.376 44.537 50.379 44.545 50.372 44.568 50.377 44.576 50.369 44.592 50.372 44.600 50.365 44.633 50.372 44.633 50.362 44.641 50.374 44.641 50.384 44.633 50.382 44.618 50.398 44.626 50.410 44.682 50.422 44.682 50.432 44.706 50.438 44.713 50.449 44.721 50.451 44.713 50.459 44.706 50.477 44.706 50.487 44.698 50.514 44.698 50.534 44.690 50.542 44.690 50.698 44.698 50.700 44.698 50.739 44.690 50.747 44.682 50.755 44.682 50.765 44.674 50.773 44.674 50.814 44.682 50.816 44.682 50.845 44.674 50.853 44.667 50.861 44.667 50.881 44.674 50.882 44.682 50.894 44.690 50.896 44.698 50.908 44.698 50.927 44.690 50.935 44.690 50.987 44.682 50.994 44.682 51.004 44.674 51.012 44.674 51.022 44.667 51.020 44.667 51.030 44.659 51.028 44.651 51.036 44.643 51.054 44.635 51.062 44.627 51.070 44.627 51.089 44.635 51.101 44.627 51.109 44.627 51.119 44.612 51.115 44.612 51.096 44.604 51.094 44.604 51.103 44.596 51.111 44.588 51.139 44.581 51.146 44.572 51.165 44.572 51.184 44.565 51.192 44.557 51.222 44.549 51.240 44.549 51.249 44.557 51.251 44.557 51.302 44.565 51.314 44.572 51.325 44.581 51.337 44.588 51.339 44.588 51.358 44.612 51.364 44.612 51.374 44.620 51.386 44.620 51.446 44.627 51.448 44.620 51.456 44.620 51.466 44.604 51.462 44.596 51.451 44.596 51.460 44.588 51.458 44.588 51.478 44.596 51.480 44.596 51.490 44.588 51.498 44.588 51.508 44.581 51.515 44.588 51.517 44.588 51.527 44.604 51.531 44.604 51.550 44.596 51.548 44.596 51.558 44.588 51.566 44.588 51.576 44.581 51.584 44.581 51.645 44.606 51.651 44.614 51.643 44.614 51.633 44.622 51.625 44.629 51.607 44.645 51.579 44.645 51.560 44.653 51.562 44.653 51.552 44.669 51.524 44.676 51.516 44.676 51.475 44.669 51.463 44.669 51.453 44.661 51.442 44.661 51.390 44.669 51.382 44.676 51.375 44.684 51.366 44.700 51.370 44.708 51.362 44.715 51.354 44.723 51.346 44.731 51.348 44.739 51.340 44.754 51.343 44.762 51.336 44.762 51.326 44.778 51.320 44.778 51.310 44.786 51.312 44.794 51.304 44.794 51.294 44.817 51.249 44.817 51.238 44.825 51.230 44.833 51.213 44.833 51.203 44.840 51.195 44.848 51.197 44.848 51.158 44.864 51.120 44.872 51.112 44.880 51.104 44.888 51.086 44.888 51.076 44.896 51.078 44.896 51.068 44.903 51.061 44.911 51.053 44.937 51.058 44.952 51.072 44.960 51.074 44.960 51.083 44.976 51.097 44.983 51.089 44.983 51.069 44.991 51.061 44.991 51.052 44.999 51.044 44.999 51.054 45.015 51.058 45.015 51.067 45.023 51.069 45.023 51.089 45.031 51.101 45.031 51.140 45.023 51.148 45.031 51.160 45.039 51.172 45.065 51.178 45.065 51.188 45.072 51.209 45.080 51.221 45.080 51.241 45.088 51.253 45.096 51.255 45.096 51.287 45.088 51.304 45.080 51.312 45.080 51.322 45.072 51.330 45.065 51.328 45.065 51.369 45.072 51.371 45.080 51.364 45.088 51.356 45.104 51.350 45.120 51.345 45.120 51.335 45.128 51.337 45.136 51.329 45.144 51.331 45.152 51.343 45.160 51.345 45.175 51.340 45.183 51.342 45.192 51.334 45.207 51.338 45.215 51.350 45.223 51.352 45.223 51.361 45.249 51.368 45.249 51.378 45.275 51.385 45.275 51.395 45.291 51.399 45.299 51.421 45.306 51.432 45.322 51.436 45.330 51.449 45.338 51.451 45.338 51.461 45.346 51.463 45.354 51.474 45.362 51.486 45.378 51.491 45.394 51.485 45.402 51.487 45.409 51.499 45.409 51.508 45.402 51.506 45.402 51.516 45.394 51.524 45.385 51.522 45.378 51.530 45.370 51.537 45.362 51.546 45.362 51.555 45.354 51.572 45.354 51.582 45.362 51.584 45.362 51.677 45.378 51.692 45.378 51.702 45.394 51.706 45.402 51.717 45.409 51.740 45.409 51.768 45.417 51.781 45.426 51.793 45.433 51.795 45.449 51.789 45.457 51.801 45.465 51.803 45.465 51.833 45.457 51.831 45.457 51.840 45.449 51.838 45.449 51.848 45.424 51.841 45.424 51.861 45.415 51.859 45.415 51.952 45.407 51.960 45.400 51.958 45.392 51.965 45.383 51.983 45.383 52.002 45.392 52.004 45.392 52.088 45.383 52.118 45.376 52.157 45.360 52.173 45.352 52.213 45.352 52.473 45.344 52.522 45.344 52.563 45.336 52.603 45.336 52.642 45.321 52.722 45.304 52.769 45.297 52.809 45.289 52.856 45.289 52.919 45.280 52.968 45.280 53.125 45.273 53.197 45.265 53.256 45.265 53.455 45.257 53.524 45.249 53.563 45.233 53.591 45.225 53.618 45.217 53.648 45.217 53.689 45.225 53.691 45.225 53.701 45.241 53.757 45.241 53.787 45.249 53.798 45.265 53.854 45.280 53.879 45.280 53.898 45.289 53.932 45.297 53.974 ; #2565 99 40.927 53.083 40.919 53.091 40.919 53.172 40.935 53.207 40.951 53.210 40.958 53.222 40.966 53.224 40.966 53.243 40.943 53.227 40.935 53.226 40.935 53.216 40.919 53.213 40.919 53.222 40.912 53.220 40.919 53.263 40.919 53.301 40.927 53.303 40.935 53.314 40.976 53.324 40.976 53.334 40.984 53.345 40.984 53.355 40.935 53.343 40.935 53.352 40.927 53.351 40.927 53.360 40.912 53.366 40.912 53.376 40.904 53.393 40.904 53.402 40.896 53.410 40.888 53.418 40.888 53.447 40.896 53.458 40.896 53.468 40.904 53.470 40.912 53.481 40.912 53.491 40.919 53.502 40.919 53.512 40.960 53.521 40.968 53.514 40.976 53.515 40.984 53.508 41.000 53.512 41.008 53.523 41.023 53.537 41.039 53.540 41.047 53.552 41.039 53.569 41.031 53.577 41.031 53.586 41.023 53.584 41.016 53.602 41.016 53.611 40.974 53.601 40.974 53.611 40.966 53.609 40.958 53.617 40.951 53.625 40.935 53.602 40.927 53.609 40.919 53.617 40.896 53.621 40.880 53.626 40.872 53.625 40.865 53.642 40.857 53.650 40.857 53.669 40.816 53.659 40.808 53.648 40.800 53.655 40.785 53.680 40.777 53.678 40.777 53.697 40.792 53.710 40.792 53.780 40.785 53.788 40.792 53.799 40.792 53.808 40.800 53.820 40.808 53.822 40.808 53.831 40.816 53.833 40.816 53.843 40.824 53.845 40.824 53.855 40.831 53.875 40.831 53.885 40.824 53.893 40.824 53.912 40.816 53.938 40.816 53.958 40.824 53.969 40.824 53.988 40.839 54.012 40.855 54.015 40.855 53.996 40.863 53.988 40.863 53.979 40.870 53.981 40.870 54.072 40.878 54.074 40.878 54.104 40.886 54.116 40.886 54.166 40.870 54.162 40.855 54.149 40.855 54.140 40.839 54.136 40.839 54.174 40.831 54.182 40.831 54.322 40.839 54.315 40.839 54.284 40.847 54.276 40.855 54.288 40.855 54.328 40.863 54.330 40.863 54.340 40.870 54.342 40.870 54.352 40.878 54.344 40.878 54.275 40.870 54.273 40.870 54.232 40.878 54.234 40.886 54.226 40.910 54.232 40.925 54.217 40.941 54.211 40.956 54.205 40.972 54.209 40.988 54.194 41.021 54.202 41.021 54.173 41.029 54.175 41.037 54.187 41.037 54.196 41.045 54.208 41.045 54.217 41.070 54.224 41.070 54.233 41.078 54.245 41.070 54.243 41.070 54.271 41.062 54.279 41.055 54.287 41.047 54.304 41.047 54.323 41.039 54.331 41.031 54.329 41.023 54.336 41.023 54.375 41.016 54.382 41.008 54.390 41.000 54.388 40.992 54.377 40.984 54.375 40.984 54.365 40.976 54.354 40.968 54.352 40.968 54.361 40.960 54.369 40.960 54.379 40.953 54.386 40.953 54.396 40.960 54.407 40.960 54.417 40.968 54.428 40.968 54.469 40.976 54.481 40.976 54.490 40.984 54.502 40.984 54.542 41.000 54.546 41.008 54.558 41.016 54.569 41.016 54.579 41.023 54.590 41.023 54.599 41.031 54.611 41.047 54.625 41.055 54.627 41.062 54.638 41.078 54.642 41.078 54.652 41.086 54.644 41.101 54.657 41.117 54.661 41.125 54.653 41.133 54.655 41.133 54.646 41.148 54.640 41.148 54.630 41.156 54.632 41.172 54.606 41.180 54.608 41.195 54.592 41.203 54.585 41.203 54.575 41.203 54.616 41.195 54.614 41.195 54.623 41.187 54.621 41.187 54.640 41.180 54.658 41.180 54.667 41.180 54.658 41.187 54.660 41.187 54.650 41.195 54.642 41.203 54.635 41.211 54.627 41.219 54.620 41.226 54.622 41.234 54.633 41.242 54.635 41.242 54.626 41.250 54.618 41.250 54.599 41.258 54.591 41.258 54.553 41.266 54.545 41.289 54.551 41.305 54.523 41.313 54.516 41.321 54.498 41.329 54.491 41.336 54.493 41.336 54.473 41.344 54.466 41.344 54.456 41.370 54.434 41.377 54.435 41.385 54.406 41.393 54.389 41.393 54.380 41.401 54.382 41.401 54.372 41.409 54.364 41.416 54.357 41.416 54.338 41.432 54.322 41.432 54.303 41.440 54.295 41.440 54.276 41.448 54.259 41.448 54.249 41.455 54.251 41.455 54.219 41.463 54.212 41.479 54.206 41.487 54.189 41.495 54.172 41.502 54.164 41.510 54.156 41.510 54.147 41.518 54.139 41.518 54.130 41.526 54.122 41.534 54.124 41.542 54.116 41.550 54.099 41.565 54.093 41.565 54.083 41.573 54.085 41.573 54.076 41.581 54.037 41.581 54.027 41.589 54.020 41.589 54.010 41.604 54.004 41.612 54.006 41.620 53.998 41.620 53.989 41.628 53.990 41.636 53.983 41.651 53.977 41.659 53.979 41.692 53.968 41.700 53.970 41.700 53.960 41.757 53.974 41.757 53.964 41.798 53.974 41.806 53.967 41.822 53.971 41.837 53.955 41.853 53.959 41.861 53.951 41.869 53.953 41.876 53.945 41.884 53.947 41.884 53.938 41.900 53.942 41.900 53.932 41.908 53.934 41.908 53.924 41.923 53.919 41.931 53.911 41.939 53.913 41.947 53.905 41.947 53.896 41.955 53.898 41.970 53.891 41.970 53.882 41.978 53.874 41.978 53.855 41.986 53.857 41.986 53.847 42.001 53.851 42.009 53.863 42.025 53.867 42.050 53.853 42.058 53.855 42.066 53.867 42.092 53.873 42.100 53.865 42.123 53.871 42.131 53.863 42.139 53.865 42.139 53.856 42.146 53.857 42.154 53.850 42.162 53.832 42.170 53.834 42.170 53.825 42.178 53.827 42.178 53.817 42.186 53.809 42.186 53.800 42.193 53.792 42.193 53.783 42.201 53.785 42.201 53.765 42.209 53.738 42.209 53.707 42.201 53.695 42.209 53.687 42.217 53.648 42.217 53.598 42.209 53.564 42.209 53.535 42.201 53.514 42.201 53.483 42.193 53.472 42.193 53.452 42.186 53.441 42.186 53.337 42.178 53.325 42.178 53.316 42.170 53.304 42.162 53.293 42.154 53.281 42.154 53.231 42.162 53.223 42.162 53.204 42.170 53.174 42.170 53.155 42.178 53.147 42.178 53.128 42.170 53.116 42.162 53.105 42.162 53.095 42.154 53.074 42.146 53.072 42.146 53.062 42.121 53.056 42.113 53.045 42.105 53.033 42.105 53.024 42.098 53.012 42.098 53.003 42.090 52.991 42.090 52.982 42.081 52.980 42.081 52.961 42.074 52.959 42.066 52.947 42.058 52.945 42.050 52.933 42.009 52.924 42.001 52.912 41.976 52.897 41.960 52.893 41.953 52.881 41.945 52.879 41.937 52.868 41.906 52.861 41.898 52.849 41.874 52.843 41.867 52.832 41.859 52.820 41.851 52.809 41.843 52.807 41.835 52.796 41.828 52.794 41.820 52.782 41.804 52.778 41.796 52.786 41.788 52.785 41.780 52.773 41.772 52.771 41.765 52.779 41.757 52.786 41.765 52.798 41.790 52.804 41.798 52.815 41.798 52.866 41.806 52.868 41.806 52.877 41.798 52.875 41.798 52.885 41.790 52.893 41.782 52.901 41.782 52.911 41.774 52.918 41.751 52.912 41.751 52.903 41.726 52.897 41.702 52.901 41.661 52.891 41.645 52.878 41.597 52.866 41.581 52.853 41.556 52.847 41.556 52.837 41.514 52.827 41.506 52.816 41.498 52.823 41.473 52.817 41.457 52.823 41.450 52.821 41.442 52.829 41.434 52.828 41.426 52.835 41.403 52.839 41.377 52.833 41.377 52.843 41.362 52.839 41.346 52.845 41.346 52.854 41.330 52.851 41.330 52.860 41.323 52.858 41.315 52.866 41.289 52.870 41.282 52.877 41.274 52.875 41.274 52.885 41.266 52.893 41.258 52.891 41.242 52.897 41.234 52.905 41.226 52.903 41.211 52.889 41.211 52.880 41.187 52.874 41.187 52.893 41.180 52.901 41.180 52.911 41.195 52.914 41.195 52.905 41.211 52.908 41.211 52.918 41.203 52.916 41.203 52.926 41.195 52.933 41.195 52.943 41.187 52.941 41.187 52.951 41.180 52.949 41.172 52.957 41.156 52.953 41.156 52.944 41.141 52.940 41.141 52.949 41.133 52.957 41.125 52.955 41.125 52.964 41.117 52.963 41.117 52.972 41.109 52.970 41.109 52.980 41.101 52.978 41.086 53.004 41.078 53.002 41.078 53.011 41.045 53.003 41.045 53.013 41.029 53.018 41.021 53.026 41.021 53.036 41.014 53.043 41.006 53.041 41.006 53.101 40.998 53.100 40.998 53.090 40.990 53.079 40.990 53.048 40.982 53.036 40.974 53.044 40.966 53.052 40.951 53.067 40.943 53.074 40.927 53.071 40.927 53.080 40.919 53.078 ; % Text labels flag 9 zoomwidth 4000 % don't show unless zoom width >= 4000) zoomheight 2000 % don't show unless zoom height >= 2000) label 99 19 1 33.502 62.154 Afghanistan ; label 99 19 -1 40.73 20.50 Albania ; label 99 19 1 33.000 1.000 Algeria ; label 99 19 1 42.51 1.51 Andorra ; label 99 19 0 -12.76 15.73 Angola ; label 99 19 1 18.20 -63.09 Anguilla ; label 99 19 1 -37.040 -68.853 Argentina ; label 99 19 1 40.000 44.523 Armenia ; label 99 19 1 -26.636 123.997 Australia ; label 99 19 1 47.000 12.525 Austria ; label 99 19 1 40.700 46.223 Azerbaijan ; label 99 19 1 24.66 -75.73 Bahamas ; label 99 19 1 26.15 50.63 Bahrain ; label 99 19 1 21.80 89.60 Bangladesh ; label 99 19 1 13.10 -59.62 Barbados ; label 99 19 1 53.095 26.077 Belarus ; label 99 19 1 50.488 3.825 Belgium ; label 99 19 1 16.649 -88.864 Belize ; label 99 19 1 10.33 1.70 Benin ; label 99 19 1 27.78 89.90 Bhutan ; label 99 19 1 -21.000 -68.000 Bolivia ; label 99 19 1 44.202 17.368 Bosnia Herzegovina ; label 99 19 1 -22.43 22.00 Botswana ; label 99 19 1 -12.598 -57.941 Brazil ; label 99 19 -1 4.93 114.95 Brunei ; label 99 19 1 42.488 23.325 Bulgaria ; label 99 19 1 12.246 -3.806 Burkina Faso ; label 99 19 0 -3.37 29.35 Burundi ; label 99 19 1 12.419 103.067 Cambodia ; label 99 19 0 3.87 11.52 Cameroon ; label 99 19 1 57.182 -112.891 Canada ; label 99 19 -1 14.81 -24.72 Cape Verde ; label 99 19 0 7.31 18.29 Central African Republic ; label 99 19 1 14.392 16.330 Chad ; label 99 19 -1 -28.57 -70.76 Chile ; label 99 19 1 37.000 96.000 China ; label 99 19 1 2.793 -76.542 Colombia ; label 99 19 1 -11.40 43.28 Comoros ; label 99 19 1 -1.00 14.75 Congo ; label 99 19 1 9.549 -84.564 Costa Rica ; label 99 19 1 45.560 16.202 Croatia ; label 99 19 -1 21.80 -79.98 Cuba ; label 99 19 -1 34.67 33.050 Cyprus ; label 99 19 1 49.788 14.000 Czech Republic ; label 99 19 1 7.00 -7.000 Côte d'Ivoire ; label 99 19 1 -2.950 19.500 Democratic Republic of the Congo ; label 99 19 1 55.762 7.961 Denmark ; label 99 19 1 11.56 43.15 Djibouti ; label 99 19 1 19.80 -70.70 Dominican Republic ; label 99 19 1 15.50 -61.40 Dominica ; label 99 19 1 -8.90 126.36 East Timor ; label 99 19 -1 -2.21 -79.90 Ecuador ; label 99 19 1 26.00 26.00 Egypt ; label 99 19 1 13.300 -89.564 El Salvador ; label 99 19 1 1.87 9.76 Equatorial Guinea ; label 99 19 0 15.33 38.94 Eritrea ; label 99 19 -1 58.65 24.74 Estonia ; label 99 19 0 9.03 38.74 Ethiopia ; label 99 19 1 6.92 158.16 Federated States of Micronesia ; label 99 19 1 -17.500 179.000 Fiji ; label 99 19 1 62.143 23.165 Finland ; label 99 19 1 46.000 0.000 France ; label 99 19 1 -1.106 9.980 Gabon ; label 99 19 -1 13.20 -16.70 Gambia ; label 99 19 1 41.940 42.223 Georgia ; label 99 19 1 51.907 8.000 Germany ; label 99 19 1 4.89 -1.76 Ghana ; label 99 19 -1 37.50 21.75 Greece ; label 99 19 p 12.12 -61.67 Grenada ; label 99 19 1 15.000 -92.000 Guatemala ; label 99 19 -1 11.53 -16.50 Guinea Bissau ; label 99 19 -1 10.18 -14.05 Guinea ; label 99 19 1 5.580 -60.718 Guyana ; label 99 19 0 18.10 -73.75 Haiti ; label 99 19 1 14.400 -88.164 Honduras ; label 99 19 1 22.27 114.14 Hong Kong ; label 99 19 1 46.800 19.000 Hungary ; label 99 19 1 64.709 -20.878 Iceland ; label 99 19 1 20.738 73.796 India ; label 99 19 -1 -8.53 113.33 Indonesia ; label 99 19 1 32.321 51.533 Iran ; label 99 19 1 32.635 41.766 Iraq ; label 99 19 1 53.500 -9.500 Ireland ; label 99 19 -1 32.07 34.77 Israel ; label 99 19 1 42.653 11.359 Italy ; label 99 19 0 17.88 -77.59 Jamaica ; label 99 19 1 37.05 140.88 Japan ; label 99 19 1 31.95 35.93 Jordan ; label 99 19 1 48.064 61.203 Kazakhstan ; label 99 19 1 0.30 36.00 Kenya ; label 99 19 1 -2.50 175.97 Kiribati ; label 99 19 1 -2.87 -171.62 Kiribati ; label 99 19 1 1.33 172.99 Kiribati ; label 99 19 1 1.99 157.78 Kiribati ; label 99 19 1 29.33 47.98 Kuwait ; label 99 19 1 41.542 71.897 Kyrgyzstan ; label 99 19 1 19.805 101.071 Laos ; label 99 19 1 56.77 24.43 Latvia ; label 99 19 1 33.951 35.750 Lebanon ; label 99 19 1 -30.00 28.06 Lesotho ; label 99 19 -1 5.570 -9.700 Liberia ; label 99 19 1 26.328 15.204 Libya ; label 99 19 0 47.14 9.53 Liechtenstein ; label 99 19 -1 55.33 22.64 Lithuania ; label 99 19 1 49.628 6.000 Luxembourg ; label 99 19 -1 22.27 113.56 Macau ; label 99 19 1 41.389 20.693 Macedonia ; label 99 19 1 -18.89 47.51 Madagascar ; label 99 19 1 -13.97 33.80 Malawi ; label 99 19 1 3.336 102.406 Malaysia ; label 99 19 -1 4.05 72.72 Maldives ; label 99 19 1 17.500 -3.233 Mali ; label 99 19 1 35.188 14.462 Malta ; label 99 19 1 18.09 -15.98 Mauritania ; label 99 19 1 -20.25 57.75 Mauritius ; label 99 19 1 24.634 -106.300 Mexico ; label 99 19 1 47.217 28.446 Moldova ; label 99 19 1 45.796 99.959 Mongolia ; label 99 19 -1 32.60 -7.00 Morocco ; label 99 19 1 -18.468 33.378 Mozambique ; label 99 19 0 20.00 96.20 Myanmar (Burma) ; label 99 19 1 -21.77 13.96 Namibia ; label 99 19 1 -0.55 166.91 Nauru ; label 99 19 1 28.22 83.99 Nepal ; label 99 19 1 12.10 -68.93 Netherlands Antilles ; label 99 19 1 52.417 4.800 Netherlands ; label 99 19 1 -39.64 176.84 New Zealand ; label 99 19 1 12.649 -85.164 Nicaragua ; label 99 19 1 8.730 5.184 Nigeria ; label 99 19 1 16.419 7.204 Niger ; label 99 19 1 -19.05 -169.92 Niue ; label 99 19 1 39.141 126.231 North Korea ; label 99 19 1 61.143 5.165 Norway ; label 99 19 1 23.61 58.54 Oman ; label 99 19 1 28.251 64.504 Pakistan ; label 99 19 1 7.35 134.71 Palau ; label 99 19 1 7.649 -81.164 Panama ; label 99 19 1 -5.638 144.542 Papua New Guinea ; label 99 19 1 -23.00 -61.20 Paraguay ; label 99 19 1 -10.365 -78.174 Peru ; label 99 19 1 11.29 125.02 Philippines ; label 99 19 1 52.307 16.835 Poland ; label 99 19 -1 40.099 -8.116 Portugal ; label 99 19 0 17.98 -66.11 Puerto Rico ; label 99 19 1 25.055 51.241 Qatar ; label 99 19 1 45.940 23.223 Romania ; label 99 19 1 62.825 92.755 Russia ; label 99 19 0 -1.94 30.06 Rwanda ; label 99 19 1 -13.83 -171.76 Samoa ; label 99 19 1 21.059 42.621 Saudi Arabia ; label 99 19 1 43.643 20.038 Serbia ; label 99 19 1 -4.62 55.45 Seychelles ; label 99 19 -1 7.500 -12.500 Sierre Leone ; label 99 19 1 1.000 103.900 Singapore ; label 99 19 1 48.488 18.000 Slovakia ; label 99 19 1 45.800 14.200 Slovenia ; label 99 19 1 3.142 44.096 Somalia ; label 99 19 1 -31.429 20.874 South Africa ; label 99 19 1 36.141 127.231 South Korea ; label 99 19 1 39.125 -5.806 Spain ; label 99 19 1 7.41 81.82 Sri Lanka ; label 99 19 1 12.476 27.281 Sudan ; label 99 19 1 5.89 -56.32 Suriname ; label 99 19 1 -26.49 31.38 Swaziland ; label 99 19 1 61.143 13.165 Sweden ; label 99 19 1 46.602 7.068 Switzerland ; label 99 19 1 34.851 37.596 Syria ; label 99 19 -1 0.30 6.68 São Tomé & Principe ; label 99 19 0 14.73 -17.48 Sénégal ; label 99 19 1 37.943 71.523 Tajikistan ; label 99 19 1 -7.319 31.863 Tanzania ; label 99 19 1 15.368 99.374 Thailand ; label 99 19 1 6.17 1.35 Togo ; label 99 19 1 -1.029 165.122 Tonga ; label 99 19 1 10.66 -61.51 Trinidad & Tobago ; label 99 19 1 34.000 8.000 Tunisia ; label 99 19 1 38.543 32.232 Turkey ; label 99 19 1 38.626 55.320 Turkmenistan ; label 99 19 -1 -8.52 179.19 Tuvalu ; label 99 19 0 0.32 32.58 Uganda ; label 99 19 1 48.970 28.718 Ukraine ; label 99 19 0 53.96 -1.11 United Kingdom ; label 99 19 1 41.500 -115.000 United States of America ; label 99 19 1 24.48 54.37 United Arab Emirates ; label 99 19 1 -34.87 -56.17 Uruguay ; label 99 19 1 39.500 64.000 Uzbekistan ; label 99 19 -1 -17.74 168.31 Vanuatu ; label 99 19 1 6.991 -69.183 Venezuela ; label 99 19 1 13.77 108.00 Vietnam ; label 99 19 -1 24.30 -13.00 Western Sahara ; label 99 19 1 15.455 46.213 Yemen ; label 99 19 1 -14.677 25.456 Zambia ; label 99 19 1 -19.43 28.00 Zimbabwe ; label 99 20 1 -85.00 -4.00 Antarctica ; label 99 20 1 -7.37 72.50 British Indian Ocean Territory ; label 99 20 1 80.85 47.20 Franz Josef Land ; label 99 20 1 -49.30 51.22 French Austral and Antarctic Territories ; label 99 20 1 4.50 -52.25 French Guiana ; label 99 20 -1 -17.52 -149.58 French Polynesia ; label 99 20 1 75.480 -46.737 Greenland (Denmark) ; label 99 20 1 16.22 -61.49 Guadeloupe ; label 99 20 1 14.57 -60.98 Martinique ; label 99 20 1 -12.728 45.20 Mayotte ; label 99 20 1 -22.800 165.000 New Caledonia ; label 99 20 1 72.000 53.636 Novaya Zemlya ; label 99 20 0 -21.36 55.62 Réunion ; label 99 20 1 50.168 143.154 Sakhalin ; label 99 20 1 81.28 95.79 Severnaya Zemlya ; label 99 20 1 79.83 12.30 Svålbard (Norway) ; label 99 20 1 -43.00 147.80 Tasmania ; label 99 20 1 -9.39 -171.19 Tokelau ; label 99 21 0 60.100 19.940 Åland islands ; label 99 21 0 51.34 179.30 Aleutian Islands ; label 99 21 1 11.67 92.67 Andaman Islands ; label 99 21 -1 -1.41 5.61 Annobón Island ; label 99 21 1 19.40 145.24 Asunción Island ; label 99 21 1 38.66 -27.22 Açores Islands ; label 99 21 1 39.800 2.581 Balears ; label 99 21 1 32.37 -64.67 Bermuda ; label 99 21 1 -54.422 3.358 Bouvet Island ; label 99 21 1 28.760 -18.000 Canary Islands ; label 99 21 1 19.28 -81.39 Cayman Islands ; label 99 21 1 -44.06 -176.37 Chatham Islands ; label 99 21 -1 -12.12 96.85 Cocos Islands ; label 99 21 1 -21.20 -159.77 Cook Islands ; label 99 21 1 -18.000 150.000 Coral Sea Islands ; label 99 21 1 -27.16 -109.44 Easter Island ; label 99 21 1 -51.70 -57.82 Falkland Islands ; label 99 21 1 61.81 -6.67 Faroe Islands ; label 99 21 -1 -0.90 -89.61 Galápagos Islands ; label 99 21 1 -40.35 -9.95 Gough Island (Saint Helena) ; label 99 21 -1 13.56 144.93 Guam ; label 99 21 -1 21.32 -157.80 Hawaiian Islands ; label 99 21 1 -53.10 73.50 Heard Island ; label 99 21 1 49.400 -53.76 Island of Newfoundland ; label 99 21 -1 54.25 -4.50 Isle of Man ; label 99 21 1 70.90 -8.80 Jan Mayen Island ; label 99 21 1 16.75 -169.52 Johnston Atoll ; label 99 21 1 -24.37 -128.33 Juan Fernández Islands ; label 99 21 1 -30.20 -178.47 Kermadec Islands ; label 99 21 1 46.89 152.01 Kuril Islands ; label 99 21 1 -31.56 159.10 Lord Howe Island ; label 99 21 -1 32.65 -16.90 Madeira ; label 99 21 1 7.12 171.06 Marshall Islands ; label 99 21 1 -53.03 72.60 McDonald Island ; label 99 21 1 76.23 139.04 New Siberian Islands ; label 99 21 -1 7.00 93.75 Nicobar Islands ; label 99 21 1 -29.03 168.05 Norfolk Island ; label 99 21 1 15.20 145.75 Northern Mariana Islands ; label 99 21 1 -25.05 -130.10 Pitcairn Island ; label 99 21 1 46.24 -63.14 Prince Edward Island ; label 99 21 1 26.34 127.79 Ryukyu Islands ; label 99 21 -1 -15.92 -5.71 Saint Helena ; label 99 21 1 -7.95 -14.44 Saint Helena ; label 99 21 1 46.80 -56.20 Saint Pierre & Miquelon ; label 99 21 1 -8.16 159.62 Solomon Islands ; label 99 21 1 -54.24 -36.51 South Georgia ; label 99 21 1 -57.90 -26.29 South Sandwich Islands ; label 99 21 1 -17.560 -149.540 Tahiti ; label 99 21 1 -37.06 -12.295 Tristan da Cunha (Saint Helena) ; label 99 21 1 21.48 -71.15 Turks & Caicos Islands ; label 99 21 1 18.43 -64.44 Virgin Islands GB ; label 99 21 1 17.75 -64.71 Virgin Islands USA ; label 99 21 1 71.59 -179.000 Wrangel Island ; label 99 21 1 -46.43 51.86 Îles Crozet ; label 99 21 1 -49.35 70.26 Îles Kerguelen ; label 99 21 1 -9.79 -138.02 Îles Marquises ; label 99 21 1 -15.92 -145.21 Îles Tuamotu ; label 99 22 1 53.647 108.694 Lake Baikal ; label 99 23 1 80.824 129.745 Arctic Ocean ; label 99 23 1 81.287 -154.830 Arctic Ocean ; label 99 23 1 -18.000 75.000 Indian Ocean ; label 99 23 1 50.000 -35.000 North Atlantic Ocean ; label 99 23 1 35.000 180.000 North Pacific Ocean ; label 99 23 1 -45.000 -32.000 South Atlantic Ocean ; label 99 23 1 -35.000 -150.000 South Pacific\ ; label 99 24 1 15.834 60.853 Arabian Sea ; label 99 24 1 44.500 59.112 Aral Sea ; label 99 24 1 74.033 33.359 Barents Sea ; label 99 24 1 72.011 -140.541 Beaufort Sea ; label 99 24 1 43.000 31.000 Black Sea ; label 99 24 1 14.600 -78.235 Caribbean Sea ; label 99 24 1 42.40 50.00 Caspian Sea ; label 99 24 1 50.30 0.10 Channel ; label 99 24 1 69.358 -175.730 Chukchi Sea ; label 99 24 1 -16.000 154.00 Coral Sea ; label 99 24 1 73.290 157.146 East Siberian Sea ; label 99 24 1 77.290 -16.146 Greenland Sea ; label 99 24 1 72.689 61.000 Kara Sea ; label 99 24 1 54.235 -50.600 Labrador Sea ; label 99 24 1 76.689 118.854 Laptev Sea ; label 99 24 1 33.537 17.378 Mediterranean Sea ; label 99 24 1 56.051 2.517 North Sea ; label 99 24 1 68.033 0.000 Norwegian Sea ; label 99 24 1 53.891 145.000 Okhotsk Sea ; label 99 24 1 20.00 127.00 Philippines Sea ; label 99 24 1 19.50 38.00 Red Sea ; label 99 24 1 39.300 132.000 Sea of Japan ; label 99 24 1 10.115 109.651 South China Sea ; label 99 24 1 -41.50 156.00 Tasman Sea ; label 99 25 1 75.000 -63.600 Baffin Bay ; label 99 25 1 17.997 88.091 Bay of Bengal ; label 99 25 1 59.689 -86.854 Hudson Bay ; label 99 25 -1 2.00 0.00 Gulf of Guinea ; label 99 25 1 25.00 -93.00 Gulf of Mexico ; label 99 25 1 10.115 59.651 Persian Gulf ; label 99 26 1 64.790 -170.146 Bering Strait ; label 99 26 1 66.689 -58.854 Davis Strait ; label 99 26 1 -36.787 128.057 Great Australian Bight ; end sunclock-3.57/TODO0000644000000000000000000000036110113370065010643 0ustar TODO ==== - Implement a (Sunclocksaver , ~/.sunclocksaver) pair of config files for fancier screensaver functionality - Spherical representation of Earth - Moon phases - Adding other vector map formats (the xrmap data would be great...) sunclock-3.57/editkit/0000755000000000000000000000000011053561270011614 5ustar sunclock-3.57/editkit/edit.c0000644000000000000000000012267210501244214012710 0ustar /* edx/emx (EDitor for X), (C) 2002, Terry Loveall released into the public domain. Based upon the original work ee.c of Yijun Ding, copyright 1991 which is in the public domain. This program comes with no warranties or binaries. Use at your own risk. */ /* This is the core editor engine */ /* void prrec(U_REC* undp, char indicator) { char str[256]; if(undp == NULL) return; memset(str,0,256); memcpy(str, undp->str, undp->length >= 0 ? undp->length: 0 - undp->length); printf("%c:p=%x, l=%x, pos=%x, ln=%x, str=%s.\n", indicator, (unsigned int)undp, (unsigned int)undp->link + unbuf, (unsigned int)(undp->pos + edbuf), undp->length, str); } */ /* get true x co-ord for char at 'pos' */ int get_tru(char* pos) { char* tmpp; int i = 1; tmpp = line_start + strlen(line_start+1)+1; if(line_start > pos || tmpp < pos) { #ifdef DEBUG printf("Pos=%x, ls=%x, le=%x.\n", (unsigned int)pos, (unsigned int)line_start, (unsigned int)tmpp); #else printf("get_tru\n"); bell(); #endif /* DEBUG */ return 0; } for(tmpp = line_start+1; tmpp < pos; tmpp++){ if(*tmpp != '\t') {i++;} else { i = i + ((tabsize) - ((i-1)%tabsize)); } } return(i); } char* get_cur() { return(line_start+x_offset); } char * realloc_buffer(int mode) { char *ptr; int i; switch(mode) { case 0: { i = amax+AMAX+tabsize+1; if (i<0) return NULL; ptr = realloc(edbuf, (size_t)i); if (ptr) { amax += AMAX; i = ptr - edbuf; edbuf += i; file_end += i; cur_pos += i; line_start += i; last_pos += i; old_pos += i; screen_start += i; mk += i; bstart += i; bend += i; if (last_mk) last_mk += i; } return ptr; } case 1: { i = bmax+BMAX+tabsize+1; if (i<0) return NULL; ptr = realloc(bb, (size_t)i); if (ptr) { bmax += BMAX; bb = ptr; } return ptr; } case 2: { i = umax+UMAX+1; if (i<0) return NULL; ptr = realloc(unbuf, (size_t)i); if (ptr) { umax += UMAX; i = (int)ptr - (int)unbuf; unbuf = ptr; undop = (void*)undop+i; undosp = (void*)undosp+i; } return ptr; } } return NULL; } void init_undo() { undosp = undop = unbuf; undop->link = VOID_LINK; undop->pos = cur_pos - edbuf -1; undop->length = 0; } U_REC* new_undo(char *pos, int len) { U_REC *tmp; int tlen = abs(undosp->length); retry: /* wrap undo pointer if no space for requested len in undo buffer */ if ((void *)undosp->str + tlen + sizeof(U_REC) + len < unbuf + umax) { tmp = (void *) undosp->str + tlen; } else { if (realloc_buffer(2)) goto retry; tmp = (void *) unbuf; } tmp->link = (unsigned int)undosp - (unsigned int)unbuf; tmp->pos = pos - edbuf; tmp->length = 0; return tmp; } void u_del(char *pos, int len) { if(!undosp) init_undo(); if(!undosp->length) undosp->pos = pos - edbuf; /* get new_undo if top rec is u_ins, or different pos or no space */ if((undosp->length > 0) || ( undosp->pos + edbuf - undosp->length != pos) || /* stack only del not bs */ ( (void*)undosp->str - undosp->length + abs(len) >= unbuf + umax )) { undosp = new_undo(pos, abs(len)); if(undosp == unbuf) undo_wrap--; /* say undo wrapped */ } if(len) memcpy(undosp->str + abs(undosp->length), pos, len); undosp->length = undosp->length - len; if(!in_undo) { undop = undosp; undone = 0;} } void u_ins(char *pos, int len) { int tlen; if(!undosp) init_undo(); if(!undosp->length) undosp->pos = pos - edbuf; /* get new_undo if top rec is u_del, or different pos or no space */ if((undosp->length < 0) || /* stack only left to right insertions */ ( undosp->pos + edbuf + undosp->length != pos ) || ( (void *)undosp->str + undosp->length + abs(len) >= unbuf + umax )) { undosp = new_undo(pos, abs(len)); if(undosp == unbuf) undo_wrap--; /* say undo wrapped */ } tlen = abs(undosp->length); if(len) memcpy(undosp->str + tlen, pos, len); undosp->length = tlen + len; if(!in_undo) { undop = undosp; undone = 0;} } void ytot_ins() { char* e; for(e=undop->pos+edbuf; epos+edbuf + abs(undop->length); e++) if(*e == EOL) ytot++; } void undo() { /* dont undo nothing, but say nothing is unchanged */ if(undone) { bell(); return; } if(undop != undosp) { if (undop->link == VOID_LINK) undop = unbuf; else undop = undop->link + unbuf; } in_undo++; goto_ptr(undop->pos + edbuf); if(undop->length < 0) { /* is delete so insert */ /* delete flag is negative length */ file_resize(undop->pos + edbuf, undop->pos + edbuf - undop->length); memcpy(undop->pos + edbuf, undop->str, - undop->length); u_ins(undop->pos + edbuf, - undop->length); ytot_ins(); /* adjust ytot when inserting */ } else { /* is insert so delete */ file_resize(undop->pos + edbuf + undop->length, undop->pos + edbuf); } goto_ptr(undop->pos + edbuf); if(undop->link==VOID_LINK) { undone = -1; flag[CHG] = 0; show_top(); } in_undo--; flag[SHW] = 1; } void redo() { /* dont redo nothing */ if(undop == undosp) { bell(); return; } in_undo++; goto_ptr(undop->pos + edbuf); if(undop->length > 0) { /* is insert so insert */ file_resize(undop->pos + edbuf, undop->pos + edbuf + undop->length); memcpy(undop->pos + edbuf, undop->str, undop->length); u_ins(undop->pos + edbuf, undop->length); ytot_ins(); /* adjust ytot when inserting */ } else { /* is delete< so delete */ file_resize(undop->pos + edbuf - undop->length, undop->pos + edbuf); } goto_ptr(undop->pos + edbuf); undop = (void*)undop->str + abs(undosp->length); undone = 0; in_undo--; flag[SHW] = 1; } void sys_exit(int code) { if(!(flag[CHG]) || code==2) { /* watch where you're goin', clean up where you been */ #ifdef X11 if(selection_text) free(selection_text); #endif if(cfdpath) free(cfdpath); #ifdef X11 exit(code&1); #else gotoxy(0,0); ttclose(); exitf = 0; /* printf("\033c"); */ /* reset terminal */ /* printf("\033[2J"); */ /* clear screen */ clrscr(); return; #endif } bell(); } void goto_xpos() { goto_x(x_offset < strlen(line_start+1)+1 ? x_offset : strlen(line_start+1)+1); } /* cursor movement */ void cursor_up() { if(flag[BLK]) flag[SHW] = 1; if(ytru == 0) return; ytru--; while(*--line_start != EOL) ; y--; goto_xpos(); } void cursor_down() { if(flag[BLK]) flag[SHW] = 1; if(ytru == ytot) return; ytru++; while(*++line_start != EOL) ; y++; goto_xpos(); } void move_to(int newx, int newy) { int old; if (newy < 0) return; if (file_end==edbuf+1) return; if((y == newy && x == newx) || (executive != MAIN)) return; while((y < newy) && (ytru < ytot)) cursor_down(); while((y > newy) && (ytru > 0)) cursor_up(); if(line_start[x_offset] == EOL) cursor_left(); /* detect impossible to achieve x pos within tabs */ old = xtru - newx; while((old > 0 ? xtru > newx : xtru < newx) && (*cur_pos != EOL)){ xtru < newx ? cursor_right() : cursor_left(); } } void getx() { xtru = get_tru(cur_pos); x_offset = cur_pos - line_start; x = xtru - xlo; } /* cursor left & right */ void cursor_left() { if (cur_pos == edbuf+1) return; if(xtru == 1) { cursor_up(); goto_x(strlen(line_start+1)+1); return; } if(flag[BLK]) flag[SHW] = 1; if( x == 1 && xlo != 0){ xlo -= XINC; flag[SHW] = 1; } --cur_pos; getx(); } void cursor_right() { if (cur_pos == file_end) return; if(flag[BLK]) flag[SHW] = 1; if(*cur_pos == EOL || xtru >= LMAX) { goto_x(1); cursor_down(); return; } if(x == screen_width-1) { xlo += XINC; flag[SHW] = 1; } ++cur_pos; getx(); } void cursor_pageup() { int i,ytmp=y; for(i=1; iytot+y-screen_height) break; cursor_down(); } y = ytmp; flag[SHW] = 1; } void word_left() { char *d = cur_pos; if(d[-1] == EOL) { /* at bol */ if(ytru == 0) return; /* don't backup past start */ cursor_up(); goto_x(strlen(line_start+1)+1); /* goto end of line */ cursor_right(); return; } /* skip white space separators */ while(strchr(wdelims,d[-1])) { d--; cursor_left(); } /* skip real chars */ while(!strchr(wdelims,d[-1])) { d--; cursor_left(); } } void word_right() { char *d = cur_pos; if(*d == EOL) { /* at eol */ if(ytru >= ytot) return; /* don't go past end */ cursor_down(); goto_x(1); /* goto start of line */ return; } /* skip first delimitor if any */ if (strchr(wdelims,*d)) { d++; cursor_right(); } /* skip real chars */ while(!strchr(wdelims,*d)) { d++; cursor_right(); } /* skip white space separators JPD changed the behaviour there - avoiding in particular a crash when reaching the last word. */ #ifdef TLL while(strchr(wdelims,*d)) { d++; cursor_right(); } #else while(isspace(*d)) { d++; cursor_right(); } #endif } void word_mark() { if(cur_pos[0] <= BLNK) return; /* don't mark nothing */ mark_off(); if(!strchr(wdelims,cur_pos[-1])) word_left(); block_mark(); while(!strchr(wdelims,*cur_pos)) cursor_right(); #ifdef X11 keve->state |= ShiftMask; #endif } /* display --------------------------------------------------------*/ /* assuming cursor in correct position: show_rest(screen_width-x,line_start+x_offset) */ void drstr(char* disp, int i) { #ifdef X11 drawstring(disp,i); #else disp[i] = 0; cputs(disp); #endif outxy.X += i; } void show_rest(int len, char *s) { char *ss; char disp[MAXVLINE]; int i,j,k=0,xlt=xlo; ss = s; i = 0; if(flag[BLK]) { if(cur_pos < mk) { bstart = cur_pos; bend = mk; } else { bstart = mk; bend = cur_pos; } if ((ss >= bstart) && (ss < bend)) highvideo(); } while(*ss != EOL && i < MAXVLINE) { if(flag[BLK]) { if ((ss == bstart)) { drstr(disp+xlo,i-xlo); k += i; xlo=i=0; highvideo(); } if ((ss == bend)) { drstr(disp+xlo,i-xlo); k += i; xlo=i=0; lowvideo(); } } if(*ss == '\t') { for(j = i +(tabsize - (k+i)%tabsize); i edbuf && *--screen_start != EOL) ; for(; i>y; i--) while(*++screen_start != EOL) ; /* first line */ screen_start++; do { gotoxy(0,fr+yl2); if(screen_start xlo) { #ifndef X11 clreol(); #endif show_rest(len, screen_start); } else { if(((flag[BLK]) && (screen_start == bend)) || (screen_start == bend+1)) lowvideo(); clreol(); } /* skip EOL */ while(*screen_start++) ; #ifdef X11 } while(++fr <= to); #else } while(++fr < to); #endif } void scroll_up() { if(!y) cursor_down(); y--; flag[SHW] = 1; } void scroll_down() { if(line_start <= edbuf) return; if(ytru <= y) return; if(y >= screen_height-1) cursor_up(); y++; flag[SHW] = 1; } /* undraw, redraw status and display */ void scr_update() { #ifdef X11 if(executive != MAIN && !expose) return; undraw_cursor(); #else if(executive != MAIN) return; #endif /* update text buffer display */ if( flag[BLK] ) flag[SHW] = 1; if(y <= -1 || y >= screen_height) { if(y == -1) { y++; show_sdn(0); } else if(y == screen_height) { y--; show_sdn(0); } else { y = y < 0 ? 0 : screen_height-1; show_scr(0, screen_height-1); } } else if(flag[SHW] ) { show_scr(0, screen_height-1); } flag[SHW] = 0; #ifdef X11 if (help_done) return; #endif show_pos(); lowvideo(); gotoxy(x-1,y+yl2); #ifdef X11 show_vbar(); draw_cursor(); #endif } void show_sdn(int line) { gotoxy(0,yl2+line); show_scr(0, screen_height-1); } void show_flag(int x, int g) { gotoxy(20+x-1,yl1); putch(g? fsym[x]: '.'); flag[x] = g; } /* simple minded line input executive for status line dialogs. Successful completion, indicated by a Return key, executes the callback in dialogCB. Responds to 'Esc' and ^C by terminating without executing the callback. Printing first char resets Col. Use ^H to overwrite preset string, 'End' displays cursor to EOS. All other characters input to diabuf. Set by 'show_gets'. */ void dialog(int key) { int skey; #ifdef X11 undraw_cursor(); gotoxy(diastart+col,yl1); skey = key & 0xff; if(keve->state & ControlMask) skey &= 0x1f; /* special controls for search&replace Y/N/Esc/! */ if (dialogCB == do_sar) { switch(tolower(skey)) { case 27: search_mode = 2; break; case 'n': search_mode = 3; break; case 10: case 13: case 'y': search_mode = 4; break; case '!': search_mode = 5; break; default: search_mode = 6; break; } do_sar(); first = key; return; } if(key == XK_End) { while((diabuf[col]!=0) && (col= edbuf+amax) { d = file_end - col; realloc_buffer(0); col = file_end - d; } } while(file_end < edbuf+amax); for(; ewin.jump>1; ewin.jump--) cursor_down(); } /* compress one line from end */ char *file_ltab(char *s) { char *d, *e; e = d = strchr(s--, EOL); while(*--e == BLNK) ; /* trailing blank */ while(e > s) { if(e[0] == BLNK && (e-s)%tabsize == 0 && e[-1] == BLNK) { *--d = 9; while(*--e == BLNK && (e-s)%tabsize != 0) ; } else *--d = *e--; } return d; } /* routine used for write block file also, this makes it more complicated */ int file_write(FILE *fp, char *s, char *e) { if(fp == 0) return 1; /* no write */ do { if(flag[TAB] && *s != EOL) s = file_ltab(s); if(*s && fputs(s, fp) < 0) return 1; fputc(LF, fp); while(*s++ != EOL) ; } while(s < e); return 0; } int file_fout() { if(fo == 0) { strcpy(bbuf, ewin.name); strcat(bbuf, "XXXXXX"); close(mkstemp(bbuf)); fo=fopen(bbuf, "w"); } if (!flag[NEW]) { fchmod(fileno(fo), ofstat.st_mode & 07777); } return file_write(fo, edbuf+1, file_end); } void do_save() { char bakfile[NLEN+1]; /* prompt on empty filename */ if((ewin.name[0] == 0)) { file_save(-1,0); return; } executive=MAIN; if(file_fout() ) { return; /* exit if can't write output */ } fclose(fo); fo = 0; /* set fo to known condition */ /* if editing old file then delete old file */ if (flag[NEW] == 0) { strcpy(bakfile, ewin.name); strcat(bakfile, "~"); unlink(bakfile); rename(ewin.name, bakfile); #ifdef MINIMAL unlink(bakfile); #endif } rename(bbuf, ewin.name); /* ren new temp to old name */ #ifdef X11 set_title(ewin.name); #endif flag[CHG] = 0; show_top(); } /* go to top of file and reset to known condition */ void top() { yl1 = YTOP; yl2 = yl1+1; line_start = edbuf; x_offset = 1; xtru = x = 1; ytru = y = 0; flag[SHW] = 1; } /* new file init */ char *file_new() { clrscr(); top(); edbuf[0] = EOL; last_pos = edbuf; file_end = edbuf+1; ytot = 0; flag[NEW] = 0; mark_off(); last_mk = NULL; if((fi = fopen(ewin.name, "r")) == 0) flag[NEW]++; else fstat(fileno(fi), &ofstat); return(file_end); } /* exec the forking cmd */ int SYSTEM (char *cmd) { #define SHELL "/bin/sh" pid_t pid; switch(pid=fork()) { case 0: execl(SHELL,"sh","-c",cmd,(char *) 0); printf(EXECL_FAILED"\n"); _exit(127); case -1: printf(FORK_ERROR"\n"); default: return(0); } } void gorun() { SYSTEM(Command); } #ifdef MINIMAL /* chdir to working directory and fire up rxvt */ void mterm() { char b[1024]; sprintf(b,"cd %s;rxvt -font 8x16 -ls -sl 500 -sr +st -geometry 96x28 &", cfdpath ? cfdpath : "./"); SYSTEM(b); } #else void launch_edit() { if (*diabuf) new_edit(diabuf); free(diabuf); } void req_edit() { diabuf = malloc(NLEN+1); *diabuf = '\0'; show_gets(OPEN, diabuf, NLEN, &launch_edit); return; } #endif /* MINIMAL */ void do_cd() { chdir(cfdpath); } void chgdir() { show_gets("cd", cfdpath, BUFSIZ, do_cd); } void do_open() { file_read(); #ifdef X11 set_title(ewin.name); #endif executive=MAIN; } void file_save(int f_all, int f_win) { if (!flag[EDT]) return; if(((flag[CHG]) | f_all) || f_win==-1) { show_gets(SAVE_AS, ewin.name, sizeof(ewin.name), &do_save); return; } /* optionally make new empty file */ if(f_win==1) { show_gets(OPEN, ewin.name, sizeof(ewin.name), &do_open); } } /* main editor workhorse. Inserts/deletes specified source/destination */ void file_resize(char *s, char *d) { char *e; unsigned int i; int s_rel = s - edbuf; int d_rel = d - edbuf; /* immediate problem only when block buffer on disk too big */ i = file_end - s; file_end += d-s; retry: if(file_end>= edbuf+amax) { if (realloc_buffer(0)) { s = edbuf + s_rel; d = edbuf + d_rel; goto retry; } show_note(MAIN_BUFFER_FULL); bell(); return; } e = s+i; if(s < d) { /* expand */ d += e - s; s = e; while(i-- > 0) *--d = *--s; } else { u_del(d, s - d); /* save undo delete string */ /* adjust ytot when shrink */ for(e=d; e 0) *d++ = *s++; } *file_end = EOL; /* last line may not complete */ if(!flag[CHG] ) { show_flag(CHG, 1); gotoxy(x-1,y+yl2); clreol(); } } /* search and goto */ /* xx >= 1, yy >= 0 */ void goto_x(int xx) { cur_pos = line_start + xx; if (cur_pos>file_end) cur_pos=file_end; xtru = get_tru(cur_pos); if(!xtru) cur_pos--; x_offset = cur_pos - line_start; xx = xlo; if(xtru == 1) xlo = 0; if(xtru-xlo >= screen_width) xlo = ((xtru + XINC - screen_width)/XINC) * XINC; x = xtru - xlo; if (xlo!= xx) flag[SHW]=1; } void goto_y(int yy) { int i, n; n = ytru; for(i=n; i screen_height || y < 0) { flag[SHW] = 1; y = screen_height/4; } } void goto_ptr(char *s) { /* find line_start <= s */ char *s1 = s; int yo = y; if(s < edbuf || s >= edbuf + amax) { bell(); return; } top(); while(*--s1 != EOL && s1 > edbuf) ; /* find start of target line */ while(line_start+1 <= s1 && y < ytot) cursor_down();/* move to target line */ while(line_start+1 > s && y > 0) cursor_up(); /* move back before target */ goto_x(s-line_start); /* get x from line start */ if(y > screen_height || xlo != 0) { flag[SHW] = 1; y = yo; } } void goline() { goto_y(atoi(lbuf)-1); } void goto_last() { goto_ptr(last_pos); cursor_down(); } void goto_line() { show_gets(GOTO_LINE, lbuf, sizeof(lbuf), goline); } void switch_marks() { char *c; if (!last_mk || last_mk>=file_end) return; c = cur_pos; goto_ptr(last_mk); last_mk = c; if (mk) mk = last_mk; } void run() { show_gets(COMMAND, Command, sizeof(Command), gorun); } void gocol() { goto_x(atoi(cbuf) ); } void goto_col() { show_gets(GOTO_COLUMN, cbuf, sizeof(cbuf), gocol); } /* find and set cursor to matching bracket '(,{,[,],},)' */ void find_match() { char *s = cur_pos; int dire, cnt; char ch, mch; if (!s) return; ch = *s; switch (ch) { case '(': mch = ')'; dire = 0; break; case ')': mch = '('; dire = 1; break; case '[': mch = ']'; dire = 0; break; case ']': mch = '['; dire = 1; break; case '{': mch = '}'; dire = 0; break; case '}': mch = '{'; dire = 1; break; default: return; } cnt = 0; if (dire) { while (--s >= edbuf) { if (*s == ch) cnt++; else if (*s == mch) { if (!cnt) goto match; cnt--; } } } else { while (++s < file_end) { if (*s == ch) cnt++; else if (*s == mch) { if (!cnt) goto match; cnt--; } } } return; match: goto_ptr(s); flag[SHW]=1; } /* compare to sbuf. used by search */ int str_cmp(char *s) { char *d = sbuf; if(flag[CAS] ) { while(*d ) if(*s++ != *d++ ) return 1; } else { while(*d ) if(tolower(*s++) != tolower(*d++)) return 1; } return 0; } /* back/forward search */ char *goto_find(char *s, int back) { mark_off(); do { if(back) { if(--s <= edbuf) { bell(); return 0; } } else { if(++s >= file_end) { bell(); return 0; } } } while(str_cmp(s) ); goto_ptr(s); block_mark(); mk += strlen(sbuf); return s; } void gofindforward() { goto_find(cur_pos, 0); } void gofindbackward() { goto_find(cur_pos, 1); } void get_mk(char* dbuf) { if(strchr(sdelims,*cur_pos) && !flag[BLK]) return; memset(dbuf,0,NLEN * sizeof(char)); if(!flag[BLK]) word_mark(); if(flag[BLK] && (mk != cur_pos) && (abs(cur_pos - mk) < NLEN)){ memcpy(dbuf, mk < cur_pos ? mk : cur_pos, abs(cur_pos - mk)); } } char *goto_search(int back) { if (back) --cur_pos; get_mk(sbuf); if (back) ++cur_pos; search_mode = back; show_gets(SEARCH_FOR, sbuf, sizeof(sbuf), (back)? gofindbackward:gofindforward); return NULL; } void do_sar() { int i; char *sb; if (search_mode<=2) { executive = MAIN; flag[SHW] = 1; #ifdef X11 free(comment); #endif scr_update(); show_top(); return; } repl_again: if (search_mode==4 || search_mode==5) { rlen = strlen(rbuf); do { file_resize(s+slen, s); /* delete srch string&save undo data */ file_resize(s, s+rlen); /* insert space for replace string */ memcpy(s, rbuf, rlen); u_ins(s, rlen); /* add replace string to undo buf */ s = s+rlen; } while(flag[ALL] && (s=goto_find(s, 0)) != 0) ; flag[SHW] = 1; } if (search_mode==6) return; if((s =(char*) goto_find(cur_pos,0))) { slen = strlen(sbuf); show_scr(0, screen_height-1); gotoxy(x-1,y+yl2); highvideo(); i = slen; sb = s; while(i-- && !putch(*sb++)); lowvideo(); if (search_mode==5) goto repl_again; } else { search_mode = 2; do_sar(); } } void ask_replace() { #ifdef X11 comment = malloc(2*NLEN); #else char comment[2*NLEN]; #endif search_mode = 3; word_left(); --cur_pos; do_sar(); if (search_mode == 2) return; sprintf(comment, ASK_REPLACE, rbuf); show_gets(comment, "", 2*NLEN-1, do_sar); } void replace_with() { show_gets(REPLACE_WITH, rbuf, sizeof(rbuf), ask_replace); } void goto_replace() { get_mk(sbuf); show_gets(SAR_FOR, sbuf, sizeof(sbuf), replace_with); } void gettab() { tabsize = atoi(twbuf); } void tab_size() { show_gets(TAB_SIZE,twbuf, sizeof(twbuf), gettab); } void getmarg() { screen_width = atoi(wbuf); flag[SHW]++; } void window_size() { show_gets(WRAP_COL, wbuf, sizeof(wbuf), getmarg); } /* block and format ---*/ /* use blen, mk, bb */ void mark_off() { mk = NULL; flag[BLK] = 0; flag[SHW] = 1; show_top(); } void reset_mark() { if (!last_mk) return; flag[BLK] = 1; mk = last_mk; } void block_mark() { if( mk == NULL ) { mk = cur_pos; last_mk = mk; flag[BLK] = 1; show_top(); } else mark_off(); } void block_put() { while (blen >= bmax && realloc_buffer(1)); if (blen < bmax) memcpy(bb, mk, blen); else { if(fb == 0 && (fb = tmpfile()) == 0) return; fseek(fb, 0L, 0); fwrite(mk, 1, blen, fb); } } void block_get() { int i; while (mk+blen >= edbuf+amax && realloc_buffer(0)); if (mk+blen < edbuf+amax) memcpy(mk, bb, blen); else { if(fb == 0) return; fseek(fb, 0L, 0); /* 0L offset, 0=beginning of file */ fread(mk, 1, blen, fb); } /* calculate ytot */ for(i=0; i= mk */ s = cur_pos ; /* swap cur_pos & mk */ cur_pos = mk ; mk = s ; } s = cur_pos; goto_ptr(mk); /* delete block and save to undo buf */ file_resize(s, mk); cur_pos = mk; } void block_remove_update() { remove_block(); mark_off(); } void chg_case(int upper) { char *s; int i, j, change=0; if(!flag[BLK]) return; /* exit if no mark */ if(cur_pos < mk) { /* ensure cur_pos >= mk */ s = cur_pos ; /* swap cur_pos & mk */ cur_pos = mk ; mk = s ; goto_ptr(cur_pos); } i = j = cur_pos+1 - mk; /* get length */ /* detect whether there is any change */ while(j--) if (mk[j] != (!upper)? tolower(mk[j]) : toupper(mk[j])) { change = 1; break; } if (!change) return; u_del(mk, i-1); /* save undo data enmasse */ /* printf("mk=%x, i=%d.\n",mk,i); */ while(i--) mk[i] = !upper ? tolower(mk[i]) : toupper(mk[i]); u_ins(mk, cur_pos - mk); flag[CHG] = 1; flag[SHW] = 1; } void transpose() { char c; if (cur_pos && cur_pos>edbuf+1 && cur_pos= mk */ s = cur_pos ; /* swap cur_pos & mk */ cur_pos = mk ; mk = s ; } blen = cur_pos - mk; /* get length */ block_put(); /* copy block to buffer */ if(delete) { block_remove_update(); return; } mark_off(); } void block_paste() { if(!blen) return; /* dont paste nothing */ if(flag[BLK]) block_remove_update(); /* delete marked block */ file_resize(cur_pos, cur_pos+blen); mk = cur_pos; block_get(); /* save to undo buf */ u_ins(mk - 1, blen); goto_ptr(mk + blen); mark_off(); } /* read file into cursor position */ void doblockr() { char *bb_end; int c, d; char *col; if(!(fb = fopen(fbuf, "r"))) { bell(); return; }; fseek(fb, 0L, 2); /* seek to 0L offset, 2=end of file */ blen=ftell(fb); /* get file length */ fseek(fb, 0L, 0); /* seek back to file start */ bb_end = col = bb; /* read complete file */ do { c = fgetc(fb); if(c == EOF) { fclose(fb); fb = 0; /* no more read */ break; } if(c == '\t' && flag[TAB]) { do (*bb_end++ = BLNK); while( ((bb_end-col) % tabsize) != 0); } else if(c == LF) { *bb_end++ = EOL; col = bb_end; } else *bb_end++ = c; if (bb_end >= bb+bmax) { d = (int)bb; realloc_buffer(1); d = (int)bb - d; col += d; bb_end += d; } } while(bb_end < bb+bmax); blen = bb_end - bb; block_paste(); } void block_read() { show_gets(READ_FILE, fbuf, sizeof(fbuf), doblockr); } /* copy block to file, not to block buffer */ void doblockw() { FILE *fp; show_flag(TAB, 0); fp = fopen(fbuf, "w"); file_write(fp, bstart, bend); fclose(fp); show_top(); } void block_write() { if (!flag[EDT]) return; if(!flag[BLK]) return; if(cur_pos < mk) { bstart = cur_pos; bend = mk; } else { bstart = mk; bend = cur_pos; } show_gets(WRITE_FILE, fbuf, sizeof(fbuf), (void*) doblockw); } /* fill current line; does not change cursor or file len */ int block_fill() { int i=screen_width; while(line_start[--i] > BLNK) ; if(i == 0) i = screen_width-1; u_del(&line_start[i],1); line_start[i] = EOL; u_ins(&line_start[i],1); ytot++; cursor_down(); goto_x(1); goto_x(strlen(line_start+1)+1); flag[CHG] = 1; return i; } #ifdef JUSTIFY /* right justify a line : enlarge from oldlen to newlen by adding blank chars at suitable places, preferably after punctuation signs */ void justify_line(char *newline, int newlen, char *oldline, int oldlen) { int added, i, j, k, l, num=0, npunct=0, quot, rem, suppl; added = newlen - oldlen; if (added <= 0) { strncpy(newline, oldline, newlen); return; } /* Count the number of punctuation signs. Justify routine is smart: it attempts to increase spaces after punctuation marks rather than in random places */ for (i=0; i < oldlen; i++) { if (isspace(oldline[i])) { num++; if (i && ispunct(oldline[i-1])) ++npunct; } } if (!num) return; quot = added / num; rem = added % num; if (rem >= npunct) { rem = rem - npunct; suppl = 1; } else suppl = 0; j = 0; for (i=0; i < oldlen; i++) { newline[j] = oldline[i]; j++; k = 0; if (isspace(oldline[i])) { k = quot; if ( i > 0 && ispunct(oldline[i-1])) { if (suppl || rem>0) { ++k; if (!suppl) --rem; } } else if (suppl && rem>0) { ++k; --rem; } } for (l=0; l maxlen-2 || !line) { maxlen = j+2; line = realloc(line, maxlen); } nret = 2; if (*s==EOL || isspace(*s)) { sp = s; while (nret && sp=length || !nret) { if (l+j+length+xtmp>parlen-2) { parlen = l+j+length+xtmp+2; newpar = realloc(newpar, parlen); } for (k=0; klength) { --s; while(!isspace(*s)&& *s!=EOL) --s; sp = s+1; nret = 2; } } newpar[l++] = EOL; j = 0; pb = -1; } else { pb = j; ++j; } if (!nret) goto finish; s = sp; } else { line[j] = *s; ++j; ++s; } goto iter; finish: --l; while (*s==EOL || isspace(*s)) --s; ++s; /* store data only if a change occurred */ if (l!=s-last_mk || memcmp(last_mk, newpar, l)) { k = flag[OVR]; cur_pos = s; flag[BLK] = 1; flag[OVR] = 0; remove_block(); goto_ptr(last_mk); for (j=0; j= screen_width) block_fill(); /* goto end of line */ while(line_start[x_offset] ) cursor_right(); show_top(); if( flag[SHW] == 0) show_scr(ytmp, screen_height); } #endif /* key actions ---*/ void key_deleol(char *s) { if(ytru == ytot) return; if(flag[BLK]) { block_remove_update(); /* delete marked block */ return; } goto_ptr(s); /* delete eol and save to undo buf */ file_resize(s+1, s); flag[SHW]=1; } /* delete char under cursor */ void key_delete() { char *s=cur_pos; if(flag[BLK]) { block_remove_update(); return; } else if( *s == EOL) { key_deleol(s); return; } /* delete cursor char and save to undo buf */ file_resize(s+1, s); show_rest(screen_width-x, s); } /* delete char before cursor */ void key_backspace() { char *s=cur_pos; if(flag[BLK]) { block_remove_update(); return; } if(*--s == EOL) { /* delete EOL */ if(ytru == 0) return; cursor_up(); goto_x(strlen(line_start+1)+1); key_deleol(s); return; } cursor_left(); key_delete(); flag[SHW]=1; } /* delete non-white string + white-space string */ void key_delword(int eol) { char *d=cur_pos; if(flag[BLK]) { block_remove_update(); return; } if(*d == EOL) { blen = 1; mk = d; block_put(); key_deleol(d); return; } if(eol) while(*d != EOL) d++; else { while(!strchr(sdelims,*d) && *d != EOL) d++; while(strchr(s1delims,*d) && *d != EOL) d++; } mk = cur_pos; blen = d-mk; block_put(); /* delete word and save to undo buf */ file_resize(d, cur_pos); flag[SHW]=1; } /* insert tab char */ void key_tab(int tabi) { if(flag[BLK]) { key_delete(); } if(flag[TAB]){ do key_normal(BLNK); while((xtru%tabsize) != 1 && *cur_pos != EOL); } else { key_normal('\t'); } } /* insert newline, increase line count */ void key_return() { char *s = cur_pos; /* reset marked block on char entry */ /* JPD: disable this behaviour ! if(flag[BLK]) { key_delete(); s = cur_pos; } else */ if(flag[OVR] ) { cursor_down(); goto_x(1); return; } file_resize(s, s+1); goto_x(1); *s = EOL; /* save newly inserted EOL to undo buf */ u_ins(s, 1); ytot++; /* get prev line_start */ s = line_start+1; cursor_down(); goto_x(1); /* ensure visible cursor */ if(flag[IND]) { int i=0; /* count spaces and tabs */ while(s[i] == BLNK || s[i] == '\t') i++; if(i){ /* and only if */ file_resize(line_start+1, line_start+1+i); memcpy(line_start+1,s, sizeof(char) * i); /* save undo info */ u_ins(line_start+1, i); x_offset += i; goto_x(i+1); } } flag[SHW]=1; } /* everything ASCII else */ void key_normal(int key) { char *s=line_start+x_offset; int xtmp; /* reset marked block on char entry */ if(flag[BLK]) { key_delete(); s = cur_pos; } if(flag[OVR] && *s != EOL) { /* save old overwrite char to undo buf */ u_del(s, 1); putch(*s = key); flag[CHG] = 1; } else { file_resize(s, s+1); *s = key; flag[SHW] =1 ; } cursor_right(); /* save new overwrite/insert char to undo buf */ u_ins(s, 1); if(!flag[FIL] || xtru < screen_width) return; xtmp = block_fill(); /* cursor_down */ } /* simple, aint it? */ void rec_macro(int k) { if(k & 0xff00) bell(); /* beep&discard non ASCII, ie func keys */ else /* else record key */ #ifdef X11 *pmbuf++ = keve->state & ControlMask ? k & 0x1f: k; #else *pmbuf++ = k; #endif } /* turn on macro recording or play back macro */ void key_macros(int record) { char *s=mbuf; int k; if(!record) { /* play macro back */ if(*s == 0) { bell(); return; }; /* ding user on empty mbuf */ doCtrlX = 0; /* turn off control key state from ^K */ #ifdef X11 keve->state = 0; /* turn off control key state from ^P */ #endif while(*s != 0) { k = 255 & *s++; switch(executive) { case MAIN: main_exec(k); break; case DIALOG: dialog(k); break; case OPTIONS: options(k); break; } } flag[SHW] = 1; return; } /* else toggle recording on/off */ flag[REC] ^= 1; show_top(); if(!flag[REC]) { /* terminal condition */ pmbuf[-2] = 0; /* backup over ^K^M & terminate macro with a 0x0 */ pmbuf = mbuf; /* reset record pointer to start of mbuf */ } } #ifdef GREEK void key_greek(int key) { unsigned char c; char *seq = NULL; int i, l; c = key | 0x40; if (c>='a' && c<='z') seq = greek_letter[c-'a']; if (c>='A' && c<='Z') seq = greek_letter[c-'A']; if (seq) { key_normal('\\'); if (*seq=='!') { ++seq; if (var_greek && c>='a') { key_normal('v'); key_normal('a'); key_normal('r'); } } l = strlen(seq); if (c>='a') for (i=0; i=0x20) key = (key|0x60)-'a'; if (key>=0 && key<26) if (binding[key]) { sprintf(b, binding[key], (cfdpath? cfdpath : "./"), ewin.name); SYSTEM(b); } } #endif sunclock-3.57/editkit/termcap.c0000644000000000000000000005214610325522570013424 0ustar /* mye.c, from ee.c, Yijun Ding, Copyright 1991 modified April 2002. Copyright (C) 1998,2002 Terry Loveall, Code starts after the Users Manual. Compile under Linux with termcap lib support gcc mye.c -O2 -ltermcap -o mye ; strip mye Compile under Linux for gdb with termcap lib support gcc mye.c. -O2 -g -ltermcap -o mye Compile with MSVC: cl -DMSVC -Ox mye.c ------------------------------------------------------------------------------ Users Manual: Based upon the original work ee.c of Yijun Ding, copyright 1991. His logic simplicity was elegant. Any problems are mine. The original work is public domain with source and so is mye.c. I would appreciate hearing about any bug fixes or improvements. This is a simple, basic text editor. It requires only three graphic support routines from the OS: goto X-Y, set character attribute and clear screen. For input it uses the old WordStar style control key sequences; i.e. ^Kh or ^K^H are all equivalant. It will compile on NT with MSVC and lcc and on Linux with gcc. On Linux, it uses termios rather than curses, so will run with minimum library support (like on a rescue/boot disk). Function keys under Linux probably won't work depending upon execution context. They might work on the text console and almost certainly won't on any kind of xterm. For input, mye uses a version of the old WordStar style control key sequences; i.e. ^k^h or ^kh, always lower case control chars. ^kc copies marked block to clipboard, right mouse pastes from clipboard. ^ky deletes marked block to block buffer, ^kv copies from from block buffer to cursor position. Basic navigation is on the left of the keyboard: Q W E R ^E ^W ^R A S D F ^S ^D ^A ^F Z X C ^X ^Z ^C ^E - up ^X - down ^D - right ^S - left ^W - scroll down 1 line ^Z - scroll up 1 line ^R - page up ^C - page down ^F - word right ^A - word left ^Q^D - goto end of line ^Q^S - goto start of line ^Q^R - goto start of file ^Q^C - goto end of file ^Q^F - find ^Q^A - find and replace Once you learn the 'magic diamond' of EXDS with ^Q extensions, function keys and mouse become irrelevant. Following are the rest of the key commands: ^B - word wrap text until the next double newline ^G - delete character under cursor ^H - delete character left of cursor ^I - insert tab char ^J - newline ^K - prefix for file/block operations ^L - repeat last find ^M - insert newline ^N - insert newline ^O - prefix for display and change mode flags ^P - inline literal ^T - delete from cursor to start of next string ^U - undo ^V - toggle insert/overwrite mode ^Y - delete cursor line ^QI - goto line ^QL - refresh screen ^QM - get new right margin ^QY - delete from cursor to end of line ^KB - toggle mark block ^KC - copy marked block to selection ^KD - exit if file not modified ^KF - open new file ^KH - help ^KK - toggle mark block ^KM - record macro ^KN - get and change directory ^KP - play macro ^KQ - exit if file not modified ^KR - read a file and paste into cursor position ^KS - save and continue ^KT - get new tab size ^KU - redo ^KV - paste block buffer into cursor position ^KW - write marked block to file ^KX - exit if file not modified ^KY - cut marked block to block buffer Under NT the following function keys are operational: (key) (description) (same as) ---------------------------------------------------------------------- F2 file save (if modified) ^KS F3 open new file (prompts to save if file modified) ^KF F7 toggle mark block ^KB F8 toggle mark block ^KK Insert toggle insert/overwrite ^V Del delete character under cursor or marked block ^G Home move cursor to beginning of line ^QS End move cursor to end of line ^QD PgUp move up one screen ^R PgDn move down one screen ^C Modes: Changing modes of operation is performed by ^o followed by one of the displayed upper/lower case characters MFOCTBNRA. This will toggle the specific flag. Modes are indicated as being on by displaying their upper case character. The file modified M flag can be toggled off explicitly. The block mark B active flag indicates a complex state. Toggle it off with the block mark key sequences, NOT with ^oB. M : file modified set by anything that modifies file. F : word wrap at text entry toggle with ^oF O : overwrite toggle with ^oO, ^V or function key Insert C : search is case sensitive toggle with ^oC T : expand/compress tabs toggle with ^oT B : block mark active toggle ^KB, ^KK, F7 or F8 (don't with ^oB) N : autoiNdent active toggle ^on R : macro record toggle ^KM (don't with ^oB) A : replace all occurences flag toggle with ^oA The editor does display tab chars as multiple spaces. Tab (0x09) chars are displayed as tabsize spaces. Default tab size is 4. To change tab-width to 8 the command line is 'mye -t8'. To change from within the editor use ^KT. To go to a specified line on initial file opening, the command line is 'mye -+507 somefile'. The minus plus sequence is required. Input a ^J to go to a line from within e. Turning on (F)ill mode enables wordwrap during text entry. Block reformat wraps the text at the right screen edge until a double newline is encounterd. To reformat a paragraph, place the cursor at the desired point of reformat and enter a ^b. To change the right margin use ^Q^M. As noted, undo and redo are available. U for undo, ^KU for redo. A complete record of the edit session is maintained. Undoing all actions in the undo buffer will reset the Marked flag. Find and 'Search and Replace' will pick up any marked blocks, text under the cursor or user input in that order. Found text is highlighted. Set replace ALL flag wth ^oA option before running SAR to replace all occurences. For general dialog entry if the first character entered is not ^H, ^C, ^L, or Enter, the dialog string is discarded. ^L moves the cursor to the end of the dialog string. For a complete understanding of the operation of mye, study the code. It is the ultimate authority on operation. Remember, when all else fails READ THE SCREEN. -----------------------------------------------------------------------------*/ #include #include #include #include #include #include #include /* Target dependent include files ********************************* */ #ifdef MSVC #include #include #include #include #include #else /* not MSVCd */ #include /* use termios.h for termcap output */ #include #endif /* MSVC */ #include "version.h" #include "messages.def" #include "edit.h" int funckey = 0; /* function key flag */ int exitf = 1; /* exitf = 0 = exit */ #ifdef NOEDIT int noedit = 0; #endif /* code */ /* NT I/O specific code ********************************* */ #ifdef MSVC /* MSVC specific variables */ COORD outxy ; /* output COORD for SetConsoleCursorPosition */ CONSOLE_SCREEN_BUFFER_INFO csbi;/* to get MS screen buffer info */ HANDLE stdIn,stdOut,stdErr; /* handles to output window/buffer */ BOOL bSuccess; /* OS result flag */ /* MSVC specific protos */ void clreol(); void clrscr(); void gotoxy(int horz,int vert); /* MSVC specific macros */ #define cprintf(x,y) _cprintf(x,y) #define ttopen() stdIn=GetStdHandle(STD_INPUT_HANDLE);\ stdOut=GetStdHandle(STD_OUTPUT_HANDLE);\ stdErr=GetStdHandle(STD_ERROR_HANDLE);\ bSuccess = GetConsoleScreenBufferInfo(stdOut, &csbi);\ if (!(bSuccess)) return(0);\ screen_height=((csbi.srWindow.Bottom)-(csbi.srWindow.Top))-2;\ screen_width=((csbi.srWindow.Right)-(csbi.srWindow.Left))+1 #define highvideo() SetConsoleTextAttribute(stdOut,FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | BACKGROUND_GREEN) #define lowvideo() SetConsoleTextAttribute(stdOut,0x0e) #define ttclose() SetConsoleTextAttribute(stdOut,0x0e) void gotoxy(int horz,int vert) { outxy.X=horz; outxy.Y=vert; SetConsoleCursorPosition(stdOut,outxy); } /* Microsoft get a key */ int get_key() { static char k1[]="<=ABDHPKMRSGOIQ"; /* input func key second byte */ static char k2[]="rfbczEXSDngsdvw"; /* F2,F3,F7,F8,F10,up,dn,le,ri,Ins,Del,home,End,PgUp,PgDn*/ int key1,key2; char *s; if(((key1=getch()) == 0xE0) || ((key1 == 0))) { key2=getch(); #ifdef DEBUG { /* display up to 4 chars of func key input */ char tbuf[80]; show_top(); sprintf(tbuf, "Line %d/%d, Col %d, char %2x_%2x-%2x+%2x", ytru+1, ytot, xtru, -1, -1, key1, key2); show_note(tbuf); } #endif /* DEBUG */ if((s=strchr(k1, key2)) == 0) return HLP; if((key1 = k2[s-k1]) > 'a') funckey=1; return key1&0x1F; } return key1; } void clreol() /* clear from cursor to end of line */ { int i,ox=outxy.X,oy=outxy.Y; for(i=outxy.X; i= 0x5b)) key4 = getch(); else key4 = 0x7e; #ifdef SUPERDEBUG { char tbuf[80]; show_top(); /* sprintf(tbuf, "Line %d/%d, Col %d, char %2x_%2x-%2x+%2x", */ sprintf(tbuf, "Line %d/%d, Col %d, S/char %d %d %d %d", ytru+1, ytot, xtru, key1, key2, key3, key4); show_note(tbuf); fflush(stdout); usleep(2000000); } #endif /* SUPERDEBUG */ if ((key4 != 0x7e)&(key3 != 0x5b)) { getch();} if (key3=='1' || key3=='2') { if (key3=='1') key4 = key4-'0'-(key4>='6'); if (key3=='2') key4 = key4-'0'+9; funckey=1; return key4; } if (key3=='3') return DEL_CHAR; if((s=strchr(k1, key3)) != NULL && (key1 = k2[s-k1]) > 'a') funckey=1; key1=key1&0x1F; if (key1==0x1b) key1=0; } #ifdef DEBUG { char tbuf[80]; show_top(); /* sprintf(tbuf, "Line %d/%d, Col %d, char %2x_%2x-%2x+%2x", */ sprintf(tbuf, "Line %d/%d, Col %d, char %d %d %d %d", ytru+1, ytot, xtru, key1, key2, key3, key4); show_note(tbuf); } #endif /* DEBUG */ return key1; } /********************** End of termcap input ***********************/ #endif /* not MSVC */ void bell() { putch(7); } /* End of I/O specific code****************************** */ #ifdef EMACS #include "term_bind_em.c" #endif #ifdef WORDSTAR #include "term_bind_ws.c" #endif char *RcFile = NULL; void parse_arg(char *arg1, char *arg2) { if(*arg1=='-') { if (!strcasecmp(arg1, "-f")) strcpy(ewin.name, arg2); else if (!strcasecmp(arg1, "-t")) tabsize = atoi(arg2); else if (!strcasecmp(arg1, "-j")) ewin.jump = atoi(arg2); else if (!strcasecmp(arg1, "-rc")) RcFile = strdup(arg2); } #ifndef MINIMAL if(*arg1=='@') { char *ptr; int i; i = tolower(arg1[1])-'a'; if (i>=0 && i<26) { ptr = arg2; while(isspace(*ptr)) ++ptr; if (binding[i]) free(binding[i]); binding[i] = strdup(ptr); } } #endif /* MINIMAL */ } #ifndef MINIMAL void parse_rc(FILE *f) { char buf[512], *ptr; int i, l; while ((ptr=fgets(buf, 510, f))) { while (isspace(*ptr)) ++ptr; if (strlen(ptr)<2 || *ptr == '#') continue; i = 0; while(ptr[i] && !isspace(ptr[i])) ++i; if (!ptr[i]) continue; ptr[i++] = '\0'; if (ptr[i]) { l = strlen(ptr+i)+i-1; if (l>=i && ptr[l]=='\n') ptr[l] = '\0'; parse_arg(ptr, ptr+i); } } } void read_rc() { FILE *fr = NULL; char name[NLEN], *ptr; if ((ptr=getenv("HOME"))) { if (RcFile) { if (ptr && *RcFile == '~' && RcFile[1] == '/') sprintf(name, "%s/%s", ptr, RcFile+2); else strcpy(name, RcFile); } else sprintf(name, "%s/.%s", ptr, DEFAULT_RC); fr = fopen(name, "r"); } if (!fr) { sprintf(name, "%s/%s", SHAREDIR, DEFAULT_RC); fr = fopen(name, "r"); } if (fr) { parse_rc(fr); fclose(fr); } } #endif /* MINIMAL */ void init(int argc, char *argv[]) { int i; /* Default settings */ *ewin.name = '\0'; amax = AMAX; bmax = BMAX; umax = UMAX; #ifndef MINIMAL memset((void *)binding, 0, 26*sizeof(char *)); for (i=1; i This package is derived from the Editor Kit edx-0.56 by Terry Loveall. Aside minor improvements of the editing routines (unlimited buffer size, left and right justification), it adds a variant of edx (aka emx) which uses Emacs bindings rather than Wordstar bindings. A compile switch also allows to produce edt/emt for VT100 consoles rather than for the X Window system. The editor engine is almost identical in all cases, provided by the routines contained in 'edit.c'. The programs just require the raw X11 libraries (edx/emx), or the termcap library (edt/emt). Various compile options can be used to increase or reduce the feature set (see the Makefile for details). In particular, the standard compile options yield the possibility to use arbitrary key bindings, bound to Alt-? or Esc-!-?. They should be copied to /usr/share/edmtx/edxrc (resp. to /usr/share/edmtx/emxrc, etc) for a system wide installation, or in $HOME/.edxrc (resp. $HOME/.emxrc, etc). Check 'rc.example' to get an idea. ============================================================================== Copy of original README of edx-0.56 by Terry Loveall ---------------------------------------------------- Edx - an X wrapper around an ASCII terminal editor engine. Copyright (C) 2002, Terry Loveall, email: This program is released into the public domain. THIS PROGRAM COMES WITH ABSOLUTELY NO WARRANTY OR BINARIES. COMPILE AND USE AT YOUR OWN RISK. To build: run 'make', copy the resulting binary named edx to some place in your path or run it in the build directory with './edx'. Please send any questions, bug fixes or improvements to the above email. ------------------------------------------------------------------------ ASCII Text Editor to X Conversion and theory of operation The purpose of the edx.c/eeng.c package is a proof of concept for converting a 'standard' ASCII terminal based text editor to the GUI X windows. Using a text editor as a native window application enables the user to have multiple applications open simultaneously on screen. Yet the available X text editors have always left something to be desired. Usually an incomplete or hostile UI coupled with one or more of the following: written in C++ preventing easy modification, over-sized binaries which are slow to load and respond or just plain buggy code. In the interest of attempting to alleviate some, if not all, of the above complaints, the edx text editor is presented. It is composed of two files: edx.c which provides the direct interface to X windows, and eeng.c which provides a relatively simple basic text editor engine. Edx.c description: The functions provided by edx.c are a generic set designed to provide all necessary functions that are not inherent to the text editor engine. Edx.c provides the basic X windows initialization code, character/mouse input, character/string output, cursor positioning, X clipboard selection and the main event driven executive loop. These are: Cursor: void gotoxy(int horz,int vert); void cursor_draw(unsigned long color); void draw_cursor(); void undraw_cursor(); Character: void drawstring(char *str, int len); void cputs(char *prntstr); int putch(char chr); void clreol(); void highvideo(); void lowvideo(); void clrscr(); Window support: void bell(); void update(); void sig_handler(int); void font_height(void); X clipboard selection int paste_primary(int win, int property, int Delete); int request_selection(int time); char *mrealloc(char *s, int len); void set_selection(); void send_selection(XSelectionRequestEvent * rq); void moveto(); void do_paste(); void do_select(int delete); App Initialization and execution: void init(int argc,char *argv[]); void handle_key(char *astr, int skey, int state); int main(int argc,char *argv[]); -------------------------- Terminal X app conversion: Converting an ASCII text editor, that runs in a terminal environment, to an event driven windowed GUI app is fairly straight forward in concept. The analysis results in a separation of functions into window dependent and window independent. For window dependent functions, analysis produces the following 6 categories: 1. Window creation and application initialization. 2. Executive loop and function dispatch. 3. Window support. 4. Character display 5. Cursor management 6. X clipboard/selection A potential 7th category, dialogs, is not included in X for the sake of program simplicity. Dialogs are presented and controlled in the context of the ASCII status bar by the editor engine. 1. Window creation and application initialization: The function 'main(argc, argv)' is where window creation and initialization is controlled. The sequence is as follows: disconnect from the console call init: open the display setup to gracefully respond to exit requests from X establish window manager hints data structure setup font(s) setup window dimensions initialize clreol string to all blanks create the only window setup window hints setup window class resource names notify X on how to force the app to exit specify accepted XEvent loop events make the window real by mapping it create the Graphic Context for drawing purposes allocate required colors apply colors to window set the font App init in main() get command line options open a (possibly) named file for editing request/create WM_PROTOCOLS atom set up the signal handler response display the initial cursor 2. Executive loop and function dispatch: At the successful completion of window creation and app initialization, execution enters the main() event loop, where requested events are decoded and dispatched to the appropriate functions. The event categories decoded are as follows: Expose MotionNotify ButtonPress Button1 Button2 Button3 ButtonRelease Button1 Button2 Button3 KeyPress ConfigureNotify ClientMessage DestroyNotify The four event categories of concern are ButtonPress, ButtonRelease, MotionNotify and KeyPress. The button and motion events call the editor functions which: set the cursor position, select text with highlights and insert text from a buffer. KeyPress calls one of several key decoding functions that are mode specific in the text editor engine. These modes correspond to: normal editor cursor and text input, file and search string dialogs and option settings. 3. Window support: Window support amounts to only 5 functions that are broken out to improve readability. They are: bell: make noise for incorrect input. update: redraw the screen. sig_handler: handle signal events from the OS. font_height: calculate font height. 4. Character display: drawstring is the basic text output. cputs outputs an ASCIIZ string. putch just outputs one char. lowvideo sets output to normal mode. highvideo sets output to highligted mode. clreol erases from the current output position to the right edge. clrscr erases the entire window. 5. Cursor management: gotoxy positions the cursor relative to the upper left window corner. cursor_draw draws a cursor at current location in the specified color. draw_cursor draws a cursor in the foreground color. undraw_cursor draws a cursor in the background color. 6. X clipboard/selection: mrealloc manages the buffer size for X selection paste_primary sequentially feeds chars to handle_char for pasting request_selection requests the current selection from XA_CUT_BUFFER0 if any set_selection processes and sends the marked block to XA_CUT_BUFFER0 send_selection posts an event saying selection is available moveto mouse support convenience function for multiple calls do_paste paste function for both keyboard and mouse do_select also for both keyboard and mouse ------------------- Eeng.c description: Eeng.c provides window independent functions and is derived from a functional ASCII text editor in a non-windowed environment. Changes made to eeng.c amount to converting the following functions from loop form to single pass character decoding: main executive: main_exec: dispatch ASCII characters and function keys for processing. all ASCII text dialogs: file_save: file open/save/new. goto_line: request specified line number to goto. goto_col: request goto column in current line goto_search: request string to search for. goto_replace: request search string for search&replace operation. replace_with: request replace string for search&replace operation. ask_replace: confirm replacement (Y/N/Esc/!) for search&replace operation. tab_size: request new tab size. window_size: request new right margin for block reformat. block_read: request file name to insert at current position. block_write: request file name to write marked block to. select and set options: show_mode: An additional change to the text dialogs was to use a generic string input with prompt format and a callback. The callback provides specific processing of the input string. The change to a windowed environment also required replacing all terminal I/O with equivalent X functions. This code did not change, but rather was replaced by the same named X functions. These functions are comprised of the X cursor and character groups. The major source difference was specifying function and control keys from . ----------------------------- Basic eeng.c code structures: The center of the editor engine is the char* pointer 'line_start'. All operations center around it. cur_pos is calculated by 'line_start+x_offset'. Conversion from screen x co-ordinate is accomplished with 'get_tru'. Moving around within the text file always requires moving line_start and counting EOLs. Text display counts back 'y' number of lines to generate a complete screen in the function 'show_scr'. There, the left margin display offset 'lxo' is used to determine the start of each display line. lxo is primarily maintained by cursor_left and cursor_right functions. Text insertion and deletion is provided by the function 'file_resize', which, when destination address is greater than source, opens a gap for insert operations, or deletes when destination address is less than source. Undo recording basically monitors 'file_resize' plus a few special cases such as block_fill and others. Main program execution is controlled by the function 'main_exec' which is basically just a conditional state test to select the proper 'switch(key)' function from one of key_normal, key_control, ctrlk_key, ctrlq_key, func_key and key_alt. Each one of these decodes for a specific set of keys and the key state from the global key event data structure 'keve'. From there, the individual key functions are invoked. X windows just passes basic key values and keyboard state. The difference between an ASCII 'A' and a control 'A' is only in the bit indicating the control key is pressed. The bad part is the program has to decode this in order to respond reasonably. The good part is the program gets to decode this in order to respond reasonably and controls _all_ decoding. If you do not like the way edx operates you _can_ change it. Marked block operation is comprised of flag[BLK], the char pointer 'mk' and cur_pos. If flag[BLK] is set, only then can you have a marked block. File operations are basically treated as block operations, and do very conventional file I/O. External program execution: SYSTEM forks a new process to run '/bin/sh $@' gorun invokes a dialog to get a command line from the user to execute newedx invokes a new instance of edx mterm opens an rxvt terminal in the current directory For more detailed operation of the edx editor see the files 'MANUAL' and 'eeng.c'. sunclock-3.57/editkit/x11_bind_em.c0000644000000000000000000002062510501244214014044 0ustar /* emx (small EMacs clone for X) (C) 2002, Jean-Pierre Demailly released in the public domain derived from edx ver. 0.56, (C) 2002, Terry Loveall Based upon the original work ee.c of Yijun Ding, (C) 1991 which is in the public domain. This program comes with no warranties. Use at your own risk. */ #define EDIT "emx" #ifndef MINIMAL #define DEFAULT_RC "emxrc" #endif /* Help screen -- rewrite to suit your own tastes */ /* include the editor engine */ #include "edit.c" /* All this stuff consists of the emacs-like bindings */ #ifdef GREEK void ctrlc_key(int key) { key_greek(key); doCtrlC = var_greek; } #endif #ifdef MINIMAL void key_binding(int key) { switch(key) { case 'c': SYSTEM("xcalc"); break; /* Alt-C xcalc*/ case 'd': new_edit("/c/text/phone.dir"); break; /* Alt-D phone Dir */ case 'l': SYSTEM("xcalendar"); break; /* Alt-L xcalendar */ case 'u': redo(); break; /* Alt-U redo */ } } #endif /* ctrl X keys */ void ctrlx_key(int key) { switch(key | 0x60) { case 'c': sys_exit(0); break; /* ^XC exit only if file saved */ case 'd': key_delword(0); break; /* ^XD delete word */ case 'f': file_save(0,1); break; /* ^XF open new file */ case 'h': show_help(0); break; /* ^XH show help menu */ case 'i': block_read(); break; /* ^XI read file into cursor pos */ case 'k': block_line(); break; /* ^XK delete line */ case 'm': key_macros(1); break; /* ^XM record macro */ case 'p': key_macros(0); break; /* ^XP play macro */ case 'q': sys_exit(2); break; /* ^XQ exit even if file unsaved */ case 's': do_save(); break; /* ^XS write block to disk */ case 't': tab_size(); break; /* ^XT get tab size */ case 'v': block_write(); break; /* ^XV write block to disk */ case 'w': file_save(0,-1); break; /* ^XW save file as */ case 'x': goto_last(); break; /* ^XX goto last pos */ } doCtrlX = 0; show_top(); } /* Shift, control and bare Function keys */ void key_func(int key) { if(keve->state & ShiftMask) switch(key) { case XK_Insert : do_paste(); return; /* Shift Ins paste */ case XK_Delete : do_select(1); return; /* Shift Del cut */ } if((keve->state & ShiftMask) && !flag[BLK] && key >= XK_Home && key <= XK_End) block_mark(); /* enable marked block with Shift */ if(keve->state & ControlMask) { switch(key) { case XK_Tab : word_mark(); break; /* ^Tab mark cursor word */ #ifndef MINIMAL case XK_F1 : new_edit(DOCDIR"/MANUAL.emx"); break; /* ^F1 open emx Manual */ #endif case XK_F9 : new_edit(""); break; /* ^F3 open new emx */ case XK_Home : top(); break; /* ^Home bof */ case XK_End : goto_y(ytot); break; /* ^End eof */ case XK_Left : word_left(); break; /* ^Left word left */ case XK_Right : word_right(); break; /* ^Right word right */ case XK_Insert : do_select(0); break; /* ^Ins copy */ } } else switch(key) { case XK_F1 : show_help(0); break; /* F1 show help */ case XK_F2 : do_save(); break; /* F2 save file and resume */ case XK_F3 : file_save(0,1); break; /* F3 open new file */ case XK_F4 : find_match(); break; /* F4 find {} () [] match */ case XK_F5 : run(); break; /* F5 get and run cmd */ case XK_F6 : chgdir(); break; /* F6 get & change to dir */ case XK_F7 : block_mark(); break; /* F7 set mark block on */ case XK_F8 : block_mark(); break; /* F8 set mark block on */ #ifndef MINIMAL case XK_F9 : req_edit(); break; /* F9 open new file in new window */ #endif case XK_F10 : key_binding('z'); break; /* F10 open rxvt in cur.dir */ case XK_F12 : show_flag(OVR, !flag[OVR]); break;/* Ins toggle insert mode */ case XK_Return : key_return(); break; /* Enter newline at cursor */ case XK_Tab : key_tab(0); break; /* Tab insert tab char at cursor */ case XK_BackSpace: key_backspace(); break; /* BS delete prev char */ case XK_Insert : show_flag(OVR, !flag[OVR]); break;/* Ins toggle insert mode */ case XK_Delete : key_delete(); break; /* Del delete cursor char */ case XK_Page_Up : cursor_pageup(); break; /* PgUp */ case XK_Page_Down: cursor_pagedown(); break; /* PgDn */ case XK_End : goto_x(strlen(line_start+1)+1); break;/* End eol */ case XK_Home : goto_x(1); break; /* Home bol */ case XK_Up : cursor_up(); break; /* up */ case XK_Down : cursor_down(); break; /* down */ case XK_Right : cursor_right(); break; /* right */ case XK_Left : cursor_left(); break; /* left */ } if(!(keve->state & ShiftMask) && flag[BLK]) mark_off(); // turn off marked block } /* Control keys */ void key_control(int key) { if(!(keve->state & ShiftMask) && flag[BLK]) mark_off(); switch(key|0x60) { case 'a': goto_x(1); break; /* bol */ case 'b': cursor_left(); break; /* left */ #ifdef GREEK case 'c': doCtrlC = 1; break; /* ^C switch */ #endif case 'd': key_delete(); break; /* delete cursor char */ case 'e': goto_x(strlen(line_start+1)+1); break; /* goto eol */ case 'f': cursor_right(); break; /* right */ case 'h': key_backspace(); break; /* destructive backspace */ case 'j': key_return(); break; /* newline at cursor */ case 'k': key_delword(1); break; /* delete to eol */ case 'l': expose=1; scr_update(); expose=0; break; /* refresh screen */ case 'n': cursor_down(); break; /* down */ case 'o': show_mode(); break; /* change modes */ case 'p': cursor_up(); break; /* up */ case 'q': literal = 1; break; /* literal */ case 'r': goto_search(1); break; /* ^R find backward */ case 's': goto_search(0); break; /* ^S find foreword */ case 't': transpose(); break; /* ^T transpose */ case 'u': if (search_mode<=1) /* repeat search */ goto_find(cur_pos, search_mode); else /* repeat replace */ ask_replace(); break; /* search or replace again */ case 'v': cursor_pagedown(); break; /* ^V pgdn */ case 'w': reset_mark(); block_copy(1); break; /* ^W cut block at buffer */ case 'x': doCtrlX = 1; break; /* ^X switch */ case 'y': block_paste(); break; /* ^Y copy buffer at cursor */ case 'z': iconify(); break; /* ^Z iconify window */ case 0x7f: undo(0); break; /* ^_ undo */ /* user typed Ctrl-_ */ } show_top(); } /* Escape keys */ void key_escape(int key) { switch(tolower(key)) { case ' ': case '.': block_mark(); break; /* Esc-BLANK set mark block on */ #ifndef MINIMAL case '!': doEscap = 2; show_note(ALT_KEY_BINDINGS); return; /* Esc-! = Alt-key bindings */ #endif case '_': redo(); break; /* Esc-_ redo */ case '%': goto_replace(); break; /* Esc-% replace */ case '<': top(); break; /* Esc-< bof */ case '>': y = screen_height-1; goto_ptr(file_end); break; /* Esc-> eof */ case 'b': word_left(); break; /* Esc-B word left */ case 'f': word_right(); break; /* Esc-F word right */ case 'g': keve->state & ControlMask ? goto_line() : /* goto line# */ key_return(); break; /* newline */ #ifdef JUSTIFY case 'j': block_format(1); break; /* Esc-J reformat & fill block */ #endif case 'l': chg_case(0); break; /* Esc-L lower case block */ case 'm': window_size(); break; /* Esc-M get right margin */ case 'n': scroll_up(); break; /* Esc-N scroll down (!) */ case 'p': scroll_down(); break; /* Esc-P scroll up (!) */ case 'q': block_format(0); break; /* Esc-Q reformat block */ case 'u': chg_case(1); break; /* Esc-U upper case block */ case 'v': cursor_pageup(); break; /* Esc-V pgup */ case 'w': reset_mark(); block_copy(0); reset_mark(); break; /* Esc-W copy block to buffer */ case 'x': switch_marks(); break; /* Esc-X switch between block marks */ } doEscap = 0; show_top(); } /* single char interpreter */ void main_exec(int key) { cur_pos = get_cur(); if (update_scr) { undraw_cursor(); if(flag[REC]) rec_macro(key); } if (help_done){ help_done = 0; flag[SHW] = 1; } else if (literal) { key_normal(keve->state & ControlMask ? key & 0x1f : key); literal = 0; } else { if (key==XK_Escape) doEscap = 1; else if (key & 0xFF00) key_func(key); else if (doEscap==2 || (keve->state & Mod1Mask)) key_binding(key); else { if (doEscap==1) key_escape(key); else #ifdef GREEK if (doCtrlC) ctrlc_key(key); else #endif if (doCtrlX) ctrlx_key(key); else { if (keve->state & ControlMask) key &= 0x1f; if (key >= BLNK) { flag[BLK] = 0; key_normal(key); } else key_control(key); } } } if(!doCtrlX && old_pos != line_start) { last_pos = old_pos; old_pos = line_start; } cur_pos = get_cur(); if(update_scr) scr_update(); } sunclock-3.57/editkit/term_bind_ws.c0000644000000000000000000001530707503446613014452 0ustar /* edx (EDitor for X), (C) 2002, Terry Loveall released into the public domain. Based upon the original work ee.c of Yijun Ding, copyright 1991 which is in the public domain. This program comes with no warranties or binaries. Use at your own risk. */ #define EDIT "xterm -cr green -ms red -fn 9x15 -geometry 80x32 -e edt" #ifndef MINIMAL #define DEFAULT_RC "edtrc" #endif /* include the editor engine */ #include "edit.c" /* Wordstar bindings */ #ifdef GREEK /* similar to Ctrl-C under emacs... */ void ctrlc_key(int key) { key_greek(key); doCtrlC = var_greek; } #endif /* GREEK */ #ifdef MINIMAL void key_binding(int key) { switch(key) { case 'c': SYSTEM("xcalc"); break; /* Alt-C xcalc*/ case 'd': new_edit("/c/text/phone.dir"); break; /* Alt-D phone Dir */ case 'l': SYSTEM("xcalendar"); break; /* Alt-L xcalendar */ case 'u': redo(); break; /* Alt-U redo */ } } #endif /* ctrl K keys */ void ctrlk_key(int key) { switch(key | 0x60) { case 'b': block_mark(); break; /* ^K^B set mark block on */ #ifdef X11 case 'c': set_selection(); /* ^K^C block copy to X clipboard */ #endif block_copy(0); break; /* and to bbuffer */ case 'd': flag[CHG]=0; break; /* ^K^D say file not changed */ case 'f': file_save(0,-1); break; /* ^K^F new file */ #ifdef GREEK case 'g': doCtrlC = 1; break; /* ^K^G Greek char */ #endif /* GREEK */ case 'h': show_help(0); break; /* ^K^H show help menu */ case 'k': block_mark(); break; /* ^K^K set mark block on */ case 'm': key_macros(1); break; /* ^K^M record macro */ case 'p': key_macros(0); break; /* ^K^P play macro */ case 'q': sys_exit(0); break; /* ^K^Q exit only if file saved */ case 'r': block_read(); break; /* ^K^R read file into cursor pos */ case 's': do_save(); break; /* ^K^S save file and resume */ case 't': tab_size(); break; /* ^K^T get tab size */ case 'u': redo(); break; /* ^K^U redo */ case 'v': block_paste(); break; /* ^K^V copy buffer to cursor */ case 'w': block_write(); break; /* ^K^W write block to disk */ case 'x': sys_exit(0); break; /* ^K^X exit only if file saved */ case 'y': block_copy(1); break; /* ^K^Y cut block to buffer */ #ifdef MINIMAL case 'z': mterm(); break; /* ^K^Z open an rxvt term */ #endif } doCtrlK = 0; show_top(); } /* ctrl Q keys */ void ctrlq_key(int key) { switch(key | 0x60) { case 'a': goto_replace(); break; /* ^Q^A replace */ #ifdef JUSTIFY case 'b': block_format(1); break; /* ^Q^B right justify */ #endif case 'c': y = screen_height-1; goto_ptr(file_end); break; /* ^Q^C eof */ case 'd': goto_x(strlen(line_start+1)+1); break; /* ^Q^D eol */ case 'f': goto_search(0); break; /* ^Q^F find */ case 'i': goto_line(); break; /* ^Q^I goto line */ case 'l': chg_case(0); break; /* ^Q^L lower case block */ case 'm': window_size(); break; /* ^Q^M get right margin */ case 'p': goto_last(); break; /* ^Q^P goto last pos */ case 'r': top(); /* ^Q^R bof */ case 's': goto_x(1); break; /* ^Q^S bol */ case 'u': chg_case(1); break; /* ^Q^L upper case block */ case 'y': key_delword(1); break; /* ^Q^Y delete to end of line */ } doCtrlQ = 0; show_top(); } /* Control keys */ void key_control(int key) { switch(key|0x60) { case 'a': word_left(); break; /* word left */ case 'b': block_format(0); break; /* justify block */ case 'c': cursor_pagedown(); break; /* pgdn */ case 'd': cursor_right(); break; /* right */ case 'e': cursor_up(); break; /* up */ case 'f': word_right(); break; /* word right */ case 'g': key_delete(); break; /* delete cursor char */ case 'h': key_backspace(); break; /* destructive backspace */ case 'i': key_tab(0); break; /* insert tab char */ case 'j': key_return(); break; /* newline */ case 'k': doCtrlK = key; break; /* ^K key */ case 'l': goto_find(cur_pos, 0); break; /* find again */ case 'm': case 'n': key_return(); break; /* newline at cursor */ case 'o': show_mode(); break; /* change modes */ case 'p': literal = 1; break; /* get inline literal */ case 'q': doCtrlQ = key; break; /* ^Q key */ case 'r': cursor_pageup(); break; /* pgup */ case 's': cursor_left(); break; /* left */ case 't': key_delword(0); break; /* delete word/to word */ case 'u': undo(); break; /* undo */ case 'v': show_flag(OVR,!flag[OVR]); break; /* toggle Insert mode */ case 'w': scroll_down(); break; /* scroll down */ case 'x': cursor_down(); break; /* down */ case 'y': block_line(); break; /* delete line */ case 'z': scroll_up(); break; /* scroll up */ } show_top(); } /* main function */ void main_meta(int key) { if (key>=1 && key<=10) switch(key) { case 1: show_help(0); break; /* F1 show help */ case 2: do_save(); break; /* F2 save file and resume */ case 3: file_save(0,1); break; /* F3 open new file */ case 4: find_match(); break; /* F4 find {} () [] match */ case 5: run(); break; /* F5 get and run cmd */ case 6: chgdir(); break; /* F6 get & change to dir */ case 7: block_mark(); break; /* F7 set mark block on */ case 8: block_mark(); break; /* F8 set mark block on */ #ifndef MINIMAL case 9: req_edit(); break; /* F9 open new file in new window */ case 10: key_binding('z'); break; /* F10 open rxvt in cur.dir */ #endif } else switch(key | 0x60) { case 'b': block_mark(); break; /* F7 set mark block on */ case 'c': block_mark(); break; /* F8 set mark block on */ case 'd': goto_x(strlen(line_start+1)+1); break;/* End eol */ case 'f': file_save(0,-1); break; /* F3 open new file */ case 'g': key_delete(); break; /* Del delete cursor char */ case 'n': show_flag(OVR, !flag[OVR]); break;/* Ins toggle insert mode */ case 'r': do_save(); break; /* F2 save file and resume */ case 's': goto_x(1); break; /* Home bol */ case 'v': cursor_pageup(); break; /* PgUp */ case 'w': cursor_pagedown(); break; /* PgDn */ // case 'z': key_shell(0); break; /* F10 execute a shell */ } funckey=0; show_top(); } /* single char interpreter */ void main_exec(int key) { cur_pos = get_cur(); if(update_scr) { if(flag[REC]) rec_macro(key); } if(help_done){ help_done = 0; flag[SHW] = 1; } else if (literal) { key_normal(key); literal = 0; } else { if (funckey) main_meta(key); else if (doEscap==2) key_binding(key); else if (doCtrlK) ctrlk_key(key); else if (doCtrlQ) ctrlq_key(key); else { if(key >= BLNK) key_normal(key); else key_control(key); } } if(!doCtrlK && !doCtrlQ && old_pos != line_start) { last_pos = old_pos; old_pos = line_start; } cur_pos = get_cur(); if(update_scr && exitf && executive == MAIN) scr_update(); } sunclock-3.57/editkit/rc.example0000644000000000000000000000117510332115663013601 0ustar # Private options and key bindings for edt/emt/edx/emx # All keys '@a' to '@z' (lower case) can be bound. # of X terminal (xterm, rxvt, etc) # There are two string arguments %s %s, respectively # - the current working directory # - the name of the file being edited # -cr red @d xdiary & @e DIR=%s; ROOTNAME=`echo %s |rev| cut -d"." -f 2- |rev`; emx $ROOTNAME.log & @l DIR=%s; latex %s & @p DIR=%s; xenscript %s & @t DIR=%s; tex %s & @v DIR=%s; ROOTNAME=`echo %s |rev| cut -d"." -f 2- |rev`; xdvi -s 6 $ROOTNAME.dvi & @x DIR=%s; xrmap -rcfile %s & @z cd %s; rxvt -font 8x13 -pr red -cr green -sl 500 -sr +st -geometry 80x30 & sunclock-3.57/editkit/term_bind_em.c0000644000000000000000000001602707503446706014425 0ustar /* emx (small EMacs clone for X) (C) 2002, Jean-Pierre Demailly released in the public domain derived from edx ver. 0.56, (C) 2002, Terry Loveall Based upon the original work ee.c of Yijun Ding, (C) 1991 which is in the public domain. This program comes with no warranties. Use at your own risk. */ #define EDIT "xterm -cr green -ms red -fn 9x15 -geometry 80x32 -e emt" #ifndef MINIMAL #define DEFAULT_RC "emtrc" #endif /* Help screen -- rewrite to suit your own tastes */ /* include the editor engine */ #include "edit.c" /* All this stuff consists of the emacs-like bindings */ #ifdef GREEK void ctrlc_key(int key) { key_greek(key); doCtrlC = var_greek; } #endif #ifdef MINIMAL void key_binding(int key) { switch(key) { case 'c': SYSTEM("xcalc"); break; /* Alt-C xcalc*/ case 'd': new_edit("/c/text/phone.dir"); break; /* Alt-D phone Dir */ case 'l': SYSTEM("xcalendar"); break; /* Alt-L xcalendar */ case 'u': redo(); break; /* Alt-U redo */ } } #endif /* ctrl X keys */ void ctrlx_key(int key) { switch(key | 0x60) { case 'c': sys_exit(0); break; /* ^XC exit only if file saved */ case 'd': key_delword(0); break; /* ^XD delete word */ case 'f': file_save(0,1); break; /* ^XF open new file */ case 'h': show_help(0); break; /* ^XH show help menu */ case 'i': block_read(); break; /* ^XI read file into cursor pos */ case 'k': block_line(); break; /* ^XK delete line */ case 'm': key_macros(1); break; /* ^XM record macro */ case 'p': key_macros(0); break; /* ^XP play macro */ case 'q': sys_exit(2); break; /* ^XQ exit even if file unsaved */ case 's': do_save(); break; /* ^XS write block to disk */ case 't': tab_size(); break; /* ^XT get tab size */ case 'v': block_write(); break; /* ^XV write block to disk */ case 'w': file_save(0,-1); break; /* ^XW save file as */ case 'x': goto_last(); break; /* ^XX goto last pos */ } doCtrlX = 0; show_top(); } void main_meta(int key) { if (key>=1 && key<=10) switch(key) { case 1: show_help(0); break; /* F1 show help */ case 2: do_save(); break; /* F2 save file and resume */ case 3: file_save(0,1); break; /* F3 open new file */ case 4: find_match(); break; /* F4 find {} () [] match */ case 5: run(); break; /* F5 get and run cmd */ case 6: chgdir(); break; /* F6 get & change to dir */ case 7: block_mark(); break; /* F7 set mark block on */ case 8: block_mark(); break; /* F8 set mark block on */ #ifndef MINIMAL case 9: req_edit(); break; /* F9 open new file in new window */ #endif case 10: key_binding('z'); break; /* F10 open rxvt in cur.dir */ } else switch(key | 0x60) { case 'b': block_mark(); break; /* F7 set mark block on */ case 'c': block_mark(); break; /* F8 set mark block on */ case 'd': goto_x(strlen(line_start+1)+1); break;/* End eol */ case 'f': file_save(0,-1); break; /* F3 open new file */ case 'g': key_delete(); break; /* Del delete cursor char */ case 'n': show_flag(OVR, !flag[OVR]); break;/* Ins toggle insert mode */ case 'r': do_save(); break; /* F2 save file and resume */ case 's': goto_x(1); break; /* Home bol */ case 'v': cursor_pageup(); break; /* PgUp */ case 'w': cursor_pagedown(); break; /* PgDn */ // case 'z': key_shell(0); break; /* F10 execute a shell */ } funckey=0; show_top(); } /* Control keys */ void key_control(int key) { switch(key|0x60) { case 'a': goto_x(1); break; /* bol */ case 'b': cursor_left(); break; /* left */ #ifdef GREEK case 'c': doCtrlC = 1; break; /* ^C switch */ #endif case 'd': key_delete(); break; /* delete cursor char */ case 'e': goto_x(strlen(line_start+1)+1); break; /* goto eol */ case 'f': cursor_right(); break; /* right */ case 'h': key_backspace(); break; /* destructive backspace */ case 'j': key_return(); break; /* newline at cursor */ case 'k': key_delword(1); break; /* delete to eol */ case 'l': scr_update(); break; /* refresh screen */ case 'n': cursor_down(); break; /* down */ case 'o': show_mode(); break; /* change modes */ case 'p': cursor_up(); break; /* up */ case 'q': literal = 1; break; /* literal */ case 'r': goto_search(1); break; /* ^R find backward */ case 's': goto_search(0); break; /* ^S find */ case 't': transpose(); break; /* ^T transpose */ /* case 'u': block_line(); break; */ /* ^U delete line */ case 'u': if (search_mode<=1) /* repeat search */ goto_find(cur_pos, search_mode); else /* repeat replace */ ask_replace(); break; /* search or replace again */ case 'v': cursor_pagedown(); break; /* ^V pgdn */ case 'x': doCtrlX = 1; break; /* ^X switch */ case 'y': block_paste(); break; /* ^Y copy buffer at cursor */ case 'w': reset_mark(); block_copy(1); mark_off(); break; /* ^W cut block at buffer */ case 0x7f: undo(0); break; /* ^_ undo */ /* user typed Ctrl-_ */ } show_top(); } /* Escape keys */ void key_escape(int key) { switch(tolower(key)) { case ' ': case '.': block_mark(); break; /* Esc-BLANK set mark block on */ case '_': redo(); break; /* Esc-_ redo */ case '%': goto_replace(); break; /* Esc-% replace */ case '<': top(); break; /* Esc-< bof */ case '>': y = screen_height-1; goto_ptr(file_end); break; /* Esc-> eof */ case 'b': word_left(); break; /* Esc-B word left */ case 'f': word_right(); break; /* Esc-F word right */ case 'g': goto_line(); break; /* goto line# */ #ifdef JUSTIFY case 'j': block_format(1); break; /* Esc-J reformat & fill block */ #endif case 'l': chg_case(0); break; /* Esc-L lower case block */ case 'm': window_size(); break; /* Esc-M get right margin */ case 'n': scroll_up(); break; /* Esc-N scroll down (!) */ case 'p': scroll_down(); break; /* Esc-P scroll up (!) */ case 'q': block_format(0); break; /* Esc-Q reformat block */ case 'u': chg_case(1); break; /* Esc-U upper case block */ case 'v': cursor_pageup(); break; /* Esc-V pgup */ case 'w': reset_mark(); block_copy(0); mark_off(); break; /* Esc-W copy block to buffer */ case 'x': switch_marks(); break; /* Esc-X switch between block marks */ } doEscap = 0; show_top(); } /* single char interpreter */ void main_exec(int key) { cur_pos = get_cur(); if (update_scr) { if(flag[REC]) rec_macro(key); } if (help_done){ clrscr(); show_top(); help_done = 0; flag[SHW] = 1; } else if (literal) { key_normal(key); literal = 0; } else { if (funckey) main_meta(key); else { if (doEscap==1) key_escape(key); else if (doEscap==2) key_binding(key); else #ifdef GREEK if (doCtrlC) ctrlc_key(key); else #endif if (doCtrlX) ctrlx_key(key); else { if (key >= BLNK) { flag[BLK] = 0; key_normal(key); } else key_control(key); } } } if(!doCtrlX && old_pos != line_start) { last_pos = old_pos; old_pos = line_start; } cur_pos = get_cur(); if(update_scr && exitf && executive == MAIN) scr_update(); } sunclock-3.57/editkit/MANUAL.wordstar0000644000000000000000000002370007465343063014374 0ustar ------------------------------------------------------------------------------ edx Users Manual: Copyright (C) 2002, Terry Loveall, Based upon the original work ee.c of Yijun Ding, copyright 1991. His logic simplicity was elegant. Any problems are mine. The original work is source in the public domain and so is edx. I would appreciate hearing about any bug fixes or improvements. ----------------------------------------------------------------------------- Command line options Usage: edx [-fn font] [-jump line#] [-tab skip] [-w width] [-h height] [-bg color] [-fg color] [-hibg color] [-hifg color] [-cr color] [-rc rcfile] [file] ------------------------------------------------------------------------------ Edx doesn't have menus, but if it did, they would look like this: File Edit Search Navigation Options Run Help -------------------------------------------------- File: ----- ^K^F save as:, open new file F2 save file and resume ^K^S save file and resume ^K^W write block to disk ^K^R insert file at cursor pos ^K^D toggle file Modified ^K^Q exit only if file saved/unmodified ^K^X exit only if file saved/unmodified Edit: ----- ^U undo ^K^U redo ^I insert tab char Tab insert tab char ^M newline ^N newline Enter newline ^P insert next char as inline literal ^B reformat from cursor to end of paragraph ^Q^L convert marked block to lower case ^Q^U convert marked block to UPPER case ^Q^T exchange two consecutive chars ^G delete cursor char Del delete cursor char BS delete prev char ^H delete prev char ^T delete word ^Y delete line ^Q^Y delete to end of line F7 toggle mark block F8 toggle mark block ^K^B toggle mark block ^K^K toggle mark block ^F1 mark cursor word ^K^Y Cut block to block buffer ^K^C Copy block to X _and_ to block buffer ^K^V Paste block buffer to cursor Shift-Del Cut block to X ^Ins Copy block to X Shift-Ins Paste from X ^K^M record macro ^K^P play macro Search: ------- ^Q^F find ^Q^A find and replace ^L find again ^J goto line ^Q^I goto line Navigation: ----------- ^A word left ^F word right ^S left ^D right ^E up ^X down ^R pgup ^C pgdn ^Z scroll up ^W scroll down up down right left PgUp PgDn ^Left word left ^Right word right Home beginning of line End end of line ^Q^S beginning of line ^Q^D end of line ^Home beginning of file ^End end of file ^Q^R beginning of file ^Q^C end of file ^Q^P goto last pos Options: -------- Ins toggle insert mode F12 toggle insert mode (I have a flaky Ins/F12 key, use for your own purpose) ^V toggle Insert mode ^Q^M get right margin ^K^T get tab size ^O change modes [MFOCTBNRA] ^OM toggle file Modified ^OF toggle Fill (autowrap) ^OO toggle insert/Overwrite ^OC toggle search Case ^OT toggle Tab convert ^OB toggle marked Block (DONT use, indicator only, use ^K^B) ^ON toggle autoiNdent mode ^OR toggle record Macro (DONT use, indicator only, use ^K^M) ^OA toggle replace All Run: ---- F5 get and run cmd F6 get & change to dir F10 open rxvt term ^K^Z open rxvt term ^F3 open new edx Alt-C xcalc Alt-D phone Dir Alt-L xcalendar Help: ----- F1 show help ^K^H show help ------------------------------------------------------------------------------ For input, edx uses a version of the old WordStar style control key sequences; i.e. ^k^h or ^kh, always lower case control chars. ^kc copies marked block to clipboard, right mouse pastes from clipboard. ^ky deletes marked block to block buffer, ^kv copies from from block buffer to cursor position. Basic navigation is on the left of the keyboard: Q W E R ^E ^W ^R A S D F ^S ^D ^A ^F Z X C ^X ^Z ^C ^E - up ^X - down ^D - right ^S - left ^W - scroll down 1 line ^Z - scroll up 1 line ^R - page up ^C - page down ^F - word right ^A - word left ^Q^D - goto end of line ^Q^S - goto start of line ^Q^R - goto start of file ^Q^C - goto end of file ^Q^F - find ^Q^A - find and replace Once you learn the 'magic diamond' of EXDS with ^Q extensions, function keys and mouse become irrelevant. Following are the rest of the key commands: ^B - word wrap text until the next double newline ^G - delete character under cursor ^H - delete character left of cursor ^I - insert tab char ^J - goto line ^K - prefix for file/block operations ^L - repeat last find ^M - insert newline ^N - insert newline ^O - prefix for display and change mode flags ^P - inline literal ^T - delete from cursor to start of next string ^U - undo ^V - toggle insert/overwrite mode ^Y - delete cursor line ^QI - goto line ^QL - refresh screen ^QM - get new right margin ^QY - delete from cursor to end of line ^KB - toggle mark block ^KC - copy marked block to selection ^KD - exit if file not modified ^KF - open new file ^KH - help ^KK - toggle mark block ^KM - record macro ^KP - play macro ^KQ - exit if file not modified ^KR - read a file and paste into cursor position ^KS - save and continue ^KT - get new tab size ^KV - paste block buffer into cursor position ^KW - write marked block to file ^KX - exit if file not modified ^KY - cut marked block to block buffer Under X the following function keys are operational: ---------------------------------------------------- (key) (description) (same as) ---------------------------------------------------------------------- F1 help ^KH F2 file save (if modified) ^KS F3 open new file (prompts to save if file modified) ^KF F4 search for matching parentheses (){}[] F5 prompt for and execute user command line F6 get and change directory F7 toggle mark block ^KB F8 toggle mark block ^KK F9 fire up a new editor with a given file name F10 open an rxvt terminal in the current directory ^KZ Ins toggle insert/overwrite ^V shf-Del cut marked block to X clipboard ctl-Ins copy marked block to X clipboard shf-Ins paste from X clipboard Del delete character under cursor or marked block ^G Home move cursor to beginning of line ^QS End move cursor to end of line ^QD PgUp move up one screen ^R PgDn move down one screen ^C Navigation keys (arrows, Home, End, PgUp and PgDn) are operational. Shift navigation marks text. ^Home and ^End go to BOF and EOF, respectively. Control left arrow and right arrow move by word. Left mouse button click: set text cursor. Right mouse button click: set text cursor or scroll text. Left mouse button double click: select word under cursor. Left mouse button click and drag: marks and copies a text block to X clipboard. Middle mouse button click: paste from X clipboard. Middle mouse button drag: marks a text block. Modes and flags: ---------------- Changing modes of operation is performed by ^o followed by one of the displayed upper/lower case characters MFOCTBA. This will toggle the specific flag. Modes are indicated as being on by displaying their upper case character. The file modified M flag can be toggled off explicitly. The block mark B active flag indicates a complex state. Toggle it off with the block mark key sequences, NOT with ^oB. M : file modified set by anything that modifies file. F : word wrap at text entry toggle with ^oF O : overwrite toggle with ^oO, ^V or function key Insert C : search is case sensitive toggle with ^oC T : expand/compress tabs toggle with ^oT B : block mark active toggle ^KB, ^KK, F7 or F8 (don't with ^oB) A : replace all occurences flag toggle with ^oA The editor does display tab chars as multiple spaces. Tab (0x09) chars are displayed as tabsize spaces. Default tab size is 4. To change tab-width to 8 the command line is 'edx -t8'. To change from within the editor use ^KT. To go to a specified line on initial file opening, the command line is 'edx -+507 somefile'. The minus plus sequence is required. Input a ^J to go to a line from within e. Turning on (F)ill mode enables wordwrap during text entry. Block reformat wraps the text at the right screen edge until a double newline is encounterd. To reformat a paragraph, place the cursor at the desired point of reformat and enter a ^b. To change the right margin use ^Q^M. As noted, undo and redo are available. ^U for undo, ^K^U for redo. A complete record of the edit session is maintained. Undoing all actions in the undo buffer will reset the Marked flag. X clipboard is somewhat integrated. ^K^C copies the marked block to the X clipboard and the right mouse button pastes from it. While ^K^Y deletes the marked block and copies the deleted marked block to the block buffer and ^K^V copies the deleted block from the block buffer to the point of the text cursor. Cut, copy and paste wrt the X clipboard by Shift-Del, Control-Insert and Shift-Insert, respectively. Find and 'Search and Replace' will pick up any marked blocks, text under the cursor or user input in that order. Found text is highlighted. Set replace ALL flag wth ^oA option before running SAR to replace all occurences. For general dialog entry if the first character entered is not ^H, ^C, End, Esc or Enter, the dialog string is discarded. End moves the cursor to the end of the dialog string. For a complete understanding of the operation of edx, study the code. It is the ultimate authority on operation. Remember, when all else fails READ THE SCREEN. ------------------------------------------------------------------------------ sunclock-3.57/editkit/Imakefile0000644000000000000000000000267710514173045013441 0ustar XCOMM Should install to /usr or /usr/local ?? #ifndef DESTDIR DESTDIR=/usr #endif XCOMM Name of man subdirectory of DESTDIR: #ifndef MANDIR MANDIR=/X11R6/man/man1 #endif XCOMM Name of bin subdirectory of DESTDIR: /X11R6/bin or maybe just /bin #ifndef BINDIR BINDIR=/X11R6/bin #endif XCOMM Name of share subdirectory of DESTDIR_XRMAP: #ifndef SHAREDIR SHAREDIR=$(DESTDIR)/share/editkit #endif XCOMM Name of DOCDIR's subdirectories of DESTDIR: #ifndef DOCDIR DOCDIR=/X11R6/lib/X11/doc #endif #ifndef DOCHTMLDIR DOCHTMLDIR=/X11R6/lib/X11/doc/html #endif XCOMM XCOMM Normally -- except for new architectures -- you should be done there. XCOMM XCOMM Compile options: XCOMM CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" -DDOCDIR="\"$(DOCDIR)\"" LOCAL_LIBRARIES=-lX11 DEPLIBS= # I don't know what I'm doing, and I hate imake! SRCS=x11.c OBJS=x11.o ComplexProgramTarget(emx) x11.o: ln -sf MANUAL.emacs emx.man $(CC) $(CFLAGS) -DEMACS -o x11.o -c x11.c install.man:: if [ -r $(DESTDIR)$(MANDIR)/emx.1.gz ] ; \ then gzip -f $(DESTDIR)$(MANDIR)/emx.1 ; fi if [ -r $(DESTDIR)$(MANDIR)/emx.1x.gz ] ; \ then gzip -f $(DESTDIR)$(MANDIR)/emx.1x ; fi install:: mkdir -p $(SHAREDIR) cp -f rc.example $(SHAREDIR)/rc.common cd $(SHAREDIR); ln -sf rc.common emxrc cp -f README $(SHAREDIR) clean:: rm -f core *~ emx.man realclean:: clean rm -f Makefile sunclock-3.57/editkit/messages.def0000644000000000000000000001570207652477065014132 0ustar #define SELECT_REALLOC "select realloc." #define CANT_SELECT "Can't select." #define FONTS_NOT_FOUND "Fonts not found." #define HELP "Help" #define EXECL_FAILED "Execl failed!" #define FORK_ERROR "Fork error" #define SAVE_AS "Save as" #define OPEN "Open" #define MAIN_BUFFER_FULL "Main buffer full!" #define GOTO_LINE "Goto line" #define COMMAND "Command" #define GOTO_COLUMN "Goto Column" #define SEARCH_FOR "Search for" #define REPLACE_WITH "Replace with" #define ASK_REPLACE "Replace with %s ? (Y/N/Esc/!)" #define SAR_FOR "SAR for" #define TAB_SIZE "Tab size" #define WRAP_COL "Wrap col" #define READ_FILE "Read file" #define WRITE_FILE "Write file" #define ALT_KEY_BINDINGS "Alt-key (Escape ! key) bindings ?" #ifndef EXTHELP #ifdef EMACS #ifdef MINIMAL static char HELP_STR[] = "EMX (mini EMacs clone for X) Ver. "VERSION"\0\ Usage: emx [-fn font] [-j line#] [-t tab#] [-w width] [-h height]\0\ [-bg color] [-fg color] [-hibg color] [-hifg color] [-cr color]\0\ [-rc rcfile] [file]\0\ MFOCTBNAE flags: Mod, Fill, Overwr, Case, Tab, Blk mark, iNdent, rep All, Edit\0\ The Mod flag must be reset (with ^OM) to exit or load new file.\0\0\ F1 show help F2 save F3 open new file F5 exec command\0\ F6 Chgdir F10 rxvt Alt-? (Esc-!?) private key bindings\0\ Shift-Del cut Shift-Ins paste ^Ins copy block to X clipboard\0\ ^A goto bol ^E goto eol ^G goto line ^O? switch a flag\0\ ^B left ^F right ^N down ^P up\0\ ^D del char ^H del prev char ^J insert line ^K del to eol\0\ ^Q? literal char ^S ^R find string ^U repeat SAR ^T transpose\0\ ^V page down ^W cut block ^Y paste block ^_ undo\0\ E B word left E F word right E N scroll down E P scroll up\0\ E < start of file E > end of file E _ redo E % find & replace\0\ E W copy block E V page up E . set mark E X switch marks\0\ E L lowcase block E U upcase block E J fill paragr E Q format paragr\0\ ^XC (^XQ) exit ^XH show help ^XS save ^XF open new file\0\ ^XI insert file ^XV write block ^XW save as ^XK del word\0\ ^XM togl rec mac ^XP play macro ^XT get tab size ^XU delete line\0\ Press any key to continue ..."; #else static char HELP_STR[] = "EMX (mini EMacs clone for X) Ver. "VERSION"\0\ Usage: emx [-fn font] [-j line#] [-t tab#] [-w width] [-h height]\0\ [-bg color] [-fg color] [-hibg color] [-hifg color] [-cr color]\0\ [-rc rcfile] [file]\0\0\ MFOCTBNAE flags: Mod, Fill, Overwr, Case, Tab, Blk mark, iNdent, rep All, Edit\0\ The Mod flag must be reset (with ^OM) to exit or load new file.\0\0\ F1 show help F2 save F3 open new file F5 exec command\0\ F6 Chgdir F9 open new editor session F10 rxvt\0\ Shift-Del cut Shift-Ins paste ^Ins copy block to X clipboard\0\ Alt-? (Esc-!?) list of private key bindings\0\0\ ^A goto bol ^E goto eol ^G goto line ^O? switch a flag\0\ ^B left ^F right ^N down ^P up\0\ ^D del char ^H del prev char ^J insert line ^K del to eol\0\ ^Q? literal char ^S ^R find string ^U repeat SAR ^T transpose\0\ ^V page down ^W cut block ^Y paste block ^_ undo\0\0\ E B word left E F word right E N scroll down E P scroll up\0\ E < start of file E > end of file E _ redo E % find & replace\0\ E W copy block E V page up E . set mark E X switch marks\0\ E L lowcase block E U upcase block E J fill paragr E Q format paragr\0\0\ ^XC (^XQ) exit ^XH show help ^XS save ^XF open new file\0\ ^XI insert file ^XV write block ^XW save as ^XD del word\0\ ^XM togl rec mac ^XP play macro ^XT get tab size ^XK delete line\0\0\ Press any key to continue ..."; #endif /* MINIMAL */ #endif /* EMACS */ #ifdef WORDSTAR #ifdef MINIMAL /* Help screen -- rewrite to suit your own tastes */ static char HELP_STR[] = "EDX (EDitor for X) Ver. "VERSION"\0\ Usage: edx [-fn font] [-j line#] [-t tab#] [-w width] [-h height] [-bg color]\0\ [-fg color] [-hibg color] [-hifg color] [-cr color] [-rc rcfile] [file]\0\ ^O[mfoctbnae] (*Mod, Fill, Overwr, Case, Tab, Blk mark, iNdent, rep All, Edit)\0\ *NOTE: M flag must be reset to exit or load new file.\0\ F6 Chgdir Esc-!? Alt-? private key bindings (?=A...Z)\0\ Shift-Del cut ^Ins copy Shift-Ins paste\0\ ^QS goto bol ^KQ ^KX exit ^KH F1 show help\0\ ^QD goto eol ^KB mark block on ^KR read file\0\ ^QR start of file ^KK mark block off ^KF F3 open new file\0\ ^QC end of file ^KY cut block ^KS F2 save & resume\0\ ^QF find ^KC copy block ^KD reset M flag\0\ ^QA find & repl ^KV paste block ^KZ F10 rxvt\0\ ^QY del to eol ^KW write block F5 exec command\0\ ^QM get margin ^KT get tab size ^QP goto prev pos\0\ ^QU uppercase blk ^QL lowercase blk ^QT transpose characters\0\ ^A word left ^R page up ^Z scroll up ^I insert tab\0\ ^F word right ^C page down ^W scroll dn ^J goto line\0\ ^T del word ^D right ^V toggle insert ^L repeat find\0\ ^G del char ^S left ^M ^N put newline ^B ^QB justify par.\0\ ^H del prev char ^E up ^KP play macro ^U undo\0\ ^Y delete line ^X down ^KM togl rec mac Alt-U redo\0\ Press any key to continue ..."; #else /* Help screen -- rewrite to suit your own tastes */ static char HELP_STR[] = "EDX (EDitor for X) Ver. "VERSION"\0\0\ Usage: edx [-fn font] [-jump line#] [-tab skip] [-w width] [-h height]\0\ [-bg color] [-fg color] [-hibg color] [-hifg color] [-cr color]\0\ [-rc rcfile] [file]\0\0\ ^O[mfoctbnae] (*Mod, Fill, Overwr, Case, Tab, Blk mark, iNdent, rep All, Edit)\0\ *NOTE: M flag must be reset to exit or load new file.\0\0\ F6 Chgdir Esc-!? Alt-? private key bindings (?=A...Z)\0\ Shift-Del cut ^Ins copy Shift-Ins paste\0\ ^QS goto bol ^KQ ^KX exit ^KH F1 show help\0\ ^QD goto eol ^KB mark block on ^KR read file\0\ ^QR start of file ^KK mark block off ^KF F3 open new file\0\ ^QC end of file ^KY cut block ^KS F2 save & resume\0\ ^QF find ^KC copy block ^KD reset M flag\0\ ^QA find & repl ^KV paste block ^KZ F10 rxvt\0\ ^QY del to eol ^KW write block F5 exec command\0\ ^QM get margin ^KT get tab size ^QP goto prev pos\0\ ^QU uppercase blk ^QL lowercase blk ^QT transpose characters\0\ ^A word left ^R page up ^Z scroll up ^I insert tab\0\ ^F word right ^C page down ^W scroll dn ^J goto line\0\ ^T del word ^D right ^V toggle insert ^L repeat find\0\ ^G del char ^S left ^M ^N put newline ^B ^QB justify par.\0\ ^H del prev char ^E up ^KP play macro ^U undo\0\ ^Y delete line ^X down ^KM togl rec mac ^KU redo\0\0\ Press any key to continue ..."; #endif /* MINIMAL */ #endif /* WORDSTAR */ #endif /* EXTHELP */ sunclock-3.57/editkit/Makefile0000644000000000000000000007511411053561270013264 0ustar # Makefile generated by imake - do not edit! # $Xorg: imake.c,v 1.6 2001/02/09 02:03:15 xorgcvs Exp $ # ---------------------------------------------------------------------- # Makefile generated from "Imake.tmpl" and # $Xorg: Imake.tmpl,v 1.4 2000/08/17 19:41:46 cpqbld Exp $ # $XdotOrg: util/cf/Imake.tmpl,v 1.17 2006/04/15 15:55:25 herrb Exp $ # # # # # $XFree86: xc/config/cf/Imake.tmpl,v 3.155 2003/12/24 18:58:41 dickey Exp $ # ---------------------------------------------------------------------- all:: .SUFFIXES: .i # $XdotOrg: util/cf/Imake.cf,v 1.12 2005/11/08 06:33:24 jkj Exp $ # $Xorg: Imake.cf,v 1.4 2000/08/17 19:41:45 cpqbld Exp $ # $XFree86: xc/config/cf/Imake.cf,v 3.88 2003/12/16 21:30:21 herrb Exp $ # ----------------------------------------------------------------------- # site-specific configuration parameters that need to come before # the platform-specific parameters - edit site.def to change # site: $TOG: site.sample /main/r64_final/1 1998/02/05 16:28:49 kaleb $ # site: $XFree86: xc/config/cf/site.def,v 3.24 2000/06/25 20:17:29 dawes Exp $ # $XFree86: xc/config/cf/xf86site.def,v 3.186 2003/06/25 18:06:22 eich Exp $ # ---------------------------------------------------------------------- # platform-specific configuration parameters - edit linux.cf to change # $XdotOrg: util/cf/linux.cf,v 1.31 2005/10/21 19:10:27 ajax Exp $ # platform: $Xorg: linux.cf,v 1.3 2000/08/17 19:41:47 cpqbld Exp $ # platform: $XFree86: xc/config/cf/linux.cf,v 3.220 2003/12/30 22:38:33 tsi Exp $ # operating system: Linux 2.6.26-1.slh.4-sidux-amd64 x86_64 [ELF] (2.6.26) # libc: (6.7.0) # binutils: (218) # $Xorg: lnxLib.rules,v 1.3 2000/08/17 19:41:47 cpqbld Exp $ # $XFree86: xc/config/cf/lnxLib.rules,v 3.52 2003/10/31 20:49:03 herrb Exp $ # $XdotOrg: util/cf/xorg.cf,v 1.53 2005/10/03 16:08:44 alanc Exp $ # $Xorg: xfree86.cf,v 1.4 2000/08/17 19:41:49 cpqbld Exp $ XORG_VERSION_CURRENT = (((6) * 10000000) + ((9) * 100000) + ((0) * 1000) + 0) RELEASE_VERSION = RELEASE-1 AFB_DEFS = -DUSE_AFB DRIVERSDKDIR = $(USRLIBDIR)/Server DRIVERSDKMODULEDIR = $(USRLIBDIR)/Server/modules DRIVERSDKINCLUDEDIR = $(USRLIBDIR)/Server/include XF86SRC = $(SERVERSRC)/hw/xfree86 XF86COMSRC = $(XF86SRC)/common XF86PARSERSRC = $(XF86SRC)/parser XF86OSSRC = $(XF86SRC)/os-support XF86DRIVERSRC = $(XF86SRC)/drivers DRIVERSRC = $(XF86DRIVERSRC) XFREE86DOCDIR = $(DOCDIR) XFREE86PSDOCDIR = $(DOCPSDIR) XFREE86PDFDOCDIR = $(DOCPDFDIR) XFREE86HTMLDOCDIR = $(DOCHTMLDIR) XFREE86JAPANESEDOCDIR = $(DOCDIR)/Japanese # $Xorg: xf86.rules,v 1.3 2000/08/17 19:41:48 cpqbld Exp $ # $XFree86: xc/config/cf/xf86.rules,v 3.34tsi Exp $ SELINUX_LDFLAGS = SELINUX_INCLUDES = -I/usr/include/selinux SELINUX_CFLAGS = -DHAVE_SELINUX SELINUX_LIBS = -lselinux # ---------------------------------------------------------------------- # site-specific configuration parameters that go after # the platform-specific parameters - edit site.def to change # site: $TOG: site.sample /main/r64_final/1 1998/02/05 16:28:49 kaleb $ # site: $XFree86: xc/config/cf/site.def,v 3.24 2000/06/25 20:17:29 dawes Exp $ # --------------------------------------------------------------------- # Imake rules for building libraries, programs, scripts, and data files # rules: $Xorg: Imake.rules,v 1.3 2000/08/17 19:41:46 cpqbld Exp $ # rules: $XdotOrg: util/cf/Imake.rules,v 1.11 2005/11/08 06:33:24 jkj Exp $ # # # # # rules: $XFree86: xc/config/cf/Imake.rules,v 3.128 2003/11/15 03:25:17 dawes Exp $ .PHONY: all interfaces install install.man install.lib install.sdk depend includes cleandir _NULLCMD_ = @ echo -n X_BYTE_ORDER = X_LITTLE_ENDIAN GLIDE2INCDIR = GLIDE3INCDIR = /usr/include/glide3 GLIDE3LIBNAME = glide3 TKLIBNAME = tk8.4 TKLIBDIR = /usr/lib TCLLIBNAME = tcl8.4 TCLIBDIR = /usr/lib PATHSEP = / SHELL = /bin/sh -e TOP = . CURRENT_DIR = . IMAKE = imake DEPEND = gccmakedep MKDIRHIER = mkdir -p REVPATH = revpath EXPORTLISTGEN = RMAN = /usr/bin/rman RMANBASENAME = rman RMANOPTIONS = CONFIGSRC = $(TOP)/config IMAKESRC = $(CONFIGSRC)/imake DEPENDSRC = $(CONFIGSRC)/util INCROOT = /usr/include USRLIBDIR = /usr/lib VARDIR = /var VARLIBDIR = $(VARDIR)/lib SYSTEMUSRLIBDIR = /usr/lib SYSTEMUSRINCDIR = /usr/include SHLIBDIR = /usr/lib LINTLIBDIR = $(USRLIBDIR)/lint MANPATH = /usr/share/man MANSOURCEPATH = $(MANPATH)/man MANDIR = $(MANSOURCEPATH)$(MANSECT) SYSCALLMANDIR = $(MANSOURCEPATH)$(SYSCALLMANSECT) LIBMANDIR = $(MANSOURCEPATH)$(LIBMANSECT) DRIVERMANDIR = $(MANSOURCEPATH)4 FILEMANDIR = $(MANSOURCEPATH)$(FILEMANSECT) GAMEMANDIR = $(MANSOURCEPATH)$(GAMEMANSECT) MISCMANDIR = $(MANSOURCEPATH)7 ADMMANDIR = $(MANSOURCEPATH)$(ADMMANSECT) ICONDIR = "/usr/share/icons" XCURSORPATH = "~/.icons:/usr/share/icons:/usr/share/pixmaps" DRIVERMANDIR = $(MANSOURCEPATH)4 LOGDIRECTORY = $(VARDIR)/log VARRUNDIR = $(VARDIR)/run VARDBDIR = $(VARDIR)/lib AR = ar clq # Nice try but useless: make will inherit BOOTSTRAPCFLAGS # from top Makefile BOOTSTRAPCFLAGS = CC = gcc AS = gcc -c -x assembler .SUFFIXES: .cc CXX = c++ CXXFILT = c++filt CXXLIB = -lstdc++ CXXDEBUGFLAGS = -g -O2 -fno-strict-aliasing CXXDEPENDINCLUDES = CXXEXTRA_DEFINES = CXXEXTRA_INCLUDES = CXXSTD_DEFINES = -Dlinux -D__amd64__ -D_POSIX_C_SOURCE=199309L -D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(CXXPROJECT_DEFINES) CXXOPTIONS = CXXINCLUDES = $(INCLUDES) $(TOP_INCLUDES) $(CXXEXTRA_INCLUDES) CXXDEFINES = $(CXXINCLUDES) $(CXXSTD_DEFINES) $(THREADS_CXXDEFINES) $(DEFINES) $(CXXEXTRA_DEFINES) CXXFLAGS = $(CXXDEBUGFLAGS) $(CXXOPTIONS) $(THREADS_CXXFLAGS) $(CXXDEFINES) COMPRESS = compress GZIPCMD = gzip CPP = cpp $(STD_CPP_DEFINES) RAWCPP = cpp -undef $(STD_CPP_OPTIONS) PREPROCESSCMD = gcc -E $(STD_CPP_DEFINES) INSTALL = install INSTALLFLAGS = -c LD = gcc -nostdlib LEX = flex -l M4 = m4 M4FLAGS = LEXLIB = -lfl YACC = bison -y CCYACC = bison -y LINT = lint LINTLIBFLAG = -C LINTOPTS = -axz LN = ln -s MAKE = make MV = mv -f CP = cp RANLIB = ranlib RANLIBINSTFLAGS = RM = rm -f PERL = perl PERLOPTS = PERLENVSETUP = env LC_ALL=C MANSECT = 1 SYSCALLMANSECT = 2 LIBMANSECT = 3 DRIVERMANSECT = 4 FILEMANSECT = 5 GAMEMANSECT = 6 MISCMANSECT = 7 ADMMANSECT = 8 MANSRCSECT = s MANNEWSECT = n PROJECTMANSUFFIX = x MANSUFFIX = $(MANSECT)$(PROJECTMANSUFFIX) SYSCALLMANSUFFIX = $(SYSCALLMANSECT)$(PROJECTMANSUFFIX) LIBMANSUFFIX = $(LIBMANSECT)$(PROJECTMANSUFFIX) DRIVERMANSUFFIX = 4x FILEMANSUFFIX = $(FILEMANSECT)$(PROJECTMANSUFFIX) GAMEMANSUFFIX = $(GAMEMANSECT)$(PROJECTMANSUFFIX) MISCMANSUFFIX = 7x ADMMANSUFFIX = $(ADMMANSECT)$(PROJECTMANSUFFIX) ADMINMANSUFFIX = 8 MANSRCSUFFIX = man MANNEWSUFFIX = _man MANDEFS = -D__apploaddir__=$(XAPPLOADDIR) -D__filemansuffix__=$(FILEMANSECT)$(PROJECTMANSUFFIX) -D__osfilemansuffix__=$(FILEMANSECT) -D__libmansuffix__=$(LIBMANSECT)$(PROJECTMANSUFFIX) -D__oslibmansuffix__=$(LIBMANSECT) -D__mansuffix__=$(MANSECT)$(PROJECTMANSUFFIX) -D__osmansuffix__=$(MANSECT) -D__syscallmansuffix__=$(SYSCALLMANSECT)$(PROJECTMANSUFFIX) -D__ossysmansuffix__=$(SYSCALLMANSECT) -D__gamemansuffix__=$(GAMEMANSECT)$(PROJECTMANSUFFIX) -D__osgamemansuffix__=$(GAMEMANSECT) -D__miscmansuffix__=$(MISCMANSECT)$(PROJECTMANSUFFIX) -D__osmiscmansuffix__=$(MISCMANSECT) -D__admmansuffix__=$(ADMMANSECT)$(PROJECTMANSUFFIX) -D__osadmmansuffix__=$(ADMMANSECT) -D__miscmansuffix__=$(MISCMANSECT)$(PROJECTMANSUFFIX) -D__osmiscmansuffix__=$(MISCMANSECT) -D__drivermansuffix__=$(DRIVERMANSECT)$(PROJECTMANSUFFIX) -D__osdrivermansuffix__=$(DRIVERMANSECT) -D__adminmansuffix__=$(ADMINMANSUFFIX) -D__projectroot__=$(PROJECTROOT) -D__xconfigfile__=$(XCONFIGFILE) -D__xconfigdir__=$(XCONFIGDIR) -D__xlogfile__=$(XLOGFILE) -D__xservername__=$(XSERVERNAME) -D__appmansuffix__=$(MANSECT)$(PROJECTMANSUFFIX) $(XORGMANDEFS) $(VENDORMANDEFS) COMPRESSMANCMD = gzip -n TROFF = groff -Tps NROFF = nroff MSMACROS = -ms MANMACROS = -man TBL = tbl EQN = eqn NEQN = neqn COL = col COLFLAGS = -b MODCC = gcc MODCPP = cpp MODCFLAGS = $(CFLAGS) MODAS = gcc -c -x assembler MODASFLAGS = MODLD = gcc -nostdlib MODLDFLAGS = MODLDCOMBINEFLAGS = -r MODAR = ar clq MODRANLIB = ranlib DVIPS = dvips LATEX = latex STD_INCLUDES = STD_CPP_OPTIONS = -traditional STD_CPP_DEFINES = -traditional -Dlinux -D__amd64__ -D_POSIX_C_SOURCE=199309L -D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(PROJECT_DEFINES) STD_DEFINES = -Dlinux -D__amd64__ -D_POSIX_C_SOURCE=199309L -D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(PROJECT_DEFINES) EXTRA_LOAD_FLAGS = EXTRA_LDOPTIONS = EXTRA_LIBRARIES = TAGS = ctags PARALLELMFLAGS = SHAREDCODEDEF = SHLIBDEF = SHLIBLDFLAGS = -shared $(SHLIBGLOBALSFLAGS) NOSTDLIB = -nostdlib POSTNOSTDLIB = -Wl,-Bstatic -lgcc -Wl,-Bdynamic PICFLAGS = -fPIC CXXPICFLAGS = -fPIC PROTO_DEFINES = -DFUNCPROTO=15 -DNARROWPROTO INSTPGMFLAGS = INSTBINFLAGS = -m 0755 INSTUIDFLAGS = -m 4711 INSTLIBFLAGS = -m 0644 INSTINCFLAGS = -m 0444 INSTMANFLAGS = -m 0444 INSTDATFLAGS = -m 0444 INSTKMEMFLAGS = -m 4711 PROJECTROOT = /usr CDEBUGFLAGS = -g -O2 -fno-strict-aliasing CCOPTIONS = ALLINCLUDES = $(INCLUDES) $(EXTRA_INCLUDES) $(TOP_INCLUDES) $(INSTALLED_INCLUDES) $(STD_INCLUDES) ALLDEFINES = $(ALLINCLUDES) $(STD_DEFINES) $(PROTO_DEFINES) $(THREADS_DEFINES) $(MODULE_DEFINES) $(DEFINES) $(EXTRA_DEFINES) CFLAGS = $(CDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(MODULE_CFLAGS) $(ALLDEFINES) LINTFLAGS = $(LINTOPTS) -DLINT $(ALLDEFINES) $(DEPEND_DEFINES) LDPRELIB = $(INSTALLED_LIBS) LDPOSTLIB = LDOPTIONS = $(CDEBUGFLAGS) $(CCOPTIONS) $(EXTRA_LDOPTIONS) $(THREADS_LDFLAGS) $(LOCAL_LDFLAGS) $(LDPRELIBS) CXXLDOPTIONS = $(CXXDEBUGFLAGS) $(CXXOPTIONS) $(EXTRA_LDOPTIONS) $(THREADS_CXXLDFLAGS) $(LOCAL_LDFLAGS) $(LDPRELIBS) LDLIBS = $(LDPOSTLIBS) $(THREADS_LIBS) $(SYS_LIBRARIES) $(EXTRA_LIBRARIES) CCLINK = $(CC) CXXLINK = $(CXX) LDSTRIPFLAGS = -x LDCOMBINEFLAGS = -r DEPENDFLAGS = DEPEND_DEFINES = # Not sure this belongs here TKLIBDIR = /usr/lib TKINCDIR = /usr/include TKLIBNAME = tk8.4 TKLIBRARY = -L$(TKLIBDIR) -l$(TKLIBNAME) TCLLIBDIR = /usr/lib TCLINCDIR = /usr/include TCLLIBNAME = tcl8.4 TCLLIBRARY = -L$(TCLLIBDIR) -l$(TCLLIBNAME) MACROFILE = linux.cf RM_CMD = $(RM) IMAKE_DEFINES = IMAKE_WARNINGS = -Wundef IRULESRC = $(CONFIGDIR) IMAKE_CMD = $(IMAKE) -DUseInstalled -I$(IRULESRC) $(IMAKE_DEFINES) $(IMAKE_WARNINGS) ICONFIGFILES = $(IRULESRC)/Imake.tmpl $(IRULESRC)/X11.tmpl $(IRULESRC)/site.def $(IRULESRC)/$(MACROFILE) $(IRULESRC)/xfree86.cf $(IRULESRC)/xf86.rules $(IRULESRC)/xorgsite.def $(IRULESRC)/host.def $(EXTRA_ICONFIGFILES) # $Xorg: X11.rules,v 1.4 2000/08/17 19:41:46 cpqbld Exp $ # $XFree86: xc/config/cf/X11.rules,v 1.6 2001/01/17 16:22:31 dawes Exp $ # ---------------------------------------------------------------------- # X Window System Build Parameters and Rules # $XdotOrg: util/cf/X11.tmpl,v 1.54 2006/04/15 15:55:25 herrb Exp $ # $Xorg: X11.tmpl,v 1.6 2000/08/17 19:41:46 cpqbld Exp $ # # # # # $XFree86: xc/config/cf/X11.tmpl,v 1.248 2004/02/16 04:07:37 dawes Exp $ XORGRELSTRING = `echo 6 9 0 | sed -e 's/ /./g' -e 's/^/Version\\\ /'` XORGMANNAME = X Version 11 STICKY_DEFINES = -DHAS_STICKY_DIR_BIT FCHOWN_DEFINES = -DHAS_FCHOWN # ----------------------------------------------------------------------- # X Window System make variables; these need to be coordinated with rules XTOP = $(TOP) BINDIR = /usr/bin BUILDINCROOT = $(TOP)/exports BUILDINCDIR = $(BUILDINCROOT)/include BUILDINCTOP = ../.. BUILDLIBDIR = $(TOP)/exports/lib BUILDLIBTOP = ../.. BUILDBINDIR = $(TOP)/exports/bin BUILDBINTOP = ../.. BUILDMODULEDIR = $(BUILDLIBDIR)/modules BUILDI18NDIR = $(BUILDLIBDIR)/locale BUILDMODULETOP = $(BUILDLIBTOP)/.. XBUILDINCROOT = $(XTOP)/exports XBUILDINCDIR = $(XBUILDINCROOT)/include/X11 XBUILDINCTOP = ../../.. XBUILDBINDIR = $(XBUILDINCROOT)/bin INCDIR = $(INCROOT) ADMDIR = /usr/adm LIBDIR = /usr/lib/X11 SHAREDIR = /usr/share/X11 LIBEXECDIR = /usr/libexec MODULEDIR = $(USRLIBDIR)/modules TOP_X_INCLUDES = XBINDIR = $(PROJECTROOT)/bin INSTSRCDIR = /usr/src ETCX11DIR = /etc/X11 CONFDIR = $(ETCX11DIR) DOCDIR = $(LIBDIR)/doc DOCHTMLDIR = $(DOCDIR)/html DOCPSDIR = $(DOCDIR)/PostScript DOCPDFDIR = $(DOCDIR)/PDF FONTDIR = /usr/share/fonts/X11 ENCODINGSDIR = /usr/share/fonts/X11/encodings XINITDIR = $(LIBDIR)/xinit XDMDIR = $(LIBDIR)/xdm XDMVARDIR = $(VARLIBDIR)/xdm TWMDIR = $(LIBDIR)/twm XSMDIR = $(LIBDIR)/xsm NLSDIR = $(LIBDIR)/nls XLOCALEDIR = $(LIBDIR)/locale LBXPROXYDIR = $(LIBDIR)/lbxproxy PROXYMANAGERDIR = $(LIBDIR)/proxymngr XPRINTDIR = $(LIBDIR)/xserver XAPPLOADDIR = /etc/X11/app-defaults FONTCFLAGS = -t INSTAPPFLAGS = $(INSTDATFLAGS) RGB = $(XBINDIR)/rgb FONTC = $(XBINDIR)/bdftopcf MKFONTSCALE = $(XBINDIR)/mkfontscale MKFONTDIR = $(XBINDIR)/mkfontdir MKHTMLINDEX = $(XBINDIR)/mkhtmlindex UCS2ANY = $(XBINDIR)/ucs2any BDFTRUNCATE = $(XBINDIR)/bdftruncate UCSMAPPREFIX = $(FONTDIR)/util/map- XCURSORGEN = $(XBINDIR)/xcursorgen HTMLINDEXCMD = HtmlIndexCmd DOCUTILSRC = $(XTOP)/doc/util CLIENTSRC = $(TOP)/clients DEMOSRC = $(TOP)/demos XDOCMACROS = $(DOCUTILSRC)/macros.t XIDXMACROS = $(DOCUTILSRC)/indexmacros.t PROGRAMSRC = $(TOP)/programs LIBSRC = $(XTOP)/lib FONTSRC = $(XTOP)/fonts ENCODINGSSRC = $(FONTSRC)/encodings INCLUDESRC = $(BUILDINCROOT)/include XINCLUDESRC = $(INCLUDESRC)/X11 SERVERSRC = $(XTOP)/programs/Xserver CONTRIBSRC = $(XTOP)/../contrib UNSUPPORTEDSRC = $(XTOP)/unsupported DOCSRC = $(XTOP)/doc RGBSRC = $(XTOP)/programs/rgb BDFTOPCFSRC = $(PROGRAMSRC)/bdftopcf MKFONTDIRSRC = $(PROGRAMSRC)/mkfontdir FONTSERVERSRC = $(PROGRAMSRC)/xfs FONTINCSRC = $(XTOP)/include/fonts EXTINCSRC = $(XTOP)/include/extensions FTSOURCEDIR = FreeTypeSrcDir DRMSRCDIR = $(TOP)/extras/drm MESASRCDIR = $(TOP)/extras/Mesa OGLSAMPLESRCDIR = $(TOP)/extras/ogl-sample PSWRAPSRC = $(XTOP)/config/pswrap TRANSCOMMSRC = $(LIBSRC)/xtrans TRANS_INCLUDES = -I$(TRANSCOMMSRC) CONNECTION_FLAGS = -DUNIXCONN -DTCPCONN $(STICKY_DEFINES) $(FCHOWN_DEFINES) -DIPv6 XTRANS_FAILDEFINES = -DFAIL_HARD VENDORMANNAME = X.Org VENDORMANVERSION = `echo 6 9 0 | sed -e 's/ /./g' -e 's/^/Version\\\ /'` XORGMANDEFS = -D__xorgversion__="\"$(XORGRELSTRING)\" \"$(XORGMANNAME)\"" VENDORMANDEFS = -D__vendorversion__="$(VENDORMANVERSION) $(VENDORMANNAME)" VENDORNAME = The X.Org Foundation VENDORNAMESHORT = X.Org VENDORWEBSUPPORT = http://wiki.X.Org VENDORSUPPORTDEFS = -D__VENDORDWEBSUPPORT__='"$(VENDORWEBSUPPORT)"' XKBDEFRULES = xorg XKBDEFRULESDEFS = -D__XKBDEFRULES__='"$(XKBDEFRULES)"' XCONFIGFILE = xorg.conf XCONFIGDIR = $(LIBDIR) XLOGFILE = Xorg XSERVERNAME = Xorg XENVLIBDIR = $(USRLIBDIR) CLIENTENVSETUP = LD_LIBRARY_PATH=$(XENVLIBDIR) XLOCALEDIR=$(BUILDLIBDIR)/locale # $Xorg: lnxLib.tmpl,v 1.3 2000/08/17 19:41:47 cpqbld Exp $ # $XFree86: xc/config/cf/lnxLib.tmpl,v 3.19 2003/10/15 22:47:48 herrb Exp $ XLIBSRC = $(LIBSRC)/X11 SOXLIBREV = 6.2 DEPXONLYLIB = XONLYLIB = -lX11 LINTXONLY = $(LINTLIBDIR)/llib-lX11.ln DEPXLIBONLY = $(DEPXONLYLIB) XLIBONLY = $(XONLYLIB) LINTXONLYLIB = $(LINTXONLY) XEXTLIBSRC = $(LIBSRC)/Xext SOXEXTREV = 6.4 DEPEXTENSIONLIB = EXTENSIONLIB = -lXext LINTEXTENSION = $(LINTLIBDIR)/llib-lXext.ln LINTEXTENSIONLIB = $(LINTEXTENSION) DEPXLIB = $(DEPEXTENSIONLIB) $(DEPXONLYLIB) XLIB = $(EXTENSIONLIB) $(XONLYLIB) LINTXLIB = $(LINTXONLYLIB) XSSLIBSRC = $(LIBSRC)/Xss SOXSSREV = 1.0 DEPXSSLIB = XSSLIB = -lXss LINTXSS = $(LINTLIBDIR)/llib-lXss.ln XXF86MISCLIBSRC = $(LIBSRC)/Xxf86misc SOXXF86MISCREV = 1.1 DEPXXF86MISCLIB = XXF86MISCLIB = -lXxf86misc LINTXXF86MISC = $(LINTLIBDIR)/llib-lXxf86misc.ln XXF86VMLIBSRC = $(LIBSRC)/Xxf86vm SOXXF86VMREV = 1.0 DEPXXF86VMLIB = XXF86VMLIB = -lXxf86vm LINTXXF86VM = $(LINTLIBDIR)/llib-lXxf86vm.ln XXF86DGALIBSRC = $(LIBSRC)/Xxf86dga SOXXF86DGAREV = 1.0 DEPXXF86DGALIB = XXF86DGALIB = -lXxf86dga LINTXXF86DGA = $(LINTLIBDIR)/llib-lXxf86dga.ln XXF86RUSHLIBSRC = $(LIBSRC)/Xxf86rush SOXXF86RUSHREV = 1.0 DEPXXF86RUSHLIB = XXF86RUSHLIB = -lXxf86rush LINTXXF86RUSH = $(LINTLIBDIR)/llib-lXxf86rush.ln XVLIBSRC = $(LIBSRC)/Xv SOXVREV = 1.0 DEPXVLIB = XVLIB = -lXv LINTXV = $(LINTLIBDIR)/llib-lXv.ln XVMCLIBSRC = $(LIBSRC)/XvMC SOXVMCREV = 1.0 DEPXVMCLIB = XVMCLIB = -lXvMC LINTXVMC = $(LINTLIBDIR)/llib-lXvMC.ln XINERAMALIBSRC = $(LIBSRC)/Xinerama SOXINERAMAREV = 1.0 DEPXINERAMALIB = XINERAMALIB = -lXinerama LINTXINERAMA = $(LINTLIBDIR)/llib-lXinerama.ln XRESLIBSRC = $(LIBSRC)/XRes SOXRESREV = 1.0 DEPXRESLIB = XRESLIB = -lXRes LINTXRES = $(LINTLIBDIR)/llib-lXRes.ln DMXLIBSRC = $(LIBSRC)/dmx SODMXREV = 1.0 DEPDMXLIB = DMXLIB = -ldmx LINTDMX = $(LINTLIBDIR)/llib-ldmx.ln DPSLIBSRC = $(LIBSRC)/dps DEPDPSLIB = $(USRLIBDIR)/libdps.a DPSLIB = -ldps LINTDPS = $(LINTLIBDIR)/llib-ldps.ln DPSTKLIBSRC = $(LIBSRC)/dpstk DEPDPSTKLIB = $(USRLIBDIR)/libdpstk.a DPSTKLIB = -ldpstk LINTDPSTK = $(LINTLIBDIR)/llib-ldpstk.ln PSRESLIBSRC = $(LIBSRC)/psres DEPPSRESLIB = $(USRLIBDIR)/libpsres.a PSRESLIB = -lpsres LINTPSRES = $(LINTLIBDIR)/llib-lpsres.ln GLULIBSRC = $(LIBSRC)/GLU SOGLUREV = 1.3 DEPGLULIB = GLULIB = -lGLU LINTGLU = $(LINTLIBDIR)/llib-lGLU.ln GLXLIBSRC = $(LIBSRC)/GL SOGLREV = 1.2 DEPGLXLIB = GLXLIB = -lGL LINTGLX = $(LINTLIBDIR)/llib-lGL.ln GLWIDGETSRC = $(LIBSRC)/GLw DEPGLWLIB = $(USRLIBDIR)/libGLw.a GLWLIB = -lGLw LINTGLW = $(LINTLIBDIR)/llib-lGLw.ln XRENDERDIR = /usr XRENDERLIBDIR = /usr/lib XRENDERINCDIR = /usr/include XRENDERLIB = -L$(XRENDERLIBDIR) -lXrender DEPXRENDERLIB = XRENDERINCLUDES = -I$(XRENDERINCDIR) XRANDRLIBSRC = $(LIBSRC)/Xrandr SOXRANDRREV = 2.0 DEPXRANDRLIB = XRANDRLIB = -lXrandr LINTXRANDR = $(LINTLIBDIR)/llib-lXrandr.ln XFIXESLIBSRC = $(LIBSRC)/Xfixes SOXFIXESREV = 3.0 DEPXFIXESLIB = XFIXESLIB = -lXfixes LINTXFIXES = $(LINTLIBDIR)/llib-lXfixes.ln XDAMAGELIBSRC = $(LIBSRC)/Xdamage SOXDAMAGEREV = 1.0 DEPXDAMAGELIB = XDAMAGELIB = -lXdamage LINTXDAMAGE = $(LINTLIBDIR)/llib-lXdamage.ln XCOMPOSITELIBSRC = $(LIBSRC)/Xcomposite SOXCOMPOSITEREV = 1.0 DEPXCOMPOSITELIB = XCOMPOSITELIB = -lXcomposite LINTXCOMPOSITE = $(LINTLIBDIR)/llib-lXcomposite.ln XEVIELIBSRC = $(LIBSRC)/Xevie SOXEVIEREV = 1.0 DEPXEVIELIB = XEVIELIB = -lXevie LINTXEVIE = $(LINTLIBDIR)/llib-lXevie.ln XCURSORDIR = /usr XCURSORLIBDIR = /usr/lib XCURSORINCDIR = /usr/include XCURSORLIB = -L$(XCURSORLIBDIR) -lXcursor XCURSORINCLUDES=-I$(XCURSORINCDIR) $(XRENDERINCLUDES) APPLEWMLIBSRC = $(LIBSRC)/apple DEPAPPLEWMLIB = $(USRLIBDIR)/libAppleWM.a APPLEWMLIB = -lAppleWM LINTAPPLEWM = $(LINTLIBDIR)/llib-lAppleWM.ln WINDOWSWMLIBSRC = $(LIBSRC)/windows DEPWINDOWSWMLIB = $(USRLIBDIR)/libWindowsWM.a WINDOWSWMLIB = -lWindowsWM LINTWINDOWSWM = $(LINTLIBDIR)/llib-lWindowsWM.ln XFONTCACHELIBSRC = $(LIBSRC)/Xfontcache DEPXFONTCACHELIB = $(USRLIBDIR)/libXfontcache.a XFONTCACHELIB = -lXfontcache LINTXFONTCACHE = $(LINTLIBDIR)/llib-lXfontcache.ln XAUTHSRC = $(LIBSRC)/Xau SOXAUTHREV = 6.0 DEPXAUTHLIB = XAUTHLIB = -lXau LINTXAUTH = $(LINTLIBDIR)/llib-lXau.ln XDMCPLIBSRC = $(LIBSRC)/Xdmcp SOXDMCPREV = 6.0 DEPXDMCPLIB = XDMCPLIB = -lXdmcp LINTXDMCP = $(LINTLIBDIR)/llib-lXdmcp.ln XMUSRC = $(LIBSRC)/Xmu SOXMUREV = 6.2 DEPXMULIB = XMULIB = -lXmu LINTXMU = $(LINTLIBDIR)/llib-lXmu.ln XMUUSRC = $(LIBSRC)/Xmuu SOXMUUREV = 1.0 DEPXMUULIB = XMUULIB = -lXmuu LINTXMUU = $(LINTLIBDIR)/llib-lXmuu.ln OLDXLIBSRC = $(LIBSRC)/oldX DEPOLDXLIB = $(USRLIBDIR)/liboldX.a OLDXLIB = -loldX LINTOLDX = $(LINTLIBDIR)/llib-loldX.ln XPLIBSRC = $(LIBSRC)/Xp SOXPREV = 6.2 DEPXPLIB = XPLIB = -lXp LINTXP = $(LINTLIBDIR)/llib-lXp.ln TOOLKITSRC = $(LIBSRC)/Xt SOXTREV = 6.0 DEPXTOOLONLYLIB = XTOOLONLYLIB = -lXt LINTXTOOLONLY = $(LINTLIBDIR)/llib-lXt.ln DEPXTOOLLIB = $(DEPXTOOLONLYLIB) $(DEPSMLIB) $(DEPICELIB) XTOOLLIB = $(XTOOLONLYLIB) $(SMLIB) $(ICELIB) LINTXTOOLLIB = $(LINTXTOOLONLYLIB) XALIBSRC = $(LIBSRC)/Xa SOXAREV = 1.0 DEPXALIB = XALIB = -lXa LINTXA = $(LINTLIBDIR)/llib-lXa.ln AWIDGETSRC = $(LIBSRC)/Xaw SOXAWREV = 8.0 DEPXAWLIB = XAWLIB = -lXaw LINTXAW = $(LINTLIBDIR)/llib-lXaw.ln AWIDGET7SRC = $(LIBSRC)/Xaw7 SOXAW7REV = 7.0 DEPXAW7LIB = XAW7LIB = -lXaw LINTXAW7 = $(LINTLIBDIR)/llib-lXaw.ln AWIDGET6SRC = $(LIBSRC)/Xaw6 SOXAW6REV = 6.1 DEPXAW6LIB = XAW6LIB = -lXaw LINTXAW6 = $(LINTLIBDIR)/llib-lXaw.ln XILIBSRC = $(LIBSRC)/Xi SOXINPUTREV = 6.0 DEPXILIB = XILIB = -lXi LINTXI = $(LINTLIBDIR)/llib-lXi.ln XTESTLIBSRC = $(LIBSRC)/Xtst SOXTESTREV = 6.1 DEPXTESTLIB = XTESTLIB = -lXtst LINTXTEST = $(LINTLIBDIR)/llib-lXtst.ln DEPXBSDLIB = $(USRLIBDIR)/libXbsd.a XBSDLIB = -lXbsd LINTXBSD = $(LINTLIBDIR)/llib-lXbsd.ln ICESRC = $(LIBSRC)/ICE SOICEREV = 6.4 DEPICELIB = ICELIB = -lICE LINTICE = $(LINTLIBDIR)/llib-lICE.ln SMSRC = $(LIBSRC)/SM SOSMREV = 6.0 DEPSMLIB = SMLIB = -lSM LINTSM = $(LINTLIBDIR)/llib-lSM.ln XKEYSRC = $(LIBSRC)/Xkey SOXKEYREV = 6.0 DEPXKEYLIB = XKEYLIB = -lXkey LINTXKEY = $(LINTLIBDIR)/llib-lXkey.ln FSLIBSRC = $(LIBSRC)/FS SOFSREV = 6.0 DEPFSLIB = FSLIB = -lFS LINTFS = $(LINTLIBDIR)/llib-lFS.ln FONTLIBSRC = $(LIBSRC)/font DEPFONTLIB = $(USRLIBDIR)/libXfont.a FONTLIB = -L$(FREETYPELIBDIR) -L$(FONTLIBSRC) -lXfont LINTXFONT = $(LINTLIBDIR)/llib-lXfont.ln # DEPXFONTLIB = $(USRLIBDIR)/libXfont.a XFONTLIB = -lXfont LINTXFONT = $(LINTLIBDIR)/llib-lXfont.ln FONTSTUBLIBSRC = $(FONTLIBSRC)/stubs DEPFONTSTUBLIB = $(USRLIBDIR)/libfntstubs.a FONTSTUBLIB = -lfntstubs LINTFONTSTUB = $(LINTLIBDIR)/llib-lfntstubs.ln DEPFONTLIB = $(DEPXFONTLIB) $(DEPFONTSTUBLIB) FONTLIB = $(XFONTLIB) $(FONTSTUBLIB) $(FREETYPE2LIB) FONTENCLIBSRC = $(LIBSRC)/fontenc DEPXFONTENCLIB = $(USRLIBDIR)/libfontenc.a XFONTENCLIB = -lfontenc LINTXFONTENC = $(LINTLIBDIR)/llib-lfontenc.ln XPMLIBSRC = $(LIBSRC)/Xpm SOXPMREV = 4.11 DEPXPMLIB = XPMLIB = -lXpm LINTXPM = $(LINTLIBDIR)/llib-lXpm.ln FREETYPE2DIR = /usr FREETYPE2LIBDIR = /usr/lib FREETYPE2INCDIR = /usr/include FREETYPE2LIB = -lfreetype FREETYPE2INCLUDES = -I$(FREETYPE2INCDIR)/freetype2 -I$(FREETYPE2INCDIR)/freetype2/config FREETYPE2DEFINES = -DFREETYPE2 EXPATLIBSRC = $(LIBSRC)/expat SOEXPATREV = 0.4 DEPEXPATLIB = EXPATLIB = -lexpat LINTEXPAT = $(LINTLIBDIR)/llib-lexpat.ln EXPATDIR = /usr EXPATLIBDIR = /usr/lib EXPATINCDIR = /usr/include EXPATINCLUDES = EXPATLIB = -lexpat EXPATDEFINES = -DEXPAT XFTDIR = /usr XFTLIBDIR = /usr/lib XFTINCDIR = /usr/include XFTLIB = -L$(XFTLIBDIR) -lXft XFTINCLUDES= -I$(XFTINCDIR) $(FONTCONFIGINCLUDES) $(FREETYPE2INCLUDES) $(XRENDERINCLUDES) FONTCONFIGDIR = /usr FONTCONFIGLIBDIR = /usr/lib FONTCONFIGINCDIR = /usr/include FONTCONFIGBINDIR = /usr/bin FONTCONFIGLIB = -lfontconfig FONTCONFIGINCLUDES = FCCACHE = $(FONTCONFIGBINDIR)/fc-cache FONTCONFIGDEFINES = -DFONTCONFIG LIBPNGINCDIR = /usr/include LIBPNGINC= LIBPNGDIR = /usr LIBPNGLIBDIR = /usr/lib LIBPNGINCDIR = /usr/include LIBPNGLIB = -lpng XKBFILELIBSRC = $(LIBSRC)/xkbfile SOXKBFILEREV = 1.0 DEPXKBFILELIB = XKBFILELIB = -lxkbfile LINTXKBFILE = $(LINTLIBDIR)/llib-lxkbfile.ln XKBCOMPCMD = $(XBINDIR)/xkbcomp XKBUILIBSRC = $(LIBSRC)/xkbui SOXKBUIREV = 1.0 DEPXKBUILIB = XKBUILIB = -lxkbui LINTXKBUI = $(LINTLIBDIR)/llib-lxkbui.ln EXTRAXAWREQS = EXTRAXAWCLIENTDEPLIBS = EXTRAXAWCLIENTLIBS = XTRAPLIBSRC = $(LIBSRC)/XTrap SOXTRAPREV = 6.4 DEPXTRAPLIB = XTRAPLIB = -lXTrap LINTXTRAP = $(LINTLIBDIR)/llib-lXTrap.ln DEPLIBS = $(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB) DEPLIBS1 = $(DEPLIBS) DEPLIBS2 = $(DEPLIBS) DEPLIBS3 = $(DEPLIBS) DEPLIBS4 = $(DEPLIBS) DEPLIBS5 = $(DEPLIBS) DEPLIBS6 = $(DEPLIBS) DEPLIBS7 = $(DEPLIBS) DEPLIBS8 = $(DEPLIBS) DEPLIBS9 = $(DEPLIBS) DEPLIBS10 = $(DEPLIBS) XFTPRELOADPATTERN = libXft.so.? XRENDERPRELOADPATTERN = libXrender.so.? XFONTPRELOADPATTERN = libXfont*.so.? XMULIBONLY = -lXmu XMULIB = $(XMULIBONLY) $(XTOOLLIB) $(XLIB) CONFIGDIR = $(LIBDIR)/config USRLIBDIRPATH = $(USRLIBDIR) LDPRELIBS = $(INSTALLED_LIBS) LDPOSTLIBS = TOP_INCLUDES = $(TOP_X_INCLUDES) PROJECT_DEFINES = VENDOR_DEFINES = -DXVENDORNAME='"$(VENDORNAME)"' -DXVENDORNAMESHORT='"$(VENDORNAMESHORT)"' CXXPROJECT_DEFINES = # ---------------------------------------------------------------------- # start of Imakefile # Should install to /usr or /usr/local ?? #ifndef DESTDIR DESTDIR=/usr #endif # Name of man subdirectory of DESTDIR: #ifndef MANDIR MANDIR=/X11R6/man/man1 #endif # Name of bin subdirectory of DESTDIR: /X11R6/bin or maybe just /bin #ifndef BINDIR BINDIR=/X11R6/bin #endif # Name of share subdirectory of DESTDIR_XRMAP: #ifndef SHAREDIR SHAREDIR=$(DESTDIR)/share/editkit #endif # Name of DOCDIR's subdirectories of DESTDIR: #ifndef DOCDIR DOCDIR=/X11R6/lib/X11/doc #endif #ifndef DOCHTMLDIR DOCHTMLDIR=/X11R6/lib/X11/doc/html #endif # # Normally -- except for new architectures -- you should be done there. # # Compile options: # CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" -DDOCDIR="\"$(DOCDIR)\"" LOCAL_LIBRARIES=-lX11 DEPLIBS= # I don't know what I'm doing, and I hate imake! SRCS=x11.c OBJS=x11.o PROGRAM = emx all:: emx emx: $(OBJS) $(DEPLIBS) $(RM) $@ $(CCLINK) -o $@ $(LDOPTIONS) $(OBJS) $(LOCAL_LIBRARIES) $(LDLIBS) $(EXTRA_LOAD_FLAGS) install:: emx @if [ -d $(DESTDIR)$(BINDIR) ]; then \ set +x; \ else \ if [ -h $(DESTDIR)$(BINDIR) ]; then \ (set -x; rm -f $(DESTDIR)$(BINDIR)); \ fi; \ (set -x; $(MKDIRHIER) $(DESTDIR)$(BINDIR)); \ fi $(INSTALL) $(INSTALLFLAGS) $(INSTPGMFLAGS) emx $(DESTDIR)$(BINDIR)/emx all:: emx.$(MANNEWSUFFIX) emx.$(MANNEWSUFFIX): emx.$(MANSRCSUFFIX) $(RM) $@ if test -z "$(PREPROCESSMANPAGES)" ; then \ cd `dirname emx` && \ $(LN) `basename emx.$(MANSRCSUFFIX)` `basename $@`; \ else \ $(RAWCPP) $(MANDEFS) $(EXTRAMANDEFS) \ < emx.$(MANSRCSUFFIX) | sed -e '/^# *[0-9][0-9]* *.*$$/d' -e '/^#line *[0-9][0-9]* *.*$$/d' -e '/^[ ]*XCOMM$$/s/XCOMM/#/' -e '/^[ ]*XCOMM[^a-zA-Z0-9_]/s/XCOMM/#/' -e '/^[ ]*XHASH/s/XHASH/#/' -e '/\@\@$$/s/\@\@$$/\\/' >$@; \ fi cleandir:: $(RM) emx.$(MANNEWSUFFIX) install.man:: emx.$(MANNEWSUFFIX) @if [ -d $(DESTDIR)$(MANDIR) ]; then \ set +x; \ else \ if [ -h $(DESTDIR)$(MANDIR) ]; then \ (set -x; rm -f $(DESTDIR)$(MANDIR)); \ fi; \ (set -x; $(MKDIRHIER) $(DESTDIR)$(MANDIR)); \ fi $(INSTALL) $(INSTALLFLAGS) $(INSTMANFLAGS) emx.$(MANNEWSUFFIX) $(DESTDIR)$(MANDIR)/emx.$(MANSUFFIX) depend:: $(DEPEND) $(DEPENDFLAGS) -- $(ALLDEFINES) $(DEPEND_DEFINES) -- $(SRCS) lint: $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIBS) lint1: $(LINT) $(LINTFLAGS) $(FILE) $(LINTLIBS) cleandir:: $(RM) emx x11.o: ln -sf MANUAL.emacs emx.man $(CC) $(CFLAGS) -DEMACS -o x11.o -c x11.c install.man:: if [ -r $(DESTDIR)$(MANDIR)/emx.1.gz ] ; then gzip -f $(DESTDIR)$(MANDIR)/emx.1 ; fi if [ -r $(DESTDIR)$(MANDIR)/emx.1x.gz ] ; then gzip -f $(DESTDIR)$(MANDIR)/emx.1x ; fi install:: mkdir -p $(SHAREDIR) cp -f rc.example $(SHAREDIR)/rc.common cd $(SHAREDIR); ln -sf rc.common emxrc cp -f README $(SHAREDIR) cleandir:: rm -f core *~ emx.man realclean:: cleandir rm -f Makefile # ---------------------------------------------------------------------- # common rules for all Makefiles - do not edit .c.i: $(RM) $@ $(CC) -E $(CFLAGS) $(_NOOP_) $*.c > $@ .SUFFIXES: .ii .cc.ii: $(RM) $@ $(CC) -E $(CFLAGS) $(_NOOP_) $*.cc > $@ .SUFFIXES: .s .c.s: $(RM) $@ $(CC) -S $(CFLAGS) $(_NOOP_) $*.c .cc.s: $(RM) $@ $(CC) -S $(CFLAGS) $(_NOOP_) $*.cc emptyrule:: cleandir:: $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut "#"* Makefile:: -@if [ -f Makefile ]; then set -x; \ $(RM) Makefile.bak; $(MV) Makefile Makefile.bak; \ else exit 0; fi $(IMAKE_CMD) -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) tags:: $(TAGS) -w *.[ch] $(TAGS) -xw *.[ch] > TAGS man_keywords:: html_index:: clean:: cleandir distclean:: cleandir PREPROCESSMANPAGES = true # ---------------------------------------------------------------------- # empty rules for directories that do not have SUBDIRS - do not edit install:: @echo "install in $(CURRENT_DIR) done" install.man:: @echo "install.man in $(CURRENT_DIR) done" install.sdk:: @echo "install.sdk in $(CURRENT_DIR) done" Makefiles:: includes:: depend:: distclean:: $(RM) Makefile Makefile.dep # ---------------------------------------------------------------------- # dependencies generated by makedepend sunclock-3.57/editkit/CHANGELOG0000644000000000000000000001012107661230772013033 0ustar 13/05/03 1.05 minor changes Fix in x11.c which increases the sensitivity of the scrollbar when a huge file is loaded in emx. Introduced Imakefile to compile 'emx', and renamed Makefile to Makefile.kit 26/04/03 1.04 minor changes Modified behavior of no-edit mode. Everything is now enabled except file saving. Especially, key-bindings are available in no-edit mode. Changed mktemp() to more secure mkstemp(), following suggestion by Peter Dyballa. 15/07/02 1.03 release Reworked clreol and show_vbar to elimenate excessive flashing of scrollbar during use. 10/07/02 1.02 release Added 3D outline to status bar and scrollbar. Modified clreol, scr_update and various dialog routines to give correct display update. 04/07/12 1.01 release, maintainance release * The X11 versions now have a vertical scrollbar. * Version 1.01 includes a buffer overflow fix by Terry Loveall, and a new -edit option (-edit 0 for NOEDIT mode, -edit 1 otherwise). * 'Write file' asks for a new name even when the main buffer is unmodified * The title is properly reset when a buffer is written under a new name 21/05/12 1.00 release, first public annoucement. * Turned on flag[CHG]=1 in chg_case routine, when -- and only when -- a modification occurs. * Some more fixes by Terry Loveall. Seems now ready for a public release. 18/05/12 0.72 release * Made change in goto_x() routine, following a suggestion by Terry Loveall. 16/05/12 (additions by J-P Demailly) 0.71 release. * Improved search, search&replace and repeat routines ("repeat" remembers which type of search/search&replace was made; reverse search is enabled; search&replace can perform repeated or throughout replacements). * Fixed several annoying display bugs related to the show_scr procedure (termcap version). Added BOXCURS option (so as to get optionally a box-cursor in the X11 version). * Fixed incorrect file path calls in 'rc.example'; now parsing the argv parameters for a new rcfile before actually parsing the default file. 05/05/12 (additions by J-P Demailly) 0.70 release. * New compile switches have been introduced so that 4 distinct binaries can be produced: edt, emt (termcap version, with wordstar/emacs bindings respectively) edx, emx (X-Window version, with wordstar/emacs bindings respectively) * Left and right justification routines have been optionally implemented (use -DJUSTIFY switch) * Added F9 binding to fire new editor session in a new window. 04/16/02 (changes by J-P Demailly) * BUGFIX: Fixed crash problem occuring when clicking at an empty buffer of on the last word of the buffer. * Emacs bindings are provided besides the Wordstar bindings (compile switch). * Removed hardcoded buffer limitations * Improved X routines and implemented paste procedure with Button 2 * Added possibility of having private key bindings through an rc file * Added bak file handling * Added transpose char routine * Added support for Greek letters (with TeX/LaTeX in mind) 04/02/02 * BUGFIX: Limited mouse moveto x range to positive numbers, preventing program lockup. * Updated edx help screen to reflect recent changes. * Added Makefile.lcc to compile 20k mye binary. * Use 'cl -DMSVC -Ox mye.c' on MSVC for 55k mye binary. 04/01/02 * Retrofit all edx improvements into mye. * Update users manual at the beginning of mye.c. * Update HELP_STR to new mye.c configuration. 03/31/02 Added suspend autoindent to paste_primary from X selection. 03/29/02 * Added TODO file. * Added autoiNdent flag and support code to key_return. * Added convert marked block to UPPER/lower case. 03/28/02 * Updated MANUAL and README. * Moved SYSTEM and cd functions from edx.c to eeng.c. * Cleaned up display for lines longer than screen_width. * Reworked macro recording and playback. * Removed unused function show_status. * Restructured status line. * Improved goto last position logic. * Reworked block_fill to match improved display. 03/24/02 BUGFIX: removed memset write-out-of-bounds GPF in function 'drstr'. 03/24/02 * Improved dialog character editing. * Added change directory dialog, * Added xcalc and xcalendar hot keys. * Added block format undo/redo. sunclock-3.57/editkit/MANUAL.emacs0000644000000000000000000001664307470403437013625 0ustar ------------------------------------------------------------------------------ Emx User Manual: Copyright (C) 2002, Jean-Pierre Demailly Based upon the original package edx-0.56 by Terry Loveall, itself derived from ee.c by Yijun Ding, copyright 1991. The original work is source in the public domain and so is emx. ------------------------------------------------------------------------------ Emx's main goal is to provide an emacs-like editor for the X Window system, with a very small memory footprint. It uses only the libc and the basic X routines from the X11 library. Its simple internal structure should make it easy to adapt the code for any use. Emx version 0.60+ automatically reallocs memory for the buffer it uses, hence the size of files and blocks it can handle are limited only by the available RAM and swap (there's also a theoretical limit of about 1GByte on 32bit architectures, but this has not been checked...). Ems doesn't have menus, just an internal help window available through the F1 key or the ^XH control sequence (Ctrl-X H) All sequences Alt-? (Alt-A to Alt-Z) are free and available for private key bindings. They should be defined either in the system wide emxrc file or in the private ~/.emxrc file (check rc.example to see how this works). The -rc option allows to load an arbitrary rcfile instead. Command line options ==================== Usage: emx [-fn font] [-jump line#] [-tab skip] [-w width] [-h height] [-bg color] [-fg color] [-hibg color] [-hifg color] [-cr color] [-rc rcfile] [file] Function key commands ===================== F1 show help F2 save F3 open new file F5 exec command F6 Chgdir F9 open file and fire new editor F10 rxvt Special key commands ==================== Shift-Del cut Shift-Ins paste ^Ins copy block to X clipboard Control key commands ==================== ^A goto bol ^E goto eol ^G goto line ^O? switch a flag ^B left ^F right ^N down ^P up ^D del char ^H del prev char ^J insert line ^K del to eol ^Q? literal char ^S ^R find string ^U repeat SAR ^T transpose ^V page down ^W cut block ^Y paste block ^_ undo ^L is used to force a screen update (redisplay) Escape-? key commands ===================== E B word left E F word right E N scroll down E P scroll up E < start of file E > end of file E _ redo E % find & replace E W copy block E V page up E . set mark E X switch marks E L lowcase block E U upcase block E J fill paragr E Q format paragr Ctrl-X key commands ==================== ^XC (^XQ) exit ^XH show help ^XS save ^XF open new file ^XI insert file ^XV write block ^XW save as ^XD del word ^XM togl rec mac ^XP play macro ^XT get tab size ^XK delete line Function keys ============= (key) (description) (same as) ---------------------------------------------------------------------- F1 help ^XH F2 file save (if modified) ^XS F3 open new file (prompts to save if file modified) ^XF F4 search for matching parentheses (){}[] F5 prompt for and execute user command line F6 get and change directory F7 toggle mark block Esc-. F8 toggle mark block Esc-. F9 fire up a new editor with a given file name F10 open an rxvt terminal in the current directory Alt-Z Ins toggle insert/overwrite shf-Del cut marked block to X clipboard shf-Ins paste from X clipboard ctl-Ins copy marked block to X clipboard Del delete character under cursor or marked block ^D Home move cursor to beginning of line ^A End move cursor to end of line ^E PgUp move up one screen Esc-V PgDn move down one screen ^V Navigation keys (arrows, Home, End, PgUp and PgDn) are operational. Shift navigation marks text. ^Home and ^End go to BOF and EOF, respectively. Control left arrow and right arrow move by word. Left mouse button click: set text cursor. Right mouse button click: set text cursor or scroll text. Left mouse button double click: select word under cursor. Left mouse button click and drag: marks and copies a text block to X clipboard. Middle mouse button click: paste from X clipboard. Middle mouse button drag: marks a text block. Modes and flags: ================ Changing modes of operation is performed by ^O followed by one of the displayed upper/lower case characters MFOCTBA. This will toggle the specific flag. Modes are indicated as being on by displaying their upper case character. The file modified M flag can be toggled off explicitly. The block mark B active flag indicates a complex state. Toggle it off with the block mark key sequences, NOT with ^OB. M : file modified set by anything that modifies file. F : word wrap at text entry toggle with ^OF O : overwrite toggle with ^OO C : search is case sensitive toggle with ^OC T : expand/compress tabs toggle with ^OT B : block mark active toggle with ^OB A : replace all occurences flag toggle with ^OA The editor does display tab chars as multiple spaces. Tab (0x09) chars are displayed as tabsize spaces. Default tab size is 4. To change tab-width to 8 the command line is 'emx -tab 8'. To change from within the editor use ^XT. To go to a specified line on initial file opening, the command line is 'emx -jump 507 somefile'. The minus plus sequence is required. Input a ^G to go to a line from within emx. Turning on (F)ill mode enables wordwrap during text entry. Block reformat wraps the text at the right screen edge until a double newline is encounterd. To reformat a paragraph, place the cursor at the desired point of reformat and enter a Esc-Q. To change the right margin use Esc-M. As noted, undo and redo are available. Ctrl-_ for undo, Esc-_ for redo. A complete record of the edit session is maintained. Undoing all actions in the undo buffer will reset the Marked flag. X clipboard is somewhat integrated. Cut, copy and paste with respect to the X clipboard are obtained by Shift-Del, Control-Insert and Shift-Insert, respectively (Control-Insert copies the marked block to the X clipboard so that the middle mouse button can then be used to paste it to other applications which support pasting through this procedure). ^W deletes the marked block (and copies the deleted marked block to the block buffer), while ^Y copies the deleted block from the block buffer to the point of the text cursor. Find and 'Search and Replace' will pick up any marked blocks, text under the cursor or user input in that order. Found text is highlighted. Set replace ALL flag wth ^OA option before running SAR to replace all occurences. For general dialog entry if the first character entered is not ^H, ^C, End, Esc or Enter, the dialog string is discarded. End moves the cursor to the end of the dialog string. For a complete understanding of the operation of emx, study the code. It is the ultimate authority on operation. Remember, when all else fails READ THE SCREEN. ------------------------------------------------------------------------------ sunclock-3.57/editkit/edit.h0000644000000000000000000001714510446056707012733 0ustar /* edx/emx (EDitor for X), (C) 2002, Terry Loveall released into the public domain. Based upon the original work ee.c of Yijun Ding, copyright 1991 which is in the public domain. This program comes with no warranties or binaries. Use at your own risk. */ /* This is the core editor engine */ #define MAXVLINE 450 #define EOL '\0' /* end of line marker */ #define BLNK ' ' /* blank */ #define LF '\n' /* new line */ #define NLEN 256 /* input buffer length */ #define LMAX 10000 /* max line length */ #define XINC 20 /* increment for x offset */ #define CHG 0 /* file Modified: =0 file not changed, !=0 file changed */ #define FIL 1 /* Fill */ #define OVR 2 /* character insert=0, Overwrite=1 */ #define CAS 3 /* Case sensitive: =0 no, !=0 yes */ #define TAB 4 /* Tab expand */ #define BLK 5 /* block mark active */ #define IND 6 /* auto indent flag */ #define REC 7 /* recording macro flag */ #define ALL 8 /* replace all flag */ #define EDT 9 /* edit flag */ #define SHW 10 /* update & show entire screen */ #define NEW 11 /* editing a new file */ #define WIN 12 /* window: <0 same win, =0 load new */ /* buffer sizes */ #define AMAX 0x4000 /* main buffer initial size */ #define BMAX 0x1000 /* block initial size */ #define UMAX 0x2000 /* undo level */ #define YTOP 0 /* first line */ #define VOID_LINK (unsigned int)-1 #ifdef GREEK /* Greek letters */ static char *greek_letter[26] = { "alpha", "!beta", "Chi", "Delta", "!epsilon", "!Phi", "Gamma", "eta", "iota", "Psi", "kappa", "Lambda", "mu", "nu", "omega", "Pi", "!Theta", "!rho", "!Sigma", "tau", "Upsilon", NULL, "Omega", "Xi", "Psi", "zeta" }; int var_greek = 0; /* variant of Greek letters */ #endif /* character handler types */ static enum { MAIN, DIALOG, OPTIONS } executive = MAIN; /* default character handler */ /* current window struct */ typedef struct { char name[NLEN]; int jump; } MWIN; /* my window structure */ MWIN ewin; /* current window */ /* undo record struct */ typedef struct { unsigned int link; int pos; int length; char str[0]; } U_REC; int x=0, screen_width; /* screen position 1 <= x <= screen_width */ int y=1, screen_height; /* screen size 0 <= y <= screen_height */ int eolx; /* coord of eol */ int update_scr = 1; /* do screen updates flag */ int search_mode = 0; /* was it a replace request ? */ unsigned int amax, bmax, umax; /* main buffer, block size, undo level */ char *cfdpath; char Command[256]; char *bstart, *bend; /* marked block start, end and char pointer */ #ifndef MINIMAL char *binding[26]; #endif char bbuf[NLEN]; /* temp file name */ char sbuf[NLEN], rbuf[NLEN]; /* search buffer, replace buffer */ char *s; /* pointer to search string */ int rlen, slen; /* replace and search lengths */ char *edbuf, *file_end; /* edit buffer, end of file */ char *bb, *mk, *last_mk = NULL; /* block buffer, mark */ unsigned blen; /* length of text in block buffer */ char *cur_pos; char *line_start; /* current pos, start of current line */ char *screen_start; /* global screen start */ unsigned int xlo; /* x offset for left display edge */ char *last_pos; /* last last position visited */ char *old_pos; /* last position visited */ int x_offset; /* offset of xtru from line_start */ int xtru = 0, ytru = 0; /* file position */ int ytot = 0; /* 0 <= ytru <= ytot */ int yl1, yl2; /* 1st, 2nd line of window */ int tabsize=4; /* tab size */ int doCtrlC = 0; /* decode next char from ^C function */ int doCtrlK = 0; /* decode next char from ^K function */ int doCtrlQ = 0; /* decode next char from ^Q function */ int doCtrlX = 0; /* decode next char from ^X function */ int doEscap = 0; /* decode next char from Esc function */ int help_done = 0; int literal = 0; int col; /* width of dialog preset (if any) */ int diastart; /* start of dialog input field */ int first; /* first dialog char flag, 0=true */ int dblen; /* current dialog buffer size */ char *diabuf; /* dialog buffer pointer */ void (*dialogCB) (); /* callback pointer */ static char lbuf[16]; /* goto line number buffer */ static char cbuf[16]; /* goto column number buffer */ static char wbuf[8]="78"; /* reformat block right margin */ static char twbuf[8]="4"; /* tab width buffer */ static char mbuf[256]; /* macro record buffer */ static char *pmbuf=mbuf; /* record pointer for macro buffer */ struct stat ofstat; /* edit file stat structure */ FILE *fi, *fo, *fb; /* file handles for input, output, block */ static char fbuf[256]; /* current file name buffer */ char flag[WIN+1]="\0\0\0C\0\0N\0\0E\0"; /* options flag presets */ char fsym[]="MFOCTBNRAE? "; /* Modified,Fill,Overwrite,Case,Tab,Block marked,autoiNdent,Rec,All */ /* word delimiter chars */ char wdelims[] = "\t ,;+-*=^&|?:`()[]{}<>\"\'"; char sdelims[] = "\t >]})"; char s1delims[] = "\t "; int undo_wrap = 0; /* undo buffer wrap flag */ void * unbuf; /* undo stack */ U_REC* undop = NULL; /* active undo/redo pointer */ U_REC* undosp = NULL; /* top of undo stack pointer */ int in_undo; /* dont reset undop to undosp if true */ int undone=1; /* have undone all */ /* function prototypes */ int get_tru(char* pos); char* get_cur(); char * realloc_buffer(); void init_undo(); U_REC* new_undo(char *pos, int len); void u_del(char *pos, int len); void u_ins(char *pos, int len); void ytot_ins(); void undo(); void redo(); void sys_exit(int code); void move_to(int newx, int newy); void getx(); void cursor_up(), cursor_down(), cursor_left(), cursor_right(); void cursor_pageup(); void cursor_pagedown(); void word_left(); void word_right(); void word_mark(); void drstr(char* disp, int i); void show_rest(int len, char *s); void show_scr(int fr, int to); void scroll_up(); void scroll_down(); void scr_update(); void show_sdn(int line); void show_flag(int x, int g); void dialog(int key); void show_note(char *prp); int show_gets(char *prp, char *buf, int blen, void *cb); void options(int key); void show_pos(); void show_top(), show_help(), show_mode(); void top(); char *file_new(); void file_read(); char *file_ltab(char *s); int file_write(FILE *fp, char *s, char *e); int file_fout(); void do_save(); void set_title(); int SYSTEM (char *cmd); void gorun(); void new_edit(char *nfile); void do_cd(); void chgdir(); void do_open(); #ifndef MINIMAL void launch_edit(); void req_edit(); #endif void file_save(int f_all, int f_win); void file_resize(char *s, char *d); void goto_x(int xx), goto_y(int yy); void goto_ptr(char *s); void goline(); void goto_last(); void goto_line(), goto_col(); void gocol(); void goto_col(); void switch_marks(); void find_match(); int str_cmp(char *s); void gofindforward(); void gofindbackward(); char *goto_find(char *s, int back); void get_mk(char* dbuf); char *goto_search(int back); void do_sar(); void ask_replace(); void goto_replace(); void gettab(); void tab_size(); void getmarg(); void window_size(); void mark_off(); void block_put(), block_get(), block_mark(); void remove_block(); void block_remove_update(); void chg_case(int upper); void transpose(); void block_copy(int delete); void block_paste(), block_write(), block_line(); void doblockr(); void doblockw(); void block_read(); int block_fill(); void block_format(); void key_return(), key_deleol(char *s), key_delete(); void key_backspace(), key_delword(int eol); void key_tab(int tabi); void key_normal(int key); void key_macros(int record); #ifdef GREEK void key_greek(int key); #endif void ctrlc_key(int key); void ctrlk_key(int key); void ctrlq_key(int key); void key_alt(int key); void key_control(int key); void key_escape(int key); void key_func(int key); void key_binding(int key); void main_exec(int key); sunclock-3.57/editkit/x11_bind_ws.c0000644000000000000000000002013307503446622014105 0ustar /* edx (EDitor for X), (C) 2002, Terry Loveall released into the public domain. Based upon the original work ee.c of Yijun Ding, copyright 1991 which is in the public domain. This program comes with no warranties or binaries. Use at your own risk. */ #define EDIT "edx" #ifndef MINIMAL #define DEFAULT_RC "edxrc" #endif /* include the editor engine */ #include "edit.c" /* Wordstar bindings */ #ifdef GREEK /* similar to Ctrl-C under emacs... */ void ctrlc_key(int key) { key_greek(key); doCtrlC = var_greek; } #endif /* GREEK */ #ifdef MINIMAL void key_binding(int key) { switch(key) { case 'c': SYSTEM("xcalc"); break; /* Alt-C xcalc*/ case 'd': new_edit("/c/text/phone.dir"); break; /* Alt-D phone Dir */ case 'l': SYSTEM("xcalendar"); break; /* Alt-L xcalendar */ case 'u': redo(); break; /* Alt-U redo */ } } #endif /* ctrl K keys */ void ctrlk_key(int key) { switch(key | 0x60) { case 'b': block_mark(); break; /* ^K^B set mark block on */ case 'c': set_selection(); /* ^K^C block copy to X clipboard */ block_copy(0); break; /* and to bbuffer */ case 'd': flag[CHG]=0; break; /* ^K^D say file not changed */ case 'f': file_save(0,-1); break; /* ^K^F new file */ #ifdef GREEK case 'g': doCtrlC = 1; break; /* ^K^G Greek char */ #endif /* GREEK */ case 'h': show_help(0); break; /* ^K^H show help menu */ case 'k': block_mark(); break; /* ^K^K set mark block on */ case 'm': key_macros(1); break; /* ^K^M record macro */ case 'p': key_macros(0); break; /* ^K^P play macro */ case 'q': sys_exit(0); break; /* ^K^Q exit only if file saved */ case 'r': block_read(); break; /* ^K^R read file into cursor pos */ case 's': do_save(); break; /* ^K^S save file and resume */ case 't': tab_size(); break; /* ^K^T get tab size */ case 'u': redo(); break; /* ^K^U redo */ case 'v': block_paste(); break; /* ^K^V copy buffer to cursor */ case 'w': block_write(); break; /* ^K^W write block to disk */ case 'x': sys_exit(0); break; /* ^K^X exit only if file saved */ case 'y': block_copy(1); break; /* ^K^Y cut block to buffer */ #ifdef MINIMAL case 'z': mterm(); break; /* ^K^Z open an rxvt term */ #endif } doCtrlK = 0; show_top(); } /* ctrl Q keys */ void ctrlq_key(int key) { switch(key | 0x60) { case 'a': goto_replace(); break; /* ^Q^A replace */ #ifdef JUSTIFY case 'b': block_format(1); break; /* ^Q^B right justify */ #endif case 'c': y = screen_height-1; goto_ptr(file_end); break; /* ^Q^C eof */ case 'd': goto_x(strlen(line_start+1)+1); break; /* ^Q^D eol */ case 'f': goto_search(0); break; /* ^Q^F find */ case 'i': goto_line(); break; /* ^Q^I goto line */ case 'l': chg_case(0); break; /* ^Q^L lower case block */ case 'm': window_size(); break; /* ^Q^M get right margin */ case 'p': goto_last(); break; /* ^Q^P goto last pos */ case 'r': top(); /* ^Q^R bof */ case 's': goto_x(1); break; /* ^Q^S bol */ case 't': transpose(); break; /* ^Q^T transpose chars */ case 'u': chg_case(1); break; /* ^Q^L upper case block */ case 'x': switch_marks(); break; /* ^Q^X switch marks */ case 'y': key_delword(1); break; /* ^Q^Y delete to end of line */ } doCtrlQ = 0; show_top(); } /* Shift, control and bare Function keys */ void key_func(int key) { if(keve->state & ShiftMask) switch(key) { case XK_Insert : do_paste(); return; /* Shift Ins paste */ case XK_Delete : do_select(1); return; /* Shift Del cut */ } if((keve->state & ShiftMask) && !flag[BLK] && key >= XK_Home && key <= XK_End) block_mark(); /* enable marked block with Shift */ if(keve->state & ControlMask) { switch(key) { case XK_F1 : word_mark(); break; /* ^F1 mark cursor word */ case XK_F3 : new_edit(""); break; /* ^F3 open new edx */ case XK_Home : top(); break; /* ^Home bof */ case XK_End : goto_y(ytot); break; /* ^End eof */ case XK_Left : word_left(); break; /* ^Left word left */ case XK_Right : word_right(); break; /* ^Right word right */ case XK_Insert : do_select(0); break; /* ^Ins copy */ } } else switch(key) { case XK_F1 : show_help(0); break; /* F1 show help */ case XK_F2 : do_save(); break; /* F2 save file and resume */ case XK_F3 : file_save(0,1); break; /* F3 open new file */ case XK_F4 : find_match(); break; /* F4 find {} () [] match */ case XK_F5 : run(); break; /* F5 get and run cmd */ case XK_F6 : chgdir(); break; /* F6 get & change to dir */ case XK_F7 : block_mark(); break; /* F7 set mark block on */ case XK_F8 : block_mark(); break; /* F8 set mark block on */ #ifdef MINIMAL case XK_F10 : mterm(); break; /* F10 open rxvt in cur.dir */ #else case XK_F9 : req_edit(); break; /* F9 open new file in new window */ case XK_F10 : key_binding('z'); break; /* F10 open rxvt in cur.dir */ #endif case XK_F12 : show_flag(OVR, !flag[OVR]); break;/* Ins toggle insert mode */ case XK_Return : key_return(); break; /* Enter newline at cursor */ case XK_Tab : key_tab(0); break; /* Tab insert tab char at cursor */ case XK_BackSpace: key_backspace(); break; /* BS delete prev char */ case XK_Insert : show_flag(OVR, !flag[OVR]); break;/* Ins toggle insert mode */ case XK_Delete : key_delete(); break; /* Del delete cursor char */ case XK_Page_Up : cursor_pageup(); break; /* PgUp */ case XK_Page_Down: cursor_pagedown(); break; /* PgDn */ case XK_End : goto_x(strlen(line_start+1)+1); break;/* End eol */ case XK_Home : goto_x(1); break; /* Home bol */ case XK_Up : cursor_up(); break; /* up */ case XK_Down : cursor_down(); break; /* down */ case XK_Right : cursor_right(); break; /* right */ case XK_Left : cursor_left(); break; /* left */ } if(!(keve->state & ShiftMask) && flag[BLK]) mark_off(); // turn off marked block } /* Control keys */ void key_control(int key) { if(!(keve->state & ShiftMask) && flag[BLK]) mark_off(); switch(key|0x60) { case 'a': word_left(); break; /* word left */ case 'b': block_format(0); break; /* justify block */ case 'c': cursor_pagedown(); break; /* pgdn */ case 'd': cursor_right(); break; /* right */ case 'e': cursor_up(); break; /* up */ case 'f': word_right(); break; /* word right */ case 'g': key_delete(); break; /* delete cursor char */ case 'h': key_backspace(); break; /* destructive backspace */ case 'i': key_tab(0); break; /* insert tab char */ case 'j': keve->state & ControlMask ? goto_line() : /* goto line# */ key_return(); break; /* newline */ case 'k': doCtrlK = key; break; /* ^K key */ case 'l': goto_find(cur_pos, 0); break; /* find again */ case 'm': case 'n': key_return(); break; /* newline at cursor */ case 'o': show_mode(); break; /* change modes */ case 'p': literal = 1; break; /* get inline literal */ case 'q': doCtrlQ = key; break; /* ^Q key */ case 'r': cursor_pageup(); break; /* pgup */ case 's': cursor_left(); break; /* left */ case 't': key_delword(0); break; /* delete word/to word */ case 'u': undo(0); break; /* undo */ case 'v': show_flag(OVR,!flag[OVR]); break; /* toggle Insert mode */ case 'w': scroll_down(); break; /* scroll down */ case 'x': cursor_down(); break; /* down */ case 'y': block_line(); break; /* delete line */ case 'z': scroll_up(); break; /* scroll up */ } show_top(); } /* single char interpreter */ void main_exec(int key) { cur_pos = get_cur(); if(update_scr) { undraw_cursor(); if(flag[REC]) rec_macro(key); } if(help_done){ help_done = 0; flag[SHW] = 1; } else if(literal) { key_normal(keve->state & ControlMask ? key & 0x1f : key); literal = 0; } else { if(key & 0xFF00) key_func(key); else if(keve->state & Mod1Mask) key_binding(key); else { #ifdef GREEK /* Ctrl-C is enabled here by ^K^G */ if(doCtrlC) ctrlc_key(key); else #endif /* GREEK */ if(doCtrlK) ctrlk_key(key); else if(doCtrlQ) ctrlq_key(key); else { if(keve->state & ControlMask) key &= 0x1f; if(key >= BLNK) key_normal(key); else key_control(key); } } } if(!doCtrlK && !doCtrlQ && old_pos != line_start) { last_pos = old_pos; old_pos = line_start; } cur_pos = get_cur(); if(update_scr) scr_update(); } sunclock-3.57/editkit/Makefile.kit0000644000000000000000000000514110374403301014036 0ustar # The following defines can be used to change the hardcoded features # (the first two provide *more* features, the last four *less* features) # # GREEK to implement ^C bindings (emacs) or ^KG bindings (wordstar) for # TeX style Greek letters \alpha, etc... # JUSTIFY to enhance the format paragraph routines (e.g., to have # left and right justification, right justification is bound to Esc-J # with emacs style bindings) # # VERTCURS for a vertical cursor # BOXCURS for a box-cursor # TWOBUTN paste with button3 click, set selection with button3 drag # MINIMAL to remove bak files, /usr/share/edmtx and e**rc # TLL for Terry Loveall personal settings #ifndef SHAREDIR SHAREDIR=/usr/share/editkit #endif CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" #CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DMINIMAL -DTWOBUTN -DVERTCURS -DTLL #CFLAGS = -g -pipe TLIBS = -L/usr/lib -ltermcap XLIBS = -L/usr/X11R6/lib -lX11 # Use this for solaris #CFLAGS = -O2 -pipe -Wall #LIBS = -L/usr/openwin/lib -lsocket -lnsl -lresolv -lXext -lX11 all: edt emt edx emx edt: edt.o gcc $(CFLAGS) -o edt edt.o $(TLIBS) @ls -al $@;strip $@;ls -al $@ emt: emt.o gcc $(CFLAGS) -o emt emt.o $(TLIBS) @ls -al $@;strip $@;ls -al $@ edx: edx.o gcc $(CFLAGS) -o edx edx.o $(XLIBS) @ls -al $@;strip $@;ls -al $@ emx: emx.o gcc $(CFLAGS) -o emx emx.o $(XLIBS) @ls -al $@;strip $@;ls -al $@ edt.o: Makefile version.h messages.def termcap.c edit.h edit.c term_bind_ws.c gcc $(CFLAGS) -DWORDSTAR -o edt.o -c termcap.c emt.o: Makefile version.h messages.def termcap.c edit.h edit.c term_bind_em.c gcc $(CFLAGS) -DEMACS -o emt.o -c termcap.c edx.o: Makefile version.h messages.def x11.c edit.h edit.c x11_bind_ws.c gcc $(CFLAGS) -DWORDSTAR -o edx.o -c x11.c emx.o: Makefile version.h messages.def x11.c edit.h edit.c x11_bind_em.c gcc $(CFLAGS) -DEMACS -o emx.o -c x11.c install: if [ -x edt ]; then cp -f edt $(BINDIR); fi if [ -x emt ]; then cp -f emt $(BINDIR); fi if [ -x edx ]; then cp -f edx $(BINDIR); fi if [ -x emx ]; then cp -f emx $(BINDIR); fi mkdir -p $(SHAREDIR) cp -f rc.example $(SHAREDIR)/rc.common cp -f README $(SHAREDIR) if [ -x edt ] || [ -x edx ]; then cp -f MANUAL.wo*ar $(SHAREDIR); fi if [ -x emt ] || [ -x emx ]; then cp -f MANUAL.emacs $(SHAREDIR); fi if [ -x edt ]; then cd $(SHAREDIR); ln -sf rc.common edtrc; fi if [ -x emt ]; then cd $(SHAREDIR); ln -sf rc.common emtrc; fi if [ -x edx ]; then cd $(SHAREDIR); ln -sf rc.common edxrc; fi if [ -x emx ]; then cd $(SHAREDIR); ln -sf rc.common emxrc; fi clean: -rm -f *.o *~ edt emt edx emx cleandir: clean sunclock-3.57/editkit/x11.c0000644000000000000000000006046410446057005012404 0ustar /* edx/emx (EDitor for X) (C) 2002, Terry Loveall released into the public domain. Based upon the original work ee.c of Yijun Ding, copyright 1991 which is in the public domain. This program comes with no warranties or binaries. Use at your own risk. */ #include #include #include #include #include #include #include #include #include #include #include #define XK_MISCELLANY #include #include #ifdef MINIMAL #define DEFAULT_HEIGHT 25 #else #define DEFAULT_HEIGHT 32 #endif #define DEFAULT_WIDTH 80 /* turns on display of keypressed event values in upper right corner */ /* #define DEBUG */ /* #define FONTNAME "-b&h-lucidatypewriter-medium-r-normal-sans-12-*-*-*-m-70-iso8859-1" #define FONTNAME "-b&h-lucidatypewriter-bold-r-normal-sans-12-*-*-*-m-70-iso8859-1" #define FONTNAME "9x15bold" */ #ifdef TLL #define FONTNAME "-b&h-lucidatypewriter-bold-r-normal-sans-12-*-*-*-m-70-iso8859-1" #else #define FONTNAME "8x13" #endif #define X11 /* #define cprintf(s,v) { char str[350]; sprintf(str,s,v); cputs(str); } */ #/************************************************************/ /* use MS style COORD to track cursor pos */ typedef struct { int X; /* x coordinate */ int Y; /* y coordinate */ } COORD; /* x-y structure */ COORD outxy; /* cursor coordinates for screen positioning */ #/************************************************************/ /* X related globals */ Display *dpy; Window win; GC gc; XFontStruct *font; /* int Ascent, Descent; */ /* font max y excursions */ XEvent event; XKeyEvent *keve; Time eve_time; char *selection_text; /* selected text for X clipboard */ char *comment; int selection_length; int expose; int vtot, vcur, pos, ftheight; /* global variables for scrollbar */ int Width, Height; int fwidth, fheight, ycur = 0; /* font character width, height */ /* Foreground, Background normal and highlight colores */ XColor FgXColor, BgXColor, CrXColor, HiFgXColor, HiBgXColor; int HiLo; /* hightlight status, 0=off */ Atom DeleteWindow; /* Atom of delete window message */ /* char *FgColor="Black", *BgColor="Linen", *HiFgColor="Black", *HiBgColor="Grey75"; */ #ifdef DARK char *FgColor="Yellow", *BgColor="Black", *CrColor="White", #else char *FgColor="Black", *BgColor="White", *CrColor="Red", #endif *HiFgColor="Black", *HiBgColor="Grey84"; char *FontName=NULL; char *DisplayName=NULL; char *AppName; char *RcFile = NULL; char *Geometry=NULL; /* maximum viewable 6x8 chars on a 2000x1600 screen */ #define MAXVLINE 450 char eolbuf[MAXVLINE]; /* holds spaces for clreol(), 450 is 2000x1600 */ /* func prototypes */ void gotoxy(int horz,int vert); void cursor_draw(unsigned long color); void draw_cursor(); void undraw_cursor(); void drawstring(char *str, int len); void cputs(char *prntstr); int putch(char chr); void clreol(); void highvideo(); void lowvideo(); void clrscr(); void bell(); void show_vbar(); void update(); void scroll_text(); void sig_handler(int); void font_height(void); int paste_primary(int win, int property, int Delete); int request_selection(int time); char *mrealloc(char *s, int len); void set_selection(); void send_selection(XSelectionRequestEvent * rq); void init(int argc,char *argv[]); void handle_key(char *astr, int skey, int state); void moveto(); void do_paste(); void do_select(int delete); void iconify(); void set_title(char *str); /* for monolithic whole include engine here */ #include "version.h" #include "messages.def" #include "edit.h" #ifdef EMACS #include "x11_bind_em.c" #endif #ifdef WORDSTAR #include "x11_bind_ws.c" #endif /******************** Start of cursor I/O ********************/ /* Goto the specified location. */ void gotoxy(int horz,int vert) { outxy.X = horz; outxy.Y = vert; } void cursor_draw(unsigned long color) { XSetForeground(dpy, gc, color); #ifdef VERTCURS XDrawRectangle(dpy, win, gc, (outxy.X * fwidth) + 2, (outxy.Y * fheight) + 2, 0, fheight - 0); #else #ifdef BOXCURS XDrawRectangle(dpy, win, gc, (outxy.X * fwidth) + 1, (outxy.Y * fheight) + 2, fwidth, fheight); #else XFillRectangle(dpy, win, gc, (outxy.X * fwidth) + 2, ((outxy.Y+1)* fheight) + 2, fwidth-1, 2); #endif #endif XSetForeground(dpy, gc, HiLo ? HiFgXColor.pixel : FgXColor.pixel); } void draw_cursor() { /* cursor_draw( HiLo ? HiFgXColor.pixel : FgXColor.pixel); */ cursor_draw( CrXColor.pixel); } void undraw_cursor() { cursor_draw( HiLo ? HiBgXColor.pixel : BgXColor.pixel); } void drawstring(char *str, int len) { if (outxy.X+len>screen_width+1) len = screen_width+1-outxy.X; XDrawImageString(dpy, win, gc, (outxy.X * fwidth) + 2, (outxy.Y+1) * fheight, str, len > 0 ? len : 0); } int putch(char chr) { static char str[]="\0\0"; if(chr >= ' '){ str[0] = chr; drawstring(str, 1); outxy.X += 1; } if(!(chr) || ((chr & 0xff) == LF)){ clreol(); outxy.X = 0; outxy.Y += 1; } return 0; } void cputs(char *prntstr) { int strl = strlen(prntstr); drawstring(prntstr, strl); outxy.X += strl; } /* Erase from cursor to end of line. */ void clreol() { int tmpx = outxy.X; int eollen = abs(screen_width+1 - tmpx); outxy.X = outxy.X <= screen_width ? outxy.X : screen_width+1; drawstring(eolbuf, eollen); outxy.X = tmpx; } /* display string if visible, bump X */ void highvideo() { XSetBackground(dpy,gc,HiBgXColor.pixel); XSetForeground(dpy,gc,HiFgXColor.pixel); HiLo = -1; } void lowvideo() { XSetBackground(dpy,gc,BgXColor.pixel); XSetForeground(dpy,gc,FgXColor.pixel); HiLo = 0; } void clrscr() { XClearWindow(dpy,win); } void bell() { XBell(dpy,100); } void show_vbar() { int j; /* display buffer screen height in pixels */ vtot = (screen_height-2)*fheight - font->descent; /* font true height as a constant */ ftheight = fheight+font->descent+1; /* thumb height is display buffer percentage of total lines */ vcur = (vtot*(screen_height-1))/((ytot)?ytot:1); /* min thumb size is 1 char */ if (vcurj) vcur = j; /* current line number to vertical thumb pos */ pos = (ytru * (vtot-(vcur-fheight)))/((ytot)? ytot:1); /* draw scrollbar through */ XSetForeground(dpy,gc,HiBgXColor.pixel); #ifdef THREED // provide background for line scroll triangles XFillRectangle(dpy, win, gc, Width-10, 0, 10, Height); #else /* indicate line scroll rectangles */ XFillRectangle(dpy, win, gc, Width-10, ftheight, 10, Height+2-2*(ftheight)); #endif /* THREED */ /* draw thumb */ XSetForeground(dpy,gc,~HiBgXColor.pixel); XDrawRectangle(dpy, win, gc, Width-9, ftheight+pos, 8, vcur); #ifdef THREED { XPoint opoints[] ={{Width-10,ftheight-1},{10,0}, {-5,-9},{-5,9}, {0,Height+2-(2*(ftheight))},{5,9}, {5,-9},{-10,0} }; XSegment lpoints[] ={{Width-1, ftheight+pos, Width-9, ftheight+pos}, {Width-9, ftheight+pos, Width-9, ftheight+pos+vcur}, {Width-9, ftheight-2, Width-6, ftheight-9}, {Width-9, Height+2-ftheight, Width-6, Height+3-ftheight+6} }; /* outline trough and end triangles */ XDrawLines(dpy, win, gc, opoints, 8, CoordModePrevious); /* draw in light color for 3D shading */ XSetForeground(dpy, gc, -1); XDrawSegments(dpy, win, gc, lpoints, 4); } #endif /* THREED */ lowvideo(); } void scroll_text() { int m, rep; if (ycur<0) { y=0 ; scroll_down(); ycur = 0; } if (ycur>ytot) ycur = ytot; m = (ycur * vtot) / (ytot? ytot : 1); rep = abs(ytru-ycur)/screen_height; if(m<0) scroll_down(); /* if cursor at top of screen */ else if(m>vtot+ftheight) scroll_up(); /* if cursor at bottom of screen */ else if(mpos+vcur) { for (m=0; m 0); update_scr = 1; /* _now_ update display */ flag[SHW] = 1; scr_update(); flag[IND] = indent; /* restore autoindent state */ return(nread); } int request_selection(int time) { Window w; Atom property; if ((w = XGetSelectionOwner(dpy, XA_PRIMARY)) == None) { int tmp = paste_primary(DefaultRootWindow(dpy), XA_CUT_BUFFER0, False); return(tmp); } property = XInternAtom(dpy, "VT_SELECTION", False); XConvertSelection(dpy, XA_PRIMARY, XA_STRING, property, win, time); return(0); } char *mrealloc(char *s, int len) { char *ttt; if(!s) ttt = (char *) malloc(len); else ttt = (char *) realloc(s, len); return ttt; } void set_selection() { int i; if(!flag[BLK] || mk == cur_pos) return; if(cur_pos < mk) { bstart = cur_pos; bend = mk; } else { bstart = mk; bend = cur_pos; } selection_length = bend - bstart; if ((selection_text = (char *) mrealloc(selection_text, selection_length)) == NULL) { printf(SELECT_REALLOC"\n"); se_exit: bell(); return; } for (i = 0; i < selection_length; i++) { selection_text[i] = bstart[i] == EOL ? '\n' : bstart[i]; } XSetSelectionOwner(dpy, XA_PRIMARY, win, (Time) eve_time); if (XGetSelectionOwner(dpy, XA_PRIMARY) != win) { printf(CANT_SELECT"\n"); goto se_exit; } XChangeProperty(dpy, DefaultRootWindow(dpy), XA_CUT_BUFFER0, XA_STRING, 8, PropModeReplace, selection_text, selection_length); } void send_selection(XSelectionRequestEvent * rq) { XSelectionEvent notify; notify.type = SelectionNotify; notify.display = rq->display; notify.requestor = rq->requestor; notify.selection = rq->selection; notify.target = rq->target; notify.time = rq->time; XChangeProperty(dpy, rq->requestor, rq->property, XA_STRING, 8, PropModeReplace, selection_text, selection_length); notify.property = rq->property; XSendEvent(dpy, rq->requestor, False, 0, (XEvent *) & notify); } void parse_arg(char *arg1, char *arg2) { if(*arg1=='-') { if (!strcasecmp(arg1, "-f")) strcpy(ewin.name, arg2); else if (!strcasecmp(arg1, "-t")) tabsize = atoi(arg2); else if (!strcasecmp(arg1, "-j")) ewin.jump = atoi(arg2); else if (!strcasecmp(arg1, "-w")) { screen_width = atoi(arg2); if (screen_width<20) screen_width = 20; if (screen_width>180) screen_width = 180; } else if (!strcasecmp(arg1, "-h")) { screen_height = atoi(arg2); if (screen_height<5) screen_height = 5; if (screen_height>80) screen_height = 80; } else if (!strcasecmp(arg1, "-fn")) FontName = strdup(arg2); else if (!strcasecmp(arg1, "-rc")) RcFile = strdup(arg2); else if (!strcasecmp(arg1, "-fg")) FgColor = strdup(arg2); else if (!strcasecmp(arg1, "-bg")) BgColor = strdup(arg2); else if (!strcasecmp(arg1, "-hifg")) HiFgColor = strdup(arg2); else if (!strcasecmp(arg1, "-hibg")) HiBgColor = strdup(arg2); else if (!strcasecmp(arg1, "-cr")) CrColor = strdup(arg2); else if (!strcasecmp(arg1, "-edit")) flag[EDT] = atoi(arg2); } #ifndef MINIMAL if(*arg1=='@') { char *ptr; int i; i = tolower(arg1[1])-'a'; if (i>=0 && i<26) { ptr = arg2; while(isspace(*ptr)) ++ptr; if (binding[i]) free(binding[i]); binding[i] = strdup(ptr); } } #endif /* MINIMAL */ } #ifndef MINIMAL void parse_rc(FILE *f) { char buf[512], *ptr; int i, l; while ((ptr=fgets(buf, 510, f))) { while (isspace(*ptr)) ++ptr; if (strlen(ptr)<2 || *ptr == '#') continue; i = 0; while(ptr[i] && !isspace(ptr[i])) ++i; if (!ptr[i]) continue; ptr[i++] = '\0'; if (ptr[i]) { l = strlen(ptr+i)+i-1; if (l>=i && ptr[l]=='\n') ptr[l] = '\0'; parse_arg(ptr, ptr+i); } } } void read_rc() { FILE *fr = NULL; char name[NLEN], *ptr; if ((ptr=getenv("HOME"))) { if (RcFile) { if (ptr && *RcFile == '~' && RcFile[1] == '/') sprintf(name, "%s/%s", ptr, RcFile+2); else strcpy(name, RcFile); } else sprintf(name, "%s/.%s", ptr, DEFAULT_RC); fr = fopen(name, "r"); } if (!fr) { sprintf(name, "%s/%s", SHAREDIR, DEFAULT_RC); fr = fopen(name, "r"); } if (fr) { parse_rc(fr); fclose(fr); } } #endif /* MINIMAL */ void init(int argc,char *argv[]) { int screen; XWMHints *wmh; XSizeHints *xsh; XClassHint *classh; XColor tmp; int i, x, y; /* Default settings */ *ewin.name = '\0'; amax = AMAX; bmax = BMAX; umax = UMAX; /* engine screen width, height, font */ screen_height = DEFAULT_HEIGHT - 1; screen_width = DEFAULT_WIDTH; #ifndef MINIMAL memset((void *)binding, 0, 26*sizeof(char *)); for (i=1; iascent + font->descent; Height = fheight * screen_height + font->descent + 2; /* engine screen width */ fwidth = XTextWidth(font,"8",1); Width = (fwidth * screen_width)+13; xsh->flags = PSize; xsh->width = Width; xsh->height = Height; /* initialize clreol string to all blanks */ memset(eolbuf, ' ', sizeof(eolbuf)); /* create the only window */ win=XCreateSimpleWindow(dpy,RootWindow(dpy,screen), x, y, Width, Height, 0, BlackPixel(dpy,screen),WhitePixel(dpy,screen)); /* setup window hints */ wmh->initial_state=NormalState; wmh->input=True; wmh->window_group = win; wmh->flags = StateHint | InputHint | WindowGroupHint; /* setup window class resource names */ classh->res_name = (AppName==NULL)?EDIT:AppName; classh->res_class = "Xedit"; /* name that window */ XmbSetWMProperties(dpy, win, EDIT, EDIT, argv, argc, xsh, wmh, classh); /* notify X on how to force emx to exit */ XSetWMProtocols(dpy, win, &DeleteWindow, 1); /* specify accepted XEvent loop events */ XSelectInput(dpy, win, KeyPressMask|\ FocusChangeMask|\ StructureNotifyMask|\ ButtonPressMask|\ ButtonReleaseMask|\ ExposureMask|\ PropertyChangeMask|\ Button1MotionMask|\ Button2MotionMask|\ Button3MotionMask|\ VisibilityChangeMask ); keve = (XKeyEvent *)&event; /* create the Graphic Context for drawing purposes */ gc=XCreateGC(dpy,win,0,NULL); /* allocate required colors */ XAllocNamedColor(dpy,DefaultColormap(dpy,screen),FgColor,&FgXColor,&tmp); XAllocNamedColor(dpy,DefaultColormap(dpy,screen),BgColor,&BgXColor,&tmp); XAllocNamedColor(dpy,DefaultColormap(dpy,screen),CrColor,&CrXColor,&tmp); XAllocNamedColor(dpy,DefaultColormap(dpy,screen),HiFgColor,&HiFgXColor,&tmp); XAllocNamedColor(dpy,DefaultColormap(dpy,screen),HiBgColor,&HiBgXColor,&tmp); /* apply colors to window */ XSetForeground(dpy,gc,FgXColor.pixel); XSetWindowBackground(dpy,win,BgXColor.pixel); /* set the font */ XSetFont(dpy,gc,font->fid); /* map the window real */ XMapWindow(dpy, win); } void handle_key(char *astr, int skey, int state) { char chstr[256]; int x=outxy.X, y=outxy.Y, n=0; /* display keyboard shift/control/alt status */ highvideo(); gotoxy(0,yl1); for(n=5;n;chstr[n--]=' '); if(state & ShiftMask) chstr[n++] = 'S'; if(state & Mod1Mask) chstr[n++] = 'A'; if(skey & 0xff00) chstr[n++] = 'F'; if(state & ControlMask) chstr[n++] = '^'; chstr[n] = skey & 0xff; chstr[5] = '\0'; cputs(chstr); chstr[0] = '\0'; #ifdef DEBUG /* display raw key event data */ sprintf(chstr,"k=%4x,s=%2x.",skey,state); #endif /* DEBUG */ gotoxy(screen_width - 12,0); clreol(); cputs(chstr); gotoxy(x,y); lowvideo(); if((skey >= 0xffe1) && (skey <= 0xffee)) return; if(skey == NoSymbol) return; switch(executive) { case MAIN: main_exec(skey); break; case DIALOG: dialog(skey); break; case OPTIONS: options(skey); break; } } void moveto() { move_to(((event.xbutton.x < 0 ? 0 : event.xbutton.x)/fwidth) + 1 + xlo, ((event.xbutton.y-3)/fheight) - 1); } void do_select(int delete) { if(flag[BLK] && mk != cur_pos) { set_selection(); block_copy(delete); } mark_off(); } void do_paste() { if(flag[BLK] && executive == MAIN) block_remove_update(); request_selection(event.xbutton.time); } void iconify() { XIconifyWindow(dpy, win, DefaultScreen(dpy)); } void set_title(char *str) { char b[NLEN]; sprintf(b, EDIT" : %s", str); XStoreName(dpy, win, b); } int main(int argc,char *argv[]) { Atom WM_PROTOCOLS = 0; struct sigaction sig; int yp0 = 0, yp1 = 0, yf, yt; init(argc,argv); /* disconnect from the console */ /* JPD commented this out. Use instead emx/edx & from shell */ /* switch (fork()) { case 0: case -1: break; default: exit(0); } */ /* set path */ if (cfdpath == NULL) { cfdpath = (char *) malloc(BUFSIZ); getcwd(cfdpath, BUFSIZ); if (strcmp(cfdpath, "/") != 0) strcat(cfdpath, "/"); } usleep(10000); XFlush(dpy); do_open(); /* end of edit engine init */ /* request/create WM_PROTOCOLS atom */ WM_PROTOCOLS = XInternAtom(dpy, "WM_PROTOCOLS", False); /* set up the signal handler response */ sig.sa_handler=sig_handler; sigemptyset(&sig.sa_mask); sig.sa_flags=SA_RESTART; sigaction(SIGALRM,&sig,NULL); /* display the initial cursor */ clrscr(); #define DBLCLICK 300 /* main event loop, dispatch function calls in response to events */ for(;;) { static Time button_release_time; static int buttonpressed = 0; XNextEvent(dpy,&event); switch(event.type) { case Expose: while(XCheckTypedEvent(dpy,Expose,&event)); expose = 1; update(); expose = 0; break; case MotionNotify: if (buttonpressed==-1) { if (executive == MAIN) { ycur = ((event.xbutton.y - ftheight)*ytot)/vtot; scroll_text(); } break; } #ifndef TWOBUTN motion: yf = (buttonpressed == Button3)? fheight : 0; #endif if(buttonpressed) { #ifdef TWOBUTN if(!flag[BLK]) block_mark(); undraw_cursor(); if (event.xbutton.y < fheight + 2) { #else if(!flag[BLK] && ! yf) block_mark(); undraw_cursor(); if (event.xbutton.y < fheight + yf + 2) { #endif moveto(); cur_pos = get_cur(); scroll_down(); scr_update(); } else #ifdef TWOBUTN if (event.xbutton.y >= Height-6-font->descent) { #else if (event.xbutton.y >= Height-yf-6-font->descent) { #endif moveto(); cur_pos = get_cur(); scroll_up(); scr_update(); } else { #ifndef TWOBUTN if (yf) goto finish; #endif moveto(); yf = yp0; if (yyt) yt = y; if (yp1>yt) yt = yp1; show_scr(yf, yt); #ifndef TWOBUTN finish: #endif moveto(); cur_pos = get_cur(); gotoxy(x-1,y+1); draw_cursor(); yp1 = y; } } break; case ButtonPress: if (event.xbutton.button>Button3 && executive==MAIN) { if (event.xbutton.button==Button4) { ycur -= 3; scroll_text(); } if (event.xbutton.button==Button5) { ycur += 3; scroll_text(); } break; } help_done = 0; undraw_cursor(); if (event.xbutton.x>=Width-10) { buttonpressed = -1; if (executive == MAIN) scroll_text(event.xbutton.y); break; } buttonpressed = event.xbutton.button; #ifndef TWOBUTN if (buttonpressed == Button3) { mark_off(); scr_update(); goto motion; } #endif if (event.xbutton.time - eve_time < DBLCLICK) break; eve_time = event.xbutton.time; moveto(); yp0 = y; flag[SHW] = 1; cur_pos = get_cur(); if (flag[BLK]) { mark_off(); /* unmark */ scr_update(); } else { block_mark(); /* start new mark */ draw_cursor(); } break; case ButtonRelease: if (buttonpressed==-1) { buttonpressed = 0; break; } buttonpressed = 0; #ifndef TWOBUTN if (event.xbutton.button == Button3) goto motion; #endif switch (event.xbutton.button) { case Button1: if (event.xbutton.time - button_release_time < DBLCLICK) { mark_off(); cursor_right(); word_left(); block_mark(); /* set mark to left end of word */ word_right(); scr_update(); /* set mark to right end of word */ break; } else { button_release_time = event.xbutton.time; if (mk == cur_pos) mark_off(); else set_selection(); goto setcursor; } break; #ifdef TWOBUTN case Button2: case Button3: #else case Button2: #endif if ((event.xbutton.time - eve_time < DBLCLICK) && (event.xbutton.time - eve_time)) { do_paste(); } goto setcursor; } break; setcursor: moveto(); flag[SHW] = 1; cur_pos = get_cur(); if (flag[BLK]) scr_update(); else draw_cursor(); break; case KeyPress:{ int count; char astr[10]; KeySym skey; eve_time = keve->time; astr[0] = 0; count = XLookupString(keve, astr, sizeof (astr), &skey, NULL); astr[count] = 0; handle_key(astr, skey, keve->state); } break; case SelectionClear: break; case SelectionRequest: send_selection((XSelectionRequestEvent *) & event); break; case SelectionNotify: paste_primary(event.xselection.requestor, event.xselection.property, True); break; case ConfigureNotify: Width = event.xconfigure.width; screen_width = (Width-16)/fwidth; Height = event.xconfigure.height; screen_height = (Height/fheight) -1 ; update(); break; case ClientMessage: if(event.xclient.message_type == WM_PROTOCOLS) { if(event.xclient.data.l[0] == DeleteWindow) { XCloseDisplay(dpy); flag[CHG] = 0; sys_exit(0); } } break; case DestroyNotify: XCloseDisplay(dpy); exit(0); } } } sunclock-3.57/editkit/version.h0000644000000000000000000000002707503544365013464 0ustar #define VERSION "1.01" sunclock-3.57/version.h0000644000000000000000000000024610446460620012021 0ustar /* * Keep track of version and patch level of sunclock. */ #define VERSION "3.56" #define RELEASE "22 06 2006" #define COPYRIGHT "© J.-P. Demailly" sunclock-3.57/tildepath.c0000644000000000000000000000461307153746233012317 0ustar /* T* NAME * * tildepath.c - Convert ~name to a path. * T* SYNOPSIS * * char *tildepath(path); * char *path; - ~path specification * T* DESCRIPTION * * This routine takes a path of the for ~[name]/... and returns the true * path for the users home directory. Any additional path information is * tacked onto the end of the new path. * T* RETURNS * * A path if one is valid, NULL otherwise. Note that the memory allocated * for the new path should be freed by the calling program. * T* AUTHOR * * Stephen Martin, March 12, 1991. */ /* * Version */ /* static char SccsId[] = { "@(#) tildepath.c 1.1@(#)" }; */ /* * Include Files */ #include #include #include #include #include #include /* * Define Statements */ #ifndef NULL #define NULL (char *) 0 #endif /* * tildepath() */ char * tildepath(path) char *path; /* Path starting with ~ */ { /* * Local Variables */ char *username; /* Points to the username */ char *rest; /* Rest of input path */ char *result; /* Used to construct the result */ struct passwd *pwent; /* Password entry for user */ int size; /* Length of new path */ /* * Functions */ /* char *strdup(); */ /* Make a copy of a path */ /* * If the path doesn't start with ~ quit right now */ if (path[0] != '~') return(NULL); /* * Find the name delimited by / or the end of the string */ if ((username = strdup(++path)) == NULL) return(NULL); if ((rest = strchr(username, '/'))) { *rest = '\0'; rest++; } /* * Get the user's password entry */ if (username[0]) pwent = getpwnam(username); else pwent = getpwuid(getuid()); /* * Check to see if a password entry was found */ if (pwent == NULL) { free(username); return(NULL); } /* * Determine the size of the new path and allocate space for it */ size = strlen(pwent->pw_dir) + 1; if (rest && (rest[0] != '\0')) size += strlen(rest) + 1; if ((result = calloc(size, sizeof(char))) == NULL) { free(username); return(NULL); } /* * Copy over the new path */ strcpy(result, pwent->pw_dir); if (rest && (rest[0] != '\0')) { strcat(result, "/"); strcat(result, rest); } /* * Done */ free(username); return(result); } sunclock-3.57/sunclock.man0000644000000000000000000012067610501244214012502 0ustar .TH SUNCLOCK 1 "June 22, 2006" .SH NAME sunclock \- a fancy clock for the X Window system, providing local time (legal time and solar time), sunrise, sunset and various geographical data through a point and click interface. .SH SYNOPSIS .B sunclock [ .I options ] .PP where the list of licit options is the following long list (starting from (**) the options are configurable at runtime): .PP [\-help] [\-listmenu] [\-version] [\-citycheck] \ [\-display name] [\-sharedir directory] [\-citycategories value] \ [\-clock] [\-map] [\-dock] [\-undock] \ [\-menu] [\-nomenu] [\-selector] [\-noselector] \ [\-zoom] [\-nozoom] [\-option] [\-nooption] [\-urban] [\-nourban] .PP (**) [\-language name] [\-rcfile file] \ [\-command string] [\-editorcommand string] \ [\-mapmode * ] [\-dateformat string1|string2|...] \ [\-image file] [\-clockimage file] [\-mapimage file] [\-zoomimage file] \ [\-clockgeom ] [\-mapgeom ] \ [\-auxilgeom ] [\-menugeom ] [\-selgeom ] \ [\-zoomgeom ] [\-optiongeom ] [\-urbangeom ] \ [\-title name] [\-clockclassname name] [\-mapclassname name] \ [\-auxilclassname name] [\-classname name] \ [\-setfont |{|}] \ [\-verbose] [\-silent] [\-synchro] [\-nosynchro] [\-zoomsync] [\-nozoomsync] \ [\-placement (random, fixed, center, NW, NE, SW, SE)] \ [\-placementshift x y] [\-extrawidth value] \ [\-decimal] [\-dms] [\-city name] [\-position latitude|longitude] \ [\-addcity size|name|lat|lon|tz] [\-removecity name (name|lat|lon)] \ [\-rootdx value] [\-rootdy value] [\-fixedrootpos] [\-randomrootpos] \ [\-screensaver] [\-noscreensaver] [\-rootperiod value (in seconds)] \ [\-animation] [\-noanimation] [\-animateperiod value (in seconds)] \ [\-progress number[s,m,h,d,M,Y]] [\-jump number[s,m,h,d,M,Y]] \ [\-aspect mode] [\-colorlevel level=0,1,2,3] \ [\-fillmode number=0,1,2] [\-coastlines] [\-contour] [\-landfill] \ [\-shading mode=0,1,2,3,4,5] [\-diffusion value] [\-refraction value] \ [\-night] [\-terminator] [\-twilight] [\-luminosity] [\-lightgradient] \ [\-nonight] [\-darkness value<=1.0] [\-colorscale number>=1] \ [\-mag value] [\-magx value] [\-magy value] [\-dx value ] [\-dy value] \ [\-spotsizes s1|s2|s3|... (0<=si<=4, 1<=i<=citycategories)] \ [\-sizelimits w1|w2|w3|... (wi = zoom width values, 1<=i<=citycategories)] \ [\-citymode mode=0,1,2,3] [\-objectmode mode=0,1,2] \ [\-sun] [\-nosun] [\-moon] [\-nomoon] [\-tropics] [\-notropics] \ [\-meridianmode mode=0,1,2,3] [\-parallelmode mode=0,1,2,3] \ [\-meridianspacing value] [\-parallelspacing value] \ [\-dottedlines] [\-plainlines] [\-bottomline] [\-nobottomline] \ [\-reformat] [\-vmfcolors color1|color2|color3...] \ [\-vmfrange a|b|c|d] [\-vmfcoordformat format] [\-vmfflags integer] \ [\-setcolor field|color] .SH DESCRIPTION .I sunclock is an X11 application that displays a map of the Earth and shows the illuminated portion of the globe. In addition to providing local time for the default timezone, it also displays GMT time, legal and solar time of major cities, their latitude and longitude, the mutual distances of arbitrary locations on Earth, the position at zenith of Sun and Moon. Sunclock can display meridians, parallels, tropics and arctic circles. It has builtin functions that accelerate the speed of time and show the evolution of seasons. Sunclock can be internationalized for various western languages. It is possible to customize the app\-default file and enter additional city entries. Sunclock can commute between two states, the "clock window" and the "map window". The clock window displays a small map of the Earth and therefore occupies little space on the screen, while the "map window" displays a large map and offers more advanced functions. The Sunclock package includes a resizable and zoomable vector map . External Earth maps can also be loaded (starting with version 3.51, formats \.jpg, \.gif, \.png, \.xpm or \.xpm.gz, \.vmf can be read [\.vmf is the specific vector map format of sunclock]). Some additional formats could be added in the future. The map window can work in five different modes: .PP \- "Legal time" mode: legal time of default time zone and GMT time are displayed. .PP \- "Coordinate" mode: by clicking on a city, users get coordinates (latitude, longitude) of that city, legal time and sunrise/sunset. .PP \- "Solar" mode: by clicking on a point of the map (either a city or another point), solar time and day length are shown. .PP \- "Hour Extension" mode: displays solar times from 00:00 to 23:00 in bottom strip, according to the Sun position. .PP \- "Distance" mode: shows distances in km and miles between two arbitrary locations. .PP Depending on the mode chosen, the bottom line shows a short text displaying the requested information. The bottom line can be scrolled to the right or to the left by pressing the PageUp/PageDown and Home/End key arrows. .PP A further functionality is the "Progress" feature, which allows to accelerate the evolution of time, so as to observe the evolution of day/night periods and seasons. By default, the Sun and Moon are also shown on the map (rather, the positions of Earth where Sun and Moon are at zenith are shown). Coordinates of meridians, parallels, cities, the names of cities can be displayed on the map. All functionalities can be accessed though GUI actions on the main window or the auxiliary windows. The main window is resizable by pulling the window edges \- as the current window manager permits it. There are 5 auxiliary windows: .PP \- Menu Window. This is the main menu, which offers a wide list of actions. The menu window is launched by typing 'H' or clicking on the bottom strip with the left mouse button once. Each action can be obtained by using the indicated keyboard shortcut or by clicking with the mouse on the corresponding entry. Upper/lower case is irrelevant, except for options or actions which have more than 2 switches. Lower case then rotates the switches in one direction, upper case in the other direction. For those switches, the left mouse button will have the same effect as lower case, and the right mouse button the same effect as upper case. .PP \- File Selector window. It can be accessed by clicking on the upper part of the main window with the middle mouse button. It allows to select the Earth image file (in formats *.vmf *.xpm, *.xpm.gz, *.jpg, *.gif, *.png) to be loaded. .PP \- Zoom window. It can be accessed by clicking on the upper part of the main window with the right mouse button. The zoom window allows to select a specific area on the Earth, to translate or zoom it up to 100 times. High resolutions (larger than 10) are only recommended with the "huge" Earthmap of 11 Mbytes, which offers clean images up to 20 times magnification at least. .PP \- Urban selector window. Allows to modify interactively the list of shown cities and locations. .PP \- Option window. Allows to reconfigure pretty much everything on the fly (colors, fonts, etc), exactly as with the command line options. .SH OPTIONS The program does not use the Xt nor any other more advanced toolkit, and hence only (!) those options explicitly enumerated below may be used. The only needed resource is the list of coordinates and timezones of cities to be displayed. The system administrator can possibly customize the system\-wide prepackaged config file Sunclockrc before installing the package, while users can tweak their individual configuration file ~/.sunclockrc at any time. The individual config file ~/.sunclockrc is read *after* the system wide config file Sunclockrc, and therefore its settings override those of the system wide config. The command line options can be used to override ~/.sunclockrc itself. .TP .BI "\-help " Show brief help and exit. .TP .BI "\-listmenu " Explanations on the actions available from the builtin menu. .TP .BI "\-version " Show program version and exit. .TP .BI "\-verbose " Make Sunclock verbose. The program then sends to stderr some information on the internal operations performed. This is disabled by default. .TP .BI "\-silent " Make Sunclock silent about internal operations performed. This is the default. .TP .BI "\-citycheck " At start-up, check that there are no repetitions in the list of cities (a city is considered to be repeated if it appears twice under the same name, with coordinates differing by at most 0.5 degree). By default no check is performed on Sunclockrc - which is supposedly correctly set up... .TP .B "\-display " dispname Give the name of the X server to contact. .TP .B "\-language " name Select language to be used in the sunclock menu and help. .TP .B "\-title name" Change the specification of the string which should appear in the title bar of the main and auxiliary windows. Default is the application name, i.e., sunclock. .TP .B "\-classname name" Change the specification of class application name. Default is Sunclock. Other specifications can be passed so that aware window managers might use it for configuration purposes. You might e.g. pass \-classname NoTitle-Sticky, and configure properly your WM so that it removes the title bar, and make the window sticky with respect to the Desktop Pager. With fvwm, you could use for instance .PP Style "*NoTitle*" NoTitle, WindowListHit, Sticky .PP Style "*ShowTitle*" Title, WindowListHit, Slippery .PP Style "*Sticky*" Sticky .PP to specify such a behaviour. .TP .B "\-setfont " |{|} Select the font for the given text field (clockstrip, menustrip, city, coord, menu). Optionally, one can specify a list of languages for which this font setting should apply. If the option is not specified, the font setting applies to all languages. .TP .B "\-rcfile " filename Read a configuration file that is different from the user default ~/.sunclockrc (if this option is not set, the user config file defaults to ~/.sunclockrc). Notice that the app-default config file Sunclockrc is read first, and the file set by the \-rcfile option is read afterwards; therefore its settings override those set by the system wide config file. Reading further config files is possible at runtime, using the option window. Set \-rcfile with a void string "" if you wish to bypass the user config file step. .TP .B "\-sharedir " directory Set the directory where system wide shared Earthmaps are located. Default is /usr/share/sunclock/earthmaps. .TP .B "\-image " *.jpg (or *.gif, *.png, *.vmf, *.xpm, *.xpm.gz) Start sunclock with an Earth map image loaded in the clock and map windows. The same map is then used for both windows, but the clock image is usually scaled down. .TP .B "\-mapimage " *.jpg (or *.gif, *.png, *.vmf, *.xpm, *.xpm.gz) Start sunclock with an Earth map image loaded in the map window. .TP .B "\-clockimage " *.jpg (or *.gif, *.png, *.vmf, *.xpm, *.xpm.gz) Start sunclock with an Earth map image loaded in the clock window. .TP .B "\-zoomimage " *.jpg (or *.gif, *.png, *.vmf, *.xpm, *.xpm.gz) Use specified file as image in the zoom widget .TP .B "\-colorlevel " level=0,1,2,3 Sets the color level (0=monochrome, 1=few colors, 2=many colors, 3=full colors). With the "monochrome" setting, day and night appear respectively as mapbgcolor (white by default) and mapfgcolor (black by default), and no shading is available; all other features (city names, coordinates) appear also as monochrome. With the "few colors" setting, the menus and city spots can be represented with dedicated colors, but the meridians/parallels/tropics are still monochrome. With the "many colors" oprions, meridians/parallels/tropics can also be drawn in color. In these first 3 modes, only .vmf vector maps can be loaded. These modes save a lot of CPU power - since a simple algorithm of inversion of colors is used to set colors of all points in the map. Monochrome mode can be useful for very slow CPUs, such as those in use in PDAs with black and white screen. The full color mode (level=3) allows to load jpeg or other colorful images; day and night can be drawn with various shading parameters. This is the default and recommended mode if you have a reasonably recent machine with enough video RAM. .TP .B "\-dock " This option is meant to give sunclock the ability to be docked in the window manager buttons or menu bar, providing that the WM offers this possibility without requiring special hints (fvwm2 or windowmaker or afterstep will work perfectly well for that purpose, KDE or Gnome won't...) Under the \-dock option, sunclock locks the size of the first launched window, which is necessarily a small clock. Also, that initial window can no longer be closed by typing 'K' or 'Q'. (The only way to exit the application, then, is to kill it with xkill, or to undock it first with the \-undock option from the Option window). The user might want to customize the size and suitable options so that sunclock fits with the size of the dockable applets. As an example, sunclock could be invoked as follows: .TP .B " " sunclock \-language fr \-nobottomline \-dock \-clockgeom 63x42+2+190 \-dateformat "%H:%M:%S|%a%_%d%_%b|%b%_%Y|%j%_%U/52" \-command "xdiary" .TP .B "\-undock " Undocks sunclock. This option has no other effect than reallowing the use of options that were "frozen" under \-dock. It can be used e.g. to exit the application when sunclock has been started in dock mode. .TP .B "\-synchro " With this option, sunclock updates all windows simultaneously. This, of course, requires more CPU time and may slow down sunclock's operation if too many windows have been opened. The default is to update only the active window. .TP .B "\-nosynchro " With this option, sunclock only updates the active window. This is the default. .TP .B \-clock Start in the clock state. This is the default and thus need not be specified. .TP .BI "\-dateformat string1|string2|..." Set the format(s) used in the text output in the bottom strip of the clock. The default date format consists of 3 strings: .PP %H:%M%_%a%_%d%_%b%_%y|%H:%M:%S%_%Z|%a%_%j/%t%_%U/52 .PP Here %H,%M,%S stand for hour, minutes, seconds, %a for dayname, %b for monthname, %d for monthday number, %j for yearday number, %m for month number, %y for year last two digits, %Y for year number, %t for number of days in year (365 or 366), %Z for timezone, %U for week number (week #1 is the week with the first thursday of the year); all other characters are reproduced as such, except %_ which stands for a blank space, %% which stands for % and %| which stands for |. The vertical bar | is used as a delimiter to indicate successive time formats. There can be as many formats as desired, and the actual selection cycles through all these formats by clicking on the bottom strip with the mouse. The first string (i.e. the one preceding the first bar) is taken as the default format. There are a few other switches, such as %h for hour in 12-hour mode, %P fo AM/PM indicator, %G for hour in GMT time, %N for minutes in GMT time. .TP .BI "\-map " Start in the map state. Useful to start right away with advanced functionalities. .TP .BI "\-decimal " Initializes coordinate values of geographical data in decimal degrees. However, this can still be switched at runtime. .TP .BI "\-dms " Initializes coordinate values of geographical data in degrees, minutes and seconds. However, this can still be switched at runtime. .TP .B "\-menu " Raise the menu window along with the main (map, clock) window. .TP .B "\-nomenu " Don't raise the menu window along with the main (map, clock) window. This is the default. .TP .B "\-selector " Raise the selector window along with the main (map, clock) window. .TP .B "\-noselector " Don't raise the selector window along with the main (map, clock) window. This is the default. .TP .B "\-zoom " Raise the zoom window along with the main (map, clock) window. .TP .B "\-nozoom " Don't raise the zoom window along with the main (map, clock) window. This is the default. .TP .B "\-option " Raise the option window along with the main (map, clock) window. .TP .B "\-nooption " Don't raise the option window along with the main (map, clock) window. This is the default. .TP .B "\-urban " Raise the urban window along with the main (map, clock) window. .TP .B "\-nourban " Don't raise the urban window along with the main (map, clock) window. This is the default. .TP .B "\-aspect " mode Sets the aspect mode, i.e. the way by which zooming behaves with respect to horizontal and vertical directions. Mode = 0 means that no synchronizations are made, mode = 1 means that the zoom factors are always made to be equal, mode = 2 (the more subtle one) means that the horizontal and vertical zoom factors are adjusted so that the region located near the central point of the zoomed area will be conformal to its actual geometry on Earth, i.e. will not appear to be distorted horizontally or vertically. This won't be true elsewhere, though, especially if the zoomed area is large. .TP .B "\-zoomsync " When the option is set, the zoom window will open in synchronization mode: any zooming action made from the main map or from the zoom window will take place as the mouse button is released (or as a key is pressed). This is the default when the zoom window has not been opened (synchronization is automatically set). .TP .B "\-nozoomsync " When set, the zoom window will open in non-synchro mode. Synchronizing the zoom will still be possible, though, by clicking on the "Synchro" button. By default, synchronization does not occur when the zoom window is opened, unless option \-zoomsync has been set. .TP .BI "\-mapmode * (single character = C, D, E, L or S)" Start the map functions in mode (C)oordinates, (D)istances, hour (E)xtension, (L)egal time or (S)olar time respectively. Any other specification is ignored. Default is legal time mode. .TP .BI "\-placement " \ (random, fixed, center, NW, NE, SW, SE) Specify whether commuting between clock and map windows should proceed with letting the the window centers, respectively, the NW, NE, SW, SE corners fixed, or rather whether it should operate randomly, or through user defined placement. Default is NW placement. .TP .BI "\-placementshift " x\ y Relative displacement --> , to apply with respect to the \-placement specification. If placement is NW, then the NW window corner will move by (x,y) pixels. Defaut is (0,0), i.e. no modification to apply to the \-placement specification. .TP .BI "\-extrawidth " value When using the 'enlarge window' command specified by key '>', the width of the full X display is used, minus some default width equal to 10 pixels. This is enough the accomodate the width of window borders of most window managers. In case it is not, \-extrawidth can be used to change this setting. .TP .BI "\-clockgeom " (width)x(height)+(x coord)+(y coord) Specify the geometry of the clock window, i.e. its size and position (absolute position with respect to the left upper corner of the screen). .TP .BI "\-mapgeom " (width)x(height)+(x coord)+(y coord) Specify the geometry of the map window, i.e. its size and position (absolute position with respect to the left upper corner of the screen). .TP .BI "\-menugeom " +(x coord)+(y coord) Specify the relative position (x = horizontal shift, y = vertical shift) of the menu window with respect to the main window, starting from the bottom edge of the main window (from its top edge in case of SW or SE placements, see above). The y value may need an adjustment, according to the height of the title bar allocated by the window manager, if any. In the case of the menu window, width and height solely depend on the menufont, and therefore any given specification of width and height is ignored. The default relative position is x = 0, y = 30. .TP .BI "\-selgeom " (width)x(height)+(x coord)+(y coord) Specify the geometry of the selector window. The position specification is relative to the main window (or to the menu, when the menu is raised). See above option \-menugeom for further explanations. The default geometry of the selector window is 600x180+0+30. .TP .BI "\-zoomgeom " (width)x(height)+(x coord)+(y coord) Specify the geometry of the zoom window. The position specification is relative to the main window (or to the menu, when the menu is raised). See above option \-menugeom for further explanations. The default geometry of the zoom window is 500x320+0+30. .TP .BI "\-optiongeom " (width)x(height)+(x coord)+(y coord) Specify the geometry of the option window. The position specification is relative to the main window (or to the menu, when the menu is raised). See above option \-menugeom for further explanations. The height specification depends solely on the selected menufont and is therefore ignored. The default geometry of the option window is 630x80+0+30. .TP .BI "\-urbangeom " +(x coord)+(y coord) Specify the relative position (x = horizontal shift, y = vertical shift) of the urban window with respect to the main window (or to the menu, when the menu is raised). See above option \-menugeom for further explanations. .TP .BI "\-auxilgeom " +(x coord)+(y coord) Specify the relative position (x = horizontal shift, y = vertical shift) of the auxiliary windows (menu, zoom, selector, option). All relative displacements are set to (x,y). .TP .BI "\-mag " value Rescale the image by a magnification factor equal to , which must be at least equal to 1.0. This means that the window only shows a fraction of the entire map namely, 1/ x 1/. Default value is 1.0. .TP .BI "\-magx " value Same as for the \-mag option, but only the x direction (width) is rescaled. Default value for magx is 1.0. .TP .BI "\-magy " value Same as for the \-mag option, but only the y direction (height) is rescaled. Default value for magy is 1.0. .TP .BI "\-dx " "value (degrees)" Options \-dx and \-dy allow to set the longitude, respectively the latitude, of the city or location at which the zoom area should be centered. The values should be given in degrees. Default (dx,dy) is (0.0,0.0). .TP .BI "\-dy " "value (degrees)" See \-dx above. .TP .BI "\-coastlines " In the builtin vector map, generate coast lines without filling the land areas. .TP .BI "\-contour " As before, but use a smart algorithm which eliminates \"redundant\" coast lines, especially at lower resolutions (in case the coasts are very irregular, some parts may disappear but the overall picture looks sharper). .TP .BI "\-landfill " In the builtin vector map, fill the land areas without generating coast lines. .TP .BI "\-fillmode " 0,1,2 Fillmode=0 is equivalent to \-coastlines, fillmode=1 is equivalent to \-contour, and fillmode=2 is equivalent to \-landfill. .TP .BI "\-dottedlines " Use dotted lines to represent meridians and parallels. .TP .BI "\-plainlines " Use plain lines to represent meridians and parallels. .TP .BI "\-bottomline " Draw a line at the bottom of the map, to separate the map from the text strip showing time and coordinates. .TP .BI "\-nobottomline " Don't draw the bottom line. This is the default. .TP .BI "\-command " string Specify an external action or program that will be called through keyboard shortcut 'x'. Default is empty command. .TP .BI "\-editorcommand " string Specify an external file editor program that will be called through keyboard shortcut double 'h' (call help). Default is "/usr/lib/sunclock/emx \-edit 0 \-fn 9x15" (included emx editor, in no-edit mode...) .TP .BI "\-jump " "number[unit] (where unit=s,m,h,d,M,Y)" Number of seconds (respectively minutes, hour, days, Months, Years) by which the current date and time should be shifted. No blank space should separate the number and its unit. If the unit is absent, the number is understood to be expressed by default in seconds. Useful to get sunclock display information on earlier or later epochs. .TP .BI "\-progress " "number[unit] (where unit=s,m,h,d,M,Y)" Number of seconds (respectively minutes, hour, days, Months, Years) by which the time progression should operate. No blank space should separate the number and its unit. If the unit is absent, the number is understood to be expressed by default in seconds. Useful to get sunclock progress by other steps than the predefined ones (by default the steps cycle between the values 1 mn, 1 hour, 1 day, 7 days, 30 days). .TP .BI "\-rootdx " "value (between 0.0 and 1.0)" Options \-rootdx and \-rootdy allow to set the position where the sunclock map is copied on the root window in rootwindow or screensaver modes. '\-rootdx 0.0' means on the left side, '\-rootdx 1.0' on the right side, '\-rootdy 0.0' means at the top, '\-rootdy 1.0' at the bottom of the root window. Default is 0.5 for both values, i.e. a centered map. .TP .BI "\-rootdy " "value (degrees)" See \-rootdx above. .TP .BI "\-fixedrootpos " Use the above rootdx and rootdy values to fix the position of the map on the root window. This is the default unless \-screensaver has been specified. .TP .BI "\-randomrootpos " Instead of using the above rootdx and rootdy values to fix the position of the map on the root window, just use a random position instead. This is the default in case the \-screensaver option has been set. .TP .BI "\-screensaver " Start sunclock in screensaver mode (no window nor any GUI controls are available in that case, and the only way to terminate the program is to kill it explicitly). .TP .BI "\-noscreensaver " Do not start sunclock in screensaver mode. This is the default. .TP .BI "\-rootperiod " "value (in seconds, between 1 and 120 sec)" Set the period for refreshing the root window. Default is 30 seconds. This takes effect only when writing the map onto the root window is active (strike twice on '[' or hit the relevant box in the Option window). Writing onto the root window is disabled by using the ']' key. .TP .BI "\-animation " Start the animation mode right away when sunclock is launched. .TP .BI "\-noanimation " Don't start the animation mode when sunclock is launched - this is the default. Sunclock can anyway switch between the animation/noanimation modes by typing key ' (apostrophe) at runtime. .TP .BI "\-animateperiod " "value (in seconds, between 0 and 5 sec)" Set the period for animating the map. Default is 0 seconds, which means that images are switched as fast as sunclock can compute them. Otherwise time is shifted by the current progress value (as set by the \-progess option) after waiting the number of seconds prescribed by the animateperiod value. This takes effect only when the animation is active (strike on the ' key or hit the relevant box in the Option window). .TP .BI "\-addcity " size|name|latitude|longitude|timezone .PP where name is the ascii name of the place to be shown on the map. The first argument "size" is an nonnegative integer meant to indicate the size of the city (1: major city, 2: important city, 3: less important city, ...). The argument "size" can also be set to 0, with the effect of hiding the corresponding city, while keeping in memory all of its other parameters. The city can then be shown again with Latitude and longitude are floating point numbers representing the geographical location of the place. Western longitudes and southern latitudes should be entered as negative numbers. timezone is the name of the timezone that the place is in. This should be the name of a file under /usr/share/zoneinfo (or whatever directory is used on your system), incorrect timezones cause the clock to display GMT. It is also possible to reference a file in a directory relative to /usr/share/zoneinfo for example Canada/Eastern instead of EST5EDT. .TP .BI "\-city " "name (name|lat|lon)" Initialize program so as to display data of city 'name', respectively (name, with latitude and longitude specified). This becomes effective only if the above mentioned city is listed in the systemwide RC file Sunclockrc or in the user's private ~/.sunclockrc. The operating mode is set to Coordinates mode. .TP .BI "\-position " "latitude|longitude" Initialize program so as to display data of the position specified by two coordinates (in degrees). The operating mode is set to Solar time mode. Notice that \"latitude|longitude\" should be given as a single parameter with a vertical bar | (a blank space is also admitted instead of a |). .TP .BI "\-addcity " "size|name|lat|lon|tz" Adds a city in the list of cities to be displayed on the map. They must be defined by exactly 5 parameters: size, name, latitude, longitude, timezone, in this order, with parameters being separated by a vertical bar |. Blank characters may appear in the name if double quotes are used to mark the group of parameters (but there shouldn't be any blank characters in the other parameters). In the RC config file, blank characters should be replaced by the octal character 037 (i.e. Ctrl-Q Ctrl-_ within emacs). .TP .BI "\-removecity " "name (name|lat|lon)" Removes name (respectively name|lat|lon) from the list of cities to be displayed. Same remarks as above for blank characters. .TP .BI "\-citycategories " value Specifies the maximal number of city categories: categories range from 1 (highest catgory, i.e. major city) to some maximum number. The option -citycategories specifies that maximum number. It can only be used at start-up, not at runtime. The default value is 5. .TP .BI "\-spotsizes " "s1|s2|s3|... (0<=si<=5, 1<=i<=citycategories)" With this setting, major cities (category 1) will be represented by the symbol of size s1, category 2 cities by the symbol off size s2, etc. The default setting is \-spotsize 1|2|3|4|5. Assigning size si=0 means that the corresponding category of cities (rank i) will not be displayed. If there are less data than the number of city categories (5 by default), the last given data is repeated as many times as needed, e.g. -spotsizes 2 is equivalent to \-spotsizes 2|2|2|2|2. Example: specifying \-spotsizes 0|2|0|3|0 will let appear only city categories 2 and 4, but those of category 4 will appear with the symbol normally allocated to cities of category 3. This is useful in combination with the option \-sizelimits (see below). .TP .BI "\-sizelimits " w1|w2|w3|... (wi = zoom width values, 1<=i<=citycategories) With this setting, cities of rank i=1,2,3,... will appear if (and only if) the width of the zoomed map is at least equal to wi (as it would appear if the Earth would be entirely displayed...) . The default is 0|580|2500|6000|12000 (no constraint for major cities, rank 4 cities appear only if the width is at least 6000 pixels, e.g. if an original window of width 800, say, has been applied a zoom at least equal to 7.5). Thus \-sizelimits 0 is equivalent to \-sizelimits 0|0|0|0|0, \-sizelimits 0|400 is equivalent to \-sizelimits 0|400|400|400|400. .TP .BI "\-shading " mode=0,1,2,3,4,5 Start sunclock with the specified shading mode. Mode 0 means that the night area is not displayed. In higher modes, the night area is displayed, with increasingly sophisticated shading algorithms. Mode 1 stands for no shading (i.e. just bright and dark colors are shown). Mode 2 shades the terminator area -- the area in which the sun is partially hidden by the horizon. Mode 3 shades the region in which there is still substantial luminosity left after sunset (depending on the diffusion parameter below). Default is 3\[ao] below horizon. Mode 4 additionally represents the luminosity values in all parts of the illuminated area. Mode 5 represents the gradient of luminosity from the brightest area (facing the sun) to the darkest area (opposite to the sun); this has nothing to do, though, with the actual luminosity values. .TP .BI "\-nonight " Start sunclock with the night region not drawn. This is equivalent to \-shading 0. .TP .BI "\-night " Start sunclock with the night region in plain shading mode. This is equivalent to \-shading 1. .TP .BI "\-terminator " Equivalent to \-shading 2 .TP .BI "\-twilight " Equivalent to \-shading 3 .TP .BI "\-luminosity " Equivalent to \-shading 4 .TP .BI "\-lightgradient " Equivalent to \-shading 5 .TP .BI "\-diffusion " "value\ (degrees)" Sets the amplitude of the area in which diffusion of light in the atmosphere is still sufficient to keep some luminosity after sunset. Default is 3 degrees. .TP .BI "\-refraction " "value\ (degrees)" Sets the value of the refraction angle for tangential sun rays at sunset. This is related to the fact that the sun sometimes looks bigger at sunset. Changing the refraction degree slightly affects the computation of sunrise and sunset times. Default is 0.1 degree. .TP .BI "\-darkness " "value\ (in the range 0.0 ... 1.0)" Sets the constrast between day and night areas. A 0.0 value means that the night area will not be distinguishable from day, while 1.0 means that it will be completely black. Default is 0.5. .TP .BI "\-colorscale " "value\ (integer in the range 1 ... 256)" Sets the number of color subdvisions which will be in use for producing shading, that is, the number of colors ranging from bright colors (day) to dark colors (night). Default is 16. .TP .BI "\-meridianmode mode=0,1,2,3" Start sunclock with meridians displayed or not, according to the mode, mode=0 : no meridians, mode=1 : meridians drawn, mode=2 : meridians drawn with labels at the bottom, mode=3 : meridians drawn with labels at the top. The default mode is 0 (no meridians). .TP .BI "\-parallelmode mode=0,1,2,3" Start sunclock with parallels displayed or not, according to the mode, mode=0 : no parallels, mode=1 : parallels drawn, mode=2 : parallels drawn with labels at the left hand side, mode=3 : parallels drawn with labels at the right hand side. The default mode is 0 (no parallels). .TP .BI "\-meridianspacing value\ (degree)" Specify how many degrees (or fractions of degree) should separate meridians drawn on the map. .TP .BI "\-parallelspacing value\ (degree)" Specify how many degrees (or fractions of degree) should separate parallels drawn on the map. .TP .BI "\-citymode mode=0,1,2,3" Start sunclock with cities displayed or not, according to the mode, mode=0 : no cities, mode=1 : cities drawn, mode=2 : cities drawn with their names, mode=3 : cities drawn with their coordinates. The default mode is 1 (cities shown without names or coordinates). .TP .BI "\-tropics " Start sunclock with tropics and arctic circles displayed (by default, they aren't). .TP .BI "\-sun " Start sunclock with the Sun position displayed (by default, it is). .TP .BI "\-moon " Start sunclock with the Moon position displayed (by default, it is). .TP .BI "\-notropics \-nosun \-nomoon" These options just negate the above ones. .TP .BI "\-objectmode " mode=0,1,2 Mode=0 stands for no objects (Sun, Moon) at all, mode=1 for objects just drawn by their symbol, mode=2 for objects drawn with their symbol and coordinates in decimal degrees (or degrees, minutes, seconds, using the \[ao] key switch). .TP .BI "\-reformat" This option only produces an effect when a *.vmf file is loaded. The file is then reformatted according to the allowed syntax and normal line length, and printed to stdout. To capture the aoutput, one should redirect the standard output to a file (with a '> file' as usual). .TP .BI "\-vmfcolors " "color1|color2|color3..." Redefine the list of colors to be used in the .vmf file. This option has no effect when loading files with other formats. Default is NULL string (so that the default colors are loaded). The string "|" is also considered to be a void string and can be used in the option widget to enforce default colors back. .TP .BI "\-vmfrange " "a|b|c|d" Define the range in which point coordinates (latitude, longitude) should vary in the *.vmf files, default is \-90|90|\-180|180. This option can be useful in combination with \-reformat to make a linear change of coordinates in a *.vmf file. .TP .BI "\-vmcoordformat " "format" Set the format for the output of double values produced via the \-reformat option. The default format is "%7.3f %8.3f" (format for latitude and longitude, respectively), unless the \-vmfrange has been modified, in which case the default becomes "%g %g" (from the POSIX rules, this stands for 6 significant digits in any position). .TP .BI "\-vmfflags " "number" Sets the flags (integer value) for a *.vmf file. Each bit is a distinct flag. The zeroth order bit (i.e. &1) determines whether features which have their own zeroth bit set are to be drawn in clock window mode (if the zeroth bit is not set, the feature will always be drawn). Other bits are used to control whether given features are to be drawn or not. For instance setting \-vmfflags 2 with timezones.vmf will let the timezone regions appear, while \-vmfflags 6 will also show the timezone boundary lines. (Only bits 0, 1, 2 are currently used in timezones.vmf). .TP .BI "\-setcolor " "field|color" Sets the color of a specified field in the sunclock widgets. The color can be specified as any litteral value (red, yellow, etc..., as defined in the resource file rgb.txt), or as a 6 digit hexadecimal value #ijklmn, or even 12 digits (for 48 bits displays!) The field can take any of the following values (between parentheses, the meaning and default value): .PP clockbg (clock background color; White) .PP clockfg (clock foreground color; Black) .PP mapbg (map background color; White) .PP mapfg (map foreground color; Black) .PP menubg (menu text background color; Grey92) .PP menufg (menu text foreground color; Black) .PP buttonbg (button background color; Grey84) .PP buttonfg1 (button very dark border color ; Black) .PP buttonfg2 (button dark border color ; Grey50) .PP buttonfg3 (button light border color ; Grey95) .PP buttonfg4 (button very light border color ; White) .PP weak (color for disabled menu commands; Red) .PP clockstripbg (background color of bottom strip in clock window; Grey92) .PP clockstripfg (foreground color of bottom strip in clock window; Black) .PP mapstripbg (background color of bottom strip in map window; Grey92) .PP mapstripfg (foreground color of bottom strip in map window; Black) .PP zoombg (background color of the small monochrome map used in the zoom widget; White) .PP zoomfg (foreground color of the small monochrome map used in the zoom widget; Black) .PP optionbg (background color of option text entry; White) .PP optionfg (foreground color of option text entry; Black) .PP caret (color of text caret; SkyBlue2) .PP change (color for temporary changes; Brown) .PP choice (color for selected changes and choices; SkyBlue2) .PP directory (color of text indicating directory entries; Blue) .PP image (color of text indicating image files; Magenta) .PP cityname (color of text indicating city names; Red) .PP city0 (color of unmarked cities; Orange) .PP city1 (color of marked cities, main selection; Red) .PP city2 (color of marked cities, secondary selection; Red3) .PP mark1 (color of first mark; Pink1) .PP mark2 (color of secondary mark; Pink2) .PP line (color of geodesic lines; White). .PP meridian (color of meridians; White). .PP parallel (color of parallels; White). .PP tropic (color of Equator/Tropics/Arctic circles; White) .PP sun (color of Sun; Yellow) .PP moon (color of Moon; Khaki) .PP star (color of Stars; White) .PP root (color of Root window on which stars will be drawn; Black) .PP .SH PRIVATE CONFIGURATION FILE Users may keep a file in their home directory called ~/.sunclockrc. This file can contain specify any number of options which are also available as command line options: .PP mapmode: L .PP language: en .PP city: Washington .PP map .PP mapimage: /usr/share/sunclock/earthmaps/jpeg/caida.jpg .PP tropics .PP twilight .SH "HOW IT WORKS" .I sunclock calculates the position of the Sun using the algorithm in chapter 18 of: .PP .I "Astronomical Formulae for Calculators" by Jean Meeus, Third Edition, Richmond: Willmann-Bell, 1985. .PP and projects the illuminated area onto the map image by an equidistributed (latitude, longitude) cylindrical projection. The Sun's position is calculated to better than one arc-second in accuracy. .SH BUGS Sunclock makes intensive use of pointers and memory allocation/deallocation, so memory leaks might still be possible under some circumstances. However, the program has been thoroughly debugged, and crashes seem to be rather rare. As new features are introduced, older ones may become broken during the phase of development :-( .PP The illuminated area shown is the area which would be sunlit if the Earth atmosphere would be absolutely uniform. The actual illuminated area may depend on weather, temperature, atmospheric refraction and diffusion, etc. .SH AUTHORS John Walker, Autodesk, Inc., , wrote the original Suntools program from which sunclock is derived. .PP John Mackin, Basser Department of Computer Science, University of Sydney, Sydney, Australia, , wrote the X11 version out of Suntools. .PP Stephen Martin, Fujitsu Systems Business of Canada, smartin@fujitsu.ca, added support for interactive map. .PP Jean-Pierre Demailly, Universit\['e] de Grenoble I, demailly@fourier.ujf-grenoble.fr worked out versions 3.xx, which add many new major features (loading maps, shading, zoom functionalities, configuration of options on the fly at runtime, through a point and click GUI interface). sunclock-3.57/widgets.c0000644000000000000000000023612111606022226011773 0ustar #include #include #include #include #include #include "sunclock.h" #include "langdef.h" extern char * salloc(); extern void StringReAlloc(); extern char **get_dir_list(); extern int dup_strcmp(); extern void free_dirlist(); extern char * num2str(); extern void processKey(); extern int readVMF(); extern void buildMap(); extern int parseCmdLine(); extern void correctValues(); extern void getFonts(); extern void createGData(); extern void createGCs(); extern void clearNightArea(); extern void drawCities(); extern void drawSunAndMoon(); extern void drawDottedRectangle(); extern Display * dpy; extern int scr; extern Colormap cmap0, tmp_cmap; extern int color_depth; extern int runlevel; extern int text_input; extern Atom wm_delete_window; extern Window Root, Menu, Filesel, Zoom, Option, Urban; extern Pixmap zoompix, textpix, rootpix; extern Pixel black, white; extern Flags gflags; extern ZoomSettings gzoom; extern TextEntry option_entry, urban_entry[5]; extern struct Sundata *Seed; extern struct Sundata *MenuCaller, *FileselCaller, *ZoomCaller, *OptionCaller, *UrbanCaller, *RootCaller; extern struct Geometry ClockGeom, MapGeom; extern struct Geometry MenuGeom, FileselGeom, ZoomGeom, OptionGeom, UrbanGeom; extern char * ProgName; extern char * Title; extern char * widget_type[7]; extern char * EditorCommand; extern char * ClassName; extern char * ClockClassName; extern char * MapClassName; extern char * AuxilClassName; extern char * ExternAction; extern char * CityInit; extern char * share_maps_dir; extern char ** dirtable; extern char * image_dir; extern char * Help[N_HELP]; extern char * Label[L_END]; extern char * FileselBanner[N_FILESEL]; extern char WeakChars[]; extern char language[4]; extern char * Clock_img_file; extern char * Map_img_file; extern char * Zoom_img_file; extern int city_cat; extern int *city_spotsizes; extern int *city_sizelimits; extern int do_menu, do_filesel, do_zoom, do_option, do_urban; extern int do_dock, do_sync, do_zoomsync, do_root; extern int placement; extern int place_shiftx; extern int place_shifty; extern int verbose; extern int button_pressed; extern int option_changes; extern int root_period; extern int horiz_drift, vert_drift; extern int label_shift, filesel_shift, zoom_shift; extern int num_lines, num_table_entries; extern int zoom_mode, zoom_active; extern char menu_lasthint; extern char option_lasthint; extern char zoom_lasthint; extern char urban_lasthint; extern KeySym menu_newhint; extern char option_newhint; extern char zoom_newhint; extern char urban_newhint; extern long last_time; extern long progress_value[6]; extern double darkness; extern unsigned int adjust_dark; extern int urban_t[5], urban_x[5], urban_y[5], urban_w[5]; int areaw, areah; int urbanh; void shutDown(); /* Is it really more secure than plain tmpnam() ?? */ void secure_tmpnam(char *name) { char compl[4]; static int order = 0; compl[0] = 'a' + ((order/676)%26); compl[1] = 'a' + ((order/26)%26); compl[2] = 'a' + (order%26); compl[3] = '\0'; ++order; sprintf(name, "%s/XXXXXX", P_tmpdir); close(mkstemp(name)); unlink(name); strcat(name, compl); } void showManual() { int i=0, j, k, l, c, cp; char cmd[256]; char tmpname[80]; struct stat buf; char *ptr, *text; FILE *man; secure_tmpnam(tmpname); strcat(tmpname, "_sunclock.man"); sprintf(cmd, "man sunclock > %s", tmpname); system(cmd); man = fopen(tmpname, "r"); if (!man) { unlink(tmpname); return; } ptr = strdup(tmpname); buf.st_mode = 0; stat(ptr, &buf); free(ptr); text = malloc(buf.st_size+2); if (!text) { fclose(man); return; } while ((c=fgetc(man))!=EOF) { iter: if (c=='_') { cp = fgetc(man); if (cp==EOF) break; if (cp==8) continue; text[i++] = (char)c; c = cp; goto iter; } else if (c==8) { c = fgetc(man); if (c==EOF) break; } else text[i++] = (char)c; } text[i] = '\0'; fclose(man); man = fopen(tmpname, "w"); if (!man) { free(text); return; } for (j=0; jgeom.width - horiz_drift - 5; b = DisplayHeight(dpy, scr) - Context->geom.height - Context->hstrip - vert_drift - 5; if (Context->geom.x > a) Context->geom.x = a; if (Context->geom.y > b) Context->geom.y = b; if (Context->geom.x < 0) Context->geom.x = 5; if (Context->geom.y < 0) Context->geom.y = 5; if (bool) Context->geom.mask = XValue | YValue | WidthValue | HeightValue; } void adjustGeom(Context, which) struct Sundata * Context; int which; { int x, y, dx=0, dy=0, diff; unsigned int w, h; if (getPlacement(Context->win, &x, &y, &w, &h)) return; if (which) { diff= MapGeom.height - ClockGeom.height + Context->gdata->mapstrip - Context->gdata->clockstrip; switch(placement) { case CENTER: dx = (MapGeom.width - ClockGeom.width)/2; dy = diff/2; break; case NE: dx = MapGeom.width - ClockGeom.width; break; case SE: dx = MapGeom.width - ClockGeom.width; case SW: dy = diff; break; default: break; } } if (placement) { dx = dx - place_shiftx; dy = dy - place_shifty; if (Context->wintype) { dx = -dx; dy = -dy; } if (placement >= CENTER) { Context->geom.x = x + dx - horiz_drift; Context->geom.y = y + dy - vert_drift; checkGeom(Context, 1); } } } /* * Set up stuff the window manager will want to know. Must be done * before mapping window, but after creating it. */ void setSizeHints(Context, num) struct Sundata * Context; int num; { XSizeHints xsh; struct Geometry * Geom = NULL; Window win = 0; if (num<=1) { if (!Context) return; win = Context->win; Geom = &Context->geom; xsh.flags = PSize | PMinSize; if (Geom->mask & (XValue | YValue)) { xsh.x = Geom->x; xsh.y = Geom->y; xsh.flags |= USPosition; } xsh.width = Geom->width; xsh.height = Geom->height + Context->hstrip; if (do_dock && Context==Seed) { xsh.max_width = xsh.min_width = xsh.width; xsh.max_height = xsh.min_height = xsh.height; xsh.flags |= PMaxSize | PMinSize; } else { xsh.min_width = Geom->w_mini; xsh.min_height = Geom->h_mini + Context->hstrip; } } else if (num>=2) { xsh.flags = PSize | USPosition | PMinSize; if (num==2) { win = Menu; Geom = &MenuGeom; xsh.flags |= PMaxSize; xsh.min_width = xsh.max_width = Geom->width; xsh.min_height = xsh.max_height = Geom->height; } if (num==3) { win = Filesel; Geom = &FileselGeom; xsh.min_width = Geom->w_mini; xsh.min_height = Geom->h_mini; } if (num==4) { win = Zoom; Geom = &ZoomGeom; xsh.min_width = Geom->w_mini; xsh.min_height = Geom->h_mini; } if (num==5) { win = Option; Geom = &OptionGeom; xsh.flags |= PMaxSize; xsh.min_width = Geom->w_mini; xsh.max_width = 2000; xsh.min_height = xsh.max_height = Geom->h_mini; } if (num==6) { win = Urban; Geom = &UrbanGeom; xsh.flags |= PMaxSize; xsh.max_width = 2000; xsh.min_width = Geom->w_mini; xsh.min_height = xsh.max_height = Geom->h_mini; } xsh.x = Geom->x; xsh.y = Geom->y; xsh.width = Geom->width; xsh.height = Geom->height; } if (!win) return; XSetNormalHints(dpy, win, &xsh); } void setClassHints(win, num) Window win; int num; { char *titlename, *iconname; XClassHint xch; titlename = NULL; if (!Title) StringReAlloc(&Title, ProgName); if (!ClassName) { StringReAlloc(&ClassName, ProgName); *ClassName = toupper(*ClassName); } if (ClassName && !ClockClassName) StringReAlloc(&ClockClassName, ClassName); if (ClassName && !MapClassName) StringReAlloc(&MapClassName, ClassName); if (ClassName && !AuxilClassName) StringReAlloc(&AuxilClassName, ClassName); if (num == 0) xch.res_class = ClockClassName; else if (num == 1) xch.res_class = MapClassName; else xch.res_class = AuxilClassName; xch.res_name = ProgName; XSetClassHint(dpy, win, &xch); iconname = (char *) salloc((strlen(Title)+strlen(VERSION)+10)*sizeof(char)); sprintf(iconname, "%s %s", Title, VERSION); XSetIconName(dpy, win, iconname); free(iconname); titlename = (char *) salloc((strlen(Title)+20)*sizeof(char)); sprintf(titlename, "%s / %s", Title, widget_type[num]); XStoreName(dpy, win, titlename); free(titlename); } void setProtocols(Context, num) struct Sundata * Context; int num; { Window win = 0; long mask; mask = FocusChangeMask | VisibilityChangeMask | ExposureMask | StructureNotifyMask | ButtonPressMask | ButtonReleaseMask | KeyPressMask; if (num>=1) mask |= PointerMotionMask; /* use StructureNotifyMask rather than ResizeRedirectMask to avoid bug in some window mangers... as enlightenment ! All events would be: for (i=0; i<=24; i++) mask |= 1L<win; break; case 2: win = Menu; break; case 3: win = Filesel; break; case 4: win = Zoom; break; case 5: win = Option; mask |= KeyReleaseMask; break; case 6: win = Urban; mask |= KeyReleaseMask; break; default: break; } if (!win) return; XSelectInput(dpy, win, mask); XSetWMProtocols(dpy, win, &wm_delete_window, 1); } Window newWindow(Context, Geom, num) struct Sundata * Context; struct Geometry * Geom; int num; { Window win = 0; int strip; if (num<=1) { strip = (num)? Context->gdata->mapstrip : Context->gdata->clockstrip; Context->hstrip = strip; if (Geom->mask & XNegative) Geom->x = DisplayWidth(dpy, scr) - Geom->width + Geom->x; if (Geom->mask & YNegative) Geom->y = DisplayHeight(dpy, scr) - Geom->height + Geom->y-strip; } else strip = 0; win = XCreateSimpleWindow(dpy, Root, Geom->x, Geom->y, Geom->width, Geom->height + strip, 0, black, white); if (win) setClassHints(win, num); return win; } void getWinParams(win, Context, keys, nkeys, y, width) Window win; struct Sundata **Context; char **keys; int *nkeys; int *y; int *width; { *Context = NULL; if (win==Menu) { *Context = MenuCaller; *keys = MenuKey; *nkeys = N_MENU; *y = 0; *width = MenuGeom.width; } if (win==Option) { *Context = OptionCaller; *keys = OptionKey; *nkeys = N_OPTION; *y = OptionGeom.height-2*OptionCaller->gdata->menustrip - 1; *width = OptionGeom.width; } if (win==Zoom) { *Context = ZoomCaller; *keys = ZoomKey; *nkeys = N_ZOOM; *y = areah+64; *width = ZoomGeom.width; } if (win==Urban) { *Context = UrbanCaller; *keys = UrbanKey; *nkeys = N_URBAN; *y = urbanh; *width = UrbanGeom.width; } if (win==Filesel) { *Context = FileselCaller; *keys = WeakChars; *nkeys = 6; *y = 0; *width = FileselGeom.width; } } int getButton(win, x, y) Window win; int x, y; { struct Sundata * Context=NULL; char *keys=NULL; int nkeys=0; int y1, w0, n, i, j=0, b, d; getWinParams(win, &Context, &keys, &nkeys, &y1, &w0); n = -1; if (y<=y1 || y>=y1+Context->gdata->menustrip) return n; b = 0; d = Context->gdata->charspace; if (win==Filesel) d = 2*d; for (i=0; ij && xj+d+5) n = nkeys; return n; } void drawBox(win, gc, pix, x1, y1, x2, y2, clicked) Window win; GC gc; Pixel *pix; int x1, y1, x2, y2; int clicked; { XSetForeground(dpy, gc, pix[BUTTONCOLOR]); XFillRectangle(dpy, win, gc, x1, y1, x2-x1, y2-y1); XSetForeground(dpy, gc, pix[(clicked)?BUTTONFGCOLOR1:BUTTONFGCOLOR3]); XDrawLine(dpy, win, gc, x1, y1, x1, y2); XDrawLine(dpy, win, gc, x1, y1, x2, y1); XSetForeground(dpy, gc, pix[(clicked)?BUTTONFGCOLOR2:BUTTONFGCOLOR4]); XDrawLine(dpy, win, gc, x1+1, y1+1, x1+1, y2-1); XDrawLine(dpy, win, gc, x1+1, y1+1, x2-1, y1+1); XSetForeground(dpy, gc, pix[(clicked)?BUTTONFGCOLOR4:BUTTONFGCOLOR2]); XDrawLine(dpy, win, gc, x1+1, y2-1, x2-1, y2-1); XDrawLine(dpy, win, gc, x2-1, y1+1, x2-1, y2-1); XSetForeground(dpy, gc, pix[(clicked)?BUTTONFGCOLOR3:BUTTONFGCOLOR1]); XDrawLine(dpy, win, gc, x1, y2, x2, y2); XDrawLine(dpy, win, gc, x2, y1, x2, y2); } void drawButton(win, n, clicked) Window win; int n; int clicked; { int i, j=0, b, d, x1=0, y1=0, x2=0, y2=0, x, y, w0=0; struct Sundata * Context=NULL; char c[2] = { '\0', '\0'}; char *s = c; char *keys=NULL; int nkeys=0; int charspace; getWinParams(win, &Context, &keys, &nkeys, &y1, &w0); if (!Context) return; charspace = Context->gdata->charspace; if (win==Filesel) charspace = 2*charspace; b = 0; for (i=0; i<=n; i++) { j = i*charspace + b; if (win!=Filesel) b += 5*((i==nkeys-1) || (keys[2*i+1]==';')); } x1 = j; y2 = y1+Context->gdata->menustrip; if (n>=0 && ngdata->wingc, Context->gdata->pixel[(clicked==-2)? BUTTONCOLOR:MENUFGCOLOR]); for (y=y1+2; y<=y2-3; y+=y2-y1-5) for (x=x1+4; x<=x2-3; x++) if ((x+y)&1) XDrawPoint(dpy, win, Context->gdata->wingc, x, y); for (y=y1+2; y<=y2-3; y++) for (x=x1+4; x<=x2-3; x+=x2-x1-7) if ((x+y)&1) XDrawPoint(dpy, win, Context->gdata->wingc, x, y); return; } drawBox(win, Context->gdata->wingc, Context->gdata->pixel, x1, y1, x2, y2, clicked); d = (5*Context->gdata->charspace)/12; XSetBackground(dpy, Context->gdata->wingc, Context->gdata->pixel[BUTTONCOLOR]); if (win==Menu && do_dock && (s[0]==c[0]) && index(WeakChars,c[0])) XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[WEAKCOLOR]); else XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[MENUFGCOLOR]); XDrawImageString(dpy, win, Context->gdata->wingc, x1+d, y1+Context->gdata->font[MENUFONT]->max_bounds.ascent + 4, s, strlen(s)); } int getNumCmd(key) char key; { int i; for (i=0; igdata->wingc, Context->gdata->pixel[MENUBGCOLOR]); XSetForeground(dpy, Context->gdata->wingc, Context->gdata->pixel[MENUFGCOLOR]); XSetFont(dpy, Context->gdata->wingc, Context->gdata->font[MENUFONT]->fid); } void helpHint(Context, key, hint) Sundata * Context; char key; char *hint; { int i,j,k,l; char more[128], prog_str[60]; if (key=='\033') sprintf(hint, " %s", Label[L_ESCMENU]); else if (key==' ') sprintf(hint, " %s", Label[L_CONTROLS]); else { i = getNumCmd(key); if (i>=0) sprintf(hint, " %s", Help[i]); else sprintf(hint, " %s", Label[L_UNKNOWN]); } more[0] = more[1] = ' '; more[2] = '\0'; if (index("CDS", key)) sprintf(more, " (%s)", Label[L_DEGREE]); if (index("ABGJ'", key)) { switch(Context->flags.progress) { case 0: sprintf(prog_str, "1 %s", Label[L_MIN]); break; case 1: sprintf(prog_str, "1 %s", Label[L_HOUR]); break; case 2: sprintf(prog_str, "1 %s", Label[L_DAY]); break; case 3: sprintf(prog_str, "7 %s", Label[L_DAYS]); break; case 4: sprintf(prog_str, "30 %s", Label[L_DAYS]); break; case 5: sprintf(prog_str, "%ld %s", progress_value[5], Label[L_SEC]); break; } sprintf(more, " ( %s %s%s %s %.3f %s )", Label[L_PROGRESS], (key=='A')? "+":((key=='B')? "-":""), prog_str, Label[L_TIMEJUMP], Context->jump/86400.0, Label[L_DAYS]); } if (key == 'H') { sscanf(RELEASE, "%d %d %d", &i, &j, &k); sprintf(more+1, "(%s %s, %d %s %d, %s)", ProgName, VERSION, i, Month_name[j-1], k, COPYRIGHT); } if (key == 'X') { more[1] = ':'; more[2] = ' '; if (ExternAction) strncpy(more+3, ExternAction, 123); else strcpy(more, "(null)"); more[126] = '0'; } if (key == '=') sprintf(more+2, "(%c)", (do_sync)? '+' : '-'); if (key == '[' && do_root <= 0) sprintf(more+2, Label[L_ONCE]); if (key == '[' && do_root >= 1) sprintf(more+2, Label[L_PERIODIC], root_period); if (key == ']' && do_root <= 0) sprintf(more+2, Label[L_BLANKSCREEN]); if (key == ']' && do_root >= 1) sprintf(more+2, Label[L_STARRYSKY]); if (more[2]) strncat(hint, more, 120 - strlen(hint)); l = strlen(hint); if (l<120) for (i=l; i<120; i++) hint[i] = ' '; hint[120] = '\0'; } void showMenuHint(but_pos) int but_pos; { static int move_pos = -1; char key; char hint[128]; if (!do_menu) return; if (!MenuCaller) return; if (menu_newhint == XK_Shift_L || menu_newhint == XK_Shift_R) return; key = toupper((char) menu_newhint); if (move_pos>=0) drawButton(Menu, move_pos, -2); if (but_pos>=0) drawButton(Menu, but_pos, -1); move_pos = but_pos; if (key == menu_lasthint) return; helpHint(MenuCaller, key, hint); menu_lasthint = key; BasicSettings(MenuCaller); XDrawImageString(dpy, Menu, MenuCaller->gdata->wingc, 4, MenuCaller->gdata->font[MENUFONT]->max_bounds.ascent + MenuCaller->gdata->menustrip + 4, hint, strlen(hint)); } void setupMenu(mode) int mode; { int i, l; static int j=-1; static char c; if (!do_menu) return; if (j>=0) WeakChars[j] = c; l = strlen(WeakChars); if (MenuCaller->wintype) { if (do_dock) j = 1; else j = 0; } else { j = -1; if (do_dock) { if (MenuCaller != Seed) j = l-4; } else j = l-5; } if (j>=0) { c = WeakChars[j] ; WeakChars[j] = '\0'; } BasicSettings(MenuCaller); XSetWindowColormap(dpy, Menu, MenuCaller->gdata->cmap); XSetWindowBackground(dpy, Menu, MenuCaller->gdata->pixel[MENUBGCOLOR]); XClearArea(dpy, Menu, 0, 0, MenuGeom.width, MenuGeom.height, False); for (i=0; i<=N_MENU; i++) drawButton(Menu, i, 0); menu_lasthint = '\0'; showMenuHint(-1); } void PopMenu(Context) struct Sundata * Context; { int w, h, a, b, x=0, y=0; do_menu = 1 - do_menu; if (!do_menu) { XDestroyWindow(dpy, Menu); Menu = 0; MenuCaller = NULL; return; } if (!Menu) Menu = newWindow(NULL, &MenuGeom, 2); XSelectInput(dpy, Menu, 0); MenuCaller = Context; MenuGeom.width = MENU_WIDTH * Context->gdata->menustrip - 6; MenuGeom.height = 2 * Context->gdata->menustrip; if (!getPlacement(Context->win, &Context->geom.x, &Context->geom.y, &w, &h)) { x = Context->geom.x + MenuGeom.x - horiz_drift - 5; a = Context->geom.y + h + 6; b = Context->geom.y - MenuGeom.height - MenuGeom.y - 2*vert_drift - 28; if (b < TOPTITLEBARHEIGHT ) b = TOPTITLEBARHEIGHT; if (a > (int) DisplayHeight(dpy,scr) - 2*MenuGeom.height -vert_drift -20) a = b; y = (placement<=NE)? a : b; } setSizeHints(NULL, 2); XMoveWindow(dpy, Menu, x, y); XMapWindow(dpy, Menu); XMoveWindow(dpy, Menu, x, y); XFlush(dpy); usleep(2*TIMESTEP); menu_lasthint = ' '; setupMenu(-1); setProtocols(NULL, 2); } void processMenuAction(Context, x, y, button, evtype) Sundata * Context; int x, y, button, evtype; { static int click_pos = -1; int but_pos; KeySym key; if (evtype == ButtonRelease && click_pos>=0) { drawButton(Menu, click_pos, 0); click_pos = -1; } but_pos = getButton(Menu, x, y); if (evtype == ButtonPress && but_pos>=0 && but_pos<=N_MENU) { drawButton(Menu, but_pos, 1); click_pos = but_pos; return; } if (evtype == MotionNotify) { if (but_pos >= N_MENU) { menu_newhint = XK_Escape; showMenuHint(N_MENU); return; } if (but_pos <= -1) menu_newhint = ' '; else menu_newhint = MenuKey[2*but_pos]; showMenuHint(getNumCmd(menu_newhint)); return; } if (but_pos==-1) return; if (do_menu && but_pos >= N_MENU) { PopMenu(MenuCaller); return; } key = MenuKey[2*but_pos]; if (button<=2) key = tolower(key); processKey(Menu, (KeySym)key); } void clearFileselPartially() { XSetWindowBackground(dpy, Filesel, FileselCaller->gdata->pixel[MENUBGCOLOR]); XClearArea(dpy, Filesel, 0, FileselCaller->gdata->menustrip+1, FileselGeom.width-2, FileselGeom.height-FileselCaller->gdata->menustrip-2, False); } void setupFilesel(mode) int mode; { int i, j, b, d, p, w, h, ht, skip; char *s, *sp; if (!do_filesel) return; XSetWindowColormap(dpy, Filesel, FileselCaller->gdata->cmap); XSetWindowBackground(dpy, Filesel, FileselCaller->gdata->pixel[MENUBGCOLOR]); d = FileselCaller->gdata->charspace/3; h = FileselCaller->gdata->menustrip; if (mode < 0) { BasicSettings(FileselCaller); XClearArea(dpy, Filesel, 0, 0, FileselGeom.width, FileselGeom.height, False); for (i=0; i<=6; i++) drawButton(Filesel, i, 0); } BasicSettings(FileselCaller); if (mode <= 0) { XClearArea(dpy, Filesel, 0, FileselCaller->gdata->menustrip+1, FileselGeom.width - 15, FileselGeom.height, False); XClearArea(dpy, Filesel, FileselGeom.width - 15, FileselCaller->gdata->menustrip+1, 13, FileselCaller->gdata->menustrip, False); XSetForeground(dpy, FileselCaller->gdata->wingc, FileselCaller->gdata->pixel[MENUFGCOLOR]); XDrawImageString(dpy, Filesel, FileselCaller->gdata->wingc, d, FileselCaller->gdata->font[MENUFONT]->max_bounds.ascent + FileselCaller->gdata->menustrip+4, image_dir, strlen(image_dir)); h = 2*FileselCaller->gdata->menustrip; XDrawLine(dpy, Filesel, FileselCaller->gdata->wingc, 0, h, FileselGeom.width, h); XDrawLine(dpy, Filesel, FileselCaller->gdata->wingc, FileselGeom.width - 15, 2*FileselCaller->gdata->menustrip, FileselGeom.width - 15, FileselGeom.height); /* Drawing small triangular icons */ w = FileselGeom.width - 7; h = 2 * FileselCaller->gdata->menustrip + 1; for (i=0; i<=10; i++) XDrawLine(dpy, Filesel, FileselCaller->gdata->wingc, w-i/2, h+i, w+i/2, h+i); h = FileselGeom.height-1; for (i=0; i<=10; i++) XDrawLine(dpy, Filesel, FileselCaller->gdata->wingc, w-i/2, h-i, w+i/2, h-i); } if (mode<=1) XClearArea(dpy, Filesel, 0, 2*FileselCaller->gdata->menustrip+1, FileselGeom.width - 15, FileselGeom.height, False); if (!dirtable) dirtable = get_dir_list(image_dir, &num_table_entries); if (dirtable) qsort(dirtable, num_table_entries, sizeof(char *), dup_strcmp); else { char error[] = "Directory inexistent or inaccessible !!!"; XSetForeground(dpy, FileselCaller->gdata->wingc, FileselCaller->gdata->pixel[IMAGECOLOR]); XDrawImageString(dpy, Filesel, FileselCaller->gdata->wingc, d, 3*FileselCaller->gdata->menustrip, error, strlen(error)); return; } skip = (3*FileselCaller->gdata->menustrip)/4; num_lines = (FileselGeom.height-2*FileselCaller->gdata->menustrip)/skip; /* drawing the thumb */ XSetForeground(dpy, FileselCaller->gdata->wingc, FileselCaller->gdata->pixel[ZOOMBGCOLOR]); XFillRectangle(dpy, Filesel, FileselCaller->gdata->wingc, FileselGeom.width - 14, 2*FileselCaller->gdata->menustrip+12, 14, FileselGeom.height-2*FileselCaller->gdata->menustrip-23); w = FileselGeom.width - 12; p = FileselGeom.height - 2 * FileselCaller->gdata->menustrip - 28; ht = p * (num_lines+1) / (num_table_entries+1); if (ht<20) ht = 20; if (ht>p/2) ht = p/2; p = p - ht; h = 2 * FileselCaller->gdata->menustrip + 14; if (num_table_entries>2) h += (filesel_shift * p)/(num_table_entries-2); drawBox(Filesel, FileselCaller->gdata->wingc, FileselCaller->gdata->pixel, w, h, w+9, h+ht, 0); for (i=0; igdata->font[MENUFONT]->max_bounds.ascent + 2 * FileselCaller->gdata->menustrip + i*skip + 3; sp = (FileselCaller->wintype)? FileselCaller->map_img_file : FileselCaller->clock_img_file; if (strstr(sp,s)) { if (mode<=3) XClearArea(dpy, Filesel, 2, /* FileselCaller->gdata->font[MENUFONT]->max_bounds.ascent+ */ 2 * FileselCaller->gdata->menustrip + 1, 3, FileselGeom.height, False); if (mode==3) { XSetForeground(dpy, FileselCaller->gdata->wingc, FileselCaller->gdata->pixel[CHANGECOLOR]); XDrawRectangle(dpy, Filesel, FileselCaller->gdata->wingc, d/4, j-FileselCaller->gdata->font[MENUFONT]->max_bounds.ascent/2, 3,4); } else { XSetForeground(dpy, FileselCaller->gdata->wingc, FileselCaller->gdata->pixel[CHOICECOLOR]); XFillRectangle(dpy, Filesel, FileselCaller->gdata->wingc, d/4, j-FileselCaller->gdata->font[MENUFONT]->max_bounds.ascent/2, 3,4); } } if (mode<=1) { XSetForeground(dpy, FileselCaller->gdata->wingc, (b==0)? FileselCaller->gdata->pixel[MENUFGCOLOR] : FileselCaller->gdata->pixel[DIRCOLOR+b-1]); XDrawImageString(dpy, Filesel, FileselCaller->gdata->wingc, d, j, s, strlen(s)); } } } void PopFilesel(Context) struct Sundata * Context; { int a, b, w, h, x=0, y=0; if (do_filesel) do_filesel = 0; else do_filesel = 1; if (!do_filesel) { XDestroyWindow(dpy, Filesel); Filesel = 0; FileselCaller = NULL; if (dirtable) free_dirlist(dirtable); dirtable = NULL; return; } if (!Filesel) Filesel = newWindow(NULL, &FileselGeom, 3); XSelectInput(dpy, Filesel, 0); FileselCaller = Context; filesel_shift = 0; if (!getPlacement(Context->win, &Context->geom.x, &Context->geom.y, &w, &h)) { x = Context->geom.x + FileselGeom.x - horiz_drift - 5; a = Context->geom.y + h + 6; if (do_menu && Context == MenuCaller) a += MenuGeom.height + MenuGeom.y + vert_drift + 2; b = Context->geom.y - FileselGeom.height - FileselGeom.y - 2*vert_drift - 28; if (b < TOPTITLEBARHEIGHT ) b = TOPTITLEBARHEIGHT; if (a > (int) DisplayHeight(dpy,scr) - FileselGeom.height - vert_drift - 20) a = b; y = (placement<=NE)? a : b; } setSizeHints(NULL, 3); XMoveWindow(dpy, Filesel, x, y); XMapRaised(dpy, Filesel); XMoveWindow(dpy, Filesel, x, y); XFlush(dpy); usleep(2*TIMESTEP); setupFilesel(-1); setProtocols(NULL, 3); } void processFileselAction(Context, x, y, evtype) struct Sundata * Context; int x; int y; int evtype; { static int pressed3 = 0; static int move_pos = -1; static int click_pos = -1; static int but_pos; char newdir[1030]; char *s, *f, *path; if (evtype == MotionNotify && move_pos>=0) { drawButton(Filesel, move_pos, -2); move_pos = -1; } if (evtype == ButtonRelease && click_pos>=0) { drawButton(Filesel, click_pos, 0); click_pos = -1; } but_pos = getButton(Filesel, x, y); if (evtype == ButtonPress) { if (click_pos>=0) drawButton(Filesel, click_pos, 0); if (but_pos>=0) drawButton(Filesel, but_pos, 1); click_pos = but_pos; pressed3 = 1; return; } if (evtype == ButtonRelease) { pressed3 = 0; } if (evtype == MotionNotify) { if (but_pos>=0 && but_pos!=click_pos) { drawButton(Filesel, but_pos, -1); move_pos = but_pos; } if (x < FileselGeom.width - 15 || y <= 2 * Context->gdata->menustrip) return; } if (y <= Context->gdata->menustrip) { if (but_pos==0 && getenv("HOME")) sprintf(image_dir, "%s/", getenv("HOME")); if (but_pos==1) StringReAlloc(&image_dir, share_maps_dir); if (but_pos==2) StringReAlloc(&image_dir, "/"); if (but_pos==3 && getcwd(NULL,1024)) { sprintf(newdir, "%s/", getcwd(NULL,1024)); StringReAlloc(&image_dir, newdir); } if (but_pos>=0 && but_pos<=3) { filesel_shift = 0; if (dirtable) { free(dirtable); dirtable = NULL; } } if (but_pos==4) { do_filesel = -1; processKey(Context->win, XK_w); return; } if (but_pos==5) { processKey(Context->win, XK_exclam); return; } if (but_pos>=6) { XUnmapWindow(dpy, Filesel); do_filesel = 0; return; } setupFilesel(0); return; } if (y <= 2*Context->gdata->menustrip) { filesel_shift = 0; setupFilesel(0); return; } if (x > FileselGeom.width - 15) { int old_shift = filesel_shift; if (y <= 2*Context->gdata->menustrip + 10) { if (evtype != ButtonRelease) return; if (filesel_shift == 0) return; filesel_shift -= num_lines/2; if (filesel_shift <0) filesel_shift = 0; } else if (y >= FileselGeom.height - 10) { if (evtype != ButtonRelease) return; if (num_table_entries-filesel_shiftgdata->menustrip - 10 )) / (FileselGeom.height - 2*Context->gdata->menustrip - 20); if (filesel_shift > num_table_entries - num_lines/2) filesel_shift = num_table_entries - num_lines/2; if (filesel_shift < 0) filesel_shift = 0; } if (filesel_shift != old_shift) setupFilesel(1); return; } y = (y-2*Context->gdata->menustrip-4)/(3*Context->gdata->menustrip/4) +filesel_shift; if (y XTextWidth (Context->gdata->font[MENUFONT], s, strlen(s))+Context->gdata->charspace/4) return; y = strlen(s)-1; f = (char *) salloc(strlen(image_dir)+y+2); strcpy(f, image_dir); if (s[y] == '/') { int l; if (!strcmp(s, "../")) { l=strlen(f)-1; if (l==0) return; f[l--] = '\0'; while (l>=0 && f[l] != '/') f[l--] = '\0'; s = ""; } strcat(f, s); l=strlen(f); if (f[l-1] != '/') { f[l] = 'l'; f[++l] = '\0'; } if (dirtable) free_dirlist(dirtable); dirtable = NULL; filesel_shift = 0; num_table_entries=0; StringReAlloc(&image_dir, f); free(f); setupFilesel(0); return; } else { path = (Context->wintype)? Context->map_img_file : Context->clock_img_file; f = (char *) salloc((strlen(image_dir)+strlen(s)+2)*sizeof(char)); sprintf(f, "%s%s", image_dir, s); if (!path || strcmp(f, path)) { if (Context->wintype) StringReAlloc(&Context->map_img_file, f); else StringReAlloc(&Context->clock_img_file, f); setupFilesel(3); adjustGeom(Context, 0); shutDown(Context, 0); buildMap(Context, Context->wintype, 0); } free(f); } } } void checkZoomSettings(zoom) ZoomSettings *zoom; { if (zoom->fx<1.0) zoom->fx = 1.0; if (zoom->fx>100.0) zoom->fx = 100.0; if (zoom->fy<1.0) zoom->fy = 1.0; if (zoom->fy>100.0) zoom->fy = 100.0; if (zoom->fdx<0.0) zoom->fdx = 0.0; if (zoom->fdx>1.0) zoom->fdx = 1.0; if (zoom->fdy<0.01) zoom->fdy = 0.01; if (zoom->fdy>0.99) zoom->fdy = 0.99; } int setZoomAspect(Context, mode) struct Sundata * Context; int mode; { double a, b, f, p; int change; checkZoomSettings(&Context->newzoom); if (memcmp(&Context->newzoom, &Context->zoom, sizeof(ZoomSettings))) Context->oldzoom = Context->zoom; if (!Context->newzoom.mode) return 0; a = Context->newzoom.fx; b = Context->newzoom.fy; change = 0; if (Context->newzoom.mode == 1) f = 1.0; else f = (double)Context->geom.width / ((double)Context->geom.height *2.0 * sin(M_PI*Context->newzoom.fdy)); if (mode == 3) { p = sqrt( Context->newzoom.fx * Context->newzoom.fy / f); Context->newzoom.fx = p; Context->newzoom.fy = p * f; f = 0; mode = 1; } if (mode == 1) { if (f == 0) mode = 2; else Context->newzoom.fx = Context->newzoom.fy / f; if (Context->newzoom.fx < 1.0) { Context->newzoom.fy = Context->newzoom.fy / Context->newzoom.fx; Context->newzoom.fx = 1.0; } if (Context->newzoom.fx > 100.0) { Context->newzoom.fy = 100.0 * Context->newzoom.fy / Context->newzoom.fx; Context->newzoom.fx = 100.0; } } if (mode == 2) { if (f!=0) Context->newzoom.fy = Context->newzoom.fx * f; if (Context->newzoom.fy < 1.0) { Context->newzoom.fx = Context->newzoom.fx / Context->newzoom.fy; Context->newzoom.fy = 1.0; } if (Context->newzoom.fy > 100.0) { Context->newzoom.fx = 100.0 * Context->newzoom.fx / Context->newzoom.fy; Context->newzoom.fy = 100.0; } } if (fabs(a-Context->newzoom.fx) > 1E-4) { zoom_mode |= 10; change = 1; } else Context->newzoom.fx = a; if (fabs(b-Context->newzoom.fy) > 1E-4) { zoom_mode |= 12; change = 1; } else Context->newzoom.fy = b; if (verbose && change) fprintf(stderr, "Adjusting zoom area aspect (%.2f , %.2f) --> " "(%.2f , %.2f)\n", a, b, Context->newzoom.fx , Context->newzoom.fy); return change; } void setZoomDimension(Context) struct Sundata * Context; { double rx, ry; setZoomAspect(Context, 3); Context->newzoom.width = (int) ((double) Context->geom.width * Context->newzoom.fx + 0.25); Context->newzoom.height = (int) ((double) Context->geom.height * Context->newzoom.fy + 0.25); rx = 0.5/Context->newzoom.fx; ry = 0.5/Context->newzoom.fy; Context->newzoom.dx = (int) ((double) Context->newzoom.width * (Context->newzoom.fdx-rx) + 0.25); Context->newzoom.dy = (int) ((double) Context->newzoom.height * (Context->newzoom.fdy-ry) + 0.25); if (Context->newzoom.dx < 0) Context->newzoom.dx = 0; if (Context->newzoom.dy < 0) Context->newzoom.dy = 0; if (Context->newzoom.dx+Context->geom.width>Context->newzoom.width) Context->newzoom.dx = Context->newzoom.width - Context->geom.width; if (Context->newzoom.dy+Context->geom.height>Context->newzoom.height) Context->newzoom.dy = Context->newzoom.height - Context->geom.height; if (verbose && !button_pressed) fprintf(stderr, "Zoom (%.2f, %.2f) centering at (%.2f, %.2f)\n", Context->newzoom.fx, Context->newzoom.fy, Context->newzoom.fdx, Context->newzoom.fdy); } void showZoomHint(but_pos) int but_pos; { static int move_pos = -1; char hint[120]; int v; if (move_pos>=0) drawButton(Zoom, move_pos, -2); if (but_pos>=0) drawButton(Zoom, but_pos, -1); move_pos = but_pos; if (!do_zoom || zoom_lasthint==zoom_newhint) return; zoom_lasthint = zoom_newhint; v = ZoomGeom.height - ZoomCaller->gdata->menustrip; if (zoom_newhint=='\033') strcpy(hint, Label[L_ESCMENU]); else if (zoom_newhint==' ') sprintf(hint, "magx = %.3f, magy = %.3f, lon = %.3f°, lat = %.3f°", ZoomCaller->newzoom.fx, ZoomCaller->newzoom.fy, 360.0 * ZoomCaller->newzoom.fdx - 180.0, 90.0 - ZoomCaller->newzoom.fdy*180.0); else strcpy(hint, Help[getNumCmd(zoom_newhint)]); BasicSettings(ZoomCaller); XSetWindowBackground(dpy, Zoom, ZoomCaller->gdata->pixel[MENUBGCOLOR]); XClearArea(dpy, Zoom, 0, v+1, ZoomGeom.width, ZoomCaller->gdata->menustrip-1, False); XDrawImageString(dpy, Zoom, ZoomCaller->gdata->wingc, 4, v + ZoomCaller->gdata->font[MENUFONT]->max_bounds.ascent + 3, hint, strlen(hint)); } void PopZoom(); void setupZoom(mode) int mode; { int i, j, k; int zoomx, zoomy, zoomw, zoomh; char *num[] = { "1", "2", "5", "10", "20", "50", "100"}; char *synchro = Label[L_SYNCHRO]; char s[80]; if (!do_zoom) return; BasicSettings(ZoomCaller); XSetWindowColormap(dpy, Zoom, ZoomCaller->gdata->cmap); XSetWindowBackground(dpy, Zoom, ZoomCaller->gdata->pixel[MENUBGCOLOR]); areaw = ZoomGeom.width - 74; areah = ZoomGeom.height - 2*ZoomCaller->gdata->menustrip - 65; if (mode == -1) { XClearArea(dpy, Zoom, 0,0, ZoomGeom.width, ZoomGeom.height, False); XDrawImageString(dpy, Zoom, ZoomCaller->gdata->wingc, 160-XTextWidth(ZoomCaller->gdata->font[MENUFONT], synchro, strlen(synchro))+areah, 24+ ZoomCaller->gdata->font[MENUFONT]->max_bounds.ascent, synchro, strlen(synchro)); for (i=0; i<=N_ZOOM; i++) drawButton(Zoom, i, 0); BasicSettings(ZoomCaller); for (i=0; i<=6; i++) { j = 63 + (int) ( (areah-6)*log(atof(num[i]))/log(100.0)); k = j - ZoomCaller->gdata->charspace*strlen(num[i])/10; XDrawImageString(dpy, Zoom, ZoomCaller->gdata->wingc, k, ZoomCaller->gdata->font[MENUFONT]->max_bounds.ascent + 3, num[i], strlen(num[i])); k = j + ZoomCaller->gdata->font[MENUFONT]->max_bounds.ascent/2 - 10; XDrawImageString(dpy, Zoom, ZoomCaller->gdata->wingc, 24-ZoomCaller->gdata->charspace*strlen(num[i])/4, k , num[i], strlen(num[i])); XDrawLine(dpy, Zoom, ZoomCaller->gdata->wingc, j, 20, j, 24); XDrawLine(dpy, Zoom, ZoomCaller->gdata->wingc, 30, j-10, 34, j-10); } XDrawLine(dpy, Zoom, ZoomCaller->gdata->wingc, 60, 22, areah+60, 22); XDrawLine(dpy, Zoom, ZoomCaller->gdata->wingc, 32, 50, 32, areah+50); } XSetWindowBackground(dpy, Zoom, ZoomCaller->gdata->pixel[ZOOMBGCOLOR]); if ((mode & 1) && !ZoomCaller->newzoom.mode) XClearArea(dpy, Zoom, 41, 31, 9, 9, False); if (mode & 2) XClearArea(dpy, Zoom, 61, 31, areah, 9, False); if (mode & 4) XClearArea(dpy, Zoom, 41, 51, 9, areah, False); if (!zoompix) { int oldlevel, oldfill, code, num; oldlevel = ZoomCaller->flags.colorlevel; oldfill = ZoomCaller->flags.fillmode; ZoomCaller->flags.colorlevel = MONOCHROME; ZoomCaller->flags.fillmode = 1; i = ZoomCaller->geom.width; j = ZoomCaller->geom.height; ZoomCaller->newzoom = ZoomCaller->zoom; ZoomCaller->zoom.width = ZoomCaller->geom.width = areaw; ZoomCaller->zoom.height = ZoomCaller->geom.height = areah; ZoomCaller->zoom.dx = ZoomCaller->zoom.dy = 0; code = readVMF(Zoom_img_file, ZoomCaller); if (code) { if (ZoomCaller->bits) free(ZoomCaller->bits); ZoomCaller->bits = NULL; } if (!ZoomCaller->bits) { num = ((ZoomCaller->geom.width+7)/8)* ZoomCaller->geom.height*sizeof(char); ZoomCaller->bits = (char *) salloc(num); } if (code && ZoomCaller->bits) memset(ZoomCaller->bits, 0xFF, num); if (ZoomCaller->bits) { zoompix = XCreatePixmapFromBitmapData(dpy, Root, ZoomCaller->bits, ZoomCaller->geom.width, ZoomCaller->geom.height, 0, 1, 1); free(ZoomCaller->bits); } ZoomCaller->zoom = ZoomCaller->newzoom; ZoomCaller->geom.width = i; ZoomCaller->geom.height = j; ZoomCaller->flags.colorlevel = oldlevel; ZoomCaller->flags.fillmode = oldfill; } XSetWindowBackground(dpy, Zoom, ZoomCaller->gdata->pixel[CHOICECOLOR]); XSetBackground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[CHOICECOLOR]); XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[CHANGECOLOR]); if (mode & 2) { i = (int) ( (double)(areah-6)*log(ZoomCaller->zoom.fx)/log(100.00)); XClearArea(dpy, Zoom, 61+i, 31, 6, 9, False); if (ZoomCaller->newzoom.fx != ZoomCaller->zoom.fx) { i = (int) ((double)(areah-6)*log(ZoomCaller->newzoom.fx)/log(100.00)); XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 61+i, 31, 5, 8); } } if (mode & 4) { j = (int) ( (double)(areah-6)*log(ZoomCaller->zoom.fy)/log(100.0)); XClearArea(dpy, Zoom, 41, 51+j, 9, 6, False); if (ZoomCaller->newzoom.fy != ZoomCaller->zoom.fy) { j = (int) ((double)(areah-6)*log(ZoomCaller->newzoom.fy)/log(100.0)); XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 41, 51+j, 8, 5); } } if (mode & 8) { zoomw = (areaw*ZoomCaller->geom.width)/ZoomCaller->zoom.width; zoomh = (areah*ZoomCaller->geom.height)/ZoomCaller->zoom.height; zoomx = (areaw*ZoomCaller->zoom.dx)/ZoomCaller->zoom.width; zoomy = (areah*ZoomCaller->zoom.dy)/ZoomCaller->zoom.height; i = areaw-zoomx-zoomw-1; j = areah-zoomy-zoomh-1; XSetBackground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[ZOOMBGCOLOR]); XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[ZOOMFGCOLOR]); if (zoomy) XCopyPlane(dpy, zoompix, Zoom, ZoomCaller->gdata->wingc, 0, 0, areaw-1, zoomy, 61, 51, 1); if (j>0) XCopyPlane(dpy, zoompix, Zoom, ZoomCaller->gdata->wingc, 0, zoomy+zoomh+1, areaw, j, 61, 52+zoomy+zoomh, 1); if (zoomx) XCopyPlane(dpy, zoompix, Zoom, ZoomCaller->gdata->wingc, 0, 0, zoomx, areah-1, 61, 51, 1); if (i>0) XCopyPlane(dpy, zoompix, Zoom, ZoomCaller->gdata->wingc, zoomx+zoomw+1, 0, i, areah, 62+zoomx+zoomw, 51, 1); if (ZoomCaller->flags.colorlevel == MONOCHROME) { XSetBackground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[ZOOMFGCOLOR]); XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[ZOOMBGCOLOR]); } else XSetBackground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[CHOICECOLOR]); XCopyPlane(dpy, zoompix, Zoom, ZoomCaller->gdata->wingc, zoomx, zoomy, zoomw+1, zoomh+1, 61+zoomx, 51+zoomy, 1); if (ZoomCaller->newzoom.fx!=ZoomCaller->zoom.fx || ZoomCaller->newzoom.fy!=ZoomCaller->zoom.fy || ZoomCaller->newzoom.fdx!=ZoomCaller->zoom.fdx || ZoomCaller->newzoom.fdy!=ZoomCaller->zoom.fdy) { zoomw = (areaw*ZoomCaller->geom.width)/ZoomCaller->newzoom.width; zoomh = (areah*ZoomCaller->geom.height)/ZoomCaller->newzoom.height; zoomx = (areaw*ZoomCaller->newzoom.dx)/ZoomCaller->newzoom.width; zoomy = (areah*ZoomCaller->newzoom.dy)/ZoomCaller->newzoom.height; if (ZoomCaller->flags.colorlevel==MONOCHROME) drawDottedRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 61+zoomx, 51+zoomy, zoomw, zoomh, ZoomCaller->gdata->pixel[ZOOMFGCOLOR], ZoomCaller->gdata->pixel[ZOOMBGCOLOR]); else { XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[CHANGECOLOR]); XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 61+zoomx, 51+zoomy, zoomw, zoomh); } } i = 60 + (int) (areaw * ZoomCaller->newzoom.fdx); j = 50 + (int) (areah * ZoomCaller->newzoom.fdy); XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[CHANGECOLOR]); if (i<60+areaw && j<50+areah) XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, i, j, 1, 1); XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[MENUFGCOLOR]); XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 60, 50, areaw+1, areah+1); } XSetWindowBackground(dpy, Zoom, ZoomCaller->gdata->pixel[MENUBGCOLOR]); XSetBackground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[MENUBGCOLOR]); XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[MENUFGCOLOR]); if (mode & 1) { XClearArea(dpy, Zoom, 33, 23, 17, 17, False); s[0] = '0'+ZoomCaller->newzoom.mode; s[1] = '\0'; XDrawImageString(dpy, Zoom, ZoomCaller->gdata->wingc, 39, 25+ZoomCaller->gdata->font[MENUFONT]->max_bounds.ascent, s, 1); } if (mode & 16) { drawButton(Zoom, N_ZOOM+1, 0); } XSetForeground(dpy, ZoomCaller->gdata->wingc, ZoomCaller->gdata->pixel[MENUFGCOLOR]); if (mode == -1) { XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 60, 30, areah+1, 10); XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 40, 50, 10, areah+1); XDrawRectangle(dpy, Zoom, ZoomCaller->gdata->wingc, 32, 22, 18, 18); drawButton(Zoom, N_ZOOM+1, 0); } zoom_lasthint = '\0'; showZoomHint(-1); } void PopZoom(Context) struct Sundata * Context; { int a, b, w, h, x=0, y=0; if (do_zoom) { XDestroyWindow(dpy, Zoom); Zoom = 0; ZoomCaller = NULL; zoom_active = 1; do_zoom = 0; if (zoompix) { XFreePixmap(dpy, zoompix); zoompix = 0; } return; } else do_zoom = 1; if (!Zoom) Zoom = newWindow(NULL, &ZoomGeom, 4); Context->newzoom = Context->zoom; XSelectInput(dpy, Zoom, 0); ZoomCaller = Context; zoom_shift = 0; zoom_mode = 0; zoom_active = do_zoomsync; zoom_newhint = ' '; if (!getPlacement(Context->win, &Context->geom.x, &Context->geom.y, &w, &h)) { x = Context->geom.x + ZoomGeom.x - horiz_drift - 5; a = Context->geom.y + h + 6; if (do_menu && Context == MenuCaller) a += MenuGeom.height + MenuGeom.y + vert_drift + 2; b = Context->geom.y - ZoomGeom.height - ZoomGeom.y - 2*vert_drift - 28; if (b < TOPTITLEBARHEIGHT ) b = TOPTITLEBARHEIGHT; if (a > (int) DisplayHeight(dpy,scr) - ZoomGeom.height - vert_drift -20) a = b; y = (placement<=NE)? a : b; } setSizeHints(NULL, 4); XMoveWindow(dpy, Zoom, x, y); XMapRaised(dpy, Zoom); XMoveWindow(dpy, Zoom, x, y); XFlush(dpy); usleep(2*TIMESTEP); option_lasthint = '\0'; setupZoom(-1); setProtocols(NULL, 4); } void activateZoom(Context, rebuild) Sundata *Context; int rebuild; { setZoomDimension(Context); zoom_newhint = ' '; setupZoom(zoom_mode); if (rebuild) { if (Context->zoom.width!=Context->newzoom.width || Context->zoom.height!=Context->newzoom.height || Context->zoom.dx!=Context->newzoom.dx || Context->zoom.dy!=Context->newzoom.dy) { Context->zoom = Context->newzoom; shutDown(Context, 0); buildMap(Context, Context->wintype, 0); zoom_newhint = ' '; setupZoom(zoom_mode); } else Context->zoom = Context->newzoom; } if (rebuild>0) zoom_mode = 0; } void processZoomAction(Context, x, y, button, evtype) Sundata * Context; int x; int y; int button; int evtype; { static int click_pos=-1; double v1, v2; int but_pos; if (evtype == ButtonRelease && click_pos>=0) { drawButton(Zoom, click_pos, 0); click_pos = -1; } if (y>areah+63 && ygdata->menustrip) { but_pos = getButton(Zoom, x, y); if (but_pos>=N_ZOOM) zoom_newhint = '\033'; else if (but_pos>=0) zoom_newhint = ZoomKey[2*but_pos]; if (evtype==MotionNotify) { if (but_pos>=0) showZoomHint(but_pos); } if (evtype==ButtonPress && but_pos>=0) { drawButton(Zoom, but_pos, 1); click_pos = but_pos; } if (evtype==ButtonRelease) { if (zoom_newhint == '\033') { PopZoom(Context); return; } if (zoom_newhint == 'W') do_zoom = -1; processKey(Context->win, tolower(zoom_newhint)); showZoomHint(but_pos); zoom_mode = 0; } return; } if (button_pressed>=2) return; if (evtype==ButtonRelease) drawButton(Zoom, N_ZOOM+1, 0); if (evtype==MotionNotify) drawButton(Zoom, N_ZOOM+1, -2); if (x>areah+170 && xgdata->charspace && y>21 && y<39) { if (evtype==MotionNotify) { drawButton(Zoom, N_ZOOM+1, -1); zoom_newhint = '"'; showZoomHint(getNumCmd(zoom_newhint)); } if (evtype==ButtonPress) { drawButton(Zoom, N_ZOOM+1, 1); } if (evtype==ButtonRelease) { zoom_active = 1 -zoom_active; zoom_mode |= 16; } } else if (x>=60 && x<=areah+60 && y>=30 && y<=40 && button_pressed) { v1 = exp((double)(x-66)*log(100.00)/(double)(areah-6)); if (v1 != Context->newzoom.fx) { Context->newzoom.fx = v1; zoom_mode |= 10; (void) setZoomAspect(Context, 2); } } else if (x>=40 && x<=50 && y>=50 && y<=areah+50 && button_pressed) { v2 = exp((double)(y-53)*log(100.00)/(double)(areah-6)); if (v2 != Context->newzoom.fy) { Context->newzoom.fy = v2; zoom_mode |= 12; (void) setZoomAspect(Context, 1); } } else if (x>=60 && y>=50 && x<=60+areaw && y<=50+areah && button_pressed){ v1 = ((double)(x-60))/((double)areaw); v2 = ((double)(y-50))/((double)areah); if (v1!=Context->newzoom.fdx || v2!=Context->newzoom.fdy) { Context->newzoom.fdx = v1; Context->newzoom.fdy = v2; zoom_mode |= 8; } (void) setZoomAspect(Context, 3); } else { zoom_newhint = ' '; showZoomHint(-1); if (button_pressed) return; } if (zoom_mode>0) { setZoomDimension(Context); if (zoom_active && !button_pressed && memcmp(&Context->newzoom, &Context->zoom, sizeof(ZoomSettings))) { button_pressed = 0; activateZoom(Context, -1); } else setupZoom(zoom_mode); if (!button_pressed) zoom_mode = 0; } } void showOptionHint(but_pos) int but_pos; { static int move_pos = -1; char hint[128]; int l, v; if (move_pos>=0) drawButton(Option, move_pos, -2); if (but_pos>=0) drawButton(Option, but_pos, -1); move_pos = but_pos; if (!do_option || option_lasthint==option_newhint) return; *hint = '\0'; option_lasthint = option_newhint; v = OptionGeom.height - OptionCaller->gdata->menustrip; if (option_newhint=='\033') strcpy(hint, Label[L_ESCMENU]); else if (option_newhint==' ') strcpy(hint, Label[L_OPTIONINTRO]); else if (option_newhint=='\n') strcpy(hint, Label[L_ACTIVATE]); else if (option_newhint=='?') strcpy(hint, Label[L_INCORRECT]); else { if (option_newhint == 'G' || option_newhint == 'J') option_lasthint = ' '; helpHint(OptionCaller, option_newhint, hint); } l = strlen(hint); BasicSettings(OptionCaller); XSetWindowBackground(dpy, Option, OptionCaller->gdata->pixel[MENUBGCOLOR]); XClearArea(dpy, Option, 0, v+1, OptionGeom.width, OptionCaller->gdata->menustrip-1, False); XDrawImageString(dpy, Option, OptionCaller->gdata->wingc, 4, v + OptionCaller->gdata->font[MENUFONT]->max_bounds.ascent + 3, hint, l); } void showCaret(Context, win, entry, x, y, mode) Sundata * Context; Window win; TextEntry *entry; int x, y, mode; { int i, j; i = XTextWidth(Context->gdata->font[MENUFONT], entry->string, entry->caret); j = XTextWidth(Context->gdata->font[MENUFONT], "_", 1); XSetWindowBackground(dpy, win, Context->gdata->pixel[(mode)? CARETCOLOR : OPTIONBGCOLOR]); XClearArea(dpy, win, x+i, y+Context->gdata->font[MENUFONT]->max_bounds.ascent+ Context->gdata->menustrip/3 - 1, j, 2, False); } void setupOption(mode) int mode; { int i, vskip; char s[80]; if (!do_option) return; BasicSettings(OptionCaller); XSetWindowColormap(dpy, Option, OptionCaller->gdata->cmap); XSetWindowBackground(dpy, Option, OptionCaller->gdata->pixel[MENUBGCOLOR]); vskip = 3*OptionCaller->gdata->menustrip/8; option_lasthint = '\0'; if (mode == -1) { XClearArea(dpy, Option, 0,0, OptionGeom.width, OptionGeom.height, False); for (i=0; i<=N_OPTION; i++) drawButton(Option, i, 0); XSetBackground(dpy, OptionCaller->gdata->wingc, OptionCaller->gdata->pixel[MENUBGCOLOR]); XSetForeground(dpy, OptionCaller->gdata->wingc, OptionCaller->gdata->pixel[MENUFGCOLOR]); strcpy(s, Label[L_OPTION]); XDrawImageString(dpy, Option, OptionCaller->gdata->wingc, 8, OptionCaller->gdata->font[MENUFONT]->max_bounds.ascent + vskip + 3, s, strlen(s)); XDrawRectangle(dpy, Option, OptionCaller->gdata->wingc, 70, vskip, OptionGeom.width-85, OptionCaller->gdata->menustrip); } XSetWindowBackground(dpy, Option, OptionCaller->gdata->pixel[OPTIONBGCOLOR]); XClearArea(dpy, Option, 71,vskip+1, OptionGeom.width-86, OptionCaller->gdata->menustrip-1, False); XSetBackground(dpy, OptionCaller->gdata->wingc, OptionCaller->gdata->pixel[OPTIONBGCOLOR]); XSetForeground(dpy, OptionCaller->gdata->wingc, OptionCaller->gdata->pixel[OPTIONFGCOLOR]); XDrawImageString(dpy, Option, OptionCaller->gdata->wingc, 76, OptionCaller->gdata->font[MENUFONT]->max_bounds.ascent + vskip + 3, option_entry.string, strlen(option_entry.string)); if (text_input == OPTION_INPUT) showCaret(OptionCaller, Option, &option_entry, 76, vskip, 1); showOptionHint(-1); } void resetStringLength(max, entry) int max; TextEntry * entry; { int a; entry->maxlength = max; a = (entry->string == NULL); entry->string = (char *) realloc(entry->string, (max+2)*sizeof(char)); if (a) { *entry->string = '\0'; entry->caret = 0; } if (entry->caret > max) { entry->string[max] = '\0'; entry->caret = max; } } void PopOption(Context) struct Sundata * Context; { int w, h, a, b, x=0, y=0; do_option = 1 - do_option; if (!do_option) { XDestroyWindow(dpy, Option); Option = 0; OptionCaller = NULL; return; } if (!Option) Option = newWindow(NULL, &OptionGeom, 5); XSelectInput(dpy, Option, 0); OptionCaller = Context; w = ((OptionGeom.width-86) / XTextWidth(OptionCaller->gdata->font[MENUFONT], "_", 1)) - 2; resetStringLength(w, &option_entry); if (runlevel>=RUNTIMEOPTION) option_newhint = '\n'; else option_newhint = ' '; OptionGeom.height = OptionGeom.h_mini = (15 * Context->gdata->menustrip)/4; if (!getPlacement(Context->win, &Context->geom.x, &Context->geom.y, &w, &h)) { x = Context->geom.x + OptionGeom.x - horiz_drift - 5; a = Context->geom.y + h + 6; if (do_menu && Context == MenuCaller) a += MenuGeom.height + MenuGeom.y + vert_drift + 2; b = Context->geom.y - OptionGeom.height - OptionGeom.y - 2*vert_drift - 28; if (b < TOPTITLEBARHEIGHT ) b = TOPTITLEBARHEIGHT; if (a > (int) DisplayHeight(dpy,scr) - 2*OptionGeom.height -vert_drift -20) a = b; y = (placement<=NE)? a : b; } setSizeHints(NULL, 5); XMoveWindow(dpy, Option, x, y); XMapRaised(dpy, Option); XMoveWindow(dpy, Option, x, y); XFlush(dpy); usleep(2*TIMESTEP); option_lasthint = '\0'; option_newhint = ' '; setupOption(-1); setProtocols(NULL, 5); } void activateOption() { Sundata *Context; Flags oldflags; ZoomSettings oldzoom; int i, size; short *ptr, *oldptr, *newptr; double *zptr, *zoldptr, *znewptr; Context = OptionCaller; if (!do_option || !Context) return; oldflags = gflags; gflags.animate += 2; oldzoom = gzoom; runlevel = RUNTIMEOPTION; i = parseCmdLine(option_entry.string); correctValues(); if (i>0 || runlevel == FAILEDOPTION) { option_newhint = '?'; showOptionHint(-1); return; } else option_newhint = '\n'; showOptionHint(-1); /* Set runlevel=IMAGERECYCLE if previous image/pixmap can be recycled */ if (option_changes<4 && gflags.colorlevel==oldflags.colorlevel && gflags.fillmode==oldflags.fillmode) { runlevel = IMAGERECYCLE; tmp_cmap = Context->gdata->cmap; if (gflags.colorlevelxim->bytes_per_line*Context->xim->height; memcpy(Context->xim->data, Context->ximdata, size); } } shutDown(Context, 0); memcpy(Context->spotsizes, city_spotsizes, city_cat*sizeof(int)); memcpy(Context->sizelimits, city_sizelimits, city_cat*sizeof(int)); if (gflags.animate<2) Context->flags.animate = gflags.animate; else gflags.animate -= 2; ptr = (short *) &gflags; oldptr = (short *) &oldflags; newptr = (short *) &Context->flags; for (i=0; izoom; for (i=0; i<6; i++) if (zptr[i]!=zoldptr[i]) znewptr[i] = zptr[i]; if (option_changes & 8) Context->geom = ClockGeom; if (option_changes & 16) Context->geom = MapGeom; if (option_changes & 32) StringReAlloc(&Context->clock_img_file, Clock_img_file); if (option_changes & 64) StringReAlloc(&Context->map_img_file, Map_img_file); buildMap(Context, Context->wintype, 0); } void processOptionAction(Context, x, y, button, evtype) Sundata * Context; int x, y, button, evtype; { static int click_pos = -1; int i, opth, vskip, but_pos; KeySym key; opth = OptionGeom.height - 2 * Context->gdata->menustrip - 1; vskip = 3*Context->gdata->menustrip/8; if (evtype == ButtonRelease && click_pos>=0) { drawButton(Option, click_pos, 0); click_pos = -1; } if (evtype==ButtonRelease && x>=70 && x<=OptionGeom.width-15 && y>=vskip && y<=Context->gdata->menustrip+vskip) { text_input = OPTION_INPUT; but_pos = (x-76)/XTextWidth(OptionCaller->gdata->font[MENUFONT], "_", 1); i = strlen(option_entry.string); if (but_pos<0) but_pos = 0; if (but_pos>i) but_pos = i; option_entry.caret = but_pos; setupOption(0); return; } if (evtype==ButtonRelease && text_input==OPTION_INPUT) { text_input = NULL_INPUT; setupOption(0); } if (y>opth && ygdata->menustrip) { but_pos = getButton(Option, x, y); if (but_pos>=N_OPTION) option_newhint = '\033'; else if (but_pos>=0) option_newhint = OptionKey[2*but_pos]; if (evtype==MotionNotify) { if (but_pos>=0) showOptionHint(but_pos); } if (evtype==ButtonPress && but_pos>=0) { drawButton(Option, but_pos, 1); click_pos = but_pos; } if (evtype==ButtonRelease) { if (but_pos<0) return; if (but_posgdata->menustrip; if (urban_newhint=='\033') strcpy(hint, Label[L_ESCMENU]); else if (urban_newhint==' ') strcpy(hint, Help[getNumCmd('U')]); else { if (str) strncpy(hint, str, 125); else { l = getNumCmd(urban_newhint); if (l>=0 && lgdata->pixel[MENUBGCOLOR]); XClearArea(dpy, Urban, 0, v+1, UrbanGeom.width, UrbanCaller->gdata->menustrip-1, False); XDrawImageString(dpy, Urban, UrbanCaller->gdata->wingc, 4, v + UrbanCaller->gdata->font[MENUFONT]->max_bounds.ascent + 3, hint, l); } void updateUrbanEntries(Context, city) Sundata * Context; City * city; { char *ptr; int w; text_input = NULL_INPUT; if (city == NULL) return; if (city->name && city!=&Context->pos1) { w = (urban_w[0]/ XTextWidth(UrbanCaller->gdata->font[MENUFONT],"_",1))-2; if (strlen(city->name)name); strncpy(urban_entry[0].string, city->name, w); urban_entry[0].string[w] = '\0'; urban_entry[0].caret = strlen(urban_entry[0].string); } else { urban_entry[0].string[0]='\0'; urban_entry[0].caret = 0; } if (city->tz) { w = (urban_w[1]/ XTextWidth(UrbanCaller->gdata->font[MENUFONT],"_",1))-2; if (strlen(city->tz)tz); strncpy(urban_entry[1].string, city->tz, w); urban_entry[1].string[w] = '\0'; urban_entry[1].caret = strlen(urban_entry[1].string); } ptr = num2str(city->lat, urban_entry[2].string, Context->flags.dms); urban_entry[2].caret = strlen(ptr); ptr = num2str(city->lon, urban_entry[3].string, Context->flags.dms); urban_entry[3].caret = strlen(ptr); sprintf(urban_entry[4].string, "%d", city->size); urban_entry[4].caret = 1; } void setupUrban(mode) int mode; { int i, vskip; char s[80]; if (!do_urban) return; if (mode == -2) { urban_t[0] = urban_t[2] = 7; urban_t[1] = 15 + UrbanGeom.width/2; urban_t[3] = (UrbanGeom.width - 120)/2; urban_t[4] = UrbanGeom.width - 100; urban_x[0] = 100; urban_x[1] = 100 + (UrbanGeom.width+1)/2; urban_x[2] = 80; urban_x[3] = 20 + UrbanGeom.width/2; urban_x[4] = UrbanGeom.width-40; for (i=0; i<=1; i++) urban_y[i] = UrbanCaller->gdata->mapstrip/2 - 1; for (i=2; i<=4; i++) urban_y[i] = 2*UrbanCaller->gdata->mapstrip - 1; urban_w[0] = urban_w[1] = (UrbanGeom.width-210)/2; urban_w[2] = urban_w[3] = (UrbanGeom.width-320)/2; urban_w[4] = 35; return; } BasicSettings(UrbanCaller); XSetWindowColormap(dpy, Urban, UrbanCaller->gdata->cmap); XSetWindowBackground(dpy, Urban, UrbanCaller->gdata->pixel[MENUBGCOLOR]); urbanh = UrbanGeom.height-2*UrbanCaller->gdata->menustrip - 1; vskip = 3*UrbanCaller->gdata->menustrip/8; urban_lasthint = '\0'; if (mode == -1) { XClearArea(dpy, Urban, 0,0, UrbanGeom.width, UrbanGeom.height, False); for (i=0; i<=N_URBAN; i++) drawButton(Urban, i, 0); BasicSettings(UrbanCaller); for (i=0; i<=4; i++) { strcpy(s, Label[L_CITYNAME+i]); XDrawImageString(dpy, Urban, UrbanCaller->gdata->wingc, urban_t[i], urban_y[i]+ UrbanCaller->gdata->font[MENUFONT]->max_bounds.ascent+4, s, strlen(s)); XDrawRectangle(dpy, Urban, UrbanCaller->gdata->wingc, urban_x[i], urban_y[i], urban_w[i], UrbanCaller->gdata->menustrip); } } for (i=0; i<=4; i++) if (text_input != URBAN_INPUT+i) showCaret(UrbanCaller, Urban, &urban_entry[i], urban_x[i]+6, urban_y[i], 0); for (i=0; i<=4; i++) if (text_input == URBAN_INPUT+i || text_input < URBAN_INPUT) { XSetWindowBackground(dpy, Urban, UrbanCaller->gdata->pixel[OPTIONBGCOLOR]); XClearArea(dpy, Urban, urban_x[i]+1, urban_y[i]+1, urban_w[i]-1, UrbanCaller->gdata->menustrip-1, False); XSetBackground(dpy, UrbanCaller->gdata->wingc, UrbanCaller->gdata->pixel[OPTIONBGCOLOR]); XSetForeground(dpy, UrbanCaller->gdata->wingc, UrbanCaller->gdata->pixel[OPTIONFGCOLOR]); XDrawImageString(dpy, Urban, UrbanCaller->gdata->wingc, urban_x[i]+6, urban_y[i]+ UrbanCaller->gdata->font[MENUFONT]->max_bounds.ascent +4, urban_entry[i].string, strlen(urban_entry[i].string)); if (text_input == URBAN_INPUT+i) showCaret(UrbanCaller, Urban, &urban_entry[i], urban_x[i]+6, urban_y[i], 1); } if (urban_newhint == '?') urban_newhint = urban_lasthint = '('; else showUrbanHint(NULL); } void PopUrban(Context) struct Sundata * Context; { int i, w, h, a, b, x=0, y=0; do_urban = 1 - do_urban; if (!do_urban) { XDestroyWindow(dpy, Urban); Urban = 0; UrbanCaller = NULL; return; } if (!Urban) Urban = newWindow(NULL, &UrbanGeom, 6); XSelectInput(dpy, Urban, 0); UrbanCaller = Context; UrbanGeom.height = UrbanGeom.h_mini = (22 * Context->gdata->menustrip)/4; setupUrban(-2); for (i=0; i<=4; i++) { w = (urban_w[i]/ XTextWidth(UrbanCaller->gdata->font[MENUFONT], "_", 1)) - 2; resetStringLength(w, &urban_entry[i]); } if (!getPlacement(Context->win, &Context->geom.x, &Context->geom.y, &w, &h)) { x = Context->geom.x + UrbanGeom.x - horiz_drift - 5; a = Context->geom.y + h + 6; if (do_menu && Context == MenuCaller) a += MenuGeom.height + MenuGeom.y + vert_drift + 2; b = Context->geom.y - UrbanGeom.height - UrbanGeom.y - 2*vert_drift -28; if (b < TOPTITLEBARHEIGHT ) b = TOPTITLEBARHEIGHT; if (a > (int) DisplayHeight(dpy,scr) - 2*UrbanGeom.height -vert_drift -20) a = b; y = (placement<=NE)? a : b; } setSizeHints(NULL, 6); XMoveWindow(dpy, Urban, x, y); XResizeWindow(dpy, Urban, UrbanGeom.width, UrbanGeom.height); XMapRaised(dpy, Urban); XMoveWindow(dpy, Urban, x, y); XFlush(dpy); usleep(2*TIMESTEP); setupUrban(-1); setProtocols(NULL, 6); } void activateUrban() { } void processUrbanAction(Context, x, y, button, evtype) Sundata * Context; int x, y, button, evtype; { static int move_pos; static int click_pos; int i, j, vskip, but_pos; KeySym key; if (evtype == MotionNotify && move_pos>=0) { drawButton(Urban, move_pos, -2); move_pos = -1; } if (evtype == ButtonRelease && click_pos>=0) { drawButton(Urban, click_pos, 0); click_pos = -1; } vskip = 3*Context->gdata->menustrip/8; for (i=0; i<=4; i++) if (evtype==ButtonRelease && x>=urban_x[i]+1 && x<=urban_x[i]+urban_w[i] && y>=urban_y[i] && y<=urban_y[i]+Context->gdata->menustrip) { text_input = URBAN_INPUT+i; but_pos = (x-urban_x[i]-6)/XTextWidth(UrbanCaller->gdata->font[MENUFONT], "_", 1); j = strlen(urban_entry[i].string); if (but_pos<0) but_pos = 0; if (but_pos>j) but_pos = j; urban_entry[i].caret = but_pos; setupUrban(0); return; } if (evtype==ButtonRelease) { text_input = NULL_INPUT; setupUrban(0); } if (y>urbanh && ygdata->menustrip) { but_pos = getButton(Urban, x, y); if (but_pos>=N_URBAN) urban_newhint = '\033'; else if (but_pos>=0) urban_newhint = UrbanKey[2*but_pos]; if (evtype==MotionNotify) { if (but_pos>=0 && but_pos<=N_URBAN) { showUrbanHint(NULL); drawButton(Urban, but_pos, -1); move_pos = but_pos; } } if (evtype==ButtonPress && but_pos>=0) { drawButton(Urban, but_pos, 1); click_pos = but_pos; } if (evtype==ButtonRelease) { if (but_pos<0) return; if (but_pos=urbanh+Context->gdata->menustrip)) { urban_newhint = 'U'; showUrbanHint(NULL); } } struct Sundata * parentContext(Context) struct Sundata * Context; { struct Sundata * ParentContext; ParentContext = Seed; while (ParentContext && ParentContext->next != Context) ParentContext = ParentContext->next; return ParentContext; } void setAuxilWins(Context, mode) Sundata * Context; int mode; { #define NUMWIDGETS 5 int * bool_state[NUMWIDGETS] = { &do_menu, &do_filesel, &do_zoom, &do_option, &do_urban }; Window * window[NUMWIDGETS] = { &Menu, &Filesel, &Zoom, &Option, &Urban }; struct Sundata ** caller[NUMWIDGETS] = { &MenuCaller, &FileselCaller, &ZoomCaller, &OptionCaller, &UrbanCaller }; char * char_newhint[NUMWIDGETS] = { (char *)&menu_newhint, NULL, &zoom_newhint, &option_newhint, &urban_newhint }; setupCB setup_proc[NUMWIDGETS] = { &setupMenu, &setupFilesel, &setupZoom, &setupOption, &setupUrban }; popCB pop_proc[NUMWIDGETS] = { &PopMenu, &PopFilesel, &PopZoom, &PopOption, &PopUrban }; int i, announce=1; if (option_changes && mode==RESET) mode = REMAP; for (i=0; igdata->links>0) { --Context->gdata->links; return; } XFreeGC(dpy, Context->gdata->wingc); Context->gdata->wingc = 0; XFreeGC(dpy, Context->gdata->pixgc); Context->gdata->pixgc = 0; if (runlevel!=IMAGERECYCLE && Context->gdata->cmap!=cmap0) XFreeColormap(dpy, Context->gdata->cmap); for (i=0; igdata->font[i]); free(Context->gdata); } /* * Free resources. */ void shutDown(Context, all) struct Sundata * Context; int all; { struct Sundata * ParentContext, *NextContext; if (all<0) Context = Seed; repeat: fflush(stderr); NextContext = Context->next; ParentContext = parentContext(Context); if (runlevel!=IMAGERECYCLE) { if (Context->xim) { XDestroyImage(Context->xim); Context->xim = NULL; } if (Context->ximdata) { free(Context->ximdata); Context->ximdata = NULL; } while (Context->label) { struct TextLabel *ptr; ptr = (Context->label)->next; free(Context->label->text); free(Context->label); Context->label = ptr; } if (Context->mappix) { XFreePixmap(dpy, Context->mappix); Context->mappix = 0; } if (Context->daypixel) { free(Context->daypixel); Context->daypixel = NULL; } if (Context->nightpixel) { free(Context->nightpixel); Context->nightpixel = NULL; } if (Context->vmfpixels) { free(Context->vmfpixels); Context->vmfpixels = NULL; } if (Context->tr1) { free(Context->tr1); Context->tr1 = NULL; } if (Context->tr2) { free(Context->tr2); Context->tr2 = NULL; } if (Context->daywave) { free(Context->daywave); Context->daywave = NULL; } } destroyGCs(Context); Context->flags.hours_shown = 0; if (all) { last_time = 0; if (Context->win) { setAuxilWins(Context, DESTROY); if (Context == RootCaller) { RootCaller = NULL; do_root = 0; } XDestroyWindow(dpy, Context->win); Context->win = 0; } if (Context->clock_img_file) { free(Context->clock_img_file); Context->clock_img_file = NULL; } if (Context->map_img_file) { free(Context->map_img_file); Context->map_img_file = NULL; } free(Context->spotsizes); free(Context->sizelimits); if (all<0) { free(Context); if (NextContext) { Context = NextContext; goto repeat; } else { endup: if (zoompix) XFreePixmap(dpy, zoompix); if (textpix) XFreePixmap(dpy, textpix); if (rootpix) XFreePixmap(dpy, rootpix); XCloseDisplay(dpy); if (dirtable) free(dirtable); exit(0); } } if (ParentContext) ParentContext->next = Context->next; else Seed = Context->next; free(Context); if (Seed == NULL) goto endup; } } sunclock-3.57/readpng.c0000644000000000000000000002254110326763075011760 0ustar /* +-------------------------------------------------------------------+ */ /* | This file is derived from | */ /* | Xpaint's readPNG routines, copyrighted | */ /* | by Greg Roelofs (newt@pobox.com) | */ /* | | */ /* | Permission to use, copy, modify, and to distribute this software | */ /* | and its documentation for any purpose is hereby granted without | */ /* | fee, provided that the above copyright notice appear in all | */ /* | copies and that both that copyright notice and this permission | */ /* | notice appear in supporting documentation. There is no | */ /* | representations about the suitability of this software for | */ /* | any purpose. this software is provided "as is" without express | */ /* | or implied warranty. | */ /* | | */ /* +-------------------------------------------------------------------+ */ #include #include #include #include #include #include "sunclock.h" extern Display * dpy; extern Visual * visual; extern Colormap tmp_cmap; extern int scr; extern int bigendian; extern int color_depth; extern int color_pad; extern int bytes_per_pixel; extern int color_alloc_failed; extern int verbose; extern char * salloc(); extern void fill_line(char *scan, char* c, int w, int zw, int wp, int dx); typedef struct _jmpbuf_wrapper { jmp_buf jmpbuf; } jmpbuf_wrapper; /* this can be shared between reading/writing code since they never overlap: */ static jmpbuf_wrapper jmpbuf_struct; int TestPNG(char *file) /* gets called a LOT on the first image: brushes? */ { char header[8]; FILE *fp = fopen(file, "rb"); /* libpng requires ANSI; so do we */ if (!fp) return 0; fread(header, 1, 8, fp); fclose(fp); return png_check_sig(header, 8); } static void png_error_handler (png_structp png_ptr, png_const_charp msg) { jmpbuf_wrapper *jmpbuf_ptr; /* this function, aside from the extra step of retrieving the "error * pointer" (below) and the fact that it exists within the application * rather than within libpng, is essentially identical to libpng's * default error handler. The second point is critical: since both * setjmp() and longjmp() are called from the same code, they are * guaranteed to have compatible notions of how big a jmp_buf is, * regardless of whether _BSD_SOURCE or anything else has (or has not) * been defined. */ fprintf(stderr, "Fatal libpng error !!\n"); fflush(stderr); jmpbuf_ptr = png_get_error_ptr(png_ptr); if (jmpbuf_ptr == NULL) { /* we are completely hosed now */ exit(99); } longjmp(jmpbuf_ptr->jmpbuf, 1); } int readPNG(path, Context) char *path; Sundata * Context; { FILE *fp; png_structp png_ptr; png_infop info_ptr; png_uint_32 width, height; png_colorp palette; png_bytep *row_pointers, png_data, png; int bit_depth, color_type, interlace_type, num_palette, rowbytes; int y, i, j, i1, i2, size, destroy; unsigned char * scan, *out; unsigned char c, *scanp; int * ys; if ((fp = fopen(path, "rb")) == (FILE *)NULL) { return 1; } png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, &jmpbuf_struct, png_error_handler, NULL); if (!png_ptr) { fclose(fp); return 2; } info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { png_destroy_read_struct(&png_ptr, NULL, NULL); fclose(fp); return 2; } if (setjmp(jmpbuf_struct.jmpbuf)) { png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); return 2; } png_init_io(png_ptr, fp); png_read_info(png_ptr, info_ptr); /* read all PNG info up to image data */ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); switch (color_type) { case PNG_COLOR_TYPE_PALETTE: if (!png_get_PLTE(png_ptr, info_ptr, &palette, &num_palette)) { png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); return 2; } break; case PNG_COLOR_TYPE_RGB: if (bit_depth == 16) { png_set_strip_16(png_ptr); } break; case PNG_COLOR_TYPE_GRAY: /* treat grayscale as special colormap */ if (bit_depth == 16) { png_set_strip_16(png_ptr); bit_depth = 8; } break; case PNG_COLOR_TYPE_RGB_ALPHA: if (bit_depth == 16) { png_set_strip_16(png_ptr); } break; case PNG_COLOR_TYPE_GRAY_ALPHA: if (bit_depth == 16) { png_set_strip_16(png_ptr); } break; default: png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); return 2; } Context->xim = XCreateImage(dpy, visual, DefaultDepth(dpy, scr), ZPixmap, 0, NULL, Context->geom.width, Context->geom.height, color_pad, 0); XFlush(dpy); if (!Context->xim) return 4; bytes_per_pixel = (Context->xim->bits_per_pixel/8); size = Context->xim->bytes_per_line * Context->geom.height; Context->xim->data = (char *) salloc(size); if (!Context->xim->data) { XDestroyImage(Context->xim); return 4; } if (bit_depth < 8) png_set_packing(png_ptr); if (interlace_type) /* npasses = */ png_set_interlace_handling(png_ptr); png_read_update_info(png_ptr, info_ptr); rowbytes = png_get_rowbytes(png_ptr, info_ptr); destroy = 0; png_data = (png_bytep) salloc(height*rowbytes); row_pointers = (png_bytep *)salloc(height * sizeof(png_bytep)); scan = (char *)salloc(3*width); ys = (int *)salloc((height+1)*sizeof(int)); if (!png_data || !row_pointers || !scan || !ys) { if (png_data) free(png_data); png_data = NULL; if (row_pointers) free(row_pointers); row_pointers = NULL; if (scan) free(scan); scan = NULL; if (ys) free(ys); ys = NULL; XDestroyImage(Context->xim); png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); return 4; } for (j=0; jzoom.height) / (2*height) - Context->zoom.dy; ys[j] = y; if (y>=0 && ygeom.height) { out = Context->xim->data + y*Context->xim->bytes_per_line; png = png_data + j*rowbytes; scanp = scan; if (color_type == PNG_COLOR_TYPE_PALETTE) { for(i=0; igeom.width, Context->zoom.width, width, Context->zoom.dx); } } /* Close everything */ png_read_end(png_ptr, info_ptr); png_destroy_read_struct(&png_ptr, &info_ptr, NULL); free(png_data); free(row_pointers); free(scan); fclose(fp); /* fill intermediate lines in output, if necessary*/ if (Context->zoom.height>=height) { ys[height] = Context->geom.height; for(y=0; y=0 || ys[y+1]geom.height) { if (ys[y]<0) { out = Context->xim->data + ys[y+1]*Context->xim->bytes_per_line; i1 = 0; i2 = ys[y+1]; } else { out = Context->xim->data + ys[y]*Context->xim->bytes_per_line; i1 = ys[y]+1; i2 = ys[y+1]; if (i2>Context->geom.height) i2=Context->geom.height; } for (i=i1; ixim->data+i*Context->xim->bytes_per_line, out, Context->xim->bytes_per_line); } } } free(ys); return 0; } /* end function ReadPNG() */