From: Walter Fetter Lages Date: Sun, 20 May 2018 06:29:45 +0000 (-0300) Subject: Fix bug with math accelerator. X-Git-Tag: v1.6.1^0 X-Git-Url: http://git.ece.ufrgs.br/?a=commitdiff_plain;h=19c4b46185aa09048f6a2df22e993438c5e9122c;p=aic.git Fix bug with math accelerator. Incluido destrutor virtual na classe AIC_COMM. Alterada a implementacao da serializacao de valores double em AIC_UDP::send_command(). Corrigido bug no processamento dos argumentos dos comandos AIC_USER0, AIC_USER1, AIC_USER2 e AIC_USER3. Incluido o diretorio /usr/src/linux/include, na variavel de ambiente CINCLUDE. Criada a classe Sputtering na biblioteca, para suportar a aplicacao de controle do sputtering. Criadas constantes com os bits de flags do pacote de status da AIC. Processamento de comandos enviados para a AIC alterado para suportar comandos definidos pelo usuario. Modificado o arquivo lib/aicio/pwm.a51 para nao utilizar o acelerador matematico, que estava gerando problemas de reentrancia. Alterado o arquivo doc/Makefile para utilizar os nomes dos arquivos de layout gerados pela nova versao (20060321) do PCB. Criados os programas SputPIDweb, SputPIDDaemon e sputtering. Renomeado o programa SputDaemon para SputWeb. --- diff --git a/Changes b/Changes index 9208a3c..1630c05 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,37 @@ +2008.02.15 Incluido destrutor virtual na classe AIC_COMM. + + Alterada a implementacao da serializacao de valores double + em AIC_UDP::send_command(). + + Corrigido bug no processamento dos argumentos dos comandos + AIC_USER0, AIC_USER1, AIC_USER2 e AIC_USER3. + + Incluido o diretorio /usr/src/linux/include, na variavel de + ambiente CINCLUDE. + +2007.12.05 Criada a classe Sputtering na biblioteca, para suportar a + aplicacao de controle do sputtering. + +2007.11.28 Criadas constantes com os bits de flags do pacote de status + da AIC. + + Processamento de comandos enviados para a AIC alterado para + suportar comandos definidos pelo usuario. + +2007.11.27 Modificado o arquivo lib/aicio/pwm.a51 para nao utilizar o + acelerador matematico, que estava gerando problemas de + reentrancia. + + Alterado o arquivo doc/Makefile para utilizar os nomes dos + arquivos de layout gerados pela nova versao (20060321) do + PCB. + + Criados os programas SputPIDweb, SputPIDDaemon e sputtering. + + Renomeado o programa SputDaemon para SputWeb. + + Criada a versao 1.6.1 + 2006.02.24 Incluidos os esquematicos e o layout do PCB no arquivo de documentacao em pdf. diff --git a/Makefile b/Makefile index 0882dfe..df2d071 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -export CLASSPATH=-classpath /opt/tini/bin/tini.jar:/opt/tini/bin/tiniclasses.jar:/opt/tini/bin/modules.jar:../lib/AIC.jar +export CLASSPATH=-classpath /opt/tini/bin/tini.jar:/opt/tini/bin/tiniclasses.jar:/opt/tini/bin/modules.jar:../lib/AIC.jar:. export DEPPATH=-p /opt/tini/bin/modules.jar export DEPFILE=-x /opt/tini/bin/owapi_dep.txt export DEPNAME=-add CAN @@ -16,8 +16,8 @@ export ASMOPT=-f 1.17 -p 390 -l export ASMMACRO=/opt/tini/native/bin/Linux/macro export ASM=/opt/tini/native/bin/Linux/a390 -export CFLAGS=-O2 -Wall -march=i486 -export CINCLUDE=-I. -I${HOME}/include -I/usr/realtime/include -I/usr/local/include +export CFLAGS=-O2 -Wall +export CINCLUDE=-I. -I${HOME}/include -I/usr/realtime/include -I/usr/local/include -I/usr/src/linux/include export CLIBS=-lpthread -lcanlib -lcutil -lconio -lncurses export CPPFLAGS= @@ -69,7 +69,9 @@ AICPACKAGES= AICOff \ DoorOpen \ DoorWeb \ CmdDaemon \ - SputDaemon + SputWeb \ + SputPIDWeb \ + SputPIDDaemon PACKAGES= lib \ ${AICPACKAGES} \ @@ -80,6 +82,7 @@ PACKAGES= lib \ jointtst \ motortst \ pid \ + sputtering \ doc all: diff --git a/MotorRtTest/motortest.c b/MotorRtTest/motortest.c index f8a7c84..777ae51 100644 --- a/MotorRtTest/motortest.c +++ b/MotorRtTest/motortest.c @@ -51,7 +51,6 @@ void *motortest(void *arg) long Native_startRealtime(void) _JavaNative { volatile long period; - unsigned int count; aic_initialize(BASE,24.0,20e3,2000); @@ -66,8 +65,8 @@ long Native_startRealtime(void) _JavaNative _asm clr a _endasm; - - + + return period; } /* public static native void stopRealtime() */ diff --git a/PID/PID.java b/PID/PID.java index 423d9b0..30e2750 100644 --- a/PID/PID.java +++ b/PID/PID.java @@ -55,7 +55,7 @@ public class PID int us=10000; System.out.print("Starting real-time timer with "+us+" us period..."); -// int period=startRealtime(us); + int period=startRealtime(us); System.out.println("done. Effective period: "+period+" us."); System.out.println("Running PID for "+tfms+" ms..."); @@ -72,7 +72,7 @@ public class PID System.out.println("...done."); System.out.print("Stoping real-time timer..."); -// stopRealtime(); + stopRealtime(); System.out.println("done."); } } diff --git a/PID/pid.c b/PID/pid.c index 4ebb019..b70a822 100644 --- a/PID/pid.c +++ b/PID/pid.c @@ -71,19 +71,18 @@ void *pid(void *arg) // { // rt_wait_period(); - y+=encoder_read()_and_clear(); + y+=encoder_read_and_clear(); -// e=ref-y; - u=0.001*ref; + e=ref-y; -// u+=Kp*(e-e1)+Ki*e+Kd*(e-2*e1+e2); -// if(u < MIN_U) u=MIN_U; -// if(u > MAX_U) u=MAX_U; + u+=Kp*(e-e1)+Ki*e+Kd*(e-2*e1+e2); + if(u < MIN_U) u=MIN_U; + if(u > MAX_U) u=MAX_U; motor_set(u); -// e2=e1; -// e1=e; + e2=e1; + e1=e; // } return NULL; } @@ -100,7 +99,7 @@ long Native_startRealtime(void) _JavaNative count=micro2count(period); start_rt_timer(count); pthread_create(&th,NULL,pid,NULL); -// period=count2micro(count); + period=count2micro(count); pwm_set_duty(500000); // debug aic_on(); diff --git a/PIDDaemon/PIDDaemon.java b/PIDDaemon/PIDDaemon.java index 758a457..743b3c7 100644 --- a/PIDDaemon/PIDDaemon.java +++ b/PIDDaemon/PIDDaemon.java @@ -164,7 +164,7 @@ class GetReference extends PIDDaemon case Host.MOTOR_REF: { if(debug) System.out.print("Reference="+host.reference()+"\t"); - aic.pid.set(host.reference()); + //aic.pid.set(host.reference()); break; } case Host.BRAKE_RELEASE: diff --git a/SputDaemon/Makefile b/SputDaemon/Makefile deleted file mode 100644 index 85d0740..0000000 --- a/SputDaemon/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -DEPNAME:=-add HTTPSERVER - -all: SputDaemon.tini - -SputDaemon.class: SputDaemon.java ../lib/AIC.jar - ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $< - -SputHandler.class: SputHandler.java ../lib/AIC.jar - ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $< - -SputDaemon.tini: SputDaemon.class SputHandler.class ../lib/AIC.jar - java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f SputHandler.class -f SputDaemon.class -o $@ ${LIBPATH} ${NATLIB} ${APIDBPATH} - -clean: - rm -f *.bak *~ *.class - -distclean: clean - rm -f SputDaemon.tini - -upload: SputDaemon.tini - for i in ${AIC}; do echo put $^ | ftp $$i; done \ No newline at end of file diff --git a/SputPIDDaemon/Makefile b/SputPIDDaemon/Makefile new file mode 100644 index 0000000..a78af5f --- /dev/null +++ b/SputPIDDaemon/Makefile @@ -0,0 +1,22 @@ +DEPNAME+=-add HTTPSERVER +NATLIB:=-n sputtering.tlib + +all: SputPIDDaemon.tini + +SputPIDDaemon.class: SputPIDDaemon.java ../lib/AIC.jar + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} SputPIDDaemon.java + +ResetHandler.class: SputPIDDaemon.java ../lib/AIC.jar + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} SputPIDDaemon.java + +SputPIDDaemon.tini: SputPIDDaemon.class ../lib/AIC.jar ResetHandler.class + java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f SputPIDDaemon.class -f ResetHandler.class -f MotorHandler.class -f ShutterHandler.class ${APIDBPATH} -o SputPIDDaemon.tini ${LIBPATH} ${NATLIB} + +clean: + rm -f *.bak *~ *.class *.tlib + +distclean: clean + rm -f SputPIDDaemon.tini + +upload: SputPIDDaemon.tini + for i in ${AIC}; do echo put $^ | ftp $$i; done diff --git a/SputPIDDaemon/SputPIDDaemon.java b/SputPIDDaemon/SputPIDDaemon.java new file mode 100644 index 0000000..548883c --- /dev/null +++ b/SputPIDDaemon/SputPIDDaemon.java @@ -0,0 +1,472 @@ +/****************************************************************************** + + Actuator Interface Card + Sputtering PID Daemon + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +import br.ufrgs.ece.AIC.*; +import com.dalsemi.comm.*; +import com.dalsemi.system.*; +import java.io.*; +import java.lang.*; + +import com.dalsemi.tininet.http.*; +import com.dalsemi.tininet.*; +import java.util.*; + +/** +*/ +public class SputPIDDaemon extends Thread +{ + static final int ST=250*4; + + static Sputtering sputtering=new Sputtering(); + static Host host; + static boolean debug=false; + static boolean udp=false; + static boolean help=false; + + public static void main(String[] args) throws IOException,CanBusException + { + int hostarg=0; + + System.out.println("AIC Sputtering PID Daemon"); + System.out.println("Copyright (C) 2007 Walter Fetter Lages .\n"); + System.out.println(" 2007 Diego Caberlon Santini .\n"); + + switch(args.length) + { + case 0: + { + help=true; + break; + } + case 1: + { + if(args[0].equals("-debug") || + args[0].equals("-UDP")) help=true; + break; + } + case 2: + { + hostarg=1; + if(args[0].equals("-debug")) debug=true; + else help=true; + break; + } + case 3: + { + hostarg=1; + if(args[0].equals("-UDP")) udp=true; + else help=true; + break; + } + case 4: + { + hostarg=2; + if(args[0].equals("-debug")) debug=true; + else help=true; + if(args[1].equals("-UDP")) udp=true; + else help=true; + break; + } + default: + { + help=true; + } + } + + + if(help) + { + System.out.println("Usage:\tjava PIDDaemon.tini [-debug] aic_id"); + System.out.println("\tor"); + System.out.println("\tjava PIDDaemon.tini [-debug] -UDP controller_host status_port"); + System.exit(1); + } + try + { + if(udp) host=new HostUDP(args[hostarg],Integer.parseInt(args[hostarg+1])); + else host=new HostCAN(Integer.parseInt(args[hostarg])); + + SendOutput sendOutput=new SendOutput(); + sendOutput.setPriority(Thread.MAX_PRIORITY); + sendOutput.start(); + + if(debug) System.out.println("sendOutput priority="+sendOutput.getPriority()); + + GetReference getReference=new GetReference(); + getReference.setPriority(Thread.MAX_PRIORITY-1); + getReference.start(); + + if(debug) System.out.println("getReference priority="+getReference.getPriority()); + + HTTPServer httpd=new HTTPServer(80); + httpd.setHTTPRoot("/html"); + httpd.setIndexPage("index.html"); +// httpd.setLogFilename("/log/DoorWeb.txt"); + httpd.setLogging(false); + + while (true) + { + try + { + httpd.serviceRequests(); + } + catch (HTTPServerException e) + { + System.out.println("Error occured while servicing requests: " + e.getMessage()); + } + } + + } + catch (NumberFormatException nfe) + { + System.out.println("Usage: java PIDDaemon.tini [-debug] [-UDP controller_host port] | aicid"); + System.exit(1); + } + } +} + +/** +*/ +class GetReference extends SputPIDDaemon +{ + public static final int SHUTTER=Host.USER0; + + public void run() + { + try + { + for(int k=0;;k++) + { + if(debug) System.out.print("k="+k+"\t"); + + byte[] args=new byte[256]; + int cmd=host.command(args,256); + + if(debug) System.out.println("Command="+ cmd +"\t"); + + switch(cmd) + { + case Host.MOTOR_REF: + { + if(debug) System.out.println("Run PID Ref="+host.reference()+"\t"); + while(sputtering.lock() == 0); + + int tick=30000; + + //ref in rad + float ref=(float)host.reference(); + + float y=sputtering.getOutput(); + + sputtering.setReference(ref); + if(debug) System.out.print("Starting real-time timer with "+tick+" us period..."); + int period= sputtering.pidStartRealtime(tick); + if(debug) System.out.println("done. Effective period: "+period+" us."); + + if(debug) System.out.println("Running sputtering"); + + while((Math.abs(ref - y) >= 0.02)) + { + y=sputtering.getOutput(); + if(debug) System.out.println("\treference="+ref+"\toutput="+y); + } + if(debug) System.out.println("done."); + + if(debug) System.out.print("Stoping real-time timer..."); + sputtering.pidStopRealtime(); + if(debug) System.out.println("done."); + + sputtering.unlock(); + break; + } + case Host.RESET: + { + if(debug) System.out.print("Reset PID..."); + while(sputtering.lock() == 0); + sputtering.findHome(); + if(debug) System.out.println("done."); + sputtering.unlock(); + break; + } + case SHUTTER: + { + int time=0; + for(int i=0;i < 4;i++) time=time | ( ( ( ( (int) args[i+1]) & 0xff) << (i*8) ) ); + if(debug) System.out.println("Shutter Open time="+time+"\t"); + while(sputtering.lock() == 0); + + int tick=10000; + //time in usec + int iref= time/tick; + sputtering.openShutter(iref); + + if(debug) System.out.print("Starting real-time timer with "+tick+" us period..."); + int period= sputtering.shutterStartRealtime(tick); + if(debug) System.out.println("done. Effective period: "+period+" us."); + + + if(debug) System.out.println("Shutter Opened"); + + while(sputtering.getTime() <= iref); + + if(debug) System.out.println("done."); + + if(debug) System.out.print("Stoping real-time timer..."); + sputtering.shutterStopRealtime(); + if(debug) System.out.println("done."); + + sputtering.unlock(); + break; + } + + default: + { + if(debug) System.out.println("Invalid\t"); + break; + } + + } + } + } + catch (Exception all) + { + all.printStackTrace(); + } + } +} + +/** +*/ +class SendOutput extends SputPIDDaemon +{ + public void run() + { + try + { + for(;;) + { + long timeStart=com.dalsemi.system.Clock.getTickCount(); + + int index=0; + if(sputtering.getIndex()!=0) index|=Host.INDEX_ON; + if(sputtering.lock() == 0) index|=Host.BUSY; else sputtering.unlock(); + + double disp=sputtering.getOutput(); + if(debug) System.out.print("Encoder="+disp+" rad\tindex="+index+"\t"); + host.sendStatus(disp,index); + + long timeEnd=com.dalsemi.system.Clock.getTickCount();; + long blockTime=ST-(timeEnd-timeStart); + if(debug) System.out.println("Blocking time="+blockTime); + if(blockTime > 4) Thread.sleep(blockTime); + } + } + catch(Exception all) + { + all.printStackTrace(); + } + } +} + +/** +*/ +class MotorHandler extends SputPIDDaemon implements PostScript +{ + /** + * This method handles all responses to the the HTTP POST + * + * @param data - a Vector of PostElements holding all supplied fields and Values in pairs + * @param out - an Output Stream to the client socket + * @param work - HTTPWorker contains utility functions used to URL encode our response + * @throws IOException if an IO error occurs + */ + public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException + { + while(sputtering.lock() == 0); + // Response page + + // HTML headers + + StringBuffer strBuff=new StringBuffer("\r\n" + + "\r\n" + + "Motor Control\r\n" + + "

Motor Sendo Posicionado... Aguarde

\r\n"); + + PostElement pref = (PostElement)data.elementAt(0); + + // Use HTTPWorker's encode body function to generate the URL encoded response + out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length())); + + // Send out the bytes of our response page + out.write(strBuff.toString().getBytes()); + + // Ensure that our data is written imediatly + out.flush(); + + + int iref = Integer.parseInt(pref.value); + float ref=iref*(float)Math.PI/180; + sputtering.setReference(ref); + + int tfms=10000; + int tick=30000; + if(debug) System.out.print("Starting real-time timer with "+tick+" us period..."); + int period= sputtering.pidStartRealtime(tick); + if(debug) System.out.println("done. Effective period: "+period+" us."); + + if(debug) System.out.println("Running PID for "+tfms+" ms..."); + int t0=sputtering.getTime(); + int t=0; + int t1; + + System.gc(); + + try + { + long blockTime=2000; + if(debug) System.out.println("Blocking time="+blockTime); + if(blockTime > 4) Thread.sleep(blockTime); + } + catch(Exception all) + { + all.printStackTrace(); + } + + try + { + while(t*tick/1000 <= tfms) + { + t1=sputtering.getTime(); + t=t1-t0; + if(debug) System.out.print("t="+t*tick/1000+" ms"); + if(debug) System.out.println("\treference="+ref+"\toutput="+sputtering.getOutput()); + } + } + catch(Exception all) + { + System.gc(); + } + if(debug) System.out.println("...done."); + + if(debug) System.out.print("Stoping real-time timer..."); + sputtering.pidStopRealtime(); + if(debug) System.out.println("done."); + + sputtering.unlock(); + } +} + +/** +*/ +class ResetHandler extends SputPIDDaemon implements PostScript +{ + /** + * This method handles all responses to the the HTTP POST + * + * @param data - a Vector of PostElements holding all supplied fields and Values in pairs + * @param out - an Output Stream to the client socket + * @param work - HTTPWorker contains utility functions used to URL encode our response + * @throws IOException if an IO error occurs + */ + public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException + { + while(sputtering.lock() == 0); + + // HTML headers + StringBuffer strBuff=new StringBuffer("\r\n" + + "\r\n" + + "Reset Control\r\n" + + "

Motor Sendo Resetado... Aguarde

\r\n"); + + // Use HTTPWorker's encode body function to generate the URL encoded response + out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length())); + + // Send out the bytes of our response page + out.write(strBuff.toString().getBytes()); + + // Ensure that our data is written imediatly + out.flush(); + + if(debug) System.out.println("Resetando Motor..."); + sputtering.findHome(); + if(debug) System.out.println("done"); + sputtering.unlock(); + } +} + +/** +*/ +class ShutterHandler extends SputPIDDaemon implements PostScript +{ + /** + * This method handles all responses to the the HTTP POST + * + * @param data - a Vector of PostElements holding all supplied fields and Values in pairs + * @param out - an Output Stream to the client socket + * @param work - HTTPWorker contains utility functions used to URL encode our response + * @throws IOException if an IO error occurs + */ + public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException + { + // HTML headers + while(sputtering.lock() == 0); + StringBuffer strBuff=new StringBuffer("\r\n" + + "\r\n" + + "Shutter Control\r\n" + + "

Shutter Aberto... Aguarde

\r\n"); + + PostElement pref = (PostElement)data.elementAt(0); + + // Use HTTPWorker's encode body function to generate the URL encoded response + out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length())); + + // Send out the bytes of our response page + out.write(strBuff.toString().getBytes()); + + // Ensure that our data is written imediatly + out.flush(); + + int tick=10000; + + int iref = Integer.parseInt(pref.value); + iref=iref*1000/tick; + sputtering.openShutter(iref); + + if(debug) System.out.println("iRef\n"+iref); + + if(debug) System.out.print("Starting real-time timer with "+tick+" us period..."); + int period= sputtering.shutterStartRealtime(tick); + if(debug) System.out.println("done. Effective period: "+period+" us."); + + while(sputtering.getTime() <= iref); + + if(debug) System.out.println("...done."); + + if(debug) System.out.print("Stoping real-time timer..."); + sputtering.shutterStopRealtime(); + if(debug) System.out.println("done."); + sputtering.unlock(); + } +} diff --git a/SputPIDWeb/Makefile b/SputPIDWeb/Makefile new file mode 100644 index 0000000..5e1b71c --- /dev/null +++ b/SputPIDWeb/Makefile @@ -0,0 +1,30 @@ +DEPNAME:=-add HTTPSERVER +NATLIB:=-n sputtering.tlib + +all: SputPIDWeb.tini + +SputPIDWeb.class: SputPIDWeb.java + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $^ + +MotorHandler.class: MotorHandler.java + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $^ + +ResetHandler.class: ResetHandler.java + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $^ + +ShutterHandler.class: ShutterHandler.java + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $^ + + +SputPIDWeb.tini: SputPIDWeb.class MotorHandler.class ResetHandler.class ../lib/AIC.jar ShutterHandler.class + java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f ShutterHandler.class -f ResetHandler.class -f MotorHandler.class -f SputPIDWeb.class -o $@ ${LIBPATH} ${NATLIB} ${APIDBPATH} + +clean: + rm -f *.bak *~ *.class *.tlib + +distclean: clean + rm -f SputPIDWeb.tini + +upload: SputPIDWeb.tini + for i in ${AIC}; do echo put $^ | ftp $$i; done + \ No newline at end of file diff --git a/SputPIDWeb/MotorHandler.java b/SputPIDWeb/MotorHandler.java new file mode 100644 index 0000000..290d5d5 --- /dev/null +++ b/SputPIDWeb/MotorHandler.java @@ -0,0 +1,120 @@ +/****************************************************************************** + + Actuator Interface Card + Door Post Handler + + Copyright (C) 2006 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ +import br.ufrgs.ece.AIC.*; +import java.io.*; +import java.lang.*; +import java.util.*; +import com.dalsemi.tininet.http.*; +import com.dalsemi.system.*; +import com.dalsemi.tininet.*; + +public class MotorHandler extends SputPIDWeb implements PostScript +{ + /** + * This method handles all responses to the the HTTP POST + * + * @param data - a Vector of PostElements holding all supplied fields and Values in pairs + * @param out - an Output Stream to the client socket + * @param work - HTTPWorker contains utility functions used to URL encode our response + * @throws IOException if an IO error occurs + */ + public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException + { + while(sputtering.lock() == 0); + // Response page + + // HTML headers + + StringBuffer strBuff=new StringBuffer("\r\n" + + "\r\n" + + "Motor Control\r\n" + + "

Motor Sendo Posicionado... Aguarde

\r\n"); + + PostElement pref = (PostElement)data.elementAt(0); + + // Use HTTPWorker's encode body function to generate the URL encoded response + out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length())); + + // Send out the bytes of our response page + out.write(strBuff.toString().getBytes()); + + // Ensure that our data is written imediatly + out.flush(); + + + int iref = Integer.parseInt(pref.value); + float ref=iref*(float)Math.PI/180; + sputtering.setReference(ref); + + int tfms=10000; + + int tick=30000; + System.out.print("Starting real-time timer with "+tick+" us period..."); + int period= sputtering.pidStartRealtime(tick); + System.out.println("done. Effective period: "+period+" us."); + + + System.out.println("Running PID for "+tfms+" ms..."); + int t0=sputtering.getTime(); + int t=0; + int t1; + + System.gc(); + + try + { + long blockTime=2000; + System.out.println("Blocking time="+blockTime); + if(blockTime > 4) Thread.sleep(blockTime); + } + catch(Exception all) + { + all.printStackTrace(); + } + + try + { + while(t*tick/1000 <= tfms) + { + t1=sputtering.getTime(); + t=t1-t0; + System.out.print("t="+t*tick/1000+" ms"); + System.out.println("\treference="+ref+"\toutput="+sputtering.getOutput()); + } + } + catch(Exception all) + { + System.gc(); + } + System.out.println("...done."); + + System.out.print("Stoping real-time timer..."); + sputtering.pidStopRealtime(); + System.out.println("done."); + + sputtering.unlock(); + } +} diff --git a/SputPIDWeb/ResetHandler.java b/SputPIDWeb/ResetHandler.java new file mode 100644 index 0000000..5adc018 --- /dev/null +++ b/SputPIDWeb/ResetHandler.java @@ -0,0 +1,68 @@ +/****************************************************************************** + + Actuator Interface Card + Door Post Handler + + Copyright (C) 2006 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ +import br.ufrgs.ece.AIC.*; +import java.io.*; +import java.lang.*; +import java.util.*; +import com.dalsemi.tininet.http.*; +import com.dalsemi.system.*; +import com.dalsemi.tininet.*; + +public class ResetHandler extends SputPIDWeb implements PostScript +{ + /** + * This method handles all responses to the the HTTP POST + * + * @param data - a Vector of PostElements holding all supplied fields and Values in pairs + * @param out - an Output Stream to the client socket + * @param work - HTTPWorker contains utility functions used to URL encode our response + * @throws IOException if an IO error occurs + */ + public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException + { + while(sputtering.lock() == 0); + + // HTML headers + StringBuffer strBuff=new StringBuffer("\r\n" + + "\r\n" + + "Reset Control\r\n" + + "

Motor Sendo Resetado... Aguarde

\r\n"); + + // Use HTTPWorker's encode body function to generate the URL encoded response + out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length())); + + // Send out the bytes of our response page + out.write(strBuff.toString().getBytes()); + + // Ensure that our data is written imediatly + out.flush(); + + System.out.println("Resetando Motor..."); + sputtering.findHome(); + System.out.println("done"); + sputtering.unlock(); + } +} diff --git a/SputPIDWeb/ShutterHandler.java b/SputPIDWeb/ShutterHandler.java new file mode 100644 index 0000000..096a109 --- /dev/null +++ b/SputPIDWeb/ShutterHandler.java @@ -0,0 +1,83 @@ +/****************************************************************************** + + Actuator Interface Card + Door Post Handler + + Copyright (C) 2006 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ +import br.ufrgs.ece.AIC.*; +import java.io.*; +import java.lang.*; +import java.util.*; +import com.dalsemi.tininet.http.*; +import com.dalsemi.system.*; +import com.dalsemi.tininet.*; + +public class ShutterHandler extends SputPIDWeb implements PostScript +{ + /** + * This method handles all responses to the the HTTP POST + * + * @param data - a Vector of PostElements holding all supplied fields and Values in pairs + * @param out - an Output Stream to the client socket + * @param work - HTTPWorker contains utility functions used to URL encode our response + * @throws IOException if an IO error occurs + */ + public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException + { + while(sputtering.lock() == 0); + StringBuffer strBuff=new StringBuffer("\r\n" + + "\r\n" + + "Shutter Control\r\n" + + "

Schutter Aberto... Aguarde

\r\n"); + + PostElement pref = (PostElement)data.elementAt(0); + + // Use HTTPWorker's encode body function to generate the URL encoded response + out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length())); + + // Send out the bytes of our response page + out.write(strBuff.toString().getBytes()); + + // Ensure that our data is written imediatly + out.flush(); + + int us=10000; + int iref = Integer.parseInt(pref.value); + System.out.println("iref\n"+iref); + + iref=iref*1000/us; + sputtering.openShutter(iref); + + System.out.print("Starting real-time timer with "+us+" us period..."); + int period= sputtering.shutterStartRealtime(us); + System.out.println("done. Effective period: "+period+" us."); + + while(sputtering.getTime() <= iref); + + System.out.println("...done."); + + System.out.print("Stoping real-time timer..."); + sputtering.shutterStopRealtime(); + System.out.println("done."); + sputtering.unlock(); + } +} diff --git a/SputPIDWeb/SputPIDWeb.java b/SputPIDWeb/SputPIDWeb.java new file mode 100644 index 0000000..49284c2 --- /dev/null +++ b/SputPIDWeb/SputPIDWeb.java @@ -0,0 +1,61 @@ +/****************************************************************************** + + Actuator Interface Card + Sputtering PID Web Server + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +import br.ufrgs.ece.AIC.*; +import com.dalsemi.tininet.http.HTTPServer; +import com.dalsemi.tininet.http.HTTPServerException; + +class SputPIDWeb +{ + static Sputtering sputtering; + + public static void main(String[] args) + { + System.out.println("Sputtering PID Web Server"); + System.out.println("Copyright (C) 2007 Walter Fetter Lages "); + System.out.println(" 2007 Diego Caberlon Santini .\n"); + + HTTPServer httpd=new HTTPServer(80); + httpd.setHTTPRoot("/html"); + httpd.setIndexPage("index.html"); + httpd.setLogging(false); + + System.out.println("Sputtering web server running..."); + + sputtering=new Sputtering(); + + while (true) + { + try + { + httpd.serviceRequests(); + } + catch (HTTPServerException e) + { + System.out.println("Error occured while serving requests: " + e.getMessage()); + } + } + } +} diff --git a/SputPIDWeb/frame.html b/SputPIDWeb/frame.html new file mode 100644 index 0000000..1552b42 --- /dev/null +++ b/SputPIDWeb/frame.html @@ -0,0 +1,14 @@ + + + + + + + + +> + +<body> +</body> + + \ No newline at end of file diff --git a/SputPIDWeb/index.html b/SputPIDWeb/index.html new file mode 100644 index 0000000..608138c --- /dev/null +++ b/SputPIDWeb/index.html @@ -0,0 +1,15 @@ + + + +Motor Control + + + + + +> + +<body> +</body> + + \ No newline at end of file diff --git a/SputPIDWeb/motor.html b/SputPIDWeb/motor.html new file mode 100644 index 0000000..21ff174 --- /dev/null +++ b/SputPIDWeb/motor.html @@ -0,0 +1,31 @@ + + + +Motor Control + + +
+ +

Motor Control

+
+
+ 0o degree +
+ 60o degree +
+ 120o degree +
+ 180o degree +
+ 240o degree +
+ 300o degree +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/SputPIDWeb/reset.html b/SputPIDWeb/reset.html new file mode 100644 index 0000000..042b378 --- /dev/null +++ b/SputPIDWeb/reset.html @@ -0,0 +1,18 @@ + + + +Motor Reset + + +
+ +

Motor Reset

+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/SputPIDWeb/shutter.html b/SputPIDWeb/shutter.html new file mode 100644 index 0000000..c4c21dc --- /dev/null +++ b/SputPIDWeb/shutter.html @@ -0,0 +1,20 @@ + + + +Shutter Open + + +
+ +

Shutter Open

+
+
+ + +
+ +
+
+ + \ No newline at end of file diff --git a/SputWeb/Makefile b/SputWeb/Makefile new file mode 100644 index 0000000..5dd9754 --- /dev/null +++ b/SputWeb/Makefile @@ -0,0 +1,21 @@ +DEPNAME:=-add HTTPSERVER + +all: SputWeb.tini + +SputWeb.class: SputWeb.java ../lib/AIC.jar + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $< + +SputHandler.class: SputHandler.java ../lib/AIC.jar + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $< + +SputWeb.tini: SputWeb.class SputHandler.class ../lib/AIC.jar + java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f SputHandler.class -f SputWeb.class -o $@ ${LIBPATH} ${NATLIB} ${APIDBPATH} + +clean: + rm -f *.bak *~ *.class + +distclean: clean + rm -f SputWeb.tini + +upload: SputWeb.tini + for i in ${AIC}; do echo put $^ | ftp $$i; done \ No newline at end of file diff --git a/SputDaemon/SputHandler.java b/SputWeb/SputHandler.java similarity index 99% rename from SputDaemon/SputHandler.java rename to SputWeb/SputHandler.java index 76a0cd8..f98ca3a 100644 --- a/SputDaemon/SputHandler.java +++ b/SputWeb/SputHandler.java @@ -43,7 +43,6 @@ public class SputHandler implements PostScript * @param work - HTTPWorker contains utility functions used to URL encode our response * @throws IOException if an IO error occurs */ - public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException { if(first) diff --git a/SputDaemon/SputDaemon.java b/SputWeb/SputWeb.java similarity index 94% rename from SputDaemon/SputDaemon.java rename to SputWeb/SputWeb.java index c7eeec8..b63203f 100644 --- a/SputDaemon/SputDaemon.java +++ b/SputWeb/SputWeb.java @@ -1,7 +1,7 @@ /****************************************************************************** Actuator Interface Card - Sputtering Daemon + Sputtering Web Daemon Copyright (C) 2005 Walter Fetter Lages This program is free software; you can redistribute it and/or modify @@ -26,13 +26,13 @@ import com.dalsemi.tininet.http.HTTPServer; import com.dalsemi.tininet.http.HTTPServerException; -class SputDaemon +class SputWeb { static Object lock; public static void main(String[] args) { - System.out.println("Sputtering Daemon"); + System.out.println("Sputtering Web Daemon"); System.out.println("Copyright (C) 2005 Walter Fetter Lages .\n"); HTTPServer httpd=new HTTPServer(80); diff --git a/SputDaemon/index.html b/SputWeb/index.html similarity index 100% rename from SputDaemon/index.html rename to SputWeb/index.html diff --git a/aicd/aicd.cpp b/aicd/aicd.cpp index bc8386a..8f44819 100644 --- a/aicd/aicd.cpp +++ b/aicd/aicd.cpp @@ -78,7 +78,13 @@ void *send_status(void *arg) while(*ptr->run) for(int i=-48;i < 48;i++) { + +#ifdef REAL_TIME rt_task_wait_period(); +#else + usleep(ptr->ST*1e6) +#endif + /* if(ptr->controller->getstatus() & AIC_HOST::MOTOR_ON) { int index; @@ -189,6 +195,7 @@ int main(int argc, char *argv[]) case AIC_MOTOR_OFF: { run=0; + aic.motor.off(); break; } case AIC_MOTOR_ACT: diff --git a/aicd/runinfo b/aicd/runinfo deleted file mode 100644 index 2b978b1..0000000 --- a/aicd/runinfo +++ /dev/null @@ -1 +0,0 @@ -aicd:lxrt:./aicd;popall: diff --git a/doc/Makefile b/doc/Makefile index 17fee7c..80b1848 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -10,12 +10,13 @@ aic.ps: aic.dvi aic.pdf: aic.dvi dvipdf aic -aic.dvi: aic.tex aic.aux aic.bbl \ +aic.dvi: aic.tex \ aictini.eps aicpower.eps aicconn.eps \ - aic_componentpin.eps \ - aic_soldersilk.eps aic_componentsilk.eps \ - aic_group1.eps aic_group2.eps aic_group3.eps aic_group4.eps \ - aic_soldermask.eps aic_componentmask.eps + aic_assembly.eps \ + aic_frontsilk.eps aic_front.eps aic_frontmask.eps \ + aic_back.eps aic_backmask.eps \ + aic_fab.eps \ + aic.aux aic.bbl latex aic latex aic @@ -43,7 +44,7 @@ aicconn.ps: aicconn.sch aicconn.eps: aicconn.ps eps2eps aicconn.ps aicconn.eps -pcb: aic.net aicpcb.ps aicpcb.pdf #aic.pcb +pcb: aic.net #aicpcb.ps aicpcb.pdf #aic.pcb aic.net: $(SCHEMS) gnetlist -g PCB -o aic.net $(SCHEMS) @@ -51,55 +52,44 @@ aic.net: $(SCHEMS) #aic.pcb: $(SCHEMS) # gnetlist -g PCBboard -o aic.pcb $(SCHEMS) -aic_componentpin.ps: aic_group4.ps aic_componentsilk.ps - MergePCBPS aic_group4.ps aic_componentsilk.ps > aic_componentpin.ps - -aic_componentpin.eps: aic_componentpin.ps - eps2eps aic_componentpin.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_componentpin.eps +aic_assembly.eps: aic_assembly.ps + eps2eps aic_assembly.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_assembly.eps -aic_soldersilk.eps: aic_soldersilk.ps - eps2eps aic_soldersilk.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_soldersilk.eps +aic_frontsilk.eps: aic_frontsilk.ps + eps2eps aic_frontsilk.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_frontsilk.eps -aic_componentsilk.eps: aic_componentsilk.ps - eps2eps aic_componentsilk.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_componentsilk.eps +aic_front.eps: aic_front.ps + eps2eps aic_front.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_front.eps -aic_group1.eps: aic_group1.ps - eps2eps aic_group1.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group1.eps - -aic_group2.eps: aic_group2.ps - eps2eps aic_group2.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group2.eps - -aic_group3.eps: aic_group3.ps - eps2eps aic_group3.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group3.eps +aic_frontmask.eps: aic_frontmask.ps + eps2eps aic_frontmask.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_frontmask.eps -aic_group4.eps: aic_group4.ps - eps2eps aic_group4.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group4.eps +aic_back.eps: aic_back.ps + eps2eps aic_back.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_back.eps -aic_soldermask.eps: aic_soldermask.ps - eps2eps aic_soldermask.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_soldermask.eps +aic_backmask.eps: aic_backmask.ps + eps2eps aic_backmask.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_backmask.eps -aic_componentmask.eps: aic_componentmask.ps - eps2eps aic_componentmask.ps aictmp.eps - pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_componentmask.eps +aic_fab.eps: aic_fab.ps + eps2eps aic_fab.ps aictmp.eps + pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_fab.eps -aicpcb.ps: aic_componentpin.ps aic_soldersilk.ps aic_componentsilk.ps \ - aic_group1.ps aic_group2.ps aic_group3.ps aic_group4.ps \ - aic_soldermask.ps aic_componentmask.ps - cat aic_componentpin.ps aic_soldersilk.ps aic_componentsilk.ps \ - aic_group1.ps aic_group2.ps aic_group3.ps aic_group4.ps \ - aic_soldermask.ps aic_componentmask.ps > aictmp.ps - ps2ps aictmp.ps aicpcb.ps +#aicpcb.ps: aic_assembly.ps aic_frontsilk.ps aic_front.ps aic_frontmask.eps \ +# aic_back.ps aic_backmask.ps \ +# aic_fab.ps +# cat aic_assembly.ps aic_frontsilk.ps aic_front.ps aic_frontmask.eps \ +# aic_back.ps aic_backmask.ps \ +# aic_fab.ps > aictmp.ps +# ps2ps aictmp.ps aicpcb.ps -aicpcb.pdf: aicpcb.ps - ps2pdf aicpcb.ps +#aicpcb.pdf: aicpcb.ps +# ps2pdf aicpcb.ps bom: aic.bom aic.bpp aic.xrf @@ -118,7 +108,7 @@ html/index.html: Doxyfile aic.dox doxygen clean: - rm -f *.aux *.log *~ *.bak *.bbl *.blg *.old *.ps *.eps *.dvi + rm -f *.aux *.log *~ *.bak *.bbl *.blg *.old aicconn.ps aicpower.ps aictini.ps *.eps *.dvi distclean: clean rm -f aic*.pdf aic.net aic.bom aic.bpp aic.xrf diff --git a/doc/aic.tex b/doc/aic.tex index a0ee6af..6be2e5d 100644 --- a/doc/aic.tex +++ b/doc/aic.tex @@ -838,14 +838,12 @@ eventualmente cada uma na sua pr \section{Printed Circuit Board} -\includegraphics{aic_componentpin.eps} -%\includegraphics{aic_soldersilk.eps} -\includegraphics{aic_componentsilk.eps} -\includegraphics{aic_group1.eps} -\includegraphics{aic_group2.eps} -\includegraphics{aic_group3.eps} -\includegraphics{aic_group4.eps} -\includegraphics{aic_soldermask.eps} -\includegraphics{aic_componentmask.eps} +\includegraphics{aic_assembly.eps} +\includegraphics{aic_frontsilk.eps} +\includegraphics{aic_front.eps} +\includegraphics{aic_frontmask.eps} +\includegraphics{aic_back.eps} +\includegraphics{aic_backmask.eps} +\includegraphics{aic_fab.eps} \end{document} diff --git a/doc/aic_assembly.ps b/doc/aic_assembly.ps new file mode 100644 index 0000000..8f6fe35 --- /dev/null +++ b/doc/aic_assembly.ps @@ -0,0 +1,5474 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), assembly drawing +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 416 moveto 458 416 lineto 458 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,841740) +% PCBOFFSET(214900,579300), PCBSCALE(0.50000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 579300 translate +0.500 0.500 scale +842140 0 translate +90 rotate +0 842140 translate +1 -1 scale +400 400 translate +/Color {0.800 0.800 0.800 mysetrgbcolor} def Color +-400 -400 710400 841740 200 Alignment +147500 140000 145000 137500 1000 L +147500 165000 147500 140000 1000 L +145000 167500 147500 165000 1000 L +145000 250000 145000 167500 1000 L +140000 150000 140000 95000 2500 L +142500 152500 140000 150000 2500 L +142500 162500 142500 152500 2500 L +140000 165000 142500 162500 2500 L +140000 205000 140000 165000 2500 L +76500 257000 76500 280500 1000 L +57500 239500 70000 252000 2500 L +675000 398500 45000 398500 100 L +55000 269500 49500 275000 1000 L +130000 290500 130500 291000 2500 L +130000 273000 130000 290500 2500 L +582500 285000 582500 292500 1000 L +327500 305000 327500 342500 1000 L +282500 330000 282500 342500 1000 L +530000 292500 530000 327500 1000 L +570000 322500 570000 245000 1000 L +210000 325000 210000 322500 1000 L +192500 342500 210000 325000 1000 L +520000 337500 520000 260000 1000 L +402500 250000 402500 310000 1000 L +222500 310000 222500 342500 1000 L +105000 270000 105000 330000 1000 L +420000 162500 415000 167500 1000 L +415000 167500 415000 272500 1000 L +327500 352500 327500 342500 1000 L +262500 342500 262500 352500 1000 L +450000 182500 450000 162500 1000 L +107500 160000 107500 147500 1000 L +122500 172500 122500 161000 1000 L +252500 342500 252500 287500 1000 L +122500 161000 122000 160500 1000 L +375000 360000 375000 210000 1000 L +375000 210000 380000 205000 1000 L +297500 352500 297500 372500 2500 L +355000 222500 355000 385000 1000 L +355000 220000 355000 222500 1000 L +370000 205000 355000 220000 1000 L +350000 220000 350000 205000 1000 L +380000 235000 385000 240000 1000 L +325000 167500 325000 160000 1000 L +320000 172500 325000 167500 1000 L +320000 205000 320000 172500 1000 L +285000 80000 285000 57500 1000 L +275000 85000 275000 57500 1000 L +305000 135000 305000 85000 1000 L +300000 140000 305000 135000 1000 L +300000 147500 300000 140000 1000 L +300000 155000 300000 147500 1000 L +305000 160000 300000 155000 1000 L +305000 162500 305000 160000 1000 L +305000 170000 305000 162500 1000 L +310000 175000 305000 170000 1000 L +310000 205000 310000 175000 1000 L +300000 162500 300000 177500 1000 L +485000 177500 485000 152500 1000 L +462500 217500 465000 215000 1000 L +462500 282500 462500 217500 1000 L +465000 215000 465000 152500 1000 L +480000 265000 480000 162500 1000 L +290000 235000 290000 265000 1000 L +430000 197500 430000 165000 1000 L +180000 170000 180000 205000 1000 L +255000 152500 255000 167500 1000 L +190000 175000 190000 205000 1000 L +255000 167500 250000 172500 1000 L +240000 155000 240000 107500 1000 L +242500 157500 240000 155000 1000 L +245000 160000 242500 157500 1000 L +245000 182500 245000 160000 1000 L +230000 205000 230000 182500 1000 L +255000 90000 255000 57500 1000 L +227500 95000 227500 90000 1000 L +240000 107500 227500 95000 1000 L +340000 282500 340000 235000 1000 L +155000 255000 155000 282500 1000 L +160000 250000 155000 255000 1000 L +160000 205000 160000 250000 1000 L +250000 205000 250000 255000 1000 L +325000 160000 330000 155000 1000 L +330000 155000 330000 80000 1000 L +257500 262500 257500 277500 1000 L +250000 255000 257500 262500 1000 L +210000 205000 210000 230000 1000 L +215000 212500 215000 152500 1000 L +390000 225000 390000 205000 1000 L +200000 250000 195000 255000 1000 L +300000 205000 292500 212500 1000 L +170000 217500 170000 205000 1000 L +292500 212500 292500 222500 1000 L +235000 152500 235000 187500 1000 L +325000 230000 330000 235000 1000 L +325000 187500 325000 230000 1000 L +150000 205000 150000 187500 1000 L +315000 230000 320000 235000 1000 L +315000 192500 315000 230000 1000 L +225000 152500 225000 195000 1000 L +220000 195000 225000 200000 1000 L +310000 235000 310000 217500 1000 L +225000 200000 225000 217500 1000 L +220000 162500 220000 195000 1000 L +300000 235000 300000 212500 1000 L +200000 205000 200000 250000 1000 L +195000 275000 202500 282500 1000 L +195000 255000 195000 275000 1000 L +240000 215000 240000 205000 1000 L +232500 222500 240000 215000 1000 L +232500 232500 232500 222500 1000 L +230000 235000 232500 232500 1000 L +230000 265000 230000 235000 1000 L +230000 227500 230000 205000 1000 L +220000 237500 230000 227500 1000 L +220000 265000 220000 237500 1000 L +240000 245000 240000 227500 2500 L +540000 350000 550000 360000 4500 L +395000 317500 395000 360000 4500 L +475000 330000 475000 317500 4500 L +632500 307500 622500 307500 4500 L +622500 307500 622500 342500 4500 L +622500 307500 622500 230000 4500 L +642500 97500 652500 107500 2500 L +632500 257500 622500 257500 4500 L +592500 210000 592500 212500 4500 L +592500 212500 612500 232500 4500 L +612500 232500 612500 267500 4500 L +592500 222500 592500 245000 4500 L +470000 220000 470000 277500 4500 L +470000 277500 470000 310000 4500 L +470000 310000 462500 317500 4500 L +462500 317500 462500 342500 4500 L +562500 187500 562500 220000 4500 L +592500 187500 592500 210000 4500 L +642500 47500 642500 57500 2500 L +642500 67500 642500 77500 2500 L +642500 87500 642500 97500 2500 L +622500 230000 622500 102500 4000 L +602500 210000 620000 210000 4000 L +562500 187500 562500 135000 2500 L +562500 135000 567500 130000 2500 L +567500 130000 567500 107500 2500 L +597500 57500 597500 47500 2500 L +537500 22500 537500 47500 2500 L +487500 27500 487500 47500 2500 L +517500 27500 517500 40000 2500 L +577500 27500 577500 40000 2500 L +587500 57500 587500 50000 2500 L +587500 50000 577500 40000 2500 L +647500 20000 647500 42500 1000 L +647500 42500 652500 47500 1000 L +622500 47500 632500 57500 1000 L +622500 35000 622500 47500 1000 L +597500 65000 597500 87500 1000 L +622500 87500 632500 77500 1000 L +632500 97500 615000 97500 1000 L +615000 97500 615000 130000 1000 L +295000 130000 295000 57500 1000 L +615000 62500 620000 52500 1000 L +652500 87500 647500 82500 1000 L +647500 82500 637500 82500 1000 L +637500 82500 637500 72500 1000 L +637500 72500 615000 72500 1000 L +615000 72500 615000 62500 1000 L +407500 47500 407500 57500 2500 L +115000 232500 115000 112500 1000 L +85000 360000 85000 355000 1000 L +85000 355000 95000 345000 1000 L +95000 345000 95000 252500 1000 L +282500 342500 282500 372500 1000 L +642500 107500 637500 112500 1000 L +637500 112500 637500 172500 1000 L +262500 172500 262500 282500 1000 L +262500 282500 277500 297500 1000 L +550000 292500 550000 332500 4500 L +550000 332500 560000 342500 4500 L +210000 162500 210000 67500 1000 L +205000 152500 205000 82500 1000 L +200000 162500 200000 62500 1000 L +195000 152500 195000 57500 1000 L +242500 360000 242500 372500 1000 L +192500 372500 192500 360000 1000 L +232500 372500 232500 352500 2500 L +252500 385000 252500 372500 1000 L +182500 372500 182500 385000 1000 L +105000 162500 107500 160000 1000 L +70000 385000 77500 392500 2500 L +110000 310000 110000 367500 1000 L +280000 235000 280000 215000 1000 L +280000 215000 290000 205000 1000 L +220000 282500 220000 265000 1000 L +202500 290000 202500 282500 1000 L +122500 322500 122500 172500 1000 L +115000 330000 122500 322500 1000 L +115000 245000 115000 232500 1000 L +95000 252500 95000 245000 1000 L +272500 347500 272500 352500 2500 L +557500 237500 557500 222500 1000 L +395000 227500 402500 235000 1000 L +395000 152500 395000 227500 1000 L +405000 215000 405000 200000 1000 L +400000 162500 400000 205000 1000 L +400000 205000 400000 225000 1000 L +405000 195000 405000 200000 1000 L +405000 152500 405000 195000 1000 L +410000 180000 410000 195000 1000 L +410000 162500 410000 180000 1000 L +410000 205000 410000 195000 1000 L +470000 162500 470000 142500 1000 L +457500 122500 447500 122500 1000 L +457500 130000 457500 122500 1000 L +470000 142500 457500 130000 1000 L +467500 135000 467500 122500 1000 L +475000 142500 467500 135000 1000 L +475000 152500 475000 142500 1000 L +490000 147500 477500 135000 1000 L +490000 162500 490000 147500 1000 L +477500 135000 477500 57500 1000 L +495000 145000 492500 142500 1000 L +467500 65000 467500 62500 1000 L +475000 72500 467500 65000 1000 L +475000 92500 475000 72500 1000 L +472500 95000 475000 92500 1000 L +472500 107500 472500 95000 1000 L +490000 107500 487500 107500 1000 L +492500 110000 490000 107500 1000 L +495000 152500 495000 145000 1000 L +492500 142500 492500 110000 1000 L +517500 95000 512500 90000 1000 L +517500 107500 517500 95000 1000 L +507500 117500 517500 107500 1000 L +512500 87500 512500 80000 1000 L +512500 90000 512500 87500 1000 L +557500 95000 557500 92500 1000 L +552500 100000 557500 95000 1000 L +552500 107500 552500 100000 1000 L +547500 112500 552500 107500 1000 L +547500 142500 547500 112500 1000 L +610000 120000 610000 142500 1000 L +607500 117500 610000 120000 1000 L +430000 205000 430000 235000 1000 L +557500 92500 557500 82500 1000 L +507500 107500 507500 87500 1000 L +537500 122500 537500 107500 1000 L +447500 107500 447500 122500 1000 L +417500 87500 417500 107500 1000 L +417500 135000 417500 117500 1000 L +555000 125000 555000 135000 1000 L +557500 122500 555000 125000 1000 L +447500 62500 447500 30000 1000 L +527500 52500 527500 22500 1000 L +537500 62500 527500 52500 1000 L +502500 42500 502500 15000 1000 L +507500 47500 502500 42500 1000 L +507500 57500 507500 47500 1000 L +467500 15000 467500 22500 1000 L +557500 15000 557500 22500 1000 L +615000 50000 615000 15000 1000 L +607500 57500 615000 50000 1000 L +335000 62500 335000 52500 1000 L +355000 62500 355000 130000 1000 L +70000 257500 70000 252500 2500 L +72500 260000 70000 257500 2500 L +72500 267500 72500 260000 2500 L +675000 5000 675000 398500 100 L +45000 398500 45000 5000 100 L +49500 275000 49500 330000 1000 L +557500 222500 545000 210000 1000 L +272500 342500 272500 347500 2500 L +222500 342500 222500 372500 1000 L +212500 352500 212500 342500 2500 L +330000 372500 327500 372500 2500 L +337500 365000 330000 372500 2500 L +337500 295000 337500 365000 2500 L +332500 290000 337500 295000 2500 L +360000 290000 360000 317500 2500 L +360000 260000 360000 290000 2500 L +272500 372500 272500 392500 2500 L +212500 372500 212500 392500 2500 L +127500 392500 127500 372500 2500 L +202500 305000 202500 322500 2500 L +390000 260000 390000 290000 2500 L +390000 235000 390000 260000 2500 L +332500 260000 332500 290000 2500 L +550000 225000 535000 210000 2500 L +550000 245000 550000 225000 2500 L +390000 80000 390000 35000 2500 L +397500 87500 390000 80000 2500 L +390000 35000 397500 27500 2500 L +447500 85000 447500 95000 2500 L +435000 80000 427500 87500 2500 L +435000 30000 435000 80000 2500 L +432500 27500 435000 30000 2500 L +427500 27500 432500 27500 2500 L +315000 100000 315000 57500 2500 L +525000 152500 525000 100000 2500 L +427500 87500 427500 100000 2500 L +130000 275000 130000 255000 2500 L +110000 310000 115000 305000 1000 L +130000 255000 140000 245000 2500 L +140000 245000 140000 205000 2500 L +280000 205000 277500 205000 2500 L +270000 212500 270000 245000 2500 L +277500 205000 270000 212500 2500 L +240000 245000 240000 265000 2500 L +540000 327500 540000 350000 4500 L +220000 205000 220000 225000 2500 L +327500 372500 327500 392500 2500 L +322500 317500 322500 260000 2500 L +245000 27500 242500 27500 2500 L +175000 152500 175000 95000 2500 L +76500 280500 76000 281000 1000 L +237500 32500 237500 95000 2500 L +242500 27500 237500 32500 2500 L +492500 92500 497500 97500 2500 L +492500 80000 492500 92500 2500 L +497500 75000 492500 80000 2500 L +500000 142500 500000 162500 2500 L +497500 140000 500000 142500 2500 L +497500 117500 497500 140000 2500 L +497500 95000 497500 117500 2500 L +497500 57500 497500 75000 2500 L +582500 92500 577500 87500 2500 L +582500 102500 582500 92500 2500 L +582500 112500 582500 102500 2500 L +587500 117500 582500 112500 2500 L +592500 112500 592500 72500 2500 L +597500 117500 592500 112500 2500 L +537500 82500 537500 72500 2500 L +487500 87500 487500 72500 2500 L +402500 112500 407500 117500 2500 L +402500 72500 402500 112500 2500 L +592500 245000 592500 360000 4500 L +405000 342500 405000 360000 4500 L +475000 370000 475000 342500 4500 L +490000 330000 490000 342500 4500 L +560000 360000 560000 342500 4500 L +550000 245000 550000 292500 4500 L +602500 245000 602500 260000 4500 L +540000 292500 540000 307500 4500 L +540000 260000 540000 245000 4500 L +602500 292500 602500 307500 4500 L +602500 260000 602500 277500 4500 L +602500 277500 612500 287500 4500 L +255000 152500 255000 120000 1000 L +265000 120000 265000 57500 1000 L +250000 130000 250000 35000 1000 L +250000 35000 250000 32500 1000 L +250000 32500 255000 27500 1000 L +265000 152500 265000 130000 1000 L +260000 162500 260000 105000 1000 L +245000 105000 245000 57500 1000 L +270000 32500 265000 27500 1000 L +270000 162500 270000 32500 1000 L +275000 152500 275000 95000 1000 L +275000 95000 280000 90000 1000 L +280000 90000 280000 32500 1000 L +280000 32500 275000 27500 1000 L +280000 95000 290000 85000 1000 L +290000 85000 290000 32500 1000 L +290000 32500 285000 27500 1000 L +280000 162500 280000 95000 1000 L +285000 152500 285000 120000 1000 L +300000 120000 300000 32500 1000 L +300000 32500 295000 27500 1000 L +310000 125000 310000 32500 1000 L +310000 32500 305000 27500 1000 L +290000 162500 290000 125000 1000 L +322500 35000 315000 27500 1000 L +295000 152500 295000 137500 1000 L +322500 137500 322500 35000 1000 L +140000 255000 145000 250000 1000 L +90500 249000 90500 305500 1000 L +81500 240000 90500 249000 1000 L +140000 265000 140000 255000 1000 L +150000 265000 150000 255000 1000 L +150000 255000 155000 250000 1000 L +155000 250000 155000 125000 1000 L +160000 265000 160000 255000 1000 L +160000 255000 165000 250000 1000 L +165000 250000 165000 170000 1000 L +165000 170000 162500 167500 1000 L +162500 167500 160000 165000 1000 L +160000 165000 160000 100000 1000 L +170000 265000 170000 255000 1000 L +170000 255000 175000 250000 1000 L +175000 250000 175000 160000 1000 L +175000 160000 170000 155000 1000 L +170000 155000 170000 142500 1000 L +180000 265000 180000 255000 1000 L +180000 255000 185000 250000 1000 L +185000 250000 185000 160000 1000 L +185000 160000 180000 155000 1000 L +180000 155000 180000 132500 1000 L +190000 265000 190000 255000 1000 L +190000 255000 195000 250000 1000 L +195000 250000 195000 160000 1000 L +195000 160000 192500 157500 1000 L +192500 157500 190000 155000 1000 L +190000 155000 190000 105000 1000 L +200000 265000 200000 255000 1000 L +270000 255000 265000 250000 1000 L +265000 250000 265000 182500 1000 L +265000 182500 270000 177500 1000 L +270000 177500 270000 172500 1000 L +270000 172500 265000 167500 1000 L +265000 167500 265000 152500 1000 L +322500 245000 322500 260000 2500 L +350000 250000 350000 235000 1000 L +257500 165000 257500 200000 1000 L +257500 200000 257500 250000 1000 L +210000 250000 210000 265000 1000 L +260000 162500 257500 165000 1000 L +360000 235000 360000 250000 1000 L +360000 250000 360000 252500 1000 L +370000 290000 370000 272500 1000 L +370000 272500 365000 267500 1000 L +365000 267500 365000 220000 1000 L +385000 240000 385000 277500 1000 L +45000 5000 675000 5000 100 L +70000 315000 70000 300000 2500 L +70000 300000 72500 297500 2500 L +72500 297500 72500 287500 2500 L +72500 287500 70000 285000 2500 L +70000 285000 70000 270000 2500 L +70000 270000 72500 267500 2500 L +70000 315000 70000 385000 2500 L +105000 162500 96500 171000 1000 L +96500 171000 82500 171000 1000 L +78000 11500 79500 11500 400 L +77500 11000 78000 11500 400 L +77500 8000 77500 11000 400 L +77500 8000 78000 7500 400 L +78000 7500 79500 7500 400 L +80701 8000 80701 11000 400 L +80701 8000 81201 7500 400 L +81201 7500 82201 7500 400 L +82201 7500 82701 8000 400 L +82701 8000 82701 11000 400 L +82201 11500 82701 11000 400 L +81201 11500 82201 11500 400 L +80701 11000 81201 11500 400 L +83902 7500 83902 11500 400 L +83902 7500 85402 9000 400 L +85402 9000 86902 7500 400 L +86902 7500 86902 11500 400 L +88603 7500 88603 11500 400 L +88103 7500 90103 7500 400 L +90103 7500 90603 8000 400 L +90603 8000 90603 9000 400 L +90103 9500 90603 9000 400 L +88603 9500 90103 9500 400 L +91804 8000 91804 11000 400 L +91804 8000 92304 7500 400 L +92304 7500 93304 7500 400 L +93304 7500 93804 8000 400 L +93804 8000 93804 11000 400 L +93304 11500 93804 11000 400 L +92304 11500 93304 11500 400 L +91804 11000 92304 11500 400 L +95005 7500 95005 11500 400 L +95005 7500 95005 8000 400 L +95005 8000 97505 10500 400 L +97505 7500 97505 11500 400 L +98706 9500 100206 9500 400 L +98706 11500 100706 11500 400 L +98706 7500 98706 11500 400 L +98706 7500 100706 7500 400 L +101907 7500 101907 11500 400 L +101907 7500 101907 8000 400 L +101907 8000 104407 10500 400 L +104407 7500 104407 11500 400 L +105608 7500 107608 7500 400 L +106608 7500 106608 11500 400 L +77500 15500 77500 19000 400 L +77500 15500 78000 15000 400 L +78000 15000 79500 15000 400 L +79500 15000 80000 15500 400 L +80000 15500 80000 19000 400 L +77500 17000 80000 17000 400 L +81201 15000 82201 15000 400 L +81701 15000 81701 19000 400 L +81201 19000 82201 19000 400 L +83902 19000 85402 19000 400 L +83402 18500 83902 19000 400 L +83402 15500 83402 18500 400 L +83402 15500 83902 15000 400 L +83902 15000 85402 15000 400 L +86603 17000 88603 17000 400 L +90304 19000 91304 19000 400 L +90804 15000 90804 19000 400 L +89804 16000 90804 15000 400 L +92505 19000 93005 19000 400 L +94206 15500 94706 15000 400 L +94706 15000 95706 15000 400 L +95706 15000 96206 15500 400 L +96206 15500 96206 18500 400 L +95706 19000 96206 18500 400 L +94706 19000 95706 19000 400 L +94206 18500 94706 19000 400 L +94706 17000 96206 17000 400 L +97407 19000 97907 19000 400 L +99108 18500 99608 19000 400 L +99108 15500 99108 18500 400 L +99108 15500 99608 15000 400 L +99608 15000 100608 15000 400 L +100608 15000 101108 15500 400 L +101108 15500 101108 18500 400 L +100608 19000 101108 18500 400 L +99608 19000 100608 19000 400 L +99108 18000 101108 16000 400 L +77500 26000 78000 26500 400 L +77500 23000 78000 22500 400 L +77500 23000 77500 26000 400 L +79701 24500 81201 24500 400 L +79201 25000 79701 24500 400 L +79201 25000 79201 26000 400 L +79201 26000 79701 26500 400 L +79701 26500 81201 26500 400 L +82402 22500 82902 23000 400 L +82902 23000 82902 26000 400 L +82402 26500 82902 26000 400 L +85903 23000 86403 22500 400 L +86403 22500 87903 22500 400 L +87903 22500 88403 23000 400 L +88403 23000 88403 24000 400 L +85903 26500 88403 24000 400 L +85903 26500 88403 26500 400 L +89604 26000 90104 26500 400 L +89604 23000 89604 26000 400 L +89604 23000 90104 22500 400 L +90104 22500 91104 22500 400 L +91104 22500 91604 23000 400 L +91604 23000 91604 26000 400 L +91104 26500 91604 26000 400 L +90104 26500 91104 26500 400 L +89604 25500 91604 23500 400 L +92805 26000 93305 26500 400 L +92805 23000 92805 26000 400 L +92805 23000 93305 22500 400 L +93305 22500 94305 22500 400 L +94305 22500 94805 23000 400 L +94805 23000 94805 26000 400 L +94305 26500 94805 26000 400 L +93305 26500 94305 26500 400 L +92805 25500 94805 23500 400 L +96006 23000 96506 22500 400 L +96506 22500 97506 22500 400 L +97506 22500 98006 23000 400 L +98006 23000 98006 26000 400 L +97506 26500 98006 26000 400 L +96506 26500 97506 26500 400 L +96006 26000 96506 26500 400 L +96506 24500 98006 24500 400 L +101007 22500 101007 26500 400 L +101007 26500 102507 25000 400 L +102507 25000 104007 26500 400 L +104007 22500 104007 26500 400 L +106708 24500 107208 25000 400 L +105708 24500 106708 24500 400 L +105208 25000 105708 24500 400 L +105208 25000 105208 26000 400 L +105208 26000 105708 26500 400 L +107208 24500 107208 26000 400 L +107208 26000 107708 26500 400 L +105708 26500 106708 26500 400 L +106708 26500 107208 26000 400 L +108909 22500 108909 26000 400 L +108909 26000 109409 26500 400 L +110910 22500 110910 26000 400 L +110910 26000 111410 26500 400 L +110410 24000 111410 24000 400 L +112911 26500 114411 26500 400 L +112411 26000 112911 26500 400 L +112411 25000 112411 26000 400 L +112411 25000 112911 24500 400 L +112911 24500 113911 24500 400 L +113911 24500 114411 25000 400 L +112411 25500 114411 25500 400 L +114411 25000 114411 25500 400 L +116112 25000 116112 26500 400 L +116112 25000 116612 24500 400 L +116612 24500 117612 24500 400 L +115612 24500 116112 25000 400 L +120613 22500 120613 26500 400 L +120613 22500 122613 22500 400 L +120613 24500 122113 24500 400 L +124314 26500 125814 26500 400 L +123814 26000 124314 26500 400 L +123814 25000 123814 26000 400 L +123814 25000 124314 24500 400 L +124314 24500 125314 24500 400 L +125314 24500 125814 25000 400 L +123814 25500 125814 25500 400 L +125814 25000 125814 25500 400 L +127515 22500 127515 26000 400 L +127515 26000 128015 26500 400 L +127015 24000 128015 24000 400 L +129516 22500 129516 26000 400 L +129516 26000 130016 26500 400 L +129016 24000 130016 24000 400 L +131517 26500 133017 26500 400 L +131017 26000 131517 26500 400 L +131017 25000 131017 26000 400 L +131017 25000 131517 24500 400 L +131517 24500 132517 24500 400 L +132517 24500 133017 25000 400 L +131017 25500 133017 25500 400 L +133017 25000 133017 25500 400 L +134718 25000 134718 26500 400 L +134718 25000 135218 24500 400 L +135218 24500 136218 24500 400 L +134218 24500 134718 25000 400 L +139219 22500 139219 26500 400 L +139219 26500 141219 26500 400 L +143920 24500 144420 25000 400 L +142920 24500 143920 24500 400 L +142420 25000 142920 24500 400 L +142420 25000 142420 26000 400 L +142420 26000 142920 26500 400 L +144420 24500 144420 26000 400 L +144420 26000 144920 26500 400 L +142920 26500 143920 26500 400 L +143920 26500 144420 26000 400 L +147621 24500 148121 25000 400 L +146621 24500 147621 24500 400 L +146121 25000 146621 24500 400 L +146121 25000 146121 26000 400 L +146121 26000 146621 26500 400 L +146621 26500 147621 26500 400 L +147621 26500 148121 26000 400 L +146121 27500 146621 28000 400 L +146621 28000 147621 28000 400 L +147621 28000 148121 27500 400 L +148121 24500 148121 27500 400 L +149822 26500 151322 26500 400 L +149322 26000 149822 26500 400 L +149322 25000 149322 26000 400 L +149322 25000 149822 24500 400 L +149822 24500 150822 24500 400 L +150822 24500 151322 25000 400 L +149322 25500 151322 25500 400 L +151322 25000 151322 25500 400 L +153023 26500 154523 26500 400 L +154523 26500 155023 26000 400 L +154523 25500 155023 26000 400 L +153023 25500 154523 25500 400 L +152523 25000 153023 25500 400 L +152523 25000 153023 24500 400 L +153023 24500 154523 24500 400 L +154523 24500 155023 25000 400 L +152523 26000 153023 26500 400 L +102500 30000 102500 34000 400 L +102500 30000 104500 30000 400 L +102500 32000 104000 32000 400 L +106201 34000 107701 34000 400 L +105701 33500 106201 34000 400 L +105701 32500 105701 33500 400 L +105701 32500 106201 32000 400 L +106201 32000 107201 32000 400 L +107201 32000 107701 32500 400 L +105701 33000 107701 33000 400 L +107701 32500 107701 33000 400 L +109402 32500 109402 34000 400 L +109402 32500 109902 32000 400 L +109902 32000 110902 32000 400 L +108902 32000 109402 32500 400 L +112603 32500 112603 34000 400 L +112603 32500 113103 32000 400 L +113103 32000 113603 32000 400 L +113603 32000 114103 32500 400 L +114103 32500 114103 34000 400 L +112103 32000 112603 32500 400 L +116804 32000 117304 32500 400 L +115804 32000 116804 32000 400 L +115304 32500 115804 32000 400 L +115304 32500 115304 33500 400 L +115304 33500 115804 34000 400 L +117304 32000 117304 33500 400 L +117304 33500 117804 34000 400 L +115804 34000 116804 34000 400 L +116804 34000 117304 33500 400 L +119505 32500 119505 34000 400 L +119505 32500 120005 32000 400 L +120005 32000 120505 32000 400 L +120505 32000 121005 32500 400 L +121005 32500 121005 34000 400 L +119005 32000 119505 32500 400 L +124206 30000 124206 34000 400 L +123706 34000 124206 33500 400 L +122706 34000 123706 34000 400 L +122206 33500 122706 34000 400 L +122206 32500 122206 33500 400 L +122206 32500 122706 32000 400 L +122706 32000 123706 32000 400 L +123706 32000 124206 32500 400 L +125407 32500 125407 33500 400 L +125407 32500 125907 32000 400 L +125907 32000 126907 32000 400 L +126907 32000 127407 32500 400 L +127407 32500 127407 33500 400 L +126907 34000 127407 33500 400 L +125907 34000 126907 34000 400 L +125407 33500 125907 34000 400 L +130908 30000 130908 34000 400 L +130408 30000 132408 30000 400 L +132408 30000 132908 30500 400 L +132908 30500 132908 31500 400 L +132408 32000 132908 31500 400 L +130908 32000 132408 32000 400 L +134609 34000 136109 34000 400 L +134109 33500 134609 34000 400 L +134109 32500 134109 33500 400 L +134109 32500 134609 32000 400 L +134609 32000 135609 32000 400 L +135609 32000 136109 32500 400 L +134109 33000 136109 33000 400 L +136109 32500 136109 33000 400 L +137810 34000 139310 34000 400 L +139310 34000 139810 33500 400 L +139310 33000 139810 33500 400 L +137810 33000 139310 33000 400 L +137310 32500 137810 33000 400 L +137310 32500 137810 32000 400 L +137810 32000 139310 32000 400 L +139310 32000 139810 32500 400 L +137310 33500 137810 34000 400 L +141511 34000 143011 34000 400 L +143011 34000 143511 33500 400 L +143011 33000 143511 33500 400 L +141511 33000 143011 33000 400 L +141011 32500 141511 33000 400 L +141011 32500 141511 32000 400 L +141511 32000 143011 32000 400 L +143011 32000 143511 32500 400 L +141011 33500 141511 34000 400 L +144712 32000 144712 33500 400 L +144712 33500 145212 34000 400 L +145212 34000 146212 34000 400 L +146212 34000 146712 33500 400 L +146712 32000 146712 33500 400 L +148413 30000 148413 33500 400 L +148413 33500 148913 34000 400 L +147913 31500 148913 31500 400 L +150414 30000 150414 33500 400 L +150414 33500 150914 34000 400 L +149914 31500 150914 31500 400 L +151915 32500 151915 33500 400 L +151915 32500 152415 32000 400 L +152415 32000 153415 32000 400 L +153415 32000 153915 32500 400 L +153915 32500 153915 33500 400 L +153415 34000 153915 33500 400 L +152415 34000 153415 34000 400 L +151915 33500 152415 34000 400 L +335000 62500 6000 3500 PVSQ +335000 22500 6000 3500 PVR +297500 342500 6000 3500 PVSQ +297500 372500 6000 3500 PVR +415000 360000 8000 4200 PVSQ +405000 360000 8000 4200 PVR +395000 360000 8000 4200 PVR +447500 122500 6000 3500 PVSQ +447500 82500 6000 3500 PVR +397500 117500 6000 3500 PVSQ +407500 117500 6000 3500 PVR +417500 117500 6000 3500 PVR +427500 117500 6000 3500 PVR +427500 87500 6000 3500 PVR +417500 87500 6000 3500 PVR +407500 87500 6000 3500 PVR +397500 87500 6000 3500 PVR +557500 122500 6000 3500 PVSQ +557500 82500 6000 3500 PVR +537500 62500 6000 3500 PVSQ +537500 22500 6000 3500 PVR +487500 57500 6000 3500 PVSQ +497500 57500 6000 3500 PVR +507500 57500 6000 3500 PVR +517500 57500 6000 3500 PVR +517500 27500 6000 3500 PVR +507500 27500 6000 3500 PVR +497500 27500 6000 3500 PVR +487500 27500 6000 3500 PVR +467500 62500 6000 3500 PVSQ +467500 22500 6000 3500 PVR +467500 122500 6000 3500 PVSQ +467500 82500 6000 3500 PVR +537500 122500 6000 3500 PVSQ +537500 82500 6000 3500 PVR +487500 117500 6000 3500 PVSQ +497500 117500 6000 3500 PVR +507500 117500 6000 3500 PVR +517500 117500 6000 3500 PVR +517500 87500 6000 3500 PVR +507500 87500 6000 3500 PVR +497500 87500 6000 3500 PVR +487500 87500 6000 3500 PVR +397500 57500 6000 3500 PVSQ +407500 57500 6000 3500 PVR +417500 57500 6000 3500 PVR +427500 57500 6000 3500 PVR +427500 27500 6000 3500 PVR +417500 27500 6000 3500 PVR +407500 27500 6000 3500 PVR +397500 27500 6000 3500 PVR +557500 62500 6000 3500 PVSQ +557500 22500 6000 3500 PVR +157500 342500 6000 3500 PVSQ +157500 372500 6000 3500 PVR +57500 239500 6000 3500 PVSQ +57500 249500 6000 3500 PVR +530000 245000 8000 4200 PVSQ +540000 245000 8000 4200 PVR +550000 245000 8000 4200 PVR +245000 57500 6000 3500 PVSQ +255000 57500 6000 3500 PVR +265000 57500 6000 3500 PVR +275000 57500 6000 3500 PVR +285000 57500 6000 3500 PVR +295000 57500 6000 3500 PVR +305000 57500 6000 3500 PVR +315000 57500 6000 3500 PVR +315000 27500 6000 3500 PVR +305000 27500 6000 3500 PVR +295000 27500 6000 3500 PVR +285000 27500 6000 3500 PVR +275000 27500 6000 3500 PVR +265000 27500 6000 3500 PVR +255000 27500 6000 3500 PVR +245000 27500 6000 3500 PVR +317500 372500 6000 3500 PVSQ +327500 372500 6000 3500 PVR +420000 205000 7000 4200 PVSQ +430000 205000 7000 4200 PVR +420000 215000 7000 4200 PVR +430000 215000 7000 4200 PVR +420000 225000 7000 4200 PVR +430000 225000 7000 4200 PVR +420000 235000 7000 4200 PVR +430000 235000 7000 4200 PVR +140000 265000 6000 3500 PVSQ +150000 265000 6000 3500 PVR +160000 265000 6000 3500 PVR +170000 265000 6000 3500 PVR +180000 265000 6000 3500 PVR +190000 265000 6000 3500 PVR +200000 265000 6000 3500 PVR +210000 265000 6000 3500 PVR +220000 265000 6000 3500 PVR +230000 265000 6000 3500 PVR +240000 265000 6000 3500 PVR +250000 265000 6000 3500 PVR +250000 205000 6000 3500 PVR +240000 205000 6000 3500 PVR +230000 205000 6000 3500 PVR +220000 205000 6000 3500 PVR +210000 205000 6000 3500 PVR +200000 205000 6000 3500 PVR +190000 205000 6000 3500 PVR +180000 205000 6000 3500 PVR +170000 205000 6000 3500 PVR +160000 205000 6000 3500 PVR +150000 205000 6000 3500 PVR +140000 205000 6000 3500 PVR +280000 235000 6000 3500 PVSQ +290000 235000 6000 3500 PVR +300000 235000 6000 3500 PVR +310000 235000 6000 3500 PVR +320000 235000 6000 3500 PVR +330000 235000 6000 3500 PVR +340000 235000 6000 3500 PVR +350000 235000 6000 3500 PVR +360000 235000 6000 3500 PVR +370000 235000 6000 3500 PVR +380000 235000 6000 3500 PVR +390000 235000 6000 3500 PVR +390000 205000 6000 3500 PVR +380000 205000 6000 3500 PVR +370000 205000 6000 3500 PVR +360000 205000 6000 3500 PVR +350000 205000 6000 3500 PVR +340000 205000 6000 3500 PVR +330000 205000 6000 3500 PVR +320000 205000 6000 3500 PVR +310000 205000 6000 3500 PVR +300000 205000 6000 3500 PVR +290000 205000 6000 3500 PVR +280000 205000 6000 3500 PVR +77500 124000 12000 10000 PVR +77500 218000 12000 10000 PVR +82500 151000 7000 4200 PVR +72500 156000 7000 4200 PVR +82500 161000 7000 4200 PVR +72500 166000 7000 4200 PVR +82500 171000 7000 4200 PVR +72500 176000 7000 4200 PVR +82500 181000 7000 4200 PVR +72500 186000 7000 4200 PVR +82500 191000 7000 4200 PVSQ +81500 239500 6000 3500 PVSQ +81500 249500 6000 3500 PVR +495000 220000 7000 4200 PVSQ +470000 220000 7000 4200 PVR +85000 330000 6000 3500 PVSQ +85000 360000 6000 3500 PVR +582500 245000 8000 4200 PVSQ +592500 245000 8000 4200 PVR +602500 245000 8000 4200 PVR +535000 210000 6000 3500 PVSQ +545000 210000 6000 3500 PVR +355000 62500 6000 3500 PVSQ +355000 22500 6000 3500 PVR +105000 330000 7000 4200 PVSQ +115000 330000 7000 4200 PVR +172500 320000 6000 3500 PVSQ +182500 320000 6000 3500 PVR +192500 320000 6000 3500 PVR +202500 320000 6000 3500 PVR +202500 290000 6000 3500 PVR +192500 290000 6000 3500 PVR +182500 290000 6000 3500 PVR +172500 290000 6000 3500 PVR +495000 277500 7000 4200 PVSQ +470000 277500 7000 4200 PVR +570000 360000 8000 4200 PVSQ +560000 360000 8000 4200 PVR +550000 360000 8000 4200 PVR +280000 257500 6000 3500 PVSQ +280000 297500 6000 3500 PVR +116000 280000 6000 3500 PVSQ +76000 280000 6000 3500 PVR +490000 370000 6000 3500 PVSQ +475000 370000 6000 3500 PVR +530000 292500 8000 4200 PVSQ +540000 292500 8000 4200 PVR +550000 292500 8000 4200 PVR +652500 47500 6000 3500 PVSQ +652500 57500 6000 3500 PVR +652500 67500 6000 3500 PVR +652500 77500 6000 3500 PVR +652500 87500 6000 3500 PVR +652500 97500 6000 3500 PVR +652500 107500 6000 3500 PVR +652500 117500 6000 3500 PVR +652500 127500 6000 3500 PVR +652500 137500 6000 3500 PVR +652500 147500 6000 3500 PVR +652500 157500 6000 3500 PVR +652500 167500 6000 3500 PVR +652500 177500 6000 3500 PVR +652500 187500 6000 3500 PVR +652500 197500 6000 3500 PVR +652500 207500 6000 3500 PVR +652500 217500 6000 3500 PVR +652500 227500 6000 3500 PVR +652500 237500 6000 3500 PVR +652500 247500 6000 3500 PVR +652500 257500 6000 3500 PVR +652500 267500 6000 3500 PVR +652500 277500 6000 3500 PVR +652500 287500 6000 3500 PVR +652500 297500 6000 3500 PVR +652500 307500 6000 3500 PVR +652500 317500 6000 3500 PVR +652500 327500 6000 3500 PVR +652500 337500 6000 3500 PVR +652500 347500 6000 3500 PVR +652500 357500 6000 3500 PVR +642500 47500 6000 3500 PVR +642500 57500 6000 3500 PVR +642500 67500 6000 3500 PVR +642500 77500 6000 3500 PVR +642500 87500 6000 3500 PVR +642500 97500 6000 3500 PVR +642500 107500 6000 3500 PVR +642500 117500 6000 3500 PVR +642500 127500 6000 3500 PVR +642500 137500 6000 3500 PVR +642500 147500 6000 3500 PVR +642500 157500 6000 3500 PVR +642500 167500 6000 3500 PVR +642500 177500 6000 3500 PVR +642500 187500 6000 3500 PVR +642500 197500 6000 3500 PVR +642500 207500 6000 3500 PVR +642500 217500 6000 3500 PVR +642500 227500 6000 3500 PVR +642500 237500 6000 3500 PVR +642500 247500 6000 3500 PVR +642500 257500 6000 3500 PVR +642500 267500 6000 3500 PVR +642500 277500 6000 3500 PVR +642500 287500 6000 3500 PVR +642500 297500 6000 3500 PVR +642500 307500 6000 3500 PVR +642500 317500 6000 3500 PVR +642500 327500 6000 3500 PVR +642500 337500 6000 3500 PVR +642500 347500 6000 3500 PVR +642500 357500 6000 3500 PVR +632500 47500 6000 3500 PVR +632500 57500 6000 3500 PVR +632500 67500 6000 3500 PVR +632500 77500 6000 3500 PVR +632500 87500 6000 3500 PVR +632500 97500 6000 3500 PVR +632500 107500 6000 3500 PVR +632500 117500 6000 3500 PVR +632500 127500 6000 3500 PVR +632500 137500 6000 3500 PVR +632500 147500 6000 3500 PVR +632500 157500 6000 3500 PVR +632500 167500 6000 3500 PVR +632500 177500 6000 3500 PVR +632500 187500 6000 3500 PVR +632500 197500 6000 3500 PVR +632500 207500 6000 3500 PVR +632500 217500 6000 3500 PVR +632500 227500 6000 3500 PVR +632500 237500 6000 3500 PVR +632500 247500 6000 3500 PVR +632500 257500 6000 3500 PVR +632500 267500 6000 3500 PVR +632500 277500 6000 3500 PVR +632500 287500 6000 3500 PVR +632500 297500 6000 3500 PVR +632500 307500 6000 3500 PVR +632500 317500 6000 3500 PVR +632500 327500 6000 3500 PVR +632500 337500 6000 3500 PVR +632500 347500 6000 3500 PVR +632500 357500 6000 3500 PVR +662500 377500 12000 8000 PVR +662500 27500 12000 8000 PVR +332500 260000 6000 3500 PVSQ +322500 260000 6000 3500 PVR +447500 62500 6000 3500 PVSQ +447500 22500 6000 3500 PVR +300000 297500 6000 3500 PVSQ +300000 257500 6000 3500 PVR +475000 330000 6000 3500 PVSQ +490000 330000 6000 3500 PVR +55000 269500 7000 4200 PVSQ +55000 287200 7000 4200 PVR +64800 264600 7000 5200 PVR +64800 292200 7000 5200 PVR +582500 292500 8000 4200 PVSQ +592500 292500 8000 4200 PVR +602500 292500 8000 4200 PVR +562500 187500 6000 3500 PVSQ +592500 187500 6000 3500 PVR +577500 117500 6000 3500 PVSQ +587500 117500 6000 3500 PVR +597500 117500 6000 3500 PVR +607500 117500 6000 3500 PVR +607500 87500 6000 3500 PVR +597500 87500 6000 3500 PVR +587500 87500 6000 3500 PVR +577500 87500 6000 3500 PVR +582500 210000 8000 4200 PVSQ +592500 210000 8000 4200 PVR +602500 210000 8000 4200 PVR +577500 57500 6000 3500 PVSQ +587500 57500 6000 3500 PVR +597500 57500 6000 3500 PVR +607500 57500 6000 3500 PVR +607500 27500 6000 3500 PVR +597500 27500 6000 3500 PVR +587500 27500 6000 3500 PVR +577500 27500 6000 3500 PVR +322500 290000 6000 3500 PVSQ +332500 290000 6000 3500 PVR +87500 57500 6000 3500 PVSQ +97500 62500 6000 3500 PVR +87500 67500 6000 3500 PVR +97500 72500 6000 3500 PVR +87500 77500 6000 3500 PVR +97500 82500 6000 3500 PVR +87500 87500 6000 3500 PVR +97500 92500 6000 3500 PVR +62500 52500 14800 12800 PVR +62500 97600 14800 12800 PVR +74500 44500 8000 6000 PVR +74500 105600 8000 6000 PVR +360000 290000 6000 3500 PVSQ +370000 290000 6000 3500 PVR +380000 290000 6000 3500 PVR +390000 290000 6000 3500 PVR +390000 260000 6000 3500 PVR +380000 260000 6000 3500 PVR +370000 260000 6000 3500 PVR +360000 260000 6000 3500 PVR +317500 342500 6000 3500 PVSQ +327500 342500 6000 3500 PVR +137500 342500 6000 3500 PVSQ +127500 342500 6000 3500 PVR +540000 162500 6000 3500 PVSQ +535000 152500 6000 3500 PVR +530000 162500 6000 3500 PVR +525000 152500 6000 3500 PVR +520000 162500 6000 3500 PVR +515000 152500 6000 3500 PVR +510000 162500 6000 3500 PVR +505000 152500 6000 3500 PVR +500000 162500 6000 3500 PVR +495000 152500 6000 3500 PVR +490000 162500 6000 3500 PVR +485000 152500 6000 3500 PVR +480000 162500 6000 3500 PVR +475000 152500 6000 3500 PVR +470000 162500 6000 3500 PVR +465000 152500 6000 3500 PVR +460000 162500 6000 3500 PVR +455000 152500 6000 3500 PVR +450000 162500 6000 3500 PVR +445000 152500 6000 3500 PVR +440000 162500 6000 3500 PVR +435000 152500 6000 3500 PVR +430000 162500 6000 3500 PVR +425000 152500 6000 3500 PVR +420000 162500 6000 3500 PVR +415000 152500 6000 3500 PVR +410000 162500 6000 3500 PVR +405000 152500 6000 3500 PVR +400000 162500 6000 3500 PVR +395000 152500 6000 3500 PVR +390000 162500 6000 3500 PVR +385000 152500 6000 3500 PVR +380000 162500 6000 3500 PVR +375000 152500 6000 3500 PVR +370000 162500 6000 3500 PVR +365000 152500 6000 3500 PVR +340000 162500 6000 3500 PVR +335000 152500 6000 3500 PVR +330000 162500 6000 3500 PVR +325000 152500 6000 3500 PVR +320000 162500 6000 3500 PVR +315000 152500 6000 3500 PVR +310000 162500 6000 3500 PVR +305000 152500 6000 3500 PVR +300000 162500 6000 3500 PVR +295000 152500 6000 3500 PVR +290000 162500 6000 3500 PVR +285000 152500 6000 3500 PVR +280000 162500 6000 3500 PVR +275000 152500 6000 3500 PVR +270000 162500 6000 3500 PVR +265000 152500 6000 3500 PVR +260000 162500 6000 3500 PVR +255000 152500 6000 3500 PVR +250000 162500 6000 3500 PVR +245000 152500 6000 3500 PVR +240000 162500 6000 3500 PVR +235000 152500 6000 3500 PVR +230000 162500 6000 3500 PVR +225000 152500 6000 3500 PVR +220000 162500 6000 3500 PVR +215000 152500 6000 3500 PVR +210000 162500 6000 3500 PVR +205000 152500 6000 3500 PVR +200000 162500 6000 3500 PVR +195000 152500 6000 3500 PVR +190000 162500 6000 3500 PVR +185000 152500 6000 3500 PVR +180000 162500 6000 3500 PVR +175000 152500 6000 3500 PVR +170000 162500 6000 3500 PVR +165000 152500 6000 3500 PVR +573000 157500 8000 6000 PVR +352500 157500 12000 10000 PVR +132500 157500 12000 10000 PVR +137500 372500 6000 3500 PVSQ +127500 372500 6000 3500 PVR +172500 372500 6000 3500 PVSQ +182500 372500 6000 3500 PVR +192500 372500 6000 3500 PVR +202500 372500 6000 3500 PVR +212500 372500 6000 3500 PVR +222500 372500 6000 3500 PVR +232500 372500 6000 3500 PVR +242500 372500 6000 3500 PVR +252500 372500 6000 3500 PVR +262500 372500 6000 3500 PVR +272500 372500 6000 3500 PVR +282500 372500 6000 3500 PVR +282500 342500 6000 3500 PVR +272500 342500 6000 3500 PVR +262500 342500 6000 3500 PVR +252500 342500 6000 3500 PVR +242500 342500 6000 3500 PVR +232500 342500 6000 3500 PVR +222500 342500 6000 3500 PVR +212500 342500 6000 3500 PVR +202500 342500 6000 3500 PVR +192500 342500 6000 3500 PVR +182500 342500 6000 3500 PVR +172500 342500 6000 3500 PVR +115500 305500 6000 3500 PVSQ +75500 305500 6000 3500 PVR +57500 27500 12000 8000 PVR +57500 376200 12000 8000 PVR +662500 27500 12000 8000 PVR +662500 376200 12000 8000 PVR +475000 342500 6000 3500 PVR +490000 342500 6000 3500 PVR +560000 342500 6000 3500 PVR +602500 260000 6000 3500 PVR +540000 260000 6000 3500 PVR +540000 307500 6000 3500 PVR +602500 307500 6000 3500 PVR +592500 277500 6000 3500 PVR +612500 287500 6000 3500 PVR +540000 327500 6000 3500 PVR +395000 317500 6000 3500 PVR +475000 317500 6000 3500 PVR +622500 342500 6000 3500 PVR +612500 267500 6000 3500 PVR +592500 222500 6000 3500 PVR +462500 342500 6000 3500 PVR +562500 220000 6000 3500 PVR +622500 102500 6000 3500 PVR +647500 102500 6000 3500 PVR +567500 107500 6000 3500 PVR +597500 47500 6000 3500 PVR +537500 47500 6000 3500 PVR +487500 47500 6000 3500 PVR +517500 40000 6000 3500 PVR +577500 40000 6000 3500 PVR +402500 72500 6000 3500 PVR +487500 72500 6000 3500 PVR +537500 72500 6000 3500 PVR +592500 72500 6000 3500 PVR +497500 95000 6000 3500 PVR +140000 95000 6000 3500 PVR +175000 95000 6000 3500 PVR +237500 95000 6000 3500 PVR +322500 317500 6000 3500 PVR +327500 392500 6000 3500 PVR +240000 245000 6000 3500 PVR +270000 245000 6000 3500 PVR +140000 245000 6000 3500 PVR +130000 280000 6000 3500 PVR +130000 290000 6000 3500 PVR +252500 287500 4000 2000 PVR +427500 100000 6000 3500 PVR +525000 100000 6000 3500 PVR +315000 100000 6000 3500 PVR +447500 95000 6000 3500 PVR +202500 305000 6000 3500 PVR +127500 392500 6000 3500 PVR +212500 392500 6000 3500 PVR +272500 392500 6000 3500 PVR +360000 317500 6000 3500 PVR +77500 392500 6000 3500 PVR +487500 107500 4000 2000 PVR +620000 52500 4000 2000 PVR +622500 87500 4000 2000 PVR +537500 107500 4000 2000 PVR +637500 172500 4000 2000 PVR +262500 172500 4000 2000 PVR +597500 65000 4000 2000 PVR +407500 47500 6000 3500 PVR +205000 82500 4000 2000 PVR +402500 235000 4000 2000 PVR +295000 130000 4000 2000 PVR +335000 52500 4000 2000 PVR +527500 22500 4000 2000 PVR +615000 15000 4000 2000 PVR +477500 57500 4000 2000 PVR +622500 35000 4000 2000 PVR +647500 20000 4000 2000 PVR +557500 15000 4000 2000 PVR +502500 15000 4000 2000 PVR +547500 142500 4000 2000 PVR +610000 142500 4000 2000 PVR +615000 130000 4000 2000 PVR +555000 135000 4000 2000 PVR +195000 57500 4000 2000 PVR +242500 360000 4000 2000 PVR +210000 67500 4000 2000 PVR +115000 112500 4000 2000 PVR +507500 107500 4000 2000 PVR +417500 135000 4000 2000 PVR +200000 62500 4000 2000 PVR +512500 80000 4000 2000 PVR +557500 237500 4000 2000 PVR +447500 30000 4000 2000 PVR +355000 130000 4000 2000 PVR +272500 352500 6000 3500 PVR +95000 245000 4000 2000 PVR +115000 245000 4000 2000 PVR +582500 285000 4000 2000 PVR +110000 367500 4000 2000 PVR +182500 385000 4000 2000 PVR +252500 385000 4000 2000 PVR +212500 352500 6000 3500 PVR +232500 352500 6000 3500 PVR +192500 360000 4000 2000 PVR +417500 107500 4000 2000 PVR +447500 107500 4000 2000 PVR +472500 107500 4000 2000 PVR +467500 15000 4000 2000 PVR +255000 120000 4000 2000 PVR +265000 120000 4000 2000 PVR +265000 130000 4000 2000 PVR +250000 130000 4000 2000 PVR +260000 105000 4000 2000 PVR +245000 105000 4000 2000 PVR +285000 120000 4000 2000 PVR +300000 120000 4000 2000 PVR +290000 125000 4000 2000 PVR +310000 125000 4000 2000 PVR +295000 137500 4000 2000 PVR +322500 137500 4000 2000 PVR +145000 137500 4000 2000 PVR +155000 125000 4000 2000 PVR +160000 100000 4000 2000 PVR +300000 100000 4000 2000 PVR +170000 142500 4000 2000 PVR +280000 142500 4000 2000 PVR +180000 132500 4000 2000 PVR +275000 130000 4000 2000 PVR +190000 105000 4000 2000 PVR +270000 105000 4000 2000 PVR +200000 255000 4000 2000 PVR +270000 255000 4000 2000 PVR +322500 245000 6000 3500 PVR +350000 250000 4000 2000 PVR +202500 282500 4000 2000 PVR +220000 282500 4000 2000 PVR +257500 250000 4000 2000 PVR +210000 250000 4000 2000 PVR +257500 197500 4000 2000 PVR +220000 225000 6000 3500 PVR +240000 225000 6000 3500 PVR +300000 212500 4000 2000 PVR +215000 212500 4000 2000 PVR +310000 217500 4000 2000 PVR +225000 217500 4000 2000 PVR +225000 195000 4000 2000 PVR +315000 192500 4000 2000 PVR +150000 187500 4000 2000 PVR +325000 187500 4000 2000 PVR +235000 187500 4000 2000 PVR +360000 252500 4000 2000 PVR +292500 222500 4000 2000 PVR +170000 217500 4000 2000 PVR +210000 230000 4000 2000 PVR +390000 225000 4000 2000 PVR +257500 277500 4000 2000 PVR +385000 277500 4000 2000 PVR +155000 282500 4000 2000 PVR +340000 282500 4000 2000 PVR +230000 182500 4000 2000 PVR +245000 182500 4000 2000 PVR +227500 90000 4000 2000 PVR +255000 90000 4000 2000 PVR +250000 172500 4000 2000 PVR +190000 175000 4000 2000 PVR +180000 170000 4000 2000 PVR +430000 197500 4000 2000 PVR +332500 270000 6000 3500 PVR +290000 265000 4000 2000 PVR +480000 265000 4000 2000 PVR +470000 290000 6000 3500 PVR +462500 282500 4000 2000 PVR +300000 177500 4000 2000 PVR +485000 177500 4000 2000 PVR +305000 85000 4000 2000 PVR +275000 85000 4000 2000 PVR +330000 80000 4000 2000 PVR +285000 80000 4000 2000 PVR +350000 220000 4000 2000 PVR +365000 220000 4000 2000 PVR +355000 385000 4000 2000 PVR +297500 352500 6000 3500 PVR +375000 360000 4000 2000 PVR +107500 147500 4000 2000 PVR +122000 160500 4000 2000 PVR +450000 182500 4000 2000 PVR +262500 352500 4000 2000 PVR +327500 352500 4000 2000 PVR +400000 225000 4000 2000 PVR +405000 215000 4000 2000 PVR +410000 205000 4000 2000 PVR +105000 270000 4000 2000 PVR +415000 272500 4000 2000 PVR +402500 250000 4000 2000 PVR +222500 310000 4000 2000 PVR +402500 310000 4000 2000 PVR +520000 260000 4000 2000 PVR +520000 337500 4000 2000 PVR +210000 322500 4000 2000 PVR +570000 322500 4000 2000 PVR +570000 245000 4000 2000 PVR +530000 327500 4000 2000 PVR +282500 330000 4000 2000 PVR +327500 305000 4000 2000 PVR +49500 330000 4000 2000 PVR +130000 255000 6000 3500 PVR +76500 257000 4000 2000 PVR +90500 305500 4000 2000 PVR +592500 360000 6000 3500 PVR +405000 342500 6000 3500 PVR +335000 62500 800 400 DH +335000 22500 800 400 DH +297500 342500 800 400 DH +297500 372500 800 400 DH +415000 360000 800 400 DH +405000 360000 800 400 DH +395000 360000 800 400 DH +447500 122500 800 400 DH +447500 82500 800 400 DH +397500 117500 800 400 DH +407500 117500 800 400 DH +417500 117500 800 400 DH +427500 117500 800 400 DH +427500 87500 800 400 DH +417500 87500 800 400 DH +407500 87500 800 400 DH +397500 87500 800 400 DH +557500 122500 800 400 DH +557500 82500 800 400 DH +537500 62500 800 400 DH +537500 22500 800 400 DH +487500 57500 800 400 DH +497500 57500 800 400 DH +507500 57500 800 400 DH +517500 57500 800 400 DH +517500 27500 800 400 DH +507500 27500 800 400 DH +497500 27500 800 400 DH +487500 27500 800 400 DH +467500 62500 800 400 DH +467500 22500 800 400 DH +467500 122500 800 400 DH +467500 82500 800 400 DH +537500 122500 800 400 DH +537500 82500 800 400 DH +487500 117500 800 400 DH +497500 117500 800 400 DH +507500 117500 800 400 DH +517500 117500 800 400 DH +517500 87500 800 400 DH +507500 87500 800 400 DH +497500 87500 800 400 DH +487500 87500 800 400 DH +397500 57500 800 400 DH +407500 57500 800 400 DH +417500 57500 800 400 DH +427500 57500 800 400 DH +427500 27500 800 400 DH +417500 27500 800 400 DH +407500 27500 800 400 DH +397500 27500 800 400 DH +557500 62500 800 400 DH +557500 22500 800 400 DH +157500 342500 800 400 DH +157500 372500 800 400 DH +57500 239500 800 400 DH +57500 249500 800 400 DH +530000 245000 800 400 DH +540000 245000 800 400 DH +550000 245000 800 400 DH +245000 57500 800 400 DH +255000 57500 800 400 DH +265000 57500 800 400 DH +275000 57500 800 400 DH +285000 57500 800 400 DH +295000 57500 800 400 DH +305000 57500 800 400 DH +315000 57500 800 400 DH +315000 27500 800 400 DH +305000 27500 800 400 DH +295000 27500 800 400 DH +285000 27500 800 400 DH +275000 27500 800 400 DH +265000 27500 800 400 DH +255000 27500 800 400 DH +245000 27500 800 400 DH +317500 372500 800 400 DH +327500 372500 800 400 DH +420000 205000 800 400 DH +430000 205000 800 400 DH +420000 215000 800 400 DH +430000 215000 800 400 DH +420000 225000 800 400 DH +430000 225000 800 400 DH +420000 235000 800 400 DH +430000 235000 800 400 DH +140000 265000 800 400 DH +150000 265000 800 400 DH +160000 265000 800 400 DH +170000 265000 800 400 DH +180000 265000 800 400 DH +190000 265000 800 400 DH +200000 265000 800 400 DH +210000 265000 800 400 DH +220000 265000 800 400 DH +230000 265000 800 400 DH +240000 265000 800 400 DH +250000 265000 800 400 DH +250000 205000 800 400 DH +240000 205000 800 400 DH +230000 205000 800 400 DH +220000 205000 800 400 DH +210000 205000 800 400 DH +200000 205000 800 400 DH +190000 205000 800 400 DH +180000 205000 800 400 DH +170000 205000 800 400 DH +160000 205000 800 400 DH +150000 205000 800 400 DH +140000 205000 800 400 DH +280000 235000 800 400 DH +290000 235000 800 400 DH +300000 235000 800 400 DH +310000 235000 800 400 DH +320000 235000 800 400 DH +330000 235000 800 400 DH +340000 235000 800 400 DH +350000 235000 800 400 DH +360000 235000 800 400 DH +370000 235000 800 400 DH +380000 235000 800 400 DH +390000 235000 800 400 DH +390000 205000 800 400 DH +380000 205000 800 400 DH +370000 205000 800 400 DH +360000 205000 800 400 DH +350000 205000 800 400 DH +340000 205000 800 400 DH +330000 205000 800 400 DH +320000 205000 800 400 DH +310000 205000 800 400 DH +300000 205000 800 400 DH +290000 205000 800 400 DH +280000 205000 800 400 DH +77500 124000 800 400 DH +77500 218000 800 400 DH +82500 151000 800 400 DH +72500 156000 800 400 DH +82500 161000 800 400 DH +72500 166000 800 400 DH +82500 171000 800 400 DH +72500 176000 800 400 DH +82500 181000 800 400 DH +72500 186000 800 400 DH +82500 191000 800 400 DH +81500 239500 800 400 DH +81500 249500 800 400 DH +495000 220000 800 400 DH +470000 220000 800 400 DH +85000 330000 800 400 DH +85000 360000 800 400 DH +582500 245000 800 400 DH +592500 245000 800 400 DH +602500 245000 800 400 DH +535000 210000 800 400 DH +545000 210000 800 400 DH +355000 62500 800 400 DH +355000 22500 800 400 DH +105000 330000 800 400 DH +115000 330000 800 400 DH +172500 320000 800 400 DH +182500 320000 800 400 DH +192500 320000 800 400 DH +202500 320000 800 400 DH +202500 290000 800 400 DH +192500 290000 800 400 DH +182500 290000 800 400 DH +172500 290000 800 400 DH +495000 277500 800 400 DH +470000 277500 800 400 DH +570000 360000 800 400 DH +560000 360000 800 400 DH +550000 360000 800 400 DH +280000 257500 800 400 DH +280000 297500 800 400 DH +116000 280000 800 400 DH +76000 280000 800 400 DH +490000 370000 800 400 DH +475000 370000 800 400 DH +530000 292500 800 400 DH +540000 292500 800 400 DH +550000 292500 800 400 DH +652500 47500 800 400 DH +652500 57500 800 400 DH +652500 67500 800 400 DH +652500 77500 800 400 DH +652500 87500 800 400 DH +652500 97500 800 400 DH +652500 107500 800 400 DH +652500 117500 800 400 DH +652500 127500 800 400 DH +652500 137500 800 400 DH +652500 147500 800 400 DH +652500 157500 800 400 DH +652500 167500 800 400 DH +652500 177500 800 400 DH +652500 187500 800 400 DH +652500 197500 800 400 DH +652500 207500 800 400 DH +652500 217500 800 400 DH +652500 227500 800 400 DH +652500 237500 800 400 DH +652500 247500 800 400 DH +652500 257500 800 400 DH +652500 267500 800 400 DH +652500 277500 800 400 DH +652500 287500 800 400 DH +652500 297500 800 400 DH +652500 307500 800 400 DH +652500 317500 800 400 DH +652500 327500 800 400 DH +652500 337500 800 400 DH +652500 347500 800 400 DH +652500 357500 800 400 DH +642500 47500 800 400 DH +642500 57500 800 400 DH +642500 67500 800 400 DH +642500 77500 800 400 DH +642500 87500 800 400 DH +642500 97500 800 400 DH +642500 107500 800 400 DH +642500 117500 800 400 DH +642500 127500 800 400 DH +642500 137500 800 400 DH +642500 147500 800 400 DH +642500 157500 800 400 DH +642500 167500 800 400 DH +642500 177500 800 400 DH +642500 187500 800 400 DH +642500 197500 800 400 DH +642500 207500 800 400 DH +642500 217500 800 400 DH +642500 227500 800 400 DH +642500 237500 800 400 DH +642500 247500 800 400 DH +642500 257500 800 400 DH +642500 267500 800 400 DH +642500 277500 800 400 DH +642500 287500 800 400 DH +642500 297500 800 400 DH +642500 307500 800 400 DH +642500 317500 800 400 DH +642500 327500 800 400 DH +642500 337500 800 400 DH +642500 347500 800 400 DH +642500 357500 800 400 DH +632500 47500 800 400 DH +632500 57500 800 400 DH +632500 67500 800 400 DH +632500 77500 800 400 DH +632500 87500 800 400 DH +632500 97500 800 400 DH +632500 107500 800 400 DH +632500 117500 800 400 DH +632500 127500 800 400 DH +632500 137500 800 400 DH +632500 147500 800 400 DH +632500 157500 800 400 DH +632500 167500 800 400 DH +632500 177500 800 400 DH +632500 187500 800 400 DH +632500 197500 800 400 DH +632500 207500 800 400 DH +632500 217500 800 400 DH +632500 227500 800 400 DH +632500 237500 800 400 DH +632500 247500 800 400 DH +632500 257500 800 400 DH +632500 267500 800 400 DH +632500 277500 800 400 DH +632500 287500 800 400 DH +632500 297500 800 400 DH +632500 307500 800 400 DH +632500 317500 800 400 DH +632500 327500 800 400 DH +632500 337500 800 400 DH +632500 347500 800 400 DH +632500 357500 800 400 DH +662500 377500 800 400 DH +662500 27500 800 400 DH +332500 260000 800 400 DH +322500 260000 800 400 DH +447500 62500 800 400 DH +447500 22500 800 400 DH +300000 297500 800 400 DH +300000 257500 800 400 DH +475000 330000 800 400 DH +490000 330000 800 400 DH +55000 269500 800 400 DH +55000 287200 800 400 DH +64800 264600 800 400 DH +64800 292200 800 400 DH +582500 292500 800 400 DH +592500 292500 800 400 DH +602500 292500 800 400 DH +562500 187500 800 400 DH +592500 187500 800 400 DH +577500 117500 800 400 DH +587500 117500 800 400 DH +597500 117500 800 400 DH +607500 117500 800 400 DH +607500 87500 800 400 DH +597500 87500 800 400 DH +587500 87500 800 400 DH +577500 87500 800 400 DH +582500 210000 800 400 DH +592500 210000 800 400 DH +602500 210000 800 400 DH +577500 57500 800 400 DH +587500 57500 800 400 DH +597500 57500 800 400 DH +607500 57500 800 400 DH +607500 27500 800 400 DH +597500 27500 800 400 DH +587500 27500 800 400 DH +577500 27500 800 400 DH +322500 290000 800 400 DH +332500 290000 800 400 DH +87500 57500 800 400 DH +97500 62500 800 400 DH +87500 67500 800 400 DH +97500 72500 800 400 DH +87500 77500 800 400 DH +97500 82500 800 400 DH +87500 87500 800 400 DH +97500 92500 800 400 DH +62500 52500 800 400 DH +62500 97600 800 400 DH +74500 44500 800 400 DH +74500 105600 800 400 DH +360000 290000 800 400 DH +370000 290000 800 400 DH +380000 290000 800 400 DH +390000 290000 800 400 DH +390000 260000 800 400 DH +380000 260000 800 400 DH +370000 260000 800 400 DH +360000 260000 800 400 DH +317500 342500 800 400 DH +327500 342500 800 400 DH +137500 342500 800 400 DH +127500 342500 800 400 DH +540000 162500 800 400 DH +535000 152500 800 400 DH +530000 162500 800 400 DH +525000 152500 800 400 DH +520000 162500 800 400 DH +515000 152500 800 400 DH +510000 162500 800 400 DH +505000 152500 800 400 DH +500000 162500 800 400 DH +495000 152500 800 400 DH +490000 162500 800 400 DH +485000 152500 800 400 DH +480000 162500 800 400 DH +475000 152500 800 400 DH +470000 162500 800 400 DH +465000 152500 800 400 DH +460000 162500 800 400 DH +455000 152500 800 400 DH +450000 162500 800 400 DH +445000 152500 800 400 DH +440000 162500 800 400 DH +435000 152500 800 400 DH +430000 162500 800 400 DH +425000 152500 800 400 DH +420000 162500 800 400 DH +415000 152500 800 400 DH +410000 162500 800 400 DH +405000 152500 800 400 DH +400000 162500 800 400 DH +395000 152500 800 400 DH +390000 162500 800 400 DH +385000 152500 800 400 DH +380000 162500 800 400 DH +375000 152500 800 400 DH +370000 162500 800 400 DH +365000 152500 800 400 DH +340000 162500 800 400 DH +335000 152500 800 400 DH +330000 162500 800 400 DH +325000 152500 800 400 DH +320000 162500 800 400 DH +315000 152500 800 400 DH +310000 162500 800 400 DH +305000 152500 800 400 DH +300000 162500 800 400 DH +295000 152500 800 400 DH +290000 162500 800 400 DH +285000 152500 800 400 DH +280000 162500 800 400 DH +275000 152500 800 400 DH +270000 162500 800 400 DH +265000 152500 800 400 DH +260000 162500 800 400 DH +255000 152500 800 400 DH +250000 162500 800 400 DH +245000 152500 800 400 DH +240000 162500 800 400 DH +235000 152500 800 400 DH +230000 162500 800 400 DH +225000 152500 800 400 DH +220000 162500 800 400 DH +215000 152500 800 400 DH +210000 162500 800 400 DH +205000 152500 800 400 DH +200000 162500 800 400 DH +195000 152500 800 400 DH +190000 162500 800 400 DH +185000 152500 800 400 DH +180000 162500 800 400 DH +175000 152500 800 400 DH +170000 162500 800 400 DH +165000 152500 800 400 DH +573000 157500 800 400 DH +352500 157500 800 400 DH +132500 157500 800 400 DH +137500 372500 800 400 DH +127500 372500 800 400 DH +172500 372500 800 400 DH +182500 372500 800 400 DH +192500 372500 800 400 DH +202500 372500 800 400 DH +212500 372500 800 400 DH +222500 372500 800 400 DH +232500 372500 800 400 DH +242500 372500 800 400 DH +252500 372500 800 400 DH +262500 372500 800 400 DH +272500 372500 800 400 DH +282500 372500 800 400 DH +282500 342500 800 400 DH +272500 342500 800 400 DH +262500 342500 800 400 DH +252500 342500 800 400 DH +242500 342500 800 400 DH +232500 342500 800 400 DH +222500 342500 800 400 DH +212500 342500 800 400 DH +202500 342500 800 400 DH +192500 342500 800 400 DH +182500 342500 800 400 DH +172500 342500 800 400 DH +115500 305500 800 400 DH +75500 305500 800 400 DH +57500 27500 800 400 DH +57500 376200 800 400 DH +662500 27500 800 400 DH +662500 376200 800 400 DH +475000 342500 800 400 DH +490000 342500 800 400 DH +560000 342500 800 400 DH +602500 260000 800 400 DH +540000 260000 800 400 DH +540000 307500 800 400 DH +602500 307500 800 400 DH +592500 277500 800 400 DH +612500 287500 800 400 DH +540000 327500 800 400 DH +395000 317500 800 400 DH +475000 317500 800 400 DH +622500 342500 800 400 DH +612500 267500 800 400 DH +592500 222500 800 400 DH +462500 342500 800 400 DH +562500 220000 800 400 DH +622500 102500 800 400 DH +647500 102500 800 400 DH +567500 107500 800 400 DH +597500 47500 800 400 DH +537500 47500 800 400 DH +487500 47500 800 400 DH +517500 40000 800 400 DH +577500 40000 800 400 DH +402500 72500 800 400 DH +487500 72500 800 400 DH +537500 72500 800 400 DH +592500 72500 800 400 DH +497500 95000 800 400 DH +140000 95000 800 400 DH +175000 95000 800 400 DH +237500 95000 800 400 DH +322500 317500 800 400 DH +327500 392500 800 400 DH +240000 245000 800 400 DH +270000 245000 800 400 DH +140000 245000 800 400 DH +130000 280000 800 400 DH +130000 290000 800 400 DH +252500 287500 800 400 DH +427500 100000 800 400 DH +525000 100000 800 400 DH +315000 100000 800 400 DH +447500 95000 800 400 DH +202500 305000 800 400 DH +127500 392500 800 400 DH +212500 392500 800 400 DH +272500 392500 800 400 DH +360000 317500 800 400 DH +77500 392500 800 400 DH +487500 107500 800 400 DH +620000 52500 800 400 DH +622500 87500 800 400 DH +537500 107500 800 400 DH +637500 172500 800 400 DH +262500 172500 800 400 DH +597500 65000 800 400 DH +407500 47500 800 400 DH +205000 82500 800 400 DH +402500 235000 800 400 DH +295000 130000 800 400 DH +335000 52500 800 400 DH +527500 22500 800 400 DH +615000 15000 800 400 DH +477500 57500 800 400 DH +622500 35000 800 400 DH +647500 20000 800 400 DH +557500 15000 800 400 DH +502500 15000 800 400 DH +547500 142500 800 400 DH +610000 142500 800 400 DH +615000 130000 800 400 DH +555000 135000 800 400 DH +195000 57500 800 400 DH +242500 360000 800 400 DH +210000 67500 800 400 DH +115000 112500 800 400 DH +507500 107500 800 400 DH +417500 135000 800 400 DH +200000 62500 800 400 DH +512500 80000 800 400 DH +557500 237500 800 400 DH +447500 30000 800 400 DH +355000 130000 800 400 DH +272500 352500 800 400 DH +95000 245000 800 400 DH +115000 245000 800 400 DH +582500 285000 800 400 DH +110000 367500 800 400 DH +182500 385000 800 400 DH +252500 385000 800 400 DH +212500 352500 800 400 DH +232500 352500 800 400 DH +192500 360000 800 400 DH +417500 107500 800 400 DH +447500 107500 800 400 DH +472500 107500 800 400 DH +467500 15000 800 400 DH +255000 120000 800 400 DH +265000 120000 800 400 DH +265000 130000 800 400 DH +250000 130000 800 400 DH +260000 105000 800 400 DH +245000 105000 800 400 DH +285000 120000 800 400 DH +300000 120000 800 400 DH +290000 125000 800 400 DH +310000 125000 800 400 DH +295000 137500 800 400 DH +322500 137500 800 400 DH +145000 137500 800 400 DH +155000 125000 800 400 DH +160000 100000 800 400 DH +300000 100000 800 400 DH +170000 142500 800 400 DH +280000 142500 800 400 DH +180000 132500 800 400 DH +275000 130000 800 400 DH +190000 105000 800 400 DH +270000 105000 800 400 DH +200000 255000 800 400 DH +270000 255000 800 400 DH +322500 245000 800 400 DH +350000 250000 800 400 DH +202500 282500 800 400 DH +220000 282500 800 400 DH +257500 250000 800 400 DH +210000 250000 800 400 DH +257500 197500 800 400 DH +220000 225000 800 400 DH +240000 225000 800 400 DH +300000 212500 800 400 DH +215000 212500 800 400 DH +310000 217500 800 400 DH +225000 217500 800 400 DH +225000 195000 800 400 DH +315000 192500 800 400 DH +150000 187500 800 400 DH +325000 187500 800 400 DH +235000 187500 800 400 DH +360000 252500 800 400 DH +292500 222500 800 400 DH +170000 217500 800 400 DH +210000 230000 800 400 DH +390000 225000 800 400 DH +257500 277500 800 400 DH +385000 277500 800 400 DH +155000 282500 800 400 DH +340000 282500 800 400 DH +230000 182500 800 400 DH +245000 182500 800 400 DH +227500 90000 800 400 DH +255000 90000 800 400 DH +250000 172500 800 400 DH +190000 175000 800 400 DH +180000 170000 800 400 DH +430000 197500 800 400 DH +332500 270000 800 400 DH +290000 265000 800 400 DH +480000 265000 800 400 DH +470000 290000 800 400 DH +462500 282500 800 400 DH +300000 177500 800 400 DH +485000 177500 800 400 DH +305000 85000 800 400 DH +275000 85000 800 400 DH +330000 80000 800 400 DH +285000 80000 800 400 DH +350000 220000 800 400 DH +365000 220000 800 400 DH +355000 385000 800 400 DH +297500 352500 800 400 DH +375000 360000 800 400 DH +107500 147500 800 400 DH +122000 160500 800 400 DH +450000 182500 800 400 DH +262500 352500 800 400 DH +327500 352500 800 400 DH +400000 225000 800 400 DH +405000 215000 800 400 DH +410000 205000 800 400 DH +105000 270000 800 400 DH +415000 272500 800 400 DH +402500 250000 800 400 DH +222500 310000 800 400 DH +402500 310000 800 400 DH +520000 260000 800 400 DH +520000 337500 800 400 DH +210000 322500 800 400 DH +570000 322500 800 400 DH +570000 245000 800 400 DH +530000 327500 800 400 DH +282500 330000 800 400 DH +327500 305000 800 400 DH +49500 330000 800 400 DH +130000 255000 800 400 DH +76500 257000 800 400 DH +90500 305500 800 400 DH +592500 360000 800 400 DH +405000 342500 800 400 DH +grestore +gsave +0.00072 0.00072 scale +214900 579300 translate +0.500 0.500 scale +842140 0 translate +90 rotate +400 -20140 translate +/Color {0.800 0.800 0.800 mysetrgbcolor} def Color +-400 20140 710400 862280 200 Alignment +64500 257000 76000 257000 1000 L +58000 250500 64500 257000 1000 L +87000 254500 81500 249000 2500 L +129000 254500 87000 254500 2500 L +55000 330000 49500 330000 1000 L +58500 284500 55000 288000 2500 L +68500 284500 58500 284500 2500 L +45000 398500 45000 5000 100 L +130000 289500 73500 289500 2500 L +632500 345000 652500 345000 4000 L +632500 342500 652500 342500 4000 L +632500 340000 652500 340000 4000 L +652500 337500 632500 337500 4000 L +652500 347500 652500 337500 4000 L +632500 347500 652500 347500 4000 L +632500 342500 405000 342500 4500 L +632500 337500 632500 347500 4500 L +537500 307500 410000 307500 1000 L +287500 325000 282500 330000 1000 L +527500 325000 287500 325000 1000 L +530000 327500 527500 325000 1000 L +570000 245000 582500 245000 1000 L +210000 322500 570000 322500 1000 L +202500 342500 202500 337500 1000 L +520000 260000 540000 260000 1000 L +127500 337500 520000 337500 1000 L +127500 342500 127500 337500 1000 L +245000 270000 105000 270000 1000 L +247500 272500 245000 270000 1000 L +270000 272500 247500 272500 1000 L +272500 275000 270000 272500 1000 L +345000 275000 272500 275000 1000 L +347500 272500 345000 275000 1000 L +415000 272500 347500 272500 1000 L +420000 205000 410000 205000 1000 L +420000 215000 405000 215000 1000 L +400000 225000 420000 225000 1000 L +267500 357500 322500 357500 1000 L +325000 355000 327500 352500 1000 L +322500 357500 325000 355000 1000 L +262500 352500 267500 357500 1000 L +242500 342500 252500 342500 1000 L +297500 342500 297500 347500 1000 L +312500 347500 317500 342500 1000 L +240000 347500 312500 347500 1000 L +237500 347500 240000 347500 1000 L +232500 342500 237500 347500 1000 L +182500 342500 192500 342500 1000 L +137500 342500 172500 342500 1000 L +530000 245000 407500 245000 1000 L +407500 245000 402500 250000 1000 L +402500 310000 222500 310000 1000 L +217500 180000 220000 177500 1000 L +127500 180000 217500 180000 1000 L +107500 180000 127500 180000 1000 L +295000 182500 450000 182500 1000 L +290000 177500 295000 182500 1000 L +220000 177500 290000 177500 1000 L +445000 147500 445000 152500 1000 L +107500 147500 445000 147500 1000 L +242500 360000 375000 360000 1000 L +277500 352500 297500 352500 2500 L +365000 220000 350000 220000 1000 L +357500 255000 360000 252500 1000 L +337500 255000 357500 255000 1000 L +340000 282500 462500 282500 1000 L +457500 290000 470000 290000 2500 L +255000 270000 332500 270000 2500 L +250000 265000 255000 270000 2500 L +242500 170000 180000 170000 1000 L +247500 175000 250000 172500 1000 L +190000 175000 247500 175000 1000 L +250000 162500 242500 170000 1000 L +227500 90000 255000 90000 1000 L +230000 182500 245000 182500 1000 L +230000 282500 340000 282500 1000 L +225000 277500 230000 282500 1000 L +197500 277500 225000 277500 1000 L +192500 282500 197500 277500 1000 L +155000 282500 192500 282500 1000 L +257500 277500 385000 277500 1000 L +387500 227500 390000 225000 1000 L +270000 227500 387500 227500 1000 L +267500 230000 270000 227500 1000 L +210000 230000 267500 230000 1000 L +220000 217500 170000 217500 1000 L +225000 222500 220000 217500 1000 L +230000 222500 225000 222500 1000 L +232500 220000 230000 222500 1000 L +245000 220000 232500 220000 1000 L +247500 222500 245000 220000 1000 L +250000 222500 247500 222500 1000 L +292500 222500 250000 222500 1000 L +297500 187500 325000 187500 1000 L +150000 187500 297500 187500 1000 L +250000 195000 252500 192500 1000 L +225000 195000 250000 195000 1000 L +252500 192500 315000 192500 1000 L +310000 217500 225000 217500 1000 L +300000 212500 215000 212500 1000 L +220000 225000 240000 225000 2500 L +637500 172500 535000 172500 1000 L +210000 67500 87500 67500 1000 L +205000 82500 97500 82500 1000 L +200000 62500 97500 62500 1000 L +195000 57500 87500 57500 1000 L +192500 360000 242500 360000 1000 L +212500 352500 232500 352500 2500 L +202500 372500 202500 367500 1000 L +257500 367500 262500 372500 1000 L +110000 367500 257500 367500 1000 L +57500 162000 57500 150000 2500 L +82500 150000 57000 150000 2500 L +95000 245000 115000 245000 1000 L +182500 385000 252500 385000 1000 L +355000 385000 252500 385000 1000 L +272500 352500 277500 352500 2500 L +297500 342500 317500 342500 1000 L +280000 257500 300000 257500 1000 L +517500 242500 522500 237500 1000 L +392500 242500 517500 242500 1000 L +380000 255000 392500 242500 1000 L +380000 260000 380000 255000 1000 L +522500 237500 557500 237500 1000 L +370000 260000 380000 260000 1000 L +425000 230000 430000 235000 1000 L +375000 230000 425000 230000 1000 L +370000 235000 375000 230000 1000 L +402500 235000 420000 235000 1000 L +447500 60000 447500 62500 1000 L +450000 57500 447500 60000 1000 L +477500 57500 450000 57500 1000 L +487500 107500 472500 107500 1000 L +467500 80000 467500 82500 1000 L +512500 80000 467500 80000 1000 L +610000 142500 547500 142500 1000 L +537500 107500 507500 107500 1000 L +537500 117500 537500 122500 1000 L +577500 117500 537500 117500 1000 L +417500 107500 447500 107500 1000 L +555000 135000 417500 135000 1000 L +557500 67500 557500 62500 1000 L +417500 67500 557500 67500 1000 L +417500 57500 417500 67500 1000 L +582500 210000 545000 210000 1000 L +555000 57500 577500 57500 1000 L +542500 57500 555000 57500 1000 L +537500 62500 542500 57500 1000 L +447500 30000 440000 22500 1000 L +417500 22500 417500 27500 1000 L +437500 22500 417500 22500 1000 L +440000 22500 437500 22500 1000 L +507500 22500 507500 27500 1000 L +527500 22500 507500 22500 1000 L +502500 15000 467500 15000 1000 L +615000 15000 557500 15000 1000 L +397500 27500 397500 17500 2500 L +355000 22500 355000 17500 2500 L +340000 17500 335000 22500 2500 L +400000 17500 340000 17500 2500 L +90500 305500 75500 305500 1000 L +415000 380000 172500 380000 2500 L +415000 360000 415000 380000 2500 L +232500 372500 232500 380000 2500 L +317500 372500 317500 380000 2500 L +172500 380000 172500 375000 2500 L +297500 372500 297500 380000 2500 L +115000 280000 130000 280000 2500 L +137500 372500 172500 372500 2500 L +55000 330000 105000 330000 1000 L +622500 342500 627500 342500 4000 L +127500 392500 212500 392500 2500 L +332500 292500 332500 297500 2500 L +382500 297500 390000 290000 2500 L +325000 297500 382500 297500 2500 L +362500 197500 430000 197500 1000 L +360000 205000 360000 200000 1000 L +360000 200000 362500 197500 1000 L +205000 305000 202500 305000 2500 L +285000 305000 205000 305000 2500 L +292500 297500 285000 305000 2500 L +300000 297500 292500 297500 2500 L +212500 392500 327500 392500 2500 L +300000 297500 325000 297500 2500 L +290000 265000 480000 265000 1000 L +390000 290000 457500 290000 2500 L +442500 17500 447500 22500 2500 L +400000 17500 442500 17500 2500 L +45000 5000 675000 5000 100 L +632500 87500 632500 92500 2500 L +397500 87500 397500 95000 2500 L +422500 100000 315000 100000 2500 L +610000 102500 607500 100000 2500 L +622500 102500 610000 102500 2500 L +515000 152500 525000 152500 2500 L +520000 152500 520000 162500 2500 L +510000 162500 530000 162500 2500 L +607500 100000 422500 100000 2500 L +73500 289500 68500 284500 2500 L +57000 238500 56000 239500 2500 L +675000 5000 675000 398500 100 L +57500 162000 57500 239000 2500 L +675000 398500 45000 398500 100 L +172500 290000 130000 290000 2500 L +632500 337500 627500 342500 4000 L +627500 342500 632500 347500 4000 L +240000 245000 140000 245000 2500 L +200000 255000 270000 255000 1000 L +240000 245000 322500 245000 2500 L +395000 317500 322500 317500 2500 L +180000 152500 180000 162500 2500 L +180000 162500 192500 162500 2500 L +175000 152500 185000 152500 2500 L +402500 95000 140000 95000 2500 L +447500 82500 447500 95000 2500 L +612500 95000 402500 95000 2500 L +615000 92500 612500 95000 2500 L +617500 92500 615000 92500 2500 L +637500 92500 617500 92500 2500 L +577500 80000 577500 87500 2500 L +580000 77500 577500 80000 2500 L +612500 77500 580000 77500 2500 L +617500 82500 612500 77500 2500 L +622500 82500 617500 82500 2500 L +637500 82500 622500 82500 2500 L +642500 77500 637500 82500 2500 L +517500 87500 577500 87500 2500 L +632500 67500 632500 72500 2500 L +637500 72500 402500 72500 2500 L +647500 72500 652500 77500 2500 L +637500 72500 647500 72500 2500 L +652500 327500 632500 327500 4500 L +652500 317500 632500 317500 4500 L +652500 307500 632500 307500 4500 L +652500 297500 632500 297500 4500 L +652500 287500 632500 287500 4500 L +652500 277500 632500 277500 4500 L +652500 267500 632500 267500 4500 L +652500 257500 632500 257500 4500 L +632500 357500 630000 360000 4500 L +630000 360000 570000 360000 4500 L +550000 360000 415000 360000 4500 L +330000 305000 327500 305000 1000 L +255000 285000 335000 285000 1000 L +407500 305000 330000 305000 1000 L +410000 307500 407500 305000 1000 L +252500 287500 255000 285000 1000 L +300000 177500 485000 177500 1000 L +347500 285000 350000 285000 1000 L +342500 290000 347500 285000 1000 L +335000 285000 340000 290000 1000 L +602500 260000 540000 260000 4500 L +607500 297500 602500 292500 4500 L +632500 297500 607500 297500 4500 L +540000 307500 602500 307500 4500 L +632500 277500 592500 277500 4500 L +632500 287500 612500 287500 4500 L +632500 327500 540000 327500 4500 L +632500 317500 395000 317500 4500 L +612500 267500 632500 267500 4500 L +592500 277500 495000 277500 4500 L +495000 220000 590000 220000 4500 L +590000 220000 592500 222500 4500 L +632500 47500 637500 52500 2500 L +637500 52500 647500 52500 2500 L +647500 52500 652500 57500 2500 L +652500 357500 632500 357500 4000 L +340000 290000 342500 290000 1000 L +490000 370000 490000 362500 4500 L +77500 392500 127500 392500 2500 L +637500 92500 647500 92500 2500 L +647500 92500 652500 97500 2500 L +622500 102500 647500 102500 2500 L +567500 107500 632500 107500 2500 L +632500 47500 407500 47500 2500 L +310000 52500 305000 57500 1000 L +642500 47500 642500 42500 2500 L +642500 42500 640000 40000 2500 L +640000 40000 517500 40000 2500 L +597500 27500 597500 22500 1000 L +597500 22500 600000 20000 1000 L +600000 20000 647500 20000 1000 L +587500 27500 587500 30000 1000 L +587500 30000 592500 35000 1000 L +592500 35000 622500 35000 1000 L +652500 67500 647500 62500 1000 L +647500 62500 600000 62500 1000 L +600000 62500 597500 65000 1000 L +587500 87500 592500 92500 1000 L +592500 92500 610000 92500 1000 L +610000 92500 615000 87500 1000 L +615000 87500 622500 87500 1000 L +615000 130000 295000 130000 1000 L +620000 52500 620000 52500 1000 L +620000 52500 310000 52500 1000 L +115000 112500 647500 112500 1000 L +647500 112500 652500 117500 1000 L +535000 172500 262500 172500 1000 L +255000 120000 265000 120000 1000 L +265000 130000 250000 130000 1000 L +260000 105000 245000 105000 1000 L +285000 120000 300000 120000 1000 L +290000 125000 310000 125000 1000 L +295000 137500 322500 137500 1000 L +145000 137500 295000 137500 1000 L +155000 125000 290000 125000 1000 L +160000 100000 300000 100000 1000 L +170000 142500 280000 142500 1000 L +242500 132500 245000 135000 1000 L +245000 135000 270000 135000 1000 L +270000 135000 275000 130000 1000 L +180000 132500 242500 132500 1000 L +242500 110000 265000 110000 1000 L +265000 110000 270000 105000 1000 L +190000 105000 237500 105000 1000 L +237500 105000 242500 110000 1000 L +270000 255000 275000 250000 1000 L +275000 250000 315000 250000 1000 L +330000 80000 285000 80000 1000 L +315000 250000 350000 250000 1000 L +202500 282500 220000 282500 1000 L +257500 250000 210000 250000 1000 L +330000 205000 322500 197500 1000 L +322500 197500 257500 197500 1000 L +337500 255000 302500 255000 1000 L +302500 255000 300000 257500 1000 L +305000 85000 275000 85000 1000 L +350000 285000 457500 285000 1000 L +457500 285000 460000 287500 1000 L +460000 287500 465000 287500 1000 L +465000 287500 467500 285000 1000 L +467500 285000 582500 285000 1000 L +107500 180000 91000 180000 1000 L +91000 180000 90000 181000 1000 L +90000 181000 82500 181000 1000 L +122000 160500 90500 160500 1000 L +90500 160500 90000 161000 1000 L +90000 161000 82500 161000 1000 L +82000 10000 82500 9500 400 L +80500 10000 82000 10000 400 L +80000 9500 80500 10000 400 L +80000 9500 80000 8500 400 L +80000 8500 80500 8000 400 L +80500 8000 82000 8000 400 L +82000 8000 82500 7500 400 L +82500 7500 82500 6500 400 L +82000 6000 82500 6500 400 L +80500 6000 82000 6000 400 L +80000 6500 80500 6000 400 L +83701 9500 83701 6500 400 L +83701 9500 84201 10000 400 L +84201 10000 85201 10000 400 L +85201 10000 85701 9500 400 L +85701 9500 85701 6500 400 L +85201 6000 85701 6500 400 L +84201 6000 85201 6000 400 L +83701 6500 84201 6000 400 L +86902 10000 86902 6000 400 L +86902 6000 88902 6000 400 L +90603 10000 90603 6000 400 L +92103 10000 92603 9500 400 L +92603 9500 92603 6500 400 L +92103 6000 92603 6500 400 L +90103 6000 92103 6000 400 L +90103 10000 92103 10000 400 L +93804 8000 95304 8000 400 L +93804 6000 95804 6000 400 L +93804 10000 93804 6000 400 L +93804 10000 95804 10000 400 L +97005 10000 99005 10000 400 L +99005 10000 99505 9500 400 L +99505 9500 99505 8500 400 L +99005 8000 99505 8500 400 L +97505 8000 99005 8000 400 L +97505 10000 97505 6000 400 L +97505 8000 99505 6000 400 L +80000 32000 80000 28500 400 L +80000 32000 80500 32500 400 L +80500 32500 82000 32500 400 L +82000 32500 82500 32000 400 L +82500 32000 82500 28500 400 L +80000 30500 82500 30500 400 L +83701 32500 84701 32500 400 L +84201 32500 84201 28500 400 L +83701 28500 84701 28500 400 L +86402 28500 87902 28500 400 L +85902 29000 86402 28500 400 L +85902 32000 85902 29000 400 L +85902 32000 86402 32500 400 L +86402 32500 87902 32500 400 L +89103 30500 91103 30500 400 L +92804 28500 93804 28500 400 L +93304 32500 93304 28500 400 L +92304 31500 93304 32500 400 L +95005 28500 95505 28500 400 L +96706 32000 97206 32500 400 L +97206 32500 98206 32500 400 L +98206 32500 98706 32000 400 L +98706 32000 98706 29000 400 L +98206 28500 98706 29000 400 L +97206 28500 98206 28500 400 L +96706 29000 97206 28500 400 L +97206 30500 98706 30500 400 L +99907 28500 100407 28500 400 L +101608 29000 102108 28500 400 L +101608 32000 101608 29000 400 L +101608 32000 102108 32500 400 L +102108 32500 103108 32500 400 L +103108 32500 103608 32000 400 L +103608 32000 103608 29000 400 L +103108 28500 103608 29000 400 L +102108 28500 103108 28500 400 L +101608 29500 103608 31500 400 L +80000 21500 80500 21000 400 L +80000 24500 80500 25000 400 L +80000 24500 80000 21500 400 L +82201 21000 83701 21000 400 L +81701 21500 82201 21000 400 L +81701 24500 81701 21500 400 L +81701 24500 82201 25000 400 L +82201 25000 83701 25000 400 L +84902 25000 85402 24500 400 L +85402 24500 85402 21500 400 L +84902 21000 85402 21500 400 L +88403 24500 88903 25000 400 L +88903 25000 90403 25000 400 L +90403 25000 90903 24500 400 L +90903 24500 90903 23500 400 L +88403 21000 90903 23500 400 L +88403 21000 90903 21000 400 L +92104 21500 92604 21000 400 L +92104 24500 92104 21500 400 L +92104 24500 92604 25000 400 L +92604 25000 93604 25000 400 L +93604 25000 94104 24500 400 L +94104 24500 94104 21500 400 L +93604 21000 94104 21500 400 L +92604 21000 93604 21000 400 L +92104 22000 94104 24000 400 L +95305 21500 95805 21000 400 L +95305 24500 95305 21500 400 L +95305 24500 95805 25000 400 L +95805 25000 96805 25000 400 L +96805 25000 97305 24500 400 L +97305 24500 97305 21500 400 L +96805 21000 97305 21500 400 L +95805 21000 96805 21000 400 L +95305 22000 97305 24000 400 L +98506 24500 99006 25000 400 L +99006 25000 100006 25000 400 L +100006 25000 100506 24500 400 L +100506 24500 100506 21500 400 L +100006 21000 100506 21500 400 L +99006 21000 100006 21000 400 L +98506 21500 99006 21000 400 L +99006 23000 100506 23000 400 L +103507 25000 103507 21000 400 L +103507 21000 105007 22500 400 L +105007 22500 106507 21000 400 L +106507 25000 106507 21000 400 L +109208 23000 109708 22500 400 L +108208 23000 109208 23000 400 L +107708 22500 108208 23000 400 L +107708 22500 107708 21500 400 L +107708 21500 108208 21000 400 L +109708 23000 109708 21500 400 L +109708 21500 110208 21000 400 L +108208 21000 109208 21000 400 L +109208 21000 109708 21500 400 L +111409 25000 111409 21500 400 L +111409 21500 111909 21000 400 L +113410 25000 113410 21500 400 L +113410 21500 113910 21000 400 L +112910 23500 113910 23500 400 L +115411 21000 116911 21000 400 L +114911 21500 115411 21000 400 L +114911 22500 114911 21500 400 L +114911 22500 115411 23000 400 L +115411 23000 116411 23000 400 L +116411 23000 116911 22500 400 L +114911 22000 116911 22000 400 L +116911 22500 116911 22000 400 L +118612 22500 118612 21000 400 L +118612 22500 119112 23000 400 L +119112 23000 120112 23000 400 L +118112 23000 118612 22500 400 L +123113 25000 123113 21000 400 L +123113 25000 125113 25000 400 L +123113 23000 124613 23000 400 L +126814 21000 128314 21000 400 L +126314 21500 126814 21000 400 L +126314 22500 126314 21500 400 L +126314 22500 126814 23000 400 L +126814 23000 127814 23000 400 L +127814 23000 128314 22500 400 L +126314 22000 128314 22000 400 L +128314 22500 128314 22000 400 L +130015 25000 130015 21500 400 L +130015 21500 130515 21000 400 L +129515 23500 130515 23500 400 L +132016 25000 132016 21500 400 L +132016 21500 132516 21000 400 L +131516 23500 132516 23500 400 L +134017 21000 135517 21000 400 L +133517 21500 134017 21000 400 L +133517 22500 133517 21500 400 L +133517 22500 134017 23000 400 L +134017 23000 135017 23000 400 L +135017 23000 135517 22500 400 L +133517 22000 135517 22000 400 L +135517 22500 135517 22000 400 L +137218 22500 137218 21000 400 L +137218 22500 137718 23000 400 L +137718 23000 138718 23000 400 L +136718 23000 137218 22500 400 L +141719 25000 141719 21000 400 L +141719 21000 143719 21000 400 L +146420 23000 146920 22500 400 L +145420 23000 146420 23000 400 L +144920 22500 145420 23000 400 L +144920 22500 144920 21500 400 L +144920 21500 145420 21000 400 L +146920 23000 146920 21500 400 L +146920 21500 147420 21000 400 L +145420 21000 146420 21000 400 L +146420 21000 146920 21500 400 L +150121 23000 150621 22500 400 L +149121 23000 150121 23000 400 L +148621 22500 149121 23000 400 L +148621 22500 148621 21500 400 L +148621 21500 149121 21000 400 L +149121 21000 150121 21000 400 L +150121 21000 150621 21500 400 L +148621 20000 149121 19500 400 L +149121 19500 150121 19500 400 L +150121 19500 150621 20000 400 L +150621 23000 150621 20000 400 L +152322 21000 153822 21000 400 L +151822 21500 152322 21000 400 L +151822 22500 151822 21500 400 L +151822 22500 152322 23000 400 L +152322 23000 153322 23000 400 L +153322 23000 153822 22500 400 L +151822 22000 153822 22000 400 L +153822 22500 153822 22000 400 L +155523 21000 157023 21000 400 L +157023 21000 157523 21500 400 L +157023 22000 157523 21500 400 L +155523 22000 157023 22000 400 L +155023 22500 155523 22000 400 L +155023 22500 155523 23000 400 L +155523 23000 157023 23000 400 L +157023 23000 157523 22500 400 L +155023 21500 155523 21000 400 L +80000 17500 80000 13500 400 L +80000 17500 82000 17500 400 L +80000 15500 81500 15500 400 L +83701 13500 85201 13500 400 L +83201 14000 83701 13500 400 L +83201 15000 83201 14000 400 L +83201 15000 83701 15500 400 L +83701 15500 84701 15500 400 L +84701 15500 85201 15000 400 L +83201 14500 85201 14500 400 L +85201 15000 85201 14500 400 L +86902 15000 86902 13500 400 L +86902 15000 87402 15500 400 L +87402 15500 88402 15500 400 L +86402 15500 86902 15000 400 L +90103 15000 90103 13500 400 L +90103 15000 90603 15500 400 L +90603 15500 91103 15500 400 L +91103 15500 91603 15000 400 L +91603 15000 91603 13500 400 L +89603 15500 90103 15000 400 L +94304 15500 94804 15000 400 L +93304 15500 94304 15500 400 L +92804 15000 93304 15500 400 L +92804 15000 92804 14000 400 L +92804 14000 93304 13500 400 L +94804 15500 94804 14000 400 L +94804 14000 95304 13500 400 L +93304 13500 94304 13500 400 L +94304 13500 94804 14000 400 L +97005 15000 97005 13500 400 L +97005 15000 97505 15500 400 L +97505 15500 98005 15500 400 L +98005 15500 98505 15000 400 L +98505 15000 98505 13500 400 L +96505 15500 97005 15000 400 L +101706 17500 101706 13500 400 L +101206 13500 101706 14000 400 L +100206 13500 101206 13500 400 L +99706 14000 100206 13500 400 L +99706 15000 99706 14000 400 L +99706 15000 100206 15500 400 L +100206 15500 101206 15500 400 L +101206 15500 101706 15000 400 L +102907 15000 102907 14000 400 L +102907 15000 103407 15500 400 L +103407 15500 104407 15500 400 L +104407 15500 104907 15000 400 L +104907 15000 104907 14000 400 L +104407 13500 104907 14000 400 L +103407 13500 104407 13500 400 L +102907 14000 103407 13500 400 L +108408 17500 108408 13500 400 L +107908 17500 109908 17500 400 L +109908 17500 110408 17000 400 L +110408 17000 110408 16000 400 L +109908 15500 110408 16000 400 L +108408 15500 109908 15500 400 L +112109 13500 113609 13500 400 L +111609 14000 112109 13500 400 L +111609 15000 111609 14000 400 L +111609 15000 112109 15500 400 L +112109 15500 113109 15500 400 L +113109 15500 113609 15000 400 L +111609 14500 113609 14500 400 L +113609 15000 113609 14500 400 L +115310 13500 116810 13500 400 L +116810 13500 117310 14000 400 L +116810 14500 117310 14000 400 L +115310 14500 116810 14500 400 L +114810 15000 115310 14500 400 L +114810 15000 115310 15500 400 L +115310 15500 116810 15500 400 L +116810 15500 117310 15000 400 L +114810 14000 115310 13500 400 L +119011 13500 120511 13500 400 L +120511 13500 121011 14000 400 L +120511 14500 121011 14000 400 L +119011 14500 120511 14500 400 L +118511 15000 119011 14500 400 L +118511 15000 119011 15500 400 L +119011 15500 120511 15500 400 L +120511 15500 121011 15000 400 L +118511 14000 119011 13500 400 L +122212 15500 122212 14000 400 L +122212 14000 122712 13500 400 L +122712 13500 123712 13500 400 L +123712 13500 124212 14000 400 L +124212 15500 124212 14000 400 L +125913 17500 125913 14000 400 L +125913 14000 126413 13500 400 L +125413 16000 126413 16000 400 L +127914 17500 127914 14000 400 L +127914 14000 128414 13500 400 L +127414 16000 128414 16000 400 L +129415 15000 129415 14000 400 L +129415 15000 129915 15500 400 L +129915 15500 130915 15500 400 L +130915 15500 131415 15000 400 L +131415 15000 131415 14000 400 L +130915 13500 131415 14000 400 L +129915 13500 130915 13500 400 L +129415 14000 129915 13500 400 L +335000 62500 6000 3500 PVSQ +335000 22500 6000 3500 PVR +297500 342500 6000 3500 PVSQ +297500 372500 6000 3500 PVR +415000 360000 8000 4200 PVSQ +405000 360000 8000 4200 PVR +395000 360000 8000 4200 PVR +447500 122500 6000 3500 PVSQ +447500 82500 6000 3500 PVR +397500 117500 6000 3500 PVSQ +407500 117500 6000 3500 PVR +417500 117500 6000 3500 PVR +427500 117500 6000 3500 PVR +427500 87500 6000 3500 PVR +417500 87500 6000 3500 PVR +407500 87500 6000 3500 PVR +397500 87500 6000 3500 PVR +557500 122500 6000 3500 PVSQ +557500 82500 6000 3500 PVR +537500 62500 6000 3500 PVSQ +537500 22500 6000 3500 PVR +487500 57500 6000 3500 PVSQ +497500 57500 6000 3500 PVR +507500 57500 6000 3500 PVR +517500 57500 6000 3500 PVR +517500 27500 6000 3500 PVR +507500 27500 6000 3500 PVR +497500 27500 6000 3500 PVR +487500 27500 6000 3500 PVR +467500 62500 6000 3500 PVSQ +467500 22500 6000 3500 PVR +467500 122500 6000 3500 PVSQ +467500 82500 6000 3500 PVR +537500 122500 6000 3500 PVSQ +537500 82500 6000 3500 PVR +487500 117500 6000 3500 PVSQ +497500 117500 6000 3500 PVR +507500 117500 6000 3500 PVR +517500 117500 6000 3500 PVR +517500 87500 6000 3500 PVR +507500 87500 6000 3500 PVR +497500 87500 6000 3500 PVR +487500 87500 6000 3500 PVR +397500 57500 6000 3500 PVSQ +407500 57500 6000 3500 PVR +417500 57500 6000 3500 PVR +427500 57500 6000 3500 PVR +427500 27500 6000 3500 PVR +417500 27500 6000 3500 PVR +407500 27500 6000 3500 PVR +397500 27500 6000 3500 PVR +557500 62500 6000 3500 PVSQ +557500 22500 6000 3500 PVR +157500 342500 6000 3500 PVSQ +157500 372500 6000 3500 PVR +57500 239500 6000 3500 PVSQ +57500 249500 6000 3500 PVR +530000 245000 8000 4200 PVSQ +540000 245000 8000 4200 PVR +550000 245000 8000 4200 PVR +245000 57500 6000 3500 PVSQ +255000 57500 6000 3500 PVR +265000 57500 6000 3500 PVR +275000 57500 6000 3500 PVR +285000 57500 6000 3500 PVR +295000 57500 6000 3500 PVR +305000 57500 6000 3500 PVR +315000 57500 6000 3500 PVR +315000 27500 6000 3500 PVR +305000 27500 6000 3500 PVR +295000 27500 6000 3500 PVR +285000 27500 6000 3500 PVR +275000 27500 6000 3500 PVR +265000 27500 6000 3500 PVR +255000 27500 6000 3500 PVR +245000 27500 6000 3500 PVR +317500 372500 6000 3500 PVSQ +327500 372500 6000 3500 PVR +420000 205000 7000 4200 PVSQ +430000 205000 7000 4200 PVR +420000 215000 7000 4200 PVR +430000 215000 7000 4200 PVR +420000 225000 7000 4200 PVR +430000 225000 7000 4200 PVR +420000 235000 7000 4200 PVR +430000 235000 7000 4200 PVR +140000 265000 6000 3500 PVSQ +150000 265000 6000 3500 PVR +160000 265000 6000 3500 PVR +170000 265000 6000 3500 PVR +180000 265000 6000 3500 PVR +190000 265000 6000 3500 PVR +200000 265000 6000 3500 PVR +210000 265000 6000 3500 PVR +220000 265000 6000 3500 PVR +230000 265000 6000 3500 PVR +240000 265000 6000 3500 PVR +250000 265000 6000 3500 PVR +250000 205000 6000 3500 PVR +240000 205000 6000 3500 PVR +230000 205000 6000 3500 PVR +220000 205000 6000 3500 PVR +210000 205000 6000 3500 PVR +200000 205000 6000 3500 PVR +190000 205000 6000 3500 PVR +180000 205000 6000 3500 PVR +170000 205000 6000 3500 PVR +160000 205000 6000 3500 PVR +150000 205000 6000 3500 PVR +140000 205000 6000 3500 PVR +280000 235000 6000 3500 PVSQ +290000 235000 6000 3500 PVR +300000 235000 6000 3500 PVR +310000 235000 6000 3500 PVR +320000 235000 6000 3500 PVR +330000 235000 6000 3500 PVR +340000 235000 6000 3500 PVR +350000 235000 6000 3500 PVR +360000 235000 6000 3500 PVR +370000 235000 6000 3500 PVR +380000 235000 6000 3500 PVR +390000 235000 6000 3500 PVR +390000 205000 6000 3500 PVR +380000 205000 6000 3500 PVR +370000 205000 6000 3500 PVR +360000 205000 6000 3500 PVR +350000 205000 6000 3500 PVR +340000 205000 6000 3500 PVR +330000 205000 6000 3500 PVR +320000 205000 6000 3500 PVR +310000 205000 6000 3500 PVR +300000 205000 6000 3500 PVR +290000 205000 6000 3500 PVR +280000 205000 6000 3500 PVR +77500 124000 12000 10000 PVR +77500 218000 12000 10000 PVR +82500 151000 7000 4200 PVR +72500 156000 7000 4200 PVR +82500 161000 7000 4200 PVR +72500 166000 7000 4200 PVR +82500 171000 7000 4200 PVR +72500 176000 7000 4200 PVR +82500 181000 7000 4200 PVR +72500 186000 7000 4200 PVR +82500 191000 7000 4200 PVSQ +81500 239500 6000 3500 PVSQ +81500 249500 6000 3500 PVR +495000 220000 7000 4200 PVSQ +470000 220000 7000 4200 PVR +85000 330000 6000 3500 PVSQ +85000 360000 6000 3500 PVR +582500 245000 8000 4200 PVSQ +592500 245000 8000 4200 PVR +602500 245000 8000 4200 PVR +535000 210000 6000 3500 PVSQ +545000 210000 6000 3500 PVR +355000 62500 6000 3500 PVSQ +355000 22500 6000 3500 PVR +105000 330000 7000 4200 PVSQ +115000 330000 7000 4200 PVR +172500 320000 6000 3500 PVSQ +182500 320000 6000 3500 PVR +192500 320000 6000 3500 PVR +202500 320000 6000 3500 PVR +202500 290000 6000 3500 PVR +192500 290000 6000 3500 PVR +182500 290000 6000 3500 PVR +172500 290000 6000 3500 PVR +495000 277500 7000 4200 PVSQ +470000 277500 7000 4200 PVR +570000 360000 8000 4200 PVSQ +560000 360000 8000 4200 PVR +550000 360000 8000 4200 PVR +280000 257500 6000 3500 PVSQ +280000 297500 6000 3500 PVR +116000 280000 6000 3500 PVSQ +76000 280000 6000 3500 PVR +490000 370000 6000 3500 PVSQ +475000 370000 6000 3500 PVR +530000 292500 8000 4200 PVSQ +540000 292500 8000 4200 PVR +550000 292500 8000 4200 PVR +652500 47500 6000 3500 PVSQ +652500 57500 6000 3500 PVR +652500 67500 6000 3500 PVR +652500 77500 6000 3500 PVR +652500 87500 6000 3500 PVR +652500 97500 6000 3500 PVR +652500 107500 6000 3500 PVR +652500 117500 6000 3500 PVR +652500 127500 6000 3500 PVR +652500 137500 6000 3500 PVR +652500 147500 6000 3500 PVR +652500 157500 6000 3500 PVR +652500 167500 6000 3500 PVR +652500 177500 6000 3500 PVR +652500 187500 6000 3500 PVR +652500 197500 6000 3500 PVR +652500 207500 6000 3500 PVR +652500 217500 6000 3500 PVR +652500 227500 6000 3500 PVR +652500 237500 6000 3500 PVR +652500 247500 6000 3500 PVR +652500 257500 6000 3500 PVR +652500 267500 6000 3500 PVR +652500 277500 6000 3500 PVR +652500 287500 6000 3500 PVR +652500 297500 6000 3500 PVR +652500 307500 6000 3500 PVR +652500 317500 6000 3500 PVR +652500 327500 6000 3500 PVR +652500 337500 6000 3500 PVR +652500 347500 6000 3500 PVR +652500 357500 6000 3500 PVR +642500 47500 6000 3500 PVR +642500 57500 6000 3500 PVR +642500 67500 6000 3500 PVR +642500 77500 6000 3500 PVR +642500 87500 6000 3500 PVR +642500 97500 6000 3500 PVR +642500 107500 6000 3500 PVR +642500 117500 6000 3500 PVR +642500 127500 6000 3500 PVR +642500 137500 6000 3500 PVR +642500 147500 6000 3500 PVR +642500 157500 6000 3500 PVR +642500 167500 6000 3500 PVR +642500 177500 6000 3500 PVR +642500 187500 6000 3500 PVR +642500 197500 6000 3500 PVR +642500 207500 6000 3500 PVR +642500 217500 6000 3500 PVR +642500 227500 6000 3500 PVR +642500 237500 6000 3500 PVR +642500 247500 6000 3500 PVR +642500 257500 6000 3500 PVR +642500 267500 6000 3500 PVR +642500 277500 6000 3500 PVR +642500 287500 6000 3500 PVR +642500 297500 6000 3500 PVR +642500 307500 6000 3500 PVR +642500 317500 6000 3500 PVR +642500 327500 6000 3500 PVR +642500 337500 6000 3500 PVR +642500 347500 6000 3500 PVR +642500 357500 6000 3500 PVR +632500 47500 6000 3500 PVR +632500 57500 6000 3500 PVR +632500 67500 6000 3500 PVR +632500 77500 6000 3500 PVR +632500 87500 6000 3500 PVR +632500 97500 6000 3500 PVR +632500 107500 6000 3500 PVR +632500 117500 6000 3500 PVR +632500 127500 6000 3500 PVR +632500 137500 6000 3500 PVR +632500 147500 6000 3500 PVR +632500 157500 6000 3500 PVR +632500 167500 6000 3500 PVR +632500 177500 6000 3500 PVR +632500 187500 6000 3500 PVR +632500 197500 6000 3500 PVR +632500 207500 6000 3500 PVR +632500 217500 6000 3500 PVR +632500 227500 6000 3500 PVR +632500 237500 6000 3500 PVR +632500 247500 6000 3500 PVR +632500 257500 6000 3500 PVR +632500 267500 6000 3500 PVR +632500 277500 6000 3500 PVR +632500 287500 6000 3500 PVR +632500 297500 6000 3500 PVR +632500 307500 6000 3500 PVR +632500 317500 6000 3500 PVR +632500 327500 6000 3500 PVR +632500 337500 6000 3500 PVR +632500 347500 6000 3500 PVR +632500 357500 6000 3500 PVR +662500 377500 12000 8000 PVR +662500 27500 12000 8000 PVR +332500 260000 6000 3500 PVSQ +322500 260000 6000 3500 PVR +447500 62500 6000 3500 PVSQ +447500 22500 6000 3500 PVR +300000 297500 6000 3500 PVSQ +300000 257500 6000 3500 PVR +475000 330000 6000 3500 PVSQ +490000 330000 6000 3500 PVR +55000 269500 7000 4200 PVSQ +55000 287200 7000 4200 PVR +64800 264600 7000 5200 PVR +64800 292200 7000 5200 PVR +582500 292500 8000 4200 PVSQ +592500 292500 8000 4200 PVR +602500 292500 8000 4200 PVR +562500 187500 6000 3500 PVSQ +592500 187500 6000 3500 PVR +577500 117500 6000 3500 PVSQ +587500 117500 6000 3500 PVR +597500 117500 6000 3500 PVR +607500 117500 6000 3500 PVR +607500 87500 6000 3500 PVR +597500 87500 6000 3500 PVR +587500 87500 6000 3500 PVR +577500 87500 6000 3500 PVR +582500 210000 8000 4200 PVSQ +592500 210000 8000 4200 PVR +602500 210000 8000 4200 PVR +577500 57500 6000 3500 PVSQ +587500 57500 6000 3500 PVR +597500 57500 6000 3500 PVR +607500 57500 6000 3500 PVR +607500 27500 6000 3500 PVR +597500 27500 6000 3500 PVR +587500 27500 6000 3500 PVR +577500 27500 6000 3500 PVR +322500 290000 6000 3500 PVSQ +332500 290000 6000 3500 PVR +87500 57500 6000 3500 PVSQ +97500 62500 6000 3500 PVR +87500 67500 6000 3500 PVR +97500 72500 6000 3500 PVR +87500 77500 6000 3500 PVR +97500 82500 6000 3500 PVR +87500 87500 6000 3500 PVR +97500 92500 6000 3500 PVR +62500 52500 14800 12800 PVR +62500 97600 14800 12800 PVR +74500 44500 8000 6000 PVR +74500 105600 8000 6000 PVR +360000 290000 6000 3500 PVSQ +370000 290000 6000 3500 PVR +380000 290000 6000 3500 PVR +390000 290000 6000 3500 PVR +390000 260000 6000 3500 PVR +380000 260000 6000 3500 PVR +370000 260000 6000 3500 PVR +360000 260000 6000 3500 PVR +317500 342500 6000 3500 PVSQ +327500 342500 6000 3500 PVR +137500 342500 6000 3500 PVSQ +127500 342500 6000 3500 PVR +540000 162500 6000 3500 PVSQ +535000 152500 6000 3500 PVR +530000 162500 6000 3500 PVR +525000 152500 6000 3500 PVR +520000 162500 6000 3500 PVR +515000 152500 6000 3500 PVR +510000 162500 6000 3500 PVR +505000 152500 6000 3500 PVR +500000 162500 6000 3500 PVR +495000 152500 6000 3500 PVR +490000 162500 6000 3500 PVR +485000 152500 6000 3500 PVR +480000 162500 6000 3500 PVR +475000 152500 6000 3500 PVR +470000 162500 6000 3500 PVR +465000 152500 6000 3500 PVR +460000 162500 6000 3500 PVR +455000 152500 6000 3500 PVR +450000 162500 6000 3500 PVR +445000 152500 6000 3500 PVR +440000 162500 6000 3500 PVR +435000 152500 6000 3500 PVR +430000 162500 6000 3500 PVR +425000 152500 6000 3500 PVR +420000 162500 6000 3500 PVR +415000 152500 6000 3500 PVR +410000 162500 6000 3500 PVR +405000 152500 6000 3500 PVR +400000 162500 6000 3500 PVR +395000 152500 6000 3500 PVR +390000 162500 6000 3500 PVR +385000 152500 6000 3500 PVR +380000 162500 6000 3500 PVR +375000 152500 6000 3500 PVR +370000 162500 6000 3500 PVR +365000 152500 6000 3500 PVR +340000 162500 6000 3500 PVR +335000 152500 6000 3500 PVR +330000 162500 6000 3500 PVR +325000 152500 6000 3500 PVR +320000 162500 6000 3500 PVR +315000 152500 6000 3500 PVR +310000 162500 6000 3500 PVR +305000 152500 6000 3500 PVR +300000 162500 6000 3500 PVR +295000 152500 6000 3500 PVR +290000 162500 6000 3500 PVR +285000 152500 6000 3500 PVR +280000 162500 6000 3500 PVR +275000 152500 6000 3500 PVR +270000 162500 6000 3500 PVR +265000 152500 6000 3500 PVR +260000 162500 6000 3500 PVR +255000 152500 6000 3500 PVR +250000 162500 6000 3500 PVR +245000 152500 6000 3500 PVR +240000 162500 6000 3500 PVR +235000 152500 6000 3500 PVR +230000 162500 6000 3500 PVR +225000 152500 6000 3500 PVR +220000 162500 6000 3500 PVR +215000 152500 6000 3500 PVR +210000 162500 6000 3500 PVR +205000 152500 6000 3500 PVR +200000 162500 6000 3500 PVR +195000 152500 6000 3500 PVR +190000 162500 6000 3500 PVR +185000 152500 6000 3500 PVR +180000 162500 6000 3500 PVR +175000 152500 6000 3500 PVR +170000 162500 6000 3500 PVR +165000 152500 6000 3500 PVR +573000 157500 8000 6000 PVR +352500 157500 12000 10000 PVR +132500 157500 12000 10000 PVR +137500 372500 6000 3500 PVSQ +127500 372500 6000 3500 PVR +172500 372500 6000 3500 PVSQ +182500 372500 6000 3500 PVR +192500 372500 6000 3500 PVR +202500 372500 6000 3500 PVR +212500 372500 6000 3500 PVR +222500 372500 6000 3500 PVR +232500 372500 6000 3500 PVR +242500 372500 6000 3500 PVR +252500 372500 6000 3500 PVR +262500 372500 6000 3500 PVR +272500 372500 6000 3500 PVR +282500 372500 6000 3500 PVR +282500 342500 6000 3500 PVR +272500 342500 6000 3500 PVR +262500 342500 6000 3500 PVR +252500 342500 6000 3500 PVR +242500 342500 6000 3500 PVR +232500 342500 6000 3500 PVR +222500 342500 6000 3500 PVR +212500 342500 6000 3500 PVR +202500 342500 6000 3500 PVR +192500 342500 6000 3500 PVR +182500 342500 6000 3500 PVR +172500 342500 6000 3500 PVR +115500 305500 6000 3500 PVSQ +75500 305500 6000 3500 PVR +57500 27500 12000 8000 PVR +57500 376200 12000 8000 PVR +662500 27500 12000 8000 PVR +662500 376200 12000 8000 PVR +475000 342500 6000 3500 PVR +490000 342500 6000 3500 PVR +560000 342500 6000 3500 PVR +602500 260000 6000 3500 PVR +540000 260000 6000 3500 PVR +540000 307500 6000 3500 PVR +602500 307500 6000 3500 PVR +592500 277500 6000 3500 PVR +612500 287500 6000 3500 PVR +540000 327500 6000 3500 PVR +395000 317500 6000 3500 PVR +475000 317500 6000 3500 PVR +622500 342500 6000 3500 PVR +612500 267500 6000 3500 PVR +592500 222500 6000 3500 PVR +462500 342500 6000 3500 PVR +562500 220000 6000 3500 PVR +622500 102500 6000 3500 PVR +647500 102500 6000 3500 PVR +567500 107500 6000 3500 PVR +597500 47500 6000 3500 PVR +537500 47500 6000 3500 PVR +487500 47500 6000 3500 PVR +517500 40000 6000 3500 PVR +577500 40000 6000 3500 PVR +402500 72500 6000 3500 PVR +487500 72500 6000 3500 PVR +537500 72500 6000 3500 PVR +592500 72500 6000 3500 PVR +497500 95000 6000 3500 PVR +140000 95000 6000 3500 PVR +175000 95000 6000 3500 PVR +237500 95000 6000 3500 PVR +322500 317500 6000 3500 PVR +327500 392500 6000 3500 PVR +240000 245000 6000 3500 PVR +270000 245000 6000 3500 PVR +140000 245000 6000 3500 PVR +130000 280000 6000 3500 PVR +130000 290000 6000 3500 PVR +252500 287500 4000 2000 PVR +427500 100000 6000 3500 PVR +525000 100000 6000 3500 PVR +315000 100000 6000 3500 PVR +447500 95000 6000 3500 PVR +202500 305000 6000 3500 PVR +127500 392500 6000 3500 PVR +212500 392500 6000 3500 PVR +272500 392500 6000 3500 PVR +360000 317500 6000 3500 PVR +77500 392500 6000 3500 PVR +487500 107500 4000 2000 PVR +620000 52500 4000 2000 PVR +622500 87500 4000 2000 PVR +537500 107500 4000 2000 PVR +637500 172500 4000 2000 PVR +262500 172500 4000 2000 PVR +597500 65000 4000 2000 PVR +407500 47500 6000 3500 PVR +205000 82500 4000 2000 PVR +402500 235000 4000 2000 PVR +295000 130000 4000 2000 PVR +335000 52500 4000 2000 PVR +527500 22500 4000 2000 PVR +615000 15000 4000 2000 PVR +477500 57500 4000 2000 PVR +622500 35000 4000 2000 PVR +647500 20000 4000 2000 PVR +557500 15000 4000 2000 PVR +502500 15000 4000 2000 PVR +547500 142500 4000 2000 PVR +610000 142500 4000 2000 PVR +615000 130000 4000 2000 PVR +555000 135000 4000 2000 PVR +195000 57500 4000 2000 PVR +242500 360000 4000 2000 PVR +210000 67500 4000 2000 PVR +115000 112500 4000 2000 PVR +507500 107500 4000 2000 PVR +417500 135000 4000 2000 PVR +200000 62500 4000 2000 PVR +512500 80000 4000 2000 PVR +557500 237500 4000 2000 PVR +447500 30000 4000 2000 PVR +355000 130000 4000 2000 PVR +272500 352500 6000 3500 PVR +95000 245000 4000 2000 PVR +115000 245000 4000 2000 PVR +582500 285000 4000 2000 PVR +110000 367500 4000 2000 PVR +182500 385000 4000 2000 PVR +252500 385000 4000 2000 PVR +212500 352500 6000 3500 PVR +232500 352500 6000 3500 PVR +192500 360000 4000 2000 PVR +417500 107500 4000 2000 PVR +447500 107500 4000 2000 PVR +472500 107500 4000 2000 PVR +467500 15000 4000 2000 PVR +255000 120000 4000 2000 PVR +265000 120000 4000 2000 PVR +265000 130000 4000 2000 PVR +250000 130000 4000 2000 PVR +260000 105000 4000 2000 PVR +245000 105000 4000 2000 PVR +285000 120000 4000 2000 PVR +300000 120000 4000 2000 PVR +290000 125000 4000 2000 PVR +310000 125000 4000 2000 PVR +295000 137500 4000 2000 PVR +322500 137500 4000 2000 PVR +145000 137500 4000 2000 PVR +155000 125000 4000 2000 PVR +160000 100000 4000 2000 PVR +300000 100000 4000 2000 PVR +170000 142500 4000 2000 PVR +280000 142500 4000 2000 PVR +180000 132500 4000 2000 PVR +275000 130000 4000 2000 PVR +190000 105000 4000 2000 PVR +270000 105000 4000 2000 PVR +200000 255000 4000 2000 PVR +270000 255000 4000 2000 PVR +322500 245000 6000 3500 PVR +350000 250000 4000 2000 PVR +202500 282500 4000 2000 PVR +220000 282500 4000 2000 PVR +257500 250000 4000 2000 PVR +210000 250000 4000 2000 PVR +257500 197500 4000 2000 PVR +220000 225000 6000 3500 PVR +240000 225000 6000 3500 PVR +300000 212500 4000 2000 PVR +215000 212500 4000 2000 PVR +310000 217500 4000 2000 PVR +225000 217500 4000 2000 PVR +225000 195000 4000 2000 PVR +315000 192500 4000 2000 PVR +150000 187500 4000 2000 PVR +325000 187500 4000 2000 PVR +235000 187500 4000 2000 PVR +360000 252500 4000 2000 PVR +292500 222500 4000 2000 PVR +170000 217500 4000 2000 PVR +210000 230000 4000 2000 PVR +390000 225000 4000 2000 PVR +257500 277500 4000 2000 PVR +385000 277500 4000 2000 PVR +155000 282500 4000 2000 PVR +340000 282500 4000 2000 PVR +230000 182500 4000 2000 PVR +245000 182500 4000 2000 PVR +227500 90000 4000 2000 PVR +255000 90000 4000 2000 PVR +250000 172500 4000 2000 PVR +190000 175000 4000 2000 PVR +180000 170000 4000 2000 PVR +430000 197500 4000 2000 PVR +332500 270000 6000 3500 PVR +290000 265000 4000 2000 PVR +480000 265000 4000 2000 PVR +470000 290000 6000 3500 PVR +462500 282500 4000 2000 PVR +300000 177500 4000 2000 PVR +485000 177500 4000 2000 PVR +305000 85000 4000 2000 PVR +275000 85000 4000 2000 PVR +330000 80000 4000 2000 PVR +285000 80000 4000 2000 PVR +350000 220000 4000 2000 PVR +365000 220000 4000 2000 PVR +355000 385000 4000 2000 PVR +297500 352500 6000 3500 PVR +375000 360000 4000 2000 PVR +107500 147500 4000 2000 PVR +122000 160500 4000 2000 PVR +450000 182500 4000 2000 PVR +262500 352500 4000 2000 PVR +327500 352500 4000 2000 PVR +400000 225000 4000 2000 PVR +405000 215000 4000 2000 PVR +410000 205000 4000 2000 PVR +105000 270000 4000 2000 PVR +415000 272500 4000 2000 PVR +402500 250000 4000 2000 PVR +222500 310000 4000 2000 PVR +402500 310000 4000 2000 PVR +520000 260000 4000 2000 PVR +520000 337500 4000 2000 PVR +210000 322500 4000 2000 PVR +570000 322500 4000 2000 PVR +570000 245000 4000 2000 PVR +530000 327500 4000 2000 PVR +282500 330000 4000 2000 PVR +327500 305000 4000 2000 PVR +49500 330000 4000 2000 PVR +130000 255000 6000 3500 PVR +76500 257000 4000 2000 PVR +90500 305500 4000 2000 PVR +592500 360000 6000 3500 PVR +405000 342500 6000 3500 PVR +335000 62500 800 400 DH +335000 22500 800 400 DH +297500 342500 800 400 DH +297500 372500 800 400 DH +415000 360000 800 400 DH +405000 360000 800 400 DH +395000 360000 800 400 DH +447500 122500 800 400 DH +447500 82500 800 400 DH +397500 117500 800 400 DH +407500 117500 800 400 DH +417500 117500 800 400 DH +427500 117500 800 400 DH +427500 87500 800 400 DH +417500 87500 800 400 DH +407500 87500 800 400 DH +397500 87500 800 400 DH +557500 122500 800 400 DH +557500 82500 800 400 DH +537500 62500 800 400 DH +537500 22500 800 400 DH +487500 57500 800 400 DH +497500 57500 800 400 DH +507500 57500 800 400 DH +517500 57500 800 400 DH +517500 27500 800 400 DH +507500 27500 800 400 DH +497500 27500 800 400 DH +487500 27500 800 400 DH +467500 62500 800 400 DH +467500 22500 800 400 DH +467500 122500 800 400 DH +467500 82500 800 400 DH +537500 122500 800 400 DH +537500 82500 800 400 DH +487500 117500 800 400 DH +497500 117500 800 400 DH +507500 117500 800 400 DH +517500 117500 800 400 DH +517500 87500 800 400 DH +507500 87500 800 400 DH +497500 87500 800 400 DH +487500 87500 800 400 DH +397500 57500 800 400 DH +407500 57500 800 400 DH +417500 57500 800 400 DH +427500 57500 800 400 DH +427500 27500 800 400 DH +417500 27500 800 400 DH +407500 27500 800 400 DH +397500 27500 800 400 DH +557500 62500 800 400 DH +557500 22500 800 400 DH +157500 342500 800 400 DH +157500 372500 800 400 DH +57500 239500 800 400 DH +57500 249500 800 400 DH +530000 245000 800 400 DH +540000 245000 800 400 DH +550000 245000 800 400 DH +245000 57500 800 400 DH +255000 57500 800 400 DH +265000 57500 800 400 DH +275000 57500 800 400 DH +285000 57500 800 400 DH +295000 57500 800 400 DH +305000 57500 800 400 DH +315000 57500 800 400 DH +315000 27500 800 400 DH +305000 27500 800 400 DH +295000 27500 800 400 DH +285000 27500 800 400 DH +275000 27500 800 400 DH +265000 27500 800 400 DH +255000 27500 800 400 DH +245000 27500 800 400 DH +317500 372500 800 400 DH +327500 372500 800 400 DH +420000 205000 800 400 DH +430000 205000 800 400 DH +420000 215000 800 400 DH +430000 215000 800 400 DH +420000 225000 800 400 DH +430000 225000 800 400 DH +420000 235000 800 400 DH +430000 235000 800 400 DH +140000 265000 800 400 DH +150000 265000 800 400 DH +160000 265000 800 400 DH +170000 265000 800 400 DH +180000 265000 800 400 DH +190000 265000 800 400 DH +200000 265000 800 400 DH +210000 265000 800 400 DH +220000 265000 800 400 DH +230000 265000 800 400 DH +240000 265000 800 400 DH +250000 265000 800 400 DH +250000 205000 800 400 DH +240000 205000 800 400 DH +230000 205000 800 400 DH +220000 205000 800 400 DH +210000 205000 800 400 DH +200000 205000 800 400 DH +190000 205000 800 400 DH +180000 205000 800 400 DH +170000 205000 800 400 DH +160000 205000 800 400 DH +150000 205000 800 400 DH +140000 205000 800 400 DH +280000 235000 800 400 DH +290000 235000 800 400 DH +300000 235000 800 400 DH +310000 235000 800 400 DH +320000 235000 800 400 DH +330000 235000 800 400 DH +340000 235000 800 400 DH +350000 235000 800 400 DH +360000 235000 800 400 DH +370000 235000 800 400 DH +380000 235000 800 400 DH +390000 235000 800 400 DH +390000 205000 800 400 DH +380000 205000 800 400 DH +370000 205000 800 400 DH +360000 205000 800 400 DH +350000 205000 800 400 DH +340000 205000 800 400 DH +330000 205000 800 400 DH +320000 205000 800 400 DH +310000 205000 800 400 DH +300000 205000 800 400 DH +290000 205000 800 400 DH +280000 205000 800 400 DH +77500 124000 800 400 DH +77500 218000 800 400 DH +82500 151000 800 400 DH +72500 156000 800 400 DH +82500 161000 800 400 DH +72500 166000 800 400 DH +82500 171000 800 400 DH +72500 176000 800 400 DH +82500 181000 800 400 DH +72500 186000 800 400 DH +82500 191000 800 400 DH +81500 239500 800 400 DH +81500 249500 800 400 DH +495000 220000 800 400 DH +470000 220000 800 400 DH +85000 330000 800 400 DH +85000 360000 800 400 DH +582500 245000 800 400 DH +592500 245000 800 400 DH +602500 245000 800 400 DH +535000 210000 800 400 DH +545000 210000 800 400 DH +355000 62500 800 400 DH +355000 22500 800 400 DH +105000 330000 800 400 DH +115000 330000 800 400 DH +172500 320000 800 400 DH +182500 320000 800 400 DH +192500 320000 800 400 DH +202500 320000 800 400 DH +202500 290000 800 400 DH +192500 290000 800 400 DH +182500 290000 800 400 DH +172500 290000 800 400 DH +495000 277500 800 400 DH +470000 277500 800 400 DH +570000 360000 800 400 DH +560000 360000 800 400 DH +550000 360000 800 400 DH +280000 257500 800 400 DH +280000 297500 800 400 DH +116000 280000 800 400 DH +76000 280000 800 400 DH +490000 370000 800 400 DH +475000 370000 800 400 DH +530000 292500 800 400 DH +540000 292500 800 400 DH +550000 292500 800 400 DH +652500 47500 800 400 DH +652500 57500 800 400 DH +652500 67500 800 400 DH +652500 77500 800 400 DH +652500 87500 800 400 DH +652500 97500 800 400 DH +652500 107500 800 400 DH +652500 117500 800 400 DH +652500 127500 800 400 DH +652500 137500 800 400 DH +652500 147500 800 400 DH +652500 157500 800 400 DH +652500 167500 800 400 DH +652500 177500 800 400 DH +652500 187500 800 400 DH +652500 197500 800 400 DH +652500 207500 800 400 DH +652500 217500 800 400 DH +652500 227500 800 400 DH +652500 237500 800 400 DH +652500 247500 800 400 DH +652500 257500 800 400 DH +652500 267500 800 400 DH +652500 277500 800 400 DH +652500 287500 800 400 DH +652500 297500 800 400 DH +652500 307500 800 400 DH +652500 317500 800 400 DH +652500 327500 800 400 DH +652500 337500 800 400 DH +652500 347500 800 400 DH +652500 357500 800 400 DH +642500 47500 800 400 DH +642500 57500 800 400 DH +642500 67500 800 400 DH +642500 77500 800 400 DH +642500 87500 800 400 DH +642500 97500 800 400 DH +642500 107500 800 400 DH +642500 117500 800 400 DH +642500 127500 800 400 DH +642500 137500 800 400 DH +642500 147500 800 400 DH +642500 157500 800 400 DH +642500 167500 800 400 DH +642500 177500 800 400 DH +642500 187500 800 400 DH +642500 197500 800 400 DH +642500 207500 800 400 DH +642500 217500 800 400 DH +642500 227500 800 400 DH +642500 237500 800 400 DH +642500 247500 800 400 DH +642500 257500 800 400 DH +642500 267500 800 400 DH +642500 277500 800 400 DH +642500 287500 800 400 DH +642500 297500 800 400 DH +642500 307500 800 400 DH +642500 317500 800 400 DH +642500 327500 800 400 DH +642500 337500 800 400 DH +642500 347500 800 400 DH +642500 357500 800 400 DH +632500 47500 800 400 DH +632500 57500 800 400 DH +632500 67500 800 400 DH +632500 77500 800 400 DH +632500 87500 800 400 DH +632500 97500 800 400 DH +632500 107500 800 400 DH +632500 117500 800 400 DH +632500 127500 800 400 DH +632500 137500 800 400 DH +632500 147500 800 400 DH +632500 157500 800 400 DH +632500 167500 800 400 DH +632500 177500 800 400 DH +632500 187500 800 400 DH +632500 197500 800 400 DH +632500 207500 800 400 DH +632500 217500 800 400 DH +632500 227500 800 400 DH +632500 237500 800 400 DH +632500 247500 800 400 DH +632500 257500 800 400 DH +632500 267500 800 400 DH +632500 277500 800 400 DH +632500 287500 800 400 DH +632500 297500 800 400 DH +632500 307500 800 400 DH +632500 317500 800 400 DH +632500 327500 800 400 DH +632500 337500 800 400 DH +632500 347500 800 400 DH +632500 357500 800 400 DH +662500 377500 800 400 DH +662500 27500 800 400 DH +332500 260000 800 400 DH +322500 260000 800 400 DH +447500 62500 800 400 DH +447500 22500 800 400 DH +300000 297500 800 400 DH +300000 257500 800 400 DH +475000 330000 800 400 DH +490000 330000 800 400 DH +55000 269500 800 400 DH +55000 287200 800 400 DH +64800 264600 800 400 DH +64800 292200 800 400 DH +582500 292500 800 400 DH +592500 292500 800 400 DH +602500 292500 800 400 DH +562500 187500 800 400 DH +592500 187500 800 400 DH +577500 117500 800 400 DH +587500 117500 800 400 DH +597500 117500 800 400 DH +607500 117500 800 400 DH +607500 87500 800 400 DH +597500 87500 800 400 DH +587500 87500 800 400 DH +577500 87500 800 400 DH +582500 210000 800 400 DH +592500 210000 800 400 DH +602500 210000 800 400 DH +577500 57500 800 400 DH +587500 57500 800 400 DH +597500 57500 800 400 DH +607500 57500 800 400 DH +607500 27500 800 400 DH +597500 27500 800 400 DH +587500 27500 800 400 DH +577500 27500 800 400 DH +322500 290000 800 400 DH +332500 290000 800 400 DH +87500 57500 800 400 DH +97500 62500 800 400 DH +87500 67500 800 400 DH +97500 72500 800 400 DH +87500 77500 800 400 DH +97500 82500 800 400 DH +87500 87500 800 400 DH +97500 92500 800 400 DH +62500 52500 800 400 DH +62500 97600 800 400 DH +74500 44500 800 400 DH +74500 105600 800 400 DH +360000 290000 800 400 DH +370000 290000 800 400 DH +380000 290000 800 400 DH +390000 290000 800 400 DH +390000 260000 800 400 DH +380000 260000 800 400 DH +370000 260000 800 400 DH +360000 260000 800 400 DH +317500 342500 800 400 DH +327500 342500 800 400 DH +137500 342500 800 400 DH +127500 342500 800 400 DH +540000 162500 800 400 DH +535000 152500 800 400 DH +530000 162500 800 400 DH +525000 152500 800 400 DH +520000 162500 800 400 DH +515000 152500 800 400 DH +510000 162500 800 400 DH +505000 152500 800 400 DH +500000 162500 800 400 DH +495000 152500 800 400 DH +490000 162500 800 400 DH +485000 152500 800 400 DH +480000 162500 800 400 DH +475000 152500 800 400 DH +470000 162500 800 400 DH +465000 152500 800 400 DH +460000 162500 800 400 DH +455000 152500 800 400 DH +450000 162500 800 400 DH +445000 152500 800 400 DH +440000 162500 800 400 DH +435000 152500 800 400 DH +430000 162500 800 400 DH +425000 152500 800 400 DH +420000 162500 800 400 DH +415000 152500 800 400 DH +410000 162500 800 400 DH +405000 152500 800 400 DH +400000 162500 800 400 DH +395000 152500 800 400 DH +390000 162500 800 400 DH +385000 152500 800 400 DH +380000 162500 800 400 DH +375000 152500 800 400 DH +370000 162500 800 400 DH +365000 152500 800 400 DH +340000 162500 800 400 DH +335000 152500 800 400 DH +330000 162500 800 400 DH +325000 152500 800 400 DH +320000 162500 800 400 DH +315000 152500 800 400 DH +310000 162500 800 400 DH +305000 152500 800 400 DH +300000 162500 800 400 DH +295000 152500 800 400 DH +290000 162500 800 400 DH +285000 152500 800 400 DH +280000 162500 800 400 DH +275000 152500 800 400 DH +270000 162500 800 400 DH +265000 152500 800 400 DH +260000 162500 800 400 DH +255000 152500 800 400 DH +250000 162500 800 400 DH +245000 152500 800 400 DH +240000 162500 800 400 DH +235000 152500 800 400 DH +230000 162500 800 400 DH +225000 152500 800 400 DH +220000 162500 800 400 DH +215000 152500 800 400 DH +210000 162500 800 400 DH +205000 152500 800 400 DH +200000 162500 800 400 DH +195000 152500 800 400 DH +190000 162500 800 400 DH +185000 152500 800 400 DH +180000 162500 800 400 DH +175000 152500 800 400 DH +170000 162500 800 400 DH +165000 152500 800 400 DH +573000 157500 800 400 DH +352500 157500 800 400 DH +132500 157500 800 400 DH +137500 372500 800 400 DH +127500 372500 800 400 DH +172500 372500 800 400 DH +182500 372500 800 400 DH +192500 372500 800 400 DH +202500 372500 800 400 DH +212500 372500 800 400 DH +222500 372500 800 400 DH +232500 372500 800 400 DH +242500 372500 800 400 DH +252500 372500 800 400 DH +262500 372500 800 400 DH +272500 372500 800 400 DH +282500 372500 800 400 DH +282500 342500 800 400 DH +272500 342500 800 400 DH +262500 342500 800 400 DH +252500 342500 800 400 DH +242500 342500 800 400 DH +232500 342500 800 400 DH +222500 342500 800 400 DH +212500 342500 800 400 DH +202500 342500 800 400 DH +192500 342500 800 400 DH +182500 342500 800 400 DH +172500 342500 800 400 DH +115500 305500 800 400 DH +75500 305500 800 400 DH +57500 27500 800 400 DH +57500 376200 800 400 DH +662500 27500 800 400 DH +662500 376200 800 400 DH +475000 342500 800 400 DH +490000 342500 800 400 DH +560000 342500 800 400 DH +602500 260000 800 400 DH +540000 260000 800 400 DH +540000 307500 800 400 DH +602500 307500 800 400 DH +592500 277500 800 400 DH +612500 287500 800 400 DH +540000 327500 800 400 DH +395000 317500 800 400 DH +475000 317500 800 400 DH +622500 342500 800 400 DH +612500 267500 800 400 DH +592500 222500 800 400 DH +462500 342500 800 400 DH +562500 220000 800 400 DH +622500 102500 800 400 DH +647500 102500 800 400 DH +567500 107500 800 400 DH +597500 47500 800 400 DH +537500 47500 800 400 DH +487500 47500 800 400 DH +517500 40000 800 400 DH +577500 40000 800 400 DH +402500 72500 800 400 DH +487500 72500 800 400 DH +537500 72500 800 400 DH +592500 72500 800 400 DH +497500 95000 800 400 DH +140000 95000 800 400 DH +175000 95000 800 400 DH +237500 95000 800 400 DH +322500 317500 800 400 DH +327500 392500 800 400 DH +240000 245000 800 400 DH +270000 245000 800 400 DH +140000 245000 800 400 DH +130000 280000 800 400 DH +130000 290000 800 400 DH +252500 287500 800 400 DH +427500 100000 800 400 DH +525000 100000 800 400 DH +315000 100000 800 400 DH +447500 95000 800 400 DH +202500 305000 800 400 DH +127500 392500 800 400 DH +212500 392500 800 400 DH +272500 392500 800 400 DH +360000 317500 800 400 DH +77500 392500 800 400 DH +487500 107500 800 400 DH +620000 52500 800 400 DH +622500 87500 800 400 DH +537500 107500 800 400 DH +637500 172500 800 400 DH +262500 172500 800 400 DH +597500 65000 800 400 DH +407500 47500 800 400 DH +205000 82500 800 400 DH +402500 235000 800 400 DH +295000 130000 800 400 DH +335000 52500 800 400 DH +527500 22500 800 400 DH +615000 15000 800 400 DH +477500 57500 800 400 DH +622500 35000 800 400 DH +647500 20000 800 400 DH +557500 15000 800 400 DH +502500 15000 800 400 DH +547500 142500 800 400 DH +610000 142500 800 400 DH +615000 130000 800 400 DH +555000 135000 800 400 DH +195000 57500 800 400 DH +242500 360000 800 400 DH +210000 67500 800 400 DH +115000 112500 800 400 DH +507500 107500 800 400 DH +417500 135000 800 400 DH +200000 62500 800 400 DH +512500 80000 800 400 DH +557500 237500 800 400 DH +447500 30000 800 400 DH +355000 130000 800 400 DH +272500 352500 800 400 DH +95000 245000 800 400 DH +115000 245000 800 400 DH +582500 285000 800 400 DH +110000 367500 800 400 DH +182500 385000 800 400 DH +252500 385000 800 400 DH +212500 352500 800 400 DH +232500 352500 800 400 DH +192500 360000 800 400 DH +417500 107500 800 400 DH +447500 107500 800 400 DH +472500 107500 800 400 DH +467500 15000 800 400 DH +255000 120000 800 400 DH +265000 120000 800 400 DH +265000 130000 800 400 DH +250000 130000 800 400 DH +260000 105000 800 400 DH +245000 105000 800 400 DH +285000 120000 800 400 DH +300000 120000 800 400 DH +290000 125000 800 400 DH +310000 125000 800 400 DH +295000 137500 800 400 DH +322500 137500 800 400 DH +145000 137500 800 400 DH +155000 125000 800 400 DH +160000 100000 800 400 DH +300000 100000 800 400 DH +170000 142500 800 400 DH +280000 142500 800 400 DH +180000 132500 800 400 DH +275000 130000 800 400 DH +190000 105000 800 400 DH +270000 105000 800 400 DH +200000 255000 800 400 DH +270000 255000 800 400 DH +322500 245000 800 400 DH +350000 250000 800 400 DH +202500 282500 800 400 DH +220000 282500 800 400 DH +257500 250000 800 400 DH +210000 250000 800 400 DH +257500 197500 800 400 DH +220000 225000 800 400 DH +240000 225000 800 400 DH +300000 212500 800 400 DH +215000 212500 800 400 DH +310000 217500 800 400 DH +225000 217500 800 400 DH +225000 195000 800 400 DH +315000 192500 800 400 DH +150000 187500 800 400 DH +325000 187500 800 400 DH +235000 187500 800 400 DH +360000 252500 800 400 DH +292500 222500 800 400 DH +170000 217500 800 400 DH +210000 230000 800 400 DH +390000 225000 800 400 DH +257500 277500 800 400 DH +385000 277500 800 400 DH +155000 282500 800 400 DH +340000 282500 800 400 DH +230000 182500 800 400 DH +245000 182500 800 400 DH +227500 90000 800 400 DH +255000 90000 800 400 DH +250000 172500 800 400 DH +190000 175000 800 400 DH +180000 170000 800 400 DH +430000 197500 800 400 DH +332500 270000 800 400 DH +290000 265000 800 400 DH +480000 265000 800 400 DH +470000 290000 800 400 DH +462500 282500 800 400 DH +300000 177500 800 400 DH +485000 177500 800 400 DH +305000 85000 800 400 DH +275000 85000 800 400 DH +330000 80000 800 400 DH +285000 80000 800 400 DH +350000 220000 800 400 DH +365000 220000 800 400 DH +355000 385000 800 400 DH +297500 352500 800 400 DH +375000 360000 800 400 DH +107500 147500 800 400 DH +122000 160500 800 400 DH +450000 182500 800 400 DH +262500 352500 800 400 DH +327500 352500 800 400 DH +400000 225000 800 400 DH +405000 215000 800 400 DH +410000 205000 800 400 DH +105000 270000 800 400 DH +415000 272500 800 400 DH +402500 250000 800 400 DH +222500 310000 800 400 DH +402500 310000 800 400 DH +520000 260000 800 400 DH +520000 337500 800 400 DH +210000 322500 800 400 DH +570000 322500 800 400 DH +570000 245000 800 400 DH +530000 327500 800 400 DH +282500 330000 800 400 DH +327500 305000 800 400 DH +49500 330000 800 400 DH +130000 255000 800 400 DH +76500 257000 800 400 DH +90500 305500 800 400 DH +592500 360000 800 400 DH +405000 342500 800 400 DH +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +grestore +gsave +0.00072 0.00072 scale +214900 579300 translate +0.500 0.500 scale +842140 0 translate +90 rotate +0 842140 translate +1 -1 scale +400 400 translate +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +335000 32500 335000 22500 2000 L +335000 62500 335000 52500 2000 L +340000 52500 330000 52500 2000 L +340000 32500 340000 52500 2000 L +330000 32500 340000 32500 2000 L +330000 52500 330000 32500 2000 L +333000 48500 333000 50500 400 L +333000 48500 333500 48000 400 L +333500 48000 334500 48000 400 L +335000 48500 334500 48000 400 L +335000 48500 335000 50000 400 L +333000 50000 337000 50000 400 L +335000 50000 337000 48000 400 L +337000 45299 337000 46299 400 L +333000 45799 337000 45799 400 L +334000 46799 333000 45799 400 L +333500 44098 333000 43598 400 L +333000 42598 333000 43598 400 L +333000 42598 333500 42098 400 L +333500 42098 336500 42098 400 L +337000 42598 336500 42098 400 L +337000 42598 337000 43598 400 L +336500 44098 337000 43598 400 L +335000 42098 335000 43598 400 L +297500 342500 297500 352500 1000 L +297500 362500 297500 372500 1000 L +297500 352500 302500 362500 1000 L +302500 362500 292500 362500 1000 L +292500 362500 297500 352500 1000 L +302500 352500 292500 352500 1000 L +298500 365000 302500 365000 400 L +302500 366500 302000 367000 400 L +299000 367000 302000 367000 400 L +298500 366500 299000 367000 400 L +298500 364500 298500 366500 400 L +302500 364500 302500 366500 400 L +302000 368201 302500 368701 400 L +302500 368701 302500 370201 400 L +302500 370201 302000 370701 400 L +301000 370701 302000 370701 400 L +298500 368201 301000 370701 400 L +298500 368201 298500 370701 400 L +425000 372000 385000 372000 2000 L +385000 372000 385000 354000 2000 L +385000 354000 425000 354000 2000 L +425000 354000 425000 372000 2000 L +425000 372000 385000 372000 2000 L +385000 372000 385000 366000 2000 L +385000 366000 425000 366000 2000 L +425000 366000 425000 372000 2000 L +412000 372000 412000 366000 1000 L +398000 372000 398000 366000 1000 L +425000 375500 425000 379000 400 L +425000 375500 424500 375000 400 L +423500 375000 424500 375000 400 L +423500 375000 423000 375500 400 L +423000 375500 423000 379000 400 L +421799 378500 421299 379000 400 L +419799 379000 421299 379000 400 L +419799 379000 419299 378500 400 L +419299 377500 419299 378500 400 L +421799 375000 419299 377500 400 L +419299 375000 421799 375000 400 L +447500 92500 447500 82500 2000 L +447500 122500 447500 112500 2000 L +452500 112500 442500 112500 2000 L +452500 92500 452500 112500 2000 L +442500 92500 452500 92500 2000 L +442500 112500 442500 92500 2000 L +445500 108500 445500 110500 400 L +445500 108500 446000 108000 400 L +446000 108000 447000 108000 400 L +447500 108500 447000 108000 400 L +447500 108500 447500 110000 400 L +445500 110000 449500 110000 400 L +447500 110000 449500 108000 400 L +449500 106799 447000 104299 400 L +445500 104299 447000 104299 400 L +445500 104299 445500 106799 400 L +392500 122500 432500 122500 1000 L +432500 122500 432500 82500 1000 L +432500 82500 392500 82500 1000 L +392500 122500 392500 107500 1000 L +392500 97500 392500 82500 1000 L +392500 102500 5000 5000 1000 90 180 A +402500 100500 402500 104000 400 L +402500 104000 403000 104500 400 L +403000 104500 404000 104500 400 L +404000 104500 404500 104000 400 L +404500 100500 404500 104000 400 L +406201 104500 407201 104500 400 L +406701 100500 406701 104500 400 L +405701 101500 406701 100500 400 L +408402 100500 410402 100500 400 L +408402 100500 408402 102500 400 L +408402 102500 408902 102000 400 L +408902 102000 409902 102000 400 L +409902 102000 410402 102500 400 L +410402 102500 410402 104000 400 L +409902 104500 410402 104000 400 L +408902 104500 409902 104500 400 L +408402 104000 408902 104500 400 L +557500 92500 557500 82500 2000 L +557500 122500 557500 112500 2000 L +562500 112500 552500 112500 2000 L +562500 92500 562500 112500 2000 L +552500 92500 562500 92500 2000 L +552500 112500 552500 92500 2000 L +555500 108500 555500 110500 400 L +555500 108500 556000 108000 400 L +556000 108000 557000 108000 400 L +557500 108500 557000 108000 400 L +557500 108500 557500 110000 400 L +555500 110000 559500 110000 400 L +557500 110000 559500 108000 400 L +559000 106799 559500 106299 400 L +558000 106799 559000 106799 400 L +558000 106799 557500 106299 400 L +557500 105299 557500 106299 400 L +557500 105299 558000 104799 400 L +558000 104799 559000 104799 400 L +559500 105299 559000 104799 400 L +559500 105299 559500 106299 400 L +557000 106799 557500 106299 400 L +556000 106799 557000 106799 400 L +556000 106799 555500 106299 400 L +555500 105299 555500 106299 400 L +555500 105299 556000 104799 400 L +556000 104799 557000 104799 400 L +557500 105299 557000 104799 400 L +537500 32500 537500 22500 2000 L +537500 62500 537500 52500 2000 L +542500 52500 532500 52500 2000 L +542500 32500 542500 52500 2000 L +532500 32500 542500 32500 2000 L +532500 52500 532500 32500 2000 L +535500 48500 535500 50500 400 L +535500 48500 536000 48000 400 L +536000 48000 537000 48000 400 L +537500 48500 537000 48000 400 L +537500 48500 537500 50000 400 L +535500 50000 539500 50000 400 L +537500 50000 539500 48000 400 L +539500 45299 539500 46299 400 L +535500 45799 539500 45799 400 L +536500 46799 535500 45799 400 L +482500 62500 522500 62500 1000 L +522500 62500 522500 22500 1000 L +522500 22500 482500 22500 1000 L +482500 62500 482500 47500 1000 L +482500 37500 482500 22500 1000 L +482500 42500 5000 5000 1000 90 180 A +492500 40500 492500 44000 400 L +492500 44000 493000 44500 400 L +493000 44500 494000 44500 400 L +494000 44500 494500 44000 400 L +494500 40500 494500 44000 400 L +496201 44500 497201 44500 400 L +496701 40500 496701 44500 400 L +495701 41500 496701 40500 400 L +498402 41000 498902 40500 400 L +498902 40500 500402 40500 400 L +500402 40500 500902 41000 400 L +500902 41000 500902 42000 400 L +498402 44500 500902 42000 400 L +498402 44500 500902 44500 400 L +467500 32500 467500 22500 2000 L +467500 62500 467500 52500 2000 L +472500 52500 462500 52500 2000 L +472500 32500 472500 52500 2000 L +462500 32500 472500 32500 2000 L +462500 52500 462500 32500 2000 L +465500 48500 465500 50500 400 L +465500 48500 466000 48000 400 L +466000 48000 467000 48000 400 L +467500 48500 467000 48000 400 L +467500 48500 467500 50000 400 L +465500 50000 469500 50000 400 L +467500 50000 469500 48000 400 L +466000 46799 465500 46299 400 L +465500 44799 465500 46299 400 L +465500 44799 466000 44299 400 L +466000 44299 467000 44299 400 L +469500 46799 467000 44299 400 L +469500 44299 469500 46799 400 L +467500 92500 467500 82500 2000 L +467500 122500 467500 112500 2000 L +472500 112500 462500 112500 2000 L +472500 92500 472500 112500 2000 L +462500 92500 472500 92500 2000 L +462500 112500 462500 92500 2000 L +465500 108500 465500 110500 400 L +465500 108500 466000 108000 400 L +466000 108000 467000 108000 400 L +467500 108500 467000 108000 400 L +467500 108500 467500 110000 400 L +465500 110000 469500 110000 400 L +467500 110000 469500 108000 400 L +465500 105299 466000 104799 400 L +465500 105299 465500 106299 400 L +466000 106799 465500 106299 400 L +466000 106799 469000 106799 400 L +469000 106799 469500 106299 400 L +467500 105299 468000 104799 400 L +467500 105299 467500 106799 400 L +469500 105299 469500 106299 400 L +469500 105299 469000 104799 400 L +468000 104799 469000 104799 400 L +537500 92500 537500 82500 2000 L +537500 122500 537500 112500 2000 L +542500 112500 532500 112500 2000 L +542500 92500 542500 112500 2000 L +532500 92500 542500 92500 2000 L +532500 112500 532500 92500 2000 L +535500 108500 535500 110500 400 L +535500 108500 536000 108000 400 L +536000 108000 537000 108000 400 L +537500 108500 537000 108000 400 L +537500 108500 537500 110000 400 L +535500 110000 539500 110000 400 L +537500 110000 539500 108000 400 L +535500 104799 535500 106799 400 L +535500 106799 537500 106799 400 L +537500 106799 537000 106299 400 L +537000 105299 537000 106299 400 L +537000 105299 537500 104799 400 L +537500 104799 539000 104799 400 L +539500 105299 539000 104799 400 L +539500 105299 539500 106299 400 L +539000 106799 539500 106299 400 L +482500 122500 522500 122500 1000 L +522500 122500 522500 82500 1000 L +522500 82500 482500 82500 1000 L +482500 122500 482500 107500 1000 L +482500 97500 482500 82500 1000 L +482500 102500 5000 5000 1000 90 180 A +492500 100500 492500 104000 400 L +492500 104000 493000 104500 400 L +493000 104500 494000 104500 400 L +494000 104500 494500 104000 400 L +494500 100500 494500 104000 400 L +496201 104500 497201 104500 400 L +496701 100500 496701 104500 400 L +495701 101500 496701 100500 400 L +498402 102500 500402 100500 400 L +498402 102500 500902 102500 400 L +500402 100500 500402 104500 400 L +392500 62500 432500 62500 1000 L +432500 62500 432500 22500 1000 L +432500 22500 392500 22500 1000 L +392500 62500 392500 47500 1000 L +392500 37500 392500 22500 1000 L +392500 42500 5000 5000 1000 90 180 A +402500 40500 402500 44000 400 L +402500 44000 403000 44500 400 L +403000 44500 404000 44500 400 L +404000 44500 404500 44000 400 L +404500 40500 404500 44000 400 L +406201 44500 407201 44500 400 L +406701 40500 406701 44500 400 L +405701 41500 406701 40500 400 L +408402 41000 408902 40500 400 L +408902 40500 409902 40500 400 L +409902 40500 410402 41000 400 L +410402 41000 410402 44000 400 L +409902 44500 410402 44000 400 L +408902 44500 409902 44500 400 L +408402 44000 408902 44500 400 L +408902 42500 410402 42500 400 L +557500 32500 557500 22500 2000 L +557500 62500 557500 52500 2000 L +562500 52500 552500 52500 2000 L +562500 32500 562500 52500 2000 L +552500 32500 562500 32500 2000 L +552500 52500 552500 32500 2000 L +555500 48500 555500 50500 400 L +555500 48500 556000 48000 400 L +556000 48000 557000 48000 400 L +557500 48500 557000 48000 400 L +557500 48500 557500 50000 400 L +555500 50000 559500 50000 400 L +557500 50000 559500 48000 400 L +557500 46799 555500 44799 400 L +557500 44299 557500 46799 400 L +555500 44799 559500 44799 400 L +157500 342500 157500 352500 1000 L +157500 362500 157500 372500 1000 L +157500 352500 162500 362500 1000 L +162500 362500 152500 362500 1000 L +152500 362500 157500 352500 1000 L +162500 352500 152500 352500 1000 L +158500 365000 162500 365000 400 L +162500 366500 162000 367000 400 L +159000 367000 162000 367000 400 L +158500 366500 159000 367000 400 L +158500 364500 158500 366500 400 L +162500 364500 162500 366500 400 L +158500 368701 158500 369701 400 L +158500 369201 162500 369201 400 L +161500 368201 162500 369201 400 L +57500 244500 7000 7000 1000 0 360 A +57500 244500 5000 5000 1500 0 360 A +53000 231500 53000 235500 400 L +54500 231500 55000 232000 400 L +55000 232000 55000 235000 400 L +54500 235500 55000 235000 400 L +52500 235500 54500 235500 400 L +52500 231500 54500 231500 400 L +56701 235500 57701 235500 400 L +57201 231500 57201 235500 400 L +56201 232500 57201 231500 400 L +58902 235000 59402 235500 400 L +58902 232000 58902 235000 400 L +58902 232000 59402 231500 400 L +59402 231500 60402 231500 400 L +60402 231500 60902 232000 400 L +60902 232000 60902 235000 400 L +60402 235500 60902 235000 400 L +59402 235500 60402 235500 400 L +58902 234500 60902 232500 400 L +547000 233000 547000 239000 1000 L +533000 233000 533000 239000 1000 L +520000 239000 520000 233000 2000 L +560000 239000 520000 239000 2000 L +560000 233000 560000 239000 2000 L +520000 233000 560000 233000 2000 L +520000 251000 520000 233000 2000 L +560000 251000 520000 251000 2000 L +560000 233000 560000 251000 2000 L +520000 233000 560000 233000 2000 L +520000 226500 520000 229500 400 L +520000 226500 520500 226000 400 L +520500 226000 521500 226000 400 L +521500 226000 522000 226500 400 L +522000 226500 522000 229500 400 L +521500 230000 522000 229500 400 L +520500 230000 521500 230000 400 L +520000 229500 520500 230000 400 L +521000 229000 522000 230000 400 L +523201 226500 523701 226000 400 L +523701 226000 525201 226000 400 L +525201 226000 525701 226500 400 L +525701 226500 525701 227500 400 L +523201 230000 525701 227500 400 L +523201 230000 525701 230000 400 L +240000 62500 320000 62500 1000 L +320000 62500 320000 22500 1000 L +320000 22500 240000 22500 1000 L +240000 62500 240000 47500 1000 L +240000 37500 240000 22500 1000 L +240000 42500 5000 5000 1000 90 180 A +250000 40500 250000 44000 400 L +250000 44000 250500 44500 400 L +250500 44500 251500 44500 400 L +251500 44500 252000 44000 400 L +252000 40500 252000 44000 400 L +253201 44500 255701 42000 400 L +255701 40500 255701 42000 400 L +253201 40500 255701 40500 400 L +322500 372500 10000 10000 1000 0 360 A +333000 366500 334500 366500 400 L +332500 366000 333000 366500 400 L +332500 363000 332500 366000 400 L +332500 363000 333000 362500 400 L +333000 362500 334500 362500 400 L +335701 364500 337701 362500 400 L +335701 364500 338201 364500 400 L +337701 362500 337701 366500 400 L +425000 210000 425000 200000 1000 L +415000 210000 425000 210000 1000 L +435000 200000 415000 200000 2000 L +435000 240000 435000 200000 2000 L +415000 240000 435000 240000 2000 L +415000 200000 415000 240000 2000 L +441000 200000 441000 201500 400 L +437500 201500 441000 201500 400 L +437000 201000 437500 201500 400 L +437000 200500 437000 201000 400 L +437500 200000 437000 200500 400 L +437000 203201 441000 203201 400 L +441000 202701 441000 204701 400 L +441000 204701 440500 205201 400 L +439500 205201 440500 205201 400 L +439000 204701 439500 205201 400 L +439000 203201 439000 204701 400 L +437000 206902 437000 207902 400 L +437000 207402 441000 207402 400 L +440000 206402 441000 207402 400 L +135000 270000 255000 270000 1000 L +255000 270000 255000 200000 1000 L +255000 200000 135000 200000 1000 L +135000 270000 135000 240000 1000 L +135000 230000 135000 200000 1000 L +135000 235000 5000 5000 1000 90 180 A +145000 233000 145000 236500 400 L +145000 236500 145500 237000 400 L +145500 237000 146500 237000 400 L +146500 237000 147000 236500 400 L +147000 233000 147000 236500 400 L +149701 233000 150201 233500 400 L +148701 233000 149701 233000 400 L +148201 233500 148701 233000 400 L +148201 233500 148201 236500 400 L +148201 236500 148701 237000 400 L +149701 235000 150201 235500 400 L +148201 235000 149701 235000 400 L +148701 237000 149701 237000 400 L +149701 237000 150201 236500 400 L +150201 235500 150201 236500 400 L +275000 240000 395000 240000 1000 L +395000 240000 395000 200000 1000 L +395000 200000 275000 200000 1000 L +275000 240000 275000 225000 1000 L +275000 215000 275000 200000 1000 L +275000 220000 5000 5000 1000 90 180 A +285000 218000 285000 221500 400 L +285000 221500 285500 222000 400 L +285500 222000 286500 222000 400 L +286500 222000 287000 221500 400 L +287000 218000 287000 221500 400 L +288201 221500 288701 222000 400 L +288201 220500 288201 221500 400 L +288201 220500 288701 220000 400 L +288701 220000 289701 220000 400 L +289701 220000 290201 220500 400 L +290201 220500 290201 221500 400 L +289701 222000 290201 221500 400 L +288701 222000 289701 222000 400 L +288201 219500 288701 220000 400 L +288201 218500 288201 219500 400 L +288201 218500 288701 218000 400 L +288701 218000 289701 218000 400 L +289701 218000 290201 218500 400 L +290201 218500 290201 219500 400 L +289701 220000 290201 219500 400 L +31500 112000 34500 112000 1000 L +34500 112000 34500 230000 1000 L +34500 230000 31500 230000 1000 L +31500 230000 31500 112000 1000 L +31500 118000 34500 118000 1000 L +31500 130000 34500 130000 1000 L +31500 224000 34500 224000 1000 L +31500 212000 34500 212000 1000 L +4500 141000 31500 141000 2000 L +31500 141000 31500 201000 1000 L +31500 201000 4500 201000 2000 L +4500 201000 4500 141000 2000 L +34500 135000 54500 135000 2000 L +54500 135000 54500 207000 2000 L +54500 207000 34500 207000 2000 L +34500 207000 34500 135000 1000 L +82500 151000 54500 151000 2000 L +72500 156000 54500 156000 2000 L +82500 161000 54500 161000 2000 L +72500 166000 54500 166000 2000 L +82500 171000 54500 171000 2000 L +72500 176000 54500 176000 2000 L +82500 181000 54500 181000 2000 L +72500 186000 54500 186000 2000 L +82500 191000 54500 191000 2000 L +42500 144000 42500 145500 400 L +39000 145500 42500 145500 400 L +38500 145000 39000 145500 400 L +38500 144500 38500 145000 400 L +39000 144000 38500 144500 400 L +38500 146701 40500 148701 400 L +40500 148701 42000 148701 400 L +42500 148201 42000 148701 400 L +42500 147201 42500 148201 400 L +42000 146701 42500 147201 400 L +41000 146701 42000 146701 400 L +41000 146701 40500 147201 400 L +40500 147201 40500 148701 400 L +81500 244500 5000 5000 1500 0 360 A +81500 244500 7000 7000 1000 0 360 A +77000 231500 77000 235500 400 L +78500 231500 79000 232000 400 L +79000 232000 79000 235000 400 L +78500 235500 79000 235000 400 L +76500 235500 78500 235500 400 L +76500 231500 78500 231500 400 L +80201 235500 82201 233500 400 L +82201 232000 82201 233500 400 L +81701 231500 82201 232000 400 L +80701 231500 81701 231500 400 L +80201 232000 80701 231500 400 L +80201 232000 80201 233000 400 L +80201 233000 80701 233500 400 L +80701 233500 82201 233500 400 L +482500 220000 25000 25000 1000 180 360 A +455500 241000 457000 241000 400 L +457500 241500 457000 241000 400 L +457500 241500 457500 244500 400 L +457500 244500 457000 245000 400 L +455500 245000 457000 245000 400 L +454299 241000 451799 243500 400 L +451799 243500 451799 245000 400 L +451799 245000 454299 245000 400 L +90000 340000 80000 340000 1000 L +80000 350000 85000 340000 1000 L +90000 350000 80000 350000 1000 L +85000 340000 90000 350000 1000 L +85000 350000 85000 360000 1000 L +85000 330000 85000 340000 1000 L +86000 352500 90000 352500 400 L +90000 354000 89500 354500 400 L +86500 354500 89500 354500 400 L +86000 354000 86500 354500 400 L +86000 352000 86000 354000 400 L +90000 352000 90000 354000 400 L +89500 355701 90000 356201 400 L +90000 356201 90000 357201 400 L +90000 357201 89500 357701 400 L +86500 357701 89500 357701 400 L +86000 357201 86500 357701 400 L +86000 356201 86000 357201 400 L +86500 355701 86000 356201 400 L +88000 356201 88000 357701 400 L +599500 233000 599500 239000 1000 L +585500 233000 585500 239000 1000 L +572500 239000 572500 233000 2000 L +612500 239000 572500 239000 2000 L +612500 233000 612500 239000 2000 L +572500 233000 612500 233000 2000 L +572500 251000 572500 233000 2000 L +612500 251000 572500 251000 2000 L +612500 233000 612500 251000 2000 L +572500 233000 612500 233000 2000 L +572500 226500 572500 229500 400 L +572500 226500 573000 226000 400 L +573000 226000 574000 226000 400 L +574000 226000 574500 226500 400 L +574500 226500 574500 229500 400 L +574000 230000 574500 229500 400 L +573000 230000 574000 230000 400 L +572500 229500 573000 230000 400 L +573500 229000 574500 230000 400 L +576201 230000 577201 230000 400 L +576701 226000 576701 230000 400 L +575701 227000 576701 226000 400 L +540000 210000 10000 10000 1000 0 360 A +550500 204000 552000 204000 400 L +550000 203500 550500 204000 400 L +550000 200500 550000 203500 400 L +550000 200500 550500 200000 400 L +550500 200000 552000 200000 400 L +553701 204000 554701 204000 400 L +554201 200000 554201 204000 400 L +553201 201000 554201 200000 400 L +556402 204000 557402 204000 400 L +556902 200000 556902 204000 400 L +555902 201000 556902 200000 400 L +355000 32500 355000 22500 2000 L +355000 62500 355000 52500 2000 L +360000 52500 350000 52500 2000 L +360000 32500 360000 52500 2000 L +350000 32500 360000 32500 2000 L +350000 52500 350000 32500 2000 L +353000 48500 353000 50500 400 L +353000 48500 353500 48000 400 L +353500 48000 354500 48000 400 L +355000 48500 354500 48000 400 L +355000 48500 355000 50000 400 L +353000 50000 357000 50000 400 L +355000 50000 357000 48000 400 L +357000 45299 357000 46299 400 L +353000 45799 357000 45799 400 L +354000 46799 353000 45799 400 L +355000 44098 353000 42098 400 L +355000 41598 355000 44098 400 L +353000 42098 357000 42098 400 L +100000 325000 100000 335000 2000 L +100000 335000 120000 335000 2000 L +120000 335000 120000 325000 2000 L +120000 325000 100000 325000 2000 L +100000 335000 110000 335000 1000 L +110000 335000 110000 325000 1000 L +126000 325000 126000 326500 400 L +122500 326500 126000 326500 400 L +122000 326000 122500 326500 400 L +122000 325500 122000 326000 400 L +122500 325000 122000 325500 400 L +122000 328201 126000 328201 400 L +126000 327701 126000 329701 400 L +126000 329701 125500 330201 400 L +124500 330201 125500 330201 400 L +124000 329701 124500 330201 400 L +124000 328201 124000 329701 400 L +125500 331402 126000 331902 400 L +126000 331902 126000 333402 400 L +126000 333402 125500 333902 400 L +124500 333902 125500 333902 400 L +122000 331402 124500 333902 400 L +122000 331402 122000 333902 400 L +167500 325000 207500 325000 1000 L +207500 325000 207500 285000 1000 L +207500 285000 167500 285000 1000 L +167500 325000 167500 310000 1000 L +167500 300000 167500 285000 1000 L +167500 305000 5000 5000 1000 90 180 A +177500 303000 177500 306500 400 L +177500 306500 178000 307000 400 L +178000 307000 179000 307000 400 L +179000 307000 179500 306500 400 L +179500 303000 179500 306500 400 L +181201 307000 182201 307000 400 L +181701 303000 181701 307000 400 L +180701 304000 181701 303000 400 L +183902 307000 184902 307000 400 L +184402 303000 184402 307000 400 L +183402 304000 184402 303000 400 L +482500 277500 25000 25000 1000 180 360 A +455500 298500 457000 298500 400 L +457500 299000 457000 298500 400 L +457500 299000 457500 302000 400 L +457500 302000 457000 302500 400 L +455500 302500 457000 302500 400 L +454299 299000 453799 298500 400 L +454299 299000 454299 300000 400 L +454299 300000 453799 300500 400 L +452799 300500 453799 300500 400 L +452799 300500 452299 300000 400 L +452299 299000 452299 300000 400 L +452799 298500 452299 299000 400 L +452799 298500 453799 298500 400 L +454299 301000 453799 300500 400 L +454299 301000 454299 302000 400 L +454299 302000 453799 302500 400 L +452799 302500 453799 302500 400 L +452799 302500 452299 302000 400 L +452299 301000 452299 302000 400 L +452799 300500 452299 301000 400 L +580000 372000 540000 372000 2000 L +540000 372000 540000 354000 2000 L +540000 354000 580000 354000 2000 L +580000 354000 580000 372000 2000 L +580000 372000 540000 372000 2000 L +540000 372000 540000 366000 2000 L +540000 366000 580000 366000 2000 L +580000 366000 580000 372000 2000 L +567000 372000 567000 366000 1000 L +553000 372000 553000 366000 1000 L +580000 375500 580000 379000 400 L +580000 375500 579500 375000 400 L +578500 375000 579500 375000 400 L +578500 375000 578000 375500 400 L +578000 375500 578000 379000 400 L +576799 378500 576299 379000 400 L +575299 379000 576299 379000 400 L +575299 379000 574799 378500 400 L +574799 375500 574799 378500 400 L +575299 375000 574799 375500 400 L +575299 375000 576299 375000 400 L +576799 375500 576299 375000 400 L +574799 377000 576299 377000 400 L +280000 287500 280000 297500 2000 L +280000 257500 280000 267500 2000 L +275000 267500 285000 267500 2000 L +275000 287500 275000 267500 2000 L +285000 287500 275000 287500 2000 L +285000 267500 285000 287500 2000 L +282000 269500 282000 271500 400 L +282000 271500 281500 272000 400 L +280500 272000 281500 272000 400 L +280000 271500 280500 272000 400 L +280000 270000 280000 271500 400 L +278000 270000 282000 270000 400 L +280000 270000 278000 272000 400 L +278000 273201 280000 275201 400 L +280000 275201 281500 275201 400 L +282000 274701 281500 275201 400 L +282000 273701 282000 274701 400 L +281500 273201 282000 273701 400 L +280500 273201 281500 273201 400 L +280500 273201 280000 273701 400 L +280000 273701 280000 275201 400 L +537500 320000 537500 375000 2000 L +532500 320000 537500 320000 2000 L +532500 375000 532500 320000 2000 L +512500 375000 532500 375000 2000 L +512500 320000 512500 375000 2000 L +507500 320000 512500 320000 2000 L +507500 385000 507500 320000 2000 L +582500 375000 537500 375000 2000 L +582500 320000 582500 375000 2000 L +587500 320000 582500 320000 2000 L +587500 375000 587500 320000 2000 L +607500 375000 587500 375000 2000 L +607500 320000 607500 375000 2000 L +612500 320000 607500 320000 2000 L +612500 385000 612500 320000 2000 L +612500 385000 507500 385000 2000 L +86000 280000 76000 280000 2000 L +116000 280000 106000 280000 2000 L +106000 275000 106000 285000 2000 L +86000 275000 106000 275000 2000 L +86000 285000 86000 275000 2000 L +106000 285000 86000 285000 2000 L +102000 282000 104000 282000 400 L +102000 282000 101500 281500 400 L +101500 280500 101500 281500 400 L +102000 280000 101500 280500 400 L +102000 280000 103500 280000 400 L +103500 278000 103500 282000 400 L +103500 280000 101500 278000 400 L +98799 278000 99799 278000 400 L +99299 278000 99299 282000 400 L +100299 281000 99299 282000 400 L +97598 281500 97098 282000 400 L +95598 282000 97098 282000 400 L +95598 282000 95098 281500 400 L +95098 280500 95098 281500 400 L +97598 278000 95098 280500 400 L +95098 278000 97598 278000 400 L +482500 370000 15000 15000 1000 180 360 A +465500 381000 467000 381000 400 L +467500 381500 467000 381000 400 L +467500 381500 467500 384500 400 L +467500 384500 467000 385000 400 L +465500 385000 467000 385000 400 L +462799 381000 463799 381000 400 L +463299 381000 463299 385000 400 L +464299 384000 463299 385000 400 L +547000 280500 547000 286500 1000 L +533000 280500 533000 286500 1000 L +520000 286500 520000 280500 2000 L +560000 286500 520000 286500 2000 L +560000 280500 560000 286500 2000 L +520000 280500 560000 280500 2000 L +520000 298500 520000 280500 2000 L +560000 298500 520000 298500 2000 L +560000 280500 560000 298500 2000 L +520000 280500 560000 280500 2000 L +520000 274000 520000 277000 400 L +520000 274000 520500 273500 400 L +520500 273500 521500 273500 400 L +521500 273500 522000 274000 400 L +522000 274000 522000 277000 400 L +521500 277500 522000 277000 400 L +520500 277500 521500 277500 400 L +520000 277000 520500 277500 400 L +521000 276500 522000 277500 400 L +523201 275500 525201 273500 400 L +523201 275500 525701 275500 400 L +525201 273500 525201 277500 400 L +632500 357500 660000 357500 4000 L +632500 347500 660000 347500 4000 L +632500 337500 660000 337500 4000 L +632500 327500 660000 327500 4000 L +632500 317500 660000 317500 4000 L +632500 307500 660000 307500 4000 L +632500 297500 660000 297500 4000 L +632500 287500 660000 287500 4000 L +632500 277500 660000 277500 4000 L +632500 267500 660000 267500 4000 L +632500 257500 660000 257500 4000 L +632500 247500 660000 247500 4000 L +632500 237500 660000 237500 4000 L +632500 227500 660000 227500 4000 L +632500 217500 660000 217500 4000 L +632500 207500 660000 207500 4000 L +632500 197500 660000 197500 4000 L +632500 187500 660000 187500 4000 L +632500 177500 660000 177500 4000 L +632500 167500 660000 167500 4000 L +632500 157500 660000 157500 4000 L +632500 147500 660000 147500 4000 L +632500 137500 660000 137500 4000 L +632500 127500 660000 127500 4000 L +632500 117500 660000 117500 4000 L +632500 107500 660000 107500 4000 L +632500 97500 660000 97500 4000 L +632500 87500 660000 87500 4000 L +632500 77500 660000 77500 4000 L +632500 67500 660000 67500 4000 L +632500 57500 660000 57500 4000 L +632500 47500 660000 47500 4000 L +652500 387500 652500 365500 2000 L +652500 365500 662000 365500 2000 L +662000 365500 684500 365500 1000 L +684500 365500 684500 377500 1000 L +684500 377500 684500 387500 2000 L +684500 387500 652500 387500 2000 L +652500 39500 652500 17500 2000 L +652500 17500 684500 17500 2000 L +684500 17500 684500 27500 2000 L +684500 27500 684500 39500 1000 L +684500 39500 662000 39500 1000 L +662000 39500 652500 39500 2000 L +662000 365500 662000 39500 2000 L +684500 377500 702500 377500 2000 L +702500 377500 702500 27500 2000 L +702500 27500 684500 27500 2000 L +662500 342500 662500 345500 800 L +662500 342500 669500 342500 800 L +670500 343500 669500 342500 800 L +670500 343500 670500 344500 800 L +669500 345500 670500 344500 800 L +670500 337098 670500 339098 800 L +662500 338098 670500 338098 800 L +664500 340098 662500 338098 800 L +662500 330696 662500 334696 800 L +662500 334696 666500 334696 800 L +666500 334696 665500 333696 800 L +665500 331696 665500 333696 800 L +665500 331696 666500 330696 800 L +666500 330696 669500 330696 800 L +670500 331696 669500 330696 800 L +670500 331696 670500 333696 800 L +669500 334696 670500 333696 800 L +327500 260000 10000 10000 1000 180 360 A +315500 266000 317000 266000 400 L +317500 266500 317000 266000 400 L +317500 266500 317500 269500 400 L +317500 269500 317000 270000 400 L +315500 270000 317000 270000 400 L +314299 266000 312299 268000 400 L +312299 268000 312299 269500 400 L +312799 270000 312299 269500 400 L +312799 270000 313799 270000 400 L +314299 269500 313799 270000 400 L +314299 268500 314299 269500 400 L +314299 268500 313799 268000 400 L +312299 268000 313799 268000 400 L +447500 32500 447500 22500 2000 L +447500 62500 447500 52500 2000 L +452500 52500 442500 52500 2000 L +452500 32500 452500 52500 2000 L +442500 32500 452500 32500 2000 L +442500 52500 442500 32500 2000 L +445500 48500 445500 50500 400 L +445500 48500 446000 48000 400 L +446000 48000 447000 48000 400 L +447500 48500 447000 48000 400 L +447500 48500 447500 50000 400 L +445500 50000 449500 50000 400 L +447500 50000 449500 48000 400 L +446000 46799 445500 46299 400 L +445500 45299 445500 46299 400 L +445500 45299 446000 44799 400 L +446000 44799 449000 44799 400 L +449500 45299 449000 44799 400 L +449500 45299 449500 46299 400 L +449000 46799 449500 46299 400 L +447500 44799 447500 46299 400 L +300000 267500 300000 257500 2000 L +300000 297500 300000 287500 2000 L +305000 287500 295000 287500 2000 L +305000 267500 305000 287500 2000 L +295000 267500 305000 267500 2000 L +295000 287500 295000 267500 2000 L +298000 283500 298000 285500 400 L +298000 283500 298500 283000 400 L +298500 283000 299500 283000 400 L +300000 283500 299500 283000 400 L +300000 283500 300000 285000 400 L +298000 285000 302000 285000 400 L +300000 285000 302000 283000 400 L +302000 280299 302000 281299 400 L +298000 280799 302000 280799 400 L +299000 281799 298000 280799 400 L +301500 279098 302000 278598 400 L +298500 279098 301500 279098 400 L +298500 279098 298000 278598 400 L +298000 277598 298000 278598 400 L +298000 277598 298500 277098 400 L +298500 277098 301500 277098 400 L +302000 277598 301500 277098 400 L +302000 277598 302000 278598 400 L +301000 279098 299000 277098 400 L +482500 330000 15000 15000 1000 0 360 A +498000 319000 499500 319000 400 L +497500 318500 498000 319000 400 L +497500 315500 497500 318500 400 L +497500 315500 498000 315000 400 L +498000 315000 499500 315000 400 L +500701 315500 501201 315000 400 L +501201 315000 502701 315000 400 L +502701 315000 503201 315500 400 L +503201 315500 503201 316500 400 L +500701 319000 503201 316500 400 L +500701 319000 503201 319000 400 L +382500 320000 382500 375000 2000 L +377500 320000 382500 320000 2000 L +377500 375000 377500 320000 2000 L +357500 375000 377500 375000 2000 L +357500 320000 357500 375000 2000 L +352500 320000 357500 320000 2000 L +352500 385000 352500 320000 2000 L +427500 375000 382500 375000 2000 L +427500 320000 427500 375000 2000 L +432500 320000 427500 320000 2000 L +432500 375000 432500 320000 2000 L +452500 375000 432500 375000 2000 L +452500 320000 452500 375000 2000 L +457500 320000 452500 320000 2000 L +457500 385000 457500 320000 2000 L +457500 385000 352500 385000 2000 L +70800 264600 45000 264600 2000 L +45000 264600 45000 292200 2000 L +45000 292200 70800 292200 2000 L +58800 292200 58800 264600 2000 L +45000 271500 8400 272500 2000 L +8400 272500 8400 284300 2000 L +8400 284300 45000 285300 2000 L +66800 278400 67300 278900 400 L +65300 278400 66800 278400 400 L +64800 278900 65300 278400 400 L +64800 278900 64800 279900 400 L +64800 279900 65300 280400 400 L +65300 280400 66800 280400 400 L +66800 280400 67300 280900 400 L +67300 280900 67300 281900 400 L +66800 282400 67300 281900 400 L +65300 282400 66800 282400 400 L +64800 281900 65300 282400 400 L +69001 282400 70001 282400 400 L +69501 278400 69501 282400 400 L +68501 279400 69501 278400 400 L +599500 280500 599500 286500 1000 L +585500 280500 585500 286500 1000 L +572500 286500 572500 280500 2000 L +612500 286500 572500 286500 2000 L +612500 280500 612500 286500 2000 L +572500 280500 612500 280500 2000 L +572500 298500 572500 280500 2000 L +612500 298500 572500 298500 2000 L +612500 280500 612500 298500 2000 L +572500 280500 612500 280500 2000 L +572500 274000 572500 277000 400 L +572500 274000 573000 273500 400 L +573000 273500 574000 273500 400 L +574000 273500 574500 274000 400 L +574500 274000 574500 277000 400 L +574000 277500 574500 277000 400 L +573000 277500 574000 277500 400 L +572500 277000 573000 277500 400 L +573500 276500 574500 277500 400 L +575701 274000 576201 273500 400 L +576201 273500 577201 273500 400 L +577201 273500 577701 274000 400 L +577701 274000 577701 277000 400 L +577201 277500 577701 277000 400 L +576201 277500 577201 277500 400 L +575701 277000 576201 277500 400 L +576201 275500 577701 275500 400 L +572500 182500 572500 192500 1000 L +582500 192500 572500 187500 1000 L +582500 182500 582500 192500 1000 L +572500 187500 582500 182500 1000 L +582500 187500 592500 187500 1000 L +562500 187500 572500 187500 1000 L +585000 182500 585000 186500 400 L +586500 182500 587000 183000 400 L +587000 183000 587000 186000 400 L +586500 186500 587000 186000 400 L +584500 186500 586500 186500 400 L +584500 182500 586500 182500 400 L +588201 186500 590701 184000 400 L +590701 182500 590701 184000 400 L +588201 182500 590701 182500 400 L +572500 122500 612500 122500 1000 L +612500 122500 612500 82500 1000 L +612500 82500 572500 82500 1000 L +572500 122500 572500 107500 1000 L +572500 97500 572500 82500 1000 L +572500 102500 5000 5000 1000 90 180 A +582500 100500 582500 104000 400 L +582500 104000 583000 104500 400 L +583000 104500 584000 104500 400 L +584000 104500 584500 104000 400 L +584500 100500 584500 104000 400 L +585701 100500 587701 100500 400 L +585701 100500 585701 102500 400 L +585701 102500 586201 102000 400 L +586201 102000 587201 102000 400 L +587201 102000 587701 102500 400 L +587701 102500 587701 104000 400 L +587201 104500 587701 104000 400 L +586201 104500 587201 104500 400 L +585701 104000 586201 104500 400 L +599500 198000 599500 204000 1000 L +585500 198000 585500 204000 1000 L +572500 204000 572500 198000 2000 L +612500 204000 572500 204000 2000 L +612500 198000 612500 204000 2000 L +572500 198000 612500 198000 2000 L +572500 216000 572500 198000 2000 L +612500 216000 572500 216000 2000 L +612500 198000 612500 216000 2000 L +572500 198000 612500 198000 2000 L +572500 191500 572500 194500 400 L +572500 191500 573000 191000 400 L +573000 191000 574000 191000 400 L +574000 191000 574500 191500 400 L +574500 191500 574500 194500 400 L +574000 195000 574500 194500 400 L +573000 195000 574000 195000 400 L +572500 194500 573000 195000 400 L +573500 194000 574500 195000 400 L +575701 191000 577701 191000 400 L +575701 191000 575701 193000 400 L +575701 193000 576201 192500 400 L +576201 192500 577201 192500 400 L +577201 192500 577701 193000 400 L +577701 193000 577701 194500 400 L +577201 195000 577701 194500 400 L +576201 195000 577201 195000 400 L +575701 194500 576201 195000 400 L +572500 62500 612500 62500 1000 L +612500 62500 612500 22500 1000 L +612500 22500 572500 22500 1000 L +572500 62500 572500 47500 1000 L +572500 37500 572500 22500 1000 L +572500 42500 5000 5000 1000 90 180 A +582500 40500 582500 44000 400 L +582500 44000 583000 44500 400 L +583000 44500 584000 44500 400 L +584000 44500 584500 44000 400 L +584500 40500 584500 44000 400 L +585701 42500 587701 40500 400 L +585701 42500 588201 42500 400 L +587701 40500 587701 44500 400 L +327500 290000 10000 10000 1000 0 360 A +338000 284000 339500 284000 400 L +337500 283500 338000 284000 400 L +337500 280500 337500 283500 400 L +337500 280500 338000 280000 400 L +338000 280000 339500 280000 400 L +341201 284000 342201 284000 400 L +341701 280000 341701 284000 400 L +340701 281000 341701 280000 400 L +343402 283500 343902 284000 400 L +343402 280500 343402 283500 400 L +343402 280500 343902 280000 400 L +343902 280000 344902 280000 400 L +344902 280000 345402 280500 400 L +345402 280500 345402 283500 400 L +344902 284000 345402 283500 400 L +343902 284000 344902 284000 400 L +343402 283000 345402 281000 400 L +105000 106800 105000 43300 2000 L +20000 106800 105000 106800 2000 L +20000 43300 20000 106800 2000 L +105000 43300 20000 43300 2000 L +103500 112800 105000 112800 400 L +103500 109300 103500 112800 400 L +104000 108800 103500 109300 400 L +104000 108800 104500 108800 400 L +105000 109300 104500 108800 400 L +102299 112300 101799 112800 400 L +100299 112800 101799 112800 400 L +100299 112800 99799 112300 400 L +99799 111300 99799 112300 400 L +102299 108800 99799 111300 400 L +99799 108800 102299 108800 400 L +355000 295000 395000 295000 1000 L +395000 295000 395000 255000 1000 L +395000 255000 355000 255000 1000 L +355000 295000 355000 280000 1000 L +355000 270000 355000 255000 1000 L +355000 275000 5000 5000 1000 90 180 A +365000 273000 365000 276500 400 L +365000 276500 365500 277000 400 L +365500 277000 366500 277000 400 L +366500 277000 367000 276500 400 L +367000 273000 367000 276500 400 L +368701 277000 369701 277000 400 L +369201 273000 369201 277000 400 L +368201 274000 369201 273000 400 L +370902 276500 371402 277000 400 L +370902 273500 370902 276500 400 L +370902 273500 371402 273000 400 L +371402 273000 372402 273000 400 L +372402 273000 372902 273500 400 L +372902 273500 372902 276500 400 L +372402 277000 372902 276500 400 L +371402 277000 372402 277000 400 L +370902 276000 372902 274000 400 L +322500 342500 10000 10000 1000 0 360 A +333000 336500 334500 336500 400 L +332500 336000 333000 336500 400 L +332500 333000 332500 336000 400 L +332500 333000 333000 332500 400 L +333000 332500 334500 332500 400 L +337201 332500 337701 333000 400 L +336201 332500 337201 332500 400 L +335701 333000 336201 332500 400 L +335701 333000 335701 336000 400 L +335701 336000 336201 336500 400 L +337201 334500 337701 335000 400 L +335701 334500 337201 334500 400 L +336201 336500 337201 336500 400 L +337201 336500 337701 336000 400 L +337701 335000 337701 336000 400 L +132500 342500 10000 10000 1000 180 360 A +120500 348500 122000 348500 400 L +122500 349000 122000 348500 400 L +122500 349000 122500 352000 400 L +122500 352000 122000 352500 400 L +120500 352500 122000 352500 400 L +117299 352500 119299 352500 400 L +119299 350500 119299 352500 400 L +119299 350500 118799 351000 400 L +117799 351000 118799 351000 400 L +117799 351000 117299 350500 400 L +117299 349000 117299 350500 400 L +117799 348500 117299 349000 400 L +117799 348500 118799 348500 400 L +119299 349000 118799 348500 400 L +580000 141000 125000 141000 2000 L +125000 141000 125000 170000 2000 L +125000 170000 580000 170000 2000 L +580000 170000 580000 141000 2000 L +580000 172500 580000 176000 400 L +580000 172500 579500 172000 400 L +578500 172000 579500 172000 400 L +578500 172000 578000 172500 400 L +578000 172500 578000 176000 400 L +575299 172000 576299 172000 400 L +575799 172000 575799 176000 400 L +576799 175000 575799 176000 400 L +132500 372500 10000 10000 1000 180 360 A +120500 378500 122000 378500 400 L +122500 379000 122000 378500 400 L +122500 379000 122500 382000 400 L +122500 382000 122000 382500 400 L +120500 382500 122000 382500 400 L +119299 382000 118799 382500 400 L +117799 382500 118799 382500 400 L +117799 382500 117299 382000 400 L +117299 379000 117299 382000 400 L +117799 378500 117299 379000 400 L +117799 378500 118799 378500 400 L +119299 379000 118799 378500 400 L +117299 380500 118799 380500 400 L +167500 377500 287500 377500 1000 L +287500 377500 287500 337500 1000 L +287500 337500 167500 337500 1000 L +167500 377500 167500 362500 1000 L +167500 352500 167500 337500 1000 L +167500 357500 5000 5000 1000 90 180 A +177500 355500 177500 359000 400 L +177500 359000 178000 359500 400 L +178000 359500 179000 359500 400 L +179000 359500 179500 359000 400 L +179500 355500 179500 359000 400 L +180701 359500 182701 357500 400 L +182701 356000 182701 357500 400 L +182201 355500 182701 356000 400 L +181201 355500 182201 355500 400 L +180701 356000 181201 355500 400 L +180701 356000 180701 357000 400 L +180701 357000 181201 357500 400 L +181201 357500 182701 357500 400 L +105500 310500 85500 310500 2000 L +85500 310500 85500 300500 2000 L +85500 300500 105500 300500 2000 L +105500 300500 105500 310500 2000 L +115500 305500 105500 305500 2000 L +85500 305500 75500 305500 2000 L +101500 307500 103500 307500 400 L +101500 307500 101000 307000 400 L +101000 306000 101000 307000 400 L +101500 305500 101000 306000 400 L +101500 305500 103000 305500 400 L +103000 303500 103000 307500 400 L +103000 305500 101000 303500 400 L +98299 303500 99299 303500 400 L +98799 303500 98799 307500 400 L +99799 306500 98799 307500 400 L +95598 303500 96598 303500 400 L +96098 303500 96098 307500 400 L +97098 306500 96098 307500 400 L +675000 5000 45000 5000 2000 L +675000 398700 675000 5000 2000 L +45000 398700 675000 398700 2000 L +45000 5000 45000 398700 2000 L +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/doc/aic_back.ps b/doc/aic_back.ps new file mode 100644 index 0000000..3800390 --- /dev/null +++ b/doc/aic_back.ps @@ -0,0 +1,2224 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), layergroup #1 +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 160 moveto 451 160 lineto 451 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,410400) +% PCBOFFSET(214900,223900), PCBSCALE(1.00000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 223900 translate +1.000 1.000 scale +410800 0 translate +90 rotate +0 410800 translate +1 -1 scale +400 400 translate +-400 -400 710400 410400 200 Alignment +/Color {0.545 0.137 0.137 mysetrgbcolor} def Color +64500 257000 76000 257000 1000 L +58000 250500 64500 257000 1000 L +87000 254500 81500 249000 2500 L +129000 254500 87000 254500 2500 L +55000 330000 49500 330000 1000 L +58500 284500 55000 288000 2500 L +68500 284500 58500 284500 2500 L +45000 398500 45000 5000 100 L +130000 289500 73500 289500 2500 L +632500 345000 652500 345000 4000 L +632500 342500 652500 342500 4000 L +632500 340000 652500 340000 4000 L +652500 337500 632500 337500 4000 L +652500 347500 652500 337500 4000 L +632500 347500 652500 347500 4000 L +632500 342500 405000 342500 4500 L +632500 337500 632500 347500 4500 L +537500 307500 410000 307500 1000 L +287500 325000 282500 330000 1000 L +527500 325000 287500 325000 1000 L +530000 327500 527500 325000 1000 L +570000 245000 582500 245000 1000 L +210000 322500 570000 322500 1000 L +202500 342500 202500 337500 1000 L +520000 260000 540000 260000 1000 L +127500 337500 520000 337500 1000 L +127500 342500 127500 337500 1000 L +245000 270000 105000 270000 1000 L +247500 272500 245000 270000 1000 L +270000 272500 247500 272500 1000 L +272500 275000 270000 272500 1000 L +345000 275000 272500 275000 1000 L +347500 272500 345000 275000 1000 L +415000 272500 347500 272500 1000 L +420000 205000 410000 205000 1000 L +420000 215000 405000 215000 1000 L +400000 225000 420000 225000 1000 L +267500 357500 322500 357500 1000 L +325000 355000 327500 352500 1000 L +322500 357500 325000 355000 1000 L +262500 352500 267500 357500 1000 L +242500 342500 252500 342500 1000 L +297500 342500 297500 347500 1000 L +312500 347500 317500 342500 1000 L +240000 347500 312500 347500 1000 L +237500 347500 240000 347500 1000 L +232500 342500 237500 347500 1000 L +182500 342500 192500 342500 1000 L +137500 342500 172500 342500 1000 L +530000 245000 407500 245000 1000 L +407500 245000 402500 250000 1000 L +402500 310000 222500 310000 1000 L +217500 180000 220000 177500 1000 L +127500 180000 217500 180000 1000 L +107500 180000 127500 180000 1000 L +295000 182500 450000 182500 1000 L +290000 177500 295000 182500 1000 L +220000 177500 290000 177500 1000 L +445000 147500 445000 152500 1000 L +107500 147500 445000 147500 1000 L +242500 360000 375000 360000 1000 L +277500 352500 297500 352500 2500 L +365000 220000 350000 220000 1000 L +357500 255000 360000 252500 1000 L +337500 255000 357500 255000 1000 L +340000 282500 462500 282500 1000 L +457500 290000 470000 290000 2500 L +255000 270000 332500 270000 2500 L +250000 265000 255000 270000 2500 L +242500 170000 180000 170000 1000 L +247500 175000 250000 172500 1000 L +190000 175000 247500 175000 1000 L +250000 162500 242500 170000 1000 L +227500 90000 255000 90000 1000 L +230000 182500 245000 182500 1000 L +230000 282500 340000 282500 1000 L +225000 277500 230000 282500 1000 L +197500 277500 225000 277500 1000 L +192500 282500 197500 277500 1000 L +155000 282500 192500 282500 1000 L +257500 277500 385000 277500 1000 L +387500 227500 390000 225000 1000 L +270000 227500 387500 227500 1000 L +267500 230000 270000 227500 1000 L +210000 230000 267500 230000 1000 L +220000 217500 170000 217500 1000 L +225000 222500 220000 217500 1000 L +230000 222500 225000 222500 1000 L +232500 220000 230000 222500 1000 L +245000 220000 232500 220000 1000 L +247500 222500 245000 220000 1000 L +250000 222500 247500 222500 1000 L +292500 222500 250000 222500 1000 L +297500 187500 325000 187500 1000 L +150000 187500 297500 187500 1000 L +250000 195000 252500 192500 1000 L +225000 195000 250000 195000 1000 L +252500 192500 315000 192500 1000 L +310000 217500 225000 217500 1000 L +300000 212500 215000 212500 1000 L +220000 225000 240000 225000 2500 L +637500 172500 535000 172500 1000 L +210000 67500 87500 67500 1000 L +205000 82500 97500 82500 1000 L +200000 62500 97500 62500 1000 L +195000 57500 87500 57500 1000 L +192500 360000 242500 360000 1000 L +212500 352500 232500 352500 2500 L +202500 372500 202500 367500 1000 L +257500 367500 262500 372500 1000 L +110000 367500 257500 367500 1000 L +57500 162000 57500 150000 2500 L +82500 150000 57000 150000 2500 L +95000 245000 115000 245000 1000 L +182500 385000 252500 385000 1000 L +355000 385000 252500 385000 1000 L +272500 352500 277500 352500 2500 L +297500 342500 317500 342500 1000 L +280000 257500 300000 257500 1000 L +517500 242500 522500 237500 1000 L +392500 242500 517500 242500 1000 L +380000 255000 392500 242500 1000 L +380000 260000 380000 255000 1000 L +522500 237500 557500 237500 1000 L +370000 260000 380000 260000 1000 L +425000 230000 430000 235000 1000 L +375000 230000 425000 230000 1000 L +370000 235000 375000 230000 1000 L +402500 235000 420000 235000 1000 L +447500 60000 447500 62500 1000 L +450000 57500 447500 60000 1000 L +477500 57500 450000 57500 1000 L +487500 107500 472500 107500 1000 L +467500 80000 467500 82500 1000 L +512500 80000 467500 80000 1000 L +610000 142500 547500 142500 1000 L +537500 107500 507500 107500 1000 L +537500 117500 537500 122500 1000 L +577500 117500 537500 117500 1000 L +417500 107500 447500 107500 1000 L +555000 135000 417500 135000 1000 L +557500 67500 557500 62500 1000 L +417500 67500 557500 67500 1000 L +417500 57500 417500 67500 1000 L +582500 210000 545000 210000 1000 L +555000 57500 577500 57500 1000 L +542500 57500 555000 57500 1000 L +537500 62500 542500 57500 1000 L +447500 30000 440000 22500 1000 L +417500 22500 417500 27500 1000 L +437500 22500 417500 22500 1000 L +440000 22500 437500 22500 1000 L +507500 22500 507500 27500 1000 L +527500 22500 507500 22500 1000 L +502500 15000 467500 15000 1000 L +615000 15000 557500 15000 1000 L +397500 27500 397500 17500 2500 L +355000 22500 355000 17500 2500 L +340000 17500 335000 22500 2500 L +400000 17500 340000 17500 2500 L +90500 305500 75500 305500 1000 L +415000 380000 172500 380000 2500 L +415000 360000 415000 380000 2500 L +232500 372500 232500 380000 2500 L +317500 372500 317500 380000 2500 L +172500 380000 172500 375000 2500 L +297500 372500 297500 380000 2500 L +115000 280000 130000 280000 2500 L +137500 372500 172500 372500 2500 L +55000 330000 105000 330000 1000 L +622500 342500 627500 342500 4000 L +127500 392500 212500 392500 2500 L +332500 292500 332500 297500 2500 L +382500 297500 390000 290000 2500 L +325000 297500 382500 297500 2500 L +362500 197500 430000 197500 1000 L +360000 205000 360000 200000 1000 L +360000 200000 362500 197500 1000 L +205000 305000 202500 305000 2500 L +285000 305000 205000 305000 2500 L +292500 297500 285000 305000 2500 L +300000 297500 292500 297500 2500 L +212500 392500 327500 392500 2500 L +300000 297500 325000 297500 2500 L +290000 265000 480000 265000 1000 L +390000 290000 457500 290000 2500 L +442500 17500 447500 22500 2500 L +400000 17500 442500 17500 2500 L +45000 5000 675000 5000 100 L +632500 87500 632500 92500 2500 L +397500 87500 397500 95000 2500 L +422500 100000 315000 100000 2500 L +610000 102500 607500 100000 2500 L +622500 102500 610000 102500 2500 L +515000 152500 525000 152500 2500 L +520000 152500 520000 162500 2500 L +510000 162500 530000 162500 2500 L +607500 100000 422500 100000 2500 L +73500 289500 68500 284500 2500 L +57000 238500 56000 239500 2500 L +675000 5000 675000 398500 100 L +57500 162000 57500 239000 2500 L +675000 398500 45000 398500 100 L +172500 290000 130000 290000 2500 L +632500 337500 627500 342500 4000 L +627500 342500 632500 347500 4000 L +240000 245000 140000 245000 2500 L +200000 255000 270000 255000 1000 L +240000 245000 322500 245000 2500 L +395000 317500 322500 317500 2500 L +180000 152500 180000 162500 2500 L +180000 162500 192500 162500 2500 L +175000 152500 185000 152500 2500 L +402500 95000 140000 95000 2500 L +447500 82500 447500 95000 2500 L +612500 95000 402500 95000 2500 L +615000 92500 612500 95000 2500 L +617500 92500 615000 92500 2500 L +637500 92500 617500 92500 2500 L +577500 80000 577500 87500 2500 L +580000 77500 577500 80000 2500 L +612500 77500 580000 77500 2500 L +617500 82500 612500 77500 2500 L +622500 82500 617500 82500 2500 L +637500 82500 622500 82500 2500 L +642500 77500 637500 82500 2500 L +517500 87500 577500 87500 2500 L +632500 67500 632500 72500 2500 L +637500 72500 402500 72500 2500 L +647500 72500 652500 77500 2500 L +637500 72500 647500 72500 2500 L +652500 327500 632500 327500 4500 L +652500 317500 632500 317500 4500 L +652500 307500 632500 307500 4500 L +652500 297500 632500 297500 4500 L +652500 287500 632500 287500 4500 L +652500 277500 632500 277500 4500 L +652500 267500 632500 267500 4500 L +652500 257500 632500 257500 4500 L +632500 357500 630000 360000 4500 L +630000 360000 570000 360000 4500 L +550000 360000 415000 360000 4500 L +330000 305000 327500 305000 1000 L +255000 285000 335000 285000 1000 L +407500 305000 330000 305000 1000 L +410000 307500 407500 305000 1000 L +252500 287500 255000 285000 1000 L +300000 177500 485000 177500 1000 L +347500 285000 350000 285000 1000 L +342500 290000 347500 285000 1000 L +335000 285000 340000 290000 1000 L +602500 260000 540000 260000 4500 L +607500 297500 602500 292500 4500 L +632500 297500 607500 297500 4500 L +540000 307500 602500 307500 4500 L +632500 277500 592500 277500 4500 L +632500 287500 612500 287500 4500 L +632500 327500 540000 327500 4500 L +632500 317500 395000 317500 4500 L +612500 267500 632500 267500 4500 L +592500 277500 495000 277500 4500 L +495000 220000 590000 220000 4500 L +590000 220000 592500 222500 4500 L +632500 47500 637500 52500 2500 L +637500 52500 647500 52500 2500 L +647500 52500 652500 57500 2500 L +652500 357500 632500 357500 4000 L +340000 290000 342500 290000 1000 L +490000 370000 490000 362500 4500 L +77500 392500 127500 392500 2500 L +637500 92500 647500 92500 2500 L +647500 92500 652500 97500 2500 L +622500 102500 647500 102500 2500 L +567500 107500 632500 107500 2500 L +632500 47500 407500 47500 2500 L +310000 52500 305000 57500 1000 L +642500 47500 642500 42500 2500 L +642500 42500 640000 40000 2500 L +640000 40000 517500 40000 2500 L +597500 27500 597500 22500 1000 L +597500 22500 600000 20000 1000 L +600000 20000 647500 20000 1000 L +587500 27500 587500 30000 1000 L +587500 30000 592500 35000 1000 L +592500 35000 622500 35000 1000 L +652500 67500 647500 62500 1000 L +647500 62500 600000 62500 1000 L +600000 62500 597500 65000 1000 L +587500 87500 592500 92500 1000 L +592500 92500 610000 92500 1000 L +610000 92500 615000 87500 1000 L +615000 87500 622500 87500 1000 L +615000 130000 295000 130000 1000 L +620000 52500 620000 52500 1000 L +620000 52500 310000 52500 1000 L +115000 112500 647500 112500 1000 L +647500 112500 652500 117500 1000 L +535000 172500 262500 172500 1000 L +255000 120000 265000 120000 1000 L +265000 130000 250000 130000 1000 L +260000 105000 245000 105000 1000 L +285000 120000 300000 120000 1000 L +290000 125000 310000 125000 1000 L +295000 137500 322500 137500 1000 L +145000 137500 295000 137500 1000 L +155000 125000 290000 125000 1000 L +160000 100000 300000 100000 1000 L +170000 142500 280000 142500 1000 L +242500 132500 245000 135000 1000 L +245000 135000 270000 135000 1000 L +270000 135000 275000 130000 1000 L +180000 132500 242500 132500 1000 L +242500 110000 265000 110000 1000 L +265000 110000 270000 105000 1000 L +190000 105000 237500 105000 1000 L +237500 105000 242500 110000 1000 L +270000 255000 275000 250000 1000 L +275000 250000 315000 250000 1000 L +330000 80000 285000 80000 1000 L +315000 250000 350000 250000 1000 L +202500 282500 220000 282500 1000 L +257500 250000 210000 250000 1000 L +330000 205000 322500 197500 1000 L +322500 197500 257500 197500 1000 L +337500 255000 302500 255000 1000 L +302500 255000 300000 257500 1000 L +305000 85000 275000 85000 1000 L +350000 285000 457500 285000 1000 L +457500 285000 460000 287500 1000 L +460000 287500 465000 287500 1000 L +465000 287500 467500 285000 1000 L +467500 285000 582500 285000 1000 L +107500 180000 91000 180000 1000 L +91000 180000 90000 181000 1000 L +90000 181000 82500 181000 1000 L +122000 160500 90500 160500 1000 L +90500 160500 90000 161000 1000 L +90000 161000 82500 161000 1000 L +82000 10000 82500 9500 400 L +80500 10000 82000 10000 400 L +80000 9500 80500 10000 400 L +80000 9500 80000 8500 400 L +80000 8500 80500 8000 400 L +80500 8000 82000 8000 400 L +82000 8000 82500 7500 400 L +82500 7500 82500 6500 400 L +82000 6000 82500 6500 400 L +80500 6000 82000 6000 400 L +80000 6500 80500 6000 400 L +83701 9500 83701 6500 400 L +83701 9500 84201 10000 400 L +84201 10000 85201 10000 400 L +85201 10000 85701 9500 400 L +85701 9500 85701 6500 400 L +85201 6000 85701 6500 400 L +84201 6000 85201 6000 400 L +83701 6500 84201 6000 400 L +86902 10000 86902 6000 400 L +86902 6000 88902 6000 400 L +90603 10000 90603 6000 400 L +92103 10000 92603 9500 400 L +92603 9500 92603 6500 400 L +92103 6000 92603 6500 400 L +90103 6000 92103 6000 400 L +90103 10000 92103 10000 400 L +93804 8000 95304 8000 400 L +93804 6000 95804 6000 400 L +93804 10000 93804 6000 400 L +93804 10000 95804 10000 400 L +97005 10000 99005 10000 400 L +99005 10000 99505 9500 400 L +99505 9500 99505 8500 400 L +99005 8000 99505 8500 400 L +97505 8000 99005 8000 400 L +97505 10000 97505 6000 400 L +97505 8000 99505 6000 400 L +80000 32000 80000 28500 400 L +80000 32000 80500 32500 400 L +80500 32500 82000 32500 400 L +82000 32500 82500 32000 400 L +82500 32000 82500 28500 400 L +80000 30500 82500 30500 400 L +83701 32500 84701 32500 400 L +84201 32500 84201 28500 400 L +83701 28500 84701 28500 400 L +86402 28500 87902 28500 400 L +85902 29000 86402 28500 400 L +85902 32000 85902 29000 400 L +85902 32000 86402 32500 400 L +86402 32500 87902 32500 400 L +89103 30500 91103 30500 400 L +92804 28500 93804 28500 400 L +93304 32500 93304 28500 400 L +92304 31500 93304 32500 400 L +95005 28500 95505 28500 400 L +96706 32000 97206 32500 400 L +97206 32500 98206 32500 400 L +98206 32500 98706 32000 400 L +98706 32000 98706 29000 400 L +98206 28500 98706 29000 400 L +97206 28500 98206 28500 400 L +96706 29000 97206 28500 400 L +97206 30500 98706 30500 400 L +99907 28500 100407 28500 400 L +101608 29000 102108 28500 400 L +101608 32000 101608 29000 400 L +101608 32000 102108 32500 400 L +102108 32500 103108 32500 400 L +103108 32500 103608 32000 400 L +103608 32000 103608 29000 400 L +103108 28500 103608 29000 400 L +102108 28500 103108 28500 400 L +101608 29500 103608 31500 400 L +80000 21500 80500 21000 400 L +80000 24500 80500 25000 400 L +80000 24500 80000 21500 400 L +82201 21000 83701 21000 400 L +81701 21500 82201 21000 400 L +81701 24500 81701 21500 400 L +81701 24500 82201 25000 400 L +82201 25000 83701 25000 400 L +84902 25000 85402 24500 400 L +85402 24500 85402 21500 400 L +84902 21000 85402 21500 400 L +88403 24500 88903 25000 400 L +88903 25000 90403 25000 400 L +90403 25000 90903 24500 400 L +90903 24500 90903 23500 400 L +88403 21000 90903 23500 400 L +88403 21000 90903 21000 400 L +92104 21500 92604 21000 400 L +92104 24500 92104 21500 400 L +92104 24500 92604 25000 400 L +92604 25000 93604 25000 400 L +93604 25000 94104 24500 400 L +94104 24500 94104 21500 400 L +93604 21000 94104 21500 400 L +92604 21000 93604 21000 400 L +92104 22000 94104 24000 400 L +95305 21500 95805 21000 400 L +95305 24500 95305 21500 400 L +95305 24500 95805 25000 400 L +95805 25000 96805 25000 400 L +96805 25000 97305 24500 400 L +97305 24500 97305 21500 400 L +96805 21000 97305 21500 400 L +95805 21000 96805 21000 400 L +95305 22000 97305 24000 400 L +98506 24500 99006 25000 400 L +99006 25000 100006 25000 400 L +100006 25000 100506 24500 400 L +100506 24500 100506 21500 400 L +100006 21000 100506 21500 400 L +99006 21000 100006 21000 400 L +98506 21500 99006 21000 400 L +99006 23000 100506 23000 400 L +103507 25000 103507 21000 400 L +103507 21000 105007 22500 400 L +105007 22500 106507 21000 400 L +106507 25000 106507 21000 400 L +109208 23000 109708 22500 400 L +108208 23000 109208 23000 400 L +107708 22500 108208 23000 400 L +107708 22500 107708 21500 400 L +107708 21500 108208 21000 400 L +109708 23000 109708 21500 400 L +109708 21500 110208 21000 400 L +108208 21000 109208 21000 400 L +109208 21000 109708 21500 400 L +111409 25000 111409 21500 400 L +111409 21500 111909 21000 400 L +113410 25000 113410 21500 400 L +113410 21500 113910 21000 400 L +112910 23500 113910 23500 400 L +115411 21000 116911 21000 400 L +114911 21500 115411 21000 400 L +114911 22500 114911 21500 400 L +114911 22500 115411 23000 400 L +115411 23000 116411 23000 400 L +116411 23000 116911 22500 400 L +114911 22000 116911 22000 400 L +116911 22500 116911 22000 400 L +118612 22500 118612 21000 400 L +118612 22500 119112 23000 400 L +119112 23000 120112 23000 400 L +118112 23000 118612 22500 400 L +123113 25000 123113 21000 400 L +123113 25000 125113 25000 400 L +123113 23000 124613 23000 400 L +126814 21000 128314 21000 400 L +126314 21500 126814 21000 400 L +126314 22500 126314 21500 400 L +126314 22500 126814 23000 400 L +126814 23000 127814 23000 400 L +127814 23000 128314 22500 400 L +126314 22000 128314 22000 400 L +128314 22500 128314 22000 400 L +130015 25000 130015 21500 400 L +130015 21500 130515 21000 400 L +129515 23500 130515 23500 400 L +132016 25000 132016 21500 400 L +132016 21500 132516 21000 400 L +131516 23500 132516 23500 400 L +134017 21000 135517 21000 400 L +133517 21500 134017 21000 400 L +133517 22500 133517 21500 400 L +133517 22500 134017 23000 400 L +134017 23000 135017 23000 400 L +135017 23000 135517 22500 400 L +133517 22000 135517 22000 400 L +135517 22500 135517 22000 400 L +137218 22500 137218 21000 400 L +137218 22500 137718 23000 400 L +137718 23000 138718 23000 400 L +136718 23000 137218 22500 400 L +141719 25000 141719 21000 400 L +141719 21000 143719 21000 400 L +146420 23000 146920 22500 400 L +145420 23000 146420 23000 400 L +144920 22500 145420 23000 400 L +144920 22500 144920 21500 400 L +144920 21500 145420 21000 400 L +146920 23000 146920 21500 400 L +146920 21500 147420 21000 400 L +145420 21000 146420 21000 400 L +146420 21000 146920 21500 400 L +150121 23000 150621 22500 400 L +149121 23000 150121 23000 400 L +148621 22500 149121 23000 400 L +148621 22500 148621 21500 400 L +148621 21500 149121 21000 400 L +149121 21000 150121 21000 400 L +150121 21000 150621 21500 400 L +148621 20000 149121 19500 400 L +149121 19500 150121 19500 400 L +150121 19500 150621 20000 400 L +150621 23000 150621 20000 400 L +152322 21000 153822 21000 400 L +151822 21500 152322 21000 400 L +151822 22500 151822 21500 400 L +151822 22500 152322 23000 400 L +152322 23000 153322 23000 400 L +153322 23000 153822 22500 400 L +151822 22000 153822 22000 400 L +153822 22500 153822 22000 400 L +155523 21000 157023 21000 400 L +157023 21000 157523 21500 400 L +157023 22000 157523 21500 400 L +155523 22000 157023 22000 400 L +155023 22500 155523 22000 400 L +155023 22500 155523 23000 400 L +155523 23000 157023 23000 400 L +157023 23000 157523 22500 400 L +155023 21500 155523 21000 400 L +80000 17500 80000 13500 400 L +80000 17500 82000 17500 400 L +80000 15500 81500 15500 400 L +83701 13500 85201 13500 400 L +83201 14000 83701 13500 400 L +83201 15000 83201 14000 400 L +83201 15000 83701 15500 400 L +83701 15500 84701 15500 400 L +84701 15500 85201 15000 400 L +83201 14500 85201 14500 400 L +85201 15000 85201 14500 400 L +86902 15000 86902 13500 400 L +86902 15000 87402 15500 400 L +87402 15500 88402 15500 400 L +86402 15500 86902 15000 400 L +90103 15000 90103 13500 400 L +90103 15000 90603 15500 400 L +90603 15500 91103 15500 400 L +91103 15500 91603 15000 400 L +91603 15000 91603 13500 400 L +89603 15500 90103 15000 400 L +94304 15500 94804 15000 400 L +93304 15500 94304 15500 400 L +92804 15000 93304 15500 400 L +92804 15000 92804 14000 400 L +92804 14000 93304 13500 400 L +94804 15500 94804 14000 400 L +94804 14000 95304 13500 400 L +93304 13500 94304 13500 400 L +94304 13500 94804 14000 400 L +97005 15000 97005 13500 400 L +97005 15000 97505 15500 400 L +97505 15500 98005 15500 400 L +98005 15500 98505 15000 400 L +98505 15000 98505 13500 400 L +96505 15500 97005 15000 400 L +101706 17500 101706 13500 400 L +101206 13500 101706 14000 400 L +100206 13500 101206 13500 400 L +99706 14000 100206 13500 400 L +99706 15000 99706 14000 400 L +99706 15000 100206 15500 400 L +100206 15500 101206 15500 400 L +101206 15500 101706 15000 400 L +102907 15000 102907 14000 400 L +102907 15000 103407 15500 400 L +103407 15500 104407 15500 400 L +104407 15500 104907 15000 400 L +104907 15000 104907 14000 400 L +104407 13500 104907 14000 400 L +103407 13500 104407 13500 400 L +102907 14000 103407 13500 400 L +108408 17500 108408 13500 400 L +107908 17500 109908 17500 400 L +109908 17500 110408 17000 400 L +110408 17000 110408 16000 400 L +109908 15500 110408 16000 400 L +108408 15500 109908 15500 400 L +112109 13500 113609 13500 400 L +111609 14000 112109 13500 400 L +111609 15000 111609 14000 400 L +111609 15000 112109 15500 400 L +112109 15500 113109 15500 400 L +113109 15500 113609 15000 400 L +111609 14500 113609 14500 400 L +113609 15000 113609 14500 400 L +115310 13500 116810 13500 400 L +116810 13500 117310 14000 400 L +116810 14500 117310 14000 400 L +115310 14500 116810 14500 400 L +114810 15000 115310 14500 400 L +114810 15000 115310 15500 400 L +115310 15500 116810 15500 400 L +116810 15500 117310 15000 400 L +114810 14000 115310 13500 400 L +119011 13500 120511 13500 400 L +120511 13500 121011 14000 400 L +120511 14500 121011 14000 400 L +119011 14500 120511 14500 400 L +118511 15000 119011 14500 400 L +118511 15000 119011 15500 400 L +119011 15500 120511 15500 400 L +120511 15500 121011 15000 400 L +118511 14000 119011 13500 400 L +122212 15500 122212 14000 400 L +122212 14000 122712 13500 400 L +122712 13500 123712 13500 400 L +123712 13500 124212 14000 400 L +124212 15500 124212 14000 400 L +125913 17500 125913 14000 400 L +125913 14000 126413 13500 400 L +125413 16000 126413 16000 400 L +127914 17500 127914 14000 400 L +127914 14000 128414 13500 400 L +127414 16000 128414 16000 400 L +129415 15000 129415 14000 400 L +129415 15000 129915 15500 400 L +129915 15500 130915 15500 400 L +130915 15500 131415 15000 400 L +131415 15000 131415 14000 400 L +130915 13500 131415 14000 400 L +129915 13500 130915 13500 400 L +129415 14000 129915 13500 400 L +/Color {0.227 0.373 0.804 mysetrgbcolor} def Color +/Color {0.063 0.306 0.545 mysetrgbcolor} def Color +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +335000 62500 6000 3500 PVSQ +335000 22500 6000 3500 PVR +297500 342500 6000 3500 PVSQ +297500 372500 6000 3500 PVR +415000 360000 8000 4200 PVSQ +405000 360000 8000 4200 PVR +395000 360000 8000 4200 PVR +447500 122500 6000 3500 PVSQ +447500 82500 6000 3500 PVR +397500 117500 6000 3500 PVSQ +407500 117500 6000 3500 PVR +417500 117500 6000 3500 PVR +427500 117500 6000 3500 PVR +427500 87500 6000 3500 PVR +417500 87500 6000 3500 PVR +407500 87500 6000 3500 PVR +397500 87500 6000 3500 PVR +557500 122500 6000 3500 PVSQ +557500 82500 6000 3500 PVR +537500 62500 6000 3500 PVSQ +537500 22500 6000 3500 PVR +487500 57500 6000 3500 PVSQ +497500 57500 6000 3500 PVR +507500 57500 6000 3500 PVR +517500 57500 6000 3500 PVR +517500 27500 6000 3500 PVR +507500 27500 6000 3500 PVR +497500 27500 6000 3500 PVR +487500 27500 6000 3500 PVR +467500 62500 6000 3500 PVSQ +467500 22500 6000 3500 PVR +467500 122500 6000 3500 PVSQ +467500 82500 6000 3500 PVR +537500 122500 6000 3500 PVSQ +537500 82500 6000 3500 PVR +487500 117500 6000 3500 PVSQ +497500 117500 6000 3500 PVR +507500 117500 6000 3500 PVR +517500 117500 6000 3500 PVR +517500 87500 6000 3500 PVR +507500 87500 6000 3500 PVR +497500 87500 6000 3500 PVR +487500 87500 6000 3500 PVR +397500 57500 6000 3500 PVSQ +407500 57500 6000 3500 PVR +417500 57500 6000 3500 PVR +427500 57500 6000 3500 PVR +427500 27500 6000 3500 PVR +417500 27500 6000 3500 PVR +407500 27500 6000 3500 PVR +397500 27500 6000 3500 PVR +557500 62500 6000 3500 PVSQ +557500 22500 6000 3500 PVR +157500 342500 6000 3500 PVSQ +157500 372500 6000 3500 PVR +57500 239500 6000 3500 PVSQ +57500 249500 6000 3500 PVR +530000 245000 8000 4200 PVSQ +540000 245000 8000 4200 PVR +550000 245000 8000 4200 PVR +245000 57500 6000 3500 PVSQ +255000 57500 6000 3500 PVR +265000 57500 6000 3500 PVR +275000 57500 6000 3500 PVR +285000 57500 6000 3500 PVR +295000 57500 6000 3500 PVR +305000 57500 6000 3500 PVR +315000 57500 6000 3500 PVR +315000 27500 6000 3500 PVR +305000 27500 6000 3500 PVR +295000 27500 6000 3500 PVR +285000 27500 6000 3500 PVR +275000 27500 6000 3500 PVR +265000 27500 6000 3500 PVR +255000 27500 6000 3500 PVR +245000 27500 6000 3500 PVR +317500 372500 6000 3500 PVSQ +327500 372500 6000 3500 PVR +420000 205000 7000 4200 PVSQ +430000 205000 7000 4200 PVR +420000 215000 7000 4200 PVR +430000 215000 7000 4200 PVR +420000 225000 7000 4200 PVR +430000 225000 7000 4200 PVR +420000 235000 7000 4200 PVR +430000 235000 7000 4200 PVR +140000 265000 6000 3500 PVSQ +150000 265000 6000 3500 PVR +160000 265000 6000 3500 PVR +170000 265000 6000 3500 PVR +180000 265000 6000 3500 PVR +190000 265000 6000 3500 PVR +200000 265000 6000 3500 PVR +210000 265000 6000 3500 PVR +220000 265000 6000 3500 PVR +230000 265000 6000 3500 PVR +240000 265000 6000 3500 PVR +250000 265000 6000 3500 PVR +250000 205000 6000 3500 PVR +240000 205000 6000 3500 PVR +230000 205000 6000 3500 PVR +220000 205000 6000 3500 PVR +210000 205000 6000 3500 PVR +200000 205000 6000 3500 PVR +190000 205000 6000 3500 PVR +180000 205000 6000 3500 PVR +170000 205000 6000 3500 PVR +160000 205000 6000 3500 PVR +150000 205000 6000 3500 PVR +140000 205000 6000 3500 PVR +280000 235000 6000 3500 PVSQ +290000 235000 6000 3500 PVR +300000 235000 6000 3500 PVR +310000 235000 6000 3500 PVR +320000 235000 6000 3500 PVR +330000 235000 6000 3500 PVR +340000 235000 6000 3500 PVR +350000 235000 6000 3500 PVR +360000 235000 6000 3500 PVR +370000 235000 6000 3500 PVR +380000 235000 6000 3500 PVR +390000 235000 6000 3500 PVR +390000 205000 6000 3500 PVR +380000 205000 6000 3500 PVR +370000 205000 6000 3500 PVR +360000 205000 6000 3500 PVR +350000 205000 6000 3500 PVR +340000 205000 6000 3500 PVR +330000 205000 6000 3500 PVR +320000 205000 6000 3500 PVR +310000 205000 6000 3500 PVR +300000 205000 6000 3500 PVR +290000 205000 6000 3500 PVR +280000 205000 6000 3500 PVR +77500 124000 12000 10000 PVR +77500 218000 12000 10000 PVR +82500 151000 7000 4200 PVR +72500 156000 7000 4200 PVR +82500 161000 7000 4200 PVR +72500 166000 7000 4200 PVR +82500 171000 7000 4200 PVR +72500 176000 7000 4200 PVR +82500 181000 7000 4200 PVR +72500 186000 7000 4200 PVR +82500 191000 7000 4200 PVSQ +81500 239500 6000 3500 PVSQ +81500 249500 6000 3500 PVR +495000 220000 7000 4200 PVSQ +470000 220000 7000 4200 PVR +85000 330000 6000 3500 PVSQ +85000 360000 6000 3500 PVR +582500 245000 8000 4200 PVSQ +592500 245000 8000 4200 PVR +602500 245000 8000 4200 PVR +535000 210000 6000 3500 PVSQ +545000 210000 6000 3500 PVR +355000 62500 6000 3500 PVSQ +355000 22500 6000 3500 PVR +105000 330000 7000 4200 PVSQ +115000 330000 7000 4200 PVR +172500 320000 6000 3500 PVSQ +182500 320000 6000 3500 PVR +192500 320000 6000 3500 PVR +202500 320000 6000 3500 PVR +202500 290000 6000 3500 PVR +192500 290000 6000 3500 PVR +182500 290000 6000 3500 PVR +172500 290000 6000 3500 PVR +495000 277500 7000 4200 PVSQ +470000 277500 7000 4200 PVR +570000 360000 8000 4200 PVSQ +560000 360000 8000 4200 PVR +550000 360000 8000 4200 PVR +280000 257500 6000 3500 PVSQ +280000 297500 6000 3500 PVR +116000 280000 6000 3500 PVSQ +76000 280000 6000 3500 PVR +490000 370000 6000 3500 PVSQ +475000 370000 6000 3500 PVR +530000 292500 8000 4200 PVSQ +540000 292500 8000 4200 PVR +550000 292500 8000 4200 PVR +652500 47500 6000 3500 PVSQ +652500 57500 6000 3500 PVR +652500 67500 6000 3500 PVR +652500 77500 6000 3500 PVR +652500 87500 6000 3500 PVR +652500 97500 6000 3500 PVR +652500 107500 6000 3500 PVR +652500 117500 6000 3500 PVR +652500 127500 6000 3500 PVR +652500 137500 6000 3500 PVR +652500 147500 6000 3500 PVR +652500 157500 6000 3500 PVR +652500 167500 6000 3500 PVR +652500 177500 6000 3500 PVR +652500 187500 6000 3500 PVR +652500 197500 6000 3500 PVR +652500 207500 6000 3500 PVR +652500 217500 6000 3500 PVR +652500 227500 6000 3500 PVR +652500 237500 6000 3500 PVR +652500 247500 6000 3500 PVR +652500 257500 6000 3500 PVR +652500 267500 6000 3500 PVR +652500 277500 6000 3500 PVR +652500 287500 6000 3500 PVR +652500 297500 6000 3500 PVR +652500 307500 6000 3500 PVR +652500 317500 6000 3500 PVR +652500 327500 6000 3500 PVR +652500 337500 6000 3500 PVR +652500 347500 6000 3500 PVR +652500 357500 6000 3500 PVR +642500 47500 6000 3500 PVR +642500 57500 6000 3500 PVR +642500 67500 6000 3500 PVR +642500 77500 6000 3500 PVR +642500 87500 6000 3500 PVR +642500 97500 6000 3500 PVR +642500 107500 6000 3500 PVR +642500 117500 6000 3500 PVR +642500 127500 6000 3500 PVR +642500 137500 6000 3500 PVR +642500 147500 6000 3500 PVR +642500 157500 6000 3500 PVR +642500 167500 6000 3500 PVR +642500 177500 6000 3500 PVR +642500 187500 6000 3500 PVR +642500 197500 6000 3500 PVR +642500 207500 6000 3500 PVR +642500 217500 6000 3500 PVR +642500 227500 6000 3500 PVR +642500 237500 6000 3500 PVR +642500 247500 6000 3500 PVR +642500 257500 6000 3500 PVR +642500 267500 6000 3500 PVR +642500 277500 6000 3500 PVR +642500 287500 6000 3500 PVR +642500 297500 6000 3500 PVR +642500 307500 6000 3500 PVR +642500 317500 6000 3500 PVR +642500 327500 6000 3500 PVR +642500 337500 6000 3500 PVR +642500 347500 6000 3500 PVR +642500 357500 6000 3500 PVR +632500 47500 6000 3500 PVR +632500 57500 6000 3500 PVR +632500 67500 6000 3500 PVR +632500 77500 6000 3500 PVR +632500 87500 6000 3500 PVR +632500 97500 6000 3500 PVR +632500 107500 6000 3500 PVR +632500 117500 6000 3500 PVR +632500 127500 6000 3500 PVR +632500 137500 6000 3500 PVR +632500 147500 6000 3500 PVR +632500 157500 6000 3500 PVR +632500 167500 6000 3500 PVR +632500 177500 6000 3500 PVR +632500 187500 6000 3500 PVR +632500 197500 6000 3500 PVR +632500 207500 6000 3500 PVR +632500 217500 6000 3500 PVR +632500 227500 6000 3500 PVR +632500 237500 6000 3500 PVR +632500 247500 6000 3500 PVR +632500 257500 6000 3500 PVR +632500 267500 6000 3500 PVR +632500 277500 6000 3500 PVR +632500 287500 6000 3500 PVR +632500 297500 6000 3500 PVR +632500 307500 6000 3500 PVR +632500 317500 6000 3500 PVR +632500 327500 6000 3500 PVR +632500 337500 6000 3500 PVR +632500 347500 6000 3500 PVR +632500 357500 6000 3500 PVR +662500 377500 12000 8000 PVR +662500 27500 12000 8000 PVR +332500 260000 6000 3500 PVSQ +322500 260000 6000 3500 PVR +447500 62500 6000 3500 PVSQ +447500 22500 6000 3500 PVR +300000 297500 6000 3500 PVSQ +300000 257500 6000 3500 PVR +475000 330000 6000 3500 PVSQ +490000 330000 6000 3500 PVR +55000 269500 7000 4200 PVSQ +55000 287200 7000 4200 PVR +64800 264600 7000 5200 PVR +64800 292200 7000 5200 PVR +582500 292500 8000 4200 PVSQ +592500 292500 8000 4200 PVR +602500 292500 8000 4200 PVR +562500 187500 6000 3500 PVSQ +592500 187500 6000 3500 PVR +577500 117500 6000 3500 PVSQ +587500 117500 6000 3500 PVR +597500 117500 6000 3500 PVR +607500 117500 6000 3500 PVR +607500 87500 6000 3500 PVR +597500 87500 6000 3500 PVR +587500 87500 6000 3500 PVR +577500 87500 6000 3500 PVR +582500 210000 8000 4200 PVSQ +592500 210000 8000 4200 PVR +602500 210000 8000 4200 PVR +577500 57500 6000 3500 PVSQ +587500 57500 6000 3500 PVR +597500 57500 6000 3500 PVR +607500 57500 6000 3500 PVR +607500 27500 6000 3500 PVR +597500 27500 6000 3500 PVR +587500 27500 6000 3500 PVR +577500 27500 6000 3500 PVR +322500 290000 6000 3500 PVSQ +332500 290000 6000 3500 PVR +87500 57500 6000 3500 PVSQ +97500 62500 6000 3500 PVR +87500 67500 6000 3500 PVR +97500 72500 6000 3500 PVR +87500 77500 6000 3500 PVR +97500 82500 6000 3500 PVR +87500 87500 6000 3500 PVR +97500 92500 6000 3500 PVR +62500 52500 14800 12800 PVR +62500 97600 14800 12800 PVR +74500 44500 8000 6000 PVR +74500 105600 8000 6000 PVR +360000 290000 6000 3500 PVSQ +370000 290000 6000 3500 PVR +380000 290000 6000 3500 PVR +390000 290000 6000 3500 PVR +390000 260000 6000 3500 PVR +380000 260000 6000 3500 PVR +370000 260000 6000 3500 PVR +360000 260000 6000 3500 PVR +317500 342500 6000 3500 PVSQ +327500 342500 6000 3500 PVR +137500 342500 6000 3500 PVSQ +127500 342500 6000 3500 PVR +540000 162500 6000 3500 PVSQ +535000 152500 6000 3500 PVR +530000 162500 6000 3500 PVR +525000 152500 6000 3500 PVR +520000 162500 6000 3500 PVR +515000 152500 6000 3500 PVR +510000 162500 6000 3500 PVR +505000 152500 6000 3500 PVR +500000 162500 6000 3500 PVR +495000 152500 6000 3500 PVR +490000 162500 6000 3500 PVR +485000 152500 6000 3500 PVR +480000 162500 6000 3500 PVR +475000 152500 6000 3500 PVR +470000 162500 6000 3500 PVR +465000 152500 6000 3500 PVR +460000 162500 6000 3500 PVR +455000 152500 6000 3500 PVR +450000 162500 6000 3500 PVR +445000 152500 6000 3500 PVR +440000 162500 6000 3500 PVR +435000 152500 6000 3500 PVR +430000 162500 6000 3500 PVR +425000 152500 6000 3500 PVR +420000 162500 6000 3500 PVR +415000 152500 6000 3500 PVR +410000 162500 6000 3500 PVR +405000 152500 6000 3500 PVR +400000 162500 6000 3500 PVR +395000 152500 6000 3500 PVR +390000 162500 6000 3500 PVR +385000 152500 6000 3500 PVR +380000 162500 6000 3500 PVR +375000 152500 6000 3500 PVR +370000 162500 6000 3500 PVR +365000 152500 6000 3500 PVR +340000 162500 6000 3500 PVR +335000 152500 6000 3500 PVR +330000 162500 6000 3500 PVR +325000 152500 6000 3500 PVR +320000 162500 6000 3500 PVR +315000 152500 6000 3500 PVR +310000 162500 6000 3500 PVR +305000 152500 6000 3500 PVR +300000 162500 6000 3500 PVR +295000 152500 6000 3500 PVR +290000 162500 6000 3500 PVR +285000 152500 6000 3500 PVR +280000 162500 6000 3500 PVR +275000 152500 6000 3500 PVR +270000 162500 6000 3500 PVR +265000 152500 6000 3500 PVR +260000 162500 6000 3500 PVR +255000 152500 6000 3500 PVR +250000 162500 6000 3500 PVR +245000 152500 6000 3500 PVR +240000 162500 6000 3500 PVR +235000 152500 6000 3500 PVR +230000 162500 6000 3500 PVR +225000 152500 6000 3500 PVR +220000 162500 6000 3500 PVR +215000 152500 6000 3500 PVR +210000 162500 6000 3500 PVR +205000 152500 6000 3500 PVR +200000 162500 6000 3500 PVR +195000 152500 6000 3500 PVR +190000 162500 6000 3500 PVR +185000 152500 6000 3500 PVR +180000 162500 6000 3500 PVR +175000 152500 6000 3500 PVR +170000 162500 6000 3500 PVR +165000 152500 6000 3500 PVR +573000 157500 8000 6000 PVR +352500 157500 12000 10000 PVR +132500 157500 12000 10000 PVR +137500 372500 6000 3500 PVSQ +127500 372500 6000 3500 PVR +172500 372500 6000 3500 PVSQ +182500 372500 6000 3500 PVR +192500 372500 6000 3500 PVR +202500 372500 6000 3500 PVR +212500 372500 6000 3500 PVR +222500 372500 6000 3500 PVR +232500 372500 6000 3500 PVR +242500 372500 6000 3500 PVR +252500 372500 6000 3500 PVR +262500 372500 6000 3500 PVR +272500 372500 6000 3500 PVR +282500 372500 6000 3500 PVR +282500 342500 6000 3500 PVR +272500 342500 6000 3500 PVR +262500 342500 6000 3500 PVR +252500 342500 6000 3500 PVR +242500 342500 6000 3500 PVR +232500 342500 6000 3500 PVR +222500 342500 6000 3500 PVR +212500 342500 6000 3500 PVR +202500 342500 6000 3500 PVR +192500 342500 6000 3500 PVR +182500 342500 6000 3500 PVR +172500 342500 6000 3500 PVR +115500 305500 6000 3500 PVSQ +75500 305500 6000 3500 PVR +57500 27500 12000 8000 PVR +57500 376200 12000 8000 PVR +662500 27500 12000 8000 PVR +662500 376200 12000 8000 PVR +/Color {0.498 0.498 0.498 mysetrgbcolor} def Color +475000 342500 6000 3500 PVR +490000 342500 6000 3500 PVR +560000 342500 6000 3500 PVR +602500 260000 6000 3500 PVR +540000 260000 6000 3500 PVR +540000 307500 6000 3500 PVR +602500 307500 6000 3500 PVR +592500 277500 6000 3500 PVR +612500 287500 6000 3500 PVR +540000 327500 6000 3500 PVR +395000 317500 6000 3500 PVR +475000 317500 6000 3500 PVR +622500 342500 6000 3500 PVR +612500 267500 6000 3500 PVR +592500 222500 6000 3500 PVR +462500 342500 6000 3500 PVR +562500 220000 6000 3500 PVR +622500 102500 6000 3500 PVR +647500 102500 6000 3500 PVR +567500 107500 6000 3500 PVR +597500 47500 6000 3500 PVR +537500 47500 6000 3500 PVR +487500 47500 6000 3500 PVR +517500 40000 6000 3500 PVR +577500 40000 6000 3500 PVR +402500 72500 6000 3500 PVR +487500 72500 6000 3500 PVR +537500 72500 6000 3500 PVR +592500 72500 6000 3500 PVR +497500 95000 6000 3500 PVR +140000 95000 6000 3500 PVR +175000 95000 6000 3500 PVR +237500 95000 6000 3500 PVR +322500 317500 6000 3500 PVR +327500 392500 6000 3500 PVR +240000 245000 6000 3500 PVR +270000 245000 6000 3500 PVR +140000 245000 6000 3500 PVR +130000 280000 6000 3500 PVR +130000 290000 6000 3500 PVR +252500 287500 4000 2000 PVR +427500 100000 6000 3500 PVR +525000 100000 6000 3500 PVR +315000 100000 6000 3500 PVR +447500 95000 6000 3500 PVR +202500 305000 6000 3500 PVR +127500 392500 6000 3500 PVR +212500 392500 6000 3500 PVR +272500 392500 6000 3500 PVR +360000 317500 6000 3500 PVR +77500 392500 6000 3500 PVR +487500 107500 4000 2000 PVR +620000 52500 4000 2000 PVR +622500 87500 4000 2000 PVR +537500 107500 4000 2000 PVR +637500 172500 4000 2000 PVR +262500 172500 4000 2000 PVR +597500 65000 4000 2000 PVR +407500 47500 6000 3500 PVR +205000 82500 4000 2000 PVR +402500 235000 4000 2000 PVR +295000 130000 4000 2000 PVR +335000 52500 4000 2000 PVR +527500 22500 4000 2000 PVR +615000 15000 4000 2000 PVR +477500 57500 4000 2000 PVR +622500 35000 4000 2000 PVR +647500 20000 4000 2000 PVR +557500 15000 4000 2000 PVR +502500 15000 4000 2000 PVR +547500 142500 4000 2000 PVR +610000 142500 4000 2000 PVR +615000 130000 4000 2000 PVR +555000 135000 4000 2000 PVR +195000 57500 4000 2000 PVR +242500 360000 4000 2000 PVR +210000 67500 4000 2000 PVR +115000 112500 4000 2000 PVR +507500 107500 4000 2000 PVR +417500 135000 4000 2000 PVR +200000 62500 4000 2000 PVR +512500 80000 4000 2000 PVR +557500 237500 4000 2000 PVR +447500 30000 4000 2000 PVR +355000 130000 4000 2000 PVR +272500 352500 6000 3500 PVR +95000 245000 4000 2000 PVR +115000 245000 4000 2000 PVR +582500 285000 4000 2000 PVR +110000 367500 4000 2000 PVR +182500 385000 4000 2000 PVR +252500 385000 4000 2000 PVR +212500 352500 6000 3500 PVR +232500 352500 6000 3500 PVR +192500 360000 4000 2000 PVR +417500 107500 4000 2000 PVR +447500 107500 4000 2000 PVR +472500 107500 4000 2000 PVR +467500 15000 4000 2000 PVR +255000 120000 4000 2000 PVR +265000 120000 4000 2000 PVR +265000 130000 4000 2000 PVR +250000 130000 4000 2000 PVR +260000 105000 4000 2000 PVR +245000 105000 4000 2000 PVR +285000 120000 4000 2000 PVR +300000 120000 4000 2000 PVR +290000 125000 4000 2000 PVR +310000 125000 4000 2000 PVR +295000 137500 4000 2000 PVR +322500 137500 4000 2000 PVR +145000 137500 4000 2000 PVR +155000 125000 4000 2000 PVR +160000 100000 4000 2000 PVR +300000 100000 4000 2000 PVR +170000 142500 4000 2000 PVR +280000 142500 4000 2000 PVR +180000 132500 4000 2000 PVR +275000 130000 4000 2000 PVR +190000 105000 4000 2000 PVR +270000 105000 4000 2000 PVR +200000 255000 4000 2000 PVR +270000 255000 4000 2000 PVR +322500 245000 6000 3500 PVR +350000 250000 4000 2000 PVR +202500 282500 4000 2000 PVR +220000 282500 4000 2000 PVR +257500 250000 4000 2000 PVR +210000 250000 4000 2000 PVR +257500 197500 4000 2000 PVR +220000 225000 6000 3500 PVR +240000 225000 6000 3500 PVR +300000 212500 4000 2000 PVR +215000 212500 4000 2000 PVR +310000 217500 4000 2000 PVR +225000 217500 4000 2000 PVR +225000 195000 4000 2000 PVR +315000 192500 4000 2000 PVR +150000 187500 4000 2000 PVR +325000 187500 4000 2000 PVR +235000 187500 4000 2000 PVR +360000 252500 4000 2000 PVR +292500 222500 4000 2000 PVR +170000 217500 4000 2000 PVR +210000 230000 4000 2000 PVR +390000 225000 4000 2000 PVR +257500 277500 4000 2000 PVR +385000 277500 4000 2000 PVR +155000 282500 4000 2000 PVR +340000 282500 4000 2000 PVR +230000 182500 4000 2000 PVR +245000 182500 4000 2000 PVR +227500 90000 4000 2000 PVR +255000 90000 4000 2000 PVR +250000 172500 4000 2000 PVR +190000 175000 4000 2000 PVR +180000 170000 4000 2000 PVR +430000 197500 4000 2000 PVR +332500 270000 6000 3500 PVR +290000 265000 4000 2000 PVR +480000 265000 4000 2000 PVR +470000 290000 6000 3500 PVR +462500 282500 4000 2000 PVR +300000 177500 4000 2000 PVR +485000 177500 4000 2000 PVR +305000 85000 4000 2000 PVR +275000 85000 4000 2000 PVR +330000 80000 4000 2000 PVR +285000 80000 4000 2000 PVR +350000 220000 4000 2000 PVR +365000 220000 4000 2000 PVR +355000 385000 4000 2000 PVR +297500 352500 6000 3500 PVR +375000 360000 4000 2000 PVR +107500 147500 4000 2000 PVR +122000 160500 4000 2000 PVR +450000 182500 4000 2000 PVR +262500 352500 4000 2000 PVR +327500 352500 4000 2000 PVR +400000 225000 4000 2000 PVR +405000 215000 4000 2000 PVR +410000 205000 4000 2000 PVR +105000 270000 4000 2000 PVR +415000 272500 4000 2000 PVR +402500 250000 4000 2000 PVR +222500 310000 4000 2000 PVR +402500 310000 4000 2000 PVR +520000 260000 4000 2000 PVR +520000 337500 4000 2000 PVR +210000 322500 4000 2000 PVR +570000 322500 4000 2000 PVR +570000 245000 4000 2000 PVR +530000 327500 4000 2000 PVR +282500 330000 4000 2000 PVR +327500 305000 4000 2000 PVR +49500 330000 4000 2000 PVR +130000 255000 6000 3500 PVR +76500 257000 4000 2000 PVR +90500 305500 4000 2000 PVR +592500 360000 6000 3500 PVR +405000 342500 6000 3500 PVR +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +335000 62500 800 400 DH +335000 22500 800 400 DH +297500 342500 800 400 DH +297500 372500 800 400 DH +415000 360000 800 400 DH +405000 360000 800 400 DH +395000 360000 800 400 DH +447500 122500 800 400 DH +447500 82500 800 400 DH +397500 117500 800 400 DH +407500 117500 800 400 DH +417500 117500 800 400 DH +427500 117500 800 400 DH +427500 87500 800 400 DH +417500 87500 800 400 DH +407500 87500 800 400 DH +397500 87500 800 400 DH +557500 122500 800 400 DH +557500 82500 800 400 DH +537500 62500 800 400 DH +537500 22500 800 400 DH +487500 57500 800 400 DH +497500 57500 800 400 DH +507500 57500 800 400 DH +517500 57500 800 400 DH +517500 27500 800 400 DH +507500 27500 800 400 DH +497500 27500 800 400 DH +487500 27500 800 400 DH +467500 62500 800 400 DH +467500 22500 800 400 DH +467500 122500 800 400 DH +467500 82500 800 400 DH +537500 122500 800 400 DH +537500 82500 800 400 DH +487500 117500 800 400 DH +497500 117500 800 400 DH +507500 117500 800 400 DH +517500 117500 800 400 DH +517500 87500 800 400 DH +507500 87500 800 400 DH +497500 87500 800 400 DH +487500 87500 800 400 DH +397500 57500 800 400 DH +407500 57500 800 400 DH +417500 57500 800 400 DH +427500 57500 800 400 DH +427500 27500 800 400 DH +417500 27500 800 400 DH +407500 27500 800 400 DH +397500 27500 800 400 DH +557500 62500 800 400 DH +557500 22500 800 400 DH +157500 342500 800 400 DH +157500 372500 800 400 DH +57500 239500 800 400 DH +57500 249500 800 400 DH +530000 245000 800 400 DH +540000 245000 800 400 DH +550000 245000 800 400 DH +245000 57500 800 400 DH +255000 57500 800 400 DH +265000 57500 800 400 DH +275000 57500 800 400 DH +285000 57500 800 400 DH +295000 57500 800 400 DH +305000 57500 800 400 DH +315000 57500 800 400 DH +315000 27500 800 400 DH +305000 27500 800 400 DH +295000 27500 800 400 DH +285000 27500 800 400 DH +275000 27500 800 400 DH +265000 27500 800 400 DH +255000 27500 800 400 DH +245000 27500 800 400 DH +317500 372500 800 400 DH +327500 372500 800 400 DH +420000 205000 800 400 DH +430000 205000 800 400 DH +420000 215000 800 400 DH +430000 215000 800 400 DH +420000 225000 800 400 DH +430000 225000 800 400 DH +420000 235000 800 400 DH +430000 235000 800 400 DH +140000 265000 800 400 DH +150000 265000 800 400 DH +160000 265000 800 400 DH +170000 265000 800 400 DH +180000 265000 800 400 DH +190000 265000 800 400 DH +200000 265000 800 400 DH +210000 265000 800 400 DH +220000 265000 800 400 DH +230000 265000 800 400 DH +240000 265000 800 400 DH +250000 265000 800 400 DH +250000 205000 800 400 DH +240000 205000 800 400 DH +230000 205000 800 400 DH +220000 205000 800 400 DH +210000 205000 800 400 DH +200000 205000 800 400 DH +190000 205000 800 400 DH +180000 205000 800 400 DH +170000 205000 800 400 DH +160000 205000 800 400 DH +150000 205000 800 400 DH +140000 205000 800 400 DH +280000 235000 800 400 DH +290000 235000 800 400 DH +300000 235000 800 400 DH +310000 235000 800 400 DH +320000 235000 800 400 DH +330000 235000 800 400 DH +340000 235000 800 400 DH +350000 235000 800 400 DH +360000 235000 800 400 DH +370000 235000 800 400 DH +380000 235000 800 400 DH +390000 235000 800 400 DH +390000 205000 800 400 DH +380000 205000 800 400 DH +370000 205000 800 400 DH +360000 205000 800 400 DH +350000 205000 800 400 DH +340000 205000 800 400 DH +330000 205000 800 400 DH +320000 205000 800 400 DH +310000 205000 800 400 DH +300000 205000 800 400 DH +290000 205000 800 400 DH +280000 205000 800 400 DH +77500 124000 800 400 DH +77500 218000 800 400 DH +82500 151000 800 400 DH +72500 156000 800 400 DH +82500 161000 800 400 DH +72500 166000 800 400 DH +82500 171000 800 400 DH +72500 176000 800 400 DH +82500 181000 800 400 DH +72500 186000 800 400 DH +82500 191000 800 400 DH +81500 239500 800 400 DH +81500 249500 800 400 DH +495000 220000 800 400 DH +470000 220000 800 400 DH +85000 330000 800 400 DH +85000 360000 800 400 DH +582500 245000 800 400 DH +592500 245000 800 400 DH +602500 245000 800 400 DH +535000 210000 800 400 DH +545000 210000 800 400 DH +355000 62500 800 400 DH +355000 22500 800 400 DH +105000 330000 800 400 DH +115000 330000 800 400 DH +172500 320000 800 400 DH +182500 320000 800 400 DH +192500 320000 800 400 DH +202500 320000 800 400 DH +202500 290000 800 400 DH +192500 290000 800 400 DH +182500 290000 800 400 DH +172500 290000 800 400 DH +495000 277500 800 400 DH +470000 277500 800 400 DH +570000 360000 800 400 DH +560000 360000 800 400 DH +550000 360000 800 400 DH +280000 257500 800 400 DH +280000 297500 800 400 DH +116000 280000 800 400 DH +76000 280000 800 400 DH +490000 370000 800 400 DH +475000 370000 800 400 DH +530000 292500 800 400 DH +540000 292500 800 400 DH +550000 292500 800 400 DH +652500 47500 800 400 DH +652500 57500 800 400 DH +652500 67500 800 400 DH +652500 77500 800 400 DH +652500 87500 800 400 DH +652500 97500 800 400 DH +652500 107500 800 400 DH +652500 117500 800 400 DH +652500 127500 800 400 DH +652500 137500 800 400 DH +652500 147500 800 400 DH +652500 157500 800 400 DH +652500 167500 800 400 DH +652500 177500 800 400 DH +652500 187500 800 400 DH +652500 197500 800 400 DH +652500 207500 800 400 DH +652500 217500 800 400 DH +652500 227500 800 400 DH +652500 237500 800 400 DH +652500 247500 800 400 DH +652500 257500 800 400 DH +652500 267500 800 400 DH +652500 277500 800 400 DH +652500 287500 800 400 DH +652500 297500 800 400 DH +652500 307500 800 400 DH +652500 317500 800 400 DH +652500 327500 800 400 DH +652500 337500 800 400 DH +652500 347500 800 400 DH +652500 357500 800 400 DH +642500 47500 800 400 DH +642500 57500 800 400 DH +642500 67500 800 400 DH +642500 77500 800 400 DH +642500 87500 800 400 DH +642500 97500 800 400 DH +642500 107500 800 400 DH +642500 117500 800 400 DH +642500 127500 800 400 DH +642500 137500 800 400 DH +642500 147500 800 400 DH +642500 157500 800 400 DH +642500 167500 800 400 DH +642500 177500 800 400 DH +642500 187500 800 400 DH +642500 197500 800 400 DH +642500 207500 800 400 DH +642500 217500 800 400 DH +642500 227500 800 400 DH +642500 237500 800 400 DH +642500 247500 800 400 DH +642500 257500 800 400 DH +642500 267500 800 400 DH +642500 277500 800 400 DH +642500 287500 800 400 DH +642500 297500 800 400 DH +642500 307500 800 400 DH +642500 317500 800 400 DH +642500 327500 800 400 DH +642500 337500 800 400 DH +642500 347500 800 400 DH +642500 357500 800 400 DH +632500 47500 800 400 DH +632500 57500 800 400 DH +632500 67500 800 400 DH +632500 77500 800 400 DH +632500 87500 800 400 DH +632500 97500 800 400 DH +632500 107500 800 400 DH +632500 117500 800 400 DH +632500 127500 800 400 DH +632500 137500 800 400 DH +632500 147500 800 400 DH +632500 157500 800 400 DH +632500 167500 800 400 DH +632500 177500 800 400 DH +632500 187500 800 400 DH +632500 197500 800 400 DH +632500 207500 800 400 DH +632500 217500 800 400 DH +632500 227500 800 400 DH +632500 237500 800 400 DH +632500 247500 800 400 DH +632500 257500 800 400 DH +632500 267500 800 400 DH +632500 277500 800 400 DH +632500 287500 800 400 DH +632500 297500 800 400 DH +632500 307500 800 400 DH +632500 317500 800 400 DH +632500 327500 800 400 DH +632500 337500 800 400 DH +632500 347500 800 400 DH +632500 357500 800 400 DH +662500 377500 800 400 DH +662500 27500 800 400 DH +332500 260000 800 400 DH +322500 260000 800 400 DH +447500 62500 800 400 DH +447500 22500 800 400 DH +300000 297500 800 400 DH +300000 257500 800 400 DH +475000 330000 800 400 DH +490000 330000 800 400 DH +55000 269500 800 400 DH +55000 287200 800 400 DH +64800 264600 800 400 DH +64800 292200 800 400 DH +582500 292500 800 400 DH +592500 292500 800 400 DH +602500 292500 800 400 DH +562500 187500 800 400 DH +592500 187500 800 400 DH +577500 117500 800 400 DH +587500 117500 800 400 DH +597500 117500 800 400 DH +607500 117500 800 400 DH +607500 87500 800 400 DH +597500 87500 800 400 DH +587500 87500 800 400 DH +577500 87500 800 400 DH +582500 210000 800 400 DH +592500 210000 800 400 DH +602500 210000 800 400 DH +577500 57500 800 400 DH +587500 57500 800 400 DH +597500 57500 800 400 DH +607500 57500 800 400 DH +607500 27500 800 400 DH +597500 27500 800 400 DH +587500 27500 800 400 DH +577500 27500 800 400 DH +322500 290000 800 400 DH +332500 290000 800 400 DH +87500 57500 800 400 DH +97500 62500 800 400 DH +87500 67500 800 400 DH +97500 72500 800 400 DH +87500 77500 800 400 DH +97500 82500 800 400 DH +87500 87500 800 400 DH +97500 92500 800 400 DH +62500 52500 800 400 DH +62500 97600 800 400 DH +74500 44500 800 400 DH +74500 105600 800 400 DH +360000 290000 800 400 DH +370000 290000 800 400 DH +380000 290000 800 400 DH +390000 290000 800 400 DH +390000 260000 800 400 DH +380000 260000 800 400 DH +370000 260000 800 400 DH +360000 260000 800 400 DH +317500 342500 800 400 DH +327500 342500 800 400 DH +137500 342500 800 400 DH +127500 342500 800 400 DH +540000 162500 800 400 DH +535000 152500 800 400 DH +530000 162500 800 400 DH +525000 152500 800 400 DH +520000 162500 800 400 DH +515000 152500 800 400 DH +510000 162500 800 400 DH +505000 152500 800 400 DH +500000 162500 800 400 DH +495000 152500 800 400 DH +490000 162500 800 400 DH +485000 152500 800 400 DH +480000 162500 800 400 DH +475000 152500 800 400 DH +470000 162500 800 400 DH +465000 152500 800 400 DH +460000 162500 800 400 DH +455000 152500 800 400 DH +450000 162500 800 400 DH +445000 152500 800 400 DH +440000 162500 800 400 DH +435000 152500 800 400 DH +430000 162500 800 400 DH +425000 152500 800 400 DH +420000 162500 800 400 DH +415000 152500 800 400 DH +410000 162500 800 400 DH +405000 152500 800 400 DH +400000 162500 800 400 DH +395000 152500 800 400 DH +390000 162500 800 400 DH +385000 152500 800 400 DH +380000 162500 800 400 DH +375000 152500 800 400 DH +370000 162500 800 400 DH +365000 152500 800 400 DH +340000 162500 800 400 DH +335000 152500 800 400 DH +330000 162500 800 400 DH +325000 152500 800 400 DH +320000 162500 800 400 DH +315000 152500 800 400 DH +310000 162500 800 400 DH +305000 152500 800 400 DH +300000 162500 800 400 DH +295000 152500 800 400 DH +290000 162500 800 400 DH +285000 152500 800 400 DH +280000 162500 800 400 DH +275000 152500 800 400 DH +270000 162500 800 400 DH +265000 152500 800 400 DH +260000 162500 800 400 DH +255000 152500 800 400 DH +250000 162500 800 400 DH +245000 152500 800 400 DH +240000 162500 800 400 DH +235000 152500 800 400 DH +230000 162500 800 400 DH +225000 152500 800 400 DH +220000 162500 800 400 DH +215000 152500 800 400 DH +210000 162500 800 400 DH +205000 152500 800 400 DH +200000 162500 800 400 DH +195000 152500 800 400 DH +190000 162500 800 400 DH +185000 152500 800 400 DH +180000 162500 800 400 DH +175000 152500 800 400 DH +170000 162500 800 400 DH +165000 152500 800 400 DH +573000 157500 800 400 DH +352500 157500 800 400 DH +132500 157500 800 400 DH +137500 372500 800 400 DH +127500 372500 800 400 DH +172500 372500 800 400 DH +182500 372500 800 400 DH +192500 372500 800 400 DH +202500 372500 800 400 DH +212500 372500 800 400 DH +222500 372500 800 400 DH +232500 372500 800 400 DH +242500 372500 800 400 DH +252500 372500 800 400 DH +262500 372500 800 400 DH +272500 372500 800 400 DH +282500 372500 800 400 DH +282500 342500 800 400 DH +272500 342500 800 400 DH +262500 342500 800 400 DH +252500 342500 800 400 DH +242500 342500 800 400 DH +232500 342500 800 400 DH +222500 342500 800 400 DH +212500 342500 800 400 DH +202500 342500 800 400 DH +192500 342500 800 400 DH +182500 342500 800 400 DH +172500 342500 800 400 DH +115500 305500 800 400 DH +75500 305500 800 400 DH +57500 27500 800 400 DH +57500 376200 800 400 DH +662500 27500 800 400 DH +662500 376200 800 400 DH +/Color {0.498 0.498 0.498 mysetrgbcolor} def Color +475000 342500 800 400 DH +490000 342500 800 400 DH +560000 342500 800 400 DH +602500 260000 800 400 DH +540000 260000 800 400 DH +540000 307500 800 400 DH +602500 307500 800 400 DH +592500 277500 800 400 DH +612500 287500 800 400 DH +540000 327500 800 400 DH +395000 317500 800 400 DH +475000 317500 800 400 DH +622500 342500 800 400 DH +612500 267500 800 400 DH +592500 222500 800 400 DH +462500 342500 800 400 DH +562500 220000 800 400 DH +622500 102500 800 400 DH +647500 102500 800 400 DH +567500 107500 800 400 DH +597500 47500 800 400 DH +537500 47500 800 400 DH +487500 47500 800 400 DH +517500 40000 800 400 DH +577500 40000 800 400 DH +402500 72500 800 400 DH +487500 72500 800 400 DH +537500 72500 800 400 DH +592500 72500 800 400 DH +497500 95000 800 400 DH +140000 95000 800 400 DH +175000 95000 800 400 DH +237500 95000 800 400 DH +322500 317500 800 400 DH +327500 392500 800 400 DH +240000 245000 800 400 DH +270000 245000 800 400 DH +140000 245000 800 400 DH +130000 280000 800 400 DH +130000 290000 800 400 DH +252500 287500 800 400 DH +427500 100000 800 400 DH +525000 100000 800 400 DH +315000 100000 800 400 DH +447500 95000 800 400 DH +202500 305000 800 400 DH +127500 392500 800 400 DH +212500 392500 800 400 DH +272500 392500 800 400 DH +360000 317500 800 400 DH +77500 392500 800 400 DH +487500 107500 800 400 DH +620000 52500 800 400 DH +622500 87500 800 400 DH +537500 107500 800 400 DH +637500 172500 800 400 DH +262500 172500 800 400 DH +597500 65000 800 400 DH +407500 47500 800 400 DH +205000 82500 800 400 DH +402500 235000 800 400 DH +295000 130000 800 400 DH +335000 52500 800 400 DH +527500 22500 800 400 DH +615000 15000 800 400 DH +477500 57500 800 400 DH +622500 35000 800 400 DH +647500 20000 800 400 DH +557500 15000 800 400 DH +502500 15000 800 400 DH +547500 142500 800 400 DH +610000 142500 800 400 DH +615000 130000 800 400 DH +555000 135000 800 400 DH +195000 57500 800 400 DH +242500 360000 800 400 DH +210000 67500 800 400 DH +115000 112500 800 400 DH +507500 107500 800 400 DH +417500 135000 800 400 DH +200000 62500 800 400 DH +512500 80000 800 400 DH +557500 237500 800 400 DH +447500 30000 800 400 DH +355000 130000 800 400 DH +272500 352500 800 400 DH +95000 245000 800 400 DH +115000 245000 800 400 DH +582500 285000 800 400 DH +110000 367500 800 400 DH +182500 385000 800 400 DH +252500 385000 800 400 DH +212500 352500 800 400 DH +232500 352500 800 400 DH +192500 360000 800 400 DH +417500 107500 800 400 DH +447500 107500 800 400 DH +472500 107500 800 400 DH +467500 15000 800 400 DH +255000 120000 800 400 DH +265000 120000 800 400 DH +265000 130000 800 400 DH +250000 130000 800 400 DH +260000 105000 800 400 DH +245000 105000 800 400 DH +285000 120000 800 400 DH +300000 120000 800 400 DH +290000 125000 800 400 DH +310000 125000 800 400 DH +295000 137500 800 400 DH +322500 137500 800 400 DH +145000 137500 800 400 DH +155000 125000 800 400 DH +160000 100000 800 400 DH +300000 100000 800 400 DH +170000 142500 800 400 DH +280000 142500 800 400 DH +180000 132500 800 400 DH +275000 130000 800 400 DH +190000 105000 800 400 DH +270000 105000 800 400 DH +200000 255000 800 400 DH +270000 255000 800 400 DH +322500 245000 800 400 DH +350000 250000 800 400 DH +202500 282500 800 400 DH +220000 282500 800 400 DH +257500 250000 800 400 DH +210000 250000 800 400 DH +257500 197500 800 400 DH +220000 225000 800 400 DH +240000 225000 800 400 DH +300000 212500 800 400 DH +215000 212500 800 400 DH +310000 217500 800 400 DH +225000 217500 800 400 DH +225000 195000 800 400 DH +315000 192500 800 400 DH +150000 187500 800 400 DH +325000 187500 800 400 DH +235000 187500 800 400 DH +360000 252500 800 400 DH +292500 222500 800 400 DH +170000 217500 800 400 DH +210000 230000 800 400 DH +390000 225000 800 400 DH +257500 277500 800 400 DH +385000 277500 800 400 DH +155000 282500 800 400 DH +340000 282500 800 400 DH +230000 182500 800 400 DH +245000 182500 800 400 DH +227500 90000 800 400 DH +255000 90000 800 400 DH +250000 172500 800 400 DH +190000 175000 800 400 DH +180000 170000 800 400 DH +430000 197500 800 400 DH +332500 270000 800 400 DH +290000 265000 800 400 DH +480000 265000 800 400 DH +470000 290000 800 400 DH +462500 282500 800 400 DH +300000 177500 800 400 DH +485000 177500 800 400 DH +305000 85000 800 400 DH +275000 85000 800 400 DH +330000 80000 800 400 DH +285000 80000 800 400 DH +350000 220000 800 400 DH +365000 220000 800 400 DH +355000 385000 800 400 DH +297500 352500 800 400 DH +375000 360000 800 400 DH +107500 147500 800 400 DH +122000 160500 800 400 DH +450000 182500 800 400 DH +262500 352500 800 400 DH +327500 352500 800 400 DH +400000 225000 800 400 DH +405000 215000 800 400 DH +410000 205000 800 400 DH +105000 270000 800 400 DH +415000 272500 800 400 DH +402500 250000 800 400 DH +222500 310000 800 400 DH +402500 310000 800 400 DH +520000 260000 800 400 DH +520000 337500 800 400 DH +210000 322500 800 400 DH +570000 322500 800 400 DH +570000 245000 800 400 DH +530000 327500 800 400 DH +282500 330000 800 400 DH +327500 305000 800 400 DH +49500 330000 800 400 DH +130000 255000 800 400 DH +76500 257000 800 400 DH +90500 305500 800 400 DH +592500 360000 800 400 DH +405000 342500 800 400 DH +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/doc/aic_backmask.ps b/doc/aic_backmask.ps new file mode 100644 index 0000000..6a0dba2 --- /dev/null +++ b/doc/aic_backmask.ps @@ -0,0 +1,916 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), solder mask solder side +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray {neg 1.0 add setgray} def +/mysetrgbcolor { + /blue exch def /green exch def /red exch def + 1.0 red sub 1.0 green sub 1.0 blue sub setrgbcolor +} def +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 160 moveto 451 160 lineto 451 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,410400) +% PCBOFFSET(214900,223900), PCBSCALE(1.00000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 223900 translate +1.000 1.000 scale +410800 0 translate +90 rotate +0 410800 translate +1 -1 scale +400 400 translate +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +-400 -400 710400 410400 200 Alignment +335000 62500 6600 CLRPVSQ +335000 22500 6600 CLRPVR +297500 342500 6600 CLRPVSQ +297500 372500 6600 CLRPVR +415000 360000 8600 CLRPVSQ +405000 360000 8600 CLRPVR +395000 360000 8600 CLRPVR +447500 122500 6600 CLRPVSQ +447500 82500 6600 CLRPVR +397500 117500 6600 CLRPVSQ +407500 117500 6600 CLRPVR +417500 117500 6600 CLRPVR +427500 117500 6600 CLRPVR +427500 87500 6600 CLRPVR +417500 87500 6600 CLRPVR +407500 87500 6600 CLRPVR +397500 87500 6600 CLRPVR +557500 122500 6600 CLRPVSQ +557500 82500 6600 CLRPVR +537500 62500 6600 CLRPVSQ +537500 22500 6600 CLRPVR +487500 57500 6600 CLRPVSQ +497500 57500 6600 CLRPVR +507500 57500 6600 CLRPVR +517500 57500 6600 CLRPVR +517500 27500 6600 CLRPVR +507500 27500 6600 CLRPVR +497500 27500 6600 CLRPVR +487500 27500 6600 CLRPVR +467500 62500 6600 CLRPVSQ +467500 22500 6600 CLRPVR +467500 122500 6600 CLRPVSQ +467500 82500 6600 CLRPVR +537500 122500 6600 CLRPVSQ +537500 82500 6600 CLRPVR +487500 117500 6600 CLRPVSQ +497500 117500 6600 CLRPVR +507500 117500 6600 CLRPVR +517500 117500 6600 CLRPVR +517500 87500 6600 CLRPVR +507500 87500 6600 CLRPVR +497500 87500 6600 CLRPVR +487500 87500 6600 CLRPVR +397500 57500 6600 CLRPVSQ +407500 57500 6600 CLRPVR +417500 57500 6600 CLRPVR +427500 57500 6600 CLRPVR +427500 27500 6600 CLRPVR +417500 27500 6600 CLRPVR +407500 27500 6600 CLRPVR +397500 27500 6600 CLRPVR +557500 62500 6600 CLRPVSQ +557500 22500 6600 CLRPVR +157500 342500 6600 CLRPVSQ +157500 372500 6600 CLRPVR +57500 239500 6600 CLRPVSQ +57500 249500 6600 CLRPVR +530000 245000 8600 CLRPVSQ +540000 245000 8600 CLRPVR +550000 245000 8600 CLRPVR +245000 57500 6600 CLRPVSQ +255000 57500 6600 CLRPVR +265000 57500 6600 CLRPVR +275000 57500 6600 CLRPVR +285000 57500 6600 CLRPVR +295000 57500 6600 CLRPVR +305000 57500 6600 CLRPVR +315000 57500 6600 CLRPVR +315000 27500 6600 CLRPVR +305000 27500 6600 CLRPVR +295000 27500 6600 CLRPVR +285000 27500 6600 CLRPVR +275000 27500 6600 CLRPVR +265000 27500 6600 CLRPVR +255000 27500 6600 CLRPVR +245000 27500 6600 CLRPVR +317500 372500 6600 CLRPVSQ +327500 372500 6600 CLRPVR +420000 205000 7600 CLRPVSQ +430000 205000 7600 CLRPVR +420000 215000 7600 CLRPVR +430000 215000 7600 CLRPVR +420000 225000 7600 CLRPVR +430000 225000 7600 CLRPVR +420000 235000 7600 CLRPVR +430000 235000 7600 CLRPVR +140000 265000 6600 CLRPVSQ +150000 265000 6600 CLRPVR +160000 265000 6600 CLRPVR +170000 265000 6600 CLRPVR +180000 265000 6600 CLRPVR +190000 265000 6600 CLRPVR +200000 265000 6600 CLRPVR +210000 265000 6600 CLRPVR +220000 265000 6600 CLRPVR +230000 265000 6600 CLRPVR +240000 265000 6600 CLRPVR +250000 265000 6600 CLRPVR +250000 205000 6600 CLRPVR +240000 205000 6600 CLRPVR +230000 205000 6600 CLRPVR +220000 205000 6600 CLRPVR +210000 205000 6600 CLRPVR +200000 205000 6600 CLRPVR +190000 205000 6600 CLRPVR +180000 205000 6600 CLRPVR +170000 205000 6600 CLRPVR +160000 205000 6600 CLRPVR +150000 205000 6600 CLRPVR +140000 205000 6600 CLRPVR +280000 235000 6600 CLRPVSQ +290000 235000 6600 CLRPVR +300000 235000 6600 CLRPVR +310000 235000 6600 CLRPVR +320000 235000 6600 CLRPVR +330000 235000 6600 CLRPVR +340000 235000 6600 CLRPVR +350000 235000 6600 CLRPVR +360000 235000 6600 CLRPVR +370000 235000 6600 CLRPVR +380000 235000 6600 CLRPVR +390000 235000 6600 CLRPVR +390000 205000 6600 CLRPVR +380000 205000 6600 CLRPVR +370000 205000 6600 CLRPVR +360000 205000 6600 CLRPVR +350000 205000 6600 CLRPVR +340000 205000 6600 CLRPVR +330000 205000 6600 CLRPVR +320000 205000 6600 CLRPVR +310000 205000 6600 CLRPVR +300000 205000 6600 CLRPVR +290000 205000 6600 CLRPVR +280000 205000 6600 CLRPVR +77500 124000 12600 CLRPVR +77500 218000 12600 CLRPVR +82500 151000 7600 CLRPVR +72500 156000 7600 CLRPVR +82500 161000 7600 CLRPVR +72500 166000 7600 CLRPVR +82500 171000 7600 CLRPVR +72500 176000 7600 CLRPVR +82500 181000 7600 CLRPVR +72500 186000 7600 CLRPVR +82500 191000 7600 CLRPVSQ +81500 239500 6600 CLRPVSQ +81500 249500 6600 CLRPVR +495000 220000 7600 CLRPVSQ +470000 220000 7600 CLRPVR +85000 330000 6600 CLRPVSQ +85000 360000 6600 CLRPVR +582500 245000 8600 CLRPVSQ +592500 245000 8600 CLRPVR +602500 245000 8600 CLRPVR +535000 210000 6600 CLRPVSQ +545000 210000 6600 CLRPVR +355000 62500 6600 CLRPVSQ +355000 22500 6600 CLRPVR +105000 330000 7600 CLRPVSQ +115000 330000 7600 CLRPVR +172500 320000 6600 CLRPVSQ +182500 320000 6600 CLRPVR +192500 320000 6600 CLRPVR +202500 320000 6600 CLRPVR +202500 290000 6600 CLRPVR +192500 290000 6600 CLRPVR +182500 290000 6600 CLRPVR +172500 290000 6600 CLRPVR +495000 277500 7600 CLRPVSQ +470000 277500 7600 CLRPVR +570000 360000 8600 CLRPVSQ +560000 360000 8600 CLRPVR +550000 360000 8600 CLRPVR +280000 257500 6600 CLRPVSQ +280000 297500 6600 CLRPVR +116000 280000 6600 CLRPVSQ +76000 280000 6600 CLRPVR +490000 370000 6600 CLRPVSQ +475000 370000 6600 CLRPVR +530000 292500 8600 CLRPVSQ +540000 292500 8600 CLRPVR +550000 292500 8600 CLRPVR +652500 47500 6600 CLRPVSQ +652500 57500 6600 CLRPVR +652500 67500 6600 CLRPVR +652500 77500 6600 CLRPVR +652500 87500 6600 CLRPVR +652500 97500 6600 CLRPVR +652500 107500 6600 CLRPVR +652500 117500 6600 CLRPVR +652500 127500 6600 CLRPVR +652500 137500 6600 CLRPVR +652500 147500 6600 CLRPVR +652500 157500 6600 CLRPVR +652500 167500 6600 CLRPVR +652500 177500 6600 CLRPVR +652500 187500 6600 CLRPVR +652500 197500 6600 CLRPVR +652500 207500 6600 CLRPVR +652500 217500 6600 CLRPVR +652500 227500 6600 CLRPVR +652500 237500 6600 CLRPVR +652500 247500 6600 CLRPVR +652500 257500 6600 CLRPVR +652500 267500 6600 CLRPVR +652500 277500 6600 CLRPVR +652500 287500 6600 CLRPVR +652500 297500 6600 CLRPVR +652500 307500 6600 CLRPVR +652500 317500 6600 CLRPVR +652500 327500 6600 CLRPVR +652500 337500 6600 CLRPVR +652500 347500 6600 CLRPVR +652500 357500 6600 CLRPVR +642500 47500 6600 CLRPVR +642500 57500 6600 CLRPVR +642500 67500 6600 CLRPVR +642500 77500 6600 CLRPVR +642500 87500 6600 CLRPVR +642500 97500 6600 CLRPVR +642500 107500 6600 CLRPVR +642500 117500 6600 CLRPVR +642500 127500 6600 CLRPVR +642500 137500 6600 CLRPVR +642500 147500 6600 CLRPVR +642500 157500 6600 CLRPVR +642500 167500 6600 CLRPVR +642500 177500 6600 CLRPVR +642500 187500 6600 CLRPVR +642500 197500 6600 CLRPVR +642500 207500 6600 CLRPVR +642500 217500 6600 CLRPVR +642500 227500 6600 CLRPVR +642500 237500 6600 CLRPVR +642500 247500 6600 CLRPVR +642500 257500 6600 CLRPVR +642500 267500 6600 CLRPVR +642500 277500 6600 CLRPVR +642500 287500 6600 CLRPVR +642500 297500 6600 CLRPVR +642500 307500 6600 CLRPVR +642500 317500 6600 CLRPVR +642500 327500 6600 CLRPVR +642500 337500 6600 CLRPVR +642500 347500 6600 CLRPVR +642500 357500 6600 CLRPVR +632500 47500 6600 CLRPVR +632500 57500 6600 CLRPVR +632500 67500 6600 CLRPVR +632500 77500 6600 CLRPVR +632500 87500 6600 CLRPVR +632500 97500 6600 CLRPVR +632500 107500 6600 CLRPVR +632500 117500 6600 CLRPVR +632500 127500 6600 CLRPVR +632500 137500 6600 CLRPVR +632500 147500 6600 CLRPVR +632500 157500 6600 CLRPVR +632500 167500 6600 CLRPVR +632500 177500 6600 CLRPVR +632500 187500 6600 CLRPVR +632500 197500 6600 CLRPVR +632500 207500 6600 CLRPVR +632500 217500 6600 CLRPVR +632500 227500 6600 CLRPVR +632500 237500 6600 CLRPVR +632500 247500 6600 CLRPVR +632500 257500 6600 CLRPVR +632500 267500 6600 CLRPVR +632500 277500 6600 CLRPVR +632500 287500 6600 CLRPVR +632500 297500 6600 CLRPVR +632500 307500 6600 CLRPVR +632500 317500 6600 CLRPVR +632500 327500 6600 CLRPVR +632500 337500 6600 CLRPVR +632500 347500 6600 CLRPVR +632500 357500 6600 CLRPVR +662500 377500 12600 CLRPVR +662500 27500 12600 CLRPVR +332500 260000 6600 CLRPVSQ +322500 260000 6600 CLRPVR +447500 62500 6600 CLRPVSQ +447500 22500 6600 CLRPVR +300000 297500 6600 CLRPVSQ +300000 257500 6600 CLRPVR +475000 330000 6600 CLRPVSQ +490000 330000 6600 CLRPVR +55000 269500 7600 CLRPVSQ +55000 287200 7600 CLRPVR +64800 264600 7600 CLRPVR +64800 292200 7600 CLRPVR +582500 292500 8600 CLRPVSQ +592500 292500 8600 CLRPVR +602500 292500 8600 CLRPVR +562500 187500 6600 CLRPVSQ +592500 187500 6600 CLRPVR +577500 117500 6600 CLRPVSQ +587500 117500 6600 CLRPVR +597500 117500 6600 CLRPVR +607500 117500 6600 CLRPVR +607500 87500 6600 CLRPVR +597500 87500 6600 CLRPVR +587500 87500 6600 CLRPVR +577500 87500 6600 CLRPVR +582500 210000 8600 CLRPVSQ +592500 210000 8600 CLRPVR +602500 210000 8600 CLRPVR +577500 57500 6600 CLRPVSQ +587500 57500 6600 CLRPVR +597500 57500 6600 CLRPVR +607500 57500 6600 CLRPVR +607500 27500 6600 CLRPVR +597500 27500 6600 CLRPVR +587500 27500 6600 CLRPVR +577500 27500 6600 CLRPVR +322500 290000 6600 CLRPVSQ +332500 290000 6600 CLRPVR +87500 57500 6600 CLRPVSQ +97500 62500 6600 CLRPVR +87500 67500 6600 CLRPVR +97500 72500 6600 CLRPVR +87500 77500 6600 CLRPVR +97500 82500 6600 CLRPVR +87500 87500 6600 CLRPVR +97500 92500 6600 CLRPVR +62500 52500 15400 CLRPVR +62500 97600 15400 CLRPVR +74500 44500 8600 CLRPVR +74500 105600 8600 CLRPVR +360000 290000 6600 CLRPVSQ +370000 290000 6600 CLRPVR +380000 290000 6600 CLRPVR +390000 290000 6600 CLRPVR +390000 260000 6600 CLRPVR +380000 260000 6600 CLRPVR +370000 260000 6600 CLRPVR +360000 260000 6600 CLRPVR +317500 342500 6600 CLRPVSQ +327500 342500 6600 CLRPVR +137500 342500 6600 CLRPVSQ +127500 342500 6600 CLRPVR +540000 162500 6600 CLRPVSQ +535000 152500 6600 CLRPVR +530000 162500 6600 CLRPVR +525000 152500 6600 CLRPVR +520000 162500 6600 CLRPVR +515000 152500 6600 CLRPVR +510000 162500 6600 CLRPVR +505000 152500 6600 CLRPVR +500000 162500 6600 CLRPVR +495000 152500 6600 CLRPVR +490000 162500 6600 CLRPVR +485000 152500 6600 CLRPVR +480000 162500 6600 CLRPVR +475000 152500 6600 CLRPVR +470000 162500 6600 CLRPVR +465000 152500 6600 CLRPVR +460000 162500 6600 CLRPVR +455000 152500 6600 CLRPVR +450000 162500 6600 CLRPVR +445000 152500 6600 CLRPVR +440000 162500 6600 CLRPVR +435000 152500 6600 CLRPVR +430000 162500 6600 CLRPVR +425000 152500 6600 CLRPVR +420000 162500 6600 CLRPVR +415000 152500 6600 CLRPVR +410000 162500 6600 CLRPVR +405000 152500 6600 CLRPVR +400000 162500 6600 CLRPVR +395000 152500 6600 CLRPVR +390000 162500 6600 CLRPVR +385000 152500 6600 CLRPVR +380000 162500 6600 CLRPVR +375000 152500 6600 CLRPVR +370000 162500 6600 CLRPVR +365000 152500 6600 CLRPVR +340000 162500 6600 CLRPVR +335000 152500 6600 CLRPVR +330000 162500 6600 CLRPVR +325000 152500 6600 CLRPVR +320000 162500 6600 CLRPVR +315000 152500 6600 CLRPVR +310000 162500 6600 CLRPVR +305000 152500 6600 CLRPVR +300000 162500 6600 CLRPVR +295000 152500 6600 CLRPVR +290000 162500 6600 CLRPVR +285000 152500 6600 CLRPVR +280000 162500 6600 CLRPVR +275000 152500 6600 CLRPVR +270000 162500 6600 CLRPVR +265000 152500 6600 CLRPVR +260000 162500 6600 CLRPVR +255000 152500 6600 CLRPVR +250000 162500 6600 CLRPVR +245000 152500 6600 CLRPVR +240000 162500 6600 CLRPVR +235000 152500 6600 CLRPVR +230000 162500 6600 CLRPVR +225000 152500 6600 CLRPVR +220000 162500 6600 CLRPVR +215000 152500 6600 CLRPVR +210000 162500 6600 CLRPVR +205000 152500 6600 CLRPVR +200000 162500 6600 CLRPVR +195000 152500 6600 CLRPVR +190000 162500 6600 CLRPVR +185000 152500 6600 CLRPVR +180000 162500 6600 CLRPVR +175000 152500 6600 CLRPVR +170000 162500 6600 CLRPVR +165000 152500 6600 CLRPVR +573000 157500 8600 CLRPVR +352500 157500 12600 CLRPVR +132500 157500 12600 CLRPVR +137500 372500 6600 CLRPVSQ +127500 372500 6600 CLRPVR +172500 372500 6600 CLRPVSQ +182500 372500 6600 CLRPVR +192500 372500 6600 CLRPVR +202500 372500 6600 CLRPVR +212500 372500 6600 CLRPVR +222500 372500 6600 CLRPVR +232500 372500 6600 CLRPVR +242500 372500 6600 CLRPVR +252500 372500 6600 CLRPVR +262500 372500 6600 CLRPVR +272500 372500 6600 CLRPVR +282500 372500 6600 CLRPVR +282500 342500 6600 CLRPVR +272500 342500 6600 CLRPVR +262500 342500 6600 CLRPVR +252500 342500 6600 CLRPVR +242500 342500 6600 CLRPVR +232500 342500 6600 CLRPVR +222500 342500 6600 CLRPVR +212500 342500 6600 CLRPVR +202500 342500 6600 CLRPVR +192500 342500 6600 CLRPVR +182500 342500 6600 CLRPVR +172500 342500 6600 CLRPVR +115500 305500 6600 CLRPVSQ +75500 305500 6600 CLRPVR +57500 27500 12600 CLRPVR +57500 376200 12600 CLRPVR +662500 27500 12600 CLRPVR +662500 376200 12600 CLRPVR +475000 342500 6600 CLRPVR +490000 342500 6600 CLRPVR +560000 342500 6600 CLRPVR +602500 260000 6600 CLRPVR +540000 260000 6600 CLRPVR +540000 307500 6600 CLRPVR +602500 307500 6600 CLRPVR +592500 277500 6600 CLRPVR +612500 287500 6600 CLRPVR +540000 327500 6600 CLRPVR +395000 317500 6600 CLRPVR +475000 317500 6600 CLRPVR +622500 342500 6600 CLRPVR +612500 267500 6600 CLRPVR +592500 222500 6600 CLRPVR +462500 342500 6600 CLRPVR +562500 220000 6600 CLRPVR +622500 102500 6600 CLRPVR +647500 102500 6600 CLRPVR +567500 107500 6600 CLRPVR +597500 47500 6600 CLRPVR +537500 47500 6600 CLRPVR +487500 47500 6600 CLRPVR +517500 40000 6600 CLRPVR +577500 40000 6600 CLRPVR +402500 72500 6600 CLRPVR +487500 72500 6600 CLRPVR +537500 72500 6600 CLRPVR +592500 72500 6600 CLRPVR +497500 95000 6600 CLRPVR +140000 95000 6600 CLRPVR +175000 95000 6600 CLRPVR +237500 95000 6600 CLRPVR +322500 317500 6600 CLRPVR +327500 392500 6600 CLRPVR +240000 245000 6600 CLRPVR +270000 245000 6600 CLRPVR +140000 245000 6600 CLRPVR +130000 280000 6600 CLRPVR +130000 290000 6600 CLRPVR +252500 287500 4600 CLRPVR +427500 100000 6600 CLRPVR +525000 100000 6600 CLRPVR +315000 100000 6600 CLRPVR +447500 95000 6600 CLRPVR +202500 305000 6600 CLRPVR +127500 392500 6600 CLRPVR +212500 392500 6600 CLRPVR +272500 392500 6600 CLRPVR +360000 317500 6600 CLRPVR +77500 392500 6600 CLRPVR +487500 107500 4600 CLRPVR +620000 52500 4600 CLRPVR +622500 87500 4600 CLRPVR +537500 107500 4600 CLRPVR +637500 172500 4600 CLRPVR +262500 172500 4600 CLRPVR +597500 65000 4600 CLRPVR +407500 47500 6600 CLRPVR +205000 82500 4600 CLRPVR +402500 235000 4600 CLRPVR +295000 130000 4600 CLRPVR +335000 52500 4600 CLRPVR +527500 22500 4600 CLRPVR +615000 15000 4600 CLRPVR +477500 57500 4600 CLRPVR +622500 35000 4600 CLRPVR +647500 20000 4600 CLRPVR +557500 15000 4600 CLRPVR +502500 15000 4600 CLRPVR +547500 142500 4600 CLRPVR +610000 142500 4600 CLRPVR +615000 130000 4600 CLRPVR +555000 135000 4600 CLRPVR +195000 57500 4600 CLRPVR +242500 360000 4600 CLRPVR +210000 67500 4600 CLRPVR +115000 112500 4600 CLRPVR +507500 107500 4600 CLRPVR +417500 135000 4600 CLRPVR +200000 62500 4600 CLRPVR +512500 80000 4600 CLRPVR +557500 237500 4600 CLRPVR +447500 30000 4600 CLRPVR +355000 130000 4600 CLRPVR +272500 352500 6600 CLRPVR +95000 245000 4600 CLRPVR +115000 245000 4600 CLRPVR +582500 285000 4600 CLRPVR +110000 367500 4600 CLRPVR +182500 385000 4600 CLRPVR +252500 385000 4600 CLRPVR +212500 352500 6600 CLRPVR +232500 352500 6600 CLRPVR +192500 360000 4600 CLRPVR +417500 107500 4600 CLRPVR +447500 107500 4600 CLRPVR +472500 107500 4600 CLRPVR +467500 15000 4600 CLRPVR +255000 120000 4600 CLRPVR +265000 120000 4600 CLRPVR +265000 130000 4600 CLRPVR +250000 130000 4600 CLRPVR +260000 105000 4600 CLRPVR +245000 105000 4600 CLRPVR +285000 120000 4600 CLRPVR +300000 120000 4600 CLRPVR +290000 125000 4600 CLRPVR +310000 125000 4600 CLRPVR +295000 137500 4600 CLRPVR +322500 137500 4600 CLRPVR +145000 137500 4600 CLRPVR +155000 125000 4600 CLRPVR +160000 100000 4600 CLRPVR +300000 100000 4600 CLRPVR +170000 142500 4600 CLRPVR +280000 142500 4600 CLRPVR +180000 132500 4600 CLRPVR +275000 130000 4600 CLRPVR +190000 105000 4600 CLRPVR +270000 105000 4600 CLRPVR +200000 255000 4600 CLRPVR +270000 255000 4600 CLRPVR +322500 245000 6600 CLRPVR +350000 250000 4600 CLRPVR +202500 282500 4600 CLRPVR +220000 282500 4600 CLRPVR +257500 250000 4600 CLRPVR +210000 250000 4600 CLRPVR +257500 197500 4600 CLRPVR +220000 225000 6600 CLRPVR +240000 225000 6600 CLRPVR +300000 212500 4600 CLRPVR +215000 212500 4600 CLRPVR +310000 217500 4600 CLRPVR +225000 217500 4600 CLRPVR +225000 195000 4600 CLRPVR +315000 192500 4600 CLRPVR +150000 187500 4600 CLRPVR +325000 187500 4600 CLRPVR +235000 187500 4600 CLRPVR +360000 252500 4600 CLRPVR +292500 222500 4600 CLRPVR +170000 217500 4600 CLRPVR +210000 230000 4600 CLRPVR +390000 225000 4600 CLRPVR +257500 277500 4600 CLRPVR +385000 277500 4600 CLRPVR +155000 282500 4600 CLRPVR +340000 282500 4600 CLRPVR +230000 182500 4600 CLRPVR +245000 182500 4600 CLRPVR +227500 90000 4600 CLRPVR +255000 90000 4600 CLRPVR +250000 172500 4600 CLRPVR +190000 175000 4600 CLRPVR +180000 170000 4600 CLRPVR +430000 197500 4600 CLRPVR +332500 270000 6600 CLRPVR +290000 265000 4600 CLRPVR +480000 265000 4600 CLRPVR +470000 290000 6600 CLRPVR +462500 282500 4600 CLRPVR +300000 177500 4600 CLRPVR +485000 177500 4600 CLRPVR +305000 85000 4600 CLRPVR +275000 85000 4600 CLRPVR +330000 80000 4600 CLRPVR +285000 80000 4600 CLRPVR +350000 220000 4600 CLRPVR +365000 220000 4600 CLRPVR +355000 385000 4600 CLRPVR +297500 352500 6600 CLRPVR +375000 360000 4600 CLRPVR +107500 147500 4600 CLRPVR +122000 160500 4600 CLRPVR +450000 182500 4600 CLRPVR +262500 352500 4600 CLRPVR +327500 352500 4600 CLRPVR +400000 225000 4600 CLRPVR +405000 215000 4600 CLRPVR +410000 205000 4600 CLRPVR +105000 270000 4600 CLRPVR +415000 272500 4600 CLRPVR +402500 250000 4600 CLRPVR +222500 310000 4600 CLRPVR +402500 310000 4600 CLRPVR +520000 260000 4600 CLRPVR +520000 337500 4600 CLRPVR +210000 322500 4600 CLRPVR +570000 322500 4600 CLRPVR +570000 245000 4600 CLRPVR +530000 327500 4600 CLRPVR +282500 330000 4600 CLRPVR +327500 305000 4600 CLRPVR +49500 330000 4600 CLRPVR +130000 255000 6600 CLRPVR +76500 257000 4600 CLRPVR +90500 305500 4600 CLRPVR +592500 360000 6600 CLRPVR +405000 342500 6600 CLRPVR +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/doc/aic_fab.ps b/doc/aic_fab.ps new file mode 100644 index 0000000..a1b186d --- /dev/null +++ b/doc/aic_fab.ps @@ -0,0 +1,3915 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), Fabrication Drawing +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 160 moveto 451 160 lineto 451 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,410400) +% PCBOFFSET(214900,223900), PCBSCALE(1.00000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 223900 translate +1.000 1.000 scale +410800 0 translate +90 rotate +0 410800 translate +1 -1 scale +400 400 translate +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +60100 50100 64900 54900 800 L +60100 54900 64900 50100 800 L +60900 50900 64100 50900 800 L +60900 50900 60900 54100 800 L +60900 54100 64100 54100 800 L +64100 50900 64100 54100 800 L +60100 95200 64900 100000 800 L +60100 100000 64900 95200 800 L +60900 96000 64100 96000 800 L +60900 96000 60900 99200 800 L +60900 99200 64100 99200 800 L +64100 96000 64100 99200 800 L +12600 -13650 17400 -8850 800 L +12600 -8850 17400 -13650 800 L +13400 -12850 16600 -12850 800 L +13400 -12850 13400 -9650 800 L +13400 -9650 16600 -9650 800 L +16600 -12850 16600 -9650 800 L +135000 -15000 135000 -14250 600 L +135000 -14250 136500 -12750 600 L +136500 -12750 138000 -14250 600 L +138000 -15000 138000 -14250 600 L +136500 -12750 136500 -9000 600 L +139801 -12000 142051 -12000 600 L +139801 -9000 142801 -9000 600 L +139801 -15000 139801 -9000 600 L +139801 -15000 142801 -15000 600 L +147603 -15000 148353 -14250 600 L +145353 -15000 147603 -15000 600 L +144603 -14250 145353 -15000 600 L +144603 -14250 144603 -12750 600 L +144603 -12750 145353 -12000 600 L +145353 -12000 147603 -12000 600 L +147603 -12000 148353 -11250 600 L +148353 -11250 148353 -9750 600 L +147603 -9000 148353 -9750 600 L +145353 -9000 147603 -9000 600 L +144603 -9750 145353 -9000 600 L +135000 -5749 150154 -5749 800 L +98000 -14250 98750 -15000 600 L +98750 -15000 101000 -15000 600 L +101000 -15000 101750 -14250 600 L +101750 -14250 101750 -12750 600 L +98000 -9000 101750 -12750 600 L +98000 -9000 101750 -9000 600 L +98000 -5749 103551 -5749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -9750 45750 -9000 600 L +45000 -14250 45000 -9750 600 L +45000 -14250 45750 -15000 600 L +45750 -15000 47250 -15000 600 L +47250 -15000 48000 -14250 600 L +48000 -14250 48000 -9750 600 L +47250 -9000 48000 -9750 600 L +45750 -9000 47250 -9000 600 L +45000 -10500 48000 -13500 600 L +49801 -9000 50551 -9000 600 L +53103 -9000 54603 -9000 600 L +53853 -15000 53853 -9000 600 L +52353 -13500 53853 -15000 600 L +56404 -14250 57154 -15000 600 L +57154 -15000 59404 -15000 600 L +59404 -15000 60154 -14250 600 L +60154 -14250 60154 -12750 600 L +56404 -9000 60154 -12750 600 L +56404 -9000 60154 -9000 600 L +61956 -9750 62706 -9000 600 L +61956 -11250 61956 -9750 600 L +61956 -11250 62706 -12000 600 L +62706 -12000 64206 -12000 600 L +64206 -12000 64956 -11250 600 L +64956 -11250 64956 -9750 600 L +64206 -9000 64956 -9750 600 L +62706 -9000 64206 -9000 600 L +61956 -12750 62706 -12000 600 L +61956 -14250 61956 -12750 600 L +61956 -14250 62706 -15000 600 L +62706 -15000 64206 -15000 600 L +64206 -15000 64956 -14250 600 L +64956 -14250 64956 -12750 600 L +64206 -12000 64956 -12750 600 L +45000 -5749 66757 -5749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +77500 120800 77500 127200 800 L +74300 124000 80700 124000 800 L +75900 122400 79100 122400 800 L +75900 122400 75900 125600 800 L +75900 125600 79100 125600 800 L +79100 122400 79100 125600 800 L +77500 214800 77500 221200 800 L +74300 218000 80700 218000 800 L +75900 216400 79100 216400 800 L +75900 216400 75900 219600 800 L +75900 219600 79100 219600 800 L +79100 216400 79100 219600 800 L +352500 154300 352500 160700 800 L +349300 157500 355700 157500 800 L +350900 155900 354100 155900 800 L +350900 155900 350900 159100 800 L +350900 159100 354100 159100 800 L +354100 155900 354100 159100 800 L +132500 154300 132500 160700 800 L +129300 157500 135700 157500 800 L +130900 155900 134100 155900 800 L +130900 155900 130900 159100 800 L +130900 159100 134100 159100 800 L +134100 155900 134100 159100 800 L +15000 -29450 15000 -23050 800 L +11800 -26250 18200 -26250 800 L +13400 -27850 16600 -27850 800 L +13400 -27850 13400 -24650 800 L +13400 -24650 16600 -24650 800 L +16600 -27850 16600 -24650 800 L +135000 -30000 135000 -29250 600 L +135000 -29250 136500 -27750 600 L +136500 -27750 138000 -29250 600 L +138000 -30000 138000 -29250 600 L +136500 -27750 136500 -24000 600 L +139801 -27000 142051 -27000 600 L +139801 -24000 142801 -24000 600 L +139801 -30000 139801 -24000 600 L +139801 -30000 142801 -30000 600 L +147603 -30000 148353 -29250 600 L +145353 -30000 147603 -30000 600 L +144603 -29250 145353 -30000 600 L +144603 -29250 144603 -27750 600 L +144603 -27750 145353 -27000 600 L +145353 -27000 147603 -27000 600 L +147603 -27000 148353 -26250 600 L +148353 -26250 148353 -24750 600 L +147603 -24000 148353 -24750 600 L +145353 -24000 147603 -24000 600 L +144603 -24750 145353 -24000 600 L +135000 -20749 150154 -20749 800 L +98000 -27000 101000 -30000 600 L +98000 -27000 101750 -27000 600 L +101000 -30000 101000 -24000 600 L +98000 -20749 103551 -20749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -24750 45750 -24000 600 L +45000 -29250 45000 -24750 600 L +45000 -29250 45750 -30000 600 L +45750 -30000 47250 -30000 600 L +47250 -30000 48000 -29250 600 L +48000 -29250 48000 -24750 600 L +47250 -24000 48000 -24750 600 L +45750 -24000 47250 -24000 600 L +45000 -25500 48000 -28500 600 L +49801 -24000 50551 -24000 600 L +53103 -24000 54603 -24000 600 L +53853 -30000 53853 -24000 600 L +52353 -28500 53853 -30000 600 L +56404 -24750 57154 -24000 600 L +56404 -29250 56404 -24750 600 L +56404 -29250 57154 -30000 600 L +57154 -30000 58654 -30000 600 L +58654 -30000 59404 -29250 600 L +59404 -29250 59404 -24750 600 L +58654 -24000 59404 -24750 600 L +57154 -24000 58654 -24000 600 L +56404 -25500 59404 -28500 600 L +61206 -24750 61956 -24000 600 L +61206 -29250 61206 -24750 600 L +61206 -29250 61956 -30000 600 L +61956 -30000 63456 -30000 600 L +63456 -30000 64206 -29250 600 L +64206 -29250 64206 -24750 600 L +63456 -24000 64206 -24750 600 L +61956 -24000 63456 -24000 600 L +61206 -25500 64206 -28500 600 L +45000 -20749 66007 -20749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +662500 377500 662500 380700 800 L +662500 377500 665273 375900 800 L +662500 377500 659727 375900 800 L +662500 377500 1600 1600 800 0 180 A +662500 377500 1600 1600 800 180 180 A +662500 27500 662500 30700 800 L +662500 27500 665273 25900 800 L +662500 27500 659727 25900 800 L +662500 27500 1600 1600 800 0 180 A +662500 27500 1600 1600 800 180 180 A +57500 27500 57500 30700 800 L +57500 27500 60273 25900 800 L +57500 27500 54727 25900 800 L +57500 27500 1600 1600 800 0 180 A +57500 27500 1600 1600 800 180 180 A +57500 376200 57500 379400 800 L +57500 376200 60273 374600 800 L +57500 376200 54727 374600 800 L +57500 376200 1600 1600 800 0 180 A +57500 376200 1600 1600 800 180 180 A +662500 27500 662500 30700 800 L +662500 27500 665273 25900 800 L +662500 27500 659727 25900 800 L +662500 27500 1600 1600 800 0 180 A +662500 27500 1600 1600 800 180 180 A +662500 376200 662500 379400 800 L +662500 376200 665273 374600 800 L +662500 376200 659727 374600 800 L +662500 376200 1600 1600 800 0 180 A +662500 376200 1600 1600 800 180 180 A +15000 -41250 15000 -38050 800 L +15000 -41250 17773 -42850 800 L +15000 -41250 12227 -42850 800 L +15000 -41250 1600 1600 800 0 180 A +15000 -41250 1600 1600 800 180 180 A +135000 -45000 135000 -44250 600 L +135000 -44250 136500 -42750 600 L +136500 -42750 138000 -44250 600 L +138000 -45000 138000 -44250 600 L +136500 -42750 136500 -39000 600 L +139801 -42000 142051 -42000 600 L +139801 -39000 142801 -39000 600 L +139801 -45000 139801 -39000 600 L +139801 -45000 142801 -45000 600 L +147603 -45000 148353 -44250 600 L +145353 -45000 147603 -45000 600 L +144603 -44250 145353 -45000 600 L +144603 -44250 144603 -42750 600 L +144603 -42750 145353 -42000 600 L +145353 -42000 147603 -42000 600 L +147603 -42000 148353 -41250 600 L +148353 -41250 148353 -39750 600 L +147603 -39000 148353 -39750 600 L +145353 -39000 147603 -39000 600 L +144603 -39750 145353 -39000 600 L +135000 -35749 150154 -35749 800 L +100250 -45000 101000 -44250 600 L +98750 -45000 100250 -45000 600 L +98000 -44250 98750 -45000 600 L +98000 -44250 98000 -39750 600 L +98000 -39750 98750 -39000 600 L +100250 -42000 101000 -41250 600 L +98000 -42000 100250 -42000 600 L +98750 -39000 100250 -39000 600 L +100250 -39000 101000 -39750 600 L +101000 -41250 101000 -39750 600 L +98000 -35749 102801 -35749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -39750 45750 -39000 600 L +45000 -44250 45000 -39750 600 L +45000 -44250 45750 -45000 600 L +45750 -45000 47250 -45000 600 L +47250 -45000 48000 -44250 600 L +48000 -44250 48000 -39750 600 L +47250 -39000 48000 -39750 600 L +45750 -39000 47250 -39000 600 L +45000 -40500 48000 -43500 600 L +49801 -39000 50551 -39000 600 L +52353 -39750 53103 -39000 600 L +52353 -44250 52353 -39750 600 L +52353 -44250 53103 -45000 600 L +53103 -45000 54603 -45000 600 L +54603 -45000 55353 -44250 600 L +55353 -44250 55353 -39750 600 L +54603 -39000 55353 -39750 600 L +53103 -39000 54603 -39000 600 L +52353 -40500 55353 -43500 600 L +57154 -39750 57904 -39000 600 L +57154 -41250 57154 -39750 600 L +57154 -41250 57904 -42000 600 L +57904 -42000 59404 -42000 600 L +59404 -42000 60154 -41250 600 L +60154 -41250 60154 -39750 600 L +59404 -39000 60154 -39750 600 L +57904 -39000 59404 -39000 600 L +57154 -42750 57904 -42000 600 L +57154 -44250 57154 -42750 600 L +57154 -44250 57904 -45000 600 L +57904 -45000 59404 -45000 600 L +59404 -45000 60154 -44250 600 L +60154 -44250 60154 -42750 600 L +59404 -42000 60154 -42750 600 L +61956 -39750 62706 -39000 600 L +61956 -44250 61956 -39750 600 L +61956 -44250 62706 -45000 600 L +62706 -45000 64206 -45000 600 L +64206 -45000 64956 -44250 600 L +64956 -44250 64956 -39750 600 L +64206 -39000 64956 -39750 600 L +62706 -39000 64206 -39000 600 L +61956 -40500 64956 -43500 600 L +45000 -35749 66757 -35749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +72900 42900 76100 42900 800 L +72900 42900 72900 46100 800 L +72900 46100 76100 46100 800 L +76100 42900 76100 46100 800 L +72900 104000 76100 104000 800 L +72900 104000 72900 107200 800 L +72900 107200 76100 107200 800 L +76100 104000 76100 107200 800 L +571400 155900 574600 155900 800 L +571400 155900 571400 159100 800 L +571400 159100 574600 159100 800 L +574600 155900 574600 159100 800 L +13400 -57850 16600 -57850 800 L +13400 -57850 13400 -54650 800 L +13400 -54650 16600 -54650 800 L +16600 -57850 16600 -54650 800 L +135000 -60000 135000 -59250 600 L +135000 -59250 136500 -57750 600 L +136500 -57750 138000 -59250 600 L +138000 -60000 138000 -59250 600 L +136500 -57750 136500 -54000 600 L +139801 -57000 142051 -57000 600 L +139801 -54000 142801 -54000 600 L +139801 -60000 139801 -54000 600 L +139801 -60000 142801 -60000 600 L +147603 -60000 148353 -59250 600 L +145353 -60000 147603 -60000 600 L +144603 -59250 145353 -60000 600 L +144603 -59250 144603 -57750 600 L +144603 -57750 145353 -57000 600 L +145353 -57000 147603 -57000 600 L +147603 -57000 148353 -56250 600 L +148353 -56250 148353 -54750 600 L +147603 -54000 148353 -54750 600 L +145353 -54000 147603 -54000 600 L +144603 -54750 145353 -54000 600 L +135000 -50749 150154 -50749 800 L +98000 -59250 98750 -60000 600 L +98750 -60000 100250 -60000 600 L +100250 -60000 101000 -59250 600 L +101000 -59250 101000 -54750 600 L +100250 -54000 101000 -54750 600 L +98750 -54000 100250 -54000 600 L +98000 -54750 98750 -54000 600 L +98750 -57000 101000 -57000 600 L +98000 -50749 102801 -50749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -54750 45750 -54000 600 L +45000 -59250 45000 -54750 600 L +45000 -59250 45750 -60000 600 L +45750 -60000 47250 -60000 600 L +47250 -60000 48000 -59250 600 L +48000 -59250 48000 -54750 600 L +47250 -54000 48000 -54750 600 L +45750 -54000 47250 -54000 600 L +45000 -55500 48000 -58500 600 L +49801 -54000 50551 -54000 600 L +52353 -54750 53103 -54000 600 L +52353 -59250 52353 -54750 600 L +52353 -59250 53103 -60000 600 L +53103 -60000 54603 -60000 600 L +54603 -60000 55353 -59250 600 L +55353 -59250 55353 -54750 600 L +54603 -54000 55353 -54750 600 L +53103 -54000 54603 -54000 600 L +52353 -55500 55353 -58500 600 L +59404 -60000 60154 -59250 600 L +57904 -60000 59404 -60000 600 L +57154 -59250 57904 -60000 600 L +57154 -59250 57154 -54750 600 L +57154 -54750 57904 -54000 600 L +59404 -57000 60154 -56250 600 L +57154 -57000 59404 -57000 600 L +57904 -54000 59404 -54000 600 L +59404 -54000 60154 -54750 600 L +60154 -56250 60154 -54750 600 L +61956 -54750 62706 -54000 600 L +61956 -59250 61956 -54750 600 L +61956 -59250 62706 -60000 600 L +62706 -60000 64206 -60000 600 L +64206 -60000 64956 -59250 600 L +64956 -59250 64956 -54750 600 L +64206 -54000 64956 -54750 600 L +62706 -54000 64206 -54000 600 L +61956 -55500 64956 -58500 600 L +45000 -50749 66757 -50749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +64800 264600 800 800 800 0 180 A +64800 264600 800 800 800 180 180 A +64800 292200 800 800 800 0 180 A +64800 292200 800 800 800 180 180 A +15000 -71250 800 800 800 0 180 A +15000 -71250 800 800 800 180 180 A +135000 -75000 135000 -74250 600 L +135000 -74250 136500 -72750 600 L +136500 -72750 138000 -74250 600 L +138000 -75000 138000 -74250 600 L +136500 -72750 136500 -69000 600 L +139801 -72000 142051 -72000 600 L +139801 -69000 142801 -69000 600 L +139801 -75000 139801 -69000 600 L +139801 -75000 142801 -75000 600 L +147603 -75000 148353 -74250 600 L +145353 -75000 147603 -75000 600 L +144603 -74250 145353 -75000 600 L +144603 -74250 144603 -72750 600 L +144603 -72750 145353 -72000 600 L +145353 -72000 147603 -72000 600 L +147603 -72000 148353 -71250 600 L +148353 -71250 148353 -69750 600 L +147603 -69000 148353 -69750 600 L +145353 -69000 147603 -69000 600 L +144603 -69750 145353 -69000 600 L +135000 -65749 150154 -65749 800 L +98000 -74250 98750 -75000 600 L +98750 -75000 101000 -75000 600 L +101000 -75000 101750 -74250 600 L +101750 -74250 101750 -72750 600 L +98000 -69000 101750 -72750 600 L +98000 -69000 101750 -69000 600 L +98000 -65749 103551 -65749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -69750 45750 -69000 600 L +45000 -74250 45000 -69750 600 L +45000 -74250 45750 -75000 600 L +45750 -75000 47250 -75000 600 L +47250 -75000 48000 -74250 600 L +48000 -74250 48000 -69750 600 L +47250 -69000 48000 -69750 600 L +45750 -69000 47250 -69000 600 L +45000 -70500 48000 -73500 600 L +49801 -69000 50551 -69000 600 L +52353 -69750 53103 -69000 600 L +52353 -74250 52353 -69750 600 L +52353 -74250 53103 -75000 600 L +53103 -75000 54603 -75000 600 L +54603 -75000 55353 -74250 600 L +55353 -74250 55353 -69750 600 L +54603 -69000 55353 -69750 600 L +53103 -69000 54603 -69000 600 L +52353 -70500 55353 -73500 600 L +57154 -75000 60154 -75000 600 L +57154 -75000 57154 -72000 600 L +57154 -72000 57904 -72750 600 L +57904 -72750 59404 -72750 600 L +59404 -72750 60154 -72000 600 L +60154 -72000 60154 -69750 600 L +59404 -69000 60154 -69750 600 L +57904 -69000 59404 -69000 600 L +57154 -69750 57904 -69000 600 L +61956 -74250 62706 -75000 600 L +62706 -75000 64956 -75000 600 L +64956 -75000 65706 -74250 600 L +65706 -74250 65706 -72750 600 L +61956 -69000 65706 -72750 600 L +61956 -69000 65706 -69000 600 L +45000 -65749 67507 -65749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +413800 358800 416200 361200 800 L +413800 361200 416200 358800 800 L +403800 358800 406200 361200 800 L +403800 361200 406200 358800 800 L +393800 358800 396200 361200 800 L +393800 361200 396200 358800 800 L +528800 243800 531200 246200 800 L +528800 246200 531200 243800 800 L +538800 243800 541200 246200 800 L +538800 246200 541200 243800 800 L +548800 243800 551200 246200 800 L +548800 246200 551200 243800 800 L +418800 203800 421200 206200 800 L +418800 206200 421200 203800 800 L +428800 203800 431200 206200 800 L +428800 206200 431200 203800 800 L +418800 213800 421200 216200 800 L +418800 216200 421200 213800 800 L +428800 213800 431200 216200 800 L +428800 216200 431200 213800 800 L +418800 223800 421200 226200 800 L +418800 226200 421200 223800 800 L +428800 223800 431200 226200 800 L +428800 226200 431200 223800 800 L +418800 233800 421200 236200 800 L +418800 236200 421200 233800 800 L +428800 233800 431200 236200 800 L +428800 236200 431200 233800 800 L +81300 149800 83700 152200 800 L +81300 152200 83700 149800 800 L +71300 154800 73700 157200 800 L +71300 157200 73700 154800 800 L +81300 159800 83700 162200 800 L +81300 162200 83700 159800 800 L +71300 164800 73700 167200 800 L +71300 167200 73700 164800 800 L +81300 169800 83700 172200 800 L +81300 172200 83700 169800 800 L +71300 174800 73700 177200 800 L +71300 177200 73700 174800 800 L +81300 179800 83700 182200 800 L +81300 182200 83700 179800 800 L +71300 184800 73700 187200 800 L +71300 187200 73700 184800 800 L +81300 189800 83700 192200 800 L +81300 192200 83700 189800 800 L +493800 218800 496200 221200 800 L +493800 221200 496200 218800 800 L +468800 218800 471200 221200 800 L +468800 221200 471200 218800 800 L +581300 243800 583700 246200 800 L +581300 246200 583700 243800 800 L +591300 243800 593700 246200 800 L +591300 246200 593700 243800 800 L +601300 243800 603700 246200 800 L +601300 246200 603700 243800 800 L +103800 328800 106200 331200 800 L +103800 331200 106200 328800 800 L +113800 328800 116200 331200 800 L +113800 331200 116200 328800 800 L +493800 276300 496200 278700 800 L +493800 278700 496200 276300 800 L +468800 276300 471200 278700 800 L +468800 278700 471200 276300 800 L +568800 358800 571200 361200 800 L +568800 361200 571200 358800 800 L +558800 358800 561200 361200 800 L +558800 361200 561200 358800 800 L +548800 358800 551200 361200 800 L +548800 361200 551200 358800 800 L +528800 291300 531200 293700 800 L +528800 293700 531200 291300 800 L +538800 291300 541200 293700 800 L +538800 293700 541200 291300 800 L +548800 291300 551200 293700 800 L +548800 293700 551200 291300 800 L +53800 268300 56200 270700 800 L +53800 270700 56200 268300 800 L +53800 286000 56200 288400 800 L +53800 288400 56200 286000 800 L +581300 291300 583700 293700 800 L +581300 293700 583700 291300 800 L +591300 291300 593700 293700 800 L +591300 293700 593700 291300 800 L +601300 291300 603700 293700 800 L +601300 293700 603700 291300 800 L +581300 208800 583700 211200 800 L +581300 211200 583700 208800 800 L +591300 208800 593700 211200 800 L +591300 211200 593700 208800 800 L +601300 208800 603700 211200 800 L +601300 211200 603700 208800 800 L +13800 -87450 16200 -85050 800 L +13800 -85050 16200 -87450 800 L +135000 -90000 135000 -89250 600 L +135000 -89250 136500 -87750 600 L +136500 -87750 138000 -89250 600 L +138000 -90000 138000 -89250 600 L +136500 -87750 136500 -84000 600 L +139801 -87000 142051 -87000 600 L +139801 -84000 142801 -84000 600 L +139801 -90000 139801 -84000 600 L +139801 -90000 142801 -90000 600 L +147603 -90000 148353 -89250 600 L +145353 -90000 147603 -90000 600 L +144603 -89250 145353 -90000 600 L +144603 -89250 144603 -87750 600 L +144603 -87750 145353 -87000 600 L +145353 -87000 147603 -87000 600 L +147603 -87000 148353 -86250 600 L +148353 -86250 148353 -84750 600 L +147603 -84000 148353 -84750 600 L +145353 -84000 147603 -84000 600 L +144603 -84750 145353 -84000 600 L +135000 -80749 150154 -80749 800 L +98000 -87000 101000 -90000 600 L +98000 -87000 101750 -87000 600 L +101000 -90000 101000 -84000 600 L +105801 -90000 106551 -89250 600 L +104301 -90000 105801 -90000 600 L +103551 -89250 104301 -90000 600 L +103551 -89250 103551 -84750 600 L +103551 -84750 104301 -84000 600 L +105801 -87000 106551 -86250 600 L +103551 -87000 105801 -87000 600 L +104301 -84000 105801 -84000 600 L +105801 -84000 106551 -84750 600 L +106551 -86250 106551 -84750 600 L +98000 -80749 108353 -80749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -84750 45750 -84000 600 L +45000 -89250 45000 -84750 600 L +45000 -89250 45750 -90000 600 L +45750 -90000 47250 -90000 600 L +47250 -90000 48000 -89250 600 L +48000 -89250 48000 -84750 600 L +47250 -84000 48000 -84750 600 L +45750 -84000 47250 -84000 600 L +45000 -85500 48000 -88500 600 L +49801 -84000 50551 -84000 600 L +52353 -84750 53103 -84000 600 L +52353 -89250 52353 -84750 600 L +52353 -89250 53103 -90000 600 L +53103 -90000 54603 -90000 600 L +54603 -90000 55353 -89250 600 L +55353 -89250 55353 -84750 600 L +54603 -84000 55353 -84750 600 L +53103 -84000 54603 -84000 600 L +52353 -85500 55353 -88500 600 L +57154 -87000 60154 -90000 600 L +57154 -87000 60904 -87000 600 L +60154 -90000 60154 -84000 600 L +62706 -89250 63456 -90000 600 L +63456 -90000 65706 -90000 600 L +65706 -90000 66456 -89250 600 L +66456 -89250 66456 -87750 600 L +62706 -84000 66456 -87750 600 L +62706 -84000 66456 -84000 600 L +45000 -80749 68257 -80749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +335000 60900 335000 64100 800 L +333400 62500 336600 62500 800 L +335000 20900 335000 24100 800 L +333400 22500 336600 22500 800 L +297500 340900 297500 344100 800 L +295900 342500 299100 342500 800 L +297500 370900 297500 374100 800 L +295900 372500 299100 372500 800 L +447500 120900 447500 124100 800 L +445900 122500 449100 122500 800 L +447500 80900 447500 84100 800 L +445900 82500 449100 82500 800 L +397500 115900 397500 119100 800 L +395900 117500 399100 117500 800 L +407500 115900 407500 119100 800 L +405900 117500 409100 117500 800 L +417500 115900 417500 119100 800 L +415900 117500 419100 117500 800 L +427500 115900 427500 119100 800 L +425900 117500 429100 117500 800 L +427500 85900 427500 89100 800 L +425900 87500 429100 87500 800 L +417500 85900 417500 89100 800 L +415900 87500 419100 87500 800 L +407500 85900 407500 89100 800 L +405900 87500 409100 87500 800 L +397500 85900 397500 89100 800 L +395900 87500 399100 87500 800 L +557500 120900 557500 124100 800 L +555900 122500 559100 122500 800 L +557500 80900 557500 84100 800 L +555900 82500 559100 82500 800 L +537500 60900 537500 64100 800 L +535900 62500 539100 62500 800 L +537500 20900 537500 24100 800 L +535900 22500 539100 22500 800 L +487500 55900 487500 59100 800 L +485900 57500 489100 57500 800 L +497500 55900 497500 59100 800 L +495900 57500 499100 57500 800 L +507500 55900 507500 59100 800 L +505900 57500 509100 57500 800 L +517500 55900 517500 59100 800 L +515900 57500 519100 57500 800 L +517500 25900 517500 29100 800 L +515900 27500 519100 27500 800 L +507500 25900 507500 29100 800 L +505900 27500 509100 27500 800 L +497500 25900 497500 29100 800 L +495900 27500 499100 27500 800 L +487500 25900 487500 29100 800 L +485900 27500 489100 27500 800 L +467500 60900 467500 64100 800 L +465900 62500 469100 62500 800 L +467500 20900 467500 24100 800 L +465900 22500 469100 22500 800 L +467500 120900 467500 124100 800 L +465900 122500 469100 122500 800 L +467500 80900 467500 84100 800 L +465900 82500 469100 82500 800 L +537500 120900 537500 124100 800 L +535900 122500 539100 122500 800 L +537500 80900 537500 84100 800 L +535900 82500 539100 82500 800 L +487500 115900 487500 119100 800 L +485900 117500 489100 117500 800 L +497500 115900 497500 119100 800 L +495900 117500 499100 117500 800 L +507500 115900 507500 119100 800 L +505900 117500 509100 117500 800 L +517500 115900 517500 119100 800 L +515900 117500 519100 117500 800 L +517500 85900 517500 89100 800 L +515900 87500 519100 87500 800 L +507500 85900 507500 89100 800 L +505900 87500 509100 87500 800 L +497500 85900 497500 89100 800 L +495900 87500 499100 87500 800 L +487500 85900 487500 89100 800 L +485900 87500 489100 87500 800 L +397500 55900 397500 59100 800 L +395900 57500 399100 57500 800 L +407500 55900 407500 59100 800 L +405900 57500 409100 57500 800 L +417500 55900 417500 59100 800 L +415900 57500 419100 57500 800 L +427500 55900 427500 59100 800 L +425900 57500 429100 57500 800 L +427500 25900 427500 29100 800 L +425900 27500 429100 27500 800 L +417500 25900 417500 29100 800 L +415900 27500 419100 27500 800 L +407500 25900 407500 29100 800 L +405900 27500 409100 27500 800 L +397500 25900 397500 29100 800 L +395900 27500 399100 27500 800 L +557500 60900 557500 64100 800 L +555900 62500 559100 62500 800 L +557500 20900 557500 24100 800 L +555900 22500 559100 22500 800 L +157500 340900 157500 344100 800 L +155900 342500 159100 342500 800 L +157500 370900 157500 374100 800 L +155900 372500 159100 372500 800 L +57500 237900 57500 241100 800 L +55900 239500 59100 239500 800 L +57500 247900 57500 251100 800 L +55900 249500 59100 249500 800 L +245000 55900 245000 59100 800 L +243400 57500 246600 57500 800 L +255000 55900 255000 59100 800 L +253400 57500 256600 57500 800 L +265000 55900 265000 59100 800 L +263400 57500 266600 57500 800 L +275000 55900 275000 59100 800 L +273400 57500 276600 57500 800 L +285000 55900 285000 59100 800 L +283400 57500 286600 57500 800 L +295000 55900 295000 59100 800 L +293400 57500 296600 57500 800 L +305000 55900 305000 59100 800 L +303400 57500 306600 57500 800 L +315000 55900 315000 59100 800 L +313400 57500 316600 57500 800 L +315000 25900 315000 29100 800 L +313400 27500 316600 27500 800 L +305000 25900 305000 29100 800 L +303400 27500 306600 27500 800 L +295000 25900 295000 29100 800 L +293400 27500 296600 27500 800 L +285000 25900 285000 29100 800 L +283400 27500 286600 27500 800 L +275000 25900 275000 29100 800 L +273400 27500 276600 27500 800 L +265000 25900 265000 29100 800 L +263400 27500 266600 27500 800 L +255000 25900 255000 29100 800 L +253400 27500 256600 27500 800 L +245000 25900 245000 29100 800 L +243400 27500 246600 27500 800 L +317500 370900 317500 374100 800 L +315900 372500 319100 372500 800 L +327500 370900 327500 374100 800 L +325900 372500 329100 372500 800 L +140000 263400 140000 266600 800 L +138400 265000 141600 265000 800 L +150000 263400 150000 266600 800 L +148400 265000 151600 265000 800 L +160000 263400 160000 266600 800 L +158400 265000 161600 265000 800 L +170000 263400 170000 266600 800 L +168400 265000 171600 265000 800 L +180000 263400 180000 266600 800 L +178400 265000 181600 265000 800 L +190000 263400 190000 266600 800 L +188400 265000 191600 265000 800 L +200000 263400 200000 266600 800 L +198400 265000 201600 265000 800 L +210000 263400 210000 266600 800 L +208400 265000 211600 265000 800 L +220000 263400 220000 266600 800 L +218400 265000 221600 265000 800 L +230000 263400 230000 266600 800 L +228400 265000 231600 265000 800 L +240000 263400 240000 266600 800 L +238400 265000 241600 265000 800 L +250000 263400 250000 266600 800 L +248400 265000 251600 265000 800 L +250000 203400 250000 206600 800 L +248400 205000 251600 205000 800 L +240000 203400 240000 206600 800 L +238400 205000 241600 205000 800 L +230000 203400 230000 206600 800 L +228400 205000 231600 205000 800 L +220000 203400 220000 206600 800 L +218400 205000 221600 205000 800 L +210000 203400 210000 206600 800 L +208400 205000 211600 205000 800 L +200000 203400 200000 206600 800 L +198400 205000 201600 205000 800 L +190000 203400 190000 206600 800 L +188400 205000 191600 205000 800 L +180000 203400 180000 206600 800 L +178400 205000 181600 205000 800 L +170000 203400 170000 206600 800 L +168400 205000 171600 205000 800 L +160000 203400 160000 206600 800 L +158400 205000 161600 205000 800 L +150000 203400 150000 206600 800 L +148400 205000 151600 205000 800 L +140000 203400 140000 206600 800 L +138400 205000 141600 205000 800 L +280000 233400 280000 236600 800 L +278400 235000 281600 235000 800 L +290000 233400 290000 236600 800 L +288400 235000 291600 235000 800 L +300000 233400 300000 236600 800 L +298400 235000 301600 235000 800 L +310000 233400 310000 236600 800 L +308400 235000 311600 235000 800 L +320000 233400 320000 236600 800 L +318400 235000 321600 235000 800 L +330000 233400 330000 236600 800 L +328400 235000 331600 235000 800 L +340000 233400 340000 236600 800 L +338400 235000 341600 235000 800 L +350000 233400 350000 236600 800 L +348400 235000 351600 235000 800 L +360000 233400 360000 236600 800 L +358400 235000 361600 235000 800 L +370000 233400 370000 236600 800 L +368400 235000 371600 235000 800 L +380000 233400 380000 236600 800 L +378400 235000 381600 235000 800 L +390000 233400 390000 236600 800 L +388400 235000 391600 235000 800 L +390000 203400 390000 206600 800 L +388400 205000 391600 205000 800 L +380000 203400 380000 206600 800 L +378400 205000 381600 205000 800 L +370000 203400 370000 206600 800 L +368400 205000 371600 205000 800 L +360000 203400 360000 206600 800 L +358400 205000 361600 205000 800 L +350000 203400 350000 206600 800 L +348400 205000 351600 205000 800 L +340000 203400 340000 206600 800 L +338400 205000 341600 205000 800 L +330000 203400 330000 206600 800 L +328400 205000 331600 205000 800 L +320000 203400 320000 206600 800 L +318400 205000 321600 205000 800 L +310000 203400 310000 206600 800 L +308400 205000 311600 205000 800 L +300000 203400 300000 206600 800 L +298400 205000 301600 205000 800 L +290000 203400 290000 206600 800 L +288400 205000 291600 205000 800 L +280000 203400 280000 206600 800 L +278400 205000 281600 205000 800 L +81500 237900 81500 241100 800 L +79900 239500 83100 239500 800 L +81500 247900 81500 251100 800 L +79900 249500 83100 249500 800 L +85000 328400 85000 331600 800 L +83400 330000 86600 330000 800 L +85000 358400 85000 361600 800 L +83400 360000 86600 360000 800 L +535000 208400 535000 211600 800 L +533400 210000 536600 210000 800 L +545000 208400 545000 211600 800 L +543400 210000 546600 210000 800 L +355000 60900 355000 64100 800 L +353400 62500 356600 62500 800 L +355000 20900 355000 24100 800 L +353400 22500 356600 22500 800 L +172500 318400 172500 321600 800 L +170900 320000 174100 320000 800 L +182500 318400 182500 321600 800 L +180900 320000 184100 320000 800 L +192500 318400 192500 321600 800 L +190900 320000 194100 320000 800 L +202500 318400 202500 321600 800 L +200900 320000 204100 320000 800 L +202500 288400 202500 291600 800 L +200900 290000 204100 290000 800 L +192500 288400 192500 291600 800 L +190900 290000 194100 290000 800 L +182500 288400 182500 291600 800 L +180900 290000 184100 290000 800 L +172500 288400 172500 291600 800 L +170900 290000 174100 290000 800 L +280000 255900 280000 259100 800 L +278400 257500 281600 257500 800 L +280000 295900 280000 299100 800 L +278400 297500 281600 297500 800 L +116000 278400 116000 281600 800 L +114400 280000 117600 280000 800 L +76000 278400 76000 281600 800 L +74400 280000 77600 280000 800 L +490000 368400 490000 371600 800 L +488400 370000 491600 370000 800 L +475000 368400 475000 371600 800 L +473400 370000 476600 370000 800 L +652500 45900 652500 49100 800 L +650900 47500 654100 47500 800 L +652500 55900 652500 59100 800 L +650900 57500 654100 57500 800 L +652500 65900 652500 69100 800 L +650900 67500 654100 67500 800 L +652500 75900 652500 79100 800 L +650900 77500 654100 77500 800 L +652500 85900 652500 89100 800 L +650900 87500 654100 87500 800 L +652500 95900 652500 99100 800 L +650900 97500 654100 97500 800 L +652500 105900 652500 109100 800 L +650900 107500 654100 107500 800 L +652500 115900 652500 119100 800 L +650900 117500 654100 117500 800 L +652500 125900 652500 129100 800 L +650900 127500 654100 127500 800 L +652500 135900 652500 139100 800 L +650900 137500 654100 137500 800 L +652500 145900 652500 149100 800 L +650900 147500 654100 147500 800 L +652500 155900 652500 159100 800 L +650900 157500 654100 157500 800 L +652500 165900 652500 169100 800 L +650900 167500 654100 167500 800 L +652500 175900 652500 179100 800 L +650900 177500 654100 177500 800 L +652500 185900 652500 189100 800 L +650900 187500 654100 187500 800 L +652500 195900 652500 199100 800 L +650900 197500 654100 197500 800 L +652500 205900 652500 209100 800 L +650900 207500 654100 207500 800 L +652500 215900 652500 219100 800 L +650900 217500 654100 217500 800 L +652500 225900 652500 229100 800 L +650900 227500 654100 227500 800 L +652500 235900 652500 239100 800 L +650900 237500 654100 237500 800 L +652500 245900 652500 249100 800 L +650900 247500 654100 247500 800 L +652500 255900 652500 259100 800 L +650900 257500 654100 257500 800 L +652500 265900 652500 269100 800 L +650900 267500 654100 267500 800 L +652500 275900 652500 279100 800 L +650900 277500 654100 277500 800 L +652500 285900 652500 289100 800 L +650900 287500 654100 287500 800 L +652500 295900 652500 299100 800 L +650900 297500 654100 297500 800 L +652500 305900 652500 309100 800 L +650900 307500 654100 307500 800 L +652500 315900 652500 319100 800 L +650900 317500 654100 317500 800 L +652500 325900 652500 329100 800 L +650900 327500 654100 327500 800 L +652500 335900 652500 339100 800 L +650900 337500 654100 337500 800 L +652500 345900 652500 349100 800 L +650900 347500 654100 347500 800 L +652500 355900 652500 359100 800 L +650900 357500 654100 357500 800 L +642500 45900 642500 49100 800 L +640900 47500 644100 47500 800 L +642500 55900 642500 59100 800 L +640900 57500 644100 57500 800 L +642500 65900 642500 69100 800 L +640900 67500 644100 67500 800 L +642500 75900 642500 79100 800 L +640900 77500 644100 77500 800 L +642500 85900 642500 89100 800 L +640900 87500 644100 87500 800 L +642500 95900 642500 99100 800 L +640900 97500 644100 97500 800 L +642500 105900 642500 109100 800 L +640900 107500 644100 107500 800 L +642500 115900 642500 119100 800 L +640900 117500 644100 117500 800 L +642500 125900 642500 129100 800 L +640900 127500 644100 127500 800 L +642500 135900 642500 139100 800 L +640900 137500 644100 137500 800 L +642500 145900 642500 149100 800 L +640900 147500 644100 147500 800 L +642500 155900 642500 159100 800 L +640900 157500 644100 157500 800 L +642500 165900 642500 169100 800 L +640900 167500 644100 167500 800 L +642500 175900 642500 179100 800 L +640900 177500 644100 177500 800 L +642500 185900 642500 189100 800 L +640900 187500 644100 187500 800 L +642500 195900 642500 199100 800 L +640900 197500 644100 197500 800 L +642500 205900 642500 209100 800 L +640900 207500 644100 207500 800 L +642500 215900 642500 219100 800 L +640900 217500 644100 217500 800 L +642500 225900 642500 229100 800 L +640900 227500 644100 227500 800 L +642500 235900 642500 239100 800 L +640900 237500 644100 237500 800 L +642500 245900 642500 249100 800 L +640900 247500 644100 247500 800 L +642500 255900 642500 259100 800 L +640900 257500 644100 257500 800 L +642500 265900 642500 269100 800 L +640900 267500 644100 267500 800 L +642500 275900 642500 279100 800 L +640900 277500 644100 277500 800 L +642500 285900 642500 289100 800 L +640900 287500 644100 287500 800 L +642500 295900 642500 299100 800 L +640900 297500 644100 297500 800 L +642500 305900 642500 309100 800 L +640900 307500 644100 307500 800 L +642500 315900 642500 319100 800 L +640900 317500 644100 317500 800 L +642500 325900 642500 329100 800 L +640900 327500 644100 327500 800 L +642500 335900 642500 339100 800 L +640900 337500 644100 337500 800 L +642500 345900 642500 349100 800 L +640900 347500 644100 347500 800 L +642500 355900 642500 359100 800 L +640900 357500 644100 357500 800 L +632500 45900 632500 49100 800 L +630900 47500 634100 47500 800 L +632500 55900 632500 59100 800 L +630900 57500 634100 57500 800 L +632500 65900 632500 69100 800 L +630900 67500 634100 67500 800 L +632500 75900 632500 79100 800 L +630900 77500 634100 77500 800 L +632500 85900 632500 89100 800 L +630900 87500 634100 87500 800 L +632500 95900 632500 99100 800 L +630900 97500 634100 97500 800 L +632500 105900 632500 109100 800 L +630900 107500 634100 107500 800 L +632500 115900 632500 119100 800 L +630900 117500 634100 117500 800 L +632500 125900 632500 129100 800 L +630900 127500 634100 127500 800 L +632500 135900 632500 139100 800 L +630900 137500 634100 137500 800 L +632500 145900 632500 149100 800 L +630900 147500 634100 147500 800 L +632500 155900 632500 159100 800 L +630900 157500 634100 157500 800 L +632500 165900 632500 169100 800 L +630900 167500 634100 167500 800 L +632500 175900 632500 179100 800 L +630900 177500 634100 177500 800 L +632500 185900 632500 189100 800 L +630900 187500 634100 187500 800 L +632500 195900 632500 199100 800 L +630900 197500 634100 197500 800 L +632500 205900 632500 209100 800 L +630900 207500 634100 207500 800 L +632500 215900 632500 219100 800 L +630900 217500 634100 217500 800 L +632500 225900 632500 229100 800 L +630900 227500 634100 227500 800 L +632500 235900 632500 239100 800 L +630900 237500 634100 237500 800 L +632500 245900 632500 249100 800 L +630900 247500 634100 247500 800 L +632500 255900 632500 259100 800 L +630900 257500 634100 257500 800 L +632500 265900 632500 269100 800 L +630900 267500 634100 267500 800 L +632500 275900 632500 279100 800 L +630900 277500 634100 277500 800 L +632500 285900 632500 289100 800 L +630900 287500 634100 287500 800 L +632500 295900 632500 299100 800 L +630900 297500 634100 297500 800 L +632500 305900 632500 309100 800 L +630900 307500 634100 307500 800 L +632500 315900 632500 319100 800 L +630900 317500 634100 317500 800 L +632500 325900 632500 329100 800 L +630900 327500 634100 327500 800 L +632500 335900 632500 339100 800 L +630900 337500 634100 337500 800 L +632500 345900 632500 349100 800 L +630900 347500 634100 347500 800 L +632500 355900 632500 359100 800 L +630900 357500 634100 357500 800 L +332500 258400 332500 261600 800 L +330900 260000 334100 260000 800 L +322500 258400 322500 261600 800 L +320900 260000 324100 260000 800 L +447500 60900 447500 64100 800 L +445900 62500 449100 62500 800 L +447500 20900 447500 24100 800 L +445900 22500 449100 22500 800 L +300000 295900 300000 299100 800 L +298400 297500 301600 297500 800 L +300000 255900 300000 259100 800 L +298400 257500 301600 257500 800 L +475000 328400 475000 331600 800 L +473400 330000 476600 330000 800 L +490000 328400 490000 331600 800 L +488400 330000 491600 330000 800 L +562500 185900 562500 189100 800 L +560900 187500 564100 187500 800 L +592500 185900 592500 189100 800 L +590900 187500 594100 187500 800 L +577500 115900 577500 119100 800 L +575900 117500 579100 117500 800 L +587500 115900 587500 119100 800 L +585900 117500 589100 117500 800 L +597500 115900 597500 119100 800 L +595900 117500 599100 117500 800 L +607500 115900 607500 119100 800 L +605900 117500 609100 117500 800 L +607500 85900 607500 89100 800 L +605900 87500 609100 87500 800 L +597500 85900 597500 89100 800 L +595900 87500 599100 87500 800 L +587500 85900 587500 89100 800 L +585900 87500 589100 87500 800 L +577500 85900 577500 89100 800 L +575900 87500 579100 87500 800 L +577500 55900 577500 59100 800 L +575900 57500 579100 57500 800 L +587500 55900 587500 59100 800 L +585900 57500 589100 57500 800 L +597500 55900 597500 59100 800 L +595900 57500 599100 57500 800 L +607500 55900 607500 59100 800 L +605900 57500 609100 57500 800 L +607500 25900 607500 29100 800 L +605900 27500 609100 27500 800 L +597500 25900 597500 29100 800 L +595900 27500 599100 27500 800 L +587500 25900 587500 29100 800 L +585900 27500 589100 27500 800 L +577500 25900 577500 29100 800 L +575900 27500 579100 27500 800 L +322500 288400 322500 291600 800 L +320900 290000 324100 290000 800 L +332500 288400 332500 291600 800 L +330900 290000 334100 290000 800 L +87500 55900 87500 59100 800 L +85900 57500 89100 57500 800 L +97500 60900 97500 64100 800 L +95900 62500 99100 62500 800 L +87500 65900 87500 69100 800 L +85900 67500 89100 67500 800 L +97500 70900 97500 74100 800 L +95900 72500 99100 72500 800 L +87500 75900 87500 79100 800 L +85900 77500 89100 77500 800 L +97500 80900 97500 84100 800 L +95900 82500 99100 82500 800 L +87500 85900 87500 89100 800 L +85900 87500 89100 87500 800 L +97500 90900 97500 94100 800 L +95900 92500 99100 92500 800 L +360000 288400 360000 291600 800 L +358400 290000 361600 290000 800 L +370000 288400 370000 291600 800 L +368400 290000 371600 290000 800 L +380000 288400 380000 291600 800 L +378400 290000 381600 290000 800 L +390000 288400 390000 291600 800 L +388400 290000 391600 290000 800 L +390000 258400 390000 261600 800 L +388400 260000 391600 260000 800 L +380000 258400 380000 261600 800 L +378400 260000 381600 260000 800 L +370000 258400 370000 261600 800 L +368400 260000 371600 260000 800 L +360000 258400 360000 261600 800 L +358400 260000 361600 260000 800 L +317500 340900 317500 344100 800 L +315900 342500 319100 342500 800 L +327500 340900 327500 344100 800 L +325900 342500 329100 342500 800 L +137500 340900 137500 344100 800 L +135900 342500 139100 342500 800 L +127500 340900 127500 344100 800 L +125900 342500 129100 342500 800 L +540000 160900 540000 164100 800 L +538400 162500 541600 162500 800 L +535000 150900 535000 154100 800 L +533400 152500 536600 152500 800 L +530000 160900 530000 164100 800 L +528400 162500 531600 162500 800 L +525000 150900 525000 154100 800 L +523400 152500 526600 152500 800 L +520000 160900 520000 164100 800 L +518400 162500 521600 162500 800 L +515000 150900 515000 154100 800 L +513400 152500 516600 152500 800 L +510000 160900 510000 164100 800 L +508400 162500 511600 162500 800 L +505000 150900 505000 154100 800 L +503400 152500 506600 152500 800 L +500000 160900 500000 164100 800 L +498400 162500 501600 162500 800 L +495000 150900 495000 154100 800 L +493400 152500 496600 152500 800 L +490000 160900 490000 164100 800 L +488400 162500 491600 162500 800 L +485000 150900 485000 154100 800 L +483400 152500 486600 152500 800 L +480000 160900 480000 164100 800 L +478400 162500 481600 162500 800 L +475000 150900 475000 154100 800 L +473400 152500 476600 152500 800 L +470000 160900 470000 164100 800 L +468400 162500 471600 162500 800 L +465000 150900 465000 154100 800 L +463400 152500 466600 152500 800 L +460000 160900 460000 164100 800 L +458400 162500 461600 162500 800 L +455000 150900 455000 154100 800 L +453400 152500 456600 152500 800 L +450000 160900 450000 164100 800 L +448400 162500 451600 162500 800 L +445000 150900 445000 154100 800 L +443400 152500 446600 152500 800 L +440000 160900 440000 164100 800 L +438400 162500 441600 162500 800 L +435000 150900 435000 154100 800 L +433400 152500 436600 152500 800 L +430000 160900 430000 164100 800 L +428400 162500 431600 162500 800 L +425000 150900 425000 154100 800 L +423400 152500 426600 152500 800 L +420000 160900 420000 164100 800 L +418400 162500 421600 162500 800 L +415000 150900 415000 154100 800 L +413400 152500 416600 152500 800 L +410000 160900 410000 164100 800 L +408400 162500 411600 162500 800 L +405000 150900 405000 154100 800 L +403400 152500 406600 152500 800 L +400000 160900 400000 164100 800 L +398400 162500 401600 162500 800 L +395000 150900 395000 154100 800 L +393400 152500 396600 152500 800 L +390000 160900 390000 164100 800 L +388400 162500 391600 162500 800 L +385000 150900 385000 154100 800 L +383400 152500 386600 152500 800 L +380000 160900 380000 164100 800 L +378400 162500 381600 162500 800 L +375000 150900 375000 154100 800 L +373400 152500 376600 152500 800 L +370000 160900 370000 164100 800 L +368400 162500 371600 162500 800 L +365000 150900 365000 154100 800 L +363400 152500 366600 152500 800 L +340000 160900 340000 164100 800 L +338400 162500 341600 162500 800 L +335000 150900 335000 154100 800 L +333400 152500 336600 152500 800 L +330000 160900 330000 164100 800 L +328400 162500 331600 162500 800 L +325000 150900 325000 154100 800 L +323400 152500 326600 152500 800 L +320000 160900 320000 164100 800 L +318400 162500 321600 162500 800 L +315000 150900 315000 154100 800 L +313400 152500 316600 152500 800 L +310000 160900 310000 164100 800 L +308400 162500 311600 162500 800 L +305000 150900 305000 154100 800 L +303400 152500 306600 152500 800 L +300000 160900 300000 164100 800 L +298400 162500 301600 162500 800 L +295000 150900 295000 154100 800 L +293400 152500 296600 152500 800 L +290000 160900 290000 164100 800 L +288400 162500 291600 162500 800 L +285000 150900 285000 154100 800 L +283400 152500 286600 152500 800 L +280000 160900 280000 164100 800 L +278400 162500 281600 162500 800 L +275000 150900 275000 154100 800 L +273400 152500 276600 152500 800 L +270000 160900 270000 164100 800 L +268400 162500 271600 162500 800 L +265000 150900 265000 154100 800 L +263400 152500 266600 152500 800 L +260000 160900 260000 164100 800 L +258400 162500 261600 162500 800 L +255000 150900 255000 154100 800 L +253400 152500 256600 152500 800 L +250000 160900 250000 164100 800 L +248400 162500 251600 162500 800 L +245000 150900 245000 154100 800 L +243400 152500 246600 152500 800 L +240000 160900 240000 164100 800 L +238400 162500 241600 162500 800 L +235000 150900 235000 154100 800 L +233400 152500 236600 152500 800 L +230000 160900 230000 164100 800 L +228400 162500 231600 162500 800 L +225000 150900 225000 154100 800 L +223400 152500 226600 152500 800 L +220000 160900 220000 164100 800 L +218400 162500 221600 162500 800 L +215000 150900 215000 154100 800 L +213400 152500 216600 152500 800 L +210000 160900 210000 164100 800 L +208400 162500 211600 162500 800 L +205000 150900 205000 154100 800 L +203400 152500 206600 152500 800 L +200000 160900 200000 164100 800 L +198400 162500 201600 162500 800 L +195000 150900 195000 154100 800 L +193400 152500 196600 152500 800 L +190000 160900 190000 164100 800 L +188400 162500 191600 162500 800 L +185000 150900 185000 154100 800 L +183400 152500 186600 152500 800 L +180000 160900 180000 164100 800 L +178400 162500 181600 162500 800 L +175000 150900 175000 154100 800 L +173400 152500 176600 152500 800 L +170000 160900 170000 164100 800 L +168400 162500 171600 162500 800 L +165000 150900 165000 154100 800 L +163400 152500 166600 152500 800 L +137500 370900 137500 374100 800 L +135900 372500 139100 372500 800 L +127500 370900 127500 374100 800 L +125900 372500 129100 372500 800 L +172500 370900 172500 374100 800 L +170900 372500 174100 372500 800 L +182500 370900 182500 374100 800 L +180900 372500 184100 372500 800 L +192500 370900 192500 374100 800 L +190900 372500 194100 372500 800 L +202500 370900 202500 374100 800 L +200900 372500 204100 372500 800 L +212500 370900 212500 374100 800 L +210900 372500 214100 372500 800 L +222500 370900 222500 374100 800 L +220900 372500 224100 372500 800 L +232500 370900 232500 374100 800 L +230900 372500 234100 372500 800 L +242500 370900 242500 374100 800 L +240900 372500 244100 372500 800 L +252500 370900 252500 374100 800 L +250900 372500 254100 372500 800 L +262500 370900 262500 374100 800 L +260900 372500 264100 372500 800 L +272500 370900 272500 374100 800 L +270900 372500 274100 372500 800 L +282500 370900 282500 374100 800 L +280900 372500 284100 372500 800 L +282500 340900 282500 344100 800 L +280900 342500 284100 342500 800 L +272500 340900 272500 344100 800 L +270900 342500 274100 342500 800 L +262500 340900 262500 344100 800 L +260900 342500 264100 342500 800 L +252500 340900 252500 344100 800 L +250900 342500 254100 342500 800 L +242500 340900 242500 344100 800 L +240900 342500 244100 342500 800 L +232500 340900 232500 344100 800 L +230900 342500 234100 342500 800 L +222500 340900 222500 344100 800 L +220900 342500 224100 342500 800 L +212500 340900 212500 344100 800 L +210900 342500 214100 342500 800 L +202500 340900 202500 344100 800 L +200900 342500 204100 342500 800 L +192500 340900 192500 344100 800 L +190900 342500 194100 342500 800 L +182500 340900 182500 344100 800 L +180900 342500 184100 342500 800 L +172500 340900 172500 344100 800 L +170900 342500 174100 342500 800 L +115500 303900 115500 307100 800 L +113900 305500 117100 305500 800 L +75500 303900 75500 307100 800 L +73900 305500 77100 305500 800 L +475000 340900 475000 344100 800 L +473400 342500 476600 342500 800 L +490000 340900 490000 344100 800 L +488400 342500 491600 342500 800 L +560000 340900 560000 344100 800 L +558400 342500 561600 342500 800 L +602500 258400 602500 261600 800 L +600900 260000 604100 260000 800 L +540000 258400 540000 261600 800 L +538400 260000 541600 260000 800 L +540000 305900 540000 309100 800 L +538400 307500 541600 307500 800 L +602500 305900 602500 309100 800 L +600900 307500 604100 307500 800 L +592500 275900 592500 279100 800 L +590900 277500 594100 277500 800 L +612500 285900 612500 289100 800 L +610900 287500 614100 287500 800 L +540000 325900 540000 329100 800 L +538400 327500 541600 327500 800 L +395000 315900 395000 319100 800 L +393400 317500 396600 317500 800 L +475000 315900 475000 319100 800 L +473400 317500 476600 317500 800 L +622500 340900 622500 344100 800 L +620900 342500 624100 342500 800 L +612500 265900 612500 269100 800 L +610900 267500 614100 267500 800 L +592500 220900 592500 224100 800 L +590900 222500 594100 222500 800 L +462500 340900 462500 344100 800 L +460900 342500 464100 342500 800 L +562500 218400 562500 221600 800 L +560900 220000 564100 220000 800 L +622500 100900 622500 104100 800 L +620900 102500 624100 102500 800 L +647500 100900 647500 104100 800 L +645900 102500 649100 102500 800 L +567500 105900 567500 109100 800 L +565900 107500 569100 107500 800 L +597500 45900 597500 49100 800 L +595900 47500 599100 47500 800 L +537500 45900 537500 49100 800 L +535900 47500 539100 47500 800 L +487500 45900 487500 49100 800 L +485900 47500 489100 47500 800 L +517500 38400 517500 41600 800 L +515900 40000 519100 40000 800 L +577500 38400 577500 41600 800 L +575900 40000 579100 40000 800 L +402500 70900 402500 74100 800 L +400900 72500 404100 72500 800 L +487500 70900 487500 74100 800 L +485900 72500 489100 72500 800 L +537500 70900 537500 74100 800 L +535900 72500 539100 72500 800 L +592500 70900 592500 74100 800 L +590900 72500 594100 72500 800 L +497500 93400 497500 96600 800 L +495900 95000 499100 95000 800 L +140000 93400 140000 96600 800 L +138400 95000 141600 95000 800 L +175000 93400 175000 96600 800 L +173400 95000 176600 95000 800 L +237500 93400 237500 96600 800 L +235900 95000 239100 95000 800 L +322500 315900 322500 319100 800 L +320900 317500 324100 317500 800 L +327500 390900 327500 394100 800 L +325900 392500 329100 392500 800 L +240000 243400 240000 246600 800 L +238400 245000 241600 245000 800 L +270000 243400 270000 246600 800 L +268400 245000 271600 245000 800 L +140000 243400 140000 246600 800 L +138400 245000 141600 245000 800 L +130000 278400 130000 281600 800 L +128400 280000 131600 280000 800 L +130000 288400 130000 291600 800 L +128400 290000 131600 290000 800 L +427500 98400 427500 101600 800 L +425900 100000 429100 100000 800 L +525000 98400 525000 101600 800 L +523400 100000 526600 100000 800 L +315000 98400 315000 101600 800 L +313400 100000 316600 100000 800 L +447500 93400 447500 96600 800 L +445900 95000 449100 95000 800 L +202500 303400 202500 306600 800 L +200900 305000 204100 305000 800 L +127500 390900 127500 394100 800 L +125900 392500 129100 392500 800 L +212500 390900 212500 394100 800 L +210900 392500 214100 392500 800 L +272500 390900 272500 394100 800 L +270900 392500 274100 392500 800 L +360000 315900 360000 319100 800 L +358400 317500 361600 317500 800 L +77500 390900 77500 394100 800 L +75900 392500 79100 392500 800 L +407500 45900 407500 49100 800 L +405900 47500 409100 47500 800 L +272500 350900 272500 354100 800 L +270900 352500 274100 352500 800 L +212500 350900 212500 354100 800 L +210900 352500 214100 352500 800 L +232500 350900 232500 354100 800 L +230900 352500 234100 352500 800 L +322500 243400 322500 246600 800 L +320900 245000 324100 245000 800 L +220000 223400 220000 226600 800 L +218400 225000 221600 225000 800 L +240000 223400 240000 226600 800 L +238400 225000 241600 225000 800 L +332500 268400 332500 271600 800 L +330900 270000 334100 270000 800 L +470000 288400 470000 291600 800 L +468400 290000 471600 290000 800 L +297500 350900 297500 354100 800 L +295900 352500 299100 352500 800 L +130000 253400 130000 256600 800 L +128400 255000 131600 255000 800 L +592500 358400 592500 361600 800 L +590900 360000 594100 360000 800 L +405000 340900 405000 344100 800 L +403400 342500 406600 342500 800 L +15000 -102850 15000 -99650 800 L +13400 -101250 16600 -101250 800 L +135000 -105000 135000 -104250 600 L +135000 -104250 136500 -102750 600 L +136500 -102750 138000 -104250 600 L +138000 -105000 138000 -104250 600 L +136500 -102750 136500 -99000 600 L +139801 -102000 142051 -102000 600 L +139801 -99000 142801 -99000 600 L +139801 -105000 139801 -99000 600 L +139801 -105000 142801 -105000 600 L +147603 -105000 148353 -104250 600 L +145353 -105000 147603 -105000 600 L +144603 -104250 145353 -105000 600 L +144603 -104250 144603 -102750 600 L +144603 -102750 145353 -102000 600 L +145353 -102000 147603 -102000 600 L +147603 -102000 148353 -101250 600 L +148353 -101250 148353 -99750 600 L +147603 -99000 148353 -99750 600 L +145353 -99000 147603 -99000 600 L +144603 -99750 145353 -99000 600 L +135000 -95749 150154 -95749 800 L +98000 -102000 101000 -105000 600 L +98000 -102000 101750 -102000 600 L +101000 -105000 101000 -99000 600 L +103551 -102000 106551 -105000 600 L +103551 -102000 107301 -102000 600 L +106551 -105000 106551 -99000 600 L +109103 -99000 112103 -102000 600 L +112103 -104250 112103 -102000 600 L +111353 -105000 112103 -104250 600 L +109853 -105000 111353 -105000 600 L +109103 -104250 109853 -105000 600 L +109103 -104250 109103 -102750 600 L +109103 -102750 109853 -102000 600 L +109853 -102000 112103 -102000 600 L +98000 -95749 113904 -95749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -99750 45750 -99000 600 L +45000 -104250 45000 -99750 600 L +45000 -104250 45750 -105000 600 L +45750 -105000 47250 -105000 600 L +47250 -105000 48000 -104250 600 L +48000 -104250 48000 -99750 600 L +47250 -99000 48000 -99750 600 L +45750 -99000 47250 -99000 600 L +45000 -100500 48000 -103500 600 L +49801 -99000 50551 -99000 600 L +52353 -99750 53103 -99000 600 L +52353 -104250 52353 -99750 600 L +52353 -104250 53103 -105000 600 L +53103 -105000 54603 -105000 600 L +54603 -105000 55353 -104250 600 L +55353 -104250 55353 -99750 600 L +54603 -99000 55353 -99750 600 L +53103 -99000 54603 -99000 600 L +52353 -100500 55353 -103500 600 L +57154 -104250 57904 -105000 600 L +57904 -105000 59404 -105000 600 L +59404 -105000 60154 -104250 600 L +60154 -104250 60154 -99750 600 L +59404 -99000 60154 -99750 600 L +57904 -99000 59404 -99000 600 L +57154 -99750 57904 -99000 600 L +57904 -102000 60154 -102000 600 L +61956 -105000 64956 -105000 600 L +61956 -105000 61956 -102000 600 L +61956 -102000 62706 -102750 600 L +62706 -102750 64206 -102750 600 L +64206 -102750 64956 -102000 600 L +64956 -102000 64956 -99750 600 L +64206 -99000 64956 -99750 600 L +62706 -99000 64206 -99000 600 L +61956 -99750 62706 -99000 600 L +45000 -95749 66757 -95749 800 L +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +252500 287500 252500 289100 800 L +252500 287500 253886 286700 800 L +252500 287500 251114 286700 800 L +487500 107500 487500 109100 800 L +487500 107500 488886 106700 800 L +487500 107500 486114 106700 800 L +620000 52500 620000 54100 800 L +620000 52500 621386 51700 800 L +620000 52500 618614 51700 800 L +622500 87500 622500 89100 800 L +622500 87500 623886 86700 800 L +622500 87500 621114 86700 800 L +537500 107500 537500 109100 800 L +537500 107500 538886 106700 800 L +537500 107500 536114 106700 800 L +637500 172500 637500 174100 800 L +637500 172500 638886 171700 800 L +637500 172500 636114 171700 800 L +262500 172500 262500 174100 800 L +262500 172500 263886 171700 800 L +262500 172500 261114 171700 800 L +597500 65000 597500 66600 800 L +597500 65000 598886 64200 800 L +597500 65000 596114 64200 800 L +205000 82500 205000 84100 800 L +205000 82500 206386 81700 800 L +205000 82500 203614 81700 800 L +402500 235000 402500 236600 800 L +402500 235000 403886 234200 800 L +402500 235000 401114 234200 800 L +295000 130000 295000 131600 800 L +295000 130000 296386 129200 800 L +295000 130000 293614 129200 800 L +335000 52500 335000 54100 800 L +335000 52500 336386 51700 800 L +335000 52500 333614 51700 800 L +527500 22500 527500 24100 800 L +527500 22500 528886 21700 800 L +527500 22500 526114 21700 800 L +615000 15000 615000 16600 800 L +615000 15000 616386 14200 800 L +615000 15000 613614 14200 800 L +477500 57500 477500 59100 800 L +477500 57500 478886 56700 800 L +477500 57500 476114 56700 800 L +622500 35000 622500 36600 800 L +622500 35000 623886 34200 800 L +622500 35000 621114 34200 800 L +647500 20000 647500 21600 800 L +647500 20000 648886 19200 800 L +647500 20000 646114 19200 800 L +557500 15000 557500 16600 800 L +557500 15000 558886 14200 800 L +557500 15000 556114 14200 800 L +502500 15000 502500 16600 800 L +502500 15000 503886 14200 800 L +502500 15000 501114 14200 800 L +547500 142500 547500 144100 800 L +547500 142500 548886 141700 800 L +547500 142500 546114 141700 800 L +610000 142500 610000 144100 800 L +610000 142500 611386 141700 800 L +610000 142500 608614 141700 800 L +615000 130000 615000 131600 800 L +615000 130000 616386 129200 800 L +615000 130000 613614 129200 800 L +555000 135000 555000 136600 800 L +555000 135000 556386 134200 800 L +555000 135000 553614 134200 800 L +195000 57500 195000 59100 800 L +195000 57500 196386 56700 800 L +195000 57500 193614 56700 800 L +242500 360000 242500 361600 800 L +242500 360000 243886 359200 800 L +242500 360000 241114 359200 800 L +210000 67500 210000 69100 800 L +210000 67500 211386 66700 800 L +210000 67500 208614 66700 800 L +115000 112500 115000 114100 800 L +115000 112500 116386 111700 800 L +115000 112500 113614 111700 800 L +507500 107500 507500 109100 800 L +507500 107500 508886 106700 800 L +507500 107500 506114 106700 800 L +417500 135000 417500 136600 800 L +417500 135000 418886 134200 800 L +417500 135000 416114 134200 800 L +200000 62500 200000 64100 800 L +200000 62500 201386 61700 800 L +200000 62500 198614 61700 800 L +512500 80000 512500 81600 800 L +512500 80000 513886 79200 800 L +512500 80000 511114 79200 800 L +557500 237500 557500 239100 800 L +557500 237500 558886 236700 800 L +557500 237500 556114 236700 800 L +447500 30000 447500 31600 800 L +447500 30000 448886 29200 800 L +447500 30000 446114 29200 800 L +355000 130000 355000 131600 800 L +355000 130000 356386 129200 800 L +355000 130000 353614 129200 800 L +95000 245000 95000 246600 800 L +95000 245000 96386 244200 800 L +95000 245000 93614 244200 800 L +115000 245000 115000 246600 800 L +115000 245000 116386 244200 800 L +115000 245000 113614 244200 800 L +582500 285000 582500 286600 800 L +582500 285000 583886 284200 800 L +582500 285000 581114 284200 800 L +110000 367500 110000 369100 800 L +110000 367500 111386 366700 800 L +110000 367500 108614 366700 800 L +182500 385000 182500 386600 800 L +182500 385000 183886 384200 800 L +182500 385000 181114 384200 800 L +252500 385000 252500 386600 800 L +252500 385000 253886 384200 800 L +252500 385000 251114 384200 800 L +192500 360000 192500 361600 800 L +192500 360000 193886 359200 800 L +192500 360000 191114 359200 800 L +417500 107500 417500 109100 800 L +417500 107500 418886 106700 800 L +417500 107500 416114 106700 800 L +447500 107500 447500 109100 800 L +447500 107500 448886 106700 800 L +447500 107500 446114 106700 800 L +472500 107500 472500 109100 800 L +472500 107500 473886 106700 800 L +472500 107500 471114 106700 800 L +467500 15000 467500 16600 800 L +467500 15000 468886 14200 800 L +467500 15000 466114 14200 800 L +255000 120000 255000 121600 800 L +255000 120000 256386 119200 800 L +255000 120000 253614 119200 800 L +265000 120000 265000 121600 800 L +265000 120000 266386 119200 800 L +265000 120000 263614 119200 800 L +265000 130000 265000 131600 800 L +265000 130000 266386 129200 800 L +265000 130000 263614 129200 800 L +250000 130000 250000 131600 800 L +250000 130000 251386 129200 800 L +250000 130000 248614 129200 800 L +260000 105000 260000 106600 800 L +260000 105000 261386 104200 800 L +260000 105000 258614 104200 800 L +245000 105000 245000 106600 800 L +245000 105000 246386 104200 800 L +245000 105000 243614 104200 800 L +285000 120000 285000 121600 800 L +285000 120000 286386 119200 800 L +285000 120000 283614 119200 800 L +300000 120000 300000 121600 800 L +300000 120000 301386 119200 800 L +300000 120000 298614 119200 800 L +290000 125000 290000 126600 800 L +290000 125000 291386 124200 800 L +290000 125000 288614 124200 800 L +310000 125000 310000 126600 800 L +310000 125000 311386 124200 800 L +310000 125000 308614 124200 800 L +295000 137500 295000 139100 800 L +295000 137500 296386 136700 800 L +295000 137500 293614 136700 800 L +322500 137500 322500 139100 800 L +322500 137500 323886 136700 800 L +322500 137500 321114 136700 800 L +145000 137500 145000 139100 800 L +145000 137500 146386 136700 800 L +145000 137500 143614 136700 800 L +155000 125000 155000 126600 800 L +155000 125000 156386 124200 800 L +155000 125000 153614 124200 800 L +160000 100000 160000 101600 800 L +160000 100000 161386 99200 800 L +160000 100000 158614 99200 800 L +300000 100000 300000 101600 800 L +300000 100000 301386 99200 800 L +300000 100000 298614 99200 800 L +170000 142500 170000 144100 800 L +170000 142500 171386 141700 800 L +170000 142500 168614 141700 800 L +280000 142500 280000 144100 800 L +280000 142500 281386 141700 800 L +280000 142500 278614 141700 800 L +180000 132500 180000 134100 800 L +180000 132500 181386 131700 800 L +180000 132500 178614 131700 800 L +275000 130000 275000 131600 800 L +275000 130000 276386 129200 800 L +275000 130000 273614 129200 800 L +190000 105000 190000 106600 800 L +190000 105000 191386 104200 800 L +190000 105000 188614 104200 800 L +270000 105000 270000 106600 800 L +270000 105000 271386 104200 800 L +270000 105000 268614 104200 800 L +200000 255000 200000 256600 800 L +200000 255000 201386 254200 800 L +200000 255000 198614 254200 800 L +270000 255000 270000 256600 800 L +270000 255000 271386 254200 800 L +270000 255000 268614 254200 800 L +350000 250000 350000 251600 800 L +350000 250000 351386 249200 800 L +350000 250000 348614 249200 800 L +202500 282500 202500 284100 800 L +202500 282500 203886 281700 800 L +202500 282500 201114 281700 800 L +220000 282500 220000 284100 800 L +220000 282500 221386 281700 800 L +220000 282500 218614 281700 800 L +257500 250000 257500 251600 800 L +257500 250000 258886 249200 800 L +257500 250000 256114 249200 800 L +210000 250000 210000 251600 800 L +210000 250000 211386 249200 800 L +210000 250000 208614 249200 800 L +257500 197500 257500 199100 800 L +257500 197500 258886 196700 800 L +257500 197500 256114 196700 800 L +300000 212500 300000 214100 800 L +300000 212500 301386 211700 800 L +300000 212500 298614 211700 800 L +215000 212500 215000 214100 800 L +215000 212500 216386 211700 800 L +215000 212500 213614 211700 800 L +310000 217500 310000 219100 800 L +310000 217500 311386 216700 800 L +310000 217500 308614 216700 800 L +225000 217500 225000 219100 800 L +225000 217500 226386 216700 800 L +225000 217500 223614 216700 800 L +225000 195000 225000 196600 800 L +225000 195000 226386 194200 800 L +225000 195000 223614 194200 800 L +315000 192500 315000 194100 800 L +315000 192500 316386 191700 800 L +315000 192500 313614 191700 800 L +150000 187500 150000 189100 800 L +150000 187500 151386 186700 800 L +150000 187500 148614 186700 800 L +325000 187500 325000 189100 800 L +325000 187500 326386 186700 800 L +325000 187500 323614 186700 800 L +235000 187500 235000 189100 800 L +235000 187500 236386 186700 800 L +235000 187500 233614 186700 800 L +360000 252500 360000 254100 800 L +360000 252500 361386 251700 800 L +360000 252500 358614 251700 800 L +292500 222500 292500 224100 800 L +292500 222500 293886 221700 800 L +292500 222500 291114 221700 800 L +170000 217500 170000 219100 800 L +170000 217500 171386 216700 800 L +170000 217500 168614 216700 800 L +210000 230000 210000 231600 800 L +210000 230000 211386 229200 800 L +210000 230000 208614 229200 800 L +390000 225000 390000 226600 800 L +390000 225000 391386 224200 800 L +390000 225000 388614 224200 800 L +257500 277500 257500 279100 800 L +257500 277500 258886 276700 800 L +257500 277500 256114 276700 800 L +385000 277500 385000 279100 800 L +385000 277500 386386 276700 800 L +385000 277500 383614 276700 800 L +155000 282500 155000 284100 800 L +155000 282500 156386 281700 800 L +155000 282500 153614 281700 800 L +340000 282500 340000 284100 800 L +340000 282500 341386 281700 800 L +340000 282500 338614 281700 800 L +230000 182500 230000 184100 800 L +230000 182500 231386 181700 800 L +230000 182500 228614 181700 800 L +245000 182500 245000 184100 800 L +245000 182500 246386 181700 800 L +245000 182500 243614 181700 800 L +227500 90000 227500 91600 800 L +227500 90000 228886 89200 800 L +227500 90000 226114 89200 800 L +255000 90000 255000 91600 800 L +255000 90000 256386 89200 800 L +255000 90000 253614 89200 800 L +250000 172500 250000 174100 800 L +250000 172500 251386 171700 800 L +250000 172500 248614 171700 800 L +190000 175000 190000 176600 800 L +190000 175000 191386 174200 800 L +190000 175000 188614 174200 800 L +180000 170000 180000 171600 800 L +180000 170000 181386 169200 800 L +180000 170000 178614 169200 800 L +430000 197500 430000 199100 800 L +430000 197500 431386 196700 800 L +430000 197500 428614 196700 800 L +290000 265000 290000 266600 800 L +290000 265000 291386 264200 800 L +290000 265000 288614 264200 800 L +480000 265000 480000 266600 800 L +480000 265000 481386 264200 800 L +480000 265000 478614 264200 800 L +462500 282500 462500 284100 800 L +462500 282500 463886 281700 800 L +462500 282500 461114 281700 800 L +300000 177500 300000 179100 800 L +300000 177500 301386 176700 800 L +300000 177500 298614 176700 800 L +485000 177500 485000 179100 800 L +485000 177500 486386 176700 800 L +485000 177500 483614 176700 800 L +305000 85000 305000 86600 800 L +305000 85000 306386 84200 800 L +305000 85000 303614 84200 800 L +275000 85000 275000 86600 800 L +275000 85000 276386 84200 800 L +275000 85000 273614 84200 800 L +330000 80000 330000 81600 800 L +330000 80000 331386 79200 800 L +330000 80000 328614 79200 800 L +285000 80000 285000 81600 800 L +285000 80000 286386 79200 800 L +285000 80000 283614 79200 800 L +350000 220000 350000 221600 800 L +350000 220000 351386 219200 800 L +350000 220000 348614 219200 800 L +365000 220000 365000 221600 800 L +365000 220000 366386 219200 800 L +365000 220000 363614 219200 800 L +355000 385000 355000 386600 800 L +355000 385000 356386 384200 800 L +355000 385000 353614 384200 800 L +375000 360000 375000 361600 800 L +375000 360000 376386 359200 800 L +375000 360000 373614 359200 800 L +107500 147500 107500 149100 800 L +107500 147500 108886 146700 800 L +107500 147500 106114 146700 800 L +122000 160500 122000 162100 800 L +122000 160500 123386 159700 800 L +122000 160500 120614 159700 800 L +450000 182500 450000 184100 800 L +450000 182500 451386 181700 800 L +450000 182500 448614 181700 800 L +262500 352500 262500 354100 800 L +262500 352500 263886 351700 800 L +262500 352500 261114 351700 800 L +327500 352500 327500 354100 800 L +327500 352500 328886 351700 800 L +327500 352500 326114 351700 800 L +400000 225000 400000 226600 800 L +400000 225000 401386 224200 800 L +400000 225000 398614 224200 800 L +405000 215000 405000 216600 800 L +405000 215000 406386 214200 800 L +405000 215000 403614 214200 800 L +410000 205000 410000 206600 800 L +410000 205000 411386 204200 800 L +410000 205000 408614 204200 800 L +105000 270000 105000 271600 800 L +105000 270000 106386 269200 800 L +105000 270000 103614 269200 800 L +415000 272500 415000 274100 800 L +415000 272500 416386 271700 800 L +415000 272500 413614 271700 800 L +402500 250000 402500 251600 800 L +402500 250000 403886 249200 800 L +402500 250000 401114 249200 800 L +222500 310000 222500 311600 800 L +222500 310000 223886 309200 800 L +222500 310000 221114 309200 800 L +402500 310000 402500 311600 800 L +402500 310000 403886 309200 800 L +402500 310000 401114 309200 800 L +520000 260000 520000 261600 800 L +520000 260000 521386 259200 800 L +520000 260000 518614 259200 800 L +520000 337500 520000 339100 800 L +520000 337500 521386 336700 800 L +520000 337500 518614 336700 800 L +210000 322500 210000 324100 800 L +210000 322500 211386 321700 800 L +210000 322500 208614 321700 800 L +570000 322500 570000 324100 800 L +570000 322500 571386 321700 800 L +570000 322500 568614 321700 800 L +570000 245000 570000 246600 800 L +570000 245000 571386 244200 800 L +570000 245000 568614 244200 800 L +530000 327500 530000 329100 800 L +530000 327500 531386 326700 800 L +530000 327500 528614 326700 800 L +282500 330000 282500 331600 800 L +282500 330000 283886 329200 800 L +282500 330000 281114 329200 800 L +327500 305000 327500 306600 800 L +327500 305000 328886 304200 800 L +327500 305000 326114 304200 800 L +49500 330000 49500 331600 800 L +49500 330000 50886 329200 800 L +49500 330000 48114 329200 800 L +76500 257000 76500 258600 800 L +76500 257000 77886 256200 800 L +76500 257000 75114 256200 800 L +90500 305500 90500 307100 800 L +90500 305500 91886 304700 800 L +90500 305500 89114 304700 800 L +15000 -116250 15000 -114650 800 L +15000 -116250 16386 -117050 800 L +15000 -116250 13614 -117050 800 L +135000 -120000 135000 -119250 600 L +135000 -119250 136500 -117750 600 L +136500 -117750 138000 -119250 600 L +138000 -120000 138000 -119250 600 L +136500 -117750 136500 -114000 600 L +139801 -117000 142051 -117000 600 L +139801 -114000 142801 -114000 600 L +139801 -120000 139801 -114000 600 L +139801 -120000 142801 -120000 600 L +147603 -120000 148353 -119250 600 L +145353 -120000 147603 -120000 600 L +144603 -119250 145353 -120000 600 L +144603 -119250 144603 -117750 600 L +144603 -117750 145353 -117000 600 L +145353 -117000 147603 -117000 600 L +147603 -117000 148353 -116250 600 L +148353 -116250 148353 -114750 600 L +147603 -114000 148353 -114750 600 L +145353 -114000 147603 -114000 600 L +144603 -114750 145353 -114000 600 L +135000 -110749 150154 -110749 800 L +98750 -114000 100250 -114000 600 L +99500 -120000 99500 -114000 600 L +98000 -118500 99500 -120000 600 L +102051 -119250 102801 -120000 600 L +102801 -120000 104301 -120000 600 L +104301 -120000 105051 -119250 600 L +105051 -119250 105051 -114750 600 L +104301 -114000 105051 -114750 600 L +102801 -114000 104301 -114000 600 L +102051 -114750 102801 -114000 600 L +102801 -117000 105051 -117000 600 L +106853 -114750 107603 -114000 600 L +106853 -116250 106853 -114750 600 L +106853 -116250 107603 -117000 600 L +107603 -117000 109103 -117000 600 L +109103 -117000 109853 -116250 600 L +109853 -116250 109853 -114750 600 L +109103 -114000 109853 -114750 600 L +107603 -114000 109103 -114000 600 L +106853 -117750 107603 -117000 600 L +106853 -119250 106853 -117750 600 L +106853 -119250 107603 -120000 600 L +107603 -120000 109103 -120000 600 L +109103 -120000 109853 -119250 600 L +109853 -119250 109853 -117750 600 L +109103 -117000 109853 -117750 600 L +98000 -110749 111654 -110749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +45000 -114750 45750 -114000 600 L +45000 -119250 45000 -114750 600 L +45000 -119250 45750 -120000 600 L +45750 -120000 47250 -120000 600 L +47250 -120000 48000 -119250 600 L +48000 -119250 48000 -114750 600 L +47250 -114000 48000 -114750 600 L +45750 -114000 47250 -114000 600 L +45000 -115500 48000 -118500 600 L +49801 -114000 50551 -114000 600 L +52353 -114750 53103 -114000 600 L +52353 -119250 52353 -114750 600 L +52353 -119250 53103 -120000 600 L +53103 -120000 54603 -120000 600 L +54603 -120000 55353 -119250 600 L +55353 -119250 55353 -114750 600 L +54603 -114000 55353 -114750 600 L +53103 -114000 54603 -114000 600 L +52353 -115500 55353 -118500 600 L +57154 -119250 57904 -120000 600 L +57904 -120000 60154 -120000 600 L +60154 -120000 60904 -119250 600 L +60904 -119250 60904 -117750 600 L +57154 -114000 60904 -117750 600 L +57154 -114000 60904 -114000 600 L +62706 -114750 63456 -114000 600 L +62706 -119250 62706 -114750 600 L +62706 -119250 63456 -120000 600 L +63456 -120000 64956 -120000 600 L +64956 -120000 65706 -119250 600 L +65706 -119250 65706 -114750 600 L +64956 -114000 65706 -114750 600 L +63456 -114000 64956 -114000 600 L +62706 -115500 65706 -118500 600 L +45000 -110749 67507 -110749 800 L +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +3000 -135000 3750 -134250 600 L +750 -135000 3000 -135000 600 L +0 -134250 750 -135000 600 L +0 -134250 0 -132750 600 L +0 -132750 750 -132000 600 L +750 -132000 3000 -132000 600 L +3000 -132000 3750 -131250 600 L +3750 -131250 3750 -129750 600 L +3000 -129000 3750 -129750 600 L +750 -129000 3000 -129000 600 L +0 -129750 750 -129000 600 L +5551 -132000 5551 -129750 600 L +5551 -129750 6301 -129000 600 L +8551 -132000 8551 -127500 600 L +7801 -126750 8551 -127500 600 L +6301 -126750 7801 -126750 600 L +5551 -127500 6301 -126750 600 L +6301 -129000 7801 -129000 600 L +7801 -129000 8551 -129750 600 L +11103 -131250 11103 -129000 600 L +11103 -131250 11853 -132000 600 L +11853 -132000 12603 -132000 600 L +12603 -132000 13353 -131250 600 L +13353 -131250 13353 -129000 600 L +13353 -131250 14103 -132000 600 L +14103 -132000 14853 -132000 600 L +14853 -132000 15603 -131250 600 L +15603 -131250 15603 -129000 600 L +10353 -132000 11103 -131250 600 L +17404 -135000 17404 -129000 600 L +17404 -129750 18154 -129000 600 L +18154 -129000 19654 -129000 600 L +19654 -129000 20404 -129750 600 L +20404 -131250 20404 -129750 600 L +19654 -132000 20404 -131250 600 L +18154 -132000 19654 -132000 600 L +17404 -131250 18154 -132000 600 L +22206 -131250 22206 -129750 600 L +22206 -131250 22956 -132000 600 L +22956 -132000 24456 -132000 600 L +24456 -132000 25206 -131250 600 L +25206 -131250 25206 -129750 600 L +24456 -129000 25206 -129750 600 L +22956 -129000 24456 -129000 600 L +22206 -129750 22956 -129000 600 L +27007 -135000 27007 -129750 600 L +27007 -129750 27757 -129000 600 L +41750 -135000 41750 -129000 600 L +44000 -135000 44750 -134250 600 L +44750 -134250 44750 -129750 600 L +44000 -129000 44750 -129750 600 L +41000 -129000 44000 -129000 600 L +41000 -135000 44000 -135000 600 L +46551 -133500 46551 -132750 600 L +46551 -131250 46551 -129000 600 L +50303 -132000 51053 -131250 600 L +48803 -132000 50303 -132000 600 L +48053 -131250 48803 -132000 600 L +48053 -131250 48053 -129750 600 L +48053 -129750 48803 -129000 600 L +51053 -132000 51053 -129750 600 L +51053 -129750 51803 -129000 600 L +48803 -129000 50303 -129000 600 L +50303 -129000 51053 -129750 600 L +54354 -131250 54354 -129000 600 L +54354 -131250 55104 -132000 600 L +55104 -132000 55854 -132000 600 L +55854 -132000 56604 -131250 600 L +56604 -131250 56604 -129000 600 L +56604 -131250 57354 -132000 600 L +57354 -132000 58104 -132000 600 L +58104 -132000 58854 -131250 600 L +58854 -131250 58854 -129000 600 L +53604 -132000 54354 -131250 600 L +60656 -129000 61406 -129000 600 L +65907 -129750 66657 -129000 600 L +65907 -134250 66657 -135000 600 L +65907 -134250 65907 -129750 600 L +68459 -135000 69959 -135000 600 L +69209 -135000 69209 -129000 600 L +68459 -129000 69959 -129000 600 L +72510 -131250 72510 -129000 600 L +72510 -131250 73260 -132000 600 L +73260 -132000 74010 -132000 600 L +74010 -132000 74760 -131250 600 L +74760 -131250 74760 -129000 600 L +71760 -132000 72510 -131250 600 L +77312 -132000 79562 -132000 600 L +76562 -131250 77312 -132000 600 L +76562 -131250 76562 -129750 600 L +76562 -129750 77312 -129000 600 L +77312 -129000 79562 -129000 600 L +81363 -135000 81363 -129000 600 L +81363 -131250 82113 -132000 600 L +82113 -132000 83613 -132000 600 L +83613 -132000 84363 -131250 600 L +84363 -131250 84363 -129000 600 L +86165 -135000 86915 -134250 600 L +86915 -134250 86915 -129750 600 L +86165 -129000 86915 -129750 600 L +95750 -129000 98000 -129000 600 L +95000 -129750 95750 -129000 600 L +95000 -134250 95000 -129750 600 L +95000 -134250 95750 -135000 600 L +95750 -135000 98000 -135000 600 L +99801 -131250 99801 -129750 600 L +99801 -131250 100551 -132000 600 L +100551 -132000 102051 -132000 600 L +102051 -132000 102801 -131250 600 L +102801 -131250 102801 -129750 600 L +102051 -129000 102801 -129750 600 L +100551 -129000 102051 -129000 600 L +99801 -129750 100551 -129000 600 L +104603 -132000 104603 -129750 600 L +104603 -129750 105353 -129000 600 L +105353 -129000 106853 -129000 600 L +106853 -129000 107603 -129750 600 L +107603 -132000 107603 -129750 600 L +110154 -131250 110154 -129000 600 L +110154 -131250 110904 -132000 600 L +110904 -132000 111654 -132000 600 L +111654 -132000 112404 -131250 600 L +112404 -131250 112404 -129000 600 L +109404 -132000 110154 -131250 600 L +114956 -135000 114956 -129750 600 L +114956 -129750 115706 -129000 600 L +114206 -132750 115706 -132750 600 L +130750 -135000 130750 -129000 600 L +130000 -135000 133000 -135000 600 L +133000 -135000 133750 -134250 600 L +133750 -134250 133750 -132750 600 L +133000 -132000 133750 -132750 600 L +130750 -132000 133000 -132000 600 L +135551 -135000 135551 -129750 600 L +135551 -129750 136301 -129000 600 L +140053 -132000 140803 -131250 600 L +138553 -132000 140053 -132000 600 L +137803 -131250 138553 -132000 600 L +137803 -131250 137803 -129750 600 L +137803 -129750 138553 -129000 600 L +140803 -132000 140803 -129750 600 L +140803 -129750 141553 -129000 600 L +138553 -129000 140053 -129000 600 L +140053 -129000 140803 -129750 600 L +144104 -135000 144104 -129750 600 L +144104 -129750 144854 -129000 600 L +143354 -132750 144854 -132750 600 L +147106 -129000 149356 -129000 600 L +146356 -129750 147106 -129000 600 L +146356 -131250 146356 -129750 600 L +146356 -131250 147106 -132000 600 L +147106 -132000 148606 -132000 600 L +148606 -132000 149356 -131250 600 L +146356 -130500 149356 -130500 600 L +149356 -131250 149356 -130500 600 L +154157 -135000 154157 -129000 600 L +153407 -129000 154157 -129750 600 L +151907 -129000 153407 -129000 600 L +151157 -129750 151907 -129000 600 L +151157 -131250 151157 -129750 600 L +151157 -131250 151907 -132000 600 L +151907 -132000 153407 -132000 600 L +153407 -132000 154157 -131250 600 L +157459 -132000 157459 -131250 600 L +157459 -129750 157459 -129000 600 L +155959 -134250 155959 -133500 600 L +155959 -134250 156709 -135000 600 L +156709 -135000 158209 -135000 600 L +158209 -135000 158959 -134250 600 L +158959 -134250 158959 -133500 600 L +157459 -132000 158959 -133500 600 L +0 -150000 3000 -150000 600 L +1500 -150000 1500 -144000 600 L +4801 -150000 4801 -144000 600 L +4801 -146250 5551 -147000 600 L +5551 -147000 7051 -147000 600 L +7051 -147000 7801 -146250 600 L +7801 -146250 7801 -144000 600 L +10353 -144000 12603 -144000 600 L +9603 -144750 10353 -144000 600 L +9603 -146250 9603 -144750 600 L +9603 -146250 10353 -147000 600 L +10353 -147000 11853 -147000 600 L +11853 -147000 12603 -146250 600 L +9603 -145500 12603 -145500 600 L +12603 -146250 12603 -145500 600 L +15154 -146250 15154 -144000 600 L +15154 -146250 15904 -147000 600 L +15904 -147000 17404 -147000 600 L +14404 -147000 15154 -146250 600 L +19956 -144000 22206 -144000 600 L +19206 -144750 19956 -144000 600 L +19206 -146250 19206 -144750 600 L +19206 -146250 19956 -147000 600 L +19956 -147000 21456 -147000 600 L +21456 -147000 22206 -146250 600 L +19206 -145500 22206 -145500 600 L +22206 -146250 22206 -145500 600 L +28957 -147000 29707 -146250 600 L +27457 -147000 28957 -147000 600 L +26707 -146250 27457 -147000 600 L +26707 -146250 26707 -144750 600 L +26707 -144750 27457 -144000 600 L +29707 -147000 29707 -144750 600 L +29707 -144750 30457 -144000 600 L +27457 -144000 28957 -144000 600 L +28957 -144000 29707 -144750 600 L +33009 -146250 33009 -144000 600 L +33009 -146250 33759 -147000 600 L +33759 -147000 35259 -147000 600 L +32259 -147000 33009 -146250 600 L +37810 -144000 40060 -144000 600 L +37060 -144750 37810 -144000 600 L +37060 -146250 37060 -144750 600 L +37060 -146250 37810 -147000 600 L +37810 -147000 39310 -147000 600 L +39310 -147000 40060 -146250 600 L +37060 -145500 40060 -145500 600 L +40060 -146250 40060 -145500 600 L +44562 -144750 45312 -144000 600 L +44562 -146250 44562 -144750 600 L +44562 -146250 45312 -147000 600 L +45312 -147000 46812 -147000 600 L +46812 -147000 47562 -146250 600 L +47562 -146250 47562 -144750 600 L +46812 -144000 47562 -144750 600 L +45312 -144000 46812 -144000 600 L +44562 -147750 45312 -147000 600 L +44562 -149250 44562 -147750 600 L +44562 -149250 45312 -150000 600 L +45312 -150000 46812 -150000 600 L +46812 -150000 47562 -149250 600 L +47562 -149250 47562 -147750 600 L +46812 -147000 47562 -147750 600 L +55063 -150000 55063 -144000 600 L +54313 -144000 55063 -144750 600 L +52813 -144000 54313 -144000 600 L +52063 -144750 52813 -144000 600 L +52063 -146250 52063 -144750 600 L +52063 -146250 52813 -147000 600 L +52813 -147000 54313 -147000 600 L +54313 -147000 55063 -146250 600 L +56865 -148500 56865 -147750 600 L +56865 -146250 56865 -144000 600 L +59116 -149250 59116 -144000 600 L +59116 -149250 59866 -150000 600 L +59866 -150000 60616 -150000 600 L +58366 -147000 59866 -147000 600 L +62868 -149250 62868 -144000 600 L +62868 -149250 63618 -150000 600 L +63618 -150000 64368 -150000 600 L +62118 -147000 63618 -147000 600 L +66619 -144000 68869 -144000 600 L +65869 -144750 66619 -144000 600 L +65869 -146250 65869 -144750 600 L +65869 -146250 66619 -147000 600 L +66619 -147000 68119 -147000 600 L +68119 -147000 68869 -146250 600 L +65869 -145500 68869 -145500 600 L +68869 -146250 68869 -145500 600 L +71421 -146250 71421 -144000 600 L +71421 -146250 72171 -147000 600 L +72171 -147000 73671 -147000 600 L +70671 -147000 71421 -146250 600 L +76222 -144000 78472 -144000 600 L +75472 -144750 76222 -144000 600 L +75472 -146250 75472 -144750 600 L +75472 -146250 76222 -147000 600 L +76222 -147000 77722 -147000 600 L +77722 -147000 78472 -146250 600 L +75472 -145500 78472 -145500 600 L +78472 -146250 78472 -145500 600 L +81024 -146250 81024 -144000 600 L +81024 -146250 81774 -147000 600 L +81774 -147000 82524 -147000 600 L +82524 -147000 83274 -146250 600 L +83274 -146250 83274 -144000 600 L +80274 -147000 81024 -146250 600 L +85825 -150000 85825 -144750 600 L +85825 -144750 86575 -144000 600 L +85075 -147750 86575 -147750 600 L +93777 -150000 93777 -144000 600 L +93027 -144000 93777 -144750 600 L +91527 -144000 93027 -144000 600 L +90777 -144750 91527 -144000 600 L +90777 -146250 90777 -144750 600 L +90777 -146250 91527 -147000 600 L +91527 -147000 93027 -147000 600 L +93027 -147000 93777 -146250 600 L +96328 -146250 96328 -144000 600 L +96328 -146250 97078 -147000 600 L +97078 -147000 98578 -147000 600 L +95578 -147000 96328 -146250 600 L +100380 -148500 100380 -147750 600 L +100380 -146250 100380 -144000 600 L +101881 -150000 101881 -144750 600 L +101881 -144750 102631 -144000 600 L +104133 -150000 104133 -144750 600 L +104133 -144750 104883 -144000 600 L +109834 -144000 112084 -144000 600 L +112084 -144000 112834 -144750 600 L +112084 -145500 112834 -144750 600 L +109834 -145500 112084 -145500 600 L +109084 -146250 109834 -145500 600 L +109084 -146250 109834 -147000 600 L +109834 -147000 112084 -147000 600 L +112084 -147000 112834 -146250 600 L +109084 -144750 109834 -144000 600 L +114636 -148500 114636 -147750 600 L +114636 -146250 114636 -144000 600 L +116137 -147000 119137 -147000 600 L +116137 -144000 119137 -147000 600 L +116137 -144000 119137 -144000 600 L +121689 -144000 123939 -144000 600 L +120939 -144750 121689 -144000 600 L +120939 -146250 120939 -144750 600 L +120939 -146250 121689 -147000 600 L +121689 -147000 123189 -147000 600 L +123189 -147000 123939 -146250 600 L +120939 -145500 123939 -145500 600 L +123939 -146250 123939 -145500 600 L +126490 -144000 128740 -144000 600 L +128740 -144000 129490 -144750 600 L +128740 -145500 129490 -144750 600 L +126490 -145500 128740 -145500 600 L +125740 -146250 126490 -145500 600 L +125740 -146250 126490 -147000 600 L +126490 -147000 128740 -147000 600 L +128740 -147000 129490 -146250 600 L +125740 -144750 126490 -144000 600 L +133992 -147000 133992 -144750 600 L +133992 -144750 134742 -144000 600 L +134742 -144000 136242 -144000 600 L +136242 -144000 136992 -144750 600 L +136992 -147000 136992 -144750 600 L +139543 -144000 141793 -144000 600 L +141793 -144000 142543 -144750 600 L +141793 -145500 142543 -144750 600 L +139543 -145500 141793 -145500 600 L +138793 -146250 139543 -145500 600 L +138793 -146250 139543 -147000 600 L +139543 -147000 141793 -147000 600 L +141793 -147000 142543 -146250 600 L +138793 -144750 139543 -144000 600 L +145095 -144000 147345 -144000 600 L +144345 -144750 145095 -144000 600 L +144345 -146250 144345 -144750 600 L +144345 -146250 145095 -147000 600 L +145095 -147000 146595 -147000 600 L +146595 -147000 147345 -146250 600 L +144345 -145500 147345 -145500 600 L +147345 -146250 147345 -145500 600 L +152146 -150000 152146 -144000 600 L +151396 -144000 152146 -144750 600 L +149896 -144000 151396 -144000 600 L +149146 -144750 149896 -144000 600 L +149146 -146250 149146 -144750 600 L +149146 -146250 149896 -147000 600 L +149896 -147000 151396 -147000 600 L +151396 -147000 152146 -146250 600 L +156648 -148500 156648 -147750 600 L +156648 -146250 156648 -144000 600 L +158899 -146250 158899 -144000 600 L +158899 -146250 159649 -147000 600 L +159649 -147000 160399 -147000 600 L +160399 -147000 161149 -146250 600 L +161149 -146250 161149 -144000 600 L +158149 -147000 158899 -146250 600 L +166401 -150000 166401 -144750 600 L +166401 -144750 167151 -144000 600 L +165651 -147750 167151 -147750 600 L +168652 -150000 168652 -144000 600 L +168652 -146250 169402 -147000 600 L +169402 -147000 170902 -147000 600 L +170902 -147000 171652 -146250 600 L +171652 -146250 171652 -144000 600 L +173454 -148500 173454 -147750 600 L +173454 -146250 173454 -144000 600 L +175705 -144000 177955 -144000 600 L +177955 -144000 178705 -144750 600 L +177955 -145500 178705 -144750 600 L +175705 -145500 177955 -145500 600 L +174955 -146250 175705 -145500 600 L +174955 -146250 175705 -147000 600 L +175705 -147000 177955 -147000 600 L +177955 -147000 178705 -146250 600 L +174955 -144750 175705 -144000 600 L +183207 -150000 183207 -144750 600 L +183207 -144750 183957 -144000 600 L +187708 -147000 188458 -146250 600 L +186208 -147000 187708 -147000 600 L +185458 -146250 186208 -147000 600 L +185458 -146250 185458 -144750 600 L +185458 -144750 186208 -144000 600 L +188458 -147000 188458 -144750 600 L +188458 -144750 189208 -144000 600 L +186208 -144000 187708 -144000 600 L +187708 -144000 188458 -144750 600 L +191010 -147000 191010 -144750 600 L +191010 -144750 191760 -144000 600 L +194010 -147000 194010 -142500 600 L +193260 -141750 194010 -142500 600 L +191760 -141750 193260 -141750 600 L +191010 -142500 191760 -141750 600 L +191760 -144000 193260 -144000 600 L +193260 -144000 194010 -144750 600 L +195811 -146250 195811 -144750 600 L +195811 -146250 196561 -147000 600 L +196561 -147000 198061 -147000 600 L +198061 -147000 198811 -146250 600 L +198811 -146250 198811 -144750 600 L +198061 -144000 198811 -144750 600 L +196561 -144000 198061 -144000 600 L +195811 -144750 196561 -144000 600 L +200613 -147000 200613 -144750 600 L +200613 -144750 201363 -144000 600 L +201363 -144000 202863 -144000 600 L +202863 -144000 203613 -144750 600 L +203613 -147000 203613 -144750 600 L +206164 -150000 206164 -144750 600 L +206164 -144750 206914 -144000 600 L +205414 -147750 206914 -147750 600 L +208416 -142500 209916 -144000 600 L +216667 -150000 217417 -149250 600 L +215167 -150000 216667 -150000 600 L +214417 -149250 215167 -150000 600 L +214417 -149250 214417 -144750 600 L +214417 -144750 215167 -144000 600 L +216667 -147000 217417 -146250 600 L +214417 -147000 216667 -147000 600 L +215167 -144000 216667 -144000 600 L +216667 -144000 217417 -144750 600 L +217417 -146250 217417 -144750 600 L +219219 -150000 222219 -150000 600 L +219219 -150000 219219 -147000 600 L +219219 -147000 219969 -147750 600 L +219969 -147750 221469 -147750 600 L +221469 -147750 222219 -147000 600 L +222219 -147000 222219 -144750 600 L +221469 -144000 222219 -144750 600 L +219969 -144000 221469 -144000 600 L +219219 -144750 219969 -144000 600 L +224020 -144750 224770 -144000 600 L +224020 -149250 224020 -144750 600 L +224020 -149250 224770 -150000 600 L +224770 -150000 226270 -150000 600 L +226270 -150000 227020 -149250 600 L +227020 -149250 227020 -144750 600 L +226270 -144000 227020 -144750 600 L +224770 -144000 226270 -144000 600 L +224020 -145500 227020 -148500 600 L +231522 -150000 231522 -144000 600 L +231522 -146250 232272 -147000 600 L +232272 -147000 233772 -147000 600 L +233772 -147000 234522 -146250 600 L +234522 -146250 234522 -144000 600 L +236323 -146250 236323 -144750 600 L +236323 -146250 237073 -147000 600 L +237073 -147000 238573 -147000 600 L +238573 -147000 239323 -146250 600 L +239323 -146250 239323 -144750 600 L +238573 -144000 239323 -144750 600 L +237073 -144000 238573 -144000 600 L +236323 -144750 237073 -144000 600 L +241125 -150000 241125 -144750 600 L +241125 -144750 241875 -144000 600 L +244126 -144000 246376 -144000 600 L +243376 -144750 244126 -144000 600 L +243376 -146250 243376 -144750 600 L +243376 -146250 244126 -147000 600 L +244126 -147000 245626 -147000 600 L +245626 -147000 246376 -146250 600 L +243376 -145500 246376 -145500 600 L +246376 -146250 246376 -145500 600 L +248928 -144000 251178 -144000 600 L +251178 -144000 251928 -144750 600 L +251178 -145500 251928 -144750 600 L +248928 -145500 251178 -145500 600 L +248178 -146250 248928 -145500 600 L +248178 -146250 248928 -147000 600 L +248928 -147000 251178 -147000 600 L +251178 -147000 251928 -146250 600 L +248178 -144750 248928 -144000 600 L +257179 -150000 257179 -144750 600 L +257179 -144750 257929 -144000 600 L +256429 -147750 257929 -147750 600 L +259431 -146250 259431 -144750 600 L +259431 -146250 260181 -147000 600 L +260181 -147000 261681 -147000 600 L +261681 -147000 262431 -146250 600 L +262431 -146250 262431 -144750 600 L +261681 -144000 262431 -144750 600 L +260181 -144000 261681 -144000 600 L +259431 -144750 260181 -144000 600 L +264982 -150000 264982 -144750 600 L +264982 -144750 265732 -144000 600 L +264232 -147750 265732 -147750 600 L +269484 -147000 270234 -146250 600 L +267984 -147000 269484 -147000 600 L +267234 -146250 267984 -147000 600 L +267234 -146250 267234 -144750 600 L +267234 -144750 267984 -144000 600 L +270234 -147000 270234 -144750 600 L +270234 -144750 270984 -144000 600 L +267984 -144000 269484 -144000 600 L +269484 -144000 270234 -144750 600 L +272785 -150000 272785 -144750 600 L +272785 -144750 273535 -144000 600 L +200000 -15000 200000 -9000 600 L +200000 -15000 202250 -12750 600 L +202250 -12750 204500 -15000 600 L +204500 -15000 204500 -9000 600 L +208551 -12000 209301 -11250 600 L +207051 -12000 208551 -12000 600 L +206301 -11250 207051 -12000 600 L +206301 -11250 206301 -9750 600 L +206301 -9750 207051 -9000 600 L +209301 -12000 209301 -9750 600 L +209301 -9750 210051 -9000 600 L +207051 -9000 208551 -9000 600 L +208551 -9000 209301 -9750 600 L +211853 -12000 214853 -9000 600 L +211853 -9000 214853 -12000 600 L +216654 -13500 216654 -12750 600 L +216654 -11250 216654 -9000 600 L +218906 -11250 218906 -9000 600 L +218906 -11250 219656 -12000 600 L +219656 -12000 220406 -12000 600 L +220406 -12000 221156 -11250 600 L +221156 -11250 221156 -9000 600 L +221156 -11250 221906 -12000 600 L +221906 -12000 222656 -12000 600 L +222656 -12000 223406 -11250 600 L +223406 -11250 223406 -9000 600 L +218156 -12000 218906 -11250 600 L +225207 -12000 225207 -9750 600 L +225207 -9750 225957 -9000 600 L +225957 -9000 227457 -9000 600 L +227457 -9000 228207 -9750 600 L +228207 -12000 228207 -9750 600 L +230759 -11250 230759 -9000 600 L +230759 -11250 231509 -12000 600 L +231509 -12000 232259 -12000 600 L +232259 -12000 233009 -11250 600 L +233009 -11250 233009 -9000 600 L +233009 -11250 233759 -12000 600 L +233759 -12000 234509 -12000 600 L +234509 -12000 235259 -11250 600 L +235259 -11250 235259 -9000 600 L +230009 -12000 230759 -11250 600 L +240510 -15000 240510 -9000 600 L +242760 -15000 243510 -14250 600 L +243510 -14250 243510 -9750 600 L +242760 -9000 243510 -9750 600 L +239760 -9000 242760 -9000 600 L +239760 -15000 242760 -15000 600 L +245312 -13500 245312 -12750 600 L +245312 -11250 245312 -9000 600 L +247563 -11250 247563 -9000 600 L +247563 -11250 248313 -12000 600 L +248313 -12000 249063 -12000 600 L +249063 -12000 249813 -11250 600 L +249813 -11250 249813 -9000 600 L +249813 -11250 250563 -12000 600 L +250563 -12000 251313 -12000 600 L +251313 -12000 252063 -11250 600 L +252063 -11250 252063 -9000 600 L +246813 -12000 247563 -11250 600 L +254615 -9000 256865 -9000 600 L +253865 -9750 254615 -9000 600 L +253865 -11250 253865 -9750 600 L +253865 -11250 254615 -12000 600 L +254615 -12000 256115 -12000 600 L +256115 -12000 256865 -11250 600 L +253865 -10500 256865 -10500 600 L +256865 -11250 256865 -10500 600 L +259416 -11250 259416 -9000 600 L +259416 -11250 260166 -12000 600 L +260166 -12000 260916 -12000 600 L +260916 -12000 261666 -11250 600 L +261666 -11250 261666 -9000 600 L +258666 -12000 259416 -11250 600 L +264218 -9000 266468 -9000 600 L +266468 -9000 267218 -9750 600 L +266468 -10500 267218 -9750 600 L +264218 -10500 266468 -10500 600 L +263468 -11250 264218 -10500 600 L +263468 -11250 264218 -12000 600 L +264218 -12000 266468 -12000 600 L +266468 -12000 267218 -11250 600 L +263468 -9750 264218 -9000 600 L +269019 -13500 269019 -12750 600 L +269019 -11250 269019 -9000 600 L +270521 -11250 270521 -9750 600 L +270521 -11250 271271 -12000 600 L +271271 -12000 272771 -12000 600 L +272771 -12000 273521 -11250 600 L +273521 -11250 273521 -9750 600 L +272771 -9000 273521 -9750 600 L +271271 -9000 272771 -9000 600 L +270521 -9750 271271 -9000 600 L +276072 -11250 276072 -9000 600 L +276072 -11250 276822 -12000 600 L +276822 -12000 277572 -12000 600 L +277572 -12000 278322 -11250 600 L +278322 -11250 278322 -9000 600 L +275322 -12000 276072 -11250 600 L +280874 -9000 283124 -9000 600 L +283124 -9000 283874 -9750 600 L +283124 -10500 283874 -9750 600 L +280874 -10500 283124 -10500 600 L +280124 -11250 280874 -10500 600 L +280124 -11250 280874 -12000 600 L +280874 -12000 283124 -12000 600 L +283124 -12000 283874 -11250 600 L +280124 -9750 280874 -9000 600 L +285675 -12750 286425 -12750 600 L +285675 -11250 286425 -11250 600 L +290927 -9000 294677 -12750 600 L +294677 -15000 294677 -12750 600 L +290927 -15000 294677 -15000 600 L +297228 -9000 298728 -9000 600 L +297978 -15000 297978 -9000 600 L +296478 -13500 297978 -15000 600 L +300530 -9750 301280 -9000 600 L +300530 -14250 300530 -9750 600 L +300530 -14250 301280 -15000 600 L +301280 -15000 302780 -15000 600 L +302780 -15000 303530 -14250 600 L +303530 -14250 303530 -9750 600 L +302780 -9000 303530 -9750 600 L +301280 -9000 302780 -9000 600 L +300530 -10500 303530 -13500 600 L +305331 -9750 306081 -9000 600 L +305331 -14250 305331 -9750 600 L +305331 -14250 306081 -15000 600 L +306081 -15000 307581 -15000 600 L +307581 -15000 308331 -14250 600 L +308331 -14250 308331 -9750 600 L +307581 -9000 308331 -9750 600 L +306081 -9000 307581 -9000 600 L +305331 -10500 308331 -13500 600 L +313583 -11250 313583 -9000 600 L +313583 -11250 314333 -12000 600 L +314333 -12000 315083 -12000 600 L +315083 -12000 315833 -11250 600 L +315833 -11250 315833 -9000 600 L +315833 -11250 316583 -12000 600 L +316583 -12000 317333 -12000 600 L +317333 -12000 318083 -11250 600 L +318083 -11250 318083 -9000 600 L +312833 -12000 313583 -11250 600 L +319884 -13500 319884 -12750 600 L +319884 -11250 319884 -9000 600 L +321386 -15000 321386 -9750 600 L +321386 -9750 322136 -9000 600 L +324387 -9000 326637 -9000 600 L +326637 -9000 327387 -9750 600 L +326637 -10500 327387 -9750 600 L +324387 -10500 326637 -10500 600 L +323637 -11250 324387 -10500 600 L +323637 -11250 324387 -12000 600 L +324387 -12000 326637 -12000 600 L +326637 -12000 327387 -11250 600 L +323637 -9750 324387 -9000 600 L +331889 -12000 331889 -9750 600 L +331889 -9750 332639 -9000 600 L +332639 -9000 333389 -9000 600 L +333389 -9000 334139 -9750 600 L +334139 -12000 334139 -9750 600 L +334139 -9750 334889 -9000 600 L +334889 -9000 335639 -9000 600 L +335639 -9000 336389 -9750 600 L +336389 -12000 336389 -9750 600 L +338190 -13500 338190 -12750 600 L +338190 -11250 338190 -9000 600 L +342692 -15000 342692 -9000 600 L +341942 -9000 342692 -9750 600 L +340442 -9000 341942 -9000 600 L +339692 -9750 340442 -9000 600 L +339692 -11250 339692 -9750 600 L +339692 -11250 340442 -12000 600 L +340442 -12000 341942 -12000 600 L +341942 -12000 342692 -11250 600 L +345243 -9000 347493 -9000 600 L +344493 -9750 345243 -9000 600 L +344493 -11250 344493 -9750 600 L +344493 -11250 345243 -12000 600 L +345243 -12000 346743 -12000 600 L +346743 -12000 347493 -11250 600 L +344493 -10500 347493 -10500 600 L +347493 -11250 347493 -10500 600 L +349295 -7500 350795 -9000 600 L +355296 -12000 358296 -15000 600 L +355296 -12000 359046 -12000 600 L +358296 -15000 358296 -9000 600 L +361598 -9000 363098 -9000 600 L +362348 -15000 362348 -9000 600 L +360848 -13500 362348 -15000 600 L +364899 -9750 365649 -9000 600 L +364899 -14250 364899 -9750 600 L +364899 -14250 365649 -15000 600 L +365649 -15000 367149 -15000 600 L +367149 -15000 367899 -14250 600 L +367899 -14250 367899 -9750 600 L +367149 -9000 367899 -9750 600 L +365649 -9000 367149 -9000 600 L +364899 -10500 367899 -13500 600 L +369701 -9750 370451 -9000 600 L +369701 -14250 369701 -9750 600 L +369701 -14250 370451 -15000 600 L +370451 -15000 371951 -15000 600 L +371951 -15000 372701 -14250 600 L +372701 -14250 372701 -9750 600 L +371951 -9000 372701 -9750 600 L +370451 -9000 371951 -9000 600 L +369701 -10500 372701 -13500 600 L +377952 -11250 377952 -9000 600 L +377952 -11250 378702 -12000 600 L +378702 -12000 379452 -12000 600 L +379452 -12000 380202 -11250 600 L +380202 -11250 380202 -9000 600 L +380202 -11250 380952 -12000 600 L +380952 -12000 381702 -12000 600 L +381702 -12000 382452 -11250 600 L +382452 -11250 382452 -9000 600 L +377202 -12000 377952 -11250 600 L +384254 -13500 384254 -12750 600 L +384254 -11250 384254 -9000 600 L +385755 -15000 385755 -9750 600 L +385755 -9750 386505 -9000 600 L +388757 -9000 391007 -9000 600 L +391007 -9000 391757 -9750 600 L +391007 -10500 391757 -9750 600 L +388757 -10500 391007 -10500 600 L +388007 -11250 388757 -10500 600 L +388007 -11250 388757 -12000 600 L +388757 -12000 391007 -12000 600 L +391007 -12000 391757 -11250 600 L +388007 -9750 388757 -9000 600 L +396258 -15000 396258 -9000 600 L +396258 -11250 397008 -12000 600 L +397008 -12000 398508 -12000 600 L +398508 -12000 399258 -11250 600 L +399258 -11250 399258 -9000 600 L +401060 -13500 401060 -12750 600 L +401060 -11250 401060 -9000 600 L +404811 -12000 405561 -11250 600 L +403311 -12000 404811 -12000 600 L +402561 -11250 403311 -12000 600 L +402561 -11250 402561 -9750 600 L +402561 -9750 403311 -9000 600 L +403311 -9000 404811 -9000 600 L +404811 -9000 405561 -9750 600 L +402561 -7500 403311 -6750 600 L +403311 -6750 404811 -6750 600 L +404811 -6750 405561 -7500 600 L +405561 -12000 405561 -7500 600 L +407363 -15000 407363 -9000 600 L +407363 -11250 408113 -12000 600 L +408113 -12000 409613 -12000 600 L +409613 -12000 410363 -11250 600 L +410363 -11250 410363 -9000 600 L +0 0 710000 410000 Outline +197226 418000 200226 418000 600 L +200226 418000 200976 417250 600 L +200976 415750 200976 417250 600 L +200226 415000 200976 415750 600 L +197976 415000 200226 415000 600 L +197976 412000 197976 418000 600 L +197226 412000 200226 412000 600 L +200226 412000 200976 412750 600 L +200976 412750 200976 414250 600 L +200226 415000 200976 414250 600 L +202777 415750 202777 417250 600 L +202777 415750 203527 415000 600 L +203527 415000 205027 415000 600 L +205027 415000 205777 415750 600 L +205777 415750 205777 417250 600 L +205027 418000 205777 417250 600 L +203527 418000 205027 418000 600 L +202777 417250 203527 418000 600 L +209829 415000 210579 415750 600 L +208329 415000 209829 415000 600 L +207579 415750 208329 415000 600 L +207579 415750 207579 417250 600 L +207579 417250 208329 418000 600 L +210579 415000 210579 417250 600 L +210579 417250 211329 418000 600 L +208329 418000 209829 418000 600 L +209829 418000 210579 417250 600 L +213880 415750 213880 418000 600 L +213880 415750 214630 415000 600 L +214630 415000 216130 415000 600 L +213130 415000 213880 415750 600 L +220932 412000 220932 418000 600 L +220182 418000 220932 417250 600 L +218682 418000 220182 418000 600 L +217932 417250 218682 418000 600 L +217932 415750 217932 417250 600 L +217932 415750 218682 415000 600 L +218682 415000 220182 415000 600 L +220182 415000 220932 415750 600 L +225433 415750 225433 417250 600 L +225433 415750 226183 415000 600 L +226183 415000 227683 415000 600 L +227683 415000 228433 415750 600 L +228433 415750 228433 417250 600 L +227683 418000 228433 417250 600 L +226183 418000 227683 418000 600 L +225433 417250 226183 418000 600 L +230235 415000 230235 417250 600 L +230235 417250 230985 418000 600 L +230985 418000 232485 418000 600 L +232485 418000 233235 417250 600 L +233235 415000 233235 417250 600 L +235786 412000 235786 417250 600 L +235786 417250 236536 418000 600 L +235036 414250 236536 414250 600 L +238038 412000 238038 417250 600 L +238038 417250 238788 418000 600 L +240289 413500 240289 414250 600 L +240289 415750 240289 418000 600 L +242541 415750 242541 418000 600 L +242541 415750 243291 415000 600 L +243291 415000 244041 415000 600 L +244041 415000 244791 415750 600 L +244791 415750 244791 418000 600 L +241791 415000 242541 415750 600 L +247342 418000 249592 418000 600 L +246592 417250 247342 418000 600 L +246592 415750 246592 417250 600 L +246592 415750 247342 415000 600 L +247342 415000 248842 415000 600 L +248842 415000 249592 415750 600 L +246592 416500 249592 416500 600 L +249592 415750 249592 416500 600 L +254094 413500 254094 414250 600 L +254094 415750 254094 418000 600 L +256345 418000 258595 418000 600 L +258595 418000 259345 417250 600 L +258595 416500 259345 417250 600 L +256345 416500 258595 416500 600 L +255595 415750 256345 416500 600 L +255595 415750 256345 415000 600 L +256345 415000 258595 415000 600 L +258595 415000 259345 415750 600 L +255595 417250 256345 418000 600 L +264597 412000 264597 417250 600 L +264597 417250 265347 418000 600 L +263847 414250 265347 414250 600 L +266848 412000 266848 418000 600 L +266848 415750 267598 415000 600 L +267598 415000 269098 415000 600 L +269098 415000 269848 415750 600 L +269848 415750 269848 418000 600 L +272400 418000 274650 418000 600 L +271650 417250 272400 418000 600 L +271650 415750 271650 417250 600 L +271650 415750 272400 415000 600 L +272400 415000 273900 415000 600 L +273900 415000 274650 415750 600 L +271650 416500 274650 416500 600 L +274650 415750 274650 416500 600 L +279901 415000 282151 415000 600 L +279151 415750 279901 415000 600 L +279151 415750 279151 417250 600 L +279151 417250 279901 418000 600 L +279901 418000 282151 418000 600 L +284703 418000 286953 418000 600 L +283953 417250 284703 418000 600 L +283953 415750 283953 417250 600 L +283953 415750 284703 415000 600 L +284703 415000 286203 415000 600 L +286203 415000 286953 415750 600 L +283953 416500 286953 416500 600 L +286953 415750 286953 416500 600 L +289504 415750 289504 418000 600 L +289504 415750 290254 415000 600 L +290254 415000 291004 415000 600 L +291004 415000 291754 415750 600 L +291754 415750 291754 418000 600 L +288754 415000 289504 415750 600 L +294306 412000 294306 417250 600 L +294306 417250 295056 418000 600 L +293556 414250 295056 414250 600 L +297307 418000 299557 418000 600 L +296557 417250 297307 418000 600 L +296557 415750 296557 417250 600 L +296557 415750 297307 415000 600 L +297307 415000 298807 415000 600 L +298807 415000 299557 415750 600 L +296557 416500 299557 416500 600 L +299557 415750 299557 416500 600 L +302109 415750 302109 418000 600 L +302109 415750 302859 415000 600 L +302859 415000 304359 415000 600 L +301359 415000 302109 415750 600 L +306160 412000 306160 417250 600 L +306160 417250 306910 418000 600 L +308412 413500 308412 414250 600 L +308412 415750 308412 418000 600 L +310663 415750 310663 418000 600 L +310663 415750 311413 415000 600 L +311413 415000 312163 415000 600 L +312163 415000 312913 415750 600 L +312913 415750 312913 418000 600 L +309913 415000 310663 415750 600 L +315465 418000 317715 418000 600 L +314715 417250 315465 418000 600 L +314715 415750 314715 417250 600 L +314715 415750 315465 415000 600 L +315465 415000 316965 415000 600 L +316965 415000 317715 415750 600 L +314715 416500 317715 416500 600 L +317715 415750 317715 416500 600 L +322216 415750 322216 417250 600 L +322216 415750 322966 415000 600 L +322966 415000 324466 415000 600 L +324466 415000 325216 415750 600 L +325216 415750 325216 417250 600 L +324466 418000 325216 417250 600 L +322966 418000 324466 418000 600 L +322216 417250 322966 418000 600 L +327768 412750 327768 418000 600 L +327768 412750 328518 412000 600 L +328518 412000 329268 412000 600 L +327018 415000 328518 415000 600 L +334219 412000 334219 417250 600 L +334219 417250 334969 418000 600 L +333469 414250 334969 414250 600 L +336471 412000 336471 418000 600 L +336471 415750 337221 415000 600 L +337221 415000 338721 415000 600 L +338721 415000 339471 415750 600 L +339471 415750 339471 418000 600 L +341272 413500 341272 414250 600 L +341272 415750 341272 418000 600 L +343524 418000 345774 418000 600 L +345774 418000 346524 417250 600 L +345774 416500 346524 417250 600 L +343524 416500 345774 416500 600 L +342774 415750 343524 416500 600 L +342774 415750 343524 415000 600 L +343524 415000 345774 415000 600 L +345774 415000 346524 415750 600 L +342774 417250 343524 418000 600 L +351775 418000 353275 418000 600 L +352525 412000 352525 418000 600 L +351025 413500 352525 412000 600 L +355077 417250 355827 418000 600 L +355077 412750 355077 417250 600 L +355077 412750 355827 412000 600 L +355827 412000 357327 412000 600 L +357327 412000 358077 412750 600 L +358077 412750 358077 417250 600 L +357327 418000 358077 417250 600 L +355827 418000 357327 418000 600 L +355077 416500 358077 413500 600 L +363328 415750 363328 418000 600 L +363328 415750 364078 415000 600 L +364078 415000 364828 415000 600 L +364828 415000 365578 415750 600 L +365578 415750 365578 418000 600 L +365578 415750 366328 415000 600 L +366328 415000 367078 415000 600 L +367078 415000 367828 415750 600 L +367828 415750 367828 418000 600 L +362578 415000 363328 415750 600 L +369630 413500 369630 414250 600 L +369630 415750 369630 418000 600 L +371131 412000 371131 417250 600 L +371131 417250 371881 418000 600 L +376833 415750 376833 418000 600 L +376833 415750 377583 415000 600 L +377583 415000 379083 415000 600 L +376083 415000 376833 415750 600 L +381634 418000 383884 418000 600 L +380884 417250 381634 418000 600 L +380884 415750 380884 417250 600 L +380884 415750 381634 415000 600 L +381634 415000 383134 415000 600 L +383134 415000 383884 415750 600 L +380884 416500 383884 416500 600 L +383884 415750 383884 416500 600 L +386436 415000 388686 415000 600 L +385686 415750 386436 415000 600 L +385686 415750 385686 417250 600 L +385686 417250 386436 418000 600 L +386436 418000 388686 418000 600 L +391237 412000 391237 417250 600 L +391237 417250 391987 418000 600 L +390487 414250 391987 414250 600 L +395739 415000 396489 415750 600 L +394239 415000 395739 415000 600 L +393489 415750 394239 415000 600 L +393489 415750 393489 417250 600 L +393489 417250 394239 418000 600 L +396489 415000 396489 417250 600 L +396489 417250 397239 418000 600 L +394239 418000 395739 418000 600 L +395739 418000 396489 417250 600 L +399790 415750 399790 418000 600 L +399790 415750 400540 415000 600 L +400540 415000 401290 415000 600 L +401290 415000 402040 415750 600 L +402040 415750 402040 418000 600 L +399040 415000 399790 415750 600 L +406092 415000 406842 415750 600 L +404592 415000 406092 415000 600 L +403842 415750 404592 415000 600 L +403842 415750 403842 417250 600 L +403842 417250 404592 418000 600 L +404592 418000 406092 418000 600 L +406092 418000 406842 417250 600 L +403842 419500 404592 420250 600 L +404592 420250 406092 420250 600 L +406092 420250 406842 419500 600 L +406842 415000 406842 419500 600 L +408643 412000 408643 417250 600 L +408643 417250 409393 418000 600 L +411645 418000 413895 418000 600 L +410895 417250 411645 418000 600 L +410895 415750 410895 417250 600 L +410895 415750 411645 415000 600 L +411645 415000 413145 415000 600 L +413145 415000 413895 415750 600 L +410895 416500 413895 416500 600 L +413895 415750 413895 416500 600 L +418396 415000 421396 415000 600 L +425898 417250 426648 418000 600 L +425898 412750 425898 417250 600 L +425898 412750 426648 412000 600 L +426648 412000 428148 412000 600 L +428148 412000 428898 412750 600 L +428898 412750 428898 417250 600 L +428148 418000 428898 417250 600 L +426648 418000 428148 418000 600 L +425898 416500 428898 413500 600 L +430699 419500 432199 418000 600 L +434001 417250 434751 418000 600 L +434001 412750 434001 417250 600 L +434001 412750 434751 412000 600 L +434751 412000 436251 412000 600 L +436251 412000 437001 412750 600 L +437001 412750 437001 417250 600 L +436251 418000 437001 417250 600 L +434751 418000 436251 418000 600 L +434001 416500 437001 413500 600 L +442252 412000 442252 417250 600 L +442252 417250 443002 418000 600 L +441502 414250 443002 414250 600 L +444504 415750 444504 417250 600 L +444504 415750 445254 415000 600 L +445254 415000 446754 415000 600 L +446754 415000 447504 415750 600 L +447504 415750 447504 417250 600 L +446754 418000 447504 417250 600 L +445254 418000 446754 418000 600 L +444504 417250 445254 418000 600 L +452005 418000 455755 414250 600 L +455755 412000 455755 414250 600 L +452005 412000 455755 412000 600 L +458307 418000 459807 418000 600 L +459057 412000 459057 418000 600 L +457557 413500 459057 412000 600 L +461608 417250 462358 418000 600 L +461608 412750 461608 417250 600 L +461608 412750 462358 412000 600 L +462358 412000 463858 412000 600 L +463858 412000 464608 412750 600 L +464608 412750 464608 417250 600 L +463858 418000 464608 417250 600 L +462358 418000 463858 418000 600 L +461608 416500 464608 413500 600 L +466410 417250 467160 418000 600 L +466410 412750 466410 417250 600 L +466410 412750 467160 412000 600 L +467160 412000 468660 412000 600 L +468660 412000 469410 412750 600 L +469410 412750 469410 417250 600 L +468660 418000 469410 417250 600 L +467160 418000 468660 418000 600 L +466410 416500 469410 413500 600 L +471211 419500 472711 418000 600 L +474513 415000 477513 412000 600 L +474513 415000 478263 415000 600 L +477513 412000 477513 418000 600 L +480814 418000 482314 418000 600 L +481564 412000 481564 418000 600 L +480064 413500 481564 412000 600 L +484116 417250 484866 418000 600 L +484116 412750 484116 417250 600 L +484116 412750 484866 412000 600 L +484866 412000 486366 412000 600 L +486366 412000 487116 412750 600 L +487116 412750 487116 417250 600 L +486366 418000 487116 417250 600 L +484866 418000 486366 418000 600 L +484116 416500 487116 413500 600 L +488917 417250 489667 418000 600 L +488917 412750 488917 417250 600 L +488917 412750 489667 412000 600 L +489667 412000 491167 412000 600 L +491167 412000 491917 412750 600 L +491917 412750 491917 417250 600 L +491167 418000 491917 417250 600 L +489667 418000 491167 418000 600 L +488917 416500 491917 413500 600 L +497169 415750 497169 418000 600 L +497169 415750 497919 415000 600 L +497919 415000 498669 415000 600 L +498669 415000 499419 415750 600 L +499419 415750 499419 418000 600 L +499419 415750 500169 415000 600 L +500169 415000 500919 415000 600 L +500919 415000 501669 415750 600 L +501669 415750 501669 418000 600 L +496419 415000 497169 415750 600 L +503470 413500 503470 414250 600 L +503470 415750 503470 418000 600 L +504972 412000 504972 417250 600 L +504972 417250 505722 418000 600 L +507973 418000 510223 418000 600 L +510223 418000 510973 417250 600 L +510223 416500 510973 417250 600 L +507973 416500 510223 416500 600 L +507223 415750 507973 416500 600 L +507223 415750 507973 415000 600 L +507973 415000 510223 415000 600 L +510223 415000 510973 415750 600 L +507223 417250 507973 418000 600 L +200750 -30000 200750 -24000 600 L +203000 -30000 203750 -29250 600 L +203750 -29250 203750 -24750 600 L +203000 -24000 203750 -24750 600 L +200000 -24000 203000 -24000 600 L +200000 -30000 203000 -30000 600 L +207801 -27000 208551 -26250 600 L +206301 -27000 207801 -27000 600 L +205551 -26250 206301 -27000 600 L +205551 -26250 205551 -24750 600 L +205551 -24750 206301 -24000 600 L +208551 -27000 208551 -24750 600 L +208551 -24750 209301 -24000 600 L +206301 -24000 207801 -24000 600 L +207801 -24000 208551 -24750 600 L +211853 -30000 211853 -24750 600 L +211853 -24750 212603 -24000 600 L +211103 -27750 212603 -27750 600 L +214854 -24000 217104 -24000 600 L +214104 -24750 214854 -24000 600 L +214104 -26250 214104 -24750 600 L +214104 -26250 214854 -27000 600 L +214854 -27000 216354 -27000 600 L +216354 -27000 217104 -26250 600 L +214104 -25500 217104 -25500 600 L +217104 -26250 217104 -25500 600 L +218906 -27750 219656 -27750 600 L +218906 -26250 219656 -26250 600 L +224157 -30000 227157 -30000 600 L +225657 -30000 225657 -24000 600 L +228959 -27000 228959 -24750 600 L +228959 -24750 229709 -24000 600 L +229709 -24000 231209 -24000 600 L +231209 -24000 231959 -24750 600 L +231959 -27000 231959 -24750 600 L +234510 -24000 236760 -24000 600 L +233760 -24750 234510 -24000 600 L +233760 -26250 233760 -24750 600 L +233760 -26250 234510 -27000 600 L +234510 -27000 236010 -27000 600 L +236010 -27000 236760 -26250 600 L +233760 -25500 236760 -25500 600 L +236760 -26250 236760 -25500 600 L +241262 -30000 241262 -24000 600 L +241262 -30000 241262 -29250 600 L +241262 -29250 245012 -25500 600 L +245012 -30000 245012 -24000 600 L +246813 -26250 246813 -24750 600 L +246813 -26250 247563 -27000 600 L +247563 -27000 249063 -27000 600 L +249063 -27000 249813 -26250 600 L +249813 -26250 249813 -24750 600 L +249063 -24000 249813 -24750 600 L +247563 -24000 249063 -24000 600 L +246813 -24750 247563 -24000 600 L +251615 -27000 251615 -25500 600 L +251615 -25500 253115 -24000 600 L +253115 -24000 254615 -25500 600 L +254615 -27000 254615 -25500 600 L +259116 -29250 259866 -30000 600 L +259866 -30000 262116 -30000 600 L +262116 -30000 262866 -29250 600 L +262866 -29250 262866 -27750 600 L +259116 -24000 262866 -27750 600 L +259116 -24000 262866 -24000 600 L +264668 -24000 268418 -27750 600 L +268418 -30000 268418 -27750 600 L +264668 -30000 268418 -30000 600 L +273669 -24000 275169 -24000 600 L +274419 -30000 274419 -24000 600 L +272919 -28500 274419 -30000 600 L +277721 -24000 279221 -24000 600 L +278471 -30000 278471 -24000 600 L +276971 -28500 278471 -30000 600 L +281022 -27750 281772 -27750 600 L +281022 -26250 281772 -26250 600 L +283574 -27000 286574 -30000 600 L +283574 -27000 287324 -27000 600 L +286574 -30000 286574 -24000 600 L +289125 -24000 292125 -27000 600 L +292125 -29250 292125 -27000 600 L +291375 -30000 292125 -29250 600 L +289875 -30000 291375 -30000 600 L +289125 -29250 289875 -30000 600 L +289125 -29250 289125 -27750 600 L +289125 -27750 289875 -27000 600 L +289875 -27000 292125 -27000 600 L +293927 -27750 294677 -27750 600 L +293927 -26250 294677 -26250 600 L +296478 -29250 297228 -30000 600 L +297228 -30000 299478 -30000 600 L +299478 -30000 300228 -29250 600 L +300228 -29250 300228 -27750 600 L +296478 -24000 300228 -27750 600 L +296478 -24000 300228 -24000 600 L +302030 -24000 305780 -27750 600 L +305780 -30000 305780 -27750 600 L +302030 -30000 305780 -30000 600 L +310281 -29250 311031 -30000 600 L +311031 -30000 313281 -30000 600 L +313281 -30000 314031 -29250 600 L +314031 -29250 314031 -27750 600 L +310281 -24000 314031 -27750 600 L +310281 -24000 314031 -24000 600 L +315833 -24750 316583 -24000 600 L +315833 -29250 315833 -24750 600 L +315833 -29250 316583 -30000 600 L +316583 -30000 318083 -30000 600 L +318083 -30000 318833 -29250 600 L +318833 -29250 318833 -24750 600 L +318083 -24000 318833 -24750 600 L +316583 -24000 318083 -24000 600 L +315833 -25500 318833 -28500 600 L +320634 -24750 321384 -24000 600 L +320634 -29250 320634 -24750 600 L +320634 -29250 321384 -30000 600 L +321384 -30000 322884 -30000 600 L +322884 -30000 323634 -29250 600 L +323634 -29250 323634 -24750 600 L +322884 -24000 323634 -24750 600 L +321384 -24000 322884 -24000 600 L +320634 -25500 323634 -28500 600 L +325436 -24000 329186 -27750 600 L +329186 -30000 329186 -27750 600 L +325436 -30000 329186 -30000 600 L +333687 -30000 333687 -24750 600 L +333687 -24750 334437 -24000 600 L +334437 -24000 335937 -24000 600 L +335937 -24000 336687 -24750 600 L +336687 -30000 336687 -24750 600 L +338489 -30000 341489 -30000 600 L +339989 -30000 339989 -24000 600 L +344040 -24000 346290 -24000 600 L +343290 -24750 344040 -24000 600 L +343290 -29250 343290 -24750 600 L +343290 -29250 344040 -30000 600 L +344040 -30000 346290 -30000 600 L +200000 -44250 200000 -39000 600 L +200000 -44250 200750 -45000 600 L +200750 -45000 203000 -45000 600 L +203000 -45000 203750 -44250 600 L +203750 -44250 203750 -39000 600 L +200000 -42000 203750 -42000 600 L +205551 -42000 205551 -39750 600 L +205551 -39750 206301 -39000 600 L +206301 -39000 207801 -39000 600 L +207801 -39000 208551 -39750 600 L +208551 -42000 208551 -39750 600 L +211103 -45000 211103 -39750 600 L +211103 -39750 211853 -39000 600 L +210353 -42750 211853 -42750 600 L +213354 -45000 213354 -39000 600 L +213354 -41250 214104 -42000 600 L +214104 -42000 215604 -42000 600 L +215604 -42000 216354 -41250 600 L +216354 -41250 216354 -39000 600 L +218156 -41250 218156 -39750 600 L +218156 -41250 218906 -42000 600 L +218906 -42000 220406 -42000 600 L +220406 -42000 221156 -41250 600 L +221156 -41250 221156 -39750 600 L +220406 -39000 221156 -39750 600 L +218906 -39000 220406 -39000 600 L +218156 -39750 218906 -39000 600 L +223707 -41250 223707 -39000 600 L +223707 -41250 224457 -42000 600 L +224457 -42000 225957 -42000 600 L +222957 -42000 223707 -41250 600 L +227759 -42750 228509 -42750 600 L +227759 -41250 228509 -41250 600 L +233010 -45000 233010 -39000 600 L +233010 -39000 235260 -41250 600 L +235260 -41250 237510 -39000 600 L +237510 -45000 237510 -39000 600 L +241562 -42000 242312 -41250 600 L +240062 -42000 241562 -42000 600 L +239312 -41250 240062 -42000 600 L +239312 -41250 239312 -39750 600 L +239312 -39750 240062 -39000 600 L +242312 -42000 242312 -39750 600 L +242312 -39750 243062 -39000 600 L +240062 -39000 241562 -39000 600 L +241562 -39000 242312 -39750 600 L +244863 -45000 244863 -39750 600 L +244863 -39750 245613 -39000 600 L +247865 -45000 247865 -39750 600 L +247865 -39750 248615 -39000 600 L +247115 -42750 248615 -42750 600 L +250866 -39000 253116 -39000 600 L +250116 -39750 250866 -39000 600 L +250116 -41250 250116 -39750 600 L +250116 -41250 250866 -42000 600 L +250866 -42000 252366 -42000 600 L +252366 -42000 253116 -41250 600 L +250116 -40500 253116 -40500 600 L +253116 -41250 253116 -40500 600 L +255668 -41250 255668 -39000 600 L +255668 -41250 256418 -42000 600 L +256418 -42000 257918 -42000 600 L +254918 -42000 255668 -41250 600 L +262419 -45000 262419 -39000 600 L +262419 -45000 265419 -45000 600 L +262419 -42000 264669 -42000 600 L +267971 -39000 270221 -39000 600 L +267221 -39750 267971 -39000 600 L +267221 -41250 267221 -39750 600 L +267221 -41250 267971 -42000 600 L +267971 -42000 269471 -42000 600 L +269471 -42000 270221 -41250 600 L +267221 -40500 270221 -40500 600 L +270221 -41250 270221 -40500 600 L +272772 -45000 272772 -39750 600 L +272772 -39750 273522 -39000 600 L +272022 -42750 273522 -42750 600 L +275774 -45000 275774 -39750 600 L +275774 -39750 276524 -39000 600 L +275024 -42750 276524 -42750 600 L +278775 -39000 281025 -39000 600 L +278025 -39750 278775 -39000 600 L +278025 -41250 278025 -39750 600 L +278025 -41250 278775 -42000 600 L +278775 -42000 280275 -42000 600 L +280275 -42000 281025 -41250 600 L +278025 -40500 281025 -40500 600 L +281025 -41250 281025 -40500 600 L +283577 -41250 283577 -39000 600 L +283577 -41250 284327 -42000 600 L +284327 -42000 285827 -42000 600 L +282827 -42000 283577 -41250 600 L +290328 -45000 290328 -39000 600 L +290328 -39000 293328 -39000 600 L +297380 -42000 298130 -41250 600 L +295880 -42000 297380 -42000 600 L +295130 -41250 295880 -42000 600 L +295130 -41250 295130 -39750 600 L +295130 -39750 295880 -39000 600 L +298130 -42000 298130 -39750 600 L +298130 -39750 298880 -39000 600 L +295880 -39000 297380 -39000 600 L +297380 -39000 298130 -39750 600 L +302931 -42000 303681 -41250 600 L +301431 -42000 302931 -42000 600 L +300681 -41250 301431 -42000 600 L +300681 -41250 300681 -39750 600 L +300681 -39750 301431 -39000 600 L +301431 -39000 302931 -39000 600 L +302931 -39000 303681 -39750 600 L +300681 -37500 301431 -36750 600 L +301431 -36750 302931 -36750 600 L +302931 -36750 303681 -37500 600 L +303681 -42000 303681 -37500 600 L +306233 -39000 308483 -39000 600 L +305483 -39750 306233 -39000 600 L +305483 -41250 305483 -39750 600 L +305483 -41250 306233 -42000 600 L +306233 -42000 307733 -42000 600 L +307733 -42000 308483 -41250 600 L +305483 -40500 308483 -40500 600 L +308483 -41250 308483 -40500 600 L +311034 -39000 313284 -39000 600 L +313284 -39000 314034 -39750 600 L +313284 -40500 314034 -39750 600 L +311034 -40500 313284 -40500 600 L +310284 -41250 311034 -40500 600 L +310284 -41250 311034 -42000 600 L +311034 -42000 313284 -42000 600 L +313284 -42000 314034 -41250 600 L +310284 -39750 311034 -39000 600 L +200000 -60000 203000 -60000 600 L +201500 -60000 201500 -54000 600 L +204801 -58500 204801 -57750 600 L +204801 -56250 204801 -54000 600 L +207053 -60000 207053 -54750 600 L +207053 -54750 207803 -54000 600 L +206303 -57750 207803 -57750 600 L +209304 -60000 209304 -54750 600 L +209304 -54750 210054 -54000 600 L +212306 -54000 214556 -54000 600 L +211556 -54750 212306 -54000 600 L +211556 -56250 211556 -54750 600 L +211556 -56250 212306 -57000 600 L +212306 -57000 213806 -57000 600 L +213806 -57000 214556 -56250 600 L +211556 -55500 214556 -55500 600 L +214556 -56250 214556 -55500 600 L +216357 -57750 217107 -57750 600 L +216357 -56250 217107 -56250 600 L +221609 -54750 222359 -54000 600 L +221609 -59250 222359 -60000 600 L +221609 -59250 221609 -54750 600 L +224160 -57000 224160 -54750 600 L +224160 -54750 224910 -54000 600 L +224910 -54000 226410 -54000 600 L +226410 -54000 227160 -54750 600 L +227160 -57000 227160 -54750 600 L +229712 -56250 229712 -54000 600 L +229712 -56250 230462 -57000 600 L +230462 -57000 231212 -57000 600 L +231212 -57000 231962 -56250 600 L +231962 -56250 231962 -54000 600 L +228962 -57000 229712 -56250 600 L +233763 -60000 233763 -54000 600 L +233763 -56250 236013 -54000 600 L +233763 -56250 235263 -57750 600 L +238565 -56250 238565 -54000 600 L +238565 -56250 239315 -57000 600 L +239315 -57000 240065 -57000 600 L +240065 -57000 240815 -56250 600 L +240815 -56250 240815 -54000 600 L +237815 -57000 238565 -56250 600 L +242616 -56250 242616 -54750 600 L +242616 -56250 243366 -57000 600 L +243366 -57000 244866 -57000 600 L +244866 -57000 245616 -56250 600 L +245616 -56250 245616 -54750 600 L +244866 -54000 245616 -54750 600 L +243366 -54000 244866 -54000 600 L +242616 -54750 243366 -54000 600 L +247418 -57000 247418 -54750 600 L +247418 -54750 248168 -54000 600 L +248168 -54000 248918 -54000 600 L +248918 -54000 249668 -54750 600 L +249668 -57000 249668 -54750 600 L +249668 -54750 250418 -54000 600 L +250418 -54000 251168 -54000 600 L +251168 -54000 251918 -54750 600 L +251918 -57000 251918 -54750 600 L +254469 -56250 254469 -54000 600 L +254469 -56250 255219 -57000 600 L +255219 -57000 255969 -57000 600 L +255969 -57000 256719 -56250 600 L +256719 -56250 256719 -54000 600 L +253719 -57000 254469 -56250 600 L +258521 -60000 259271 -59250 600 L +259271 -59250 259271 -54750 600 L +258521 -54000 259271 -54750 600 L +263772 -57000 266772 -57000 600 L +271274 -60000 271274 -54000 600 L +271274 -60000 274274 -60000 600 L +271274 -57000 273524 -57000 600 L +278325 -57000 279075 -56250 600 L +276825 -57000 278325 -57000 600 L +276075 -56250 276825 -57000 600 L +276075 -56250 276075 -54750 600 L +276075 -54750 276825 -54000 600 L +279075 -57000 279075 -54750 600 L +279075 -54750 279825 -54000 600 L +276825 -54000 278325 -54000 600 L +278325 -54000 279075 -54750 600 L +281627 -60000 281627 -54000 600 L +281627 -54750 282377 -54000 600 L +282377 -54000 283877 -54000 600 L +283877 -54000 284627 -54750 600 L +284627 -56250 284627 -54750 600 L +283877 -57000 284627 -56250 600 L +282377 -57000 283877 -57000 600 L +281627 -56250 282377 -57000 600 L +287178 -56250 287178 -54000 600 L +287178 -56250 287928 -57000 600 L +287928 -57000 289428 -57000 600 L +286428 -57000 287178 -56250 600 L +291230 -58500 291230 -57750 600 L +291230 -56250 291230 -54000 600 L +293481 -57000 295731 -57000 600 L +292731 -56250 293481 -57000 600 L +292731 -56250 292731 -54750 600 L +292731 -54750 293481 -54000 600 L +293481 -54000 295731 -54000 600 L +299783 -57000 300533 -56250 600 L +298283 -57000 299783 -57000 600 L +297533 -56250 298283 -57000 600 L +297533 -56250 297533 -54750 600 L +297533 -54750 298283 -54000 600 L +300533 -57000 300533 -54750 600 L +300533 -54750 301283 -54000 600 L +298283 -54000 299783 -54000 600 L +299783 -54000 300533 -54750 600 L +303834 -60000 303834 -54750 600 L +303834 -54750 304584 -54000 600 L +303084 -57750 304584 -57750 600 L +306086 -58500 306086 -57750 600 L +306086 -56250 306086 -54000 600 L +307587 -56250 307587 -54750 600 L +307587 -56250 308337 -57000 600 L +308337 -57000 309837 -57000 600 L +309837 -57000 310587 -56250 600 L +310587 -56250 310587 -54750 600 L +309837 -54000 310587 -54750 600 L +308337 -54000 309837 -54000 600 L +307587 -54750 308337 -54000 600 L +313139 -56250 313139 -54000 600 L +313139 -56250 313889 -57000 600 L +313889 -57000 314639 -57000 600 L +314639 -57000 315389 -56250 600 L +315389 -56250 315389 -54000 600 L +312389 -57000 313139 -56250 600 L +320640 -60000 320640 -54000 600 L +322890 -60000 323640 -59250 600 L +323640 -59250 323640 -54750 600 L +322890 -54000 323640 -54750 600 L +319890 -54000 322890 -54000 600 L +319890 -60000 322890 -60000 600 L +326192 -56250 326192 -54000 600 L +326192 -56250 326942 -57000 600 L +326942 -57000 328442 -57000 600 L +325442 -57000 326192 -56250 600 L +332493 -57000 333243 -56250 600 L +330993 -57000 332493 -57000 600 L +330243 -56250 330993 -57000 600 L +330243 -56250 330243 -54750 600 L +330243 -54750 330993 -54000 600 L +333243 -57000 333243 -54750 600 L +333243 -54750 333993 -54000 600 L +330993 -54000 332493 -54000 600 L +332493 -54000 333243 -54750 600 L +335795 -57000 335795 -54750 600 L +335795 -54750 336545 -54000 600 L +336545 -54000 337295 -54000 600 L +337295 -54000 338045 -54750 600 L +338045 -57000 338045 -54750 600 L +338045 -54750 338795 -54000 600 L +338795 -54000 339545 -54000 600 L +339545 -54000 340295 -54750 600 L +340295 -57000 340295 -54750 600 L +342096 -58500 342096 -57750 600 L +342096 -56250 342096 -54000 600 L +344348 -56250 344348 -54000 600 L +344348 -56250 345098 -57000 600 L +345098 -57000 345848 -57000 600 L +345848 -57000 346598 -56250 600 L +346598 -56250 346598 -54000 600 L +343598 -57000 344348 -56250 600 L +350649 -57000 351399 -56250 600 L +349149 -57000 350649 -57000 600 L +348399 -56250 349149 -57000 600 L +348399 -56250 348399 -54750 600 L +348399 -54750 349149 -54000 600 L +349149 -54000 350649 -54000 600 L +350649 -54000 351399 -54750 600 L +348399 -52500 349149 -51750 600 L +349149 -51750 350649 -51750 600 L +350649 -51750 351399 -52500 600 L +351399 -57000 351399 -52500 600 L +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/doc/aic_front.ps b/doc/aic_front.ps new file mode 100644 index 0000000..d9d3494 --- /dev/null +++ b/doc/aic_front.ps @@ -0,0 +1,2323 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), layergroup #2 +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 160 moveto 451 160 lineto 451 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,410400) +% PCBOFFSET(214900,223900), PCBSCALE(1.00000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 223900 translate +1.000 1.000 scale +410800 0 translate +90 rotate +0 410800 translate +1 -1 scale +400 400 translate +-400 -400 710400 410400 200 Alignment +/Color {0.804 0.216 0.000 mysetrgbcolor} def Color +147500 140000 145000 137500 1000 L +147500 165000 147500 140000 1000 L +145000 167500 147500 165000 1000 L +145000 250000 145000 167500 1000 L +140000 150000 140000 95000 2500 L +142500 152500 140000 150000 2500 L +142500 162500 142500 152500 2500 L +140000 165000 142500 162500 2500 L +140000 205000 140000 165000 2500 L +76500 257000 76500 280500 1000 L +57500 239500 70000 252000 2500 L +675000 398500 45000 398500 100 L +55000 269500 49500 275000 1000 L +130000 290500 130500 291000 2500 L +130000 273000 130000 290500 2500 L +582500 285000 582500 292500 1000 L +327500 305000 327500 342500 1000 L +282500 330000 282500 342500 1000 L +530000 292500 530000 327500 1000 L +570000 322500 570000 245000 1000 L +210000 325000 210000 322500 1000 L +192500 342500 210000 325000 1000 L +520000 337500 520000 260000 1000 L +402500 250000 402500 310000 1000 L +222500 310000 222500 342500 1000 L +105000 270000 105000 330000 1000 L +420000 162500 415000 167500 1000 L +415000 167500 415000 272500 1000 L +327500 352500 327500 342500 1000 L +262500 342500 262500 352500 1000 L +450000 182500 450000 162500 1000 L +107500 160000 107500 147500 1000 L +122500 172500 122500 161000 1000 L +252500 342500 252500 287500 1000 L +122500 161000 122000 160500 1000 L +375000 360000 375000 210000 1000 L +375000 210000 380000 205000 1000 L +297500 352500 297500 372500 2500 L +355000 222500 355000 385000 1000 L +355000 220000 355000 222500 1000 L +370000 205000 355000 220000 1000 L +350000 220000 350000 205000 1000 L +380000 235000 385000 240000 1000 L +325000 167500 325000 160000 1000 L +320000 172500 325000 167500 1000 L +320000 205000 320000 172500 1000 L +285000 80000 285000 57500 1000 L +275000 85000 275000 57500 1000 L +305000 135000 305000 85000 1000 L +300000 140000 305000 135000 1000 L +300000 147500 300000 140000 1000 L +300000 155000 300000 147500 1000 L +305000 160000 300000 155000 1000 L +305000 162500 305000 160000 1000 L +305000 170000 305000 162500 1000 L +310000 175000 305000 170000 1000 L +310000 205000 310000 175000 1000 L +300000 162500 300000 177500 1000 L +485000 177500 485000 152500 1000 L +462500 217500 465000 215000 1000 L +462500 282500 462500 217500 1000 L +465000 215000 465000 152500 1000 L +480000 265000 480000 162500 1000 L +290000 235000 290000 265000 1000 L +430000 197500 430000 165000 1000 L +180000 170000 180000 205000 1000 L +255000 152500 255000 167500 1000 L +190000 175000 190000 205000 1000 L +255000 167500 250000 172500 1000 L +240000 155000 240000 107500 1000 L +242500 157500 240000 155000 1000 L +245000 160000 242500 157500 1000 L +245000 182500 245000 160000 1000 L +230000 205000 230000 182500 1000 L +255000 90000 255000 57500 1000 L +227500 95000 227500 90000 1000 L +240000 107500 227500 95000 1000 L +340000 282500 340000 235000 1000 L +155000 255000 155000 282500 1000 L +160000 250000 155000 255000 1000 L +160000 205000 160000 250000 1000 L +250000 205000 250000 255000 1000 L +325000 160000 330000 155000 1000 L +330000 155000 330000 80000 1000 L +257500 262500 257500 277500 1000 L +250000 255000 257500 262500 1000 L +210000 205000 210000 230000 1000 L +215000 212500 215000 152500 1000 L +390000 225000 390000 205000 1000 L +200000 250000 195000 255000 1000 L +300000 205000 292500 212500 1000 L +170000 217500 170000 205000 1000 L +292500 212500 292500 222500 1000 L +235000 152500 235000 187500 1000 L +325000 230000 330000 235000 1000 L +325000 187500 325000 230000 1000 L +150000 205000 150000 187500 1000 L +315000 230000 320000 235000 1000 L +315000 192500 315000 230000 1000 L +225000 152500 225000 195000 1000 L +220000 195000 225000 200000 1000 L +310000 235000 310000 217500 1000 L +225000 200000 225000 217500 1000 L +220000 162500 220000 195000 1000 L +300000 235000 300000 212500 1000 L +200000 205000 200000 250000 1000 L +195000 275000 202500 282500 1000 L +195000 255000 195000 275000 1000 L +240000 215000 240000 205000 1000 L +232500 222500 240000 215000 1000 L +232500 232500 232500 222500 1000 L +230000 235000 232500 232500 1000 L +230000 265000 230000 235000 1000 L +230000 227500 230000 205000 1000 L +220000 237500 230000 227500 1000 L +220000 265000 220000 237500 1000 L +240000 245000 240000 227500 2500 L +540000 350000 550000 360000 4500 L +395000 317500 395000 360000 4500 L +475000 330000 475000 317500 4500 L +632500 307500 622500 307500 4500 L +622500 307500 622500 342500 4500 L +622500 307500 622500 230000 4500 L +642500 97500 652500 107500 2500 L +632500 257500 622500 257500 4500 L +592500 210000 592500 212500 4500 L +592500 212500 612500 232500 4500 L +612500 232500 612500 267500 4500 L +592500 222500 592500 245000 4500 L +470000 220000 470000 277500 4500 L +470000 277500 470000 310000 4500 L +470000 310000 462500 317500 4500 L +462500 317500 462500 342500 4500 L +562500 187500 562500 220000 4500 L +592500 187500 592500 210000 4500 L +642500 47500 642500 57500 2500 L +642500 67500 642500 77500 2500 L +642500 87500 642500 97500 2500 L +622500 230000 622500 102500 4000 L +602500 210000 620000 210000 4000 L +562500 187500 562500 135000 2500 L +562500 135000 567500 130000 2500 L +567500 130000 567500 107500 2500 L +597500 57500 597500 47500 2500 L +537500 22500 537500 47500 2500 L +487500 27500 487500 47500 2500 L +517500 27500 517500 40000 2500 L +577500 27500 577500 40000 2500 L +587500 57500 587500 50000 2500 L +587500 50000 577500 40000 2500 L +647500 20000 647500 42500 1000 L +647500 42500 652500 47500 1000 L +622500 47500 632500 57500 1000 L +622500 35000 622500 47500 1000 L +597500 65000 597500 87500 1000 L +622500 87500 632500 77500 1000 L +632500 97500 615000 97500 1000 L +615000 97500 615000 130000 1000 L +295000 130000 295000 57500 1000 L +615000 62500 620000 52500 1000 L +652500 87500 647500 82500 1000 L +647500 82500 637500 82500 1000 L +637500 82500 637500 72500 1000 L +637500 72500 615000 72500 1000 L +615000 72500 615000 62500 1000 L +407500 47500 407500 57500 2500 L +115000 232500 115000 112500 1000 L +85000 360000 85000 355000 1000 L +85000 355000 95000 345000 1000 L +95000 345000 95000 252500 1000 L +282500 342500 282500 372500 1000 L +642500 107500 637500 112500 1000 L +637500 112500 637500 172500 1000 L +262500 172500 262500 282500 1000 L +262500 282500 277500 297500 1000 L +550000 292500 550000 332500 4500 L +550000 332500 560000 342500 4500 L +210000 162500 210000 67500 1000 L +205000 152500 205000 82500 1000 L +200000 162500 200000 62500 1000 L +195000 152500 195000 57500 1000 L +242500 360000 242500 372500 1000 L +192500 372500 192500 360000 1000 L +232500 372500 232500 352500 2500 L +252500 385000 252500 372500 1000 L +182500 372500 182500 385000 1000 L +105000 162500 107500 160000 1000 L +70000 385000 77500 392500 2500 L +110000 310000 110000 367500 1000 L +280000 235000 280000 215000 1000 L +280000 215000 290000 205000 1000 L +220000 282500 220000 265000 1000 L +202500 290000 202500 282500 1000 L +122500 322500 122500 172500 1000 L +115000 330000 122500 322500 1000 L +115000 245000 115000 232500 1000 L +95000 252500 95000 245000 1000 L +272500 347500 272500 352500 2500 L +557500 237500 557500 222500 1000 L +395000 227500 402500 235000 1000 L +395000 152500 395000 227500 1000 L +405000 215000 405000 200000 1000 L +400000 162500 400000 205000 1000 L +400000 205000 400000 225000 1000 L +405000 195000 405000 200000 1000 L +405000 152500 405000 195000 1000 L +410000 180000 410000 195000 1000 L +410000 162500 410000 180000 1000 L +410000 205000 410000 195000 1000 L +470000 162500 470000 142500 1000 L +457500 122500 447500 122500 1000 L +457500 130000 457500 122500 1000 L +470000 142500 457500 130000 1000 L +467500 135000 467500 122500 1000 L +475000 142500 467500 135000 1000 L +475000 152500 475000 142500 1000 L +490000 147500 477500 135000 1000 L +490000 162500 490000 147500 1000 L +477500 135000 477500 57500 1000 L +495000 145000 492500 142500 1000 L +467500 65000 467500 62500 1000 L +475000 72500 467500 65000 1000 L +475000 92500 475000 72500 1000 L +472500 95000 475000 92500 1000 L +472500 107500 472500 95000 1000 L +490000 107500 487500 107500 1000 L +492500 110000 490000 107500 1000 L +495000 152500 495000 145000 1000 L +492500 142500 492500 110000 1000 L +517500 95000 512500 90000 1000 L +517500 107500 517500 95000 1000 L +507500 117500 517500 107500 1000 L +512500 87500 512500 80000 1000 L +512500 90000 512500 87500 1000 L +557500 95000 557500 92500 1000 L +552500 100000 557500 95000 1000 L +552500 107500 552500 100000 1000 L +547500 112500 552500 107500 1000 L +547500 142500 547500 112500 1000 L +610000 120000 610000 142500 1000 L +607500 117500 610000 120000 1000 L +430000 205000 430000 235000 1000 L +557500 92500 557500 82500 1000 L +507500 107500 507500 87500 1000 L +537500 122500 537500 107500 1000 L +447500 107500 447500 122500 1000 L +417500 87500 417500 107500 1000 L +417500 135000 417500 117500 1000 L +555000 125000 555000 135000 1000 L +557500 122500 555000 125000 1000 L +447500 62500 447500 30000 1000 L +527500 52500 527500 22500 1000 L +537500 62500 527500 52500 1000 L +502500 42500 502500 15000 1000 L +507500 47500 502500 42500 1000 L +507500 57500 507500 47500 1000 L +467500 15000 467500 22500 1000 L +557500 15000 557500 22500 1000 L +615000 50000 615000 15000 1000 L +607500 57500 615000 50000 1000 L +335000 62500 335000 52500 1000 L +355000 62500 355000 130000 1000 L +70000 257500 70000 252500 2500 L +72500 260000 70000 257500 2500 L +72500 267500 72500 260000 2500 L +675000 5000 675000 398500 100 L +45000 398500 45000 5000 100 L +49500 275000 49500 330000 1000 L +557500 222500 545000 210000 1000 L +272500 342500 272500 347500 2500 L +222500 342500 222500 372500 1000 L +212500 352500 212500 342500 2500 L +330000 372500 327500 372500 2500 L +337500 365000 330000 372500 2500 L +337500 295000 337500 365000 2500 L +332500 290000 337500 295000 2500 L +360000 290000 360000 317500 2500 L +360000 260000 360000 290000 2500 L +272500 372500 272500 392500 2500 L +212500 372500 212500 392500 2500 L +127500 392500 127500 372500 2500 L +202500 305000 202500 322500 2500 L +390000 260000 390000 290000 2500 L +390000 235000 390000 260000 2500 L +332500 260000 332500 290000 2500 L +550000 225000 535000 210000 2500 L +550000 245000 550000 225000 2500 L +390000 80000 390000 35000 2500 L +397500 87500 390000 80000 2500 L +390000 35000 397500 27500 2500 L +447500 85000 447500 95000 2500 L +435000 80000 427500 87500 2500 L +435000 30000 435000 80000 2500 L +432500 27500 435000 30000 2500 L +427500 27500 432500 27500 2500 L +315000 100000 315000 57500 2500 L +525000 152500 525000 100000 2500 L +427500 87500 427500 100000 2500 L +130000 275000 130000 255000 2500 L +110000 310000 115000 305000 1000 L +130000 255000 140000 245000 2500 L +140000 245000 140000 205000 2500 L +280000 205000 277500 205000 2500 L +270000 212500 270000 245000 2500 L +277500 205000 270000 212500 2500 L +240000 245000 240000 265000 2500 L +540000 327500 540000 350000 4500 L +220000 205000 220000 225000 2500 L +327500 372500 327500 392500 2500 L +322500 317500 322500 260000 2500 L +245000 27500 242500 27500 2500 L +175000 152500 175000 95000 2500 L +76500 280500 76000 281000 1000 L +237500 32500 237500 95000 2500 L +242500 27500 237500 32500 2500 L +492500 92500 497500 97500 2500 L +492500 80000 492500 92500 2500 L +497500 75000 492500 80000 2500 L +500000 142500 500000 162500 2500 L +497500 140000 500000 142500 2500 L +497500 117500 497500 140000 2500 L +497500 95000 497500 117500 2500 L +497500 57500 497500 75000 2500 L +582500 92500 577500 87500 2500 L +582500 102500 582500 92500 2500 L +582500 112500 582500 102500 2500 L +587500 117500 582500 112500 2500 L +592500 112500 592500 72500 2500 L +597500 117500 592500 112500 2500 L +537500 82500 537500 72500 2500 L +487500 87500 487500 72500 2500 L +402500 112500 407500 117500 2500 L +402500 72500 402500 112500 2500 L +592500 245000 592500 360000 4500 L +405000 342500 405000 360000 4500 L +475000 370000 475000 342500 4500 L +490000 330000 490000 342500 4500 L +560000 360000 560000 342500 4500 L +550000 245000 550000 292500 4500 L +602500 245000 602500 260000 4500 L +540000 292500 540000 307500 4500 L +540000 260000 540000 245000 4500 L +602500 292500 602500 307500 4500 L +602500 260000 602500 277500 4500 L +602500 277500 612500 287500 4500 L +255000 152500 255000 120000 1000 L +265000 120000 265000 57500 1000 L +250000 130000 250000 35000 1000 L +250000 35000 250000 32500 1000 L +250000 32500 255000 27500 1000 L +265000 152500 265000 130000 1000 L +260000 162500 260000 105000 1000 L +245000 105000 245000 57500 1000 L +270000 32500 265000 27500 1000 L +270000 162500 270000 32500 1000 L +275000 152500 275000 95000 1000 L +275000 95000 280000 90000 1000 L +280000 90000 280000 32500 1000 L +280000 32500 275000 27500 1000 L +280000 95000 290000 85000 1000 L +290000 85000 290000 32500 1000 L +290000 32500 285000 27500 1000 L +280000 162500 280000 95000 1000 L +285000 152500 285000 120000 1000 L +300000 120000 300000 32500 1000 L +300000 32500 295000 27500 1000 L +310000 125000 310000 32500 1000 L +310000 32500 305000 27500 1000 L +290000 162500 290000 125000 1000 L +322500 35000 315000 27500 1000 L +295000 152500 295000 137500 1000 L +322500 137500 322500 35000 1000 L +140000 255000 145000 250000 1000 L +90500 249000 90500 305500 1000 L +81500 240000 90500 249000 1000 L +140000 265000 140000 255000 1000 L +150000 265000 150000 255000 1000 L +150000 255000 155000 250000 1000 L +155000 250000 155000 125000 1000 L +160000 265000 160000 255000 1000 L +160000 255000 165000 250000 1000 L +165000 250000 165000 170000 1000 L +165000 170000 162500 167500 1000 L +162500 167500 160000 165000 1000 L +160000 165000 160000 100000 1000 L +170000 265000 170000 255000 1000 L +170000 255000 175000 250000 1000 L +175000 250000 175000 160000 1000 L +175000 160000 170000 155000 1000 L +170000 155000 170000 142500 1000 L +180000 265000 180000 255000 1000 L +180000 255000 185000 250000 1000 L +185000 250000 185000 160000 1000 L +185000 160000 180000 155000 1000 L +180000 155000 180000 132500 1000 L +190000 265000 190000 255000 1000 L +190000 255000 195000 250000 1000 L +195000 250000 195000 160000 1000 L +195000 160000 192500 157500 1000 L +192500 157500 190000 155000 1000 L +190000 155000 190000 105000 1000 L +200000 265000 200000 255000 1000 L +270000 255000 265000 250000 1000 L +265000 250000 265000 182500 1000 L +265000 182500 270000 177500 1000 L +270000 177500 270000 172500 1000 L +270000 172500 265000 167500 1000 L +265000 167500 265000 152500 1000 L +322500 245000 322500 260000 2500 L +350000 250000 350000 235000 1000 L +257500 165000 257500 200000 1000 L +257500 200000 257500 250000 1000 L +210000 250000 210000 265000 1000 L +260000 162500 257500 165000 1000 L +360000 235000 360000 250000 1000 L +360000 250000 360000 252500 1000 L +370000 290000 370000 272500 1000 L +370000 272500 365000 267500 1000 L +365000 267500 365000 220000 1000 L +385000 240000 385000 277500 1000 L +45000 5000 675000 5000 100 L +70000 315000 70000 300000 2500 L +70000 300000 72500 297500 2500 L +72500 297500 72500 287500 2500 L +72500 287500 70000 285000 2500 L +70000 285000 70000 270000 2500 L +70000 270000 72500 267500 2500 L +70000 315000 70000 385000 2500 L +105000 162500 96500 171000 1000 L +96500 171000 82500 171000 1000 L +78000 11500 79500 11500 400 L +77500 11000 78000 11500 400 L +77500 8000 77500 11000 400 L +77500 8000 78000 7500 400 L +78000 7500 79500 7500 400 L +80701 8000 80701 11000 400 L +80701 8000 81201 7500 400 L +81201 7500 82201 7500 400 L +82201 7500 82701 8000 400 L +82701 8000 82701 11000 400 L +82201 11500 82701 11000 400 L +81201 11500 82201 11500 400 L +80701 11000 81201 11500 400 L +83902 7500 83902 11500 400 L +83902 7500 85402 9000 400 L +85402 9000 86902 7500 400 L +86902 7500 86902 11500 400 L +88603 7500 88603 11500 400 L +88103 7500 90103 7500 400 L +90103 7500 90603 8000 400 L +90603 8000 90603 9000 400 L +90103 9500 90603 9000 400 L +88603 9500 90103 9500 400 L +91804 8000 91804 11000 400 L +91804 8000 92304 7500 400 L +92304 7500 93304 7500 400 L +93304 7500 93804 8000 400 L +93804 8000 93804 11000 400 L +93304 11500 93804 11000 400 L +92304 11500 93304 11500 400 L +91804 11000 92304 11500 400 L +95005 7500 95005 11500 400 L +95005 7500 95005 8000 400 L +95005 8000 97505 10500 400 L +97505 7500 97505 11500 400 L +98706 9500 100206 9500 400 L +98706 11500 100706 11500 400 L +98706 7500 98706 11500 400 L +98706 7500 100706 7500 400 L +101907 7500 101907 11500 400 L +101907 7500 101907 8000 400 L +101907 8000 104407 10500 400 L +104407 7500 104407 11500 400 L +105608 7500 107608 7500 400 L +106608 7500 106608 11500 400 L +77500 15500 77500 19000 400 L +77500 15500 78000 15000 400 L +78000 15000 79500 15000 400 L +79500 15000 80000 15500 400 L +80000 15500 80000 19000 400 L +77500 17000 80000 17000 400 L +81201 15000 82201 15000 400 L +81701 15000 81701 19000 400 L +81201 19000 82201 19000 400 L +83902 19000 85402 19000 400 L +83402 18500 83902 19000 400 L +83402 15500 83402 18500 400 L +83402 15500 83902 15000 400 L +83902 15000 85402 15000 400 L +86603 17000 88603 17000 400 L +90304 19000 91304 19000 400 L +90804 15000 90804 19000 400 L +89804 16000 90804 15000 400 L +92505 19000 93005 19000 400 L +94206 15500 94706 15000 400 L +94706 15000 95706 15000 400 L +95706 15000 96206 15500 400 L +96206 15500 96206 18500 400 L +95706 19000 96206 18500 400 L +94706 19000 95706 19000 400 L +94206 18500 94706 19000 400 L +94706 17000 96206 17000 400 L +97407 19000 97907 19000 400 L +99108 18500 99608 19000 400 L +99108 15500 99108 18500 400 L +99108 15500 99608 15000 400 L +99608 15000 100608 15000 400 L +100608 15000 101108 15500 400 L +101108 15500 101108 18500 400 L +100608 19000 101108 18500 400 L +99608 19000 100608 19000 400 L +99108 18000 101108 16000 400 L +77500 26000 78000 26500 400 L +77500 23000 78000 22500 400 L +77500 23000 77500 26000 400 L +79701 24500 81201 24500 400 L +79201 25000 79701 24500 400 L +79201 25000 79201 26000 400 L +79201 26000 79701 26500 400 L +79701 26500 81201 26500 400 L +82402 22500 82902 23000 400 L +82902 23000 82902 26000 400 L +82402 26500 82902 26000 400 L +85903 23000 86403 22500 400 L +86403 22500 87903 22500 400 L +87903 22500 88403 23000 400 L +88403 23000 88403 24000 400 L +85903 26500 88403 24000 400 L +85903 26500 88403 26500 400 L +89604 26000 90104 26500 400 L +89604 23000 89604 26000 400 L +89604 23000 90104 22500 400 L +90104 22500 91104 22500 400 L +91104 22500 91604 23000 400 L +91604 23000 91604 26000 400 L +91104 26500 91604 26000 400 L +90104 26500 91104 26500 400 L +89604 25500 91604 23500 400 L +92805 26000 93305 26500 400 L +92805 23000 92805 26000 400 L +92805 23000 93305 22500 400 L +93305 22500 94305 22500 400 L +94305 22500 94805 23000 400 L +94805 23000 94805 26000 400 L +94305 26500 94805 26000 400 L +93305 26500 94305 26500 400 L +92805 25500 94805 23500 400 L +96006 23000 96506 22500 400 L +96506 22500 97506 22500 400 L +97506 22500 98006 23000 400 L +98006 23000 98006 26000 400 L +97506 26500 98006 26000 400 L +96506 26500 97506 26500 400 L +96006 26000 96506 26500 400 L +96506 24500 98006 24500 400 L +101007 22500 101007 26500 400 L +101007 26500 102507 25000 400 L +102507 25000 104007 26500 400 L +104007 22500 104007 26500 400 L +106708 24500 107208 25000 400 L +105708 24500 106708 24500 400 L +105208 25000 105708 24500 400 L +105208 25000 105208 26000 400 L +105208 26000 105708 26500 400 L +107208 24500 107208 26000 400 L +107208 26000 107708 26500 400 L +105708 26500 106708 26500 400 L +106708 26500 107208 26000 400 L +108909 22500 108909 26000 400 L +108909 26000 109409 26500 400 L +110910 22500 110910 26000 400 L +110910 26000 111410 26500 400 L +110410 24000 111410 24000 400 L +112911 26500 114411 26500 400 L +112411 26000 112911 26500 400 L +112411 25000 112411 26000 400 L +112411 25000 112911 24500 400 L +112911 24500 113911 24500 400 L +113911 24500 114411 25000 400 L +112411 25500 114411 25500 400 L +114411 25000 114411 25500 400 L +116112 25000 116112 26500 400 L +116112 25000 116612 24500 400 L +116612 24500 117612 24500 400 L +115612 24500 116112 25000 400 L +120613 22500 120613 26500 400 L +120613 22500 122613 22500 400 L +120613 24500 122113 24500 400 L +124314 26500 125814 26500 400 L +123814 26000 124314 26500 400 L +123814 25000 123814 26000 400 L +123814 25000 124314 24500 400 L +124314 24500 125314 24500 400 L +125314 24500 125814 25000 400 L +123814 25500 125814 25500 400 L +125814 25000 125814 25500 400 L +127515 22500 127515 26000 400 L +127515 26000 128015 26500 400 L +127015 24000 128015 24000 400 L +129516 22500 129516 26000 400 L +129516 26000 130016 26500 400 L +129016 24000 130016 24000 400 L +131517 26500 133017 26500 400 L +131017 26000 131517 26500 400 L +131017 25000 131017 26000 400 L +131017 25000 131517 24500 400 L +131517 24500 132517 24500 400 L +132517 24500 133017 25000 400 L +131017 25500 133017 25500 400 L +133017 25000 133017 25500 400 L +134718 25000 134718 26500 400 L +134718 25000 135218 24500 400 L +135218 24500 136218 24500 400 L +134218 24500 134718 25000 400 L +139219 22500 139219 26500 400 L +139219 26500 141219 26500 400 L +143920 24500 144420 25000 400 L +142920 24500 143920 24500 400 L +142420 25000 142920 24500 400 L +142420 25000 142420 26000 400 L +142420 26000 142920 26500 400 L +144420 24500 144420 26000 400 L +144420 26000 144920 26500 400 L +142920 26500 143920 26500 400 L +143920 26500 144420 26000 400 L +147621 24500 148121 25000 400 L +146621 24500 147621 24500 400 L +146121 25000 146621 24500 400 L +146121 25000 146121 26000 400 L +146121 26000 146621 26500 400 L +146621 26500 147621 26500 400 L +147621 26500 148121 26000 400 L +146121 27500 146621 28000 400 L +146621 28000 147621 28000 400 L +147621 28000 148121 27500 400 L +148121 24500 148121 27500 400 L +149822 26500 151322 26500 400 L +149322 26000 149822 26500 400 L +149322 25000 149322 26000 400 L +149322 25000 149822 24500 400 L +149822 24500 150822 24500 400 L +150822 24500 151322 25000 400 L +149322 25500 151322 25500 400 L +151322 25000 151322 25500 400 L +153023 26500 154523 26500 400 L +154523 26500 155023 26000 400 L +154523 25500 155023 26000 400 L +153023 25500 154523 25500 400 L +152523 25000 153023 25500 400 L +152523 25000 153023 24500 400 L +153023 24500 154523 24500 400 L +154523 24500 155023 25000 400 L +152523 26000 153023 26500 400 L +102500 30000 102500 34000 400 L +102500 30000 104500 30000 400 L +102500 32000 104000 32000 400 L +106201 34000 107701 34000 400 L +105701 33500 106201 34000 400 L +105701 32500 105701 33500 400 L +105701 32500 106201 32000 400 L +106201 32000 107201 32000 400 L +107201 32000 107701 32500 400 L +105701 33000 107701 33000 400 L +107701 32500 107701 33000 400 L +109402 32500 109402 34000 400 L +109402 32500 109902 32000 400 L +109902 32000 110902 32000 400 L +108902 32000 109402 32500 400 L +112603 32500 112603 34000 400 L +112603 32500 113103 32000 400 L +113103 32000 113603 32000 400 L +113603 32000 114103 32500 400 L +114103 32500 114103 34000 400 L +112103 32000 112603 32500 400 L +116804 32000 117304 32500 400 L +115804 32000 116804 32000 400 L +115304 32500 115804 32000 400 L +115304 32500 115304 33500 400 L +115304 33500 115804 34000 400 L +117304 32000 117304 33500 400 L +117304 33500 117804 34000 400 L +115804 34000 116804 34000 400 L +116804 34000 117304 33500 400 L +119505 32500 119505 34000 400 L +119505 32500 120005 32000 400 L +120005 32000 120505 32000 400 L +120505 32000 121005 32500 400 L +121005 32500 121005 34000 400 L +119005 32000 119505 32500 400 L +124206 30000 124206 34000 400 L +123706 34000 124206 33500 400 L +122706 34000 123706 34000 400 L +122206 33500 122706 34000 400 L +122206 32500 122206 33500 400 L +122206 32500 122706 32000 400 L +122706 32000 123706 32000 400 L +123706 32000 124206 32500 400 L +125407 32500 125407 33500 400 L +125407 32500 125907 32000 400 L +125907 32000 126907 32000 400 L +126907 32000 127407 32500 400 L +127407 32500 127407 33500 400 L +126907 34000 127407 33500 400 L +125907 34000 126907 34000 400 L +125407 33500 125907 34000 400 L +130908 30000 130908 34000 400 L +130408 30000 132408 30000 400 L +132408 30000 132908 30500 400 L +132908 30500 132908 31500 400 L +132408 32000 132908 31500 400 L +130908 32000 132408 32000 400 L +134609 34000 136109 34000 400 L +134109 33500 134609 34000 400 L +134109 32500 134109 33500 400 L +134109 32500 134609 32000 400 L +134609 32000 135609 32000 400 L +135609 32000 136109 32500 400 L +134109 33000 136109 33000 400 L +136109 32500 136109 33000 400 L +137810 34000 139310 34000 400 L +139310 34000 139810 33500 400 L +139310 33000 139810 33500 400 L +137810 33000 139310 33000 400 L +137310 32500 137810 33000 400 L +137310 32500 137810 32000 400 L +137810 32000 139310 32000 400 L +139310 32000 139810 32500 400 L +137310 33500 137810 34000 400 L +141511 34000 143011 34000 400 L +143011 34000 143511 33500 400 L +143011 33000 143511 33500 400 L +141511 33000 143011 33000 400 L +141011 32500 141511 33000 400 L +141011 32500 141511 32000 400 L +141511 32000 143011 32000 400 L +143011 32000 143511 32500 400 L +141011 33500 141511 34000 400 L +144712 32000 144712 33500 400 L +144712 33500 145212 34000 400 L +145212 34000 146212 34000 400 L +146212 34000 146712 33500 400 L +146712 32000 146712 33500 400 L +148413 30000 148413 33500 400 L +148413 33500 148913 34000 400 L +147913 31500 148913 31500 400 L +150414 30000 150414 33500 400 L +150414 33500 150914 34000 400 L +149914 31500 150914 31500 400 L +151915 32500 151915 33500 400 L +151915 32500 152415 32000 400 L +152415 32000 153415 32000 400 L +153415 32000 153915 32500 400 L +153915 32500 153915 33500 400 L +153415 34000 153915 33500 400 L +152415 34000 153415 34000 400 L +151915 33500 152415 34000 400 L +/Color {0.329 0.545 0.329 mysetrgbcolor} def Color +/Color {0.545 0.451 0.333 mysetrgbcolor} def Color +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +335000 62500 6000 3500 PVSQ +335000 22500 6000 3500 PVR +297500 342500 6000 3500 PVSQ +297500 372500 6000 3500 PVR +415000 360000 8000 4200 PVSQ +405000 360000 8000 4200 PVR +395000 360000 8000 4200 PVR +447500 122500 6000 3500 PVSQ +447500 82500 6000 3500 PVR +397500 117500 6000 3500 PVSQ +407500 117500 6000 3500 PVR +417500 117500 6000 3500 PVR +427500 117500 6000 3500 PVR +427500 87500 6000 3500 PVR +417500 87500 6000 3500 PVR +407500 87500 6000 3500 PVR +397500 87500 6000 3500 PVR +557500 122500 6000 3500 PVSQ +557500 82500 6000 3500 PVR +537500 62500 6000 3500 PVSQ +537500 22500 6000 3500 PVR +487500 57500 6000 3500 PVSQ +497500 57500 6000 3500 PVR +507500 57500 6000 3500 PVR +517500 57500 6000 3500 PVR +517500 27500 6000 3500 PVR +507500 27500 6000 3500 PVR +497500 27500 6000 3500 PVR +487500 27500 6000 3500 PVR +467500 62500 6000 3500 PVSQ +467500 22500 6000 3500 PVR +467500 122500 6000 3500 PVSQ +467500 82500 6000 3500 PVR +537500 122500 6000 3500 PVSQ +537500 82500 6000 3500 PVR +487500 117500 6000 3500 PVSQ +497500 117500 6000 3500 PVR +507500 117500 6000 3500 PVR +517500 117500 6000 3500 PVR +517500 87500 6000 3500 PVR +507500 87500 6000 3500 PVR +497500 87500 6000 3500 PVR +487500 87500 6000 3500 PVR +397500 57500 6000 3500 PVSQ +407500 57500 6000 3500 PVR +417500 57500 6000 3500 PVR +427500 57500 6000 3500 PVR +427500 27500 6000 3500 PVR +417500 27500 6000 3500 PVR +407500 27500 6000 3500 PVR +397500 27500 6000 3500 PVR +557500 62500 6000 3500 PVSQ +557500 22500 6000 3500 PVR +157500 342500 6000 3500 PVSQ +157500 372500 6000 3500 PVR +57500 239500 6000 3500 PVSQ +57500 249500 6000 3500 PVR +530000 245000 8000 4200 PVSQ +540000 245000 8000 4200 PVR +550000 245000 8000 4200 PVR +245000 57500 6000 3500 PVSQ +255000 57500 6000 3500 PVR +265000 57500 6000 3500 PVR +275000 57500 6000 3500 PVR +285000 57500 6000 3500 PVR +295000 57500 6000 3500 PVR +305000 57500 6000 3500 PVR +315000 57500 6000 3500 PVR +315000 27500 6000 3500 PVR +305000 27500 6000 3500 PVR +295000 27500 6000 3500 PVR +285000 27500 6000 3500 PVR +275000 27500 6000 3500 PVR +265000 27500 6000 3500 PVR +255000 27500 6000 3500 PVR +245000 27500 6000 3500 PVR +317500 372500 6000 3500 PVSQ +327500 372500 6000 3500 PVR +420000 205000 7000 4200 PVSQ +430000 205000 7000 4200 PVR +420000 215000 7000 4200 PVR +430000 215000 7000 4200 PVR +420000 225000 7000 4200 PVR +430000 225000 7000 4200 PVR +420000 235000 7000 4200 PVR +430000 235000 7000 4200 PVR +140000 265000 6000 3500 PVSQ +150000 265000 6000 3500 PVR +160000 265000 6000 3500 PVR +170000 265000 6000 3500 PVR +180000 265000 6000 3500 PVR +190000 265000 6000 3500 PVR +200000 265000 6000 3500 PVR +210000 265000 6000 3500 PVR +220000 265000 6000 3500 PVR +230000 265000 6000 3500 PVR +240000 265000 6000 3500 PVR +250000 265000 6000 3500 PVR +250000 205000 6000 3500 PVR +240000 205000 6000 3500 PVR +230000 205000 6000 3500 PVR +220000 205000 6000 3500 PVR +210000 205000 6000 3500 PVR +200000 205000 6000 3500 PVR +190000 205000 6000 3500 PVR +180000 205000 6000 3500 PVR +170000 205000 6000 3500 PVR +160000 205000 6000 3500 PVR +150000 205000 6000 3500 PVR +140000 205000 6000 3500 PVR +280000 235000 6000 3500 PVSQ +290000 235000 6000 3500 PVR +300000 235000 6000 3500 PVR +310000 235000 6000 3500 PVR +320000 235000 6000 3500 PVR +330000 235000 6000 3500 PVR +340000 235000 6000 3500 PVR +350000 235000 6000 3500 PVR +360000 235000 6000 3500 PVR +370000 235000 6000 3500 PVR +380000 235000 6000 3500 PVR +390000 235000 6000 3500 PVR +390000 205000 6000 3500 PVR +380000 205000 6000 3500 PVR +370000 205000 6000 3500 PVR +360000 205000 6000 3500 PVR +350000 205000 6000 3500 PVR +340000 205000 6000 3500 PVR +330000 205000 6000 3500 PVR +320000 205000 6000 3500 PVR +310000 205000 6000 3500 PVR +300000 205000 6000 3500 PVR +290000 205000 6000 3500 PVR +280000 205000 6000 3500 PVR +77500 124000 12000 10000 PVR +77500 218000 12000 10000 PVR +82500 151000 7000 4200 PVR +72500 156000 7000 4200 PVR +82500 161000 7000 4200 PVR +72500 166000 7000 4200 PVR +82500 171000 7000 4200 PVR +72500 176000 7000 4200 PVR +82500 181000 7000 4200 PVR +72500 186000 7000 4200 PVR +82500 191000 7000 4200 PVSQ +81500 239500 6000 3500 PVSQ +81500 249500 6000 3500 PVR +495000 220000 7000 4200 PVSQ +470000 220000 7000 4200 PVR +85000 330000 6000 3500 PVSQ +85000 360000 6000 3500 PVR +582500 245000 8000 4200 PVSQ +592500 245000 8000 4200 PVR +602500 245000 8000 4200 PVR +535000 210000 6000 3500 PVSQ +545000 210000 6000 3500 PVR +355000 62500 6000 3500 PVSQ +355000 22500 6000 3500 PVR +105000 330000 7000 4200 PVSQ +115000 330000 7000 4200 PVR +172500 320000 6000 3500 PVSQ +182500 320000 6000 3500 PVR +192500 320000 6000 3500 PVR +202500 320000 6000 3500 PVR +202500 290000 6000 3500 PVR +192500 290000 6000 3500 PVR +182500 290000 6000 3500 PVR +172500 290000 6000 3500 PVR +495000 277500 7000 4200 PVSQ +470000 277500 7000 4200 PVR +570000 360000 8000 4200 PVSQ +560000 360000 8000 4200 PVR +550000 360000 8000 4200 PVR +280000 257500 6000 3500 PVSQ +280000 297500 6000 3500 PVR +116000 280000 6000 3500 PVSQ +76000 280000 6000 3500 PVR +490000 370000 6000 3500 PVSQ +475000 370000 6000 3500 PVR +530000 292500 8000 4200 PVSQ +540000 292500 8000 4200 PVR +550000 292500 8000 4200 PVR +652500 47500 6000 3500 PVSQ +652500 57500 6000 3500 PVR +652500 67500 6000 3500 PVR +652500 77500 6000 3500 PVR +652500 87500 6000 3500 PVR +652500 97500 6000 3500 PVR +652500 107500 6000 3500 PVR +652500 117500 6000 3500 PVR +652500 127500 6000 3500 PVR +652500 137500 6000 3500 PVR +652500 147500 6000 3500 PVR +652500 157500 6000 3500 PVR +652500 167500 6000 3500 PVR +652500 177500 6000 3500 PVR +652500 187500 6000 3500 PVR +652500 197500 6000 3500 PVR +652500 207500 6000 3500 PVR +652500 217500 6000 3500 PVR +652500 227500 6000 3500 PVR +652500 237500 6000 3500 PVR +652500 247500 6000 3500 PVR +652500 257500 6000 3500 PVR +652500 267500 6000 3500 PVR +652500 277500 6000 3500 PVR +652500 287500 6000 3500 PVR +652500 297500 6000 3500 PVR +652500 307500 6000 3500 PVR +652500 317500 6000 3500 PVR +652500 327500 6000 3500 PVR +652500 337500 6000 3500 PVR +652500 347500 6000 3500 PVR +652500 357500 6000 3500 PVR +642500 47500 6000 3500 PVR +642500 57500 6000 3500 PVR +642500 67500 6000 3500 PVR +642500 77500 6000 3500 PVR +642500 87500 6000 3500 PVR +642500 97500 6000 3500 PVR +642500 107500 6000 3500 PVR +642500 117500 6000 3500 PVR +642500 127500 6000 3500 PVR +642500 137500 6000 3500 PVR +642500 147500 6000 3500 PVR +642500 157500 6000 3500 PVR +642500 167500 6000 3500 PVR +642500 177500 6000 3500 PVR +642500 187500 6000 3500 PVR +642500 197500 6000 3500 PVR +642500 207500 6000 3500 PVR +642500 217500 6000 3500 PVR +642500 227500 6000 3500 PVR +642500 237500 6000 3500 PVR +642500 247500 6000 3500 PVR +642500 257500 6000 3500 PVR +642500 267500 6000 3500 PVR +642500 277500 6000 3500 PVR +642500 287500 6000 3500 PVR +642500 297500 6000 3500 PVR +642500 307500 6000 3500 PVR +642500 317500 6000 3500 PVR +642500 327500 6000 3500 PVR +642500 337500 6000 3500 PVR +642500 347500 6000 3500 PVR +642500 357500 6000 3500 PVR +632500 47500 6000 3500 PVR +632500 57500 6000 3500 PVR +632500 67500 6000 3500 PVR +632500 77500 6000 3500 PVR +632500 87500 6000 3500 PVR +632500 97500 6000 3500 PVR +632500 107500 6000 3500 PVR +632500 117500 6000 3500 PVR +632500 127500 6000 3500 PVR +632500 137500 6000 3500 PVR +632500 147500 6000 3500 PVR +632500 157500 6000 3500 PVR +632500 167500 6000 3500 PVR +632500 177500 6000 3500 PVR +632500 187500 6000 3500 PVR +632500 197500 6000 3500 PVR +632500 207500 6000 3500 PVR +632500 217500 6000 3500 PVR +632500 227500 6000 3500 PVR +632500 237500 6000 3500 PVR +632500 247500 6000 3500 PVR +632500 257500 6000 3500 PVR +632500 267500 6000 3500 PVR +632500 277500 6000 3500 PVR +632500 287500 6000 3500 PVR +632500 297500 6000 3500 PVR +632500 307500 6000 3500 PVR +632500 317500 6000 3500 PVR +632500 327500 6000 3500 PVR +632500 337500 6000 3500 PVR +632500 347500 6000 3500 PVR +632500 357500 6000 3500 PVR +662500 377500 12000 8000 PVR +662500 27500 12000 8000 PVR +332500 260000 6000 3500 PVSQ +322500 260000 6000 3500 PVR +447500 62500 6000 3500 PVSQ +447500 22500 6000 3500 PVR +300000 297500 6000 3500 PVSQ +300000 257500 6000 3500 PVR +475000 330000 6000 3500 PVSQ +490000 330000 6000 3500 PVR +55000 269500 7000 4200 PVSQ +55000 287200 7000 4200 PVR +64800 264600 7000 5200 PVR +64800 292200 7000 5200 PVR +582500 292500 8000 4200 PVSQ +592500 292500 8000 4200 PVR +602500 292500 8000 4200 PVR +562500 187500 6000 3500 PVSQ +592500 187500 6000 3500 PVR +577500 117500 6000 3500 PVSQ +587500 117500 6000 3500 PVR +597500 117500 6000 3500 PVR +607500 117500 6000 3500 PVR +607500 87500 6000 3500 PVR +597500 87500 6000 3500 PVR +587500 87500 6000 3500 PVR +577500 87500 6000 3500 PVR +582500 210000 8000 4200 PVSQ +592500 210000 8000 4200 PVR +602500 210000 8000 4200 PVR +577500 57500 6000 3500 PVSQ +587500 57500 6000 3500 PVR +597500 57500 6000 3500 PVR +607500 57500 6000 3500 PVR +607500 27500 6000 3500 PVR +597500 27500 6000 3500 PVR +587500 27500 6000 3500 PVR +577500 27500 6000 3500 PVR +322500 290000 6000 3500 PVSQ +332500 290000 6000 3500 PVR +87500 57500 6000 3500 PVSQ +97500 62500 6000 3500 PVR +87500 67500 6000 3500 PVR +97500 72500 6000 3500 PVR +87500 77500 6000 3500 PVR +97500 82500 6000 3500 PVR +87500 87500 6000 3500 PVR +97500 92500 6000 3500 PVR +62500 52500 14800 12800 PVR +62500 97600 14800 12800 PVR +74500 44500 8000 6000 PVR +74500 105600 8000 6000 PVR +360000 290000 6000 3500 PVSQ +370000 290000 6000 3500 PVR +380000 290000 6000 3500 PVR +390000 290000 6000 3500 PVR +390000 260000 6000 3500 PVR +380000 260000 6000 3500 PVR +370000 260000 6000 3500 PVR +360000 260000 6000 3500 PVR +317500 342500 6000 3500 PVSQ +327500 342500 6000 3500 PVR +137500 342500 6000 3500 PVSQ +127500 342500 6000 3500 PVR +540000 162500 6000 3500 PVSQ +535000 152500 6000 3500 PVR +530000 162500 6000 3500 PVR +525000 152500 6000 3500 PVR +520000 162500 6000 3500 PVR +515000 152500 6000 3500 PVR +510000 162500 6000 3500 PVR +505000 152500 6000 3500 PVR +500000 162500 6000 3500 PVR +495000 152500 6000 3500 PVR +490000 162500 6000 3500 PVR +485000 152500 6000 3500 PVR +480000 162500 6000 3500 PVR +475000 152500 6000 3500 PVR +470000 162500 6000 3500 PVR +465000 152500 6000 3500 PVR +460000 162500 6000 3500 PVR +455000 152500 6000 3500 PVR +450000 162500 6000 3500 PVR +445000 152500 6000 3500 PVR +440000 162500 6000 3500 PVR +435000 152500 6000 3500 PVR +430000 162500 6000 3500 PVR +425000 152500 6000 3500 PVR +420000 162500 6000 3500 PVR +415000 152500 6000 3500 PVR +410000 162500 6000 3500 PVR +405000 152500 6000 3500 PVR +400000 162500 6000 3500 PVR +395000 152500 6000 3500 PVR +390000 162500 6000 3500 PVR +385000 152500 6000 3500 PVR +380000 162500 6000 3500 PVR +375000 152500 6000 3500 PVR +370000 162500 6000 3500 PVR +365000 152500 6000 3500 PVR +340000 162500 6000 3500 PVR +335000 152500 6000 3500 PVR +330000 162500 6000 3500 PVR +325000 152500 6000 3500 PVR +320000 162500 6000 3500 PVR +315000 152500 6000 3500 PVR +310000 162500 6000 3500 PVR +305000 152500 6000 3500 PVR +300000 162500 6000 3500 PVR +295000 152500 6000 3500 PVR +290000 162500 6000 3500 PVR +285000 152500 6000 3500 PVR +280000 162500 6000 3500 PVR +275000 152500 6000 3500 PVR +270000 162500 6000 3500 PVR +265000 152500 6000 3500 PVR +260000 162500 6000 3500 PVR +255000 152500 6000 3500 PVR +250000 162500 6000 3500 PVR +245000 152500 6000 3500 PVR +240000 162500 6000 3500 PVR +235000 152500 6000 3500 PVR +230000 162500 6000 3500 PVR +225000 152500 6000 3500 PVR +220000 162500 6000 3500 PVR +215000 152500 6000 3500 PVR +210000 162500 6000 3500 PVR +205000 152500 6000 3500 PVR +200000 162500 6000 3500 PVR +195000 152500 6000 3500 PVR +190000 162500 6000 3500 PVR +185000 152500 6000 3500 PVR +180000 162500 6000 3500 PVR +175000 152500 6000 3500 PVR +170000 162500 6000 3500 PVR +165000 152500 6000 3500 PVR +573000 157500 8000 6000 PVR +352500 157500 12000 10000 PVR +132500 157500 12000 10000 PVR +137500 372500 6000 3500 PVSQ +127500 372500 6000 3500 PVR +172500 372500 6000 3500 PVSQ +182500 372500 6000 3500 PVR +192500 372500 6000 3500 PVR +202500 372500 6000 3500 PVR +212500 372500 6000 3500 PVR +222500 372500 6000 3500 PVR +232500 372500 6000 3500 PVR +242500 372500 6000 3500 PVR +252500 372500 6000 3500 PVR +262500 372500 6000 3500 PVR +272500 372500 6000 3500 PVR +282500 372500 6000 3500 PVR +282500 342500 6000 3500 PVR +272500 342500 6000 3500 PVR +262500 342500 6000 3500 PVR +252500 342500 6000 3500 PVR +242500 342500 6000 3500 PVR +232500 342500 6000 3500 PVR +222500 342500 6000 3500 PVR +212500 342500 6000 3500 PVR +202500 342500 6000 3500 PVR +192500 342500 6000 3500 PVR +182500 342500 6000 3500 PVR +172500 342500 6000 3500 PVR +115500 305500 6000 3500 PVSQ +75500 305500 6000 3500 PVR +57500 27500 12000 8000 PVR +57500 376200 12000 8000 PVR +662500 27500 12000 8000 PVR +662500 376200 12000 8000 PVR +/Color {0.498 0.498 0.498 mysetrgbcolor} def Color +475000 342500 6000 3500 PVR +490000 342500 6000 3500 PVR +560000 342500 6000 3500 PVR +602500 260000 6000 3500 PVR +540000 260000 6000 3500 PVR +540000 307500 6000 3500 PVR +602500 307500 6000 3500 PVR +592500 277500 6000 3500 PVR +612500 287500 6000 3500 PVR +540000 327500 6000 3500 PVR +395000 317500 6000 3500 PVR +475000 317500 6000 3500 PVR +622500 342500 6000 3500 PVR +612500 267500 6000 3500 PVR +592500 222500 6000 3500 PVR +462500 342500 6000 3500 PVR +562500 220000 6000 3500 PVR +622500 102500 6000 3500 PVR +647500 102500 6000 3500 PVR +567500 107500 6000 3500 PVR +597500 47500 6000 3500 PVR +537500 47500 6000 3500 PVR +487500 47500 6000 3500 PVR +517500 40000 6000 3500 PVR +577500 40000 6000 3500 PVR +402500 72500 6000 3500 PVR +487500 72500 6000 3500 PVR +537500 72500 6000 3500 PVR +592500 72500 6000 3500 PVR +497500 95000 6000 3500 PVR +140000 95000 6000 3500 PVR +175000 95000 6000 3500 PVR +237500 95000 6000 3500 PVR +322500 317500 6000 3500 PVR +327500 392500 6000 3500 PVR +240000 245000 6000 3500 PVR +270000 245000 6000 3500 PVR +140000 245000 6000 3500 PVR +130000 280000 6000 3500 PVR +130000 290000 6000 3500 PVR +252500 287500 4000 2000 PVR +427500 100000 6000 3500 PVR +525000 100000 6000 3500 PVR +315000 100000 6000 3500 PVR +447500 95000 6000 3500 PVR +202500 305000 6000 3500 PVR +127500 392500 6000 3500 PVR +212500 392500 6000 3500 PVR +272500 392500 6000 3500 PVR +360000 317500 6000 3500 PVR +77500 392500 6000 3500 PVR +487500 107500 4000 2000 PVR +620000 52500 4000 2000 PVR +622500 87500 4000 2000 PVR +537500 107500 4000 2000 PVR +637500 172500 4000 2000 PVR +262500 172500 4000 2000 PVR +597500 65000 4000 2000 PVR +407500 47500 6000 3500 PVR +205000 82500 4000 2000 PVR +402500 235000 4000 2000 PVR +295000 130000 4000 2000 PVR +335000 52500 4000 2000 PVR +527500 22500 4000 2000 PVR +615000 15000 4000 2000 PVR +477500 57500 4000 2000 PVR +622500 35000 4000 2000 PVR +647500 20000 4000 2000 PVR +557500 15000 4000 2000 PVR +502500 15000 4000 2000 PVR +547500 142500 4000 2000 PVR +610000 142500 4000 2000 PVR +615000 130000 4000 2000 PVR +555000 135000 4000 2000 PVR +195000 57500 4000 2000 PVR +242500 360000 4000 2000 PVR +210000 67500 4000 2000 PVR +115000 112500 4000 2000 PVR +507500 107500 4000 2000 PVR +417500 135000 4000 2000 PVR +200000 62500 4000 2000 PVR +512500 80000 4000 2000 PVR +557500 237500 4000 2000 PVR +447500 30000 4000 2000 PVR +355000 130000 4000 2000 PVR +272500 352500 6000 3500 PVR +95000 245000 4000 2000 PVR +115000 245000 4000 2000 PVR +582500 285000 4000 2000 PVR +110000 367500 4000 2000 PVR +182500 385000 4000 2000 PVR +252500 385000 4000 2000 PVR +212500 352500 6000 3500 PVR +232500 352500 6000 3500 PVR +192500 360000 4000 2000 PVR +417500 107500 4000 2000 PVR +447500 107500 4000 2000 PVR +472500 107500 4000 2000 PVR +467500 15000 4000 2000 PVR +255000 120000 4000 2000 PVR +265000 120000 4000 2000 PVR +265000 130000 4000 2000 PVR +250000 130000 4000 2000 PVR +260000 105000 4000 2000 PVR +245000 105000 4000 2000 PVR +285000 120000 4000 2000 PVR +300000 120000 4000 2000 PVR +290000 125000 4000 2000 PVR +310000 125000 4000 2000 PVR +295000 137500 4000 2000 PVR +322500 137500 4000 2000 PVR +145000 137500 4000 2000 PVR +155000 125000 4000 2000 PVR +160000 100000 4000 2000 PVR +300000 100000 4000 2000 PVR +170000 142500 4000 2000 PVR +280000 142500 4000 2000 PVR +180000 132500 4000 2000 PVR +275000 130000 4000 2000 PVR +190000 105000 4000 2000 PVR +270000 105000 4000 2000 PVR +200000 255000 4000 2000 PVR +270000 255000 4000 2000 PVR +322500 245000 6000 3500 PVR +350000 250000 4000 2000 PVR +202500 282500 4000 2000 PVR +220000 282500 4000 2000 PVR +257500 250000 4000 2000 PVR +210000 250000 4000 2000 PVR +257500 197500 4000 2000 PVR +220000 225000 6000 3500 PVR +240000 225000 6000 3500 PVR +300000 212500 4000 2000 PVR +215000 212500 4000 2000 PVR +310000 217500 4000 2000 PVR +225000 217500 4000 2000 PVR +225000 195000 4000 2000 PVR +315000 192500 4000 2000 PVR +150000 187500 4000 2000 PVR +325000 187500 4000 2000 PVR +235000 187500 4000 2000 PVR +360000 252500 4000 2000 PVR +292500 222500 4000 2000 PVR +170000 217500 4000 2000 PVR +210000 230000 4000 2000 PVR +390000 225000 4000 2000 PVR +257500 277500 4000 2000 PVR +385000 277500 4000 2000 PVR +155000 282500 4000 2000 PVR +340000 282500 4000 2000 PVR +230000 182500 4000 2000 PVR +245000 182500 4000 2000 PVR +227500 90000 4000 2000 PVR +255000 90000 4000 2000 PVR +250000 172500 4000 2000 PVR +190000 175000 4000 2000 PVR +180000 170000 4000 2000 PVR +430000 197500 4000 2000 PVR +332500 270000 6000 3500 PVR +290000 265000 4000 2000 PVR +480000 265000 4000 2000 PVR +470000 290000 6000 3500 PVR +462500 282500 4000 2000 PVR +300000 177500 4000 2000 PVR +485000 177500 4000 2000 PVR +305000 85000 4000 2000 PVR +275000 85000 4000 2000 PVR +330000 80000 4000 2000 PVR +285000 80000 4000 2000 PVR +350000 220000 4000 2000 PVR +365000 220000 4000 2000 PVR +355000 385000 4000 2000 PVR +297500 352500 6000 3500 PVR +375000 360000 4000 2000 PVR +107500 147500 4000 2000 PVR +122000 160500 4000 2000 PVR +450000 182500 4000 2000 PVR +262500 352500 4000 2000 PVR +327500 352500 4000 2000 PVR +400000 225000 4000 2000 PVR +405000 215000 4000 2000 PVR +410000 205000 4000 2000 PVR +105000 270000 4000 2000 PVR +415000 272500 4000 2000 PVR +402500 250000 4000 2000 PVR +222500 310000 4000 2000 PVR +402500 310000 4000 2000 PVR +520000 260000 4000 2000 PVR +520000 337500 4000 2000 PVR +210000 322500 4000 2000 PVR +570000 322500 4000 2000 PVR +570000 245000 4000 2000 PVR +530000 327500 4000 2000 PVR +282500 330000 4000 2000 PVR +327500 305000 4000 2000 PVR +49500 330000 4000 2000 PVR +130000 255000 6000 3500 PVR +76500 257000 4000 2000 PVR +90500 305500 4000 2000 PVR +592500 360000 6000 3500 PVR +405000 342500 6000 3500 PVR +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +335000 62500 800 400 DH +335000 22500 800 400 DH +297500 342500 800 400 DH +297500 372500 800 400 DH +415000 360000 800 400 DH +405000 360000 800 400 DH +395000 360000 800 400 DH +447500 122500 800 400 DH +447500 82500 800 400 DH +397500 117500 800 400 DH +407500 117500 800 400 DH +417500 117500 800 400 DH +427500 117500 800 400 DH +427500 87500 800 400 DH +417500 87500 800 400 DH +407500 87500 800 400 DH +397500 87500 800 400 DH +557500 122500 800 400 DH +557500 82500 800 400 DH +537500 62500 800 400 DH +537500 22500 800 400 DH +487500 57500 800 400 DH +497500 57500 800 400 DH +507500 57500 800 400 DH +517500 57500 800 400 DH +517500 27500 800 400 DH +507500 27500 800 400 DH +497500 27500 800 400 DH +487500 27500 800 400 DH +467500 62500 800 400 DH +467500 22500 800 400 DH +467500 122500 800 400 DH +467500 82500 800 400 DH +537500 122500 800 400 DH +537500 82500 800 400 DH +487500 117500 800 400 DH +497500 117500 800 400 DH +507500 117500 800 400 DH +517500 117500 800 400 DH +517500 87500 800 400 DH +507500 87500 800 400 DH +497500 87500 800 400 DH +487500 87500 800 400 DH +397500 57500 800 400 DH +407500 57500 800 400 DH +417500 57500 800 400 DH +427500 57500 800 400 DH +427500 27500 800 400 DH +417500 27500 800 400 DH +407500 27500 800 400 DH +397500 27500 800 400 DH +557500 62500 800 400 DH +557500 22500 800 400 DH +157500 342500 800 400 DH +157500 372500 800 400 DH +57500 239500 800 400 DH +57500 249500 800 400 DH +530000 245000 800 400 DH +540000 245000 800 400 DH +550000 245000 800 400 DH +245000 57500 800 400 DH +255000 57500 800 400 DH +265000 57500 800 400 DH +275000 57500 800 400 DH +285000 57500 800 400 DH +295000 57500 800 400 DH +305000 57500 800 400 DH +315000 57500 800 400 DH +315000 27500 800 400 DH +305000 27500 800 400 DH +295000 27500 800 400 DH +285000 27500 800 400 DH +275000 27500 800 400 DH +265000 27500 800 400 DH +255000 27500 800 400 DH +245000 27500 800 400 DH +317500 372500 800 400 DH +327500 372500 800 400 DH +420000 205000 800 400 DH +430000 205000 800 400 DH +420000 215000 800 400 DH +430000 215000 800 400 DH +420000 225000 800 400 DH +430000 225000 800 400 DH +420000 235000 800 400 DH +430000 235000 800 400 DH +140000 265000 800 400 DH +150000 265000 800 400 DH +160000 265000 800 400 DH +170000 265000 800 400 DH +180000 265000 800 400 DH +190000 265000 800 400 DH +200000 265000 800 400 DH +210000 265000 800 400 DH +220000 265000 800 400 DH +230000 265000 800 400 DH +240000 265000 800 400 DH +250000 265000 800 400 DH +250000 205000 800 400 DH +240000 205000 800 400 DH +230000 205000 800 400 DH +220000 205000 800 400 DH +210000 205000 800 400 DH +200000 205000 800 400 DH +190000 205000 800 400 DH +180000 205000 800 400 DH +170000 205000 800 400 DH +160000 205000 800 400 DH +150000 205000 800 400 DH +140000 205000 800 400 DH +280000 235000 800 400 DH +290000 235000 800 400 DH +300000 235000 800 400 DH +310000 235000 800 400 DH +320000 235000 800 400 DH +330000 235000 800 400 DH +340000 235000 800 400 DH +350000 235000 800 400 DH +360000 235000 800 400 DH +370000 235000 800 400 DH +380000 235000 800 400 DH +390000 235000 800 400 DH +390000 205000 800 400 DH +380000 205000 800 400 DH +370000 205000 800 400 DH +360000 205000 800 400 DH +350000 205000 800 400 DH +340000 205000 800 400 DH +330000 205000 800 400 DH +320000 205000 800 400 DH +310000 205000 800 400 DH +300000 205000 800 400 DH +290000 205000 800 400 DH +280000 205000 800 400 DH +77500 124000 800 400 DH +77500 218000 800 400 DH +82500 151000 800 400 DH +72500 156000 800 400 DH +82500 161000 800 400 DH +72500 166000 800 400 DH +82500 171000 800 400 DH +72500 176000 800 400 DH +82500 181000 800 400 DH +72500 186000 800 400 DH +82500 191000 800 400 DH +81500 239500 800 400 DH +81500 249500 800 400 DH +495000 220000 800 400 DH +470000 220000 800 400 DH +85000 330000 800 400 DH +85000 360000 800 400 DH +582500 245000 800 400 DH +592500 245000 800 400 DH +602500 245000 800 400 DH +535000 210000 800 400 DH +545000 210000 800 400 DH +355000 62500 800 400 DH +355000 22500 800 400 DH +105000 330000 800 400 DH +115000 330000 800 400 DH +172500 320000 800 400 DH +182500 320000 800 400 DH +192500 320000 800 400 DH +202500 320000 800 400 DH +202500 290000 800 400 DH +192500 290000 800 400 DH +182500 290000 800 400 DH +172500 290000 800 400 DH +495000 277500 800 400 DH +470000 277500 800 400 DH +570000 360000 800 400 DH +560000 360000 800 400 DH +550000 360000 800 400 DH +280000 257500 800 400 DH +280000 297500 800 400 DH +116000 280000 800 400 DH +76000 280000 800 400 DH +490000 370000 800 400 DH +475000 370000 800 400 DH +530000 292500 800 400 DH +540000 292500 800 400 DH +550000 292500 800 400 DH +652500 47500 800 400 DH +652500 57500 800 400 DH +652500 67500 800 400 DH +652500 77500 800 400 DH +652500 87500 800 400 DH +652500 97500 800 400 DH +652500 107500 800 400 DH +652500 117500 800 400 DH +652500 127500 800 400 DH +652500 137500 800 400 DH +652500 147500 800 400 DH +652500 157500 800 400 DH +652500 167500 800 400 DH +652500 177500 800 400 DH +652500 187500 800 400 DH +652500 197500 800 400 DH +652500 207500 800 400 DH +652500 217500 800 400 DH +652500 227500 800 400 DH +652500 237500 800 400 DH +652500 247500 800 400 DH +652500 257500 800 400 DH +652500 267500 800 400 DH +652500 277500 800 400 DH +652500 287500 800 400 DH +652500 297500 800 400 DH +652500 307500 800 400 DH +652500 317500 800 400 DH +652500 327500 800 400 DH +652500 337500 800 400 DH +652500 347500 800 400 DH +652500 357500 800 400 DH +642500 47500 800 400 DH +642500 57500 800 400 DH +642500 67500 800 400 DH +642500 77500 800 400 DH +642500 87500 800 400 DH +642500 97500 800 400 DH +642500 107500 800 400 DH +642500 117500 800 400 DH +642500 127500 800 400 DH +642500 137500 800 400 DH +642500 147500 800 400 DH +642500 157500 800 400 DH +642500 167500 800 400 DH +642500 177500 800 400 DH +642500 187500 800 400 DH +642500 197500 800 400 DH +642500 207500 800 400 DH +642500 217500 800 400 DH +642500 227500 800 400 DH +642500 237500 800 400 DH +642500 247500 800 400 DH +642500 257500 800 400 DH +642500 267500 800 400 DH +642500 277500 800 400 DH +642500 287500 800 400 DH +642500 297500 800 400 DH +642500 307500 800 400 DH +642500 317500 800 400 DH +642500 327500 800 400 DH +642500 337500 800 400 DH +642500 347500 800 400 DH +642500 357500 800 400 DH +632500 47500 800 400 DH +632500 57500 800 400 DH +632500 67500 800 400 DH +632500 77500 800 400 DH +632500 87500 800 400 DH +632500 97500 800 400 DH +632500 107500 800 400 DH +632500 117500 800 400 DH +632500 127500 800 400 DH +632500 137500 800 400 DH +632500 147500 800 400 DH +632500 157500 800 400 DH +632500 167500 800 400 DH +632500 177500 800 400 DH +632500 187500 800 400 DH +632500 197500 800 400 DH +632500 207500 800 400 DH +632500 217500 800 400 DH +632500 227500 800 400 DH +632500 237500 800 400 DH +632500 247500 800 400 DH +632500 257500 800 400 DH +632500 267500 800 400 DH +632500 277500 800 400 DH +632500 287500 800 400 DH +632500 297500 800 400 DH +632500 307500 800 400 DH +632500 317500 800 400 DH +632500 327500 800 400 DH +632500 337500 800 400 DH +632500 347500 800 400 DH +632500 357500 800 400 DH +662500 377500 800 400 DH +662500 27500 800 400 DH +332500 260000 800 400 DH +322500 260000 800 400 DH +447500 62500 800 400 DH +447500 22500 800 400 DH +300000 297500 800 400 DH +300000 257500 800 400 DH +475000 330000 800 400 DH +490000 330000 800 400 DH +55000 269500 800 400 DH +55000 287200 800 400 DH +64800 264600 800 400 DH +64800 292200 800 400 DH +582500 292500 800 400 DH +592500 292500 800 400 DH +602500 292500 800 400 DH +562500 187500 800 400 DH +592500 187500 800 400 DH +577500 117500 800 400 DH +587500 117500 800 400 DH +597500 117500 800 400 DH +607500 117500 800 400 DH +607500 87500 800 400 DH +597500 87500 800 400 DH +587500 87500 800 400 DH +577500 87500 800 400 DH +582500 210000 800 400 DH +592500 210000 800 400 DH +602500 210000 800 400 DH +577500 57500 800 400 DH +587500 57500 800 400 DH +597500 57500 800 400 DH +607500 57500 800 400 DH +607500 27500 800 400 DH +597500 27500 800 400 DH +587500 27500 800 400 DH +577500 27500 800 400 DH +322500 290000 800 400 DH +332500 290000 800 400 DH +87500 57500 800 400 DH +97500 62500 800 400 DH +87500 67500 800 400 DH +97500 72500 800 400 DH +87500 77500 800 400 DH +97500 82500 800 400 DH +87500 87500 800 400 DH +97500 92500 800 400 DH +62500 52500 800 400 DH +62500 97600 800 400 DH +74500 44500 800 400 DH +74500 105600 800 400 DH +360000 290000 800 400 DH +370000 290000 800 400 DH +380000 290000 800 400 DH +390000 290000 800 400 DH +390000 260000 800 400 DH +380000 260000 800 400 DH +370000 260000 800 400 DH +360000 260000 800 400 DH +317500 342500 800 400 DH +327500 342500 800 400 DH +137500 342500 800 400 DH +127500 342500 800 400 DH +540000 162500 800 400 DH +535000 152500 800 400 DH +530000 162500 800 400 DH +525000 152500 800 400 DH +520000 162500 800 400 DH +515000 152500 800 400 DH +510000 162500 800 400 DH +505000 152500 800 400 DH +500000 162500 800 400 DH +495000 152500 800 400 DH +490000 162500 800 400 DH +485000 152500 800 400 DH +480000 162500 800 400 DH +475000 152500 800 400 DH +470000 162500 800 400 DH +465000 152500 800 400 DH +460000 162500 800 400 DH +455000 152500 800 400 DH +450000 162500 800 400 DH +445000 152500 800 400 DH +440000 162500 800 400 DH +435000 152500 800 400 DH +430000 162500 800 400 DH +425000 152500 800 400 DH +420000 162500 800 400 DH +415000 152500 800 400 DH +410000 162500 800 400 DH +405000 152500 800 400 DH +400000 162500 800 400 DH +395000 152500 800 400 DH +390000 162500 800 400 DH +385000 152500 800 400 DH +380000 162500 800 400 DH +375000 152500 800 400 DH +370000 162500 800 400 DH +365000 152500 800 400 DH +340000 162500 800 400 DH +335000 152500 800 400 DH +330000 162500 800 400 DH +325000 152500 800 400 DH +320000 162500 800 400 DH +315000 152500 800 400 DH +310000 162500 800 400 DH +305000 152500 800 400 DH +300000 162500 800 400 DH +295000 152500 800 400 DH +290000 162500 800 400 DH +285000 152500 800 400 DH +280000 162500 800 400 DH +275000 152500 800 400 DH +270000 162500 800 400 DH +265000 152500 800 400 DH +260000 162500 800 400 DH +255000 152500 800 400 DH +250000 162500 800 400 DH +245000 152500 800 400 DH +240000 162500 800 400 DH +235000 152500 800 400 DH +230000 162500 800 400 DH +225000 152500 800 400 DH +220000 162500 800 400 DH +215000 152500 800 400 DH +210000 162500 800 400 DH +205000 152500 800 400 DH +200000 162500 800 400 DH +195000 152500 800 400 DH +190000 162500 800 400 DH +185000 152500 800 400 DH +180000 162500 800 400 DH +175000 152500 800 400 DH +170000 162500 800 400 DH +165000 152500 800 400 DH +573000 157500 800 400 DH +352500 157500 800 400 DH +132500 157500 800 400 DH +137500 372500 800 400 DH +127500 372500 800 400 DH +172500 372500 800 400 DH +182500 372500 800 400 DH +192500 372500 800 400 DH +202500 372500 800 400 DH +212500 372500 800 400 DH +222500 372500 800 400 DH +232500 372500 800 400 DH +242500 372500 800 400 DH +252500 372500 800 400 DH +262500 372500 800 400 DH +272500 372500 800 400 DH +282500 372500 800 400 DH +282500 342500 800 400 DH +272500 342500 800 400 DH +262500 342500 800 400 DH +252500 342500 800 400 DH +242500 342500 800 400 DH +232500 342500 800 400 DH +222500 342500 800 400 DH +212500 342500 800 400 DH +202500 342500 800 400 DH +192500 342500 800 400 DH +182500 342500 800 400 DH +172500 342500 800 400 DH +115500 305500 800 400 DH +75500 305500 800 400 DH +57500 27500 800 400 DH +57500 376200 800 400 DH +662500 27500 800 400 DH +662500 376200 800 400 DH +/Color {0.498 0.498 0.498 mysetrgbcolor} def Color +475000 342500 800 400 DH +490000 342500 800 400 DH +560000 342500 800 400 DH +602500 260000 800 400 DH +540000 260000 800 400 DH +540000 307500 800 400 DH +602500 307500 800 400 DH +592500 277500 800 400 DH +612500 287500 800 400 DH +540000 327500 800 400 DH +395000 317500 800 400 DH +475000 317500 800 400 DH +622500 342500 800 400 DH +612500 267500 800 400 DH +592500 222500 800 400 DH +462500 342500 800 400 DH +562500 220000 800 400 DH +622500 102500 800 400 DH +647500 102500 800 400 DH +567500 107500 800 400 DH +597500 47500 800 400 DH +537500 47500 800 400 DH +487500 47500 800 400 DH +517500 40000 800 400 DH +577500 40000 800 400 DH +402500 72500 800 400 DH +487500 72500 800 400 DH +537500 72500 800 400 DH +592500 72500 800 400 DH +497500 95000 800 400 DH +140000 95000 800 400 DH +175000 95000 800 400 DH +237500 95000 800 400 DH +322500 317500 800 400 DH +327500 392500 800 400 DH +240000 245000 800 400 DH +270000 245000 800 400 DH +140000 245000 800 400 DH +130000 280000 800 400 DH +130000 290000 800 400 DH +252500 287500 800 400 DH +427500 100000 800 400 DH +525000 100000 800 400 DH +315000 100000 800 400 DH +447500 95000 800 400 DH +202500 305000 800 400 DH +127500 392500 800 400 DH +212500 392500 800 400 DH +272500 392500 800 400 DH +360000 317500 800 400 DH +77500 392500 800 400 DH +487500 107500 800 400 DH +620000 52500 800 400 DH +622500 87500 800 400 DH +537500 107500 800 400 DH +637500 172500 800 400 DH +262500 172500 800 400 DH +597500 65000 800 400 DH +407500 47500 800 400 DH +205000 82500 800 400 DH +402500 235000 800 400 DH +295000 130000 800 400 DH +335000 52500 800 400 DH +527500 22500 800 400 DH +615000 15000 800 400 DH +477500 57500 800 400 DH +622500 35000 800 400 DH +647500 20000 800 400 DH +557500 15000 800 400 DH +502500 15000 800 400 DH +547500 142500 800 400 DH +610000 142500 800 400 DH +615000 130000 800 400 DH +555000 135000 800 400 DH +195000 57500 800 400 DH +242500 360000 800 400 DH +210000 67500 800 400 DH +115000 112500 800 400 DH +507500 107500 800 400 DH +417500 135000 800 400 DH +200000 62500 800 400 DH +512500 80000 800 400 DH +557500 237500 800 400 DH +447500 30000 800 400 DH +355000 130000 800 400 DH +272500 352500 800 400 DH +95000 245000 800 400 DH +115000 245000 800 400 DH +582500 285000 800 400 DH +110000 367500 800 400 DH +182500 385000 800 400 DH +252500 385000 800 400 DH +212500 352500 800 400 DH +232500 352500 800 400 DH +192500 360000 800 400 DH +417500 107500 800 400 DH +447500 107500 800 400 DH +472500 107500 800 400 DH +467500 15000 800 400 DH +255000 120000 800 400 DH +265000 120000 800 400 DH +265000 130000 800 400 DH +250000 130000 800 400 DH +260000 105000 800 400 DH +245000 105000 800 400 DH +285000 120000 800 400 DH +300000 120000 800 400 DH +290000 125000 800 400 DH +310000 125000 800 400 DH +295000 137500 800 400 DH +322500 137500 800 400 DH +145000 137500 800 400 DH +155000 125000 800 400 DH +160000 100000 800 400 DH +300000 100000 800 400 DH +170000 142500 800 400 DH +280000 142500 800 400 DH +180000 132500 800 400 DH +275000 130000 800 400 DH +190000 105000 800 400 DH +270000 105000 800 400 DH +200000 255000 800 400 DH +270000 255000 800 400 DH +322500 245000 800 400 DH +350000 250000 800 400 DH +202500 282500 800 400 DH +220000 282500 800 400 DH +257500 250000 800 400 DH +210000 250000 800 400 DH +257500 197500 800 400 DH +220000 225000 800 400 DH +240000 225000 800 400 DH +300000 212500 800 400 DH +215000 212500 800 400 DH +310000 217500 800 400 DH +225000 217500 800 400 DH +225000 195000 800 400 DH +315000 192500 800 400 DH +150000 187500 800 400 DH +325000 187500 800 400 DH +235000 187500 800 400 DH +360000 252500 800 400 DH +292500 222500 800 400 DH +170000 217500 800 400 DH +210000 230000 800 400 DH +390000 225000 800 400 DH +257500 277500 800 400 DH +385000 277500 800 400 DH +155000 282500 800 400 DH +340000 282500 800 400 DH +230000 182500 800 400 DH +245000 182500 800 400 DH +227500 90000 800 400 DH +255000 90000 800 400 DH +250000 172500 800 400 DH +190000 175000 800 400 DH +180000 170000 800 400 DH +430000 197500 800 400 DH +332500 270000 800 400 DH +290000 265000 800 400 DH +480000 265000 800 400 DH +470000 290000 800 400 DH +462500 282500 800 400 DH +300000 177500 800 400 DH +485000 177500 800 400 DH +305000 85000 800 400 DH +275000 85000 800 400 DH +330000 80000 800 400 DH +285000 80000 800 400 DH +350000 220000 800 400 DH +365000 220000 800 400 DH +355000 385000 800 400 DH +297500 352500 800 400 DH +375000 360000 800 400 DH +107500 147500 800 400 DH +122000 160500 800 400 DH +450000 182500 800 400 DH +262500 352500 800 400 DH +327500 352500 800 400 DH +400000 225000 800 400 DH +405000 215000 800 400 DH +410000 205000 800 400 DH +105000 270000 800 400 DH +415000 272500 800 400 DH +402500 250000 800 400 DH +222500 310000 800 400 DH +402500 310000 800 400 DH +520000 260000 800 400 DH +520000 337500 800 400 DH +210000 322500 800 400 DH +570000 322500 800 400 DH +570000 245000 800 400 DH +530000 327500 800 400 DH +282500 330000 800 400 DH +327500 305000 800 400 DH +49500 330000 800 400 DH +130000 255000 800 400 DH +76500 257000 800 400 DH +90500 305500 800 400 DH +592500 360000 800 400 DH +405000 342500 800 400 DH +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/doc/aic_frontmask.ps b/doc/aic_frontmask.ps new file mode 100644 index 0000000..fa9aea2 --- /dev/null +++ b/doc/aic_frontmask.ps @@ -0,0 +1,916 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), solder mask component side +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray {neg 1.0 add setgray} def +/mysetrgbcolor { + /blue exch def /green exch def /red exch def + 1.0 red sub 1.0 green sub 1.0 blue sub setrgbcolor +} def +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 160 moveto 451 160 lineto 451 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,410400) +% PCBOFFSET(214900,223900), PCBSCALE(1.00000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 223900 translate +1.000 1.000 scale +410800 0 translate +90 rotate +0 410800 translate +1 -1 scale +400 400 translate +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +/Color {0.302 0.302 0.302 mysetrgbcolor} def Color +-400 -400 710400 410400 200 Alignment +335000 62500 6600 CLRPVSQ +335000 22500 6600 CLRPVR +297500 342500 6600 CLRPVSQ +297500 372500 6600 CLRPVR +415000 360000 8600 CLRPVSQ +405000 360000 8600 CLRPVR +395000 360000 8600 CLRPVR +447500 122500 6600 CLRPVSQ +447500 82500 6600 CLRPVR +397500 117500 6600 CLRPVSQ +407500 117500 6600 CLRPVR +417500 117500 6600 CLRPVR +427500 117500 6600 CLRPVR +427500 87500 6600 CLRPVR +417500 87500 6600 CLRPVR +407500 87500 6600 CLRPVR +397500 87500 6600 CLRPVR +557500 122500 6600 CLRPVSQ +557500 82500 6600 CLRPVR +537500 62500 6600 CLRPVSQ +537500 22500 6600 CLRPVR +487500 57500 6600 CLRPVSQ +497500 57500 6600 CLRPVR +507500 57500 6600 CLRPVR +517500 57500 6600 CLRPVR +517500 27500 6600 CLRPVR +507500 27500 6600 CLRPVR +497500 27500 6600 CLRPVR +487500 27500 6600 CLRPVR +467500 62500 6600 CLRPVSQ +467500 22500 6600 CLRPVR +467500 122500 6600 CLRPVSQ +467500 82500 6600 CLRPVR +537500 122500 6600 CLRPVSQ +537500 82500 6600 CLRPVR +487500 117500 6600 CLRPVSQ +497500 117500 6600 CLRPVR +507500 117500 6600 CLRPVR +517500 117500 6600 CLRPVR +517500 87500 6600 CLRPVR +507500 87500 6600 CLRPVR +497500 87500 6600 CLRPVR +487500 87500 6600 CLRPVR +397500 57500 6600 CLRPVSQ +407500 57500 6600 CLRPVR +417500 57500 6600 CLRPVR +427500 57500 6600 CLRPVR +427500 27500 6600 CLRPVR +417500 27500 6600 CLRPVR +407500 27500 6600 CLRPVR +397500 27500 6600 CLRPVR +557500 62500 6600 CLRPVSQ +557500 22500 6600 CLRPVR +157500 342500 6600 CLRPVSQ +157500 372500 6600 CLRPVR +57500 239500 6600 CLRPVSQ +57500 249500 6600 CLRPVR +530000 245000 8600 CLRPVSQ +540000 245000 8600 CLRPVR +550000 245000 8600 CLRPVR +245000 57500 6600 CLRPVSQ +255000 57500 6600 CLRPVR +265000 57500 6600 CLRPVR +275000 57500 6600 CLRPVR +285000 57500 6600 CLRPVR +295000 57500 6600 CLRPVR +305000 57500 6600 CLRPVR +315000 57500 6600 CLRPVR +315000 27500 6600 CLRPVR +305000 27500 6600 CLRPVR +295000 27500 6600 CLRPVR +285000 27500 6600 CLRPVR +275000 27500 6600 CLRPVR +265000 27500 6600 CLRPVR +255000 27500 6600 CLRPVR +245000 27500 6600 CLRPVR +317500 372500 6600 CLRPVSQ +327500 372500 6600 CLRPVR +420000 205000 7600 CLRPVSQ +430000 205000 7600 CLRPVR +420000 215000 7600 CLRPVR +430000 215000 7600 CLRPVR +420000 225000 7600 CLRPVR +430000 225000 7600 CLRPVR +420000 235000 7600 CLRPVR +430000 235000 7600 CLRPVR +140000 265000 6600 CLRPVSQ +150000 265000 6600 CLRPVR +160000 265000 6600 CLRPVR +170000 265000 6600 CLRPVR +180000 265000 6600 CLRPVR +190000 265000 6600 CLRPVR +200000 265000 6600 CLRPVR +210000 265000 6600 CLRPVR +220000 265000 6600 CLRPVR +230000 265000 6600 CLRPVR +240000 265000 6600 CLRPVR +250000 265000 6600 CLRPVR +250000 205000 6600 CLRPVR +240000 205000 6600 CLRPVR +230000 205000 6600 CLRPVR +220000 205000 6600 CLRPVR +210000 205000 6600 CLRPVR +200000 205000 6600 CLRPVR +190000 205000 6600 CLRPVR +180000 205000 6600 CLRPVR +170000 205000 6600 CLRPVR +160000 205000 6600 CLRPVR +150000 205000 6600 CLRPVR +140000 205000 6600 CLRPVR +280000 235000 6600 CLRPVSQ +290000 235000 6600 CLRPVR +300000 235000 6600 CLRPVR +310000 235000 6600 CLRPVR +320000 235000 6600 CLRPVR +330000 235000 6600 CLRPVR +340000 235000 6600 CLRPVR +350000 235000 6600 CLRPVR +360000 235000 6600 CLRPVR +370000 235000 6600 CLRPVR +380000 235000 6600 CLRPVR +390000 235000 6600 CLRPVR +390000 205000 6600 CLRPVR +380000 205000 6600 CLRPVR +370000 205000 6600 CLRPVR +360000 205000 6600 CLRPVR +350000 205000 6600 CLRPVR +340000 205000 6600 CLRPVR +330000 205000 6600 CLRPVR +320000 205000 6600 CLRPVR +310000 205000 6600 CLRPVR +300000 205000 6600 CLRPVR +290000 205000 6600 CLRPVR +280000 205000 6600 CLRPVR +77500 124000 12600 CLRPVR +77500 218000 12600 CLRPVR +82500 151000 7600 CLRPVR +72500 156000 7600 CLRPVR +82500 161000 7600 CLRPVR +72500 166000 7600 CLRPVR +82500 171000 7600 CLRPVR +72500 176000 7600 CLRPVR +82500 181000 7600 CLRPVR +72500 186000 7600 CLRPVR +82500 191000 7600 CLRPVSQ +81500 239500 6600 CLRPVSQ +81500 249500 6600 CLRPVR +495000 220000 7600 CLRPVSQ +470000 220000 7600 CLRPVR +85000 330000 6600 CLRPVSQ +85000 360000 6600 CLRPVR +582500 245000 8600 CLRPVSQ +592500 245000 8600 CLRPVR +602500 245000 8600 CLRPVR +535000 210000 6600 CLRPVSQ +545000 210000 6600 CLRPVR +355000 62500 6600 CLRPVSQ +355000 22500 6600 CLRPVR +105000 330000 7600 CLRPVSQ +115000 330000 7600 CLRPVR +172500 320000 6600 CLRPVSQ +182500 320000 6600 CLRPVR +192500 320000 6600 CLRPVR +202500 320000 6600 CLRPVR +202500 290000 6600 CLRPVR +192500 290000 6600 CLRPVR +182500 290000 6600 CLRPVR +172500 290000 6600 CLRPVR +495000 277500 7600 CLRPVSQ +470000 277500 7600 CLRPVR +570000 360000 8600 CLRPVSQ +560000 360000 8600 CLRPVR +550000 360000 8600 CLRPVR +280000 257500 6600 CLRPVSQ +280000 297500 6600 CLRPVR +116000 280000 6600 CLRPVSQ +76000 280000 6600 CLRPVR +490000 370000 6600 CLRPVSQ +475000 370000 6600 CLRPVR +530000 292500 8600 CLRPVSQ +540000 292500 8600 CLRPVR +550000 292500 8600 CLRPVR +652500 47500 6600 CLRPVSQ +652500 57500 6600 CLRPVR +652500 67500 6600 CLRPVR +652500 77500 6600 CLRPVR +652500 87500 6600 CLRPVR +652500 97500 6600 CLRPVR +652500 107500 6600 CLRPVR +652500 117500 6600 CLRPVR +652500 127500 6600 CLRPVR +652500 137500 6600 CLRPVR +652500 147500 6600 CLRPVR +652500 157500 6600 CLRPVR +652500 167500 6600 CLRPVR +652500 177500 6600 CLRPVR +652500 187500 6600 CLRPVR +652500 197500 6600 CLRPVR +652500 207500 6600 CLRPVR +652500 217500 6600 CLRPVR +652500 227500 6600 CLRPVR +652500 237500 6600 CLRPVR +652500 247500 6600 CLRPVR +652500 257500 6600 CLRPVR +652500 267500 6600 CLRPVR +652500 277500 6600 CLRPVR +652500 287500 6600 CLRPVR +652500 297500 6600 CLRPVR +652500 307500 6600 CLRPVR +652500 317500 6600 CLRPVR +652500 327500 6600 CLRPVR +652500 337500 6600 CLRPVR +652500 347500 6600 CLRPVR +652500 357500 6600 CLRPVR +642500 47500 6600 CLRPVR +642500 57500 6600 CLRPVR +642500 67500 6600 CLRPVR +642500 77500 6600 CLRPVR +642500 87500 6600 CLRPVR +642500 97500 6600 CLRPVR +642500 107500 6600 CLRPVR +642500 117500 6600 CLRPVR +642500 127500 6600 CLRPVR +642500 137500 6600 CLRPVR +642500 147500 6600 CLRPVR +642500 157500 6600 CLRPVR +642500 167500 6600 CLRPVR +642500 177500 6600 CLRPVR +642500 187500 6600 CLRPVR +642500 197500 6600 CLRPVR +642500 207500 6600 CLRPVR +642500 217500 6600 CLRPVR +642500 227500 6600 CLRPVR +642500 237500 6600 CLRPVR +642500 247500 6600 CLRPVR +642500 257500 6600 CLRPVR +642500 267500 6600 CLRPVR +642500 277500 6600 CLRPVR +642500 287500 6600 CLRPVR +642500 297500 6600 CLRPVR +642500 307500 6600 CLRPVR +642500 317500 6600 CLRPVR +642500 327500 6600 CLRPVR +642500 337500 6600 CLRPVR +642500 347500 6600 CLRPVR +642500 357500 6600 CLRPVR +632500 47500 6600 CLRPVR +632500 57500 6600 CLRPVR +632500 67500 6600 CLRPVR +632500 77500 6600 CLRPVR +632500 87500 6600 CLRPVR +632500 97500 6600 CLRPVR +632500 107500 6600 CLRPVR +632500 117500 6600 CLRPVR +632500 127500 6600 CLRPVR +632500 137500 6600 CLRPVR +632500 147500 6600 CLRPVR +632500 157500 6600 CLRPVR +632500 167500 6600 CLRPVR +632500 177500 6600 CLRPVR +632500 187500 6600 CLRPVR +632500 197500 6600 CLRPVR +632500 207500 6600 CLRPVR +632500 217500 6600 CLRPVR +632500 227500 6600 CLRPVR +632500 237500 6600 CLRPVR +632500 247500 6600 CLRPVR +632500 257500 6600 CLRPVR +632500 267500 6600 CLRPVR +632500 277500 6600 CLRPVR +632500 287500 6600 CLRPVR +632500 297500 6600 CLRPVR +632500 307500 6600 CLRPVR +632500 317500 6600 CLRPVR +632500 327500 6600 CLRPVR +632500 337500 6600 CLRPVR +632500 347500 6600 CLRPVR +632500 357500 6600 CLRPVR +662500 377500 12600 CLRPVR +662500 27500 12600 CLRPVR +332500 260000 6600 CLRPVSQ +322500 260000 6600 CLRPVR +447500 62500 6600 CLRPVSQ +447500 22500 6600 CLRPVR +300000 297500 6600 CLRPVSQ +300000 257500 6600 CLRPVR +475000 330000 6600 CLRPVSQ +490000 330000 6600 CLRPVR +55000 269500 7600 CLRPVSQ +55000 287200 7600 CLRPVR +64800 264600 7600 CLRPVR +64800 292200 7600 CLRPVR +582500 292500 8600 CLRPVSQ +592500 292500 8600 CLRPVR +602500 292500 8600 CLRPVR +562500 187500 6600 CLRPVSQ +592500 187500 6600 CLRPVR +577500 117500 6600 CLRPVSQ +587500 117500 6600 CLRPVR +597500 117500 6600 CLRPVR +607500 117500 6600 CLRPVR +607500 87500 6600 CLRPVR +597500 87500 6600 CLRPVR +587500 87500 6600 CLRPVR +577500 87500 6600 CLRPVR +582500 210000 8600 CLRPVSQ +592500 210000 8600 CLRPVR +602500 210000 8600 CLRPVR +577500 57500 6600 CLRPVSQ +587500 57500 6600 CLRPVR +597500 57500 6600 CLRPVR +607500 57500 6600 CLRPVR +607500 27500 6600 CLRPVR +597500 27500 6600 CLRPVR +587500 27500 6600 CLRPVR +577500 27500 6600 CLRPVR +322500 290000 6600 CLRPVSQ +332500 290000 6600 CLRPVR +87500 57500 6600 CLRPVSQ +97500 62500 6600 CLRPVR +87500 67500 6600 CLRPVR +97500 72500 6600 CLRPVR +87500 77500 6600 CLRPVR +97500 82500 6600 CLRPVR +87500 87500 6600 CLRPVR +97500 92500 6600 CLRPVR +62500 52500 15400 CLRPVR +62500 97600 15400 CLRPVR +74500 44500 8600 CLRPVR +74500 105600 8600 CLRPVR +360000 290000 6600 CLRPVSQ +370000 290000 6600 CLRPVR +380000 290000 6600 CLRPVR +390000 290000 6600 CLRPVR +390000 260000 6600 CLRPVR +380000 260000 6600 CLRPVR +370000 260000 6600 CLRPVR +360000 260000 6600 CLRPVR +317500 342500 6600 CLRPVSQ +327500 342500 6600 CLRPVR +137500 342500 6600 CLRPVSQ +127500 342500 6600 CLRPVR +540000 162500 6600 CLRPVSQ +535000 152500 6600 CLRPVR +530000 162500 6600 CLRPVR +525000 152500 6600 CLRPVR +520000 162500 6600 CLRPVR +515000 152500 6600 CLRPVR +510000 162500 6600 CLRPVR +505000 152500 6600 CLRPVR +500000 162500 6600 CLRPVR +495000 152500 6600 CLRPVR +490000 162500 6600 CLRPVR +485000 152500 6600 CLRPVR +480000 162500 6600 CLRPVR +475000 152500 6600 CLRPVR +470000 162500 6600 CLRPVR +465000 152500 6600 CLRPVR +460000 162500 6600 CLRPVR +455000 152500 6600 CLRPVR +450000 162500 6600 CLRPVR +445000 152500 6600 CLRPVR +440000 162500 6600 CLRPVR +435000 152500 6600 CLRPVR +430000 162500 6600 CLRPVR +425000 152500 6600 CLRPVR +420000 162500 6600 CLRPVR +415000 152500 6600 CLRPVR +410000 162500 6600 CLRPVR +405000 152500 6600 CLRPVR +400000 162500 6600 CLRPVR +395000 152500 6600 CLRPVR +390000 162500 6600 CLRPVR +385000 152500 6600 CLRPVR +380000 162500 6600 CLRPVR +375000 152500 6600 CLRPVR +370000 162500 6600 CLRPVR +365000 152500 6600 CLRPVR +340000 162500 6600 CLRPVR +335000 152500 6600 CLRPVR +330000 162500 6600 CLRPVR +325000 152500 6600 CLRPVR +320000 162500 6600 CLRPVR +315000 152500 6600 CLRPVR +310000 162500 6600 CLRPVR +305000 152500 6600 CLRPVR +300000 162500 6600 CLRPVR +295000 152500 6600 CLRPVR +290000 162500 6600 CLRPVR +285000 152500 6600 CLRPVR +280000 162500 6600 CLRPVR +275000 152500 6600 CLRPVR +270000 162500 6600 CLRPVR +265000 152500 6600 CLRPVR +260000 162500 6600 CLRPVR +255000 152500 6600 CLRPVR +250000 162500 6600 CLRPVR +245000 152500 6600 CLRPVR +240000 162500 6600 CLRPVR +235000 152500 6600 CLRPVR +230000 162500 6600 CLRPVR +225000 152500 6600 CLRPVR +220000 162500 6600 CLRPVR +215000 152500 6600 CLRPVR +210000 162500 6600 CLRPVR +205000 152500 6600 CLRPVR +200000 162500 6600 CLRPVR +195000 152500 6600 CLRPVR +190000 162500 6600 CLRPVR +185000 152500 6600 CLRPVR +180000 162500 6600 CLRPVR +175000 152500 6600 CLRPVR +170000 162500 6600 CLRPVR +165000 152500 6600 CLRPVR +573000 157500 8600 CLRPVR +352500 157500 12600 CLRPVR +132500 157500 12600 CLRPVR +137500 372500 6600 CLRPVSQ +127500 372500 6600 CLRPVR +172500 372500 6600 CLRPVSQ +182500 372500 6600 CLRPVR +192500 372500 6600 CLRPVR +202500 372500 6600 CLRPVR +212500 372500 6600 CLRPVR +222500 372500 6600 CLRPVR +232500 372500 6600 CLRPVR +242500 372500 6600 CLRPVR +252500 372500 6600 CLRPVR +262500 372500 6600 CLRPVR +272500 372500 6600 CLRPVR +282500 372500 6600 CLRPVR +282500 342500 6600 CLRPVR +272500 342500 6600 CLRPVR +262500 342500 6600 CLRPVR +252500 342500 6600 CLRPVR +242500 342500 6600 CLRPVR +232500 342500 6600 CLRPVR +222500 342500 6600 CLRPVR +212500 342500 6600 CLRPVR +202500 342500 6600 CLRPVR +192500 342500 6600 CLRPVR +182500 342500 6600 CLRPVR +172500 342500 6600 CLRPVR +115500 305500 6600 CLRPVSQ +75500 305500 6600 CLRPVR +57500 27500 12600 CLRPVR +57500 376200 12600 CLRPVR +662500 27500 12600 CLRPVR +662500 376200 12600 CLRPVR +475000 342500 6600 CLRPVR +490000 342500 6600 CLRPVR +560000 342500 6600 CLRPVR +602500 260000 6600 CLRPVR +540000 260000 6600 CLRPVR +540000 307500 6600 CLRPVR +602500 307500 6600 CLRPVR +592500 277500 6600 CLRPVR +612500 287500 6600 CLRPVR +540000 327500 6600 CLRPVR +395000 317500 6600 CLRPVR +475000 317500 6600 CLRPVR +622500 342500 6600 CLRPVR +612500 267500 6600 CLRPVR +592500 222500 6600 CLRPVR +462500 342500 6600 CLRPVR +562500 220000 6600 CLRPVR +622500 102500 6600 CLRPVR +647500 102500 6600 CLRPVR +567500 107500 6600 CLRPVR +597500 47500 6600 CLRPVR +537500 47500 6600 CLRPVR +487500 47500 6600 CLRPVR +517500 40000 6600 CLRPVR +577500 40000 6600 CLRPVR +402500 72500 6600 CLRPVR +487500 72500 6600 CLRPVR +537500 72500 6600 CLRPVR +592500 72500 6600 CLRPVR +497500 95000 6600 CLRPVR +140000 95000 6600 CLRPVR +175000 95000 6600 CLRPVR +237500 95000 6600 CLRPVR +322500 317500 6600 CLRPVR +327500 392500 6600 CLRPVR +240000 245000 6600 CLRPVR +270000 245000 6600 CLRPVR +140000 245000 6600 CLRPVR +130000 280000 6600 CLRPVR +130000 290000 6600 CLRPVR +252500 287500 4600 CLRPVR +427500 100000 6600 CLRPVR +525000 100000 6600 CLRPVR +315000 100000 6600 CLRPVR +447500 95000 6600 CLRPVR +202500 305000 6600 CLRPVR +127500 392500 6600 CLRPVR +212500 392500 6600 CLRPVR +272500 392500 6600 CLRPVR +360000 317500 6600 CLRPVR +77500 392500 6600 CLRPVR +487500 107500 4600 CLRPVR +620000 52500 4600 CLRPVR +622500 87500 4600 CLRPVR +537500 107500 4600 CLRPVR +637500 172500 4600 CLRPVR +262500 172500 4600 CLRPVR +597500 65000 4600 CLRPVR +407500 47500 6600 CLRPVR +205000 82500 4600 CLRPVR +402500 235000 4600 CLRPVR +295000 130000 4600 CLRPVR +335000 52500 4600 CLRPVR +527500 22500 4600 CLRPVR +615000 15000 4600 CLRPVR +477500 57500 4600 CLRPVR +622500 35000 4600 CLRPVR +647500 20000 4600 CLRPVR +557500 15000 4600 CLRPVR +502500 15000 4600 CLRPVR +547500 142500 4600 CLRPVR +610000 142500 4600 CLRPVR +615000 130000 4600 CLRPVR +555000 135000 4600 CLRPVR +195000 57500 4600 CLRPVR +242500 360000 4600 CLRPVR +210000 67500 4600 CLRPVR +115000 112500 4600 CLRPVR +507500 107500 4600 CLRPVR +417500 135000 4600 CLRPVR +200000 62500 4600 CLRPVR +512500 80000 4600 CLRPVR +557500 237500 4600 CLRPVR +447500 30000 4600 CLRPVR +355000 130000 4600 CLRPVR +272500 352500 6600 CLRPVR +95000 245000 4600 CLRPVR +115000 245000 4600 CLRPVR +582500 285000 4600 CLRPVR +110000 367500 4600 CLRPVR +182500 385000 4600 CLRPVR +252500 385000 4600 CLRPVR +212500 352500 6600 CLRPVR +232500 352500 6600 CLRPVR +192500 360000 4600 CLRPVR +417500 107500 4600 CLRPVR +447500 107500 4600 CLRPVR +472500 107500 4600 CLRPVR +467500 15000 4600 CLRPVR +255000 120000 4600 CLRPVR +265000 120000 4600 CLRPVR +265000 130000 4600 CLRPVR +250000 130000 4600 CLRPVR +260000 105000 4600 CLRPVR +245000 105000 4600 CLRPVR +285000 120000 4600 CLRPVR +300000 120000 4600 CLRPVR +290000 125000 4600 CLRPVR +310000 125000 4600 CLRPVR +295000 137500 4600 CLRPVR +322500 137500 4600 CLRPVR +145000 137500 4600 CLRPVR +155000 125000 4600 CLRPVR +160000 100000 4600 CLRPVR +300000 100000 4600 CLRPVR +170000 142500 4600 CLRPVR +280000 142500 4600 CLRPVR +180000 132500 4600 CLRPVR +275000 130000 4600 CLRPVR +190000 105000 4600 CLRPVR +270000 105000 4600 CLRPVR +200000 255000 4600 CLRPVR +270000 255000 4600 CLRPVR +322500 245000 6600 CLRPVR +350000 250000 4600 CLRPVR +202500 282500 4600 CLRPVR +220000 282500 4600 CLRPVR +257500 250000 4600 CLRPVR +210000 250000 4600 CLRPVR +257500 197500 4600 CLRPVR +220000 225000 6600 CLRPVR +240000 225000 6600 CLRPVR +300000 212500 4600 CLRPVR +215000 212500 4600 CLRPVR +310000 217500 4600 CLRPVR +225000 217500 4600 CLRPVR +225000 195000 4600 CLRPVR +315000 192500 4600 CLRPVR +150000 187500 4600 CLRPVR +325000 187500 4600 CLRPVR +235000 187500 4600 CLRPVR +360000 252500 4600 CLRPVR +292500 222500 4600 CLRPVR +170000 217500 4600 CLRPVR +210000 230000 4600 CLRPVR +390000 225000 4600 CLRPVR +257500 277500 4600 CLRPVR +385000 277500 4600 CLRPVR +155000 282500 4600 CLRPVR +340000 282500 4600 CLRPVR +230000 182500 4600 CLRPVR +245000 182500 4600 CLRPVR +227500 90000 4600 CLRPVR +255000 90000 4600 CLRPVR +250000 172500 4600 CLRPVR +190000 175000 4600 CLRPVR +180000 170000 4600 CLRPVR +430000 197500 4600 CLRPVR +332500 270000 6600 CLRPVR +290000 265000 4600 CLRPVR +480000 265000 4600 CLRPVR +470000 290000 6600 CLRPVR +462500 282500 4600 CLRPVR +300000 177500 4600 CLRPVR +485000 177500 4600 CLRPVR +305000 85000 4600 CLRPVR +275000 85000 4600 CLRPVR +330000 80000 4600 CLRPVR +285000 80000 4600 CLRPVR +350000 220000 4600 CLRPVR +365000 220000 4600 CLRPVR +355000 385000 4600 CLRPVR +297500 352500 6600 CLRPVR +375000 360000 4600 CLRPVR +107500 147500 4600 CLRPVR +122000 160500 4600 CLRPVR +450000 182500 4600 CLRPVR +262500 352500 4600 CLRPVR +327500 352500 4600 CLRPVR +400000 225000 4600 CLRPVR +405000 215000 4600 CLRPVR +410000 205000 4600 CLRPVR +105000 270000 4600 CLRPVR +415000 272500 4600 CLRPVR +402500 250000 4600 CLRPVR +222500 310000 4600 CLRPVR +402500 310000 4600 CLRPVR +520000 260000 4600 CLRPVR +520000 337500 4600 CLRPVR +210000 322500 4600 CLRPVR +570000 322500 4600 CLRPVR +570000 245000 4600 CLRPVR +530000 327500 4600 CLRPVR +282500 330000 4600 CLRPVR +327500 305000 4600 CLRPVR +49500 330000 4600 CLRPVR +130000 255000 6600 CLRPVR +76500 257000 4600 CLRPVR +90500 305500 4600 CLRPVR +592500 360000 6600 CLRPVR +405000 342500 6600 CLRPVR +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/doc/aic_frontsilk.ps b/doc/aic_frontsilk.ps new file mode 100644 index 0000000..8d5b8fc --- /dev/null +++ b/doc/aic_frontsilk.ps @@ -0,0 +1,1634 @@ +%!PS-Adobe-3.0 +%%Title: (unknown), silkscreen, component side +%%Creator: pcb-bin 20060321 +%%CreationDate: Tue Nov 27 09:49:27 2007 +%%For: fetter (Walter Fetter Lages,,,) +%%LanguageLevel: 1 +%%Orientation: Portrait +%%Pages: 1 +%%PageOrder: Ascend +%%DocumentMedia: A4 594 841 +%%EndComments +%%BeginProlog + +/PcbDict 200 dict def +PcbDict begin +PcbDict /DictMatrix matrix put + +% some constants +/Black {0.0 mysetgray} def +/White {1.0 mysetgray} def +/TAN {0.207106781} def +/MTAN {-0.207106781} def + +% draw a filled polygon +% get (x,y)... and number of points from stack +/PO { + /number exch def + newpath + moveto + number 1 sub { lineto } repeat + closepath fill stroke +} def + +/P { +% draw a pin-polygon, +% get x, y and thickness from stack + /thickness exch def /y exch def /x exch def + gsave x y translate thickness thickness scale + 0.5 MTAN + TAN -0.5 + MTAN -0.5 + -0.5 MTAN + -0.5 TAN + MTAN 0.5 + TAN 0.5 + 0.5 TAN + 8 PO grestore +} def + +/PV { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + x y thickness P +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVR { +% pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + gsave 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke +% draw drilling whole + White + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/PVSQ { +% square pin or via, x, y and thickness are on the stack + /drillinghole exch def /thickness exch def /y exch def /x exch def + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke +% draw drilling hole + gsave White 0 setlinewidth + newpath x y drillinghole 2 div 0 360 arc closepath fill stroke + grestore +} def + +/DH { +% drill helpher; x, y, hole, copper-thickness are on stack + /copper exch def /hole exch def /y exch def /x exch def + gsave copper setlinewidth + newpath x y hole copper add 2 div 0 360 arc closepath stroke + grestore +} def + +/L { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CL { +% line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/B { +% filled box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke +} def + +/PA { +% pad, same as line + L +} def + +/A { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CA { +% arc for elements, get x, y, width, height, thickness +% startangle and delta-angle from stack + /delta exch def /start exch def /thickness exch def + /height exch def /width exch def /y exch def /x exch def +% draw it + gsave White thickness setlinewidth /save DictMatrix currentmatrix def +% scaling is less then zero because the coord system has to be swapped + x y translate width neg height scale + 0 0 1 start start delta add arc save setmatrix stroke + grestore +} def + +/CLRPV { +% clears a pin/via for groundplane; x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White x y thickness P grestore +} def + +/CLRPVSQ { +% clears a square pin, x,y and thickness are on stack + /thickness exch def /y exch def /x exch def + gsave White + newpath x thickness 2 div sub y thickness 2 div sub moveto + thickness 0 rlineto 0 thickness rlineto + thickness neg 0 rlineto closepath fill stroke + grestore +} def + +/CLRPVR { +% clears a round pin/via for groundplane; x,y and thickness are on the stack + /thickness exch def /y exch def /x exch def + gsave White 0 setlinewidth + newpath x y thickness 2 div 0 360 arc closepath fill stroke + grestore +} def + +/CLRPA { +% clear line, get x1, y1, x2, y2 and thickness from stack + /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White thick setlinewidth + x1 y1 moveto x2 y2 lineto stroke + grestore +} def + +/CLRB { +% cleared box, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave White newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/FILL { +% draw a filled rectangle for the ground plane +% get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath fill stroke + grestore +} def + +/Outline { +% outline, get x1, y1, x2 and y2 from stack + /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath + x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto + closepath stroke + grestore +} def + +/Alignment { +% alignment targets, get x1, y1, x2, y2 and distance from stack + /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def + gsave 0.175 setlinewidth + newpath x1 y1 dis add moveto + 0 dis 2 mul neg rlineto + dis neg dis rmoveto + dis 2 mul 0 rlineto + stroke + newpath x1 y1 dis 0 90 arcn stroke + newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke + newpath x2 y2 dis sub moveto + 0 2 dis mul rlineto + dis dup neg rmoveto + 2 dis mul neg 0 rlineto stroke + newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke + grestore +} def + +/mysetgray { setgray } def +/mysetrgbcolor { setrgbcolor } def + +%%EndProlog +%%BeginDefaults +%%EndDefaults +%%BeginSetup +0.0 setlinewidth +1 setlinecap +Black +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%EndPageSetup +gsave White newpath +153 160 moveto 451 160 lineto 451 673 lineto 153 673 lineto +closepath fill stroke grestore +% PCBMIN(-400,-400), PCBMAX(710400,410400) +% PCBOFFSET(214900,223900), PCBSCALE(1.00000) +% PCBSTARTDATA --- do not remove --- +gsave +0.00072 0.00072 scale +214900 223900 translate +1.000 1.000 scale +410800 0 translate +90 rotate +0 410800 translate +1 -1 scale +400 400 translate +-400 -400 710400 410400 200 Alignment +/Color {0.000 0.000 0.000 mysetrgbcolor} def Color +335000 32500 335000 22500 2000 L +335000 62500 335000 52500 2000 L +340000 52500 330000 52500 2000 L +340000 32500 340000 52500 2000 L +330000 32500 340000 32500 2000 L +330000 52500 330000 32500 2000 L +333000 48500 333000 50500 400 L +333000 48500 333500 48000 400 L +333500 48000 334500 48000 400 L +335000 48500 334500 48000 400 L +335000 48500 335000 50000 400 L +333000 50000 337000 50000 400 L +335000 50000 337000 48000 400 L +337000 45299 337000 46299 400 L +333000 45799 337000 45799 400 L +334000 46799 333000 45799 400 L +333500 44098 333000 43598 400 L +333000 42598 333000 43598 400 L +333000 42598 333500 42098 400 L +333500 42098 336500 42098 400 L +337000 42598 336500 42098 400 L +337000 42598 337000 43598 400 L +336500 44098 337000 43598 400 L +335000 42098 335000 43598 400 L +297500 342500 297500 352500 1000 L +297500 362500 297500 372500 1000 L +297500 352500 302500 362500 1000 L +302500 362500 292500 362500 1000 L +292500 362500 297500 352500 1000 L +302500 352500 292500 352500 1000 L +298500 365000 302500 365000 400 L +302500 366500 302000 367000 400 L +299000 367000 302000 367000 400 L +298500 366500 299000 367000 400 L +298500 364500 298500 366500 400 L +302500 364500 302500 366500 400 L +302000 368201 302500 368701 400 L +302500 368701 302500 370201 400 L +302500 370201 302000 370701 400 L +301000 370701 302000 370701 400 L +298500 368201 301000 370701 400 L +298500 368201 298500 370701 400 L +425000 372000 385000 372000 2000 L +385000 372000 385000 354000 2000 L +385000 354000 425000 354000 2000 L +425000 354000 425000 372000 2000 L +425000 372000 385000 372000 2000 L +385000 372000 385000 366000 2000 L +385000 366000 425000 366000 2000 L +425000 366000 425000 372000 2000 L +412000 372000 412000 366000 1000 L +398000 372000 398000 366000 1000 L +425000 375500 425000 379000 400 L +425000 375500 424500 375000 400 L +423500 375000 424500 375000 400 L +423500 375000 423000 375500 400 L +423000 375500 423000 379000 400 L +421799 378500 421299 379000 400 L +419799 379000 421299 379000 400 L +419799 379000 419299 378500 400 L +419299 377500 419299 378500 400 L +421799 375000 419299 377500 400 L +419299 375000 421799 375000 400 L +447500 92500 447500 82500 2000 L +447500 122500 447500 112500 2000 L +452500 112500 442500 112500 2000 L +452500 92500 452500 112500 2000 L +442500 92500 452500 92500 2000 L +442500 112500 442500 92500 2000 L +445500 108500 445500 110500 400 L +445500 108500 446000 108000 400 L +446000 108000 447000 108000 400 L +447500 108500 447000 108000 400 L +447500 108500 447500 110000 400 L +445500 110000 449500 110000 400 L +447500 110000 449500 108000 400 L +449500 106799 447000 104299 400 L +445500 104299 447000 104299 400 L +445500 104299 445500 106799 400 L +392500 122500 432500 122500 1000 L +432500 122500 432500 82500 1000 L +432500 82500 392500 82500 1000 L +392500 122500 392500 107500 1000 L +392500 97500 392500 82500 1000 L +392500 102500 5000 5000 1000 90 180 A +402500 100500 402500 104000 400 L +402500 104000 403000 104500 400 L +403000 104500 404000 104500 400 L +404000 104500 404500 104000 400 L +404500 100500 404500 104000 400 L +406201 104500 407201 104500 400 L +406701 100500 406701 104500 400 L +405701 101500 406701 100500 400 L +408402 100500 410402 100500 400 L +408402 100500 408402 102500 400 L +408402 102500 408902 102000 400 L +408902 102000 409902 102000 400 L +409902 102000 410402 102500 400 L +410402 102500 410402 104000 400 L +409902 104500 410402 104000 400 L +408902 104500 409902 104500 400 L +408402 104000 408902 104500 400 L +557500 92500 557500 82500 2000 L +557500 122500 557500 112500 2000 L +562500 112500 552500 112500 2000 L +562500 92500 562500 112500 2000 L +552500 92500 562500 92500 2000 L +552500 112500 552500 92500 2000 L +555500 108500 555500 110500 400 L +555500 108500 556000 108000 400 L +556000 108000 557000 108000 400 L +557500 108500 557000 108000 400 L +557500 108500 557500 110000 400 L +555500 110000 559500 110000 400 L +557500 110000 559500 108000 400 L +559000 106799 559500 106299 400 L +558000 106799 559000 106799 400 L +558000 106799 557500 106299 400 L +557500 105299 557500 106299 400 L +557500 105299 558000 104799 400 L +558000 104799 559000 104799 400 L +559500 105299 559000 104799 400 L +559500 105299 559500 106299 400 L +557000 106799 557500 106299 400 L +556000 106799 557000 106799 400 L +556000 106799 555500 106299 400 L +555500 105299 555500 106299 400 L +555500 105299 556000 104799 400 L +556000 104799 557000 104799 400 L +557500 105299 557000 104799 400 L +537500 32500 537500 22500 2000 L +537500 62500 537500 52500 2000 L +542500 52500 532500 52500 2000 L +542500 32500 542500 52500 2000 L +532500 32500 542500 32500 2000 L +532500 52500 532500 32500 2000 L +535500 48500 535500 50500 400 L +535500 48500 536000 48000 400 L +536000 48000 537000 48000 400 L +537500 48500 537000 48000 400 L +537500 48500 537500 50000 400 L +535500 50000 539500 50000 400 L +537500 50000 539500 48000 400 L +539500 45299 539500 46299 400 L +535500 45799 539500 45799 400 L +536500 46799 535500 45799 400 L +482500 62500 522500 62500 1000 L +522500 62500 522500 22500 1000 L +522500 22500 482500 22500 1000 L +482500 62500 482500 47500 1000 L +482500 37500 482500 22500 1000 L +482500 42500 5000 5000 1000 90 180 A +492500 40500 492500 44000 400 L +492500 44000 493000 44500 400 L +493000 44500 494000 44500 400 L +494000 44500 494500 44000 400 L +494500 40500 494500 44000 400 L +496201 44500 497201 44500 400 L +496701 40500 496701 44500 400 L +495701 41500 496701 40500 400 L +498402 41000 498902 40500 400 L +498902 40500 500402 40500 400 L +500402 40500 500902 41000 400 L +500902 41000 500902 42000 400 L +498402 44500 500902 42000 400 L +498402 44500 500902 44500 400 L +467500 32500 467500 22500 2000 L +467500 62500 467500 52500 2000 L +472500 52500 462500 52500 2000 L +472500 32500 472500 52500 2000 L +462500 32500 472500 32500 2000 L +462500 52500 462500 32500 2000 L +465500 48500 465500 50500 400 L +465500 48500 466000 48000 400 L +466000 48000 467000 48000 400 L +467500 48500 467000 48000 400 L +467500 48500 467500 50000 400 L +465500 50000 469500 50000 400 L +467500 50000 469500 48000 400 L +466000 46799 465500 46299 400 L +465500 44799 465500 46299 400 L +465500 44799 466000 44299 400 L +466000 44299 467000 44299 400 L +469500 46799 467000 44299 400 L +469500 44299 469500 46799 400 L +467500 92500 467500 82500 2000 L +467500 122500 467500 112500 2000 L +472500 112500 462500 112500 2000 L +472500 92500 472500 112500 2000 L +462500 92500 472500 92500 2000 L +462500 112500 462500 92500 2000 L +465500 108500 465500 110500 400 L +465500 108500 466000 108000 400 L +466000 108000 467000 108000 400 L +467500 108500 467000 108000 400 L +467500 108500 467500 110000 400 L +465500 110000 469500 110000 400 L +467500 110000 469500 108000 400 L +465500 105299 466000 104799 400 L +465500 105299 465500 106299 400 L +466000 106799 465500 106299 400 L +466000 106799 469000 106799 400 L +469000 106799 469500 106299 400 L +467500 105299 468000 104799 400 L +467500 105299 467500 106799 400 L +469500 105299 469500 106299 400 L +469500 105299 469000 104799 400 L +468000 104799 469000 104799 400 L +537500 92500 537500 82500 2000 L +537500 122500 537500 112500 2000 L +542500 112500 532500 112500 2000 L +542500 92500 542500 112500 2000 L +532500 92500 542500 92500 2000 L +532500 112500 532500 92500 2000 L +535500 108500 535500 110500 400 L +535500 108500 536000 108000 400 L +536000 108000 537000 108000 400 L +537500 108500 537000 108000 400 L +537500 108500 537500 110000 400 L +535500 110000 539500 110000 400 L +537500 110000 539500 108000 400 L +535500 104799 535500 106799 400 L +535500 106799 537500 106799 400 L +537500 106799 537000 106299 400 L +537000 105299 537000 106299 400 L +537000 105299 537500 104799 400 L +537500 104799 539000 104799 400 L +539500 105299 539000 104799 400 L +539500 105299 539500 106299 400 L +539000 106799 539500 106299 400 L +482500 122500 522500 122500 1000 L +522500 122500 522500 82500 1000 L +522500 82500 482500 82500 1000 L +482500 122500 482500 107500 1000 L +482500 97500 482500 82500 1000 L +482500 102500 5000 5000 1000 90 180 A +492500 100500 492500 104000 400 L +492500 104000 493000 104500 400 L +493000 104500 494000 104500 400 L +494000 104500 494500 104000 400 L +494500 100500 494500 104000 400 L +496201 104500 497201 104500 400 L +496701 100500 496701 104500 400 L +495701 101500 496701 100500 400 L +498402 102500 500402 100500 400 L +498402 102500 500902 102500 400 L +500402 100500 500402 104500 400 L +392500 62500 432500 62500 1000 L +432500 62500 432500 22500 1000 L +432500 22500 392500 22500 1000 L +392500 62500 392500 47500 1000 L +392500 37500 392500 22500 1000 L +392500 42500 5000 5000 1000 90 180 A +402500 40500 402500 44000 400 L +402500 44000 403000 44500 400 L +403000 44500 404000 44500 400 L +404000 44500 404500 44000 400 L +404500 40500 404500 44000 400 L +406201 44500 407201 44500 400 L +406701 40500 406701 44500 400 L +405701 41500 406701 40500 400 L +408402 41000 408902 40500 400 L +408902 40500 409902 40500 400 L +409902 40500 410402 41000 400 L +410402 41000 410402 44000 400 L +409902 44500 410402 44000 400 L +408902 44500 409902 44500 400 L +408402 44000 408902 44500 400 L +408902 42500 410402 42500 400 L +557500 32500 557500 22500 2000 L +557500 62500 557500 52500 2000 L +562500 52500 552500 52500 2000 L +562500 32500 562500 52500 2000 L +552500 32500 562500 32500 2000 L +552500 52500 552500 32500 2000 L +555500 48500 555500 50500 400 L +555500 48500 556000 48000 400 L +556000 48000 557000 48000 400 L +557500 48500 557000 48000 400 L +557500 48500 557500 50000 400 L +555500 50000 559500 50000 400 L +557500 50000 559500 48000 400 L +557500 46799 555500 44799 400 L +557500 44299 557500 46799 400 L +555500 44799 559500 44799 400 L +157500 342500 157500 352500 1000 L +157500 362500 157500 372500 1000 L +157500 352500 162500 362500 1000 L +162500 362500 152500 362500 1000 L +152500 362500 157500 352500 1000 L +162500 352500 152500 352500 1000 L +158500 365000 162500 365000 400 L +162500 366500 162000 367000 400 L +159000 367000 162000 367000 400 L +158500 366500 159000 367000 400 L +158500 364500 158500 366500 400 L +162500 364500 162500 366500 400 L +158500 368701 158500 369701 400 L +158500 369201 162500 369201 400 L +161500 368201 162500 369201 400 L +57500 244500 7000 7000 1000 0 360 A +57500 244500 5000 5000 1500 0 360 A +53000 231500 53000 235500 400 L +54500 231500 55000 232000 400 L +55000 232000 55000 235000 400 L +54500 235500 55000 235000 400 L +52500 235500 54500 235500 400 L +52500 231500 54500 231500 400 L +56701 235500 57701 235500 400 L +57201 231500 57201 235500 400 L +56201 232500 57201 231500 400 L +58902 235000 59402 235500 400 L +58902 232000 58902 235000 400 L +58902 232000 59402 231500 400 L +59402 231500 60402 231500 400 L +60402 231500 60902 232000 400 L +60902 232000 60902 235000 400 L +60402 235500 60902 235000 400 L +59402 235500 60402 235500 400 L +58902 234500 60902 232500 400 L +547000 233000 547000 239000 1000 L +533000 233000 533000 239000 1000 L +520000 239000 520000 233000 2000 L +560000 239000 520000 239000 2000 L +560000 233000 560000 239000 2000 L +520000 233000 560000 233000 2000 L +520000 251000 520000 233000 2000 L +560000 251000 520000 251000 2000 L +560000 233000 560000 251000 2000 L +520000 233000 560000 233000 2000 L +520000 226500 520000 229500 400 L +520000 226500 520500 226000 400 L +520500 226000 521500 226000 400 L +521500 226000 522000 226500 400 L +522000 226500 522000 229500 400 L +521500 230000 522000 229500 400 L +520500 230000 521500 230000 400 L +520000 229500 520500 230000 400 L +521000 229000 522000 230000 400 L +523201 226500 523701 226000 400 L +523701 226000 525201 226000 400 L +525201 226000 525701 226500 400 L +525701 226500 525701 227500 400 L +523201 230000 525701 227500 400 L +523201 230000 525701 230000 400 L +240000 62500 320000 62500 1000 L +320000 62500 320000 22500 1000 L +320000 22500 240000 22500 1000 L +240000 62500 240000 47500 1000 L +240000 37500 240000 22500 1000 L +240000 42500 5000 5000 1000 90 180 A +250000 40500 250000 44000 400 L +250000 44000 250500 44500 400 L +250500 44500 251500 44500 400 L +251500 44500 252000 44000 400 L +252000 40500 252000 44000 400 L +253201 44500 255701 42000 400 L +255701 40500 255701 42000 400 L +253201 40500 255701 40500 400 L +322500 372500 10000 10000 1000 0 360 A +333000 366500 334500 366500 400 L +332500 366000 333000 366500 400 L +332500 363000 332500 366000 400 L +332500 363000 333000 362500 400 L +333000 362500 334500 362500 400 L +335701 364500 337701 362500 400 L +335701 364500 338201 364500 400 L +337701 362500 337701 366500 400 L +425000 210000 425000 200000 1000 L +415000 210000 425000 210000 1000 L +435000 200000 415000 200000 2000 L +435000 240000 435000 200000 2000 L +415000 240000 435000 240000 2000 L +415000 200000 415000 240000 2000 L +441000 200000 441000 201500 400 L +437500 201500 441000 201500 400 L +437000 201000 437500 201500 400 L +437000 200500 437000 201000 400 L +437500 200000 437000 200500 400 L +437000 203201 441000 203201 400 L +441000 202701 441000 204701 400 L +441000 204701 440500 205201 400 L +439500 205201 440500 205201 400 L +439000 204701 439500 205201 400 L +439000 203201 439000 204701 400 L +437000 206902 437000 207902 400 L +437000 207402 441000 207402 400 L +440000 206402 441000 207402 400 L +135000 270000 255000 270000 1000 L +255000 270000 255000 200000 1000 L +255000 200000 135000 200000 1000 L +135000 270000 135000 240000 1000 L +135000 230000 135000 200000 1000 L +135000 235000 5000 5000 1000 90 180 A +145000 233000 145000 236500 400 L +145000 236500 145500 237000 400 L +145500 237000 146500 237000 400 L +146500 237000 147000 236500 400 L +147000 233000 147000 236500 400 L +149701 233000 150201 233500 400 L +148701 233000 149701 233000 400 L +148201 233500 148701 233000 400 L +148201 233500 148201 236500 400 L +148201 236500 148701 237000 400 L +149701 235000 150201 235500 400 L +148201 235000 149701 235000 400 L +148701 237000 149701 237000 400 L +149701 237000 150201 236500 400 L +150201 235500 150201 236500 400 L +275000 240000 395000 240000 1000 L +395000 240000 395000 200000 1000 L +395000 200000 275000 200000 1000 L +275000 240000 275000 225000 1000 L +275000 215000 275000 200000 1000 L +275000 220000 5000 5000 1000 90 180 A +285000 218000 285000 221500 400 L +285000 221500 285500 222000 400 L +285500 222000 286500 222000 400 L +286500 222000 287000 221500 400 L +287000 218000 287000 221500 400 L +288201 221500 288701 222000 400 L +288201 220500 288201 221500 400 L +288201 220500 288701 220000 400 L +288701 220000 289701 220000 400 L +289701 220000 290201 220500 400 L +290201 220500 290201 221500 400 L +289701 222000 290201 221500 400 L +288701 222000 289701 222000 400 L +288201 219500 288701 220000 400 L +288201 218500 288201 219500 400 L +288201 218500 288701 218000 400 L +288701 218000 289701 218000 400 L +289701 218000 290201 218500 400 L +290201 218500 290201 219500 400 L +289701 220000 290201 219500 400 L +31500 112000 34500 112000 1000 L +34500 112000 34500 230000 1000 L +34500 230000 31500 230000 1000 L +31500 230000 31500 112000 1000 L +31500 118000 34500 118000 1000 L +31500 130000 34500 130000 1000 L +31500 224000 34500 224000 1000 L +31500 212000 34500 212000 1000 L +4500 141000 31500 141000 2000 L +31500 141000 31500 201000 1000 L +31500 201000 4500 201000 2000 L +4500 201000 4500 141000 2000 L +34500 135000 54500 135000 2000 L +54500 135000 54500 207000 2000 L +54500 207000 34500 207000 2000 L +34500 207000 34500 135000 1000 L +82500 151000 54500 151000 2000 L +72500 156000 54500 156000 2000 L +82500 161000 54500 161000 2000 L +72500 166000 54500 166000 2000 L +82500 171000 54500 171000 2000 L +72500 176000 54500 176000 2000 L +82500 181000 54500 181000 2000 L +72500 186000 54500 186000 2000 L +82500 191000 54500 191000 2000 L +42500 144000 42500 145500 400 L +39000 145500 42500 145500 400 L +38500 145000 39000 145500 400 L +38500 144500 38500 145000 400 L +39000 144000 38500 144500 400 L +38500 146701 40500 148701 400 L +40500 148701 42000 148701 400 L +42500 148201 42000 148701 400 L +42500 147201 42500 148201 400 L +42000 146701 42500 147201 400 L +41000 146701 42000 146701 400 L +41000 146701 40500 147201 400 L +40500 147201 40500 148701 400 L +81500 244500 5000 5000 1500 0 360 A +81500 244500 7000 7000 1000 0 360 A +77000 231500 77000 235500 400 L +78500 231500 79000 232000 400 L +79000 232000 79000 235000 400 L +78500 235500 79000 235000 400 L +76500 235500 78500 235500 400 L +76500 231500 78500 231500 400 L +80201 235500 82201 233500 400 L +82201 232000 82201 233500 400 L +81701 231500 82201 232000 400 L +80701 231500 81701 231500 400 L +80201 232000 80701 231500 400 L +80201 232000 80201 233000 400 L +80201 233000 80701 233500 400 L +80701 233500 82201 233500 400 L +482500 220000 25000 25000 1000 180 360 A +455500 241000 457000 241000 400 L +457500 241500 457000 241000 400 L +457500 241500 457500 244500 400 L +457500 244500 457000 245000 400 L +455500 245000 457000 245000 400 L +454299 241000 451799 243500 400 L +451799 243500 451799 245000 400 L +451799 245000 454299 245000 400 L +90000 340000 80000 340000 1000 L +80000 350000 85000 340000 1000 L +90000 350000 80000 350000 1000 L +85000 340000 90000 350000 1000 L +85000 350000 85000 360000 1000 L +85000 330000 85000 340000 1000 L +86000 352500 90000 352500 400 L +90000 354000 89500 354500 400 L +86500 354500 89500 354500 400 L +86000 354000 86500 354500 400 L +86000 352000 86000 354000 400 L +90000 352000 90000 354000 400 L +89500 355701 90000 356201 400 L +90000 356201 90000 357201 400 L +90000 357201 89500 357701 400 L +86500 357701 89500 357701 400 L +86000 357201 86500 357701 400 L +86000 356201 86000 357201 400 L +86500 355701 86000 356201 400 L +88000 356201 88000 357701 400 L +599500 233000 599500 239000 1000 L +585500 233000 585500 239000 1000 L +572500 239000 572500 233000 2000 L +612500 239000 572500 239000 2000 L +612500 233000 612500 239000 2000 L +572500 233000 612500 233000 2000 L +572500 251000 572500 233000 2000 L +612500 251000 572500 251000 2000 L +612500 233000 612500 251000 2000 L +572500 233000 612500 233000 2000 L +572500 226500 572500 229500 400 L +572500 226500 573000 226000 400 L +573000 226000 574000 226000 400 L +574000 226000 574500 226500 400 L +574500 226500 574500 229500 400 L +574000 230000 574500 229500 400 L +573000 230000 574000 230000 400 L +572500 229500 573000 230000 400 L +573500 229000 574500 230000 400 L +576201 230000 577201 230000 400 L +576701 226000 576701 230000 400 L +575701 227000 576701 226000 400 L +540000 210000 10000 10000 1000 0 360 A +550500 204000 552000 204000 400 L +550000 203500 550500 204000 400 L +550000 200500 550000 203500 400 L +550000 200500 550500 200000 400 L +550500 200000 552000 200000 400 L +553701 204000 554701 204000 400 L +554201 200000 554201 204000 400 L +553201 201000 554201 200000 400 L +556402 204000 557402 204000 400 L +556902 200000 556902 204000 400 L +555902 201000 556902 200000 400 L +355000 32500 355000 22500 2000 L +355000 62500 355000 52500 2000 L +360000 52500 350000 52500 2000 L +360000 32500 360000 52500 2000 L +350000 32500 360000 32500 2000 L +350000 52500 350000 32500 2000 L +353000 48500 353000 50500 400 L +353000 48500 353500 48000 400 L +353500 48000 354500 48000 400 L +355000 48500 354500 48000 400 L +355000 48500 355000 50000 400 L +353000 50000 357000 50000 400 L +355000 50000 357000 48000 400 L +357000 45299 357000 46299 400 L +353000 45799 357000 45799 400 L +354000 46799 353000 45799 400 L +355000 44098 353000 42098 400 L +355000 41598 355000 44098 400 L +353000 42098 357000 42098 400 L +100000 325000 100000 335000 2000 L +100000 335000 120000 335000 2000 L +120000 335000 120000 325000 2000 L +120000 325000 100000 325000 2000 L +100000 335000 110000 335000 1000 L +110000 335000 110000 325000 1000 L +126000 325000 126000 326500 400 L +122500 326500 126000 326500 400 L +122000 326000 122500 326500 400 L +122000 325500 122000 326000 400 L +122500 325000 122000 325500 400 L +122000 328201 126000 328201 400 L +126000 327701 126000 329701 400 L +126000 329701 125500 330201 400 L +124500 330201 125500 330201 400 L +124000 329701 124500 330201 400 L +124000 328201 124000 329701 400 L +125500 331402 126000 331902 400 L +126000 331902 126000 333402 400 L +126000 333402 125500 333902 400 L +124500 333902 125500 333902 400 L +122000 331402 124500 333902 400 L +122000 331402 122000 333902 400 L +167500 325000 207500 325000 1000 L +207500 325000 207500 285000 1000 L +207500 285000 167500 285000 1000 L +167500 325000 167500 310000 1000 L +167500 300000 167500 285000 1000 L +167500 305000 5000 5000 1000 90 180 A +177500 303000 177500 306500 400 L +177500 306500 178000 307000 400 L +178000 307000 179000 307000 400 L +179000 307000 179500 306500 400 L +179500 303000 179500 306500 400 L +181201 307000 182201 307000 400 L +181701 303000 181701 307000 400 L +180701 304000 181701 303000 400 L +183902 307000 184902 307000 400 L +184402 303000 184402 307000 400 L +183402 304000 184402 303000 400 L +482500 277500 25000 25000 1000 180 360 A +455500 298500 457000 298500 400 L +457500 299000 457000 298500 400 L +457500 299000 457500 302000 400 L +457500 302000 457000 302500 400 L +455500 302500 457000 302500 400 L +454299 299000 453799 298500 400 L +454299 299000 454299 300000 400 L +454299 300000 453799 300500 400 L +452799 300500 453799 300500 400 L +452799 300500 452299 300000 400 L +452299 299000 452299 300000 400 L +452799 298500 452299 299000 400 L +452799 298500 453799 298500 400 L +454299 301000 453799 300500 400 L +454299 301000 454299 302000 400 L +454299 302000 453799 302500 400 L +452799 302500 453799 302500 400 L +452799 302500 452299 302000 400 L +452299 301000 452299 302000 400 L +452799 300500 452299 301000 400 L +580000 372000 540000 372000 2000 L +540000 372000 540000 354000 2000 L +540000 354000 580000 354000 2000 L +580000 354000 580000 372000 2000 L +580000 372000 540000 372000 2000 L +540000 372000 540000 366000 2000 L +540000 366000 580000 366000 2000 L +580000 366000 580000 372000 2000 L +567000 372000 567000 366000 1000 L +553000 372000 553000 366000 1000 L +580000 375500 580000 379000 400 L +580000 375500 579500 375000 400 L +578500 375000 579500 375000 400 L +578500 375000 578000 375500 400 L +578000 375500 578000 379000 400 L +576799 378500 576299 379000 400 L +575299 379000 576299 379000 400 L +575299 379000 574799 378500 400 L +574799 375500 574799 378500 400 L +575299 375000 574799 375500 400 L +575299 375000 576299 375000 400 L +576799 375500 576299 375000 400 L +574799 377000 576299 377000 400 L +280000 287500 280000 297500 2000 L +280000 257500 280000 267500 2000 L +275000 267500 285000 267500 2000 L +275000 287500 275000 267500 2000 L +285000 287500 275000 287500 2000 L +285000 267500 285000 287500 2000 L +282000 269500 282000 271500 400 L +282000 271500 281500 272000 400 L +280500 272000 281500 272000 400 L +280000 271500 280500 272000 400 L +280000 270000 280000 271500 400 L +278000 270000 282000 270000 400 L +280000 270000 278000 272000 400 L +278000 273201 280000 275201 400 L +280000 275201 281500 275201 400 L +282000 274701 281500 275201 400 L +282000 273701 282000 274701 400 L +281500 273201 282000 273701 400 L +280500 273201 281500 273201 400 L +280500 273201 280000 273701 400 L +280000 273701 280000 275201 400 L +537500 320000 537500 375000 2000 L +532500 320000 537500 320000 2000 L +532500 375000 532500 320000 2000 L +512500 375000 532500 375000 2000 L +512500 320000 512500 375000 2000 L +507500 320000 512500 320000 2000 L +507500 385000 507500 320000 2000 L +582500 375000 537500 375000 2000 L +582500 320000 582500 375000 2000 L +587500 320000 582500 320000 2000 L +587500 375000 587500 320000 2000 L +607500 375000 587500 375000 2000 L +607500 320000 607500 375000 2000 L +612500 320000 607500 320000 2000 L +612500 385000 612500 320000 2000 L +612500 385000 507500 385000 2000 L +86000 280000 76000 280000 2000 L +116000 280000 106000 280000 2000 L +106000 275000 106000 285000 2000 L +86000 275000 106000 275000 2000 L +86000 285000 86000 275000 2000 L +106000 285000 86000 285000 2000 L +102000 282000 104000 282000 400 L +102000 282000 101500 281500 400 L +101500 280500 101500 281500 400 L +102000 280000 101500 280500 400 L +102000 280000 103500 280000 400 L +103500 278000 103500 282000 400 L +103500 280000 101500 278000 400 L +98799 278000 99799 278000 400 L +99299 278000 99299 282000 400 L +100299 281000 99299 282000 400 L +97598 281500 97098 282000 400 L +95598 282000 97098 282000 400 L +95598 282000 95098 281500 400 L +95098 280500 95098 281500 400 L +97598 278000 95098 280500 400 L +95098 278000 97598 278000 400 L +482500 370000 15000 15000 1000 180 360 A +465500 381000 467000 381000 400 L +467500 381500 467000 381000 400 L +467500 381500 467500 384500 400 L +467500 384500 467000 385000 400 L +465500 385000 467000 385000 400 L +462799 381000 463799 381000 400 L +463299 381000 463299 385000 400 L +464299 384000 463299 385000 400 L +547000 280500 547000 286500 1000 L +533000 280500 533000 286500 1000 L +520000 286500 520000 280500 2000 L +560000 286500 520000 286500 2000 L +560000 280500 560000 286500 2000 L +520000 280500 560000 280500 2000 L +520000 298500 520000 280500 2000 L +560000 298500 520000 298500 2000 L +560000 280500 560000 298500 2000 L +520000 280500 560000 280500 2000 L +520000 274000 520000 277000 400 L +520000 274000 520500 273500 400 L +520500 273500 521500 273500 400 L +521500 273500 522000 274000 400 L +522000 274000 522000 277000 400 L +521500 277500 522000 277000 400 L +520500 277500 521500 277500 400 L +520000 277000 520500 277500 400 L +521000 276500 522000 277500 400 L +523201 275500 525201 273500 400 L +523201 275500 525701 275500 400 L +525201 273500 525201 277500 400 L +632500 357500 660000 357500 4000 L +632500 347500 660000 347500 4000 L +632500 337500 660000 337500 4000 L +632500 327500 660000 327500 4000 L +632500 317500 660000 317500 4000 L +632500 307500 660000 307500 4000 L +632500 297500 660000 297500 4000 L +632500 287500 660000 287500 4000 L +632500 277500 660000 277500 4000 L +632500 267500 660000 267500 4000 L +632500 257500 660000 257500 4000 L +632500 247500 660000 247500 4000 L +632500 237500 660000 237500 4000 L +632500 227500 660000 227500 4000 L +632500 217500 660000 217500 4000 L +632500 207500 660000 207500 4000 L +632500 197500 660000 197500 4000 L +632500 187500 660000 187500 4000 L +632500 177500 660000 177500 4000 L +632500 167500 660000 167500 4000 L +632500 157500 660000 157500 4000 L +632500 147500 660000 147500 4000 L +632500 137500 660000 137500 4000 L +632500 127500 660000 127500 4000 L +632500 117500 660000 117500 4000 L +632500 107500 660000 107500 4000 L +632500 97500 660000 97500 4000 L +632500 87500 660000 87500 4000 L +632500 77500 660000 77500 4000 L +632500 67500 660000 67500 4000 L +632500 57500 660000 57500 4000 L +632500 47500 660000 47500 4000 L +652500 387500 652500 365500 2000 L +652500 365500 662000 365500 2000 L +662000 365500 684500 365500 1000 L +684500 365500 684500 377500 1000 L +684500 377500 684500 387500 2000 L +684500 387500 652500 387500 2000 L +652500 39500 652500 17500 2000 L +652500 17500 684500 17500 2000 L +684500 17500 684500 27500 2000 L +684500 27500 684500 39500 1000 L +684500 39500 662000 39500 1000 L +662000 39500 652500 39500 2000 L +662000 365500 662000 39500 2000 L +684500 377500 702500 377500 2000 L +702500 377500 702500 27500 2000 L +702500 27500 684500 27500 2000 L +662500 342500 662500 345500 800 L +662500 342500 669500 342500 800 L +670500 343500 669500 342500 800 L +670500 343500 670500 344500 800 L +669500 345500 670500 344500 800 L +670500 337098 670500 339098 800 L +662500 338098 670500 338098 800 L +664500 340098 662500 338098 800 L +662500 330696 662500 334696 800 L +662500 334696 666500 334696 800 L +666500 334696 665500 333696 800 L +665500 331696 665500 333696 800 L +665500 331696 666500 330696 800 L +666500 330696 669500 330696 800 L +670500 331696 669500 330696 800 L +670500 331696 670500 333696 800 L +669500 334696 670500 333696 800 L +327500 260000 10000 10000 1000 180 360 A +315500 266000 317000 266000 400 L +317500 266500 317000 266000 400 L +317500 266500 317500 269500 400 L +317500 269500 317000 270000 400 L +315500 270000 317000 270000 400 L +314299 266000 312299 268000 400 L +312299 268000 312299 269500 400 L +312799 270000 312299 269500 400 L +312799 270000 313799 270000 400 L +314299 269500 313799 270000 400 L +314299 268500 314299 269500 400 L +314299 268500 313799 268000 400 L +312299 268000 313799 268000 400 L +447500 32500 447500 22500 2000 L +447500 62500 447500 52500 2000 L +452500 52500 442500 52500 2000 L +452500 32500 452500 52500 2000 L +442500 32500 452500 32500 2000 L +442500 52500 442500 32500 2000 L +445500 48500 445500 50500 400 L +445500 48500 446000 48000 400 L +446000 48000 447000 48000 400 L +447500 48500 447000 48000 400 L +447500 48500 447500 50000 400 L +445500 50000 449500 50000 400 L +447500 50000 449500 48000 400 L +446000 46799 445500 46299 400 L +445500 45299 445500 46299 400 L +445500 45299 446000 44799 400 L +446000 44799 449000 44799 400 L +449500 45299 449000 44799 400 L +449500 45299 449500 46299 400 L +449000 46799 449500 46299 400 L +447500 44799 447500 46299 400 L +300000 267500 300000 257500 2000 L +300000 297500 300000 287500 2000 L +305000 287500 295000 287500 2000 L +305000 267500 305000 287500 2000 L +295000 267500 305000 267500 2000 L +295000 287500 295000 267500 2000 L +298000 283500 298000 285500 400 L +298000 283500 298500 283000 400 L +298500 283000 299500 283000 400 L +300000 283500 299500 283000 400 L +300000 283500 300000 285000 400 L +298000 285000 302000 285000 400 L +300000 285000 302000 283000 400 L +302000 280299 302000 281299 400 L +298000 280799 302000 280799 400 L +299000 281799 298000 280799 400 L +301500 279098 302000 278598 400 L +298500 279098 301500 279098 400 L +298500 279098 298000 278598 400 L +298000 277598 298000 278598 400 L +298000 277598 298500 277098 400 L +298500 277098 301500 277098 400 L +302000 277598 301500 277098 400 L +302000 277598 302000 278598 400 L +301000 279098 299000 277098 400 L +482500 330000 15000 15000 1000 0 360 A +498000 319000 499500 319000 400 L +497500 318500 498000 319000 400 L +497500 315500 497500 318500 400 L +497500 315500 498000 315000 400 L +498000 315000 499500 315000 400 L +500701 315500 501201 315000 400 L +501201 315000 502701 315000 400 L +502701 315000 503201 315500 400 L +503201 315500 503201 316500 400 L +500701 319000 503201 316500 400 L +500701 319000 503201 319000 400 L +382500 320000 382500 375000 2000 L +377500 320000 382500 320000 2000 L +377500 375000 377500 320000 2000 L +357500 375000 377500 375000 2000 L +357500 320000 357500 375000 2000 L +352500 320000 357500 320000 2000 L +352500 385000 352500 320000 2000 L +427500 375000 382500 375000 2000 L +427500 320000 427500 375000 2000 L +432500 320000 427500 320000 2000 L +432500 375000 432500 320000 2000 L +452500 375000 432500 375000 2000 L +452500 320000 452500 375000 2000 L +457500 320000 452500 320000 2000 L +457500 385000 457500 320000 2000 L +457500 385000 352500 385000 2000 L +70800 264600 45000 264600 2000 L +45000 264600 45000 292200 2000 L +45000 292200 70800 292200 2000 L +58800 292200 58800 264600 2000 L +45000 271500 8400 272500 2000 L +8400 272500 8400 284300 2000 L +8400 284300 45000 285300 2000 L +66800 278400 67300 278900 400 L +65300 278400 66800 278400 400 L +64800 278900 65300 278400 400 L +64800 278900 64800 279900 400 L +64800 279900 65300 280400 400 L +65300 280400 66800 280400 400 L +66800 280400 67300 280900 400 L +67300 280900 67300 281900 400 L +66800 282400 67300 281900 400 L +65300 282400 66800 282400 400 L +64800 281900 65300 282400 400 L +69001 282400 70001 282400 400 L +69501 278400 69501 282400 400 L +68501 279400 69501 278400 400 L +599500 280500 599500 286500 1000 L +585500 280500 585500 286500 1000 L +572500 286500 572500 280500 2000 L +612500 286500 572500 286500 2000 L +612500 280500 612500 286500 2000 L +572500 280500 612500 280500 2000 L +572500 298500 572500 280500 2000 L +612500 298500 572500 298500 2000 L +612500 280500 612500 298500 2000 L +572500 280500 612500 280500 2000 L +572500 274000 572500 277000 400 L +572500 274000 573000 273500 400 L +573000 273500 574000 273500 400 L +574000 273500 574500 274000 400 L +574500 274000 574500 277000 400 L +574000 277500 574500 277000 400 L +573000 277500 574000 277500 400 L +572500 277000 573000 277500 400 L +573500 276500 574500 277500 400 L +575701 274000 576201 273500 400 L +576201 273500 577201 273500 400 L +577201 273500 577701 274000 400 L +577701 274000 577701 277000 400 L +577201 277500 577701 277000 400 L +576201 277500 577201 277500 400 L +575701 277000 576201 277500 400 L +576201 275500 577701 275500 400 L +572500 182500 572500 192500 1000 L +582500 192500 572500 187500 1000 L +582500 182500 582500 192500 1000 L +572500 187500 582500 182500 1000 L +582500 187500 592500 187500 1000 L +562500 187500 572500 187500 1000 L +585000 182500 585000 186500 400 L +586500 182500 587000 183000 400 L +587000 183000 587000 186000 400 L +586500 186500 587000 186000 400 L +584500 186500 586500 186500 400 L +584500 182500 586500 182500 400 L +588201 186500 590701 184000 400 L +590701 182500 590701 184000 400 L +588201 182500 590701 182500 400 L +572500 122500 612500 122500 1000 L +612500 122500 612500 82500 1000 L +612500 82500 572500 82500 1000 L +572500 122500 572500 107500 1000 L +572500 97500 572500 82500 1000 L +572500 102500 5000 5000 1000 90 180 A +582500 100500 582500 104000 400 L +582500 104000 583000 104500 400 L +583000 104500 584000 104500 400 L +584000 104500 584500 104000 400 L +584500 100500 584500 104000 400 L +585701 100500 587701 100500 400 L +585701 100500 585701 102500 400 L +585701 102500 586201 102000 400 L +586201 102000 587201 102000 400 L +587201 102000 587701 102500 400 L +587701 102500 587701 104000 400 L +587201 104500 587701 104000 400 L +586201 104500 587201 104500 400 L +585701 104000 586201 104500 400 L +599500 198000 599500 204000 1000 L +585500 198000 585500 204000 1000 L +572500 204000 572500 198000 2000 L +612500 204000 572500 204000 2000 L +612500 198000 612500 204000 2000 L +572500 198000 612500 198000 2000 L +572500 216000 572500 198000 2000 L +612500 216000 572500 216000 2000 L +612500 198000 612500 216000 2000 L +572500 198000 612500 198000 2000 L +572500 191500 572500 194500 400 L +572500 191500 573000 191000 400 L +573000 191000 574000 191000 400 L +574000 191000 574500 191500 400 L +574500 191500 574500 194500 400 L +574000 195000 574500 194500 400 L +573000 195000 574000 195000 400 L +572500 194500 573000 195000 400 L +573500 194000 574500 195000 400 L +575701 191000 577701 191000 400 L +575701 191000 575701 193000 400 L +575701 193000 576201 192500 400 L +576201 192500 577201 192500 400 L +577201 192500 577701 193000 400 L +577701 193000 577701 194500 400 L +577201 195000 577701 194500 400 L +576201 195000 577201 195000 400 L +575701 194500 576201 195000 400 L +572500 62500 612500 62500 1000 L +612500 62500 612500 22500 1000 L +612500 22500 572500 22500 1000 L +572500 62500 572500 47500 1000 L +572500 37500 572500 22500 1000 L +572500 42500 5000 5000 1000 90 180 A +582500 40500 582500 44000 400 L +582500 44000 583000 44500 400 L +583000 44500 584000 44500 400 L +584000 44500 584500 44000 400 L +584500 40500 584500 44000 400 L +585701 42500 587701 40500 400 L +585701 42500 588201 42500 400 L +587701 40500 587701 44500 400 L +327500 290000 10000 10000 1000 0 360 A +338000 284000 339500 284000 400 L +337500 283500 338000 284000 400 L +337500 280500 337500 283500 400 L +337500 280500 338000 280000 400 L +338000 280000 339500 280000 400 L +341201 284000 342201 284000 400 L +341701 280000 341701 284000 400 L +340701 281000 341701 280000 400 L +343402 283500 343902 284000 400 L +343402 280500 343402 283500 400 L +343402 280500 343902 280000 400 L +343902 280000 344902 280000 400 L +344902 280000 345402 280500 400 L +345402 280500 345402 283500 400 L +344902 284000 345402 283500 400 L +343902 284000 344902 284000 400 L +343402 283000 345402 281000 400 L +105000 106800 105000 43300 2000 L +20000 106800 105000 106800 2000 L +20000 43300 20000 106800 2000 L +105000 43300 20000 43300 2000 L +103500 112800 105000 112800 400 L +103500 109300 103500 112800 400 L +104000 108800 103500 109300 400 L +104000 108800 104500 108800 400 L +105000 109300 104500 108800 400 L +102299 112300 101799 112800 400 L +100299 112800 101799 112800 400 L +100299 112800 99799 112300 400 L +99799 111300 99799 112300 400 L +102299 108800 99799 111300 400 L +99799 108800 102299 108800 400 L +355000 295000 395000 295000 1000 L +395000 295000 395000 255000 1000 L +395000 255000 355000 255000 1000 L +355000 295000 355000 280000 1000 L +355000 270000 355000 255000 1000 L +355000 275000 5000 5000 1000 90 180 A +365000 273000 365000 276500 400 L +365000 276500 365500 277000 400 L +365500 277000 366500 277000 400 L +366500 277000 367000 276500 400 L +367000 273000 367000 276500 400 L +368701 277000 369701 277000 400 L +369201 273000 369201 277000 400 L +368201 274000 369201 273000 400 L +370902 276500 371402 277000 400 L +370902 273500 370902 276500 400 L +370902 273500 371402 273000 400 L +371402 273000 372402 273000 400 L +372402 273000 372902 273500 400 L +372902 273500 372902 276500 400 L +372402 277000 372902 276500 400 L +371402 277000 372402 277000 400 L +370902 276000 372902 274000 400 L +322500 342500 10000 10000 1000 0 360 A +333000 336500 334500 336500 400 L +332500 336000 333000 336500 400 L +332500 333000 332500 336000 400 L +332500 333000 333000 332500 400 L +333000 332500 334500 332500 400 L +337201 332500 337701 333000 400 L +336201 332500 337201 332500 400 L +335701 333000 336201 332500 400 L +335701 333000 335701 336000 400 L +335701 336000 336201 336500 400 L +337201 334500 337701 335000 400 L +335701 334500 337201 334500 400 L +336201 336500 337201 336500 400 L +337201 336500 337701 336000 400 L +337701 335000 337701 336000 400 L +132500 342500 10000 10000 1000 180 360 A +120500 348500 122000 348500 400 L +122500 349000 122000 348500 400 L +122500 349000 122500 352000 400 L +122500 352000 122000 352500 400 L +120500 352500 122000 352500 400 L +117299 352500 119299 352500 400 L +119299 350500 119299 352500 400 L +119299 350500 118799 351000 400 L +117799 351000 118799 351000 400 L +117799 351000 117299 350500 400 L +117299 349000 117299 350500 400 L +117799 348500 117299 349000 400 L +117799 348500 118799 348500 400 L +119299 349000 118799 348500 400 L +580000 141000 125000 141000 2000 L +125000 141000 125000 170000 2000 L +125000 170000 580000 170000 2000 L +580000 170000 580000 141000 2000 L +580000 172500 580000 176000 400 L +580000 172500 579500 172000 400 L +578500 172000 579500 172000 400 L +578500 172000 578000 172500 400 L +578000 172500 578000 176000 400 L +575299 172000 576299 172000 400 L +575799 172000 575799 176000 400 L +576799 175000 575799 176000 400 L +132500 372500 10000 10000 1000 180 360 A +120500 378500 122000 378500 400 L +122500 379000 122000 378500 400 L +122500 379000 122500 382000 400 L +122500 382000 122000 382500 400 L +120500 382500 122000 382500 400 L +119299 382000 118799 382500 400 L +117799 382500 118799 382500 400 L +117799 382500 117299 382000 400 L +117299 379000 117299 382000 400 L +117799 378500 117299 379000 400 L +117799 378500 118799 378500 400 L +119299 379000 118799 378500 400 L +117299 380500 118799 380500 400 L +167500 377500 287500 377500 1000 L +287500 377500 287500 337500 1000 L +287500 337500 167500 337500 1000 L +167500 377500 167500 362500 1000 L +167500 352500 167500 337500 1000 L +167500 357500 5000 5000 1000 90 180 A +177500 355500 177500 359000 400 L +177500 359000 178000 359500 400 L +178000 359500 179000 359500 400 L +179000 359500 179500 359000 400 L +179500 355500 179500 359000 400 L +180701 359500 182701 357500 400 L +182701 356000 182701 357500 400 L +182201 355500 182701 356000 400 L +181201 355500 182201 355500 400 L +180701 356000 181201 355500 400 L +180701 356000 180701 357000 400 L +180701 357000 181201 357500 400 L +181201 357500 182701 357500 400 L +105500 310500 85500 310500 2000 L +85500 310500 85500 300500 2000 L +85500 300500 105500 300500 2000 L +105500 300500 105500 310500 2000 L +115500 305500 105500 305500 2000 L +85500 305500 75500 305500 2000 L +101500 307500 103500 307500 400 L +101500 307500 101000 307000 400 L +101000 306000 101000 307000 400 L +101500 305500 101000 306000 400 L +101500 305500 103000 305500 400 L +103000 303500 103000 307500 400 L +103000 305500 101000 303500 400 L +98299 303500 99299 303500 400 L +98799 303500 98799 307500 400 L +99799 306500 98799 307500 400 L +95598 303500 96598 303500 400 L +96098 303500 96098 307500 400 L +97098 306500 96098 307500 400 L +675000 5000 45000 5000 2000 L +675000 398700 675000 5000 2000 L +45000 398700 675000 398700 2000 L +45000 5000 45000 398700 2000 L +335000 62500 6000 CLRPVSQ +335000 22500 6000 CLRPVR +297500 342500 6000 CLRPVSQ +297500 372500 6000 CLRPVR +447500 122500 6000 CLRPVSQ +447500 82500 6000 CLRPVR +557500 122500 6000 CLRPVSQ +557500 82500 6000 CLRPVR +537500 62500 6000 CLRPVSQ +537500 22500 6000 CLRPVR +467500 62500 6000 CLRPVSQ +467500 22500 6000 CLRPVR +467500 122500 6000 CLRPVSQ +467500 82500 6000 CLRPVR +537500 122500 6000 CLRPVSQ +537500 82500 6000 CLRPVR +557500 62500 6000 CLRPVSQ +557500 22500 6000 CLRPVR +157500 342500 6000 CLRPVSQ +157500 372500 6000 CLRPVR +57500 239500 6000 CLRPVSQ +57500 249500 6000 CLRPVR +82500 151000 7000 CLRPVR +72500 156000 7000 CLRPVR +82500 161000 7000 CLRPVR +72500 166000 7000 CLRPVR +82500 171000 7000 CLRPVR +72500 176000 7000 CLRPVR +82500 181000 7000 CLRPVR +72500 186000 7000 CLRPVR +82500 191000 7000 CLRPVSQ +81500 239500 6000 CLRPVSQ +81500 249500 6000 CLRPVR +85000 330000 6000 CLRPVSQ +85000 360000 6000 CLRPVR +355000 62500 6000 CLRPVSQ +355000 22500 6000 CLRPVR +280000 257500 6000 CLRPVSQ +280000 297500 6000 CLRPVR +116000 280000 6000 CLRPVSQ +76000 280000 6000 CLRPVR +652500 47500 6000 CLRPVSQ +652500 57500 6000 CLRPVR +652500 67500 6000 CLRPVR +652500 77500 6000 CLRPVR +652500 87500 6000 CLRPVR +652500 97500 6000 CLRPVR +652500 107500 6000 CLRPVR +652500 117500 6000 CLRPVR +652500 127500 6000 CLRPVR +652500 137500 6000 CLRPVR +652500 147500 6000 CLRPVR +652500 157500 6000 CLRPVR +652500 167500 6000 CLRPVR +652500 177500 6000 CLRPVR +652500 187500 6000 CLRPVR +652500 197500 6000 CLRPVR +652500 207500 6000 CLRPVR +652500 217500 6000 CLRPVR +652500 227500 6000 CLRPVR +652500 237500 6000 CLRPVR +652500 247500 6000 CLRPVR +652500 257500 6000 CLRPVR +652500 267500 6000 CLRPVR +652500 277500 6000 CLRPVR +652500 287500 6000 CLRPVR +652500 297500 6000 CLRPVR +652500 307500 6000 CLRPVR +652500 317500 6000 CLRPVR +652500 327500 6000 CLRPVR +652500 337500 6000 CLRPVR +652500 347500 6000 CLRPVR +652500 357500 6000 CLRPVR +642500 47500 6000 CLRPVR +642500 57500 6000 CLRPVR +642500 67500 6000 CLRPVR +642500 77500 6000 CLRPVR +642500 87500 6000 CLRPVR +642500 97500 6000 CLRPVR +642500 107500 6000 CLRPVR +642500 117500 6000 CLRPVR +642500 127500 6000 CLRPVR +642500 137500 6000 CLRPVR +642500 147500 6000 CLRPVR +642500 157500 6000 CLRPVR +642500 167500 6000 CLRPVR +642500 177500 6000 CLRPVR +642500 187500 6000 CLRPVR +642500 197500 6000 CLRPVR +642500 207500 6000 CLRPVR +642500 217500 6000 CLRPVR +642500 227500 6000 CLRPVR +642500 237500 6000 CLRPVR +642500 247500 6000 CLRPVR +642500 257500 6000 CLRPVR +642500 267500 6000 CLRPVR +642500 277500 6000 CLRPVR +642500 287500 6000 CLRPVR +642500 297500 6000 CLRPVR +642500 307500 6000 CLRPVR +642500 317500 6000 CLRPVR +642500 327500 6000 CLRPVR +642500 337500 6000 CLRPVR +642500 347500 6000 CLRPVR +642500 357500 6000 CLRPVR +632500 47500 6000 CLRPVR +632500 57500 6000 CLRPVR +632500 67500 6000 CLRPVR +632500 77500 6000 CLRPVR +632500 87500 6000 CLRPVR +632500 97500 6000 CLRPVR +632500 107500 6000 CLRPVR +632500 117500 6000 CLRPVR +632500 127500 6000 CLRPVR +632500 137500 6000 CLRPVR +632500 147500 6000 CLRPVR +632500 157500 6000 CLRPVR +632500 167500 6000 CLRPVR +632500 177500 6000 CLRPVR +632500 187500 6000 CLRPVR +632500 197500 6000 CLRPVR +632500 207500 6000 CLRPVR +632500 217500 6000 CLRPVR +632500 227500 6000 CLRPVR +632500 237500 6000 CLRPVR +632500 247500 6000 CLRPVR +632500 257500 6000 CLRPVR +632500 267500 6000 CLRPVR +632500 277500 6000 CLRPVR +632500 287500 6000 CLRPVR +632500 297500 6000 CLRPVR +632500 307500 6000 CLRPVR +632500 317500 6000 CLRPVR +632500 327500 6000 CLRPVR +632500 337500 6000 CLRPVR +632500 347500 6000 CLRPVR +632500 357500 6000 CLRPVR +447500 62500 6000 CLRPVSQ +447500 22500 6000 CLRPVR +300000 297500 6000 CLRPVSQ +300000 257500 6000 CLRPVR +55000 269500 7000 CLRPVSQ +55000 287200 7000 CLRPVR +64800 264600 7000 CLRPVR +64800 292200 7000 CLRPVR +562500 187500 6000 CLRPVSQ +592500 187500 6000 CLRPVR +74500 44500 8000 CLRPVR +74500 105600 8000 CLRPVR +115500 305500 6000 CLRPVSQ +75500 305500 6000 CLRPVR +475000 342500 6000 CLRPVR +490000 342500 6000 CLRPVR +592500 277500 6000 CLRPVR +612500 287500 6000 CLRPVR +540000 327500 6000 CLRPVR +475000 317500 6000 CLRPVR +647500 102500 6000 CLRPVR +537500 47500 6000 CLRPVR +487500 47500 6000 CLRPVR +577500 40000 6000 CLRPVR +525000 100000 6000 CLRPVR +447500 95000 6000 CLRPVR +360000 317500 6000 CLRPVR +487500 107500 4000 CLRPVR +537500 107500 4000 CLRPVR +262500 172500 4000 CLRPVR +597500 65000 4000 CLRPVR +407500 47500 6000 CLRPVR +335000 52500 4000 CLRPVR +547500 142500 4000 CLRPVR +512500 80000 4000 CLRPVR +557500 237500 4000 CLRPVR +447500 30000 4000 CLRPVR +582500 285000 4000 CLRPVR +447500 107500 4000 CLRPVR +472500 107500 4000 CLRPVR +170000 142500 4000 CLRPVR +280000 142500 4000 CLRPVR +202500 282500 4000 CLRPVR +257500 250000 4000 CLRPVR +360000 252500 4000 CLRPVR +292500 222500 4000 CLRPVR +340000 282500 4000 CLRPVR +250000 172500 4000 CLRPVR +180000 170000 4000 CLRPVR +430000 197500 4000 CLRPVR +355000 385000 4000 CLRPVR +297500 352500 6000 CLRPVR +375000 360000 4000 CLRPVR +122000 160500 4000 CLRPVR +327500 352500 4000 CLRPVR +210000 322500 4000 CLRPVR +570000 245000 4000 CLRPVR +530000 327500 4000 CLRPVR +grestore +% PCBENDDATA --- do not remove --- +showpage +%%EOF diff --git a/include/aic.h b/include/aic.h index 94d3a87..653f97b 100644 --- a/include/aic.h +++ b/include/aic.h @@ -2,7 +2,7 @@ Actuator Interface Card Host Interface Library - Copyright (C) 2003, 2004 Walter Fetter Lages + Copyright (C) 2003..2007 Walter Fetter Lages 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 @@ -57,6 +57,10 @@ class AIC_COMM */ virtual int get_status(int status,...)=0; +/** Finalizes an AIC_COMM +*/ + virtual ~AIC_COMM(void) {}; + /** Thrown by AIC errors * @author Walter Fetter Lages (w.fetter@ieee.org) */ @@ -203,10 +207,12 @@ class AIC_INDEX /** Provides access to all devices in an Actuator Interface Card * @author Walter Fetter Lages (w.fetter@ieee.org) -* @version AIC-1.3.0 +* @version AIC-1.6.1 */ class AIC { + AIC_COMM *port; + public: /** Motor actuated by AIC @@ -224,7 +230,7 @@ class AIC /** Sync-switch read by AIC */ AIC_INDEX index; - + /** Initializes an AIC * @param comm pointer to AIC_COMM object implementing the communication channel */ @@ -233,6 +239,33 @@ class AIC /** Finalizes an AIC */ virtual ~AIC(void) {}; + +/** Resets an AIC +* @since AIC-1.6.1 +*/ + void reset(void); + +/** Sets the reference for motor controller +* @param ref reference +* @since AIC-1.6.1 +*/ + void reference(double ref); + +/** Gets AIC busy status +* @return 1 if AIC is busy, 0 otherwise +* @since AIC-1.6.1 +* @see AIC_STATUS +*/ + int busy(void); + +/** Sends a command and its arguments to AIC +* @param command Code of the command to send to AIC +* @param n size of argument buffer +* @param buffer pointer to arguments +* @see AIC_COMMAND +*/ + void send_command(int command,int n,const void *buffer); + }; /** diff --git a/include/aichost.h b/include/aichost.h index d01af43..dc11753 100644 --- a/include/aichost.h +++ b/include/aichost.h @@ -47,7 +47,7 @@ class AIC_HOST protected: double u; ///< Motor voltage - double ref; ///< PID reference + double ref; ///< Controller reference int status; ///< Current Status public: @@ -91,7 +91,7 @@ class AIC_HOST */ double voltage(void) const; -/** Gets the reference for PID associtated to motor received with the last command +/** Gets the reference for Controller associtated to motor received with the last command * @return reference * @since AIC-1.6.0 */ diff --git a/include/aicnet.h b/include/aicnet.h index 6eca0c9..73bf36b 100644 --- a/include/aicnet.h +++ b/include/aicnet.h @@ -55,7 +55,21 @@ enum AIC_COMMAND AIC_MOTOR_REF= 0x15, ///< Sets the reference for the motor PID AIC_STATUS= 0x20, ///< Status identification AIC_BRAKE_RELEASE= 0x30, ///< Releases brake - AIC_MOTOR_ON= 0x31 ///< Turns motor on + AIC_MOTOR_ON= 0x31, ///< Turns motor on + AIC_USER0= 0x3b, ///< User defined command 0 + AIC_USER1= 0x3c, ///< User defined command 1 + AIC_USER2= 0x3d, ///< User defined command 2 + AIC_USER3= 0x3e, ///< User defined command 3 + AIC_NOP= 0x3f ///< No operation }; +/** AIC status codes +*/ +enum AIC_STATUS +{ + AIC_INDEX_ON= 0x01, ///< Index on + AIC_BUSY= 0x02 ///< AIC is busy +}; + + #endif diff --git a/include/aicsim.h b/include/aicsim.h index ca3a74e..cbd2663 100644 --- a/include/aicsim.h +++ b/include/aicsim.h @@ -42,6 +42,8 @@ */ class AIC_SIM:public AIC_COMM, public AIC { + int count; ///< Simulated encoder count + public: /** Initialize AIC simulator diff --git a/include/sputtering.h b/include/sputtering.h new file mode 100644 index 0000000..0de2d01 --- /dev/null +++ b/include/sputtering.h @@ -0,0 +1,89 @@ +/****************************************************************************** + + Actuator Interface Card + Sputtering Controller Host Interface Library + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +#include + +#include + +#ifndef _SPUTTERING_H +#define _SPUTTERING_H + +/** @file sputtering.h + Sputtering Controller Host Interface Library + @author Walter Fetter Lages +*/ + +/** @defgroup sputhost Sputtering Controller Host Interface +@{ +*/ + + +/** SPUTTERING Controller +* @author Walter Fetter Lages (w.fetter@ieee.org) +*/ +class SPUTTERING: public AIC_UDP +{ + const int SHUTTER; + pthread_t get_status_th; + volatile int run; + + friend void *get_status(void *arg); + + public: + +/** Constructs an SPUTTERING +* @param name pointer to a string with the name of AIC to be connected to +* @param statport UDP port used to receive status from AIC +* @see aicnet.h +* @since AIC-1.6.1 +*/ + SPUTTERING(const char *name,int statport=STATUS_PORT); + +/** Destroys an SPUTTERING +*/ + ~SPUTTERING(void); + +/** Opens shutter for specified time +* @param us time in microseconds +* @since AIC-1.6.1 +*/ + void shutter(unsigned int us); + +/** Resets an SPUTTERING +* @since AIC-1.6.1 +*/ + void reset(void); + +/** Sets the reference for motor controller +* @param ref reference in rad +* @since AIC-1.6.1 +*/ + void reference(double ref); +}; + +/** +@} +*/ +#endif diff --git a/lib/Host.java b/lib/Host.java index b991ba4..76e651c 100644 --- a/lib/Host.java +++ b/lib/Host.java @@ -58,7 +58,7 @@ abstract public class Host */ public static final int MOTOR_ACT=0x10; -/** Motor PID reference command +/** Motor controller reference command */ public static final int MOTOR_REF=0x15; @@ -74,31 +74,61 @@ abstract public class Host */ public static final int MOTOR_ON=0x31; -/** Motor on status +/** User defined command 0 */ - public static final int MOTOR_IS_ON=1; + public static final int USER0=0x3b; -/** Brake applied status +/** User defined command 1 */ - public static final int BRAKE_APPLIED=2; + public static final int USER1=0x3c; + +/** User defined command 2 +*/ + public static final int USER2=0x3d; + +/** User defined command 3 +*/ + public static final int USER3=0x3e; + +/** No operation command +*/ + public static final int NOP=0x3f; + + +/** Index on status +*/ + public static final int INDEX_ON=0x01; + +/** Busy status +*/ + public static final int BUSY=0x02; /** Voltage aplied to motors */ protected double u=0; -/** Reference for PID associated to motors +/** Reference for controller associated to motors */ protected double ref=0; - -/** Brake and motor status -*/ - protected int status=0; - + /** Gets command received from host computer * @return command code * @throws Exception depending on implementation */ - abstract public int command() throws Exception; + public int command() throws Exception + { + byte[] args= new byte[256]; + return command(args,256); + } + +/** Gets command received from host computer and its arguments array +* @param args command arguments array. args[0] is the length of actual arguments. +* @param size size of the arguments array +* @return command code +* @throws Exception depending on implementation +* @since AIC-1.6.1 +*/ + abstract public int command(byte[] args,int size) throws Exception; /** Sends encoder displacement and sync-switch status to host * @param disp encoder displacement in rad @@ -114,14 +144,6 @@ abstract public class Host */ abstract public void sendStatus(int disp,int index) throws Exception; -/** Gets brake and motor status -* @return brake and motor status -*/ - public int getStatus() - { - return status; - } - /** Gets motor voltage * @return motor voltage */ @@ -130,8 +152,8 @@ abstract public class Host return u; } -/** Gets PID reference -* @return PID reference +/** Gets controller reference +* @return controller reference * @since AIC-1.6.0 */ public double reference() @@ -139,6 +161,7 @@ abstract public class Host return ref; } } + /** @} */ diff --git a/lib/HostCAN.java b/lib/HostCAN.java index 74dd1d0..241610d 100644 --- a/lib/HostCAN.java +++ b/lib/HostCAN.java @@ -1,4 +1,3 @@ - /****************************************************************************** Actuator Interface Card @@ -62,8 +61,7 @@ public class HostCAN extends Host public HostCAN(int aicid,int bus) throws CanBusException { u=0; - status=0; - + id=aicid; canbus = (bus==0)? new CanBus(CanBus.CANBUS0):new CanBus(CanBus.CANBUS1); @@ -100,7 +98,6 @@ public class HostCAN extends Host public HostCAN(int aicid) throws CanBusException { u=0; - status=0; id=aicid; @@ -139,31 +136,26 @@ public class HostCAN extends Host } /** Gets command received from host computer +* @param args command arguments array. args[0] is the length of actual arguments. +* @param size size of the arguments array * @return command code * @throws CanBusException on CAN bus errors */ - public int command() throws CanBusException + public int command(byte[] args,int size) throws CanBusException { - - CanFrame frame = new CanFrame(); canbus.receive(frame); + + if(size <= frame.length) args[0]=(byte)(size-1); + else args[0]=(byte)frame.length; + + for(int i=0;i < args[0];i++) args[i+1]=frame.data[i]; int cmd=((frame.ID & AIC_CMD_MASK) >> 5); switch(cmd) { - case MOTOR_ON: - { - status|=MOTOR_IS_ON; - break; - } - case MOTOR_OFF: - { - status &= ~MOTOR_IS_ON; - break; - } case MOTOR_ACT: { long U=0; @@ -171,22 +163,14 @@ public class HostCAN extends Host u=Double.longBitsToDouble(U); break; } - case BRAKE_APPLY: - { - status|=BRAKE_APPLIED; - break; - } - case BRAKE_RELEASE: + case MOTOR_REF: { - status &= ~BRAKE_APPLIED; + long R=0; + for(int i=0;i < 8;i++) R=R | ( (((long)frame.data[7-i]) << (i*8)) & (0xffL << (i*8)) ); + ref=Double.longBitsToDouble(R); break; } - case RESET: - { - break; - } } - return cmd; } diff --git a/lib/HostUDP.java b/lib/HostUDP.java index ebb4797..5858e04 100644 --- a/lib/HostUDP.java +++ b/lib/HostUDP.java @@ -63,7 +63,7 @@ public class HostUDP extends Host public HostUDP(String controllername,int statport,int cmdport) throws UnknownHostException, SocketException { u=0; - status=0; + ref=0; statusport=statport; controlleraddr=InetAddress.getByName(controllername); @@ -80,7 +80,7 @@ public class HostUDP extends Host public HostUDP(String controllername,int statport) throws UnknownHostException, SocketException { u=0; - status=0; + ref=0; statusport=statport; controlleraddr=InetAddress.getByName(controllername); @@ -96,7 +96,7 @@ public class HostUDP extends Host public HostUDP(String controllername) throws UnknownHostException, SocketException { u=0; - status=0; + ref=0; statusport=STATUS_PORT; controlleraddr=InetAddress.getByName(controllername); @@ -113,54 +113,39 @@ public class HostUDP extends Host } /** Gets command received from host computer +* @param args command arguments array. args[0] is the length of actual arguments. +* @param size size of the arguments array * @return command code * @throws IOException on communication errors */ - public int command() throws IOException + public int command(byte[] args,int size) throws IOException { - int count; - - byte[] buff= new byte[256]; - - DatagramPacket p=new DatagramPacket(buff,256); + int s; + if(size < 256) s=256; else s=size; + + DatagramPacket p=new DatagramPacket(args,s); cmdfd.receive(p); - int cmd=buff[0]; + int cmd=args[0]; + args[0]=(byte)(p.getLength()-1); switch(cmd) { - case MOTOR_ON: - { - status|=MOTOR_IS_ON; - break; - } - case MOTOR_OFF: - { - status &= ~MOTOR_IS_ON; - break; - } case MOTOR_ACT: { long U=0; - for(int i=0;i < 8;i++) U=U | ( (((long) buff[7-i+1]) << (i*8)) & (0xffL << (i*8)) ); + for(int i=0;i < 8;i++) U=U | ( (((long) args[7-i+1]) << (i*8)) & (0xffL << (i*8)) ); u=Double.longBitsToDouble(U); break; } - case BRAKE_APPLY: - { - status|=BRAKE_APPLIED; - break; - } - case BRAKE_RELEASE: + case MOTOR_REF: { - status &= ~BRAKE_APPLIED; + long R=0; + for(int i=0;i < 8;i++) R=R | ( (((long) args[7-i+1]) << (i*8)) & (0xffL << (i*8)) ); + ref=Double.longBitsToDouble(R); break; } - case RESET: - { - break; - } } return cmd; diff --git a/lib/Makefile b/lib/Makefile index 83a5cc2..9a28049 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -34,6 +34,9 @@ ${PKGPATH}/HostUDP.class: HostUDP.java ${PKGPATH}/HostCAN.class: HostCAN.java ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} -d . HostCAN.java + +${PKGPATH}/Sputtering.class: Sputtering.java + ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} -d . Sputtering.java ${ASMINC}/tini.inc: ${NATINC}/tini.inc ln -s ${NATINC}/tini.inc ${ASMINC}/tini.inc @@ -97,8 +100,18 @@ tlib/pwm.mpp: tlib/pwm.a51 $(MAKE) -C tlib pwm.mpp aicio/pwm.mpp: aicio/pwm.a51 - $(MAKE) -C aicio pwm.mpp + $(MAKE) -C aicio pwm.mpp + +sputtering.tlib: sputtering.mpp + ${ASM} ${ASMOPT} sputtering.mpp + +sputtering.mpp: tlib/sputtering.mpp ${TRTAIPATH}/lib/rtai.mpp.lib aicio.mpp.lib + cat tlib/sputtering.mpp ${TRTAIPATH}/lib/rtai.mpp.lib aicio.mpp.lib > sputtering.mpp + echo end >> sputtering.mpp +tlib/sputtering.mpp: tlib/sputtering.c + $(MAKE) -C tlib sputtering.mpp + AIC.jar: ${PKGPATH}/PLD.class\ ${PKGPATH}/CtrlRegister.class\ ${PKGPATH}/PWM.class\ @@ -110,8 +123,9 @@ AIC.jar: ${PKGPATH}/PLD.class\ ${PKGPATH}/Host.class \ ${PKGPATH}/HostUDP.class \ ${PKGPATH}/HostCAN.class \ - brake.tlib index.tlib encoder.tlib pwm.tlib - jar cf AIC.jar ${PKGPATH} brake.tlib index.tlib encoder.tlib pwm.tlib + ${PKGPATH}/Sputtering.class \ + brake.tlib index.tlib encoder.tlib pwm.tlib sputtering.tlib + jar cf AIC.jar ${PKGPATH} brake.tlib index.tlib encoder.tlib pwm.tlib sputtering.tlib aic.o: aic.cpp ../include/aic.h ${CXX} ${CMPFLAGS} ${INCLUDE} ${CPPINCLUDE} -c aic.cpp @@ -133,9 +147,12 @@ aichostudp.o: aichostudp.cpp ../include/aichostudp.h ../include/aicnet.h aichostcan.o: aichostcan.cpp ../include/aichostcan.h ../include/aicnet.h ${CXX} ${CMPFLAGS} -c aichostcan.cpp + +sputtering.o: sputtering.cpp ../include/aicudp.h ../include/sputtering.h + ${CXX} ${CMPFLAGS} -c sputtering.cpp -libaic.a: aic.o aicudp.o aiccan.o aicsim.o aichost.o aichostudp.o aichostcan.o - ar -crvs libaic.a aic.o aicudp.o aiccan.o aicsim.o aichost.o aichostudp.o aichostcan.o +libaic.a: aic.o aicudp.o aiccan.o aicsim.o aichost.o aichostudp.o aichostcan.o sputtering.o + ar -crvs libaic.a aic.o aicudp.o aiccan.o aicsim.o aichost.o aichostudp.o aichostcan.o sputtering.o aicio.mpp.lib: aicio/aicio.mpp.lib cp aicio/aicio.mpp.lib . diff --git a/lib/Sputtering.java b/lib/Sputtering.java new file mode 100644 index 0000000..312428a --- /dev/null +++ b/lib/Sputtering.java @@ -0,0 +1,121 @@ +/****************************************************************************** + + Actuator Interface Card + Sputtering Interface + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +package br.ufrgs.ece.AIC; + +/** @addtogroup aicapp +@{ +*/ + +/** AIC Sputtering Real Time Interface +* @author Walter Fetter Lages (w.fetter@ieee.org) +* @version AIC-1.6.1 +*/ +public final class Sputtering +{ +/** True if native library was loaded +*/ + private static boolean libLoaded=false; + +/** Initializes Sputtering +*/ + private static native void initialize(); + +/** Finalizes Sputtering +*/ + public native void finalize(); + +/** Starts a real time PID controller +* @param period Desired sampling time in us +* @return Actual sampling time in us +*/ + public static native int pidStartRealtime(int period); + +/** Stops the real time PID controller +*/ + public static native void pidStopRealtime(); + +/** Sets PID reference +* @param reference PID set-point +*/ + public static native void setReference(float reference); + +/** Gets plant output +* @return Plant output in rad +*/ + public static native float getOutput(); + +/** Gets current time +* @return Current time in ticks +*/ + public static native int getTime(); + +/** Unlocks Sputtering usage +*/ + public static native void unlock(); + +/** Locks Sputtering usage +* @return 1 if locked +*/ + public static native byte lock(); + +/** Starts real time shutter controller +* @param period Desired sampling time in us +* @return Actual sampling time in us +*/ + public static native int shutterStartRealtime(int period); + +/** Stops the real time shutter controller +*/ + public static native void shutterStopRealtime(); + +/** Moves motor to home position +*/ + public static native void findHome(); + +/** Gets index sensor status +* @return Index sensor status +*/ + public static native int getIndex(); + +/** Opens shutter for specified time +* @param time Time to keep shutter open in us +*/ + public static native void openShutter(int time); + +/** Constructs a Sputtering objetct +*/ + public Sputtering() + { + if(!libLoaded) System.loadLibrary("sputtering.tlib"); + libLoaded=true; + + initialize(); + } +} + +/** +@} +*/ diff --git a/lib/aic.cpp b/lib/aic.cpp index 38cffac..fc93d89 100644 --- a/lib/aic.cpp +++ b/lib/aic.cpp @@ -117,4 +117,30 @@ encoder(comm), brake(comm), index(comm) { + port=comm; +} + +void AIC::reset(void) +{ + port->send_command(AIC_RESET); +} + +void AIC::reference(double ref) +{ + port->send_command(AIC_MOTOR_REF,ref); +} + +int AIC::busy(void) +{ + unsigned int status; + double disp; + + port->get_status(AIC_STATUS,&disp,&status); + + return (status & AIC_BUSY)? 1:0; +} + +void AIC::send_command(int command,int n,const void *buffer) +{ + port->send_command(command,n,buffer); } diff --git a/lib/aiccan.cpp b/lib/aiccan.cpp index b7b2e21..ba1ada2 100644 --- a/lib/aiccan.cpp +++ b/lib/aiccan.cpp @@ -155,10 +155,25 @@ void AIC_CAN::send_command(int command,...) va_start(ap,command); double volt=va_arg(ap,double); va_end(ap); - for(int i=0;i < 8;i++) msg[7-i]= ( ( *((unsigned long long *) &volt) ) >> (i*8) ) & 0xff; + for(int i=0;i < 8;i++) msg[7-i]= *((char *) &volt + i); msglen=8; break; } + case AIC_USER0: + case AIC_USER1: + case AIC_USER2: + case AIC_USER3: + { + va_list ap; + va_start(ap,command); + msglen=va_arg(ap,int); + unsigned char *ptr=msg; + if(msglen > 0) ptr=va_arg(ap,unsigned char *); + va_end(ap); + if(msglen > 8) throw BAD_SEND(); + for(unsigned int i=0;i < msglen;i++) msg[i]=ptr[i]; + break; + } default: throw BAD_COMMAND(); } diff --git a/lib/aichost.cpp b/lib/aichost.cpp index a5e43c1..f9ba10d 100644 --- a/lib/aichost.cpp +++ b/lib/aichost.cpp @@ -52,4 +52,3 @@ double AIC_HOST::reference(void) const { return ref; } - diff --git a/lib/aichostudp.cpp b/lib/aichostudp.cpp index 0b5f4d6..7a402b7 100644 --- a/lib/aichostudp.cpp +++ b/lib/aichostudp.cpp @@ -169,5 +169,3 @@ void AIC_HOST_UDP::send_status(double disp,int index) throw BAD_SEND(); } } - - diff --git a/lib/aicio/Makefile b/lib/aicio/Makefile index 8440771..0746849 100644 --- a/lib/aicio/Makefile +++ b/lib/aicio/Makefile @@ -26,7 +26,7 @@ encoder.mpp: encoder.a51 ${TINIINC} ${ASMINC}/aicpld.inc pwm.mpp: pwm.a51 ${TINIINC} ${ASMINC}/aicpld.inc ${ASMMACRO} -I${ASMINC} -e- pwm.a51 - + aicio.mpp.lib: brake.mpp index.mpp pwm.mpp encoder.mpp cat brake.mpp index.mpp pwm.mpp encoder.mpp > aicio.mpp.lib diff --git a/lib/aicio/pwm.a51 b/lib/aicio/pwm.a51 index a153aef..3e0d196 100644 --- a/lib/aicio/pwm.a51 +++ b/lib/aicio/pwm.a51 @@ -2,7 +2,8 @@ ; ; Actuator Interface Card ; PWM Functions -; Copyright (C) 2004, 2005 Walter Fetter Lages +; Copyright (C) 2004, 2007 Walter Fetter Lages +; 2007 Diego Caberlon Santini ; ; 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 @@ -251,59 +252,209 @@ pwm_parmabove: mov r3,#00h ; forces R3:R2:R1:R0=1000000 pwm_parmok: - TINIOS_ENTER_CRITICAL_SECTION - - mov MCNT1,#10h ; MST=0,MOF=0,SCB=0,CLM=1 - mov MA,r0 ; R3:R2:R1:R0 >> 4 using - mov MA,r1 ; math acelerator - mov MA,r2 - mov MA,r3 - mov MCNT0,#0a4h ;/LSHIFT=1,CSE=0,SCE=1,MAS40=4 -pwm_waitshift: mov a,MCNT1 - jb ACC.7,pwm_waitshift ; wait MST cleared - - mov a,MA ; the result is 16 bits - mov a,MA ; discard upper 16 bits - mov r1,MA - mov r0,MA - - mov MCNT1,#00h ; R1:R0 * max_count using - mov MB,r0 ; math accelarator - mov MB,r1 - mov dptr,#pwm_max_count ; load max_count in R5:R4 + mov a,r0 ;R3:R2:R1:R0 >>4 + rr a ;R0 >> 4 + rr a + rr a + rr a + anl a,#00Fh ;discard upper 4 bits + mov r0,a + mov a,r1 ;R1 >>4 + rr a + rr a + rr a + rr a + mov r1,a ;save R1 >> 4 + anl a,#0F0h ;discard lower 4 bits + orl a,r0 ;sets 4 uppers bits in R0 + mov r0,a + mov a,r1 ;gets R1 >> 4 + anl a,#00Fh ;discard upper 4 bits + mov r1,a + mov a,r2 ;R2 >> 4 + rr a + rr a + rr a + rr a + anl a,#0F0h ;discard lower 4 bits + orl a,r1 + mov r1,a + + ;R1:R0*max_count + mov dptr, #pwm_max_count ;load max_count in R5:R4 movx a,@dptr mov r5,a inc dptr movx a,@dptr mov r4,a - mov MA,a + + mov b,a ;R0*R4 + mov a,r0 + mul ab + + mov dpl,a ;LOW + mov a,b ;HIGH + mov dph,a + + mov a,r1 ;R1*R4 + mov b,a + mov a,r4 + mul ab + + add a,dph ;LOW + mov dph,a + mov a,b ;HIGH + addc a,#00 ;R4 is free + mov dpx,a + + mov a,r0 ;R0*R5 + mov b,a + mov a,r5 + mul ab + + add a,dph ;LOW + mov dph,a + mov a,dpx ;LOW+1 + addc a,b + mov dpx,a + clr a ;HIGH + addc a,#00h + mov r4,a ;R0 is free + + mov a,r1 ;R1*R5 + mov b,a mov a,r5 + mul ab + + add a,dpx ;LOW + mov dpx,a + mov a,r4 ;HIGH + addc a,b + mov b,a ;discard upper bits + + mov r0,dpl + mov r1,dph + mov r2,dpx + mov r3,b + + ;R3:R2:R1:R0/(1000000/16) 1000000/16=F424h + ;c -> dpx + ;x -> r3:r2:r1:r0 + ;y -> dph:dpl = 0xF424 + ;reste -> r7:r6:r5:r4 + ;count -> pilha 1 - mov MA,a -pwm_waitmult: mov a,MCNT1 - jb ACC.7,pwm_waitmult ; wait MST cleared + + mov a,r7 + push acc + mov a,r6 + push acc + clr a ;c=0 + mov dpx,a + mov dph,#0F4h ;y=0xF424 + mov dpl,#024h + mov r7,#000h ;reste=0 + mov r6,#000h + mov r5,#000h + mov r4,#000h + mov a,#20h ;count=32 + push acc + +pwm_divloop: + mov a,r3 ;c = ((x >> (8*sizeof(x)-1)) & 1) + rl a + anl a,#1 + mov dpx,a + + clr c ;x = x << 1; + mov a,r0 + rlc a + mov r0,a + mov a,r1 + rlc a + mov r1,a + mov a,r2 + rlc a + mov r2,a + mov a,r3 + rlc a + mov r3,a + clr c + + ;reste <<= 1 + mov a,r4 + rlc a + mov r4,a + mov a,r5 + rlc a + mov r5,a + mov a,r6 + rlc a + mov r6,a + mov a,r7 + rlc a + mov r7,a + clr c - mov r3,MA - mov r2,MA - mov r1,MA - mov r0,MA + + mov a,dpx ;if (c) + jz pwn_div_ninc_teste + mov a,r4 + orl a,#001h ;reste|=1L + mov r4,a + +pwn_div_ninc_teste: ;if (reste >= y) + mov a,r7 + jnz pwm_div_y_menor_igual + mov a,r6 + jnz pwm_div_y_menor_igual + mov a,r5 + cjne a,dph,pwm_div_testa_maior + mov a,r4 + cjne a,dpl,pwm_div_testa_maior + clr c - mov MCNT1,#00h ;R1:R0*max_count/(1000000/16) using - mov MA,r0 ; math accelarator - mov MA,r1 - mov MA,r2 - mov MA,r3 - mov MB,#24h ; 1000000/16=F424h - mov MB,#0f4h -pwm_waitdiv: mov a,MCNT1 - jb ACC.7,pwm_waitdiv ; wait MST cleared +pwm_div_testa_maior: + jnc pwm_div_y_menor_igual + ljmp pwm_div_loop_end - mov a,MA ; The result should be 16 bits - mov a,MA ; upper 16 bits discarded - mov r1,MA - mov r0,MA +pwm_div_y_menor_igual: + mov a,r4 ;reste -= y; + clr c + subb a,dpl + mov r4,a + mov a,r5 + subb a,dph + mov r5,a + mov a,r6 + subb a,#00h + mov r6,a + mov a,r7 + subb a,#00h + mov r7,a + + mov a,r0 ;x |= 1L; + orl a,#001h + mov r0,a + +pwm_div_loop_end: ;while (--count) + pop acc + dec a + push acc + jnz pwm_divloop + + pop acc + pop acc + mov r6,a + pop acc + mov r7,a - TINIOS_EXIT_CRITICAL_SECTION + mov dptr, #pwm_max_count ;load max_count in R5:R4 + movx a,@dptr + mov r5,a + inc dptr + movx a,@dptr + mov r4,a clr c ; computes count @@ -371,7 +522,7 @@ pwm_countok: EXIT_PCE_SPACE_AND_POP_STATE RESTORE_STRETCH r0 ; restore original stretch value - + mov dpl,b ; return count in b:dbx:dph:dpl mov dph,r1 diff --git a/lib/aicsim.cpp b/lib/aicsim.cpp index 912ae8e..357ffdf 100644 --- a/lib/aicsim.cpp +++ b/lib/aicsim.cpp @@ -36,30 +36,30 @@ using namespace std; AIC_SIM::AIC_SIM(void) :AIC(this) { + count=0; } int AIC_SIM::get_status(int status,...) { - static int i=0; - switch(status) { case AIC_STATUS: { va_list ap; + va_start(ap,status); double *disp=va_arg(ap,double *); - *disp=i*0.5; + *disp=count*0.5; int *index=va_arg(ap,int *); - *index=(i/3) % 2; + *index=(count % 4 == 0)? AIC_INDEX_ON:0; va_end(ap); break; } } - i++; + count++; return status; } @@ -98,6 +98,7 @@ void AIC_SIM::send_command(int command,...) } case AIC_RESET: { + count=0; cout << "AIC Reset\t"; break; } @@ -110,5 +111,3 @@ void AIC_SIM::send_command(int command,...) } } } - - diff --git a/lib/aicudp.cpp b/lib/aicudp.cpp index 3d9b84c..5fcaff7 100644 --- a/lib/aicudp.cpp +++ b/lib/aicudp.cpp @@ -172,10 +172,39 @@ void AIC_UDP::send_command(int command,...) va_start(ap,command); double volt=va_arg(ap,double); va_end(ap); - for(int i=0;i < 8;i++) buff[7-i+len]= ( ( *((unsigned long long *) &volt) ) >> (i*8) ) & 0xff; + for(int i=0;i < 8;i++) buff[7-i+len]= *((char *) &volt + i); len+=8; break; } + case AIC_MOTOR_REF: + { + va_list ap; + va_start(ap,command); + double ref=va_arg(ap,double); + va_end(ap); + for(int i=0;i < 8;i++) buff[7-i+len]= *((char *) &ref + i); + len+=8; + break; + } + case AIC_USER0: + case AIC_USER1: + case AIC_USER2: + case AIC_USER3: + { + va_list ap; + va_start(ap,command); + int n=va_arg(ap,int); + char *ptr; + if(n > 0) + { + ptr=va_arg(ap,char *); + for(int i=0;i < n;i++) buff[len++]=ptr[i]; + } + va_end(ap); + if(n > 31) throw BAD_SEND(); + + break; + } default: throw BAD_SEND(); } @@ -188,5 +217,3 @@ void AIC_UDP::send_command(int command,...) throw BAD_SEND(); } } - - diff --git a/lib/sputtering.cpp b/lib/sputtering.cpp new file mode 100644 index 0000000..97baed5 --- /dev/null +++ b/lib/sputtering.cpp @@ -0,0 +1,75 @@ +/****************************************************************************** + + Actuator Interface Card + Sputtering Controller Host Interface Library + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +#include +#include + +void *get_status(void *arg) +{ + double disp; + int index; + + + SPUTTERING *sputtering=(SPUTTERING *) arg; + + while(sputtering->run) + { + disp=sputtering->encoder.read(&index); + usleep(500000); + } + pthread_exit(0); +} + +SPUTTERING::SPUTTERING(const char *name,int statusport): +AIC_UDP(name,statusport), +SHUTTER(AIC_USER0) +{ + run=1; + pthread_create(&get_status_th,NULL,&::get_status,this); +} + +SPUTTERING::~SPUTTERING(void) +{ + run=0; + pthread_join(get_status_th,NULL); +} + +void SPUTTERING::reset(void) +{ + while(busy()); + AIC::reset(); +} + +void SPUTTERING::reference(double ref) +{ + while(busy()); + AIC::reference(ref); +} + +void SPUTTERING::shutter(unsigned int us) +{ + while(busy()); + send_command(SHUTTER,sizeof(us),&us); +} diff --git a/lib/tlib/Makefile b/lib/tlib/Makefile index aec5600..2526638 100644 --- a/lib/tlib/Makefile +++ b/lib/tlib/Makefile @@ -1,7 +1,10 @@ ASMINC:=../${ASMINC} TINIINC=${ASMINC}/tini.inc ${ASMINC}/tinimacro.inc ${ASMINC}/ds80c390.inc ${ASMINC}/apiequ.inc -all: brake.mpp index.mpp encoder.mpp pwm.mpp +SDCCINCLUDE+= -I../../include +export SDCCCMPFLAGS=${SDCCFLAGS} ${SDCCINCLUDE} + +all: brake.mpp index.mpp encoder.mpp pwm.mpp sputtering.mpp ${ASMINC}/tini.inc: ${NATINC}/tini.inc ln -s ${NATINC}/tini.inc ${ASMINC}/tini.inc @@ -26,11 +29,17 @@ encoder.mpp: encoder.a51 ${TINIINC} pwm.mpp: pwm.a51 ${TINIINC} ${ASMMACRO} -I${ASMINC} -e- pwm.a51 - + +sputtering.mpp: sputtering.a51 + ${ASMMACRO} -I${ASMINC} -e- sputtering.a51 + +sputtering.a51: sputtering.c + ${SDCC} ${SDCCCMPFLAGS} sputtering.c + install: clean: - rm -rf *.o *~ *.bak *.class ../include/{*.bak,*~} br *.tlib *.mpp ${TINIINC} *.lst + rm -rf *.o *~ *.bak *.class ../include/{*.bak,*~} br *.tlib *.mpp ${TINIINC} *.lst sputtering.a51 distclean: clean rm -rf AIC.jar *.a diff --git a/lib/tlib/sputtering.c b/lib/tlib/sputtering.c new file mode 100644 index 0000000..c5dfdce --- /dev/null +++ b/lib/tlib/sputtering.c @@ -0,0 +1,313 @@ +/****************************************************************************** + + Actuator Interface Card + Sputtering Real Time Module + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +#include +#include + +#include + +#include + +#define BASE 0x800000 + +#define Kp 0.5 +#define Ki 0.000005 +#define Kd 0.00 + +#define MIN_U -12.0 +#define MAX_U 12.0 + +#define DEAD_Z 1.0 + +#define TOL 0.005 + +static pthread_t pid_th; +static pthread_t shutter_th; +static float u; +static float y; +static float ref; +static float e1; +static float i; +static long time_count; +static long time_ref; +static unsigned char lock; + +static void pid_dummy(void) _naked +{ + _asm +pid_th: db 0,0,0,0 +shutter_th: db 0,0,0,0 +u: db 0,0,0,0 +y: db 0,0,0,0 +ref: db 0,0,0,0 +e1: db 0,0,0,0 +i: db 0,0,0,0 +time_count: db 0,0,0,0 +time_ref: db 0,0,0,0 +lock: db 0 + _endasm; +} + +/* By now this is not actually a thread as it should be, + but a function that is called at each timer interrupt */ +void *shutter(void *arg) +{ + time_count++; + if(time_count >= time_ref) brake_apply(); + + return NULL; +} + +/* By now this is not actually a thread as it should be, + but a function that is called at each timer interrupt */ +void *pid(void *arg) +{ + float e; + + time_count++; + + y+=encoder_read_and_clear(); + + e=ref-y; + + i+=Ki*e; + + u=Kp*e + i + Kd*(e-e1); + + if(u < -TOL) u-=DEAD_Z; + if(u > TOL) u+=DEAD_Z; + + if(u < MIN_U) u=MIN_U; + if(u > MAX_U) u=MAX_U; + + motor_set(u); + + e1=e; + + return NULL; +} + + +/* public static native int pidRealtime(int period) */ +long Native_pidStartRealtime(void) _JavaNative +{ + long period; + RTIME count; + + period = NatLib_LoadInt(0); + count=micro2count(period); + start_rt_timer(count); + pthread_create(&pid_th,NULL,pid,NULL); + + time_count=0; + + _asm + clr a + _endasm; + + return period; +} + +/* public static native void pidStopRealtime() */ +void Native_pidStopRealtime(void) _JavaNative +{ + motor_set(0.0); + + pthread_cancel(pid_th); + stop_rt_timer(); + + _asm + clr a + _endasm; +} + +/* public static native int shutterStartRealtime(int period) */ +long Native_shutterStartRealtime(void) _JavaNative +{ + long period; + RTIME count; + + period = NatLib_LoadInt(0); + count=micro2count(period); + start_rt_timer(count); + pthread_create(&shutter_th,NULL,shutter,NULL); + + time_count=0; + + brake_release(); + + _asm + clr a + _endasm; + + return period; +} + +/* public static native void shutterStopRealtime() */ +void Native_shutterStopRealtime(void) _JavaNative +{ + + pthread_cancel(shutter_th); + stop_rt_timer(); + + _asm + clr a + _endasm; +} + + +/* public static native float getOutput() */ +float Native_getOutput(void) _JavaNative +{ + return y; +} + +long Native_getTime(void) _JavaNative +{ + return time_count; +} + +long Native_getIndex(void) _JavaNative +{ + return index_read(); +} + +void Native_findHome(void) _JavaNative +{ + motor_set(2.5); + while(!(index_read())); + + if(index_read()) motor_set(-1.25); + + while(!(index_read())); + + if(index_read()) motor_set(1.25); + + while(!(index_read())); + + motor_set(0.0); + + encoder_read_and_clear(); + + y=0; + + _asm + clr a + _endasm; +} + +void Native_initialize(void) _JavaNative +{ + aic_initialize(BASE,12.0,20e3,4*2048); + aic_on(); + motor_set(0.0); + y=0; + lock=1; + + _asm + clr a + _endasm; +} + +void Native_finalize(void) _JavaNative +{ + aic_off(); + + aic_finalize(); + + _asm + clr a + _endasm; +} + + +/* public static native void setReference(float reference) */ +void Native_setReference(void) _JavaNative +{ + /* + volatile long ref =NatLib_LoadInt(0); + ref=*((float *) &ref); + */ + + _asm + clr a + lcall Natlib_LoadPrimitive ; get parameter in R3:R2:R1:R0 + mov dptr,#ref + mov a,r0 + movx @dptr,a + inc dptr + mov a,r1 + movx @dptr,a + inc dptr + mov a,r2 + movx @dptr,a + inc dptr + mov a,r3 + movx @dptr,a + clr a + _endasm; +} + + +/* public static native void openShutter(int timeRef) */ +void Native_openShutter(void) _JavaNative +{ + time_ref = NatLib_LoadInt(0); + + _asm + clr a + _endasm; +} + +unsigned char Native_lock(void) _JavaNative +{ + _asm + mov dptr,#lock + movx a,@dptr + djnz ACC,L070185DIE + movx @dptr,a + mov r0,#0FFh + mov r1,#00h + mov r2,#00h + mov r3,#00h + ret +L070185DIE: + inc a; + movx @dptr,a + clr a; + _endasm; + return 0x00; +} + +void Native_unlock(void) _JavaNative +{ + _asm + mov dptr,#lock + movx a,@dptr + inc a + movx @dptr,a + clr a; + _endasm; +} diff --git a/pid/runinfo b/pid/runinfo deleted file mode 100644 index 478ce5e..0000000 --- a/pid/runinfo +++ /dev/null @@ -1 +0,0 @@ -pid:lxrt:./pid 1;popall: diff --git a/sputtering/Makefile b/sputtering/Makefile new file mode 100644 index 0000000..8098207 --- /dev/null +++ b/sputtering/Makefile @@ -0,0 +1,16 @@ +all: sputtering + +sputtering: sputtering.cpp ../include/aic.h ../lib/libaic.a + ${CXX} ${CMPFLAGS} -o sputtering sputtering.cpp ${LDFLAGS} + +../lib/libaic.a: + $(MAKE) -C ../lib + +clean: + rm -f *~ *.bak *.o + +install: + +distclean: clean + rm -f sputtering *.dat + diff --git a/sputtering/sputtering.cpp b/sputtering/sputtering.cpp new file mode 100644 index 0000000..f4df237 --- /dev/null +++ b/sputtering/sputtering.cpp @@ -0,0 +1,64 @@ +/****************************************************************************** + + Actuator Interface Card + AIC Sputtering Controller + Copyright (C) 2007 Walter Fetter Lages + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + + You can also obtain a copy of the GNU General Public License + at . + +*******************************************************************************/ + +#include +using namespace std; +#include + +#include + +int main(int argc,char *argv[]) +{ + +/* if(argc != 5) + { + cout << "Sputtering Controller\n"; + cout << "Copyright (C) 2007 Walter Fetter Lages .\n"; + cout << " 2007 Diego Caberlon Santini .\n"; + cout << "\tor\n\t" << argv[0] << " aic1 status_port1 aic2 status_port2\n"; + return -1; + } +*/ + SPUTTERING sputtering0(argv[1],atoi(argv[2])); +// SPUTTERING sputtering1(argv[3],atoi(argv[4])); + + sputtering0.reset(); +// sputtering1.reset(); + cout <<"Reset\n"; + sputtering0.reference(M_PI*300/180); +// sputtering1.reference(M_PI*300/180); + cout <<"Positioning at 300 degrees\n"; + sputtering0.shutter(1000000); +// sputtering1.shutter(1000000); + cout <<"open for 1s\n"; + sputtering0.reference(M_PI*60/180); +// sputtering1.reference(M_PI*60/180); + cout <<"Positioning at 60 degrees\n"; + sputtering0.shutter(2000000); +// sputtering1.shutter(2000000); + cout <<"Open for 2s\n"; + + return 0; +}